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-08-18 21:21:24 -07:00
|
|
|
utils = require 'utils'
|
2017-09-21 21:11:13 -07:00
|
|
|
repr = utils.repr
|
2017-09-28 17:49:15 -07:00
|
|
|
colors = require 'ansicolors'
|
|
|
|
colored = setmetatable({}, {__index:(_,color)-> ((msg)-> colors[color]..msg..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-08-16 04:35:35 -07:00
|
|
|
|
2017-09-05 23:51:35 -07:00
|
|
|
-- TODO:
|
2017-10-05 15:26:22 -07:00
|
|
|
-- check robustness/functionality of compiler mode.
|
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-24 20:20:27 -07:00
|
|
|
-- provide way to run precompiled nomsu -> lua code from nomsu
|
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-21 00:10:26 -07:00
|
|
|
-- add line numbers of function calls
|
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-09-05 23:51:35 -07:00
|
|
|
|
2017-08-22 01:02:41 -07:00
|
|
|
lpeg.setmaxstack 10000 -- whoa
|
2017-09-05 21:20:11 -07:00
|
|
|
{:P,:V,:S,:Cg,:C,:Cp,:B,:Cmt} = lpeg
|
2017-09-21 04:51:02 -07:00
|
|
|
STRING_ESCAPES = n:"\n", t:"\t", b:"\b", a:"\a", v:"\v", f:"\f", r:"\r"
|
2017-08-16 04:35:35 -07:00
|
|
|
|
2017-09-22 00:01:53 -07:00
|
|
|
-- NOTE: this treats tabs as equivalent to 1 space
|
|
|
|
indent_stack = {0}
|
|
|
|
check_indent = (subject,end_pos,spaces)->
|
|
|
|
if #spaces > indent_stack[#indent_stack]
|
|
|
|
insert(indent_stack, #spaces)
|
|
|
|
return end_pos
|
|
|
|
check_dedent = (subject,end_pos,spaces)->
|
|
|
|
if #spaces < indent_stack[#indent_stack]
|
|
|
|
remove(indent_stack)
|
|
|
|
return end_pos
|
|
|
|
check_nodent = (subject,end_pos,spaces)->
|
|
|
|
if #spaces == indent_stack[#indent_stack]
|
|
|
|
return end_pos
|
|
|
|
|
2017-09-24 20:20:27 -07:00
|
|
|
-- TYPES:
|
2017-10-02 17:21:22 -07:00
|
|
|
-- Number 1, "String", %Var, [List], (expression), {Thunk}, \Nomsu, FunctionCall, File
|
2017-09-24 20:20:27 -07:00
|
|
|
|
2017-09-22 00:01:53 -07:00
|
|
|
nomsu = [=[
|
2017-09-24 20:20:27 -07:00
|
|
|
file <- ({ {| shebang?
|
|
|
|
(ignored_line %nl)*
|
|
|
|
statements (nodent statements)*
|
|
|
|
(%nl ignored_line)* %nl?
|
|
|
|
(({.+} ("" -> "Unexpected end of file")) => error)? |} }) -> File
|
2017-09-22 00:01:53 -07:00
|
|
|
|
|
|
|
shebang <- "#!" [^%nl]* %nl
|
|
|
|
|
2017-09-24 20:20:27 -07:00
|
|
|
inline_statements <- inline_statement (semicolon inline_statement)*
|
|
|
|
noeol_statements <- (inline_statement semicolon)* noeol_statement
|
|
|
|
statements <- (inline_statement semicolon)* statement
|
2017-09-22 00:01:53 -07:00
|
|
|
|
2017-09-24 20:20:27 -07:00
|
|
|
statement <- functioncall / expression
|
|
|
|
noeol_statement <- noeol_functioncall / noeol_expression
|
|
|
|
inline_statement <- inline_functioncall / inline_expression
|
2017-09-22 00:01:53 -07:00
|
|
|
|
2017-10-02 17:21:22 -07:00
|
|
|
inline_thunk <- ({ {| "{" inline_statements "}" |} }) -> Thunk
|
|
|
|
eol_thunk <- ({ {| ":" %ws? noeol_statements eol |} }) -> Thunk
|
|
|
|
indented_thunk <- ({ {| (":" / "{..}") indent
|
2017-09-26 15:27:01 -07:00
|
|
|
statements (nodent statements)*
|
2017-10-02 17:21:22 -07:00
|
|
|
(dedent / (({.+} ("" -> "Error while parsing thunk")) => error))
|
|
|
|
|} }) -> Thunk
|
2017-09-22 00:01:53 -07:00
|
|
|
|
2017-09-25 17:02:00 -07:00
|
|
|
inline_nomsu <- ({ ("\" inline_expression) }) -> Nomsu
|
|
|
|
eol_nomsu <- ({ ("\" noeol_expression) }) -> Nomsu
|
|
|
|
indented_nomsu <- ({ ("\" expression) }) -> Nomsu
|
2017-09-24 20:20:27 -07:00
|
|
|
|
2017-10-02 17:21:22 -07:00
|
|
|
inline_expression <- number / variable / inline_string / inline_list / inline_nomsu
|
|
|
|
/ inline_thunk / ("(" inline_statement ")")
|
|
|
|
noeol_expression <- indented_string / indented_nomsu / indented_list / indented_thunk
|
|
|
|
/ ("(..)" indent
|
|
|
|
statement
|
|
|
|
(dedent / (({.+} ("" -> "Error while parsing indented expression"))))
|
|
|
|
) / inline_expression
|
|
|
|
expression <- eol_thunk / eol_nomsu / noeol_expression
|
2017-09-22 00:01:53 -07:00
|
|
|
|
|
|
|
-- Function calls need at least one word in them
|
2017-09-24 20:20:27 -07:00
|
|
|
inline_functioncall <- ({ {|
|
|
|
|
(inline_expression tok_gap)* word (tok_gap (inline_expression / word))*
|
|
|
|
|} }) -> FunctionCall
|
|
|
|
noeol_functioncall <- ({ {|
|
|
|
|
(noeol_expression tok_gap)* word (tok_gap (noeol_expression / word))*
|
|
|
|
|} }) -> FunctionCall
|
2017-09-22 00:01:53 -07:00
|
|
|
functioncall <- ({ {|
|
|
|
|
(expression (dotdot / tok_gap))* word ((dotdot / tok_gap) (expression / word))*
|
|
|
|
|} }) -> FunctionCall
|
|
|
|
|
|
|
|
word <- ({ !number {%wordchar (!"'" %wordchar)*} }) -> Word
|
|
|
|
|
2017-09-24 20:20:27 -07:00
|
|
|
inline_string <- ({ '"' {|
|
2017-09-29 22:04:03 -07:00
|
|
|
({~ (("\\" -> "\") / ('\"' -> '"') / ("\n" -> "
|
|
|
|
") / (!string_interpolation [^%nl"]))+ ~}
|
2017-09-24 20:20:27 -07:00
|
|
|
/ string_interpolation)* |} '"' }) -> String
|
|
|
|
indented_string <- ({ '".."' indent {|
|
|
|
|
indented_string_line (nodent {~ "" -> "
|
|
|
|
" ~} indented_string_line)*
|
|
|
|
|} (dedent / (({.+} ("" -> "Error while parsing String")) => error))
|
|
|
|
}) -> String
|
|
|
|
indented_string_line <- "|" ({~ (("\\" -> "\") / (!string_interpolation [^%nl]))+ ~} / string_interpolation)*
|
2017-10-02 17:21:22 -07:00
|
|
|
string_interpolation <- "\" ((noeol_expression dotdot?) / dotdot)
|
2017-09-24 20:20:27 -07:00
|
|
|
|
|
|
|
number <- ({ (("-"? (([0-9]+ "." [0-9]+) / ("." [0-9]+) / ([0-9]+)))-> tonumber) }) -> Number
|
|
|
|
|
|
|
|
-- Variables can be nameless (i.e. just %) and can't contain apostrophes
|
|
|
|
-- which is a hack to allow %foo's to parse as "%foo" and "'s" separately
|
|
|
|
variable <- ({ ("%" { (!"'" %wordchar)* }) }) -> Var
|
|
|
|
|
|
|
|
inline_list <- ({ {|
|
|
|
|
("[" %ws? ((inline_list_item comma)* inline_list_item comma?)? %ws? "]")
|
|
|
|
|} }) -> List
|
|
|
|
indented_list <- ({ {|
|
2017-09-22 00:01:53 -07:00
|
|
|
("[..]" indent
|
|
|
|
list_line (nodent list_line)*
|
|
|
|
(dedent / (({.+} ("" -> "Error while parsing list")) => error)))
|
|
|
|
|} }) -> List
|
2017-09-24 20:20:27 -07:00
|
|
|
list_line <- (inline_list_item comma)* ((inline_list_item %ws? ",") / (functioncall / expression))
|
|
|
|
inline_list_item <- inline_functioncall / inline_expression
|
2017-09-22 00:01:53 -07:00
|
|
|
|
2017-10-02 20:17:52 -07:00
|
|
|
block_comment <- "#.." [^%nl]* (%nl (%ws? &%nl))* %nl %indented [^%nl]+ (%nl ((%ws? (!. / &%nl)) / (!%dedented [^%nl]+)))*
|
2017-09-22 00:01:53 -07:00
|
|
|
line_comment <- "#" [^%nl]*
|
|
|
|
|
|
|
|
eol <- %ws? line_comment? (!. / &%nl)
|
|
|
|
ignored_line <- (%nodented (block_comment / line_comment)) / (%ws? (!. / &%nl))
|
2017-10-02 20:17:52 -07:00
|
|
|
indent <- eol (%nl ignored_line)* %nl %indented ((block_comment/line_comment) (%nl ignored_line)* nodent)?
|
2017-09-22 00:01:53 -07:00
|
|
|
nodent <- eol (%nl ignored_line)* %nl %nodented
|
|
|
|
dedent <- eol (%nl ignored_line)* (((!.) &%dedented) / (&(%nl %dedented)))
|
2017-09-24 20:20:27 -07:00
|
|
|
tok_gap <- %ws / %prev_edge / &("[" / "\" / [.,:;{("#%'])
|
|
|
|
comma <- %ws? "," %ws?
|
|
|
|
semicolon <- %ws? ";" %ws?
|
2017-09-22 00:01:53 -07:00
|
|
|
dotdot <- nodent ".." %ws?
|
|
|
|
]=]
|
|
|
|
|
|
|
|
whitespace = S(" \t")^1
|
|
|
|
defs =
|
2017-09-24 20:20:27 -07:00
|
|
|
ws:whitespace, nl: P("\n"), :tonumber
|
2017-09-22 00:01:53 -07:00
|
|
|
wordchar: P(1)-S(' \t\n\r%#:;,.{}[]()"\\')
|
|
|
|
indented: Cmt(S(" \t")^0 * (#(P(1)-S(" \t\n") + (-P(1)))), check_indent)
|
|
|
|
nodented: Cmt(S(" \t")^0 * (#(P(1)-S(" \t\n") + (-P(1)))), check_nodent)
|
|
|
|
dedented: Cmt(S(" \t")^0 * (#(P(1)-S(" \t\n") + (-P(1)))), check_dedent)
|
2017-09-24 20:20:27 -07:00
|
|
|
prev_edge: B(S(" \t\n.,:;}])\"\\"))
|
2017-09-22 00:01:53 -07:00
|
|
|
error: (src,pos,errors,err_msg)->
|
|
|
|
line_no = 1
|
|
|
|
for _ in src\sub(1,-#errors)\gmatch("\n") do line_no += 1
|
|
|
|
err_pos = #src - #errors + 1
|
|
|
|
if errors\sub(1,1) == "\n"
|
|
|
|
-- Indentation error
|
|
|
|
err_pos += #errors\match("[ \t]*", 2)
|
|
|
|
start_of_err_line = err_pos
|
|
|
|
while src\sub(start_of_err_line, start_of_err_line) != "\n" and start_of_err_line > 1
|
|
|
|
start_of_err_line -= 1
|
|
|
|
start_of_prev_line = start_of_err_line - 1
|
|
|
|
while src\sub(start_of_prev_line, start_of_prev_line) != "\n" and start_of_prev_line > 1
|
|
|
|
start_of_prev_line -= 1
|
|
|
|
|
|
|
|
local prev_line,err_line,next_line
|
|
|
|
prev_line,err_line,next_line = src\match("([^\n]*)\n([^\n]*)\n([^\n]*)", start_of_prev_line+1)
|
|
|
|
|
|
|
|
pointer = ("-")\rep(err_pos - start_of_err_line + 0) .. "^"
|
|
|
|
error("\n#{err_msg or "Parse error"} in #{filename} on line #{line_no}:\n\n#{prev_line}\n#{err_line}\n#{pointer}\n#{next_line}\n")
|
|
|
|
|
|
|
|
setmetatable(defs, {
|
|
|
|
__index: (t,key)->
|
2017-09-22 00:51:53 -07:00
|
|
|
with t[key] = (src, value, errors)-> {type: key, :src, :value, :errors} do nil
|
2017-09-22 00:01:53 -07:00
|
|
|
})
|
|
|
|
nomsu = re.compile(nomsu, defs)
|
|
|
|
|
2017-09-13 16:22:04 -07:00
|
|
|
class NomsuCompiler
|
2017-08-22 02:52:05 -07:00
|
|
|
new:(parent)=>
|
2017-09-20 03:06:15 -07:00
|
|
|
@write = (...)=> io.write(...)
|
2017-08-22 02:52:05 -07:00
|
|
|
@defs = setmetatable({}, {__index:parent and parent.defs})
|
2017-09-12 20:00:19 -07:00
|
|
|
@callstack = {}
|
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-09-19 00:35:37 -07:00
|
|
|
@loaded_files = {}
|
2017-09-24 20:20:27 -07:00
|
|
|
@initialize_core!
|
2017-09-14 21:03:42 -07:00
|
|
|
|
|
|
|
writeln:(...)=>
|
|
|
|
@write(...)
|
|
|
|
@write("\n")
|
2017-09-21 21:11:13 -07:00
|
|
|
|
2017-10-02 17:21:22 -07:00
|
|
|
def: (signature, thunk, src, is_macro=false)=>
|
|
|
|
assert type(thunk) == 'function', "Bad thunk: #{repr thunk}"
|
|
|
|
canonical_args = nil
|
|
|
|
for {stub, arg_names} in *@get_stubs(signature)
|
|
|
|
assert stub, "NO STUB FOUND: #{repr signature}"
|
|
|
|
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]}'"
|
|
|
|
if canonical_args
|
|
|
|
assert utils.equivalent(utils.set(arg_names), canonical_args), "Mismatched args"
|
|
|
|
else canonical_args = utils.set(arg_names)
|
|
|
|
@defs[stub] = {:thunk, :stub, :arg_names, :src, :is_macro}
|
|
|
|
|
|
|
|
defmacro: (signature, thunk, src)=>
|
|
|
|
@def(signature, thunk, src, true)
|
2017-09-21 21:11:13 -07:00
|
|
|
|
2017-09-25 17:02:00 -07:00
|
|
|
call: (stub,...)=>
|
|
|
|
def = @defs[stub]
|
2017-09-24 20:20:27 -07:00
|
|
|
if def == nil
|
2017-09-25 17:02:00 -07:00
|
|
|
@error "Attempt to call undefined function: #{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
|
|
|
|
if 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-09-24 20:20:27 -07:00
|
|
|
unless @check_permission(def)
|
2017-09-25 17:02:00 -07:00
|
|
|
@error "You do not have the authority to call: #{stub}"
|
|
|
|
{:thunk, :arg_names} = def
|
|
|
|
args = {name, select(i,...) for i,name in ipairs(arg_names)}
|
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)} "
|
|
|
|
@writeln "#{colored.bright "WITH ARGS:"} #{colored.dim repr(args)}"
|
2017-09-25 17:02:00 -07:00
|
|
|
insert @callstack, stub
|
2017-09-21 21:11:13 -07:00
|
|
|
-- TODO: optimize, but still allow multiple return values?
|
2017-09-24 20:20:27 -07:00
|
|
|
rets = {thunk(self,args)}
|
2017-09-21 21:11:13 -07:00
|
|
|
remove @callstack
|
|
|
|
return unpack(rets)
|
|
|
|
|
|
|
|
run_macro: (tree, kind="Expression")=>
|
2017-09-28 17:49:15 -07:00
|
|
|
stub,arg_names,args = @get_stub tree
|
|
|
|
if @debug
|
|
|
|
@write "#{colored.bright "RUNNING MACRO"} #{colored.underscore colored.magenta(stub)} "
|
|
|
|
@writeln "#{colored.bright "WITH ARGS:"} #{colored.dim repr args}"
|
2017-09-24 20:20:27 -07:00
|
|
|
insert @callstack, "#macro"
|
2017-09-25 17:02:00 -07:00
|
|
|
expr, statement = @call(stub, unpack(args))
|
2017-09-21 21:11:13 -07:00
|
|
|
remove @callstack
|
2017-09-24 20:20:27 -07:00
|
|
|
return expr, statement
|
2017-09-12 20:00:19 -07:00
|
|
|
|
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-09-22 00:27:10 -07:00
|
|
|
if whiteset[caller] 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)=>
|
2017-08-22 01:02:41 -07:00
|
|
|
if @debug
|
2017-09-28 17:49:15 -07:00
|
|
|
@writeln("#{colored.bright "PARSING:"}\n#{str}")
|
2017-09-24 20:20:27 -07:00
|
|
|
str = str\gsub("\r","")
|
2017-09-22 00:03:32 -07:00
|
|
|
export indent_stack
|
|
|
|
old_indent_stack, indent_stack = indent_stack, {0}
|
2017-09-22 00:01:53 -07:00
|
|
|
tree = nomsu\match(str)
|
2017-09-22 00:03:32 -07:00
|
|
|
indent_stack = old_indent_stack -- Put it back, just in case.
|
2017-08-22 01:02:41 -07:00
|
|
|
assert tree, "Failed to parse: #{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
|
|
|
|
2017-09-24 20:20:27 -07:00
|
|
|
run: (src, filename)=>
|
|
|
|
tree = @parse(src, filename)
|
|
|
|
assert tree, "Tree failed to compile: #{src}"
|
2017-09-25 17:02:00 -07:00
|
|
|
assert tree.type == "File", "Attempt to run non-file: #{tree.type}"
|
2017-09-24 20:20:27 -07:00
|
|
|
|
|
|
|
buffer = {}
|
|
|
|
vars = {}
|
|
|
|
return_value = nil
|
|
|
|
for statement in *tree.value
|
2017-09-25 17:02:00 -07:00
|
|
|
if @debug
|
2017-09-28 17:49:15 -07:00
|
|
|
@writeln "#{colored.bright "RUNNING NOMSU:"}\n#{colored.bright colored.yellow statement.src}"
|
|
|
|
@writeln colored.bright("PARSED TO TREE:")
|
2017-09-25 17:02:00 -07:00
|
|
|
@print_tree statement
|
2017-09-24 20:20:27 -07:00
|
|
|
ok,expr,statements = pcall(@tree_to_lua, self, statement)
|
|
|
|
if not ok
|
2017-09-28 17:49:15 -07:00
|
|
|
@writeln "#{colored.red "Error occurred in statement:"}\n#{colored.bright colored.yellow statement.src}"
|
2017-09-24 20:20:27 -07:00
|
|
|
@error(expr)
|
|
|
|
code_for_statement = ([[
|
|
|
|
return (function(nomsu, vars)
|
|
|
|
%s
|
2017-10-02 17:21:22 -07:00
|
|
|
return %s;
|
|
|
|
end);]])\format(statements or "", expr or "ret")
|
2017-09-24 20:20:27 -07:00
|
|
|
if @debug
|
2017-09-28 17:49:15 -07:00
|
|
|
@writeln "#{colored.bright "RUNNING LUA:"}\n#{colored.blue colored.bright(code_for_statement)}"
|
2017-09-24 20:20:27 -07:00
|
|
|
lua_thunk, err = load(code_for_statement)
|
|
|
|
if not lua_thunk
|
2017-10-02 17:21:22 -07:00
|
|
|
n = 1
|
|
|
|
fn = ->
|
|
|
|
n = n + 1
|
|
|
|
("\n%-3d|")\format(n)
|
|
|
|
code = "1 |"..code_for_statement\gsub("\n", fn)
|
|
|
|
error("Failed to compile generated code:\n#{colored.bright colored.blue code}\n\n#{err}\n\nProduced by statement:\n#{colored.bright colored.yellow statement.src}")
|
2017-09-24 20:20:27 -07:00
|
|
|
run_statement = lua_thunk!
|
|
|
|
ok,ret = pcall(run_statement, self, vars)
|
|
|
|
if expr then return_value = ret
|
|
|
|
if not ok
|
2017-09-28 17:49:15 -07:00
|
|
|
@writeln "#{colored.red "Error occurred in statement:"}\n#{colored.yellow statement.src}"
|
2017-10-02 17:21:22 -07:00
|
|
|
@writeln debug.traceback!
|
|
|
|
@error(ret)
|
2017-09-24 20:20:27 -07:00
|
|
|
insert buffer, "#{statements or ''}\n#{expr and "ret = #{expr}" or ''}"
|
|
|
|
|
|
|
|
lua_code = ([[
|
2017-10-02 17:21:22 -07:00
|
|
|
return (function(nomsu, vars)
|
|
|
|
local ret;
|
2017-09-24 20:20:27 -07:00
|
|
|
%s
|
2017-10-02 17:21:22 -07:00
|
|
|
return ret;
|
|
|
|
end);]])\format(concat(buffer, "\n"))
|
2017-09-24 20:20:27 -07:00
|
|
|
return return_value, lua_code
|
|
|
|
|
2017-09-14 02:41:10 -07:00
|
|
|
tree_to_value: (tree, vars)=>
|
2017-10-02 17:21:22 -07:00
|
|
|
code = "return (function(nomsu, vars)\nreturn #{@tree_to_lua(tree)};\nend);"
|
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-09-28 17:49:15 -07:00
|
|
|
@error("Failed to compile generated code:\n#{colored.bright colored.blue code}\n\n#{colored.red err}")
|
2017-09-14 02:41:10 -07:00
|
|
|
return (lua_thunk!)(self, vars or {})
|
2017-09-11 19:23:55 -07:00
|
|
|
|
2017-09-21 02:33:04 -07:00
|
|
|
tree_to_lua: (tree)=>
|
2017-09-24 20:20:27 -07:00
|
|
|
-- Return <lua code for value>, <additional lua code>
|
2017-09-11 13:05:25 -07:00
|
|
|
assert tree, "No tree provided."
|
2017-09-20 03:06:15 -07:00
|
|
|
if not tree.type
|
2017-09-25 17:02:00 -07:00
|
|
|
@writeln 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"
|
2017-09-24 20:20:27 -07:00
|
|
|
error("Should not be converting File to lua through this function.")
|
|
|
|
|
|
|
|
when "Nomsu"
|
|
|
|
return repr(tree.value), nil
|
2017-08-22 01:02:41 -07:00
|
|
|
|
2017-10-02 17:21:22 -07:00
|
|
|
when "Thunk"
|
2017-09-28 17:49:15 -07:00
|
|
|
lua_bits = {}
|
|
|
|
for arg in *tree.value
|
|
|
|
expr,statement = @tree_to_lua arg
|
|
|
|
if statement then insert lua_bits, statement
|
2017-10-02 17:21:22 -07:00
|
|
|
if expr then insert lua_bits, "ret = #{expr};"
|
|
|
|
return ([[
|
|
|
|
(function(nomsu, vars)
|
|
|
|
local ret;
|
|
|
|
%s
|
|
|
|
return ret;
|
|
|
|
end)]])\format(concat(lua_bits, "\n"))
|
2017-09-28 17:49:15 -07:00
|
|
|
|
2017-08-22 01:02:41 -07:00
|
|
|
when "FunctionCall"
|
2017-09-25 17:02:00 -07:00
|
|
|
stub = @get_stub(tree)
|
|
|
|
if @defs[stub] and @defs[stub].is_macro
|
2017-09-21 04:51:02 -07:00
|
|
|
return @run_macro(tree, "Expression")
|
2017-09-25 17:02:00 -07:00
|
|
|
args = {repr(stub)}
|
2017-09-24 20:20:27 -07:00
|
|
|
for arg in *tree.value
|
|
|
|
if arg.type == 'Word' then continue
|
|
|
|
expr,statement = @tree_to_lua arg
|
|
|
|
if statement
|
|
|
|
@error "Cannot use [[#{arg.src}]] as a function argument, since it's not an expression."
|
|
|
|
insert args, expr
|
|
|
|
return @@comma_separated_items("nomsu:call(", args, ")"), nil
|
2017-08-22 01:02:41 -07:00
|
|
|
|
|
|
|
when "String"
|
2017-09-28 17:49:15 -07:00
|
|
|
if @debug
|
|
|
|
@writeln (colored.bright "STRING:")
|
|
|
|
@print_tree tree
|
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 = ""
|
|
|
|
expr, statement = @tree_to_lua bit
|
2017-09-28 17:49:15 -07:00
|
|
|
if @debug
|
|
|
|
@writeln (colored.bright "INTERP:")
|
|
|
|
@print_tree bit
|
|
|
|
@writeln "#{colored.bright "EXPR:"} #{expr}, #{colored.bright "STATEMENT:"} #{statement}"
|
2017-09-24 20:20:27 -07:00
|
|
|
if statement
|
|
|
|
@error "Cannot use [[#{bit.src}]] as a string interpolation value, since it's not an expression."
|
|
|
|
insert concat_parts, "nomsu.utils.repr_if_not_string(#{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
|
|
|
|
return "''", nil
|
2017-09-28 17:49:15 -07:00
|
|
|
elseif #concat_parts == 1
|
|
|
|
return concat_parts[1], nil
|
|
|
|
else return "(#{concat(concat_parts, "..")})", nil
|
2017-08-22 01:02:41 -07:00
|
|
|
|
|
|
|
when "List"
|
2017-09-24 20:20:27 -07:00
|
|
|
items = {}
|
|
|
|
for item in *tree.value
|
|
|
|
expr,statement = @tree_to_lua item
|
|
|
|
if statement
|
|
|
|
@error "Cannot use [[#{item.src}]] as a list item, since it's not an expression."
|
|
|
|
insert items, expr
|
|
|
|
return @@comma_separated_items("{", items, "}"), nil
|
|
|
|
|
|
|
|
when "Number"
|
2017-09-28 17:49:15 -07:00
|
|
|
return repr(tree.value), nil
|
2017-08-22 01:02:41 -07:00
|
|
|
|
|
|
|
when "Var"
|
2017-09-28 17:49:15 -07:00
|
|
|
return "vars[#{repr tree.value}]", nil
|
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
|
2017-10-02 17:21:22 -07:00
|
|
|
when "List", "File", "Thunk", "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)
|
|
|
|
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)=>
|
|
|
|
str\gsub("\\(.)", ((c)-> STRING_ESCAPES[c] or c))
|
|
|
|
|
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]
|
2017-10-02 17:21:22 -07:00
|
|
|
when "File", "Nomsu", "Thunk", "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
|
|
|
|
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
|
|
|
|
|
2017-09-25 17:02:00 -07:00
|
|
|
get_stub: (x)=>
|
|
|
|
if not x
|
|
|
|
@error "Nothing to get stub from"
|
|
|
|
-- Returns a single stub ("say %"), and list of args ({msg}) 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-09-25 17:02:00 -07:00
|
|
|
stub = x\gsub("'"," '")\gsub("%%%S+","%%")\gsub("%s+"," ")
|
2017-09-28 17:49:15 -07:00
|
|
|
arg_names = [arg for arg in x\gmatch("%%([^%s']*)")]
|
|
|
|
return stub, arg_names
|
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-09-21 21:11:13 -07:00
|
|
|
when "FunctionCall"
|
2017-09-28 17:49:15 -07:00
|
|
|
stub, arg_names, args = {}, {}, {}
|
2017-09-21 21:11:13 -07:00
|
|
|
for token in *x.value
|
|
|
|
switch token.type
|
|
|
|
when "Word"
|
2017-09-25 17:02:00 -07:00
|
|
|
insert stub, token.value
|
2017-09-21 21:11:13 -07:00
|
|
|
when "Var"
|
2017-09-25 17:02:00 -07:00
|
|
|
insert stub, "%"
|
2017-09-28 17:49:15 -07:00
|
|
|
if arg_names then insert arg_names, token.value
|
|
|
|
insert args, token
|
2017-09-21 21:11:13 -07:00
|
|
|
else
|
2017-09-25 17:02:00 -07:00
|
|
|
insert stub, "%"
|
2017-09-28 17:49:15 -07:00
|
|
|
arg_names = nil
|
2017-09-21 21:11:13 -07:00
|
|
|
insert args, token
|
2017-09-28 17:49:15 -07:00
|
|
|
return concat(stub," "), arg_names, args
|
2017-10-02 17:21:22 -07:00
|
|
|
else @error "Unsupported get stub type: #{x.type}"
|
|
|
|
|
|
|
|
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!))
|
2017-08-18 17:08:15 -07:00
|
|
|
|
2017-09-12 21:10:22 -07:00
|
|
|
error: (...)=>
|
2017-09-14 21:03:42 -07:00
|
|
|
@writeln "ERROR!"
|
2017-09-25 17:02:00 -07:00
|
|
|
if select(1, ...)
|
|
|
|
@writeln(...)
|
2017-09-14 21:03:42 -07:00
|
|
|
@writeln("Callstack:")
|
2017-09-12 21:10:22 -07:00
|
|
|
for i=#@callstack,1,-1
|
2017-09-14 21:03:42 -07:00
|
|
|
@writeln " #{@callstack[i]}"
|
|
|
|
@writeln " <top level>"
|
2017-09-14 18:18:42 -07:00
|
|
|
@callstack = {}
|
2017-09-12 21:10:22 -07:00
|
|
|
error!
|
2017-09-28 17:49:15 -07:00
|
|
|
|
|
|
|
typecheck: (vars, varname, desired_type)=>
|
|
|
|
x = vars[varname]
|
|
|
|
if type(x) == desired_type then return x
|
|
|
|
if type(x) == 'table' and x.type == desired_type then return x
|
|
|
|
@error "Invalid type for %#{varname}. Expected #{desired_type}, but got #{x.type}."
|
2017-09-12 21:10:22 -07:00
|
|
|
|
2017-09-12 20:00:19 -07:00
|
|
|
initialize_core: =>
|
|
|
|
-- Sets up some core functionality
|
2017-09-28 17:49:15 -07:00
|
|
|
-- Uses named local functions to help out callstack readability
|
2017-09-25 17:02:00 -07:00
|
|
|
lua_code = (vars)=>
|
2017-09-28 17:49:15 -07:00
|
|
|
inner_vars = setmetatable({}, {__index:(_,key)-> "vars[#{repr(key)}]"})
|
2017-09-25 17:02:00 -07:00
|
|
|
lua = @tree_to_value(vars.code, inner_vars)
|
|
|
|
return nil, lua
|
|
|
|
@defmacro "lua code %code", lua_code
|
|
|
|
|
|
|
|
lua_value = (vars)=>
|
2017-09-28 17:49:15 -07:00
|
|
|
inner_vars = setmetatable({}, {__index:(_,key)-> "vars[#{repr(key)}]"})
|
2017-09-25 17:02:00 -07:00
|
|
|
lua = @tree_to_value(vars.code, inner_vars)
|
|
|
|
return lua, nil
|
2017-09-28 17:49:15 -07:00
|
|
|
@defmacro "lua expr %code", lua_value
|
|
|
|
|
2017-09-25 17:02:00 -07:00
|
|
|
_require = (vars)=>
|
2017-09-19 00:35:37 -07:00
|
|
|
if not @loaded_files[vars.filename]
|
|
|
|
file = io.open(vars.filename)
|
2017-09-20 03:06:15 -07:00
|
|
|
if not file
|
|
|
|
@error "File does not exist: #{vars.filename}"
|
2017-09-21 14:11:34 -07:00
|
|
|
@loaded_files[vars.filename] = (@run(file\read('*a'), vars.filename)) or true
|
2017-09-19 00:35:37 -07:00
|
|
|
return @loaded_files[vars.filename]
|
2017-09-25 17:02:00 -07:00
|
|
|
@def "require %filename", _require
|
2017-09-19 00:35:37 -07:00
|
|
|
|
2017-09-25 17:02:00 -07:00
|
|
|
run_file = (vars)=>
|
2017-09-12 20:00:19 -07:00
|
|
|
file = io.open(vars.filename)
|
2017-09-20 03:06:15 -07:00
|
|
|
if not file
|
|
|
|
@error "File does not exist: #{vars.filename}"
|
|
|
|
return @run(file\read('*a'), vars.filename)
|
2017-09-25 17:02:00 -07:00
|
|
|
@def "run file %filename", run_file
|
2017-09-12 20:00:19 -07:00
|
|
|
|
|
|
|
|
2017-09-12 23:12:45 -07:00
|
|
|
if arg and arg[1]
|
2017-09-21 14:11:34 -07:00
|
|
|
--ProFi = require 'ProFi'
|
|
|
|
--ProFi\start()
|
2017-09-13 16:22:04 -07:00
|
|
|
c = NomsuCompiler()
|
2017-09-12 20:00:19 -07:00
|
|
|
input = io.open(arg[1])\read("*a")
|
2017-09-14 21:03:42 -07:00
|
|
|
-- If run via "./nomsu.moon file.nom -", then silence output and print generated
|
|
|
|
-- source code instead.
|
|
|
|
_write = c.write
|
2017-09-12 20:00:19 -07:00
|
|
|
if arg[2] == "-"
|
2017-09-14 21:03:42 -07:00
|
|
|
c.write = ->
|
2017-09-21 04:51:02 -07:00
|
|
|
retval, code = c\run(input, arg[1])
|
2017-09-14 21:03:42 -07:00
|
|
|
c.write = _write -- put it back
|
2017-09-12 20:00:19 -07:00
|
|
|
if arg[2]
|
|
|
|
output = if arg[2] == "-"
|
|
|
|
io.output()
|
|
|
|
else io.open(arg[2], 'w')
|
2017-09-24 20:20:27 -07:00
|
|
|
output\write ([[
|
2017-10-02 17:21:22 -07:00
|
|
|
local NomsuCompiler = require('nomsu');
|
|
|
|
local c = NomsuCompiler();
|
|
|
|
local run = (function(nomsu, vars)
|
2017-09-28 17:49:15 -07:00
|
|
|
%s
|
2017-10-02 17:21:22 -07:00
|
|
|
end);
|
|
|
|
return run(c, {});
|
2017-09-24 20:20:27 -07:00
|
|
|
]])\format(code)
|
2017-09-21 14:11:34 -07:00
|
|
|
--ProFi\stop()
|
|
|
|
--ProFi\writeReport( 'MyProfilingReport.txt' )
|
2017-09-21 04:51:02 -07:00
|
|
|
|
2017-09-14 15:35:06 -07:00
|
|
|
elseif arg
|
|
|
|
-- REPL:
|
|
|
|
c = NomsuCompiler()
|
2017-09-20 03:06:15 -07:00
|
|
|
c\run('require "lib/core.nom"')
|
2017-09-14 15:35:06 -07:00
|
|
|
while true
|
|
|
|
buff = ""
|
|
|
|
while true
|
|
|
|
io.write(">> ")
|
|
|
|
line = io.read("*L")
|
|
|
|
if line == "\n" or not line
|
|
|
|
break
|
|
|
|
buff ..= line
|
|
|
|
if #buff == 0
|
|
|
|
break
|
2017-09-14 18:18:42 -07:00
|
|
|
ok, ret = pcall(-> c\run(buff))
|
|
|
|
if ok and ret != nil
|
2017-09-21 21:11:13 -07:00
|
|
|
print "= "..repr(ret)
|
2017-09-12 20:00:19 -07:00
|
|
|
|
2017-09-13 16:22:04 -07:00
|
|
|
return NomsuCompiler
|