]> git.lizzy.rs Git - metalua.git/blob - src/compiler/metalua.mlua
compatibility with integral-variants of Lua VMs
[metalua.git] / src / compiler / metalua.mlua
1 --*-lua-*- Set as a metalua file because it requires some metalua libs
2
3 --require 'verbose_require'
4
5 require 'metalua.compiler'
6 require 'clopts'
7
8 do
9    local mfast = os.getenv 'LUA_NOSPRINGS'
10    if mfast=='yes' or mfast=='true' then
11       function spring_pcall(f, ...)
12          if type(f)=='string' then f = loadstring("return "..f)() end
13          return pcall(f, ...)
14       end
15    else
16       require 'springs'
17       function spring_pcall(...)
18          local ring = springs.new()
19          ring:dostring (INIT_COMPILATION_RING)
20          st, ast = ring:pcall(...)
21          ring:close()
22          return st, ast
23       end
24    end
25 end
26
27 AST_COMPILE_ERROR_NUMBER        = -1
28 RUNTIME_ERROR_NUMBER            = -3
29 BYTECODE_SYNTHESE_ERROR_NUMBER  = -100
30
31 -{ extension 'match' }
32
33 local chunks  = { }
34 local runargs = { }
35
36 local acc_chunk = |kind| function (arg)
37    table.insert (chunks, { tag=kind, arg })
38 end
39
40 parser = clopts {
41    -- Chunk loading
42    {  short = 'f', long = 'file', type = 'string', action = acc_chunk 'File',
43       usage = 'load a file to compile and/or run'
44    },
45    {  short = 'l', long = 'library', type = 'string', action = acc_chunk 'Library',
46       usage = 'load a libary from the standard paths'
47    },
48    {  short = 'e', long = 'literal', type = 'string', action = acc_chunk 'Literal',
49       usage = 'load a literal piece of source code'
50    },
51    -- What to do with chunks
52    {  short = 'o', long = 'output', type = 'string',
53       usage = 'set the target name of the next compiled file'  
54    },
55    {  short = 'x', long = 'run', type = 'boolean',
56       usage = 'execute the compiled file instead of saving it (unless -o is also used)'
57    },
58    {  short = 'i', long = 'interactive', type = 'boolean',
59       usage = 'run an interactive loop after having run other files'
60    },
61    -- Advanced stuff
62    {  short = 'v', long = 'verbose', type = 'boolean',
63       usage = 'verbose mode'  
64    },
65    {  short = 'a', long = 'print-ast',  type = 'boolean',
66       usage = 'print the AST resulting from file compilation'  
67    },
68    {  short = 'b', long = 'metabugs', type = 'boolean',
69       usage = 'show syntax errors as compile-time execution errors' 
70    },
71    {  short = 's', long = 'sharpbang', type = 'string',
72       usage = 'set a first line to add to compiled file, typically "#!/bin/env mlr"' 
73    },
74    {  long  = 'no-runtime', type = 'boolean',
75       usage = "prevent the automatic requirement of metalua runtime"
76    },
77    {  long  = '', short = 'p', type = '*',
78       action= function (newargs) runargs=table.icat(runargs, newargs) end,
79       usage = "pass all remaining arguments to the program"
80    },
81 usage=[[
82
83 Compile and/or execute metalua programs. Parameters passed to the
84 compiler should be prefixed with an option flag, hinting what must be
85 done with them: take tham as file names to compile, as library names
86 to load, as parameters passed to the running program... When option
87 flags lack, metalua tries to adopt a "Do What I Mean" approach:
88
89 - if no code (no library, no literal expression and no file) is
90   specified, the first flag-less parameter is taken as a file name to
91   load.
92
93 - if no code and no parameter is passed, an interactive loop is
94   started.
95
96 - if a target file is specified with --output, the program is not
97   executed by default, unless a --run flag forces it to. Conversely,
98   if no --output target is specified, the code is run unless ++run
99   forbids it.
100 ]]}
101
102
103 INIT_COMPILATION_RING = [[require 'metalua.compiler']]
104
105 local function main (...)
106
107    local cfg = parser(...)
108
109    -------------------------------------------------------------------
110    -- Print messages if in verbose mode
111    -------------------------------------------------------------------
112    local function verb_print (fmt, ...) 
113       if cfg.verbose then 
114          return printf ("[ "..fmt.." ]", ...) 
115       end 
116    end
117    
118    -------------------------------------------------------------------
119    -- If there's no chunk but there are params, interpret the first
120    -- param as a file name.
121    if #chunks==0 and cfg.params then 
122       local the_file = table.remove(cfg.params, 1)
123       verb_print("Param %q considered as a source file", the_file)
124       chunks = { `File{ the_file } }
125    end
126
127    -------------------------------------------------------------------
128    -- If nothing to do, run REPL loop
129    if #chunks==0 and cfg.interactive==nil then
130       verb_print "Nothing to compile nor run, force interactive loop"
131       cfg.interactive=true
132    end
133
134
135    -------------------------------------------------------------------
136    -- Run if asked to, or if no --output has been given
137    -- if cfg.run==false it's been *forced* to false, don't override.
138    if cfg.run==nil and not cfg.output then
139       verb_print("No output file specified; I'll run the program")
140       cfg.run = true
141    end
142
143    local code = { }
144
145    -------------------------------------------------------------------
146    -- Get ASTs from sources
147    local last_file
148    for x in values(chunks) do
149       verb_print("Compiling %s", table.tostring(x))
150       local st, ast
151       match x with
152       | `Library{ l } -> st, ast = true, `Call{ `Id 'require', `String{ l } }
153       | `Literal{ e } -> st, ast = spring_pcall('mlc.ast_of_luastring', e, 'literal')
154       | `File{ f } -> 
155          st, ast = spring_pcall('mlc.ast_of_luafile', f, '@'..f)
156          -- Isolate each file in a separate fenv
157          if st then
158             ast = +{ function (...) -{ast} end (...)  }
159             ast.source  = '@'..f -- TODO [EVE]
160             code.source = '@'..f -- TODO [EVE]
161             last_file = ast
162          end
163       end
164       if not st then 
165          printf ("Cannot compile %s: %s", table.tostring(x), ast)
166          os.exit (AST_COMPILE_ERROR_NUMBER)
167       end
168       ast.origin = x
169       table.insert(code, ast)
170    end
171    -- The last file returns the whole chunk's result
172    if last_file then
173       local c = table.shallow_copy(last_file)
174       last_file <- `Return{ source = c.source, c }
175    end
176
177    -------------------------------------------------------------------
178    -- AST printing
179    if cfg['print-ast'] then 
180       verb_print "Resulting AST:"
181       for x in ivalues(code) do
182          printf("--- AST From %s: ---", table.tostring(x.source, 'nohash'))
183          if x.origin and x.origin.tag=='File' then x=x[1][1][2][1] end
184          table.print(x, 80, 'nohash')
185       end 
186    end
187
188    -------------------------------------------------------------------
189    -- Insert runtime loader
190    if cfg['no-runtime'] then 
191       verb_print "Prevent insertion of command \"require 'metalua.runtime'\""
192    else
193       table.insert(code, 1, +{require'metalua.runtime'})
194    end
195
196    -- FIXME: check for failures
197    -- FIXME: handle metabugs
198    local bytecode = mlc.luacstring_of_ast (code)
199    code = nil
200
201    -------------------------------------------------------------------
202    -- Insert #!... command
203    if cfg.sharpbang then
204       verb_print ("Adding sharp-bang directive %q", cfg.sharpbang)
205       if not cfg.sharpbang:strmatch'\n$' then cfg.sharpbang=cfg.sharpbang..'\n' end
206       bytecode = cfg.sharpbang..bytecode
207    end
208
209    -------------------------------------------------------------------
210    -- Save to file
211    if cfg.output then
212       -- FIXME: handle '-'
213       verb_print ("Saving to file %q", cfg.output)
214       local file, err_msg = io.open(cfg.output, 'wb')
215       if not file then error("can't open output file: "..err_msg) end
216       file:write(bytecode)
217       file:close()
218       if cfg.sharpbang and os.getenv "OS" ~= "Windows_NT" then
219          pcall(os.execute, 'chmod a+x "'..cfg.output..'"')
220       end
221    end
222
223    -------------------------------------------------------------------
224    -- Run compiled code
225    if cfg.run then
226       verb_print "Running"
227       local f = mlc.function_of_luacstring (bytecode)
228       bytecode = nil
229       -- FIXME: isolate execution in a ring
230       -- FIXME: check for failures
231       local st, msg = pcall(f, unpack (runargs))
232       if not st then
233          io.stderr:write(msg)
234          os.exit(RUNTIME_ERROR_NUMBER)
235       end
236    end
237
238    -------------------------------------------------------------------
239    -- Run REPL loop
240    if cfg.interactive then
241       verb_print "Starting REPL loop"
242       require 'metaloop'
243       metaloop.run()
244 --       print ("*":rep(70))
245 --       print "*** !!! Interactive loop not implemented !!!"
246 --       print ("*":rep(70))
247    end
248
249    verb_print "Done"
250
251 end
252
253 main(...)