missing lineinfo for "for var in ... end" when there is exaclty one variable before...
[metalua.git] / src / compiler / metalua.mlua
blob8aa9a6c5ed97128a7380a4e496bfef44c0d43942
1 --*-lua-*- Set as a metalua file because it requires some metalua libs
3 --require 'verbose_require'
5 require 'metalua.compiler'
6 require 'clopts'
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
27 AST_COMPILE_ERROR_NUMBER        = -1
28 RUNTIME_ERROR_NUMBER            = -3
29 BYTECODE_SYNTHESE_ERROR_NUMBER  = -100
31 -{ extension 'match' }
33 local chunks  = { }
34 local runargs = { }
36 local acc_chunk = |kind| function (arg)
37    table.insert (chunks, { tag=kind, arg })
38 end
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 = 'A', long = 'print-ast-lineinfo',  type = 'boolean',
69       usage = 'print the AST resulting from file compilation, including lineinfo data'  
70    },
71    {  short = 'b', long = 'metabugs', type = 'boolean',
72       usage = 'show syntax errors as compile-time execution errors' 
73    },
74    {  short = 's', long = 'sharpbang', type = 'string',
75       usage = 'set a first line to add to compiled file, typically "#!/bin/env mlr"' 
76    },
77    {  long  = 'no-runtime', type = 'boolean',
78       usage = "prevent the automatic requirement of metalua runtime"
79    },
80    {  long  = '', short = 'p', type = '*',
81       action= function (newargs) runargs=table.icat(runargs, newargs) end,
82       usage = "pass all remaining arguments to the program"
83    },
84 usage=[[
86 Compile and/or execute metalua programs. Parameters passed to the
87 compiler should be prefixed with an option flag, hinting what must be
88 done with them: take tham as file names to compile, as library names
89 to load, as parameters passed to the running program... When option
90 flags lack, metalua tries to adopt a "Do What I Mean" approach:
92 - if no code (no library, no literal expression and no file) is
93   specified, the first flag-less parameter is taken as a file name to
94   load.
96 - if no code and no parameter is passed, an interactive loop is
97   started.
99 - if a target file is specified with --output, the program is not
100   executed by default, unless a --run flag forces it to. Conversely,
101   if no --output target is specified, the code is run unless ++run
102   forbids it.
106 INIT_COMPILATION_RING = [[require 'metalua.compiler']]
108 local function main (...)
110    local cfg = parser(...)
112    -------------------------------------------------------------------
113    -- Print messages if in verbose mode
114    -------------------------------------------------------------------
115    local function verb_print (fmt, ...) 
116       if cfg.verbose then 
117          return printf ("[ "..fmt.." ]", ...) 
118       end 
119    end
120    
121    -------------------------------------------------------------------
122    -- If there's no chunk but there are params, interpret the first
123    -- param as a file name.
124    if #chunks==0 and cfg.params then 
125       local the_file = table.remove(cfg.params, 1)
126       verb_print("Param %q considered as a source file", the_file)
127       chunks = { `File{ the_file } }
128    end
130    -------------------------------------------------------------------
131    -- If nothing to do, run REPL loop
132    if #chunks==0 and cfg.interactive==nil then
133       verb_print "Nothing to compile nor run, force interactive loop"
134       cfg.interactive=true
135    end
138    -------------------------------------------------------------------
139    -- Run if asked to, or if no --output has been given
140    -- if cfg.run==false it's been *forced* to false, don't override.
141    if cfg.run==nil and not cfg.output then
142       verb_print("No output file specified; I'll run the program")
143       cfg.run = true
144    end
146    local code = { }
148    -------------------------------------------------------------------
149    -- Get ASTs from sources
150    local last_file
151    for x in values(chunks) do
152       verb_print("Compiling %s", table.tostring(x))
153       local st, ast
154       match x with
155       | `Library{ l } -> st, ast = true, `Call{ `Id 'require', `String{ l } }
156       | `Literal{ e } -> st, ast = spring_pcall('mlc.ast_of_luastring', e, 'literal')
157       | `File{ f } -> 
158          st, ast = spring_pcall('mlc.ast_of_luafile', f, '@'..f)
159          -- Isolate each file in a separate fenv
160          if st then
161             ast = +{ function (...) -{ast} end (...)  }
162             ast.source  = '@'..f -- TODO [EVE]
163             code.source = '@'..f -- TODO [EVE]
164             last_file = ast
165          end
166       end
167       if not st then 
168          printf ("Cannot compile %s: %s", table.tostring(x), ast)
169          os.exit (AST_COMPILE_ERROR_NUMBER)
170       end
171       ast.origin = x
172       table.insert(code, ast)
173    end
174    -- The last file returns the whole chunk's result
175    if last_file then
176       local c = table.shallow_copy(last_file)
177       last_file <- `Return{ source = c.source, c }
178    end
180    -------------------------------------------------------------------
181    -- AST printing
182    if cfg['print-ast'] or cfg['print-ast-lineinfo'] then 
183       verb_print "Resulting AST:"
184       for x in ivalues(code) do
185          printf("--- AST From %s: ---", table.tostring(x.source, 'nohash'))
186          if x.origin and x.origin.tag=='File' then x=x[1][1][2][1] end
187          if cfg['print-ast-lineinfo'] then table.print(x, 80, "indent1")
188          else table.print(x, 80, 'nohash') end
189       end 
190    end
192    -------------------------------------------------------------------
193    -- Insert runtime loader
194    if cfg['no-runtime'] then 
195       verb_print "Prevent insertion of command \"require 'metalua.runtime'\""
196    else
197       table.insert(code, 1, +{require'metalua.runtime'})
198    end
200    -- FIXME: check for failures
201    mlc.metabugs = cfg.metabugs
202    local bytecode = mlc.luacstring_of_ast (code)
203    code = nil
205    -------------------------------------------------------------------
206    -- Insert #!... command
207    if cfg.sharpbang then
208       verb_print ("Adding sharp-bang directive %q", cfg.sharpbang)
209       if not cfg.sharpbang:strmatch'^#!' then cfg.sharpbang='#!'..cfg.sharpbang end
210       if not cfg.sharpbang:strmatch'\n$' then cfg.sharpbang=cfg.sharpbang..'\n' end
211       bytecode = cfg.sharpbang..bytecode
212    end
214    -------------------------------------------------------------------
215    -- Save to file
216    if cfg.output then
217       -- FIXME: handle '-'
218       verb_print ("Saving to file %q", cfg.output)
219       local file, err_msg = io.open(cfg.output, 'wb')
220       if not file then error("can't open output file: "..err_msg) end
221       file:write(bytecode)
222       file:close()
223       if cfg.sharpbang and os.getenv "OS" ~= "Windows_NT" then
224          pcall(os.execute, 'chmod a+x "'..cfg.output..'"')
225       end
226    end
228    -------------------------------------------------------------------
229    -- Run compiled code
230    if cfg.run then
231       verb_print "Running"
232       local f = mlc.function_of_luacstring (bytecode)
233       bytecode = nil
234       -- FIXME: isolate execution in a ring
235       -- FIXME: check for failures
237       runargs = table.icat(cfg.params or { }, runargs)
238       local st, msg = pcall(f, unpack (runargs))
239       if not st then
240          io.stderr:write(msg)
241          os.exit(RUNTIME_ERROR_NUMBER)
242       end
243    end
245    -------------------------------------------------------------------
246    -- Run REPL loop
247    if cfg.interactive then
248       verb_print "Starting REPL loop"
249       require 'metaloop'
250       metaloop.run()
251 --       print ("*":rep(70))
252 --       print "*** !!! Interactive loop not implemented !!!"
253 --       print ("*":rep(70))
254    end
256    verb_print "Done"
260 main(...)