nomsu/nomsu.moon

773 lines
32 KiB
Plaintext
Raw Normal View History

2017-09-05 23:51:35 -07:00
#!/usr/bin/env moon
-- 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 -]]
re = require 're'
lpeg = require 'lpeg'
2018-04-11 20:05:12 -07:00
lpeg.setmaxstack 10000
{:P,:R,:V,:S,:Cg,:C,:Cp,:B,:Cmt} = lpeg
2017-12-18 16:26:26 -08:00
utils = require 'utils'
new_uuid = require 'uuid'
immutable = require 'immutable'
export Tuple
Tuple = immutable(nil, {name:"Tuple"})
2017-12-18 16:19:56 -08:00
{:repr, :stringify, :min, :max, :equivalent, :set, :is_list, :sum} = utils
colors = setmetatable({}, {__index:->""})
2018-04-19 17:23:44 -07:00
export colored
2018-04-11 20:05:12 -07:00
colored = setmetatable({}, {__index:(_,color)-> ((msg)-> colors[color]..tostring(msg or '')..colors.reset)})
{:insert, :remove, :concat} = table
debug_getinfo = debug.getinfo
2018-04-26 14:00:01 -07:00
{:Nomsu, :Lua, :Source} = require "code_obj"
STDIN, STDOUT, STDERR = "/dev/fd/0", "/dev/fd/1", "/dev/fd/2"
2018-04-11 20:05:12 -07:00
-- TODO:
-- consider non-linear codegen, rather than doing thunks for things like comprehensions
-- type checking?
-- Add compiler options for optimization level (compile-fast vs. run-fast, etc.)
-- Do a pass on all actions to enforce parameters-are-nouns heuristic
-- Maybe do some sort of lazy definitions of actions that defer until they're used in code
-- Add a ((%x foo %y) where {x:"asdf", y:"fdsa"}) compile-time action for substitution
-- Maybe support some kind of regex action definitions like "foo %first (and %next)*"?
2018-04-26 14:04:51 -07:00
-- Re-implement nomsu-to-lua comment translation?
2018-04-11 20:05:12 -07:00
2018-04-13 14:54:35 -07:00
export FILE_CACHE
2018-04-20 16:23:53 -07:00
-- FILE_CACHE is a map from filename (string) -> string of file contents
2018-04-11 20:05:12 -07:00
FILE_CACHE = setmetatable {}, {
__index: (filename)=>
file = io.open(filename)
return nil unless file
contents = file\read("a")
2018-04-11 20:05:12 -07:00
file\close!
2018-04-20 16:23:53 -07:00
self[filename] = contents
return contents
2018-04-11 20:05:12 -07:00
}
iterate_single = (item, prev) -> if item == prev then nil else item
all_files = (path)->
-- Sanitize path
if path\match("%.nom$") or path\match("%.lua$") or path\match("^/dev/fd/[012]$")
return iterate_single, path
-- TODO: improve sanitization
path = path\gsub("\\","\\\\")\gsub("`","")\gsub('"','\\"')\gsub("$","")
return io.popen("find \""..path.."\" -type f -name \"*.nom\"")\lines!
2018-04-11 20:05:12 -07:00
line_counter = re.compile([[
lines <- {| line (%nl line)* |}
line <- {} (!%nl .)*
]], nl:P("\r")^-1 * P("\n"))
-- Mapping from line number -> character offset
2018-04-11 21:07:13 -07:00
export LINE_STARTS
2018-04-18 15:45:58 -07:00
-- LINE_STARTS is a mapping from strings to a table that maps line number to character positions
2018-04-11 20:05:12 -07:00
LINE_STARTS = setmetatable {}, {
__mode:"k"
__index: (k)=>
2018-04-18 15:45:58 -07:00
-- Implicitly convert Lua and Nomsu objects to strings
if type(k) != 'string'
k = tostring(k)
if v = rawget(self, k)
return v
line_starts = line_counter\match(k)
2018-04-11 20:05:12 -07:00
self[k] = line_starts
return line_starts
}
-- Map from unique nomsu chunkname to:
-- lua_to_nomsu, nomsu_to_lua, lua_sources, nomsu_sources,
-- nomsu_filename, nomsu_file, lua_filename, lua_file
LUA_METADATA = {}
lua_line_to_nomsu_line = (lua_filename, lua_line_no)->
metadata = assert LUA_METADATA[lua_filename], "Failed to find nomsu metadata for: #{lua_filename}."
lua_offset = LINE_STARTS[metadata.lua_file][lua_line_no]
best = metadata.nomsu_sources[1]
for lua,nomsu in pairs metadata.lua_to_nomsu
if lua.start <= lua_offset and lua > best
best = lua
return best\get_line_number!
-- Use + operator for string coercive concatenation (note: "asdf" + 3 == "asdf3")
-- Use [] for accessing string characters, or s[{3,4}] for s:sub(3,4)
-- Note: This globally affects all strings in this instance of Lua!
do
STRING_METATABLE = getmetatable("")
STRING_METATABLE.__add = (other)=> @ .. stringify(other)
STRING_METATABLE.__index = (i)=>
if type(i) == 'number' then return string.sub(@, i, i)
elseif type(i) == 'table' then return string.sub(@, i[1], i[2])
else return string[i]
-- Can't use this because it breaks some LPEG stuff
--STRING_METATABLE.__mul = (other)=> string.rep(@, other)
Types = require "nomsu_tree"
NOMSU_DEFS = with {}
-- Newline supports either windows-style CR+LF or unix-style LF
.Tuple = (values)->
return Tuple(table.unpack(values))
.DictEntry = (k,v) -> Types.DictEntry(k,v)
.nl = P("\r")^-1 * P("\n")
.ws = S(" \t")
.tonumber = tonumber
.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)))
return true
string_escapes = n:"\n", t:"\t", b:"\b", a:"\a", v:"\v", f:"\f", r:"\r"
digit, hex = R('09'), R('09','af','AF')
.escaped_char = (P("\\")*S("xX")*C(hex*hex)) / => string.char(tonumber(@, 16))
.escaped_char += (P("\\")*C(digit*(digit^-2))) / => string.char(tonumber @)
.escaped_char += (P("\\")*C(S("ntbavfr"))) / string_escapes
.operator_char = S("'~`!@$^&*-+=|<>?/")
.operator = .operator_char^1
.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
-- If the line begins with #indent+4 spaces, the pattern matches *those* spaces
-- and adds them to the stack (not any more).
.indent = P (start)=>
nodent = lpeg.userdata.indent_stack[#lpeg.userdata.indent_stack]
indented = nodent.." "
if @sub(start, start+#indented-1) == indented
insert(lpeg.userdata.indent_stack, indented)
return start + #indented
-- If the number of leading space characters is <= the number of space on the top of the
-- stack minus 4, this pattern matches and pops off the top of the stack exactly once.
.dedent = P (start)=>
nodent = lpeg.userdata.indent_stack[#lpeg.userdata.indent_stack]
spaces = @match("[ ]*", start)
if #spaces <= #nodent-4
remove(lpeg.userdata.indent_stack)
2017-12-30 14:31:07 -08:00
return start
-- If the number of leading space characters is >= the number on the top of the
-- stack, this pattern matches and does not modify the stack.
.nodent = P (start)=>
nodent = lpeg.userdata.indent_stack[#lpeg.userdata.indent_stack]
if @sub(start, start+#nodent-1) == nodent
return start + #nodent
2018-05-03 16:30:55 -07:00
.error = (src,end_pos,start_pos,err_msg)->
seen_errors = lpeg.userdata.errors
if seen_errors[start_pos]
return true
err_pos = start_pos
--if src\sub(err_pos,err_pos)\match("[\r\n]")
-- err_pos += #src\match("[ \t\n\r]*", err_pos)
text_loc = lpeg.userdata.source_code.source\sub(err_pos,err_pos)
2018-04-11 20:05:12 -07:00
line_no = text_loc\get_line_number!
2018-04-19 17:23:44 -07:00
src = FILE_CACHE[text_loc.filename]
2018-05-03 16:30:55 -07:00
prev_line = line_no == 1 and "" or src\sub(LINE_STARTS[src][line_no-1] or 1, LINE_STARTS[src][line_no]-2)
err_line = src\sub(LINE_STARTS[src][line_no], (LINE_STARTS[src][line_no+1] or 0)-2)
next_line = src\sub(LINE_STARTS[src][line_no+1] or -1, (LINE_STARTS[src][line_no+2] or 0)-2)
2018-05-03 16:30:55 -07:00
pointer = ("-")\rep(err_pos-LINE_STARTS[src][line_no]) .. "^"
err_msg = (err_msg or "Parse error").." at #{lpeg.userdata.source_code.source.filename}:#{line_no}:\n"
if #prev_line > 0 then err_msg ..= "\n"..prev_line
err_msg ..= "\n#{err_line}\n#{pointer}"
if #next_line > 0 then err_msg ..= "\n"..next_line
--error(err_msg)
seen_errors[start_pos] = err_msg
return true
setmetatable(NOMSU_DEFS, {__index:(key)=>
make_node = (start, value, stop)->
2018-04-06 16:45:51 -07:00
if type(value) == 'table' then error("Not a tuple: #{repr value}")-- = Tuple(value)
2018-04-20 16:23:53 -07:00
--source = lpeg.userdata.source_code.source\sub(start,stop-1)
source = lpeg.userdata.source_code.source
start += source.start-1
stop += source.start-1
source = Source(source.filename, start, stop-1)
node = Types[key](value, source)
return node
self[key] = make_node
return make_node
})
2018-04-11 20:05:12 -07:00
NOMSU_PATTERN = do
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]*
]]
2018-04-11 20:05:12 -07:00
nomsu_peg = peg_tidier\match(FILE_CACHE["nomsu.peg"])
re.compile(nomsu_peg, NOMSU_DEFS)
2017-09-13 16:22:04 -07:00
class NomsuCompiler
new: =>
-- Weak-key mapping from objects to randomly generated unique IDs
NaN_surrogate = {}
nil_surrogate = {}
@ids = setmetatable({}, {
__mode: "k"
__index: (key)=>
if key == nil then return @[nil_surrogate]
elseif key != key then return @[NaN_surrogate]
id = new_uuid!
@[key] = id
return id
})
2018-02-05 15:34:57 -08:00
@use_stack = {}
@file_metadata = setmetatable({}, {__mode:"k"})
@environment = {
-- Discretionary/convenience stuff
nomsu:self, repr:repr, stringify:stringify, utils:utils, lpeg:lpeg, re:re,
-- Lua stuff:
:next, :unpack, :setmetatable, :coroutine, :rawequal, :getmetatable, :pcall,
:error, :package, :os, :require, :tonumber, :tostring, :string, :xpcall, :module,
:print, :loadfile, :rawset, :_VERSION, :collectgarbage, :rawget, :bit32, :rawlen,
:table, :assert, :dofile, :loadstring, :type, :select, :debug, :math, :io, :pairs,
:load, :ipairs,
}
for k,v in pairs(Types) do @environment[k] = v
@environment.Tuple = Tuple
2018-04-12 18:01:51 -07:00
@environment.Lua = Lua
@environment.Nomsu = Nomsu
@environment.Source = Source
@environment.ACTIONS = setmetatable({}, {__index:(key)=>
(...)->
error("Attempt to run undefined action: #{key}", 0)
})
2018-05-03 22:33:44 -07:00
@environment.COMPILE_ACTIONS = {}
@environment.ARG_ORDERS = setmetatable({}, {__mode:"k"})
@environment.LOADED = {}
@environment.Types = Types
@initialize_core!
stub_defs = {
space:(P(' ') + P('\n..'))^0
word:(NOMSU_DEFS.ident_char^1 + NOMSU_DEFS.operator^1)
varname:(R('az','AZ','09') + P('_') + NOMSU_DEFS.utf8_char)^0
}
stub_pattern = re.compile [=[
{~ (%space->'') (('%' (%varname->'')) / %word)? ((%space->' ') (('%' (%varname->'')) / %word))* (%space->'') ~}
]=], stub_defs
var_pattern = re.compile "{| %space ((('%' {%varname}) / %word) %space)+ |}", stub_defs
2018-05-03 22:33:44 -07:00
define_action: (signature, fn, is_compile_action=false)=>
assert(type(fn) == 'function', "Bad fn: #{repr fn}")
if type(signature) == 'string'
signature = {signature}
elseif type(signature) != 'table'
error("Invalid signature, expected list of strings, but got: #{repr signature}", 0)
stubs = [assert(stub_pattern\match(alias)) for alias in *signature]
stub_args = [assert(var_pattern\match(alias)) for alias in *signature]
fn_info = debug_getinfo(fn, "u")
assert(not fn_info.isvararg, "Vararg functions aren't supported. Sorry, use a list instead.")
fn_arg_positions = {debug.getlocal(fn, i), i for i=1,fn_info.nparams}
arg_orders = {}
for alias in *signature
stub = assert(stub_pattern\match(alias))
stub_args = assert(var_pattern\match(alias))
2018-05-03 22:33:44 -07:00
(is_compile_action and @environment.COMPILE_ACTIONS or @environment.ACTIONS)[stub] = fn
arg_orders[stub] = [fn_arg_positions[@var_to_lua_identifier(a)] for a in *stub_args]
@environment.ARG_ORDERS[fn] = arg_orders
define_compile_action: (signature, fn)=>
return @define_action(signature, fn, true)
parse: (nomsu_code)=>
2018-04-19 19:43:23 -07:00
if type(nomsu_code) == 'string'
_nomsu_chunk_counter += 1
filename = "<nomsu chunk ##{_nomsu_chunk_counter}>.nom"
FILE_CACHE[filename] = nomsu_code
2018-04-20 16:23:53 -07:00
nomsu_code = Nomsu(filename, nomsu_code)
userdata = {
2018-05-03 16:30:55 -07:00
source_code:nomsu_code, indent_stack: {""}, errors: {},
}
old_userdata, lpeg.userdata = lpeg.userdata, userdata
tree = NOMSU_PATTERN\match(tostring(nomsu_code))
lpeg.userdata = old_userdata
assert tree, "In file #{colored.blue filename} failed to parse:\n#{colored.onyellow colored.black nomsu_code}"
2018-05-03 16:30:55 -07:00
if next(userdata.errors)
keys = utils.keys(userdata.errors)
table.sort(keys)
errors = [userdata.errors[k] for k in *keys]
error(concat(errors, "\n\n"), 0)
2017-08-22 01:02:41 -07:00
return tree
2017-09-11 13:05:25 -07:00
2018-04-18 15:45:58 -07:00
_nomsu_chunk_counter = 0
2018-04-19 19:43:23 -07:00
run: (nomsu_code, compile_fn=nil)=>
2018-04-18 15:45:58 -07:00
if #nomsu_code == 0 then return nil
2018-04-19 19:43:23 -07:00
tree = @parse(nomsu_code)
2018-04-11 20:05:12 -07:00
assert tree, "Failed to parse: #{nomsu_code}"
assert tree.type == "File", "Attempt to run non-file: #{tree.type}"
2018-04-25 16:04:46 -07:00
lua = tree\as_lua(@)
lua\convert_to_statements!
2018-04-13 14:54:35 -07:00
lua\declare_locals!
2018-04-19 19:43:23 -07:00
lua\prepend "-- File: #{nomsu_code.source or ""}\n"
if compile_fn
compile_fn(lua)
return @run_lua(lua)
run_file: (filename, compile_fn=nil)=>
ret = nil
for filename in all_files(filename)
if filename\match("%.lua$")
file = assert(FILE_CACHE[filename], "Could not find file: #{filename}")
ret = @run_lua(Lua(Source(filename), file))
elseif filename\match("%.nom$") or filename\match("^/dev/fd/[012]$")
if not @skip_precompiled -- Look for precompiled version
lua_filename = filename\gsub("%.nom$", ".lua")
file = FILE_CACHE[lua_filename]
if file
ret = @run_lua(Lua(Source(filename), file))
continue
file = file or FILE_CACHE[filename]
if not file
error("File does not exist: #{filename}", 0)
ret = @run(Nomsu(Source(filename), file), compile_fn)
else
error("Invalid filetype for #{filename}", 0)
return ret
2018-02-05 15:34:57 -08:00
use_file: (filename)=>
loaded = @environment.LOADED
if not loaded[filename]
ret = nil
for filename in all_files(filename)
if not loaded[filename]
for i,f in ipairs @use_stack
if f == filename
loop = [@use_stack[j] for j=i,#@use_stack]
insert loop, filename
error("Circular import, this loops forever: #{concat loop, " -> "}")
insert @use_stack, filename
loaded[filename] = @run_file(filename) or true
ret = loaded[filename]
remove @use_stack
loaded[filename] = ret
return loaded[filename]
run_lua: (lua)=>
assert(type(lua) != 'string', "Attempt to run lua string instead of Lua (object)")
lua_string = tostring(lua)
2018-04-20 16:23:53 -07:00
--metadata = lua\make_offset_table!
--LUA_METADATA[metadata.lua_filename] = metadata
if rawget(FILE_CACHE, lua.source.filename) == nil
FILE_CACHE[lua.source.filename] = lua_string
if rawget(FILE_CACHE, lua.source) == nil
FILE_CACHE[lua.source] = lua_string
2018-04-11 20:05:12 -07:00
run_lua_fn, err = load(lua_string, filename, "t", @environment)
if not run_lua_fn
n = 1
fn = ->
n = n + 1
("\n%-3d|")\format(n)
line_numbered_lua = "1 |"..lua_string\gsub("\n", fn)
2018-04-11 20:05:12 -07:00
error("Failed to compile generated code:\n#{colored.bright colored.blue colored.onblack line_numbered_lua}\n\n#{err}", 0)
return run_lua_fn!
2018-04-11 20:05:12 -07:00
tree_to_value: (tree)=>
-- Special case for text literals
if tree.type == 'Text' and #tree.value == 1 and type(tree.value[1]) == 'string'
return tree.value[1]
2018-04-25 16:04:46 -07:00
lua = Lua(tree.source, "return ",tree\as_lua(@),";")
return @run_lua(lua)
2017-09-25 17:02:00 -07:00
walk_tree: (tree, depth=0)=>
coroutine.yield(tree, depth)
return unless Types.is_node(tree)
switch tree.type
when "List", "File", "Block", "Action", "Text", "IndexChain"
for v in *tree.value
2017-09-25 17:02:00 -07:00
@walk_tree(v, depth+1)
when "Dict"
for e in *tree.value
@walk_tree(e.key, depth+1)
@walk_tree(e.value, depth+1)
2017-09-25 17:02:00 -07:00
else @walk_tree(tree.value, depth+1)
return nil
print_tree: (tree)=>
2018-01-26 15:03:07 -08:00
io.write(colors.bright..colors.green)
2017-09-25 17:02:00 -07:00
for node,depth in coroutine.wrap(-> @walk_tree tree)
if Types.is_node(node)
2018-01-26 15:03:07 -08:00
print("#{(" ")\rep(depth)}#{node.type}:")
else
print((" ")\rep(depth)..repr(node))
2018-01-26 15:03:07 -08:00
io.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 Types.is_node(node)
2017-09-25 17:02:00 -07:00
insert bits, ("#{(" ")\rep(depth)}#{node.type}:")
else
insert bits, ((" ")\rep(depth)..repr(node))
2017-09-25 17:02:00 -07:00
return concat(bits, "\n")
2017-09-11 13:05:25 -07:00
tree_map: (tree, fn)=>
-- Return a new tree with fn mapped to each node. If fn provides a replacement,
-- use that and stop recursing, otherwise recurse.
unless Types.is_node(tree) then return tree
return tree\map(fn)
tree_with_replaced_vars: (tree, replacements)=>
tree\map (t)->
if t.type == "Var"
id = tostring(t\as_lua(self))
if replacements[id] != nil
return replacements[id]
var_to_lua_identifier: (var)=>
-- Converts arbitrary nomsu vars to valid lua identifiers by replacing illegal
-- characters with escape sequences
if Types.Var\is_instance(var)
var = var.value
"_"..(var\gsub "%W", (verboten)->
if verboten == "_" then "__" else ("_%x")\format(verboten\byte!))
2018-01-05 15:23:18 -08:00
2017-09-12 20:00:19 -07:00
initialize_core: =>
-- Sets up some core functionality
nomsu = self
@define_compile_action "immediately %block", (_block)=>
2018-04-25 16:04:46 -07:00
lua = _block\as_lua(nomsu)
lua\convert_to_statements!
2018-04-11 20:05:12 -07:00
lua\declare_locals!
nomsu\run_lua(lua)
return Lua(@source, "if IMMEDIATE then\n ", lua, "\nend")
2018-04-11 20:05:12 -07:00
2018-04-20 16:23:53 -07:00
add_lua_bits = (lua, code)->
if code.type != "Text"
lua\append ", ", code\as_lua(nomsu)
return
for bit in *code.value
2018-04-13 14:54:35 -07:00
lua\append ", "
if type(bit) == "string"
lua\append repr(bit)
else
2018-04-25 16:04:46 -07:00
bit_lua = bit\as_lua(nomsu)
2018-04-13 14:54:35 -07:00
unless bit_lua.is_value
line, src = bit.source\get_line!, bit.source\get_text!
2018-04-20 16:23:53 -07:00
error "#{line}: Cannot use #{colored.yellow src} as a string interpolation value, since it's not an expression."
2018-04-13 14:54:35 -07:00
lua\append bit_lua
2018-04-20 16:23:53 -07:00
@define_compile_action "Lua %code", (_code)=>
2018-04-20 16:23:53 -07:00
lua = Lua.Value(@source, "Lua(", tostring(_code.source))
add_lua_bits(lua, _code)
2018-04-13 14:54:35 -07:00
lua\append ")"
return lua
@define_compile_action "Lua %source %code", (_source, _code)=>
2018-04-20 16:23:53 -07:00
lua = Lua.Value(@source, "Lua(", _source\as_lua(nomsu))
add_lua_bits(lua, _code)
lua\append ")"
return lua
2018-04-13 14:54:35 -07:00
@define_compile_action "Lua value %code", (_code)=>
2018-04-20 16:23:53 -07:00
lua = Lua.Value(@source, "Lua.Value(", tostring(_code.source))
add_lua_bits(lua, _code)
lua\append ")"
return lua
@define_compile_action "Lua value %source %code", (_source, _code)=>
2018-04-20 16:23:53 -07:00
lua = Lua.Value(@source, "Lua.Value(", _source\as_lua(nomsu))
add_lua_bits(lua, _code)
2018-04-13 14:54:35 -07:00
lua\append ")"
return lua
@define_compile_action "lua> %code", (_code)=>
2018-04-13 14:54:35 -07:00
if _code.type != "Text"
return Lua.Value @source, "nomsu:run_lua(Lua(",repr(_code.source),
2018-04-25 16:04:46 -07:00
", ",repr(tostring(_code\as_lua(nomsu))),"))"
2018-04-11 20:05:12 -07:00
2018-04-12 18:01:51 -07:00
lua = Lua(_code.source)
2018-04-11 20:05:12 -07:00
for bit in *_code.value
if type(bit) == "string"
2018-04-11 20:05:12 -07:00
lua\append bit
else
2018-04-25 16:04:46 -07:00
bit_lua = bit\as_lua(nomsu)
2018-04-11 21:07:13 -07:00
unless bit_lua.is_value
2018-04-11 20:05:12 -07:00
line, src = bit.source\get_line!, bit.source\get_text!
error "#{line}: Cannot use #{colored.yellow src} as a string interpolation value, since it's not an expression.", 0
2018-04-11 20:05:12 -07:00
lua\append bit_lua
return lua
2017-09-25 17:02:00 -07:00
@define_compile_action "=lua %code", (_code)=>
2018-04-11 20:05:12 -07:00
if _code.type != "Text"
return Lua.Value @source, "nomsu:run_lua(Lua(",repr(_code.source),
2018-04-25 16:04:46 -07:00
", ",repr(tostring(_code\as_lua(nomsu))),"))"
lua = Lua.Value(@source)
2018-04-11 20:05:12 -07:00
for bit in *_code.value
if type(bit) == "string"
lua\append bit
else
2018-04-25 16:04:46 -07:00
bit_lua = bit\as_lua(nomsu)
2018-04-11 20:05:12 -07:00
unless lua.is_value
line, src = bit.source\get_line!, bit.source\get_text!
error "#{line}: Cannot use #{colored.yellow src} as a string interpolation value, since it's not an expression.", 0
lua\append bit_lua
return lua
@define_action "run file %filename", (_filename)->
return nomsu\run_file(_filename)
@define_compile_action "use %path", (_path)=>
path = nomsu\tree_to_value(_path)
nomsu\use_file(path)
return Lua(@source, "nomsu:use_file(#{repr path});")
2017-09-12 20:00:19 -07:00
-- Only run this code if this file was run directly with command line arguments, and not require()'d:
if arg and debug_getinfo(2).func != require
export colors
colors = require 'consolecolors'
parser = re.compile([[
2018-05-03 16:30:55 -07:00
args <- {| (flag ";")* {:inputs: {| ({file} ";")* |} :} {:nomsu_args: {| ("--;" ({[^;]*} ";")*)? |} :} ";"? |} !.
2018-04-28 19:16:39 -07:00
flag <-
{:interactive: ("-i" -> true) :}
/ {:verbose: ("-v" -> true) :}
/ {:optimized: ("-O" -> true) :}
/ {:format: ("-f" -> true) :}
/ {:syntax: ("-s" -> true) :}
/ {:print_file: "-p" ";" {file} :}
/ {:output_file: "-o" ";" {file} :}
/ {:help: (("-h" / "--help") -> true) :}
file <- "-" / [^;]+
2018-04-28 19:16:39 -07:00
]], {true: -> true})
args = concat(arg, ";")..";"
2018-04-28 19:16:39 -07:00
args = parser\match(args)
if not args or args.help
print [=[
Nomsu Compiler
2018-05-03 16:30:55 -07:00
Usage: (lua nomsu.lua | moon nomsu.moon) [-i] [-O] [-f] [-s] [--help] [-o output] [-p print_file] file1 file2... [-- nomsu args...]
OPTIONS
-i Run the compiler in interactive mode (REPL)
-O Run the compiler in optimized mode (use precompiled .lua versions of Nomsu files, when available)
-f Auto-format the given Nomsu file and print the result.
-s Check the program for syntax errors.
2018-04-28 19:16:39 -07:00
-v Verbose mode.
-h/--help Print this message.
-o <file> Output the compiled Lua file to the given file (use "-" to output to stdout; if outputting to stdout and -p is not specified, -p will default to /dev/null)
-p <file> Print to the specified file instead of stdout.
2018-04-28 19:16:39 -07:00
<input> Input file can be "-" to use stdin.
]=]
os.exit!
2017-09-12 20:00:19 -07:00
nomsu = NomsuCompiler!
2018-05-03 16:30:55 -07:00
nomsu.environment.arg = args.nomsu_args
ok, to_lua = pcall -> require('moonscript.base').to_lua
if not ok then to_lua = nil
moonscript_line_tables = setmetatable {}, {
__index: (filename)=>
return nil unless to_lua
2018-04-11 20:05:12 -07:00
_, line_table = to_lua(FILE_CACHE[filename])
self[filename] = line_table
return line_table
}
debug.getinfo = (thread,f,what)->
2018-04-12 18:01:51 -07:00
if what == nil
f,what,thread = thread,f,nil
if type(f) == 'number' then f += 1 -- Account for this wrapper function
info = if thread == nil
debug_getinfo(f,what)
else debug_getinfo(thread,f,what)
if not info or not info.func then return info
2018-04-12 20:39:17 -07:00
if info.short_src or info.source or info.linedefine or info.currentline
for k,v in pairs(nomsu.environment.ACTIONS)
if v == info.func
info.name = k
break
[=[
2018-04-12 20:39:17 -07:00
if metadata = nomsu.action_metadata[info.func]
info.name = metadata.aliases[1]
2018-04-13 15:29:16 -07:00
filename = if type(metadata.source) == 'string'
metadata.source\match("^[^[:]*")
else metadata.source.filename
2018-04-12 20:39:17 -07:00
info.short_src = filename
info.source = FILE_CACHE[filename]
ok, linedefined = pcall(lua_line_to_nomsu_line, info.short_src, info.linedefined)
if ok then info.linedefined = linedefined
ok, currentline = pcall(lua_line_to_nomsu_line, info.short_src, info.currentline)
--if ok then info.currentline = currentline
]=]
return info
print_err_msg = (error_message, stack_offset=2)->
io.stderr\write("#{colored.red "ERROR:"} #{colored.bright colored.red (error_message or "")}\n")
io.stderr\write("stack traceback:\n")
-- TODO: properly print out the calling site of nomsu code, not just the *called* code
ok, to_lua = pcall -> require('moonscript.base').to_lua
if not ok then to_lua = -> nil
2018-04-20 16:23:53 -07:00
nomsu_source = FILE_CACHE["nomsu.moon"]
_, line_table = to_lua(nomsu_source)
level = stack_offset
while true
-- TODO: reduce duplicate code
calling_fn = debug_getinfo(level)
if not calling_fn then break
if calling_fn.func == run then break
level += 1
name = calling_fn.name
if name == "run_lua_fn" then continue
line = nil
if metadata = nomsu.action_metadata[calling_fn.func]
filename, start, stop = metadata.source\match("([^:]*):([0-9]*),([0-9]*)")
if filename
2018-04-11 20:05:12 -07:00
file = FILE_CACHE[filename]
line_no = 1
for _ in file\sub(1,tonumber(start))\gmatch("\n") do line_no += 1
offending_statement = file\sub(tonumber(start),tonumber(stop))
if #offending_statement > 50
offending_statement = offending_statement\sub(1,50).."..."
offending_statement = colored.red(offending_statement)
line = colored.yellow(filename..":"..tostring(line_no).."\n "..offending_statement)
else
line = colored.yellow(metadata.source)
name = colored.bright(colored.yellow(metadata.aliases[1]))
else
if calling_fn.istailcall and not name
name = "<tail call>"
if calling_fn.short_src == "./nomsu.moon" and line_table
char = line_table[calling_fn.currentline]
line_num = 1
for _ in nomsu_source\sub(1,char)\gmatch("\n") do line_num += 1
line = colored.cyan("#{calling_fn.short_src}:#{line_num}")
name = colored.bright(colored.cyan(name or "???"))
else
line = colored.blue("#{calling_fn.short_src}:#{calling_fn.currentline}")
name = colored.bright(colored.blue(name or "???"))
_from = colored.dim colored.white "|"
io.stderr\write(("%32s %s %s\n")\format(name, _from, line))
io.stderr\flush!
run = ->
2018-04-28 19:16:39 -07:00
if args.verbose
nomsu.debug = true
2018-04-28 19:16:39 -07:00
for i,input in ipairs args.inputs
if input == "-" then args.inputs[i] = STDIN
if #args.inputs == 0 and not args.interactive
args.inputs = {"core"}
args.interactive = true
2018-04-28 19:16:39 -07:00
output_file = if args.output_file == "-" then io.stdout
elseif args.output_file then io.open(args.output_file, 'w')
print_file = if args.print_file == "-" then io.stdout
elseif args.print_file then io.open(args.print_file, 'w')
elseif output_file == io.stdout then nil
else io.stdout
2018-04-28 19:16:39 -07:00
nomsu.skip_precompiled = not args.optimized
if print_file == nil
nomsu.environment.print = ->
elseif print_file != io.stdout
nomsu.environment.print = (...)->
N = select("#",...)
if N > 0
print_file\write(tostring(select(1,...)))
for i=2,N
print_file\write('\t',tostring(select(1,...)))
print_file\write('\n')
print_file\flush!
compile_fn = if output_file
(code)->
2018-04-28 19:16:39 -07:00
output_file\write("local IMMEDIATE = true;\n"..tostring(code))
output_file\flush!
else nil
2018-04-28 19:16:39 -07:00
2018-05-03 16:30:55 -07:00
parse_errs = {}
2018-04-28 19:16:39 -07:00
for input in *args.inputs
if args.syntax
-- Check syntax:
2018-04-28 19:16:39 -07:00
for input_file in all_files(input)
2018-05-03 16:30:55 -07:00
ok,err = pcall nomsu.parse, nomsu, Nomsu(input_file, io.open(input_file)\read("*a"))
if not ok
insert parse_errs, err
elseif print_file
print_file\write("Parse succeeded: #{input_file}\n")
print_file\flush!
2018-04-28 19:16:39 -07:00
elseif args.format
-- Auto-format
2018-04-28 19:16:39 -07:00
for input_file in all_files(input)
tree = nomsu\parse(io.open(input_file)\read("*a"))
formatted = tostring(tree\as_nomsu!)
if output_file
output_file\write(formatted, "\n")
output_file\flush!
if print_file
print_file\write(formatted, "\n")
print_file\flush!
2018-04-28 19:16:39 -07:00
elseif input == STDIN
nomsu\run(io.input!\read("*a"), compile_fn)
else
2018-04-28 19:16:39 -07:00
nomsu\run_file(input, compile_fn)
2018-05-03 16:30:55 -07:00
if #parse_errs > 0
io.stderr\write concat(parse_errs, "\n\n")
io.stderr\flush!
os.exit(false, true)
elseif args.syntax
os.exit(true, true)
2018-04-28 19:16:39 -07:00
if args.interactive
-- REPL
while true
io.write(colored.bright colored.yellow ">> ")
buff = ""
while true
line = io.read("*L")
if line == "\n" or not line
if #buff > 0
io.write("\027[1A\027[2K")
break -- Run buffer
line = line\gsub("\t", " ")
buff ..= line
io.write(colored.dim colored.yellow ".. ")
if #buff == 0
break -- Exit
ok, ret = pcall(nomsu.run, nomsu, buff)
if ok and ret != nil
print "= "..repr(ret)
elseif not ok
print_err_msg ret
err_hand = (error_message)->
print_err_msg error_message
os.exit(false, true)
-- Note: xpcall has a slightly different API in Lua <=5.1 vs. >=5.2, but this works
-- for both APIs
-- TODO: revert back to old error handler
2018-04-20 14:33:49 -07:00
2018-04-20 16:23:53 -07:00
--ProFi = require 'ProFi'
--ProFi\start()
if ldt = require('ldt')
ldt.guard run
else xpcall(run, err_hand)
2018-04-20 16:23:53 -07:00
--ProFi\stop()
--ProFi\writeReport( 'MyProfilingReport.txt' )
2017-09-12 20:00:19 -07:00
2017-09-13 16:22:04 -07:00
return NomsuCompiler