2017-09-05 23:51:35 -07:00
|
|
|
#!/usr/bin/env moon
|
2017-09-24 20:20:27 -07:00
|
|
|
-- This file contains the source code of the Nomsu compiler.
|
|
|
|
-- Nomsu is a programming language that cross-compiles to Lua. It was designed to be good
|
|
|
|
-- at natural-language-like code that is highly self-modifying and flexible.
|
|
|
|
-- The only dependency is LPEG, which can be installed using "luarocks install lpeg"
|
|
|
|
-- File usage:
|
|
|
|
-- Either, in a lua/moonscript file:
|
|
|
|
-- Nomsu = require "nomsu"
|
|
|
|
-- nomsu = Nomsu()
|
|
|
|
-- nomsu:run(your_nomsu_code)
|
|
|
|
-- Or from the command line:
|
|
|
|
-- lua nomsu.lua [input_file [output_file or -]]
|
2017-08-16 04:35:35 -07:00
|
|
|
re = require 're'
|
|
|
|
lpeg = require 'lpeg'
|
2017-12-18 16:26:26 -08:00
|
|
|
utils = require 'utils'
|
2017-12-18 16:19:56 -08:00
|
|
|
{:repr, :stringify, :min, :max, :equivalent, :set, :is_list, :sum} = utils
|
2017-10-08 20:41:05 -07:00
|
|
|
colors = setmetatable({}, {__index:->""})
|
2017-12-30 14:31:07 -08:00
|
|
|
colored = setmetatable({}, {__index:(_,color)-> ((msg)-> colors[color]..(msg or '')..colors.reset)})
|
2017-09-21 21:11:13 -07:00
|
|
|
{:insert, :remove, :concat} = table
|
2017-09-25 17:02:00 -07:00
|
|
|
--pcall = (fn,...)-> true, fn(...)
|
2017-12-04 17:35:47 -08:00
|
|
|
if _VERSION == "Lua 5.1"
|
|
|
|
xp = xpcall
|
|
|
|
xpcall = (f, errhandler, ...)->
|
|
|
|
args = {n:select("#", ...), ...}
|
|
|
|
return xp((...)-> f(unpack(args,1,args.n))), errhandler
|
|
|
|
--pcall = (fn, ...) -> xpcall(fn, debug.traceback, ...)
|
2017-08-16 04:35:35 -07:00
|
|
|
|
2017-09-05 23:51:35 -07:00
|
|
|
-- TODO:
|
2017-10-07 16:25:17 -07:00
|
|
|
-- Maybe get GOTOs working at file scope.
|
2017-09-24 20:20:27 -07:00
|
|
|
-- use actual variables instead of a vars table
|
2017-10-02 19:35:01 -07:00
|
|
|
-- consider non-linear codegen, rather than doing thunks for things like comprehensions
|
2017-09-13 16:22:04 -07:00
|
|
|
-- improve indentation of generated lua code
|
2017-09-11 13:05:25 -07:00
|
|
|
-- better scoping?
|
2017-09-13 16:08:26 -07:00
|
|
|
-- better error reporting
|
2017-10-02 20:17:52 -07:00
|
|
|
-- fix propagation of filename for error reporting
|
2017-09-13 16:08:26 -07:00
|
|
|
-- type checking?
|
2017-10-02 20:17:52 -07:00
|
|
|
-- Fix compiler bug that breaks when file ends with a block comment
|
2017-10-23 14:55:12 -07:00
|
|
|
-- Add compiler options for optimization level (compile-fast vs. run-fast, etc.)
|
2018-01-08 18:53:57 -08:00
|
|
|
-- Do a pass on all rules to enforce parameters-are-nouns heuristic
|
2017-09-05 23:51:35 -07:00
|
|
|
|
2017-08-22 01:02:41 -07:00
|
|
|
lpeg.setmaxstack 10000 -- whoa
|
2017-12-08 15:37:36 -08:00
|
|
|
{:P,:R,:V,:S,:Cg,:C,:Cp,:B,:Cmt} = lpeg
|
2017-09-22 00:01:53 -07:00
|
|
|
|
2017-12-30 14:31:07 -08:00
|
|
|
STRING_ESCAPES = n:"\n", t:"\t", b:"\b", a:"\a", v:"\v", f:"\f", r:"\r"
|
2018-01-03 17:23:46 -08:00
|
|
|
DIGIT, HEX = R('09'), R('09','af','AF')
|
|
|
|
ESCAPE_CHAR = (P("\\")*S("xX")*C(HEX*HEX)) / => string.char(tonumber(@, 16))
|
|
|
|
ESCAPE_CHAR += (P("\\")*C(DIGIT*(DIGIT^-2))) / => string.char(tonumber @)
|
|
|
|
ESCAPE_CHAR += (P("\\")*C(S("ntbavfr"))) / STRING_ESCAPES
|
2017-12-30 14:31:07 -08:00
|
|
|
OPERATOR_CHAR = S("'~`!@$^&*-+=|<>?/")
|
|
|
|
UTF8_CHAR = (
|
|
|
|
R("\194\223")*R("\128\191") +
|
|
|
|
R("\224\239")*R("\128\191")*R("\128\191") +
|
|
|
|
R("\240\244")*R("\128\191")*R("\128\191")*R("\128\191"))
|
|
|
|
IDENT_CHAR = R("az","AZ","09") + P("_") + UTF8_CHAR
|
|
|
|
|
|
|
|
local parse
|
|
|
|
do
|
|
|
|
export parse
|
|
|
|
ctx = {}
|
|
|
|
indent_patt = P (start)=>
|
|
|
|
spaces = @match("[ \t]*", start)
|
|
|
|
if #spaces > ctx.indent_stack[#ctx.indent_stack]
|
|
|
|
insert(ctx.indent_stack, #spaces)
|
|
|
|
return start + #spaces
|
|
|
|
dedent_patt = P (start)=>
|
|
|
|
spaces = @match("[ \t]*", start)
|
|
|
|
if #spaces < ctx.indent_stack[#ctx.indent_stack]
|
|
|
|
remove(ctx.indent_stack)
|
|
|
|
return start
|
|
|
|
nodent_patt = P (start)=>
|
|
|
|
spaces = @match("[ \t]*", start)
|
|
|
|
if #spaces == ctx.indent_stack[#ctx.indent_stack]
|
|
|
|
return start + #spaces
|
|
|
|
gt_nodent_patt = P (start)=>
|
|
|
|
-- Note! This assumes indent is 4 spaces!!!
|
|
|
|
spaces = @match("[ \t]*", start)
|
|
|
|
if #spaces >= ctx.indent_stack[#ctx.indent_stack] + 4
|
|
|
|
return start + ctx.indent_stack[#ctx.indent_stack] + 4
|
|
|
|
|
|
|
|
defs =
|
|
|
|
nl: P("\n"), ws: S(" \t"), :tonumber, operator: OPERATOR_CHAR
|
|
|
|
print: (src,pos,msg)-> print(msg, pos, repr(src\sub(math.max(0,pos-16),math.max(0,pos-1)).."|"..src\sub(pos,pos+16))) or true
|
|
|
|
utf8_char: (
|
|
|
|
R("\194\223")*R("\128\191") +
|
|
|
|
R("\224\239")*R("\128\191")*R("\128\191") +
|
|
|
|
R("\240\244")*R("\128\191")*R("\128\191")*R("\128\191"))
|
|
|
|
indented: indent_patt, nodented: nodent_patt, dedented: dedent_patt
|
|
|
|
gt_nodented: gt_nodent_patt, escape_char:ESCAPE_CHAR
|
|
|
|
error: (src,pos,err_msg)->
|
|
|
|
if ctx.source_code\sub(pos,pos) == "\n"
|
|
|
|
pos += #ctx.source_code\match("[ \t\n]*", pos)
|
|
|
|
line_no = 1
|
|
|
|
while (ctx.line_starts[line_no+1] or math.huge) < pos do line_no += 1
|
|
|
|
prev_line = line_no > 1 and ctx.source_code\match("[^\n]*", ctx.line_starts[line_no-1]) or ""
|
|
|
|
err_line = ctx.source_code\match("[^\n]*", ctx.line_starts[line_no])
|
|
|
|
next_line = line_no < #ctx.line_starts and ctx.source_code\match("[^\n]*", ctx.line_starts[line_no+1]) or ""
|
|
|
|
pointer = ("-")\rep(pos-ctx.line_starts[line_no]) .. "^"
|
|
|
|
err_msg = (err_msg or "Parse error").." in #{ctx.filename} on line #{line_no}:\n"
|
|
|
|
err_msg ..="\n#{prev_line}\n#{err_line}\n#{pointer}\n#{next_line}\n"
|
|
|
|
error(err_msg)
|
|
|
|
FunctionCall: (start, value, stop)->
|
|
|
|
stub = concat([(t.type == "Word" and t.value or "%") for t in *value], " ")
|
|
|
|
src = ctx.source_code\sub(start,stop-1)
|
2018-01-10 20:45:03 -08:00
|
|
|
return {:start, :stop, type: "FunctionCall", :src, get_line_no:ctx.get_line_no, :value, :stub}
|
2017-12-30 14:31:07 -08:00
|
|
|
|
|
|
|
setmetatable(defs, {__index:(key)=>
|
2018-01-09 14:59:06 -08:00
|
|
|
make_node = (start, value, stop)->
|
2018-01-10 20:45:03 -08:00
|
|
|
{:start, :stop, :value, src:ctx.source_code\sub(start,stop-1), get_line_no:ctx.get_line_no, type: key}
|
2018-01-09 14:59:06 -08:00
|
|
|
self[key] = make_node
|
|
|
|
return make_node
|
2017-12-30 14:31:07 -08:00
|
|
|
})
|
|
|
|
|
|
|
|
-- Just for cleanliness, I put the language spec in its own file using a slightly modified
|
|
|
|
-- version of the lpeg.re syntax.
|
|
|
|
peg_tidier = re.compile [[
|
|
|
|
file <- {~ %nl* (def/comment) (%nl+ (def/comment))* %nl* ~}
|
|
|
|
def <- anon_def / captured_def
|
|
|
|
anon_def <- ({ident} (" "*) ":"
|
|
|
|
{((%nl " "+ [^%nl]*)+) / ([^%nl]*)}) -> "%1 <- %2"
|
|
|
|
captured_def <- ({ident} (" "*) "(" {ident} ")" (" "*) ":"
|
|
|
|
{((%nl " "+ [^%nl]*)+) / ([^%nl]*)}) -> "%1 <- ({} %3 {}) -> %2"
|
|
|
|
ident <- [a-zA-Z_][a-zA-Z0-9_]*
|
|
|
|
comment <- "--" [^%nl]*
|
|
|
|
]]
|
|
|
|
|
|
|
|
nomsu = peg_tidier\match(io.open("nomsu.peg")\read("*a"))
|
|
|
|
nomsu = re.compile(nomsu, defs)
|
|
|
|
|
|
|
|
parse = (source_code, filename)->
|
2018-01-10 20:45:03 -08:00
|
|
|
_ctx = {:source_code, :filename, indent_stack: {0}}
|
|
|
|
_ctx.line_starts = re.compile("lines <- {| line ('\n' line)* |} line <- {} [^\n]*")\match(source_code)
|
|
|
|
_ctx.get_line_no = =>
|
|
|
|
unless @_line_no
|
|
|
|
line_no = 1
|
|
|
|
while (_ctx.line_starts[line_no+1] or math.huge) < @start do line_no += 1
|
|
|
|
@_line_no = "#{_ctx.filename}:#{line_no}"
|
|
|
|
return @_line_no
|
|
|
|
|
2017-12-30 14:31:07 -08:00
|
|
|
old_ctx = ctx
|
|
|
|
export ctx
|
2018-01-10 20:45:03 -08:00
|
|
|
ctx = _ctx
|
2017-12-30 14:31:07 -08:00
|
|
|
tree = nomsu\match(source_code)
|
|
|
|
ctx = old_ctx
|
|
|
|
return tree
|
2017-09-22 00:01:53 -07:00
|
|
|
|
2017-09-13 16:22:04 -07:00
|
|
|
class NomsuCompiler
|
2017-12-04 17:35:47 -08:00
|
|
|
@def_number: 0
|
2017-08-22 02:52:05 -07:00
|
|
|
new:(parent)=>
|
2017-09-20 03:06:15 -07:00
|
|
|
@write = (...)=> io.write(...)
|
2017-10-12 14:39:49 -07:00
|
|
|
@write_err = (...)=> io.stderr\write(...)
|
2017-12-04 17:35:47 -08:00
|
|
|
-- Use # to prevent someone from defining a function that has a namespace collision.
|
|
|
|
@defs = {["#vars"]:{}, ["#loaded_files"]:{}}
|
|
|
|
if parent
|
|
|
|
setmetatable(@defs, {__index:parent.defs})
|
|
|
|
setmetatable(@defs["#vars"], {__index:parent["#vars"]})
|
|
|
|
setmetatable(@defs["#loaded_files"], {__index:parent["#loaded_files"]})
|
2017-09-12 20:00:19 -07:00
|
|
|
@callstack = {}
|
2017-12-11 17:53:23 -08:00
|
|
|
@compilestack = {}
|
2017-08-22 01:02:41 -07:00
|
|
|
@debug = false
|
2017-09-18 12:34:10 -07:00
|
|
|
@utils = utils
|
2017-09-21 21:11:13 -07:00
|
|
|
@repr = (...)=> repr(...)
|
2017-12-18 16:19:56 -08:00
|
|
|
@stringify = (...)=> stringify(...)
|
2017-10-08 15:06:05 -07:00
|
|
|
if not parent
|
|
|
|
@initialize_core!
|
2017-09-14 21:03:42 -07:00
|
|
|
|
|
|
|
writeln:(...)=>
|
|
|
|
@write(...)
|
|
|
|
@write("\n")
|
2017-09-21 21:11:13 -07:00
|
|
|
|
2017-10-12 14:39:49 -07:00
|
|
|
errorln:(...)=>
|
|
|
|
@write_err(...)
|
|
|
|
@write_err("\n")
|
|
|
|
|
2018-01-08 18:53:57 -08:00
|
|
|
def: (signature, fn, src, is_macro=false)=>
|
2017-10-13 16:10:47 -07:00
|
|
|
if type(signature) == 'string'
|
|
|
|
signature = @get_stubs {signature}
|
|
|
|
elseif type(signature) == 'table' and type(signature[1]) == 'string'
|
|
|
|
signature = @get_stubs signature
|
2018-01-08 18:53:57 -08:00
|
|
|
@assert type(fn) == 'function', "Bad fn: #{repr fn}"
|
2017-10-08 15:06:05 -07:00
|
|
|
aliases = {}
|
2017-12-04 17:35:47 -08:00
|
|
|
@@def_number += 1
|
2018-01-08 18:53:57 -08:00
|
|
|
def = {:fn, :src, :is_macro, aliases:{}, def_number:@@def_number, defs:@defs}
|
2017-12-09 15:34:52 -08:00
|
|
|
where_defs_go = (getmetatable(@defs) or {}).__newindex or @defs
|
2018-01-10 16:22:45 -08:00
|
|
|
for sig_i=1,#signature
|
|
|
|
stub, arg_names, escaped_args = unpack(signature[sig_i])
|
2018-01-10 20:45:03 -08:00
|
|
|
arg_positions = {}
|
2018-01-05 15:23:18 -08:00
|
|
|
@assert stub, "NO STUB FOUND: #{repr signature}"
|
2017-10-02 17:21:22 -07:00
|
|
|
if @debug then @writeln "#{colored.bright "DEFINING RULE:"} #{colored.underscore colored.magenta repr(stub)} #{colored.bright "WITH ARGS"} #{colored.dim repr(arg_names)}"
|
|
|
|
for i=1,#arg_names-1 do for j=i+1,#arg_names
|
|
|
|
if arg_names[i] == arg_names[j] then @error "Duplicate argument in function #{stub}: '#{arg_names[i]}'"
|
2018-01-10 20:45:03 -08:00
|
|
|
|
|
|
|
if sig_i == 1
|
|
|
|
arg_positions = [i for i=1,#arg_names]
|
|
|
|
def.args = arg_names
|
2017-12-04 17:35:47 -08:00
|
|
|
def.escaped_args = escaped_args
|
2018-01-10 20:45:03 -08:00
|
|
|
else
|
|
|
|
@assert equivalent(set(def.args), set(arg_names)), "Mismatched args"
|
|
|
|
@assert equivalent(def.escaped_args, escaped_args), "Mismatched escaped args"
|
|
|
|
for j,a in ipairs(arg_names)
|
|
|
|
for i,c_a in ipairs(def.args)
|
|
|
|
if a == c_a
|
|
|
|
arg_positions[j] = i
|
2017-12-04 17:35:47 -08:00
|
|
|
insert def.aliases, stub
|
2018-01-10 20:45:03 -08:00
|
|
|
stub_def = setmetatable({:stub, :arg_names, :arg_positions}, {__index:def})
|
2017-12-04 17:35:47 -08:00
|
|
|
rawset(where_defs_go, stub, stub_def)
|
2017-10-02 17:21:22 -07:00
|
|
|
|
2018-01-08 18:53:57 -08:00
|
|
|
defmacro: (signature, fn, src)=>
|
|
|
|
@def(signature, fn, src, true)
|
2017-12-04 17:35:47 -08:00
|
|
|
|
|
|
|
scoped: (thunk)=>
|
|
|
|
old_defs = @defs
|
2017-12-09 15:34:52 -08:00
|
|
|
new_defs =
|
|
|
|
["#vars"]: setmetatable({}, {__index:@defs["#vars"]})
|
|
|
|
["#loaded_files"]: setmetatable({}, {__index:@defs["#loaded_files"]})
|
|
|
|
@defs = setmetatable(new_defs, {__index:old_defs})
|
2017-12-04 17:35:47 -08:00
|
|
|
ok, ret1, ret2 = pcall thunk, @
|
|
|
|
@defs = old_defs
|
|
|
|
if not ok then @error(ret1)
|
|
|
|
return ret1, ret2
|
|
|
|
|
2017-12-15 15:30:05 -08:00
|
|
|
serialize_defs: (scope=nil, after=nil)=>
|
|
|
|
after or= @core_defs or 0
|
2017-12-04 17:35:47 -08:00
|
|
|
scope or= @defs
|
|
|
|
defs_by_num = {}
|
|
|
|
for stub, def in pairs(scope)
|
|
|
|
if def and stub\sub(1,1) != "#"
|
|
|
|
defs_by_num[def.def_number] = def
|
|
|
|
keys = [k for k,v in pairs(defs_by_num)]
|
2017-10-31 16:19:08 -07:00
|
|
|
table.sort(keys)
|
2017-12-04 17:35:47 -08:00
|
|
|
|
2017-10-31 16:19:08 -07:00
|
|
|
buff = {}
|
2017-12-04 17:35:47 -08:00
|
|
|
k_i = 1
|
|
|
|
_using = nil
|
|
|
|
_using_do = {}
|
|
|
|
for k_i,i in ipairs(keys)
|
|
|
|
if i <= after then continue
|
|
|
|
def = defs_by_num[i]
|
|
|
|
if def.defs == scope
|
|
|
|
if def.src
|
|
|
|
insert buff, def.src
|
|
|
|
continue
|
|
|
|
if _using == def.defs
|
|
|
|
if def.src
|
|
|
|
insert _using_do, def.src
|
|
|
|
else
|
|
|
|
_using = def.defs
|
|
|
|
_using_do = {def.src}
|
|
|
|
if k_i == #keys or defs_by_num[keys[k_i+1]].defs != _using
|
|
|
|
insert buff, "using:\n #{@indent @serialize_defs(_using)}\n..do:\n #{@indent concat(_using_do, "\n")}"
|
|
|
|
|
|
|
|
for k,v in pairs(scope["#vars"] or {})
|
2017-12-14 14:26:24 -08:00
|
|
|
insert buff, "<%#{k}> = #{@value_to_nomsu v}"
|
2017-12-04 17:35:47 -08:00
|
|
|
|
2017-10-31 16:19:08 -07:00
|
|
|
return concat buff, "\n"
|
2017-09-21 21:11:13 -07:00
|
|
|
|
2017-10-13 15:42:10 -07:00
|
|
|
call: (stub,line_no,...)=>
|
2017-09-25 17:02:00 -07:00
|
|
|
def = @defs[stub]
|
2017-09-22 00:27:10 -07:00
|
|
|
-- This is a little bit hacky, but having this check is handy for catching mistakes
|
2017-09-24 20:20:27 -07:00
|
|
|
-- I use a hash sign in "#macro" so it's guaranteed to not be a valid function name
|
2017-10-13 15:42:10 -07:00
|
|
|
if def and def.is_macro and @callstack[#@callstack] != "#macro"
|
2017-09-25 17:02:00 -07:00
|
|
|
@error "Attempt to call macro at runtime: #{stub}\nThis can be caused by using a macro in a function that is defined before the macro."
|
2017-10-13 15:42:10 -07:00
|
|
|
insert @callstack, {stub, line_no}
|
2017-12-04 17:35:47 -08:00
|
|
|
unless def
|
2017-10-13 15:42:10 -07:00
|
|
|
@error "Attempt to call undefined function: #{stub}"
|
2017-10-13 14:15:02 -07:00
|
|
|
unless def.is_macro
|
|
|
|
@assert_permission(stub)
|
2018-01-10 20:45:03 -08:00
|
|
|
{:fn, :arg_positions} = def
|
|
|
|
args = [select(p, ...) for p in *arg_positions]
|
2017-09-21 21:11:13 -07:00
|
|
|
if @debug
|
2017-09-28 17:49:15 -07:00
|
|
|
@write "#{colored.bright "CALLING"} #{colored.magenta(colored.underscore stub)} "
|
2018-01-08 18:53:57 -08:00
|
|
|
@writeln "#{colored.bright "WITH ARGS:"}"
|
2018-01-10 20:45:03 -08:00
|
|
|
for i, value in ipairs(args)
|
|
|
|
@writeln " #{colored.bright "* #{def.args[i]}"} = #{colored.dim repr(value)}"
|
2017-12-04 17:35:47 -08:00
|
|
|
old_defs, @defs = @defs, def.defs
|
2018-01-10 20:45:03 -08:00
|
|
|
rets = {fn(self,unpack(args))}
|
2017-12-04 17:35:47 -08:00
|
|
|
@defs = old_defs
|
2017-09-21 21:11:13 -07:00
|
|
|
remove @callstack
|
|
|
|
return unpack(rets)
|
|
|
|
|
2017-10-13 14:15:02 -07:00
|
|
|
run_macro: (tree)=>
|
2017-10-13 16:10:47 -07:00
|
|
|
args = [arg for arg in *tree.value when arg.type != "Word"]
|
2017-09-28 17:49:15 -07:00
|
|
|
if @debug
|
2017-12-04 17:35:47 -08:00
|
|
|
@write "#{colored.bright "RUNNING MACRO"} #{colored.underscore colored.magenta(tree.stub)} "
|
2017-09-28 17:49:15 -07:00
|
|
|
@writeln "#{colored.bright "WITH ARGS:"} #{colored.dim repr args}"
|
2017-09-24 20:20:27 -07:00
|
|
|
insert @callstack, "#macro"
|
2018-01-10 20:45:03 -08:00
|
|
|
ret = @call(tree.stub, tree\get_line_no!, unpack(args))
|
2017-09-21 21:11:13 -07:00
|
|
|
remove @callstack
|
2018-01-08 18:53:57 -08:00
|
|
|
return ret
|
2017-09-12 20:00:19 -07:00
|
|
|
|
2017-12-04 17:35:47 -08:00
|
|
|
dedent: (code)=>
|
|
|
|
unless code\find("\n")
|
|
|
|
return code
|
|
|
|
spaces, indent_spaces = math.huge, math.huge
|
|
|
|
for line in code\gmatch("\n([^\n]*)")
|
|
|
|
if line\match("^%s*#.*")
|
|
|
|
continue
|
|
|
|
elseif s = line\match("^(%s*)%.%..*")
|
|
|
|
spaces = math.min(spaces, #s)
|
|
|
|
elseif s = line\match("^(%s*)%S.*")
|
|
|
|
indent_spaces = math.min(indent_spaces, #s)
|
|
|
|
if spaces != math.huge and spaces < indent_spaces
|
|
|
|
return (code\gsub("\n"..(" ")\rep(spaces), "\n"))
|
|
|
|
else
|
|
|
|
return (code\gsub("\n"..(" ")\rep(indent_spaces), "\n "))
|
|
|
|
|
2018-01-08 18:53:57 -08:00
|
|
|
indent: (code, levels=1)=>
|
|
|
|
return code\gsub("\n","\n"..(" ")\rep(levels))
|
2017-12-04 17:35:47 -08:00
|
|
|
|
2017-10-13 14:15:02 -07:00
|
|
|
assert_permission: (stub)=>
|
|
|
|
fn_def = @defs[stub]
|
|
|
|
unless fn_def
|
|
|
|
@error "Undefined function: #{fn_name}"
|
|
|
|
whiteset = fn_def.whiteset
|
|
|
|
if whiteset == nil then return true
|
|
|
|
-- TODO: maybe optimize this by making the callstack a Counter and using a
|
|
|
|
-- move-to-front optimization on the whitelist to check most likely candidates sooner
|
|
|
|
for caller in *@callstack
|
2017-10-20 15:07:57 -07:00
|
|
|
if caller != "#macro" and whiteset[caller[1]] then return true
|
2017-10-13 14:15:02 -07:00
|
|
|
@error "You do not have the authority to call: #{stub}"
|
|
|
|
|
2017-09-22 00:27:10 -07:00
|
|
|
check_permission: (fn_def)=>
|
|
|
|
if getmetatable(fn_def) != functiondef_mt
|
|
|
|
fn_name = fn_def
|
|
|
|
fn_def = @defs[fn_name]
|
|
|
|
if fn_def == nil
|
|
|
|
@error "Undefined function: #{fn_name}"
|
|
|
|
whiteset = fn_def.whiteset
|
|
|
|
if whiteset == nil then return true
|
|
|
|
-- TODO: maybe optimize this by making the callstack a Counter and using a
|
|
|
|
-- move-to-front optimization on the whitelist to check most likely candidates sooner
|
2017-09-12 20:00:19 -07:00
|
|
|
for caller in *@callstack
|
2017-10-20 15:07:57 -07:00
|
|
|
if caller != "#macro" and whiteset[caller[1]] then return true
|
2017-09-12 20:00:19 -07:00
|
|
|
return false
|
2017-08-22 01:02:41 -07:00
|
|
|
|
2017-09-20 03:06:15 -07:00
|
|
|
parse: (str, filename)=>
|
2018-01-10 20:45:03 -08:00
|
|
|
@assert type(filename) == "string", "Bad filename type: #{type filename}"
|
2017-08-22 01:02:41 -07:00
|
|
|
if @debug
|
2017-12-30 14:31:07 -08:00
|
|
|
@writeln("#{colored.bright "PARSING:"}\n#{colored.yellow str}")
|
2017-09-24 20:20:27 -07:00
|
|
|
str = str\gsub("\r","")
|
2017-12-30 14:31:07 -08:00
|
|
|
tree = parse(str, filename)
|
2018-01-05 15:23:18 -08:00
|
|
|
@assert tree, "In file #{colored.blue filename} failed to parse:\n#{colored.onyellow colored.black str}"
|
2017-09-24 20:20:27 -07:00
|
|
|
if @debug
|
|
|
|
@writeln "PARSE TREE:"
|
|
|
|
@print_tree tree, " "
|
2017-08-22 01:02:41 -07:00
|
|
|
return tree
|
2017-09-11 13:05:25 -07:00
|
|
|
|
2018-01-10 20:45:03 -08:00
|
|
|
run: (src, filename, max_operations=nil, output_file=nil)=>
|
|
|
|
if src == "" then return nil, ""
|
2017-10-09 04:31:41 -07:00
|
|
|
if max_operations
|
|
|
|
timeout = ->
|
2017-10-09 04:37:16 -07:00
|
|
|
debug.sethook!
|
2017-10-09 04:31:41 -07:00
|
|
|
@error "Execution quota exceeded. Your code took too long."
|
|
|
|
debug.sethook timeout, "", max_operations
|
2017-09-24 20:20:27 -07:00
|
|
|
tree = @parse(src, filename)
|
2018-01-08 18:53:57 -08:00
|
|
|
@assert tree, "Failed to parse: #{src}"
|
2018-01-05 15:23:18 -08:00
|
|
|
@assert tree.type == "File", "Attempt to run non-file: #{tree.type}"
|
2017-09-24 20:20:27 -07:00
|
|
|
|
2018-01-09 16:30:29 -08:00
|
|
|
lua = @tree_to_lua(tree, filename)
|
2018-01-08 18:53:57 -08:00
|
|
|
lua_code = lua.statements or (lua.expr..";")
|
2018-01-09 14:59:06 -08:00
|
|
|
lua_code = "-- File: #{filename}\n"..lua_code
|
2018-01-10 20:45:03 -08:00
|
|
|
ret = @run_lua(lua_code)
|
2017-10-10 00:52:07 -07:00
|
|
|
if max_operations
|
|
|
|
debug.sethook!
|
2018-01-08 18:53:57 -08:00
|
|
|
if output_file
|
|
|
|
output_file\write(lua_code)
|
2018-01-10 20:45:03 -08:00
|
|
|
return ret, lua_code
|
2018-01-08 18:53:57 -08:00
|
|
|
|
2018-01-10 20:45:03 -08:00
|
|
|
run_file: (filename)=>
|
2018-01-10 16:22:45 -08:00
|
|
|
if filename\match(".*%.lua")
|
2018-01-10 20:45:03 -08:00
|
|
|
return dofile(filename)(@)
|
2018-01-10 16:22:45 -08:00
|
|
|
if filename\match(".*%.nom")
|
|
|
|
if not @skip_precompiled -- Look for precompiled version
|
|
|
|
file = io.open(filename\gsub("%.nom", ".lua"), "r")
|
|
|
|
if file
|
|
|
|
lua_code = file\read("*a")
|
|
|
|
file\close!
|
2018-01-10 20:45:03 -08:00
|
|
|
return @run_lua(lua_code)
|
2018-01-10 16:22:45 -08:00
|
|
|
file = file or io.open(filename)
|
|
|
|
if not file
|
|
|
|
@error "File does not exist: #{filename}"
|
|
|
|
nomsu_code = file\read('*a')
|
|
|
|
file\close!
|
|
|
|
return @run(nomsu_code, filename)
|
|
|
|
else
|
|
|
|
@error "Invalid filetype for #{filename}"
|
|
|
|
|
2018-01-10 20:45:03 -08:00
|
|
|
require_file: (filename)=>
|
2018-01-10 16:22:45 -08:00
|
|
|
loaded = @defs["#loaded_files"]
|
|
|
|
if not loaded[filename]
|
2018-01-10 20:45:03 -08:00
|
|
|
loaded[filename] = @run_file(filename) or true
|
2018-01-10 16:22:45 -08:00
|
|
|
return loaded[filename]
|
|
|
|
|
2018-01-10 20:45:03 -08:00
|
|
|
run_lua: (lua_code)=>
|
2018-01-08 18:53:57 -08:00
|
|
|
load_lua_fn, err = load([[
|
2018-01-10 20:45:03 -08:00
|
|
|
return function(nomsu)
|
2018-01-08 18:53:57 -08:00
|
|
|
%s
|
|
|
|
end]]\format(lua_code))
|
2018-01-10 20:45:03 -08:00
|
|
|
if @debug
|
|
|
|
@writeln "#{colored.bright "RUNNING LUA:"}\n#{colored.blue colored.bright(lua_code)}"
|
2018-01-08 18:53:57 -08:00
|
|
|
if not load_lua_fn
|
|
|
|
n = 1
|
|
|
|
fn = ->
|
|
|
|
n = n + 1
|
|
|
|
("\n%-3d|")\format(n)
|
|
|
|
code = "1 |"..lua_code\gsub("\n", fn)
|
|
|
|
@error("Failed to compile generated code:\n#{colored.bright colored.blue colored.onblack code}\n\n#{err}")
|
|
|
|
run_lua_fn = load_lua_fn!
|
2018-01-10 20:45:03 -08:00
|
|
|
ok,ret = pcall(run_lua_fn, self)
|
2018-01-08 18:53:57 -08:00
|
|
|
if not ok
|
|
|
|
--@errorln "#{colored.red "Error occurred in statement:"}\n#{colored.yellow tree.src}"
|
|
|
|
@errorln debug.traceback!
|
|
|
|
@error(ret)
|
|
|
|
return ret
|
2017-09-24 20:20:27 -07:00
|
|
|
|
2018-01-10 20:45:03 -08:00
|
|
|
tree_to_value: (tree, filename)=>
|
|
|
|
code = "return (function(nomsu)\nreturn #{@tree_to_lua(tree, filename).expr};\nend);"
|
2018-01-09 14:59:06 -08:00
|
|
|
code = "-- Tree to value: #{filename}\n"..code
|
2017-09-28 17:49:15 -07:00
|
|
|
if @debug
|
|
|
|
@writeln "#{colored.bright "RUNNING LUA TO GET VALUE:"}\n#{colored.blue colored.bright(code)}"
|
2017-09-12 20:00:19 -07:00
|
|
|
lua_thunk, err = load(code)
|
2017-09-11 19:23:55 -07:00
|
|
|
if not lua_thunk
|
2017-10-13 18:09:04 -07:00
|
|
|
@error("Failed to compile generated code:\n#{colored.bright colored.blue colored.onblack code}\n\n#{colored.red err}")
|
2018-01-10 20:45:03 -08:00
|
|
|
return (lua_thunk!)(self)
|
2017-09-11 19:23:55 -07:00
|
|
|
|
2017-10-22 18:40:49 -07:00
|
|
|
tree_to_nomsu: (tree, force_inline=false)=>
|
|
|
|
-- Return <nomsu code>, <is safe for inline use>
|
2018-01-05 15:23:18 -08:00
|
|
|
@assert tree, "No tree provided."
|
2017-10-22 18:40:49 -07:00
|
|
|
if not tree.type
|
|
|
|
@errorln debug.traceback()
|
|
|
|
@error "Invalid tree: #{repr(tree)}"
|
|
|
|
switch tree.type
|
|
|
|
when "File"
|
|
|
|
return concat([@tree_to_nomsu(v, force_inline) for v in *tree.value], "\n"), false
|
|
|
|
|
|
|
|
when "Nomsu"
|
|
|
|
inside, inline = @tree_to_nomsu(tree.value, force_inline)
|
|
|
|
return "\\#{inside}", inline
|
|
|
|
|
2018-01-08 18:53:57 -08:00
|
|
|
when "Block"
|
2017-10-22 18:40:49 -07:00
|
|
|
if force_inline
|
2018-01-08 18:53:57 -08:00
|
|
|
return "(:#{concat([@tree_to_nomsu(v, true) for v in *tree.value], "; ")})", true
|
2017-10-22 18:40:49 -07:00
|
|
|
else
|
2017-12-04 17:35:47 -08:00
|
|
|
return ":"..@indent("\n"..concat([@tree_to_nomsu v for v in *tree.value], "\n")), false
|
2017-10-22 18:40:49 -07:00
|
|
|
|
|
|
|
when "FunctionCall"
|
|
|
|
buff = ""
|
|
|
|
sep = ""
|
|
|
|
inline = true
|
2017-12-04 17:35:47 -08:00
|
|
|
line_len = 0
|
2017-10-22 18:40:49 -07:00
|
|
|
for arg in *tree.value
|
|
|
|
nomsu, arg_inline = @tree_to_nomsu(arg, force_inline)
|
2017-12-04 17:35:47 -08:00
|
|
|
if sep == " " and line_len + #nomsu > 80
|
|
|
|
sep = "\n.."
|
|
|
|
unless sep == " " and not arg_inline and nomsu\sub(1,1) == ":"
|
|
|
|
buff ..= sep
|
2017-10-22 18:40:49 -07:00
|
|
|
if arg_inline
|
|
|
|
sep = " "
|
2017-12-04 17:35:47 -08:00
|
|
|
line_len += 1 + #nomsu
|
2017-10-22 18:40:49 -07:00
|
|
|
else
|
2017-12-04 17:35:47 -08:00
|
|
|
line_len = 0
|
2017-10-22 18:40:49 -07:00
|
|
|
inline = false
|
|
|
|
sep = "\n.."
|
|
|
|
if arg.type == 'FunctionCall'
|
|
|
|
if arg_inline
|
|
|
|
buff ..= "(#{nomsu})"
|
|
|
|
else
|
2017-12-04 17:35:47 -08:00
|
|
|
buff ..= "(..)\n #{@indent nomsu}"
|
2017-10-22 18:40:49 -07:00
|
|
|
else
|
|
|
|
buff ..= nomsu
|
|
|
|
return buff, inline
|
|
|
|
|
|
|
|
when "String"
|
|
|
|
buff = "\""
|
|
|
|
longbuff = "\"..\"\n |"
|
|
|
|
inline = true
|
|
|
|
for bit in *tree.value
|
|
|
|
if type(bit) == "string"
|
|
|
|
bit = bit\gsub("\\","\\\\")
|
|
|
|
buff ..= bit\gsub("\n","\\n")\gsub("\"","\\\"")
|
|
|
|
longbuff ..= bit\gsub("\n","\n |")
|
|
|
|
else
|
|
|
|
inside, bit_inline = @tree_to_nomsu(bit, force_inline)
|
|
|
|
inline and= bit_inline
|
|
|
|
buff ..= "\\(#{inside})"
|
|
|
|
longbuff ..= "\\(#{inside})"
|
|
|
|
buff ..= "\""
|
|
|
|
if force_inline or (inline and #buff <= 90)
|
|
|
|
return buff, true
|
|
|
|
else
|
|
|
|
return longbuff, false
|
|
|
|
|
|
|
|
when "List"
|
|
|
|
buff = "["
|
|
|
|
longbuff = "[..]\n "
|
|
|
|
longsep = ""
|
|
|
|
longline = 0
|
|
|
|
inline = true
|
|
|
|
for i,bit in ipairs tree.value
|
|
|
|
nomsu, bit_inline = @tree_to_nomsu(bit, force_inline)
|
|
|
|
inline and= bit_inline
|
|
|
|
if inline
|
|
|
|
if i > 1
|
|
|
|
buff ..= ", "
|
|
|
|
buff ..= nomsu
|
|
|
|
longbuff ..= longsep .. nomsu
|
|
|
|
longline += #nomsu
|
|
|
|
longsep = if bit_inline and longline <= 90
|
|
|
|
", "
|
|
|
|
else "\n "
|
|
|
|
buff ..= "]"
|
|
|
|
if force_inline or (inline and #buff <= 90)
|
|
|
|
return buff, true
|
|
|
|
else
|
|
|
|
return longbuff, false
|
|
|
|
|
2018-01-03 00:52:01 -08:00
|
|
|
when "Dict"
|
2018-01-08 18:53:57 -08:00
|
|
|
-- TODO: Implement
|
|
|
|
@error("Sorry, not yet implemented.")
|
2018-01-03 00:52:01 -08:00
|
|
|
|
2017-10-22 18:40:49 -07:00
|
|
|
when "Number"
|
|
|
|
return repr(tree.value), true
|
|
|
|
|
|
|
|
when "Var"
|
|
|
|
return "%#{tree.value}", true
|
|
|
|
|
|
|
|
when "Word"
|
|
|
|
return tree.value, true
|
|
|
|
|
|
|
|
else
|
|
|
|
@error("Unknown/unimplemented thingy: #{tree.type}")
|
|
|
|
|
2017-12-04 17:35:47 -08:00
|
|
|
value_to_nomsu: (value)=>
|
|
|
|
switch type(value)
|
|
|
|
when "nil"
|
|
|
|
return "(nil)"
|
|
|
|
when "bool"
|
|
|
|
return value and "(yes)" or "(no)"
|
|
|
|
when "number"
|
|
|
|
return repr(value)
|
|
|
|
when "table"
|
2017-12-18 16:19:56 -08:00
|
|
|
if is_list(value)
|
2017-12-04 17:35:47 -08:00
|
|
|
return "[#{concat [@value_to_nomsu(v) for v in *value], ", "}]"
|
|
|
|
else
|
2018-01-08 18:53:57 -08:00
|
|
|
return "{#{concat ["#{@value_to_nomsu(k)}=#{@value_to_nomsu(v)}" for k,v in pairs(value)], ", "}}"
|
2017-12-14 14:26:24 -08:00
|
|
|
when "string"
|
|
|
|
if value == "\n"
|
|
|
|
return "'\\n'"
|
|
|
|
elseif not value\find[["]] and not value\find"\n" and not value\find"\\"
|
|
|
|
return "\""..value.."\""
|
|
|
|
else
|
|
|
|
-- TODO: This might fail if it's being put inside a list or something
|
|
|
|
return '".."\n '..(@indent value)
|
2017-12-04 17:35:47 -08:00
|
|
|
else
|
|
|
|
error("Unsupported value_to_nomsu type: #{type(value)}")
|
|
|
|
|
2018-01-07 18:03:37 -08:00
|
|
|
@math_patt: re.compile [[ "%" (" " [*/^+-] " %")+ ]]
|
2017-12-08 15:37:36 -08:00
|
|
|
tree_to_lua: (tree, filename)=>
|
2017-09-24 20:20:27 -07:00
|
|
|
-- Return <lua code for value>, <additional lua code>
|
2018-01-05 15:23:18 -08:00
|
|
|
@assert tree, "No tree provided."
|
2017-09-20 03:06:15 -07:00
|
|
|
if not tree.type
|
2017-10-12 14:39:49 -07:00
|
|
|
@errorln debug.traceback()
|
2017-09-21 21:11:13 -07:00
|
|
|
@error "Invalid tree: #{repr(tree)}"
|
2017-08-22 01:02:41 -07:00
|
|
|
switch tree.type
|
|
|
|
when "File"
|
2018-01-08 18:53:57 -08:00
|
|
|
if #tree.value == 1
|
|
|
|
return @tree_to_lua(tree.value[1], filename)
|
2017-12-11 17:53:23 -08:00
|
|
|
lua_bits = {}
|
|
|
|
for line in *tree.value
|
2018-01-08 18:53:57 -08:00
|
|
|
lua = @tree_to_lua line, filename
|
|
|
|
if not lua
|
|
|
|
@error "No lua produced by #{repr line}"
|
|
|
|
if lua.statements then insert lua_bits, lua.statements
|
|
|
|
if lua.expr then insert lua_bits, "#{lua.expr};"
|
|
|
|
return statements:concat(lua_bits, "\n")
|
2017-09-24 20:20:27 -07:00
|
|
|
|
|
|
|
when "Nomsu"
|
2018-01-10 20:45:03 -08:00
|
|
|
return expr:"nomsu:parse(#{repr tree.value.src}, #{repr tree\get_line_no!}).value[1]"
|
2017-08-22 01:02:41 -07:00
|
|
|
|
2018-01-08 18:53:57 -08:00
|
|
|
when "Block"
|
2017-09-28 17:49:15 -07:00
|
|
|
lua_bits = {}
|
|
|
|
for arg in *tree.value
|
2018-01-08 18:53:57 -08:00
|
|
|
lua = @tree_to_lua arg, filename
|
|
|
|
if #tree.value == 1 and lua.expr and not lua.statements
|
|
|
|
return expr:lua.expr
|
|
|
|
if lua.statements then insert lua_bits, lua.statements
|
|
|
|
if lua.expr then insert lua_bits, "#{lua.expr};"
|
|
|
|
return statements:concat(lua_bits, "\n")
|
2017-09-28 17:49:15 -07:00
|
|
|
|
2017-08-22 01:02:41 -07:00
|
|
|
when "FunctionCall"
|
2017-12-11 17:53:23 -08:00
|
|
|
insert @compilestack, tree
|
|
|
|
|
2017-12-04 17:35:47 -08:00
|
|
|
def = @defs[tree.stub]
|
2017-10-13 14:15:02 -07:00
|
|
|
if def and def.is_macro
|
2018-01-08 18:53:57 -08:00
|
|
|
lua = @run_macro(tree)
|
2017-12-11 17:53:23 -08:00
|
|
|
remove @compilestack
|
2018-01-08 18:53:57 -08:00
|
|
|
return lua
|
2018-01-07 18:03:37 -08:00
|
|
|
elseif not def and @@math_patt\match(tree.stub)
|
2018-01-08 18:53:57 -08:00
|
|
|
-- This is a bit of a hack, but this code handles arbitrarily complex
|
|
|
|
-- math expressions like 2*x + 3^2 without having to define a single
|
|
|
|
-- rule for every possibility.
|
2018-01-07 18:03:37 -08:00
|
|
|
bits = {}
|
|
|
|
for tok in *tree.value
|
|
|
|
if tok.type == "Word"
|
|
|
|
insert bits, tok.value
|
|
|
|
else
|
2018-01-08 18:53:57 -08:00
|
|
|
lua = @tree_to_lua(tok, filename)
|
|
|
|
@assert(lua.statements == nil, "non-expression value inside math expression")
|
|
|
|
insert bits, lua.expr
|
|
|
|
remove @compilestack
|
|
|
|
return expr:"(#{concat bits, " "})"
|
2018-01-07 18:03:37 -08:00
|
|
|
|
2018-01-10 20:45:03 -08:00
|
|
|
args = {repr(tree.stub), repr(tree\get_line_no!)}
|
2017-12-04 17:35:47 -08:00
|
|
|
local arg_names, escaped_args
|
|
|
|
if def
|
|
|
|
arg_names, escaped_args = def.arg_names, def.escaped_args
|
|
|
|
else
|
|
|
|
arg_names, escaped_args = [w.value for w in *tree.value when w.type == "Word"], {}
|
|
|
|
arg_num = 1
|
2017-09-24 20:20:27 -07:00
|
|
|
for arg in *tree.value
|
|
|
|
if arg.type == 'Word' then continue
|
2017-12-04 17:35:47 -08:00
|
|
|
if escaped_args[arg_names[arg_num]]
|
2018-01-10 20:45:03 -08:00
|
|
|
insert args, "nomsu:parse(#{repr arg.src}, #{repr tree\get_line_no!}).value[1]"
|
2017-12-30 14:31:07 -08:00
|
|
|
else
|
2018-01-08 18:53:57 -08:00
|
|
|
lua = @tree_to_lua arg, filename
|
|
|
|
if lua.statements
|
2018-01-09 14:59:06 -08:00
|
|
|
@error "Cannot use [[#{arg.src}]] as a function argument to #{tree.stub}, since it's not an expression."
|
2018-01-08 18:53:57 -08:00
|
|
|
insert args, lua.expr
|
2017-12-04 17:35:47 -08:00
|
|
|
arg_num += 1
|
2017-12-11 17:53:23 -08:00
|
|
|
|
|
|
|
remove @compilestack
|
2018-01-08 18:53:57 -08:00
|
|
|
return expr:@@comma_separated_items("nomsu:call(", args, ")")
|
2017-08-22 01:02:41 -07:00
|
|
|
|
|
|
|
when "String"
|
2017-09-14 02:41:10 -07:00
|
|
|
concat_parts = {}
|
|
|
|
string_buffer = ""
|
2017-09-24 20:20:27 -07:00
|
|
|
for bit in *tree.value
|
|
|
|
if type(bit) == "string"
|
|
|
|
string_buffer ..= bit
|
|
|
|
continue
|
|
|
|
if string_buffer ~= ""
|
|
|
|
insert concat_parts, repr(string_buffer)
|
|
|
|
string_buffer = ""
|
2018-01-08 18:53:57 -08:00
|
|
|
lua = @tree_to_lua bit, filename
|
2017-09-28 17:49:15 -07:00
|
|
|
if @debug
|
|
|
|
@writeln (colored.bright "INTERP:")
|
|
|
|
@print_tree bit
|
2018-01-08 18:53:57 -08:00
|
|
|
@writeln "#{colored.bright "EXPR:"} #{lua.expr}, #{colored.bright "STATEMENT:"} #{lua.statements}"
|
|
|
|
if lua.statements
|
2017-09-24 20:20:27 -07:00
|
|
|
@error "Cannot use [[#{bit.src}]] as a string interpolation value, since it's not an expression."
|
2018-01-08 18:53:57 -08:00
|
|
|
insert concat_parts, "nomsu:stringify(#{lua.expr})"
|
2017-09-14 02:41:10 -07:00
|
|
|
|
|
|
|
if string_buffer ~= ""
|
2017-09-21 21:11:13 -07:00
|
|
|
insert concat_parts, repr(string_buffer)
|
2017-09-14 02:41:10 -07:00
|
|
|
|
2017-09-26 15:27:01 -07:00
|
|
|
if #concat_parts == 0
|
2018-01-08 18:53:57 -08:00
|
|
|
return expr:"''"
|
2017-09-28 17:49:15 -07:00
|
|
|
elseif #concat_parts == 1
|
2018-01-08 18:53:57 -08:00
|
|
|
return expr:concat_parts[1]
|
|
|
|
else return expr:"(#{concat(concat_parts, "..")})"
|
2017-08-22 01:02:41 -07:00
|
|
|
|
|
|
|
when "List"
|
2017-09-24 20:20:27 -07:00
|
|
|
items = {}
|
|
|
|
for item in *tree.value
|
2018-01-08 18:53:57 -08:00
|
|
|
lua = @tree_to_lua item, filename
|
|
|
|
if lua.statements
|
2017-09-24 20:20:27 -07:00
|
|
|
@error "Cannot use [[#{item.src}]] as a list item, since it's not an expression."
|
2018-01-08 18:53:57 -08:00
|
|
|
insert items, lua.expr
|
|
|
|
return expr:@@comma_separated_items("{", items, "}")
|
2017-09-24 20:20:27 -07:00
|
|
|
|
2018-01-03 00:52:01 -08:00
|
|
|
when "Dict"
|
|
|
|
items = {}
|
|
|
|
for entry in *tree.value
|
2018-01-08 18:53:57 -08:00
|
|
|
key_lua = if entry.dict_key.type == "Word"
|
|
|
|
{expr:repr(entry.dict_key.value)}
|
2018-01-03 00:52:01 -08:00
|
|
|
else
|
2018-01-08 18:53:57 -08:00
|
|
|
@tree_to_lua entry.dict_key, filename
|
|
|
|
if key_lua.statements
|
2018-01-03 00:52:01 -08:00
|
|
|
@error "Cannot use [[#{entry.dict_key.src}]] as a dict key, since it's not an expression."
|
2018-01-08 18:53:57 -08:00
|
|
|
value_lua = @tree_to_lua entry.dict_value, filename
|
|
|
|
if value_lua.statements
|
2018-01-03 00:52:01 -08:00
|
|
|
@error "Cannot use [[#{entry.dict_value.src}]] as a dict value, since it's not an expression."
|
2018-01-08 18:53:57 -08:00
|
|
|
key_str = key_lua.expr\match([=[["']([a-zA-Z_][a-zA-Z0-9_]*)['"]]=])
|
2018-01-03 00:52:01 -08:00
|
|
|
if key_str
|
2018-01-08 18:53:57 -08:00
|
|
|
insert items, "#{key_str}=#{value_lua.expr}"
|
2018-01-03 00:52:01 -08:00
|
|
|
else
|
2018-01-08 18:53:57 -08:00
|
|
|
insert items, "[#{key_lua.expr}]=#{value_lua.expr}"
|
|
|
|
return expr:@@comma_separated_items("{", items, "}")
|
2018-01-03 00:52:01 -08:00
|
|
|
|
2017-09-24 20:20:27 -07:00
|
|
|
when "Number"
|
2018-01-08 18:53:57 -08:00
|
|
|
return expr:repr(tree.value)
|
2017-08-22 01:02:41 -07:00
|
|
|
|
|
|
|
when "Var"
|
2018-01-10 20:45:03 -08:00
|
|
|
return expr:("_"..@var_to_lua_identifier(tree.value))
|
2017-08-22 01:02:41 -07:00
|
|
|
|
|
|
|
else
|
2017-09-19 00:29:31 -07:00
|
|
|
@error("Unknown/unimplemented thingy: #{tree.type}")
|
2017-09-24 20:20:27 -07:00
|
|
|
|
2017-09-25 17:02:00 -07:00
|
|
|
walk_tree: (tree, depth=0)=>
|
|
|
|
coroutine.yield(tree, depth)
|
|
|
|
if type(tree) != 'table' or not tree.type
|
2017-09-24 20:20:27 -07:00
|
|
|
return
|
|
|
|
switch tree.type
|
2018-01-08 18:53:57 -08:00
|
|
|
when "List", "File", "Block", "FunctionCall", "String"
|
2017-09-24 20:20:27 -07:00
|
|
|
for v in *tree.value
|
2017-09-25 17:02:00 -07:00
|
|
|
@walk_tree(v, depth+1)
|
2018-01-03 00:52:01 -08:00
|
|
|
when "Dict"
|
|
|
|
for e in *tree.value
|
|
|
|
@walk_tree(e.dict_key, depth+1)
|
|
|
|
@walk_tree(e.dict_value, depth+1)
|
2017-09-25 17:02:00 -07:00
|
|
|
else @walk_tree(tree.value, depth+1)
|
|
|
|
return nil
|
|
|
|
|
|
|
|
print_tree: (tree)=>
|
2017-09-28 17:49:15 -07:00
|
|
|
@write colors.bright..colors.green
|
2017-09-25 17:02:00 -07:00
|
|
|
for node,depth in coroutine.wrap(-> @walk_tree tree)
|
|
|
|
if type(node) != 'table' or not node.type
|
|
|
|
@writeln((" ")\rep(depth)..repr(node))
|
|
|
|
else
|
|
|
|
@writeln("#{(" ")\rep(depth)}#{node.type}:")
|
2017-09-28 17:49:15 -07:00
|
|
|
@write colors.reset
|
2017-09-25 17:02:00 -07:00
|
|
|
|
|
|
|
tree_to_str: (tree)=>
|
|
|
|
bits = {}
|
|
|
|
for node,depth in coroutine.wrap(-> @walk_tree tree)
|
|
|
|
if type(node) != 'table' or not node.type
|
|
|
|
insert bits, ((" ")\rep(depth)..repr(node))
|
|
|
|
else
|
|
|
|
insert bits, ("#{(" ")\rep(depth)}#{node.type}:")
|
|
|
|
return concat(bits, "\n")
|
2017-09-11 13:05:25 -07:00
|
|
|
|
2017-09-21 13:30:59 -07:00
|
|
|
@unescape_string: (str)=>
|
2018-01-03 17:23:46 -08:00
|
|
|
Cs(((P("\\\\")/"\\") + (P("\\\"")/'"') + ESCAPE_CHAR + P(1))^0)\match(str)
|
2017-09-21 13:30:59 -07:00
|
|
|
|
2017-09-11 13:05:25 -07:00
|
|
|
@comma_separated_items: (open, items, close)=>
|
2017-09-21 13:30:59 -07:00
|
|
|
bits = {open}
|
|
|
|
so_far = 0
|
|
|
|
for i,item in ipairs(items)
|
|
|
|
if i < #items then item ..= ", "
|
|
|
|
insert bits, item
|
|
|
|
so_far += #item
|
|
|
|
if so_far >= 80
|
|
|
|
insert bits, "\n"
|
|
|
|
so_far = 0
|
|
|
|
insert bits, close
|
2017-09-21 21:11:13 -07:00
|
|
|
return concat(bits)
|
|
|
|
|
2017-09-24 20:20:27 -07:00
|
|
|
replaced_vars: (tree, vars)=>
|
|
|
|
if type(tree) != 'table' then return tree
|
|
|
|
switch tree.type
|
|
|
|
when "Var"
|
2017-09-28 17:49:15 -07:00
|
|
|
if vars[tree.value] ~= nil
|
2017-09-24 20:20:27 -07:00
|
|
|
tree = vars[tree.value]
|
2018-01-08 18:53:57 -08:00
|
|
|
when "File", "Nomsu", "Block", "List", "FunctionCall", "String"
|
2017-09-25 17:02:00 -07:00
|
|
|
new_value = @replaced_vars tree.value, vars
|
2017-09-24 20:20:27 -07:00
|
|
|
if new_value != tree.value
|
|
|
|
tree = {k,v for k,v in pairs(tree)}
|
|
|
|
tree.value = new_value
|
2018-01-03 00:52:01 -08:00
|
|
|
when "Dict"
|
|
|
|
dirty = false
|
|
|
|
replacements = {}
|
|
|
|
for i,e in ipairs tree.value
|
|
|
|
new_key = @replaced_vars e.dict_key, vars
|
|
|
|
new_value = @replaced_vars e.dict_value, vars
|
|
|
|
dirty or= new_key != e.dict_key or new_value != e.dict_value
|
|
|
|
replacements[i] = {dict_key:new_key, dict_value:new_value}
|
|
|
|
if dirty
|
|
|
|
tree = {k,v for k,v in pairs(tree)}
|
|
|
|
tree.value = replacements
|
2017-09-24 20:20:27 -07:00
|
|
|
when nil -- Raw table, probably from one of the .value of a multi-value tree (e.g. List)
|
|
|
|
new_values = {}
|
|
|
|
any_different = false
|
|
|
|
for k,v in pairs tree
|
2017-09-25 17:02:00 -07:00
|
|
|
new_values[k] = @replaced_vars v, vars
|
2017-09-24 20:20:27 -07:00
|
|
|
any_different or= (new_values[k] != tree[k])
|
|
|
|
if any_different
|
|
|
|
tree = new_values
|
|
|
|
return tree
|
|
|
|
|
2018-01-05 14:56:35 -08:00
|
|
|
@stub_patt: re.compile "{|(' '+ / '\n..' / {'\\'? '%' %id*} / {%id+} / {%op})*|}",
|
|
|
|
id:IDENT_CHAR, op:OPERATOR_CHAR
|
2017-09-25 17:02:00 -07:00
|
|
|
get_stub: (x)=>
|
|
|
|
if not x
|
|
|
|
@error "Nothing to get stub from"
|
2017-12-04 17:35:47 -08:00
|
|
|
-- Returns a single stub ("say %"), list of arg names ({"msg"}), and set of arg
|
|
|
|
-- names that should not be evaluated from a single rule def
|
2017-09-21 21:11:13 -07:00
|
|
|
-- (e.g. "say %msg") or function call (e.g. FunctionCall({Word("say"), Var("msg")))
|
|
|
|
if type(x) == 'string'
|
2017-12-04 17:35:47 -08:00
|
|
|
-- Standardize format to stuff separated by spaces
|
2018-01-05 14:56:35 -08:00
|
|
|
spec = concat @@stub_patt\match(x), " "
|
2017-12-30 14:31:07 -08:00
|
|
|
stub = spec\gsub("%%%S+","%%")\gsub("\\","")
|
2018-01-05 14:56:35 -08:00
|
|
|
arg_names = [arg for arg in spec\gmatch("%%(%S*)")]
|
|
|
|
escaped_args = {arg, true for arg in spec\gmatch("\\%%(%S*)")}
|
2017-12-04 17:35:47 -08:00
|
|
|
return stub, arg_names, escaped_args
|
|
|
|
if type(x) != 'table'
|
|
|
|
@error "Invalid type for getting stub: #{type(x)} for:\n#{repr x}"
|
2017-09-21 21:11:13 -07:00
|
|
|
switch x.type
|
2017-09-25 17:02:00 -07:00
|
|
|
when "String" then return @get_stub(x.value)
|
2017-12-04 17:35:47 -08:00
|
|
|
when "FunctionCall" then return @get_stub(x.src)
|
2017-11-01 16:49:11 -07:00
|
|
|
else @error "Unsupported get stub type: #{x.type} for #{repr x}"
|
2018-01-03 00:52:01 -08:00
|
|
|
|
2017-10-02 17:21:22 -07:00
|
|
|
get_stubs: (x)=>
|
|
|
|
if type(x) != 'table' then return {{@get_stub(x)}}
|
|
|
|
switch x.type
|
|
|
|
when nil
|
|
|
|
return [{@get_stub(i)} for i in *x]
|
|
|
|
when "List"
|
|
|
|
return [{@get_stub(i)} for i in *x.value]
|
|
|
|
return {{@get_stub(x)}}
|
2017-09-21 00:10:26 -07:00
|
|
|
|
|
|
|
var_to_lua_identifier: (var)=>
|
2017-09-21 21:11:13 -07:00
|
|
|
-- Converts arbitrary nomsu vars to valid lua identifiers by replacing illegal
|
|
|
|
-- characters with escape sequences
|
2017-09-24 20:20:27 -07:00
|
|
|
if type(var) == 'table' and var.type == "Var"
|
|
|
|
var = var.value
|
|
|
|
(var\gsub "%W", (verboten)->
|
2017-09-21 02:33:04 -07:00
|
|
|
if verboten == "_" then "__" else ("_%x")\format(verboten\byte!))
|
2018-01-05 15:23:18 -08:00
|
|
|
|
|
|
|
assert: (condition, msg='')=>
|
|
|
|
if not condition
|
2018-01-10 20:45:03 -08:00
|
|
|
@error("Assertion failed: "..msg)
|
2017-08-18 17:08:15 -07:00
|
|
|
|
2017-10-12 14:39:49 -07:00
|
|
|
error: (msg)=>
|
2017-12-04 17:35:47 -08:00
|
|
|
error_msg = colored.red "ERROR!"
|
2018-01-10 20:45:03 -08:00
|
|
|
if msg and #msg > 0
|
2017-12-04 17:35:47 -08:00
|
|
|
error_msg ..= "\n" .. (colored.bright colored.yellow colored.onred msg)
|
2018-01-10 20:45:03 -08:00
|
|
|
else
|
|
|
|
error_msg ..= "\n<no message>"
|
2017-12-04 17:35:47 -08:00
|
|
|
error_msg ..= "\nCallstack:"
|
2017-12-18 16:19:56 -08:00
|
|
|
maxlen = max([#c[2] for c in *@callstack when c != "#macro"])
|
2017-09-12 21:10:22 -07:00
|
|
|
for i=#@callstack,1,-1
|
2017-10-13 15:42:10 -07:00
|
|
|
if @callstack[i] != "#macro"
|
2017-12-08 15:37:36 -08:00
|
|
|
line_no = @callstack[i][2]
|
|
|
|
if line_no
|
|
|
|
nums = [tonumber(n) for n in line_no\gmatch(":([0-9]+)")]
|
2017-12-18 16:19:56 -08:00
|
|
|
line_no = line_no\gsub(":.*$", ":#{sum(nums) - #nums + 1}")
|
2017-12-08 15:37:36 -08:00
|
|
|
error_msg ..= "\n #{"%-#{maxlen}s"\format line_no}| #{@callstack[i][1]}"
|
2017-12-04 17:35:47 -08:00
|
|
|
error_msg ..= "\n <top level>"
|
2017-09-14 18:18:42 -07:00
|
|
|
@callstack = {}
|
2017-12-04 17:35:47 -08:00
|
|
|
error error_msg, 3
|
2017-09-28 17:49:15 -07:00
|
|
|
|
2017-12-11 17:53:23 -08:00
|
|
|
source_code: (level=0)=>
|
|
|
|
@dedent @compilestack[#@compilestack-level].src
|
2017-09-12 21:10:22 -07:00
|
|
|
|
2017-09-12 20:00:19 -07:00
|
|
|
initialize_core: =>
|
|
|
|
-- Sets up some core functionality
|
2017-12-04 17:54:52 -08:00
|
|
|
nomsu_string_as_lua = (code)=>
|
2017-10-19 18:16:15 -07:00
|
|
|
concat_parts = {}
|
|
|
|
for bit in *code.value
|
|
|
|
if type(bit) == "string"
|
|
|
|
insert concat_parts, bit
|
|
|
|
else
|
2018-01-08 18:53:57 -08:00
|
|
|
lua = @tree_to_lua bit, filename
|
|
|
|
if lua.statements
|
2017-10-19 18:16:15 -07:00
|
|
|
@error "Cannot use [[#{bit.src}]] as a string interpolation value, since it's not an expression."
|
2018-01-08 18:53:57 -08:00
|
|
|
insert concat_parts, lua.expr
|
2017-10-19 18:16:15 -07:00
|
|
|
return concat(concat_parts)
|
2018-01-08 18:53:57 -08:00
|
|
|
|
2018-01-10 20:45:03 -08:00
|
|
|
@defmacro "do %block", (_block)=>
|
2018-01-08 18:53:57 -08:00
|
|
|
make_line = (lua)-> lua.expr and (lua.expr..";") or lua.statements
|
2018-01-10 20:45:03 -08:00
|
|
|
if _block.type == "Block"
|
|
|
|
return @tree_to_lua(_block)
|
2018-01-08 18:53:57 -08:00
|
|
|
else
|
2018-01-10 20:45:03 -08:00
|
|
|
return expr:"#{@tree_to_lua _block}(nomsu)"
|
2017-12-09 15:34:52 -08:00
|
|
|
|
2018-01-10 20:45:03 -08:00
|
|
|
@defmacro "immediately %block", (_block)=>
|
|
|
|
lua = @tree_to_lua(_block)
|
2018-01-08 18:53:57 -08:00
|
|
|
lua_code = lua.statements or (lua.expr..";")
|
2018-01-09 14:59:06 -08:00
|
|
|
lua_code = "-- Immediately:\n"..lua_code
|
2018-01-10 20:45:03 -08:00
|
|
|
@run_lua(lua_code)
|
2018-01-10 13:52:41 -08:00
|
|
|
return statements:lua_code
|
2018-01-08 18:53:57 -08:00
|
|
|
|
2018-01-10 20:45:03 -08:00
|
|
|
@defmacro "lua> %code", (_code)=>
|
|
|
|
lua = nomsu_string_as_lua(@, _code)
|
2018-01-08 18:53:57 -08:00
|
|
|
return statements:lua
|
2017-09-25 17:02:00 -07:00
|
|
|
|
2018-01-10 20:45:03 -08:00
|
|
|
@defmacro "=lua %code", (_code)=>
|
|
|
|
lua = nomsu_string_as_lua(@, _code)
|
2018-01-08 18:53:57 -08:00
|
|
|
return expr:lua
|
2017-09-28 17:49:15 -07:00
|
|
|
|
2018-01-10 20:45:03 -08:00
|
|
|
@defmacro "__src__ %level", (_level)=>
|
|
|
|
expr: repr(@source_code(@tree_to_value(_level)))
|
2017-12-30 14:31:07 -08:00
|
|
|
|
2018-01-10 20:45:03 -08:00
|
|
|
@def "run file %filename", (_filename)=>
|
|
|
|
@run_file(_filename)
|
2018-01-10 16:22:45 -08:00
|
|
|
|
2018-01-10 20:45:03 -08:00
|
|
|
@defmacro "require %filename", (_filename)=>
|
|
|
|
filename = @tree_to_value(_filename)
|
|
|
|
@require_file(filename)
|
2018-01-10 16:22:45 -08:00
|
|
|
return statements:"nomsu:require_file(#{repr filename});"
|
2017-09-12 20:00:19 -07:00
|
|
|
|
2017-10-08 18:23:48 -07:00
|
|
|
if arg
|
2017-10-08 20:41:05 -07:00
|
|
|
export colors
|
|
|
|
colors = require 'consolecolors'
|
2017-10-08 18:23:48 -07:00
|
|
|
parser = re.compile([[
|
2017-10-08 18:25:50 -07:00
|
|
|
args <- {| {:flags: flags? :} ({:input: input :} ";" ("-o;"{:output: output :} ";")?)? (";")? |} !.
|
2017-10-08 18:23:48 -07:00
|
|
|
flags <- (({| ({flag} ";")* |}) -> set)
|
2018-01-07 18:45:27 -08:00
|
|
|
flag <- "-c" / "-i" / "-p" / "-O" / "--help" / "-h" / "-v"
|
2017-10-08 18:23:48 -07:00
|
|
|
input <- "-" / [^;]+
|
|
|
|
output <- "-" / [^;]+
|
2017-12-18 16:19:56 -08:00
|
|
|
]], {:set})
|
2017-10-08 18:23:48 -07:00
|
|
|
args = concat(arg, ";")..";"
|
|
|
|
args = parser\match(args) or {}
|
|
|
|
if not args or not args.flags or args.flags["--help"] or args.flags["-h"]
|
2017-12-14 14:07:03 -08:00
|
|
|
print "Usage: lua nomsu.lua [-c] [-i] [-p] [-O] [--help] [input [-o output]]"
|
2017-10-08 18:23:48 -07:00
|
|
|
os.exit!
|
2017-09-12 20:00:19 -07:00
|
|
|
|
2017-09-14 15:35:06 -07:00
|
|
|
c = NomsuCompiler()
|
2017-12-30 14:31:07 -08:00
|
|
|
|
2018-01-07 18:45:27 -08:00
|
|
|
if args.flags["-v"]
|
|
|
|
c.debug = true
|
|
|
|
|
2017-12-14 14:07:03 -08:00
|
|
|
c.skip_precompiled = not args.flags["-O"]
|
2017-10-08 18:23:48 -07:00
|
|
|
if args.input
|
|
|
|
-- Read a file or stdin and output either the printouts or the compiled lua
|
|
|
|
if args.flags["-c"] and not args.output
|
2018-01-10 13:52:41 -08:00
|
|
|
args.output = args.input\gsub("%.nom", ".lua")
|
2017-10-08 18:23:48 -07:00
|
|
|
compiled_output = nil
|
|
|
|
if args.flags["-p"]
|
|
|
|
_write = c.write
|
|
|
|
c.write = ->
|
|
|
|
compiled_output = io.output()
|
|
|
|
elseif args.output
|
|
|
|
compiled_output = io.open(args.output, 'w')
|
|
|
|
|
|
|
|
if args.input\match(".*%.lua")
|
|
|
|
retval = dofile(args.input)(c, {})
|
|
|
|
else
|
|
|
|
input = if args.input == '-'
|
|
|
|
io.read('*a')
|
|
|
|
else io.open(args.input)\read("*a")
|
2018-01-10 20:45:03 -08:00
|
|
|
retval, code = c\run(input, args.input)
|
2018-01-08 18:53:57 -08:00
|
|
|
if args.output
|
2018-01-10 13:52:41 -08:00
|
|
|
compiled_output\write(code)
|
2018-01-08 18:53:57 -08:00
|
|
|
|
2017-10-08 18:23:48 -07:00
|
|
|
if args.flags["-p"]
|
|
|
|
c.write = _write
|
|
|
|
|
2017-10-20 15:17:57 -07:00
|
|
|
if args.flags["-i"]
|
2017-10-08 18:23:48 -07:00
|
|
|
-- REPL
|
2017-10-09 04:31:41 -07:00
|
|
|
c\run('require "lib/core.nom"', "stdin")
|
2017-09-14 15:35:06 -07:00
|
|
|
while true
|
2017-10-08 18:23:48 -07:00
|
|
|
buff = ""
|
|
|
|
while true
|
|
|
|
io.write(">> ")
|
|
|
|
line = io.read("*L")
|
|
|
|
if line == "\n" or not line
|
|
|
|
break
|
|
|
|
buff ..= line
|
|
|
|
if #buff == 0
|
2017-09-14 15:35:06 -07:00
|
|
|
break
|
2018-01-10 20:45:03 -08:00
|
|
|
ok, ret = pcall(-> c\run(buff, "stdin"))
|
2017-10-08 18:23:48 -07:00
|
|
|
if ok and ret != nil
|
|
|
|
print "= "..repr(ret)
|
2017-09-12 20:00:19 -07:00
|
|
|
|
2017-09-13 16:22:04 -07:00
|
|
|
return NomsuCompiler
|