squish.lua

Mon, 27 Jul 2009 03:27:32 +0100

author
Matthew Wild <mwild1@gmail.com>
date
Mon, 27 Jul 2009 03:27:32 +0100
changeset 31
84b653f78e5f
parent 29
0737a3bcf10b
child 32
d78440c40faa
permissions
-rwxr-xr-x

Rewrite '-' to '_' in Option command

0
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
1 #!/usr/bin/env lua
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
2
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
3 local short_opts = { v = "verbose", vv = "very_verbose", o = "output", q = "quiet", qq = "very_quiet" }
16
aaf1b38007d8 Add --use-http option, and default to off
Matthew Wild <mwild1@gmail.com>
parents: 15
diff changeset
4 local opts = { use_http = false };
0
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
5
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
6 for _, opt in ipairs(arg) do
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
7 if opt:match("^%-") then
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
8 local name = opt:match("^%-%-?([^%s=]+)()")
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
9 name = (short_opts[name] or name):gsub("%-+", "_");
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
10 if name:match("^no_") then
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
11 name = name:sub(4, -1);
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
12 opts[name] = false;
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
13 else
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
14 opts[name] = opt:match("=(.*)$") or true;
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
15 end
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
16 else
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
17 base_path = opt;
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
18 end
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
19 end
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
20
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
21 if opts.very_verbose then opts.verbose = true; end
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
22 if opts.very_quiet then opts.quiet = true; end
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
23
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
24 local noprint = function () end
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
25 local print_err, print_info, print_verbose, print_debug = noprint, noprint, noprint, noprint;
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
26
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
27 if not opts.very_quiet then print_err = print; end
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
28 if not opts.quiet then print_info = print; end
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
29 if opts.verbose or opts.very_verbose then print_verbose = print; end
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
30 if opts.very_verbose then print_debug = print; end
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
31
29
0737a3bcf10b Map print() to print_verbose()
Matthew Wild <mwild1@gmail.com>
parents: 28
diff changeset
32 print = print_verbose;
0737a3bcf10b Map print() to print_verbose()
Matthew Wild <mwild1@gmail.com>
parents: 28
diff changeset
33
4
9806107f59ea squish.lua: Use --enable-debug flag to decide whether to enable debug options
Matthew Wild <mwild1@gmail.com>
parents: 0
diff changeset
34 local enable_debug = opts.enable_debug;
0
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
35
11
10bb5834c6db Support for adding 'resources'
Matthew Wild <mwild1@gmail.com>
parents: 10
diff changeset
36 local modules, main_files, resources = {}, {}, {};
0
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
37
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
38 -- Functions to be called from squishy file --
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
39
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
40 function Module(name)
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
41 local i = #modules+1;
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
42 modules[i] = { name = name, url = ___fetch_url };
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
43 return function (path)
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
44 modules[i].path = path;
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
45 end
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
46 end
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
47
11
10bb5834c6db Support for adding 'resources'
Matthew Wild <mwild1@gmail.com>
parents: 10
diff changeset
48 function Resource(name, path)
10bb5834c6db Support for adding 'resources'
Matthew Wild <mwild1@gmail.com>
parents: 10
diff changeset
49 local i = #resources+1;
10bb5834c6db Support for adding 'resources'
Matthew Wild <mwild1@gmail.com>
parents: 10
diff changeset
50 resources[i] = { name = name, path = path or name };
10bb5834c6db Support for adding 'resources'
Matthew Wild <mwild1@gmail.com>
parents: 10
diff changeset
51 return function (path)
10bb5834c6db Support for adding 'resources'
Matthew Wild <mwild1@gmail.com>
parents: 10
diff changeset
52 resources[i].path = path;
10bb5834c6db Support for adding 'resources'
Matthew Wild <mwild1@gmail.com>
parents: 10
diff changeset
53 end
10bb5834c6db Support for adding 'resources'
Matthew Wild <mwild1@gmail.com>
parents: 10
diff changeset
54 end
10bb5834c6db Support for adding 'resources'
Matthew Wild <mwild1@gmail.com>
parents: 10
diff changeset
55
0
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
56 function AutoFetchURL(url)
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
57 ___fetch_url = url;
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
58 end
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
59
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
60 function Main(fn)
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
61 table.insert(main_files, fn);
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
62 end
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
63
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
64 function Output(fn)
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
65 out_fn = fn;
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
66 end
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
67
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
68 function Option(name)
31
84b653f78e5f Rewrite '-' to '_' in Option command
Matthew Wild <mwild1@gmail.com>
parents: 29
diff changeset
69 name = name:gsub("%-", "_");
0
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
70 if opts[name] == nil then
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
71 opts[name] = true;
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
72 return function (value)
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
73 opts[name] = value;
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
74 end
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
75 else
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
76 return function () end;
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
77 end
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
78 end
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
79
13
b93f52cbe253 Add GetOption function for squishy files
Matthew Wild <mwild1@gmail.com>
parents: 11
diff changeset
80 function GetOption(name)
b93f52cbe253 Add GetOption function for squishy files
Matthew Wild <mwild1@gmail.com>
parents: 11
diff changeset
81 return opts[name:gsub('%-', '_')];
b93f52cbe253 Add GetOption function for squishy files
Matthew Wild <mwild1@gmail.com>
parents: 11
diff changeset
82 end
b93f52cbe253 Add GetOption function for squishy files
Matthew Wild <mwild1@gmail.com>
parents: 11
diff changeset
83
23
e3b923ccadb1 Support for Message and Error in squishy files to show messages to the user, and Exit to halt squishing
Matthew Wild <mwild1@gmail.com>
parents: 22
diff changeset
84 function Message(message)
24
73ac55bcc19a Make Message and Error commands obey user's verbosity options
Matthew Wild <mwild1@gmail.com>
parents: 23
diff changeset
85 if not opts.quiet then
73ac55bcc19a Make Message and Error commands obey user's verbosity options
Matthew Wild <mwild1@gmail.com>
parents: 23
diff changeset
86 print_info(message);
73ac55bcc19a Make Message and Error commands obey user's verbosity options
Matthew Wild <mwild1@gmail.com>
parents: 23
diff changeset
87 end
23
e3b923ccadb1 Support for Message and Error in squishy files to show messages to the user, and Exit to halt squishing
Matthew Wild <mwild1@gmail.com>
parents: 22
diff changeset
88 end
e3b923ccadb1 Support for Message and Error in squishy files to show messages to the user, and Exit to halt squishing
Matthew Wild <mwild1@gmail.com>
parents: 22
diff changeset
89
e3b923ccadb1 Support for Message and Error in squishy files to show messages to the user, and Exit to halt squishing
Matthew Wild <mwild1@gmail.com>
parents: 22
diff changeset
90 function Error(message)
24
73ac55bcc19a Make Message and Error commands obey user's verbosity options
Matthew Wild <mwild1@gmail.com>
parents: 23
diff changeset
91 if not opts.very_quiet then
73ac55bcc19a Make Message and Error commands obey user's verbosity options
Matthew Wild <mwild1@gmail.com>
parents: 23
diff changeset
92 print_err(message);
73ac55bcc19a Make Message and Error commands obey user's verbosity options
Matthew Wild <mwild1@gmail.com>
parents: 23
diff changeset
93 end
23
e3b923ccadb1 Support for Message and Error in squishy files to show messages to the user, and Exit to halt squishing
Matthew Wild <mwild1@gmail.com>
parents: 22
diff changeset
94 end
e3b923ccadb1 Support for Message and Error in squishy files to show messages to the user, and Exit to halt squishing
Matthew Wild <mwild1@gmail.com>
parents: 22
diff changeset
95
e3b923ccadb1 Support for Message and Error in squishy files to show messages to the user, and Exit to halt squishing
Matthew Wild <mwild1@gmail.com>
parents: 22
diff changeset
96 function Exit()
e3b923ccadb1 Support for Message and Error in squishy files to show messages to the user, and Exit to halt squishing
Matthew Wild <mwild1@gmail.com>
parents: 22
diff changeset
97 os.exit(1);
e3b923ccadb1 Support for Message and Error in squishy files to show messages to the user, and Exit to halt squishing
Matthew Wild <mwild1@gmail.com>
parents: 22
diff changeset
98 end
0
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
99 -- -- -- -- -- -- -- --- -- -- -- -- -- -- -- --
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
100
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
101 base_path = (base_path or "."):gsub("/$", "").."/"
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
102 squishy_file = base_path .. "squishy";
25
a4972a690064 Complain if output file not specified, or if squish would generate an empty file
Matthew Wild <mwild1@gmail.com>
parents: 24
diff changeset
103 out_fn = opts.output;
0
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
104
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
105 local ok, err = pcall(dofile, squishy_file);
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
106
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
107 if not ok then
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
108 print_err("Couldn't read squishy file: "..err);
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
109 os.exit(1);
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
110 end
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
111
25
a4972a690064 Complain if output file not specified, or if squish would generate an empty file
Matthew Wild <mwild1@gmail.com>
parents: 24
diff changeset
112 if not out_fn then
a4972a690064 Complain if output file not specified, or if squish would generate an empty file
Matthew Wild <mwild1@gmail.com>
parents: 24
diff changeset
113 print_err("No output file specified by user or squishy file");
a4972a690064 Complain if output file not specified, or if squish would generate an empty file
Matthew Wild <mwild1@gmail.com>
parents: 24
diff changeset
114 os.exit(1);
a4972a690064 Complain if output file not specified, or if squish would generate an empty file
Matthew Wild <mwild1@gmail.com>
parents: 24
diff changeset
115 elseif #main_files == 0 and #modules == 0 and #resources == 0 then
a4972a690064 Complain if output file not specified, or if squish would generate an empty file
Matthew Wild <mwild1@gmail.com>
parents: 24
diff changeset
116 print_err("No files, modules or resources. Not going to generate an empty file.");
a4972a690064 Complain if output file not specified, or if squish would generate an empty file
Matthew Wild <mwild1@gmail.com>
parents: 24
diff changeset
117 os.exit(1);
a4972a690064 Complain if output file not specified, or if squish would generate an empty file
Matthew Wild <mwild1@gmail.com>
parents: 24
diff changeset
118 end
a4972a690064 Complain if output file not specified, or if squish would generate an empty file
Matthew Wild <mwild1@gmail.com>
parents: 24
diff changeset
119
0
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
120 local fetch = {};
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
121 function fetch.filesystem(path)
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
122 local f, err = io.open(path);
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
123 if not f then return false, err; end
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
124
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
125 local data = f:read("*a");
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
126 f:close();
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
127
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
128 return data;
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
129 end
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
130
16
aaf1b38007d8 Add --use-http option, and default to off
Matthew Wild <mwild1@gmail.com>
parents: 15
diff changeset
131 if opts.use_http then
aaf1b38007d8 Add --use-http option, and default to off
Matthew Wild <mwild1@gmail.com>
parents: 15
diff changeset
132 function fetch.http(url)
aaf1b38007d8 Add --use-http option, and default to off
Matthew Wild <mwild1@gmail.com>
parents: 15
diff changeset
133 local http = require "socket.http";
aaf1b38007d8 Add --use-http option, and default to off
Matthew Wild <mwild1@gmail.com>
parents: 15
diff changeset
134
aaf1b38007d8 Add --use-http option, and default to off
Matthew Wild <mwild1@gmail.com>
parents: 15
diff changeset
135 local body, status = http.request(url);
aaf1b38007d8 Add --use-http option, and default to off
Matthew Wild <mwild1@gmail.com>
parents: 15
diff changeset
136 if status == 200 then
aaf1b38007d8 Add --use-http option, and default to off
Matthew Wild <mwild1@gmail.com>
parents: 15
diff changeset
137 return body;
aaf1b38007d8 Add --use-http option, and default to off
Matthew Wild <mwild1@gmail.com>
parents: 15
diff changeset
138 end
aaf1b38007d8 Add --use-http option, and default to off
Matthew Wild <mwild1@gmail.com>
parents: 15
diff changeset
139 return false, "HTTP status code: "..tostring(status);
0
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
140 end
16
aaf1b38007d8 Add --use-http option, and default to off
Matthew Wild <mwild1@gmail.com>
parents: 15
diff changeset
141 else
aaf1b38007d8 Add --use-http option, and default to off
Matthew Wild <mwild1@gmail.com>
parents: 15
diff changeset
142 function fetch.http(url)
aaf1b38007d8 Add --use-http option, and default to off
Matthew Wild <mwild1@gmail.com>
parents: 15
diff changeset
143 return false, "Module not found. Re-squish with --use-http option to fetch it from "..url;
aaf1b38007d8 Add --use-http option, and default to off
Matthew Wild <mwild1@gmail.com>
parents: 15
diff changeset
144 end
0
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
145 end
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
146
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
147 print_info("Writing "..out_fn.."...");
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
148 local f = io.open(out_fn, "w+");
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
149
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
150 if opts.executable then
28
99ec02c56716 Allow user or squishy file to specify custom shebang
Matthew Wild <mwild1@gmail.com>
parents: 25
diff changeset
151 if opts.executable == true then
99ec02c56716 Allow user or squishy file to specify custom shebang
Matthew Wild <mwild1@gmail.com>
parents: 25
diff changeset
152 f:write("#!/usr/bin/env lua\n");
99ec02c56716 Allow user or squishy file to specify custom shebang
Matthew Wild <mwild1@gmail.com>
parents: 25
diff changeset
153 else
99ec02c56716 Allow user or squishy file to specify custom shebang
Matthew Wild <mwild1@gmail.com>
parents: 25
diff changeset
154 f:write(opts.executable, "\n");
99ec02c56716 Allow user or squishy file to specify custom shebang
Matthew Wild <mwild1@gmail.com>
parents: 25
diff changeset
155 end
0
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
156 end
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
157
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
158 if enable_debug then
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
159 f:write [[
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
160 local function ___rename_chunk(chunk, name)
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
161 if type(chunk) == "function" then
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
162 chunk = string.dump(chunk);
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
163 end
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
164 local intsize = chunk:sub(8,8):byte();
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
165 local b = { chunk:sub(13, 13+intsize-1):byte(1, intsize) };
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
166 local oldlen = 0;
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
167 for i = 1, #b do
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
168 oldlen = oldlen + b[i] * 2^((i-1)*8);
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
169 end
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
170
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
171 local newname = name.."\0";
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
172 local newlen = #newname;
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
173
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
174 local b = { };
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
175 for i=1,intsize do
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
176 b[i] = string.char(math.floor(newlen / 2^((i-1)*8)) % (2^(i*8)));
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
177 end
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
178
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
179 return loadstring(chunk:sub(1, 12)..table.concat(b)..newname
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
180 ..chunk:sub(13+intsize+oldlen, -1));
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
181 end
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
182 ]];
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
183 end
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
184
10
d5a4aabb104b Some logging level changes
Matthew Wild <mwild1@gmail.com>
parents: 4
diff changeset
185 print_verbose("Packing modules...");
0
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
186 for _, module in ipairs(modules) do
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
187 local modulename, path = module.name, base_path..module.path;
10
d5a4aabb104b Some logging level changes
Matthew Wild <mwild1@gmail.com>
parents: 4
diff changeset
188 print_debug("Packing "..modulename.." ("..path..")...");
0
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
189 local data, err = fetch.filesystem(path);
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
190 if (not data) and module.url then
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
191 print_debug("Fetching: ".. module.url:gsub("%?", module.path))
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
192 data, err = fetch.http(module.url:gsub("%?", module.path));
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
193 end
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
194 if data then
21
27c2e279f0f3 Fix to work with modules which call module(...)
Matthew Wild <mwild1@gmail.com>
parents: 20
diff changeset
195 f:write("package.preload['", modulename, "'] = (function (...)\n");
0
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
196 f:write(data);
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
197 f:write("end)\n");
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
198 if enable_debug then
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
199 f:write(string.format("package.preload[%q] = ___rename_chunk(package.preload[%q], %q);\n\n",
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
200 modulename, modulename, "@"..path));
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
201 end
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
202 else
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
203 print_err("Couldn't pack module '"..modulename.."': "..err);
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
204 os.exit(1);
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
205 end
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
206 end
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
207
11
10bb5834c6db Support for adding 'resources'
Matthew Wild <mwild1@gmail.com>
parents: 10
diff changeset
208 if #resources > 0 then
10bb5834c6db Support for adding 'resources'
Matthew Wild <mwild1@gmail.com>
parents: 10
diff changeset
209 print_verbose("Packing resources...")
10bb5834c6db Support for adding 'resources'
Matthew Wild <mwild1@gmail.com>
parents: 10
diff changeset
210 f:write("do local resources = {};\n");
10bb5834c6db Support for adding 'resources'
Matthew Wild <mwild1@gmail.com>
parents: 10
diff changeset
211 for _, resource in ipairs(resources) do
10bb5834c6db Support for adding 'resources'
Matthew Wild <mwild1@gmail.com>
parents: 10
diff changeset
212 local name, path = resource.name, resource.path;
10bb5834c6db Support for adding 'resources'
Matthew Wild <mwild1@gmail.com>
parents: 10
diff changeset
213 local res_file, err = io.open(base_path..path);
10bb5834c6db Support for adding 'resources'
Matthew Wild <mwild1@gmail.com>
parents: 10
diff changeset
214 if not res_file then
10bb5834c6db Support for adding 'resources'
Matthew Wild <mwild1@gmail.com>
parents: 10
diff changeset
215 print_err("Couldn't load resource: "..tostring(err));
10bb5834c6db Support for adding 'resources'
Matthew Wild <mwild1@gmail.com>
parents: 10
diff changeset
216 os.exit(1);
10bb5834c6db Support for adding 'resources'
Matthew Wild <mwild1@gmail.com>
parents: 10
diff changeset
217 end
10bb5834c6db Support for adding 'resources'
Matthew Wild <mwild1@gmail.com>
parents: 10
diff changeset
218 local data = res_file:read("*a");
10bb5834c6db Support for adding 'resources'
Matthew Wild <mwild1@gmail.com>
parents: 10
diff changeset
219 local maxequals = 0;
10bb5834c6db Support for adding 'resources'
Matthew Wild <mwild1@gmail.com>
parents: 10
diff changeset
220 data:gsub("(=+)", function (equals_string) maxequals = math.max(maxequals, #equals_string); end);
10bb5834c6db Support for adding 'resources'
Matthew Wild <mwild1@gmail.com>
parents: 10
diff changeset
221
10bb5834c6db Support for adding 'resources'
Matthew Wild <mwild1@gmail.com>
parents: 10
diff changeset
222 f:write(("resources[%q] = ["):format(name), string.rep("=", maxequals+1), "[");
10bb5834c6db Support for adding 'resources'
Matthew Wild <mwild1@gmail.com>
parents: 10
diff changeset
223 f:write(data);
10bb5834c6db Support for adding 'resources'
Matthew Wild <mwild1@gmail.com>
parents: 10
diff changeset
224 f:write("]", string.rep("=", maxequals+1), "];");
10bb5834c6db Support for adding 'resources'
Matthew Wild <mwild1@gmail.com>
parents: 10
diff changeset
225 end
19
f72a0f535301 Add virtual io support for accessing resources
Matthew Wild <mwild1@gmail.com>
parents: 16
diff changeset
226 if opts.enable_virtual_io then
f72a0f535301 Add virtual io support for accessing resources
Matthew Wild <mwild1@gmail.com>
parents: 16
diff changeset
227 local vio = require_resource("vio");
f72a0f535301 Add virtual io support for accessing resources
Matthew Wild <mwild1@gmail.com>
parents: 16
diff changeset
228 if not vio then
f72a0f535301 Add virtual io support for accessing resources
Matthew Wild <mwild1@gmail.com>
parents: 16
diff changeset
229 print_err("Virtual IO requested but is not enabled in this build of squish");
f72a0f535301 Add virtual io support for accessing resources
Matthew Wild <mwild1@gmail.com>
parents: 16
diff changeset
230 else
f72a0f535301 Add virtual io support for accessing resources
Matthew Wild <mwild1@gmail.com>
parents: 16
diff changeset
231 -- Insert vio library
f72a0f535301 Add virtual io support for accessing resources
Matthew Wild <mwild1@gmail.com>
parents: 16
diff changeset
232 f:write(vio, "\n")
f72a0f535301 Add virtual io support for accessing resources
Matthew Wild <mwild1@gmail.com>
parents: 16
diff changeset
233 -- Override io.open to use vio if opening a resource
20
1766b5a287e1 Add io.lines support for the virtual io
Matthew Wild <mwild1@gmail.com>
parents: 19
diff changeset
234 f:write[[local io_open, io_lines = io.open, io.lines; function io.open(fn, mode)
19
f72a0f535301 Add virtual io support for accessing resources
Matthew Wild <mwild1@gmail.com>
parents: 16
diff changeset
235 if not resources[fn] then
f72a0f535301 Add virtual io support for accessing resources
Matthew Wild <mwild1@gmail.com>
parents: 16
diff changeset
236 return io_open(fn, mode);
f72a0f535301 Add virtual io support for accessing resources
Matthew Wild <mwild1@gmail.com>
parents: 16
diff changeset
237 else
f72a0f535301 Add virtual io support for accessing resources
Matthew Wild <mwild1@gmail.com>
parents: 16
diff changeset
238 return vio.open(resources[fn]);
20
1766b5a287e1 Add io.lines support for the virtual io
Matthew Wild <mwild1@gmail.com>
parents: 19
diff changeset
239 end end
1766b5a287e1 Add io.lines support for the virtual io
Matthew Wild <mwild1@gmail.com>
parents: 19
diff changeset
240 function io.lines(fn)
1766b5a287e1 Add io.lines support for the virtual io
Matthew Wild <mwild1@gmail.com>
parents: 19
diff changeset
241 if not resources[fn] then
1766b5a287e1 Add io.lines support for the virtual io
Matthew Wild <mwild1@gmail.com>
parents: 19
diff changeset
242 return io_lines(fn);
1766b5a287e1 Add io.lines support for the virtual io
Matthew Wild <mwild1@gmail.com>
parents: 19
diff changeset
243 else
1766b5a287e1 Add io.lines support for the virtual io
Matthew Wild <mwild1@gmail.com>
parents: 19
diff changeset
244 return vio.open(resources[fn]):lines()
22
cb14d8c0d0f7 Add support for virtual IO in dofile and loadfile
Matthew Wild <mwild1@gmail.com>
parents: 21
diff changeset
245 end end
cb14d8c0d0f7 Add support for virtual IO in dofile and loadfile
Matthew Wild <mwild1@gmail.com>
parents: 21
diff changeset
246 local _dofile = dofile;
cb14d8c0d0f7 Add support for virtual IO in dofile and loadfile
Matthew Wild <mwild1@gmail.com>
parents: 21
diff changeset
247 function dofile(fn)
cb14d8c0d0f7 Add support for virtual IO in dofile and loadfile
Matthew Wild <mwild1@gmail.com>
parents: 21
diff changeset
248 if not resources[fn] then
cb14d8c0d0f7 Add support for virtual IO in dofile and loadfile
Matthew Wild <mwild1@gmail.com>
parents: 21
diff changeset
249 return _dofile(fn);
cb14d8c0d0f7 Add support for virtual IO in dofile and loadfile
Matthew Wild <mwild1@gmail.com>
parents: 21
diff changeset
250 else
cb14d8c0d0f7 Add support for virtual IO in dofile and loadfile
Matthew Wild <mwild1@gmail.com>
parents: 21
diff changeset
251 return assert(loadstring(resources[fn]))();
cb14d8c0d0f7 Add support for virtual IO in dofile and loadfile
Matthew Wild <mwild1@gmail.com>
parents: 21
diff changeset
252 end end
cb14d8c0d0f7 Add support for virtual IO in dofile and loadfile
Matthew Wild <mwild1@gmail.com>
parents: 21
diff changeset
253 local _loadfile = loadfile;
cb14d8c0d0f7 Add support for virtual IO in dofile and loadfile
Matthew Wild <mwild1@gmail.com>
parents: 21
diff changeset
254 function loadfile(fn)
cb14d8c0d0f7 Add support for virtual IO in dofile and loadfile
Matthew Wild <mwild1@gmail.com>
parents: 21
diff changeset
255 if not resources[fn] then
cb14d8c0d0f7 Add support for virtual IO in dofile and loadfile
Matthew Wild <mwild1@gmail.com>
parents: 21
diff changeset
256 return _loadfile(fn);
cb14d8c0d0f7 Add support for virtual IO in dofile and loadfile
Matthew Wild <mwild1@gmail.com>
parents: 21
diff changeset
257 else
cb14d8c0d0f7 Add support for virtual IO in dofile and loadfile
Matthew Wild <mwild1@gmail.com>
parents: 21
diff changeset
258 return loadstring(resources[fn], "@"..fn);
cb14d8c0d0f7 Add support for virtual IO in dofile and loadfile
Matthew Wild <mwild1@gmail.com>
parents: 21
diff changeset
259 end end ]]
19
f72a0f535301 Add virtual io support for accessing resources
Matthew Wild <mwild1@gmail.com>
parents: 16
diff changeset
260 end
f72a0f535301 Add virtual io support for accessing resources
Matthew Wild <mwild1@gmail.com>
parents: 16
diff changeset
261 end
11
10bb5834c6db Support for adding 'resources'
Matthew Wild <mwild1@gmail.com>
parents: 10
diff changeset
262 f:write[[function require_resource(name) return resources[name] or error("resource '"..tostring(name).."' not found"); end end ]]
10bb5834c6db Support for adding 'resources'
Matthew Wild <mwild1@gmail.com>
parents: 10
diff changeset
263 end
10bb5834c6db Support for adding 'resources'
Matthew Wild <mwild1@gmail.com>
parents: 10
diff changeset
264
0
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
265 print_debug("Finalising...")
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
266 for _, fn in pairs(main_files) do
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
267 local fin, err = io.open(base_path..fn);
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
268 if not fin then
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
269 print_err("Failed to open "..fn..": "..err);
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
270 os.exit(1);
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
271 else
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
272 f:write((fin:read("*a"):gsub("^#.-\n", "")));
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
273 fin:close();
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
274 end
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
275 end
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
276
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
277 f:close();
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
278
b119b560ca3d squish, because libraries don't have to be tricky to package!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
279 print_info("OK!");

mercurial