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:
|
2018-06-15 03:11:38 -07:00
|
|
|
-- lua nomsu.lua your_file.nom
|
2018-05-09 13:34:33 -07:00
|
|
|
export lpeg, re
|
2018-05-15 16:36:21 -07:00
|
|
|
_pairs, _ipairs = pairs, ipairs
|
2018-05-09 13:34:33 -07:00
|
|
|
if jit
|
2018-05-09 20:34:32 -07:00
|
|
|
package.cpath = "./luajit_lpeg/?.so;"..package.cpath
|
2018-06-12 18:04:18 -07:00
|
|
|
package.path = "./luajit_lpeg/?.lua;"..package.path
|
2018-05-09 13:34:33 -07:00
|
|
|
|
|
|
|
export bit32
|
|
|
|
bit32 = require('bit')
|
|
|
|
|
2018-06-12 18:04:18 -07:00
|
|
|
lpeg = require 'lpeg'
|
2018-05-09 20:34:32 -07:00
|
|
|
re = require 're'
|
2018-04-11 20:05:12 -07:00
|
|
|
lpeg.setmaxstack 10000
|
2018-05-26 19:24:22 -07:00
|
|
|
{:P,:R,:V,:S,:Cg,:C,:Cp,:B,:Cmt,:Carg} = lpeg
|
2017-12-18 16:26:26 -08:00
|
|
|
utils = require 'utils'
|
2018-01-11 03:32:12 -08:00
|
|
|
new_uuid = require 'uuid'
|
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:->""})
|
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)})
|
2017-09-21 21:11:13 -07:00
|
|
|
{:insert, :remove, :concat} = table
|
2018-06-12 23:47:43 -07:00
|
|
|
{:match, :sub, :rep, :gsub, :format, :byte, :match, :find} = string
|
2018-04-08 18:23:46 -07:00
|
|
|
debug_getinfo = debug.getinfo
|
2018-04-26 14:00:01 -07:00
|
|
|
{:Nomsu, :Lua, :Source} = require "code_obj"
|
2018-04-28 18:07:14 -07:00
|
|
|
STDIN, STDOUT, STDERR = "/dev/fd/0", "/dev/fd/1", "/dev/fd/2"
|
2017-08-16 04:35:35 -07:00
|
|
|
|
2018-05-30 13:46:40 -07:00
|
|
|
string.as_lua_id = (str)->
|
2018-06-12 20:06:33 -07:00
|
|
|
argnum = 0
|
2018-06-14 21:59:25 -07:00
|
|
|
-- Cut up escape-sequence-like chunks
|
|
|
|
str = gsub str, "x([0-9A-F][0-9A-F])", "x\0%1"
|
|
|
|
-- Alphanumeric unchanged, spaces to underscores, and everything else to hex escape sequences
|
2018-06-12 20:06:33 -07:00
|
|
|
str = gsub str, "%W", (c)->
|
|
|
|
if c == ' ' then '_'
|
|
|
|
elseif c == '%' then
|
|
|
|
argnum += 1
|
|
|
|
tostring(argnum)
|
2018-06-14 21:59:25 -07:00
|
|
|
else format("x%02X", byte(c))
|
2018-06-12 20:06:33 -07:00
|
|
|
return '_'..str
|
2018-05-30 13:46:40 -07:00
|
|
|
|
2018-06-14 21:59:25 -07:00
|
|
|
table.map = (fn)=> [fn(v) for _,v in ipairs(@)]
|
|
|
|
|
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
|
2018-04-17 14:36:44 -07:00
|
|
|
-- 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
|
2018-05-09 13:34:33 -07:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2018-04-28 17:08:28 -07:00
|
|
|
iterate_single = (item, prev) -> if item == prev then nil else item
|
|
|
|
all_files = (path)->
|
|
|
|
-- Sanitize path
|
2018-06-12 18:04:18 -07:00
|
|
|
if match(path, "%.nom$") or match(path, "%.lua$") or match(path, "^/dev/fd/[012]$")
|
2018-04-28 17:08:28 -07:00
|
|
|
return iterate_single, path
|
|
|
|
-- TODO: improve sanitization
|
2018-06-12 18:04:18 -07:00
|
|
|
path = gsub(path,"\\","\\\\")
|
|
|
|
path = gsub(path,"`","")
|
|
|
|
path = gsub(path,'"','\\"')
|
|
|
|
path = gsub(path,"$","")
|
2018-05-24 15:51:06 -07:00
|
|
|
return coroutine.wrap ->
|
2018-05-24 16:13:23 -07:00
|
|
|
f = io.popen('find -L "'..path..'" -not -path "*/\\.*" -type f -name "*.nom"')
|
2018-05-24 15:51:06 -07:00
|
|
|
for line in f\lines!
|
|
|
|
coroutine.yield(line)
|
|
|
|
success = f\close!
|
|
|
|
unless success
|
|
|
|
error("Invalid file path: "..tostring(path))
|
2018-04-28 17:08:28 -07:00
|
|
|
|
2018-04-11 20:05:12 -07:00
|
|
|
line_counter = re.compile([[
|
|
|
|
lines <- {| line (%nl line)* |}
|
|
|
|
line <- {} (!%nl .)*
|
|
|
|
]], nl:P("\r")^-1 * P("\n"))
|
2018-06-12 23:47:43 -07:00
|
|
|
get_lines = re.compile([[
|
|
|
|
lines <- {| line (%nl line)* |}
|
|
|
|
line <- {[^%nl]*}
|
|
|
|
]], nl:P("\r")^-1 * P("\n"))
|
2018-04-11 20:05:12 -07:00
|
|
|
-- 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
|
|
|
|
}
|
2018-06-04 20:41:20 -07:00
|
|
|
pos_to_line = (str, pos)->
|
|
|
|
line_starts = LINE_STARTS[str]
|
|
|
|
-- Binary search for line number of position
|
|
|
|
lo, hi = 1, #line_starts
|
|
|
|
while lo <= hi
|
|
|
|
mid = math.floor((lo+hi)/2)
|
|
|
|
if line_starts[mid] > pos
|
|
|
|
hi = mid-1
|
|
|
|
else lo = mid+1
|
|
|
|
return hi
|
2018-04-11 20:05:12 -07:00
|
|
|
|
2018-01-23 19:22:20 -08:00
|
|
|
-- Use + operator for string coercive concatenation (note: "asdf" + 3 == "asdf3")
|
2018-01-24 13:13:03 -08:00
|
|
|
-- Use [] for accessing string characters, or s[{3,4}] for s:sub(3,4)
|
2018-01-23 19:22:20 -08:00
|
|
|
-- Note: This globally affects all strings in this instance of Lua!
|
|
|
|
do
|
|
|
|
STRING_METATABLE = getmetatable("")
|
|
|
|
STRING_METATABLE.__add = (other)=> @ .. stringify(other)
|
2018-01-24 13:13:03 -08:00
|
|
|
STRING_METATABLE.__index = (i)=>
|
2018-05-14 14:45:38 -07:00
|
|
|
ret = string[i]
|
|
|
|
if ret != nil then return ret
|
2018-06-12 18:04:18 -07:00
|
|
|
if type(i) == 'number' then return sub(@, i, i)
|
|
|
|
elseif type(i) == 'table' then return sub(@, i[1], i[2])
|
2018-01-23 19:22:20 -08:00
|
|
|
|
2018-06-12 15:12:27 -07:00
|
|
|
AST = require "nomsu_tree"
|
2018-02-13 15:17:45 -08:00
|
|
|
|
2018-01-19 17:29:44 -08:00
|
|
|
NOMSU_DEFS = with {}
|
2018-01-25 17:34:49 -08:00
|
|
|
-- Newline supports either windows-style CR+LF or unix-style LF
|
|
|
|
.nl = P("\r")^-1 * P("\n")
|
2018-01-19 17:29:44 -08:00
|
|
|
.ws = S(" \t")
|
|
|
|
.tonumber = tonumber
|
|
|
|
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("'~`!@$^&*-+=|<>?/")
|
|
|
|
.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
|
|
|
|
|
2018-01-30 15:10:37 -08:00
|
|
|
-- If the line begins with #indent+4 spaces, the pattern matches *those* spaces
|
2018-06-12 18:16:34 -07:00
|
|
|
-- and adds them to the current indent (not any more).
|
2018-05-26 19:24:22 -07:00
|
|
|
.indent = Cmt Carg(1), (start, userdata)=>
|
2018-06-12 18:16:34 -07:00
|
|
|
indented = userdata.indent..' '
|
|
|
|
if sub(@, start, start+#indented-1) == indented
|
|
|
|
userdata.indent = indented
|
|
|
|
return start + #indented
|
|
|
|
-- If the number of leading space characters is <= the number of spaces in the current
|
|
|
|
-- indent minus 4, this pattern matches and decrements the current indent exactly once.
|
2018-05-26 19:24:22 -07:00
|
|
|
.dedent = Cmt Carg(1), (start, userdata)=>
|
2018-06-12 18:16:34 -07:00
|
|
|
dedented = sub(userdata.indent, 1, -5)
|
|
|
|
if #match(@, "^[ ]*", start) <= #dedented
|
|
|
|
userdata.indent = dedented
|
2017-12-30 14:31:07 -08:00
|
|
|
return start
|
2018-06-12 18:16:34 -07:00
|
|
|
-- If the number of leading space characters is >= the number of spaces in the current
|
|
|
|
-- indent, this pattern matches and does not modify the indent.
|
2018-05-26 19:24:22 -07:00
|
|
|
.nodent = Cmt Carg(1), (start, userdata)=>
|
2018-06-12 18:16:34 -07:00
|
|
|
if sub(@, start, start+#userdata.indent-1) == userdata.indent
|
|
|
|
return start + #userdata.indent
|
2018-01-19 17:29:44 -08:00
|
|
|
|
2018-05-26 19:24:22 -07:00
|
|
|
.userdata = Carg(1)
|
|
|
|
|
|
|
|
.error = (src,end_pos,start_pos,err_msg,userdata)->
|
|
|
|
seen_errors = userdata.errors
|
2018-05-03 16:30:55 -07:00
|
|
|
if seen_errors[start_pos]
|
|
|
|
return true
|
2018-05-30 13:07:08 -07:00
|
|
|
if utils.size(seen_errors) >= 10
|
|
|
|
seen_errors[start_pos+1] = colored.bright colored.yellow colored.onred "Too many errors, canceling parsing..."
|
2018-05-30 17:20:22 -07:00
|
|
|
return #src+1
|
2018-05-03 16:30:55 -07:00
|
|
|
err_pos = start_pos
|
2018-06-04 20:41:20 -07:00
|
|
|
line_no = pos_to_line(src, err_pos)
|
|
|
|
src = FILE_CACHE[userdata.source.filename]
|
|
|
|
line_starts = LINE_STARTS[src]
|
|
|
|
prev_line = line_no == 1 and "" or src\sub(line_starts[line_no-1] or 1, line_starts[line_no]-2)
|
|
|
|
err_line = src\sub(line_starts[line_no], (line_starts[line_no+1] or 0)-2)
|
|
|
|
next_line = src\sub(line_starts[line_no+1] or -1, (line_starts[line_no+2] or 0)-2)
|
|
|
|
i = err_pos-line_starts[line_no]
|
2018-05-30 13:07:08 -07:00
|
|
|
pointer = ("-")\rep(i) .. "^"
|
|
|
|
err_msg = colored.bright colored.yellow colored.onred (err_msg or "Parse error").." at #{userdata.source.filename}:#{line_no}:"
|
|
|
|
if #prev_line > 0 then err_msg ..= "\n"..colored.dim(prev_line)
|
|
|
|
err_line = colored.white(err_line\sub(1, i))..colored.bright(colored.red(err_line\sub(i+1,i+1)))..colored.dim(err_line\sub(i+2,-1))
|
|
|
|
err_msg ..= "\n#{err_line}\n#{colored.red pointer}"
|
|
|
|
if #next_line > 0 then err_msg ..= "\n"..colored.dim(next_line)
|
2018-05-03 16:30:55 -07:00
|
|
|
--error(err_msg)
|
|
|
|
seen_errors[start_pos] = err_msg
|
|
|
|
return true
|
2018-01-19 17:29:44 -08:00
|
|
|
|
|
|
|
setmetatable(NOMSU_DEFS, {__index:(key)=>
|
2018-05-26 19:24:22 -07:00
|
|
|
make_node = (start, value, stop, userdata)->
|
2018-06-04 20:41:20 -07:00
|
|
|
local source
|
|
|
|
with userdata.source
|
|
|
|
source = Source(.filename, .start + start-1, .start + stop-1)
|
2018-06-12 15:12:27 -07:00
|
|
|
value.source = source
|
|
|
|
setmetatable(value, AST[key])
|
|
|
|
if value.__init then value\__init!
|
2018-06-12 20:06:33 -07:00
|
|
|
for i=1,#value do assert(value[i])
|
2018-06-12 15:12:27 -07:00
|
|
|
return value
|
|
|
|
|
2018-01-19 17:29:44 -08:00
|
|
|
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} ")" (" "*) ":"
|
2018-05-26 19:24:22 -07:00
|
|
|
{((%nl " "+ [^%nl]*)+) / ([^%nl]*)}) -> "%1 <- (({} %3 {} %%userdata) -> %2)"
|
2017-12-30 14:31:07 -08:00
|
|
|
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"])
|
2018-01-19 17:29:44 -08:00
|
|
|
re.compile(nomsu_peg, NOMSU_DEFS)
|
2017-09-22 00:01:53 -07:00
|
|
|
|
2017-09-13 16:22:04 -07:00
|
|
|
class NomsuCompiler
|
2018-06-12 13:56:15 -07:00
|
|
|
compile_error = (tok, err_format_string, ...)->
|
|
|
|
file = FILE_CACHE[tok.source.filename]
|
|
|
|
line_no = pos_to_line(file, tok.source.start)
|
|
|
|
line_start = LINE_STARTS[file][line_no]
|
|
|
|
src = colored.dim(file\sub(line_start, tok.source.start-1))
|
|
|
|
src ..= colored.underscore colored.bright colored.red(file\sub(tok.source.start, tok.source.stop-1))
|
|
|
|
end_of_line = (LINE_STARTS[file][pos_to_line(file, tok.source.stop) + 1] or 0) - 1
|
|
|
|
src ..= colored.dim(file\sub(tok.source.stop, end_of_line-1))
|
|
|
|
src = ' '..src\gsub('\n', '\n ')
|
|
|
|
err_msg = err_format_string\format(src, ...)
|
|
|
|
error("#{tok.source.filename}:#{line_no}: "..err_msg, 0)
|
2018-04-17 14:47:28 -07:00
|
|
|
new: =>
|
2018-01-19 17:29:44 -08:00
|
|
|
-- Weak-key mapping from objects to randomly generated unique IDs
|
2018-01-24 12:37:52 -08:00
|
|
|
NaN_surrogate = {}
|
|
|
|
nil_surrogate = {}
|
2018-01-11 03:32:12 -08:00
|
|
|
@ids = setmetatable({}, {
|
|
|
|
__mode: "k"
|
|
|
|
__index: (key)=>
|
2018-01-24 12:37:52 -08:00
|
|
|
if key == nil then return @[nil_surrogate]
|
|
|
|
elseif key != key then return @[NaN_surrogate]
|
2018-01-11 03:32:12 -08:00
|
|
|
id = new_uuid!
|
|
|
|
@[key] = id
|
|
|
|
return id
|
|
|
|
})
|
2018-06-12 15:12:27 -07:00
|
|
|
-- Mapping from source string (e.g. "@core/metaprogramming.nom[1:100]") to a mapping
|
|
|
|
-- from lua line number to nomsu line number
|
2018-05-29 16:14:53 -07:00
|
|
|
@source_map = {}
|
2018-01-12 16:33:11 -08:00
|
|
|
|
2018-06-06 13:25:01 -07:00
|
|
|
_list_mt =
|
|
|
|
__eq:utils.equivalent
|
|
|
|
-- Could consider adding a __newindex to enforce list-ness, but would hurt performance
|
|
|
|
__tostring: =>
|
|
|
|
"["..concat([repr(b) for b in *@], ", ").."]"
|
|
|
|
list = (t)-> setmetatable(t, _list_mt)
|
|
|
|
_dict_mt =
|
|
|
|
__eq:utils.equivalent
|
|
|
|
__tostring: =>
|
|
|
|
"{"..concat(["#{repr(k)}: #{repr(v)}" for k,v in pairs @], ", ").."}"
|
|
|
|
dict = (t)-> setmetatable(t, _dict_mt)
|
2018-01-12 16:33:11 -08:00
|
|
|
@environment = {
|
|
|
|
-- Discretionary/convenience stuff
|
|
|
|
nomsu:self, repr:repr, stringify:stringify, utils:utils, lpeg:lpeg, re:re,
|
2018-06-12 13:56:15 -07:00
|
|
|
:compile_error
|
2018-01-12 16:33:11 -08:00
|
|
|
-- 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,
|
2018-06-06 13:25:01 -07:00
|
|
|
:table, :assert, :dofile, :loadstring, :type, :select, :debug, :math, :io, :load,
|
2018-06-12 18:04:18 -07:00
|
|
|
:pairs, :ipairs,
|
2018-06-06 13:25:01 -07:00
|
|
|
-- Nomsu types:
|
|
|
|
:list, :dict,
|
2018-01-12 16:33:11 -08:00
|
|
|
}
|
2018-06-12 15:12:27 -07:00
|
|
|
for k,v in pairs(AST) do @environment[k] = v
|
2018-04-12 18:01:51 -07:00
|
|
|
@environment.Lua = Lua
|
2018-04-18 15:28:46 -07:00
|
|
|
@environment.Nomsu = Nomsu
|
|
|
|
@environment.Source = Source
|
2018-05-03 21:56:07 -07:00
|
|
|
@environment.ARG_ORDERS = setmetatable({}, {__mode:"k"})
|
2018-06-12 20:06:33 -07:00
|
|
|
@environment.ALIASES = setmetatable({}, {__mode:"k"})
|
2018-06-12 20:15:52 -07:00
|
|
|
@environment.compile_time = (fn)->
|
|
|
|
@environment.COMPILE_TIME[fn] = true
|
|
|
|
return fn
|
2018-06-12 20:06:33 -07:00
|
|
|
@environment.COMPILE_TIME = {}
|
2018-01-19 17:29:44 -08:00
|
|
|
@environment.LOADED = {}
|
2018-06-12 15:12:27 -07:00
|
|
|
@environment.AST = AST
|
2018-06-12 20:06:33 -07:00
|
|
|
@environment._ENV = @environment
|
2018-06-14 23:25:05 -07:00
|
|
|
setmetatable @environment,
|
|
|
|
__index: (k)=>
|
|
|
|
if _self = rawget(@, "self")
|
|
|
|
return _self[k]
|
2018-01-19 17:29:44 -08:00
|
|
|
@initialize_core!
|
2017-09-14 21:03:42 -07:00
|
|
|
|
2018-04-18 15:28:46 -07:00
|
|
|
parse: (nomsu_code)=>
|
2018-05-30 14:29:08 -07:00
|
|
|
assert(type(nomsu_code) != 'string')
|
2018-02-08 16:22:57 -08:00
|
|
|
userdata = {
|
2018-06-12 18:16:34 -07:00
|
|
|
source_code:nomsu_code, indent: "", errors: {},
|
2018-05-26 15:04:31 -07:00
|
|
|
source: nomsu_code.source,
|
2018-02-08 16:22:57 -08:00
|
|
|
}
|
2018-05-26 19:24:22 -07:00
|
|
|
tree = NOMSU_PATTERN\match(tostring(nomsu_code), nil, userdata)
|
|
|
|
unless tree
|
|
|
|
error "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]
|
2018-05-30 13:07:08 -07:00
|
|
|
io.stderr\write(concat(errors, "\n\n").."\n")
|
|
|
|
os.exit!
|
2018-05-24 20:27:08 -07:00
|
|
|
|
2018-05-26 15:04:31 -07:00
|
|
|
return tree
|
2017-09-11 13:05:25 -07:00
|
|
|
|
2018-06-15 03:11:38 -07:00
|
|
|
run: (nomsu_code)=>
|
2018-05-30 14:29:08 -07:00
|
|
|
tree = assert(@parse(nomsu_code))
|
|
|
|
if type(tree) == 'number' -- Happens if pattern matches, but there are no captures, e.g. an empty string
|
|
|
|
return nil
|
2018-05-16 19:08:16 -07:00
|
|
|
lua = @tree_to_lua(tree)\as_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"
|
2018-06-15 03:11:38 -07:00
|
|
|
if @compile_fn
|
|
|
|
self.compile_fn(lua, nomsu_code.source.filename)
|
2018-04-18 15:28:46 -07:00
|
|
|
return @run_lua(lua)
|
2018-01-08 18:53:57 -08:00
|
|
|
|
2018-05-30 14:29:08 -07:00
|
|
|
_running_files = {} -- For detecting circular imports
|
2018-06-15 03:11:38 -07:00
|
|
|
run_file: (filename)=>
|
2018-05-14 15:37:15 -07:00
|
|
|
loaded = @environment.LOADED
|
|
|
|
if loaded[filename]
|
|
|
|
return loaded[filename]
|
2018-04-28 15:25:12 -07:00
|
|
|
ret = nil
|
2018-04-28 17:08:28 -07:00
|
|
|
for filename in all_files(filename)
|
2018-05-14 15:37:15 -07:00
|
|
|
if loaded[filename]
|
|
|
|
ret = loaded[filename]
|
|
|
|
continue
|
|
|
|
|
|
|
|
for i,running in ipairs _running_files
|
|
|
|
if running == filename
|
|
|
|
loop = [_running_files[j] for j=i,#_running_files]
|
|
|
|
insert loop, filename
|
|
|
|
error("Circular import, this loops forever: #{concat loop, " -> "}")
|
|
|
|
|
|
|
|
insert _running_files, filename
|
2018-06-12 18:04:18 -07:00
|
|
|
if match(filename, "%.lua$")
|
2018-04-28 15:25:12 -07:00
|
|
|
file = assert(FILE_CACHE[filename], "Could not find file: #{filename}")
|
2018-06-04 20:41:20 -07:00
|
|
|
ret = @run_lua(Lua(Source(filename, 1, #file), file))
|
2018-06-12 18:04:18 -07:00
|
|
|
elseif match(filename, "%.nom$") or match(filename, "^/dev/fd/[012]$")
|
2018-04-28 15:25:12 -07:00
|
|
|
if not @skip_precompiled -- Look for precompiled version
|
2018-06-12 18:04:18 -07:00
|
|
|
lua_filename = gsub(filename, "%.nom$", ".lua")
|
2018-04-28 15:25:12 -07:00
|
|
|
file = FILE_CACHE[lua_filename]
|
|
|
|
if file
|
2018-06-04 20:41:20 -07:00
|
|
|
ret = @run_lua(Lua(Source(filename, 1, #file), file))
|
2018-05-15 15:21:32 -07:00
|
|
|
remove _running_files
|
2018-04-28 15:25:12 -07:00
|
|
|
continue
|
|
|
|
file = file or FILE_CACHE[filename]
|
|
|
|
if not file
|
|
|
|
error("File does not exist: #{filename}", 0)
|
2018-06-15 03:11:38 -07:00
|
|
|
ret = @run(Nomsu(Source(filename,1,#file), file))
|
2018-04-28 15:25:12 -07:00
|
|
|
else
|
|
|
|
error("Invalid filetype for #{filename}", 0)
|
2018-05-14 15:37:15 -07:00
|
|
|
loaded[filename] = ret or true
|
|
|
|
remove _running_files
|
|
|
|
|
|
|
|
loaded[filename] = ret or true
|
2018-04-28 15:25:12 -07:00
|
|
|
return ret
|
2018-01-10 16:22:45 -08:00
|
|
|
|
2018-04-18 15:28:46 -07:00
|
|
|
run_lua: (lua)=>
|
|
|
|
assert(type(lua) != 'string', "Attempt to run lua string instead of Lua (object)")
|
2018-04-24 20:16:46 -07:00
|
|
|
lua_string = tostring(lua)
|
2018-06-15 00:20:27 -07:00
|
|
|
run_lua_fn, err = load(lua_string, tostring(lua.source), "t", @environment)
|
2018-01-12 16:33:11 -08:00
|
|
|
if not run_lua_fn
|
2018-01-08 18:53:57 -08:00
|
|
|
n = 1
|
|
|
|
fn = ->
|
|
|
|
n = n + 1
|
|
|
|
("\n%-3d|")\format(n)
|
2018-04-18 15:28:46 -07:00
|
|
|
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)
|
2018-05-30 17:20:22 -07:00
|
|
|
source_key = tostring(lua.source)
|
|
|
|
unless @source_map[source_key]
|
2018-05-29 16:14:53 -07:00
|
|
|
map = {}
|
|
|
|
offset = 1
|
|
|
|
source = lua.source
|
2018-06-04 20:41:20 -07:00
|
|
|
nomsu_str = tostring(FILE_CACHE[source.filename]\sub(source.start, source.stop))
|
2018-05-29 16:14:53 -07:00
|
|
|
lua_line = 1
|
2018-06-04 20:41:20 -07:00
|
|
|
nomsu_line = pos_to_line(nomsu_str, lua.source.start)
|
2018-05-29 16:14:53 -07:00
|
|
|
fn = (s)->
|
|
|
|
if type(s) == 'string'
|
|
|
|
for nl in s\gmatch("\n")
|
2018-05-29 17:10:44 -07:00
|
|
|
map[lua_line] or= nomsu_line
|
2018-05-29 16:14:53 -07:00
|
|
|
lua_line += 1
|
|
|
|
else
|
|
|
|
old_line = nomsu_line
|
|
|
|
if s.source
|
2018-06-04 20:41:20 -07:00
|
|
|
nomsu_line = pos_to_line(nomsu_str, s.source.start)
|
2018-05-29 16:14:53 -07:00
|
|
|
for b in *s.bits do fn(b)
|
|
|
|
fn(lua)
|
2018-05-29 17:10:44 -07:00
|
|
|
map[lua_line] or= nomsu_line
|
|
|
|
map[0] = 0
|
2018-05-29 16:14:53 -07:00
|
|
|
-- Mapping from lua line number to nomsu line numbers
|
2018-05-30 17:20:22 -07:00
|
|
|
@source_map[source_key] = map
|
2018-05-29 16:14:53 -07:00
|
|
|
|
2018-01-12 16:33:11 -08:00
|
|
|
return run_lua_fn!
|
2018-05-16 19:08:16 -07:00
|
|
|
|
|
|
|
MAX_LINE = 80 -- For beautification purposes, try not to make lines much longer than this value
|
|
|
|
math_expression = re.compile [[ ([+-] " ")* "%" (" " [*/^+-] (" " [+-])* " %")+ !. ]]
|
2018-05-26 15:04:31 -07:00
|
|
|
tree_to_lua: (tree)=>
|
2018-05-16 19:08:16 -07:00
|
|
|
switch tree.type
|
|
|
|
when "Action"
|
2018-05-30 17:20:22 -07:00
|
|
|
stub = tree.stub
|
2018-06-14 21:59:25 -07:00
|
|
|
action = @environment['A'..string.as_lua_id(stub)]
|
2018-06-12 20:06:33 -07:00
|
|
|
if action and @environment.COMPILE_TIME[action]
|
2018-06-04 17:56:09 -07:00
|
|
|
args = [arg for arg in *tree when type(arg) != "string"]
|
2018-05-16 19:08:16 -07:00
|
|
|
-- Force all compile-time actions to take a tree location
|
2018-06-12 20:06:33 -07:00
|
|
|
if arg_orders = @environment.ARG_ORDERS[stub]
|
|
|
|
args = [args[p] for p in *arg_orders]
|
2018-05-16 19:08:16 -07:00
|
|
|
-- Force Lua to avoid tail call optimization for debugging purposes
|
2018-05-24 20:27:08 -07:00
|
|
|
-- TODO: use tail call
|
2018-06-12 20:06:33 -07:00
|
|
|
ret = action(tree, unpack(args))
|
2018-06-04 22:53:47 -07:00
|
|
|
if not ret
|
2018-06-12 13:56:15 -07:00
|
|
|
compile_error tree,
|
|
|
|
"Compile-time action:\n%s\nfailed to produce any Lua"
|
2018-05-16 19:08:16 -07:00
|
|
|
return ret
|
2018-05-26 15:04:31 -07:00
|
|
|
lua = Lua.Value(tree.source)
|
2018-05-16 19:08:16 -07:00
|
|
|
if not action and math_expression\match(stub)
|
|
|
|
-- 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
|
|
|
|
-- action for every possibility.
|
2018-06-04 17:56:09 -07:00
|
|
|
for i,tok in ipairs tree
|
2018-05-24 21:16:51 -07:00
|
|
|
if type(tok) == 'string'
|
|
|
|
lua\append tok
|
2018-05-16 19:08:16 -07:00
|
|
|
else
|
2018-05-26 15:04:31 -07:00
|
|
|
tok_lua = @tree_to_lua(tok)
|
2018-05-16 19:08:16 -07:00
|
|
|
unless tok_lua.is_value
|
2018-06-12 13:56:15 -07:00
|
|
|
compile_error tok,
|
|
|
|
"Non-expression value inside math expression:\n%s"
|
2018-05-16 19:08:16 -07:00
|
|
|
if tok.type == "Action"
|
|
|
|
tok_lua\parenthesize!
|
|
|
|
lua\append tok_lua
|
2018-06-04 17:56:09 -07:00
|
|
|
if i < #tree
|
2018-05-16 19:08:16 -07:00
|
|
|
lua\append " "
|
|
|
|
return lua
|
|
|
|
|
|
|
|
args = {}
|
2018-06-04 17:56:09 -07:00
|
|
|
for i, tok in ipairs tree
|
2018-05-24 21:16:51 -07:00
|
|
|
if type(tok) == "string" then continue
|
2018-05-26 15:04:31 -07:00
|
|
|
arg_lua = @tree_to_lua(tok)
|
2018-05-16 19:08:16 -07:00
|
|
|
unless arg_lua.is_value
|
2018-06-12 13:56:15 -07:00
|
|
|
compile_error tok,
|
|
|
|
"Cannot use:\n%s\nas an argument to %s, since it's not an expression, it produces: %s",
|
|
|
|
stub, repr arg_lua
|
2018-05-16 19:08:16 -07:00
|
|
|
insert args, arg_lua
|
|
|
|
|
|
|
|
if action
|
2018-06-12 20:06:33 -07:00
|
|
|
if arg_orders = @environment.ARG_ORDERS[stub]
|
|
|
|
args = [args[p] for p in *arg_orders]
|
2018-05-16 19:08:16 -07:00
|
|
|
|
2018-06-14 21:59:25 -07:00
|
|
|
lua\append "A",string.as_lua_id(stub),"("
|
2018-05-16 19:08:16 -07:00
|
|
|
for i, arg in ipairs args
|
|
|
|
lua\append arg
|
|
|
|
if i < #args then lua\append ", "
|
|
|
|
lua\append ")"
|
|
|
|
return lua
|
|
|
|
|
|
|
|
when "EscapedNomsu"
|
|
|
|
make_tree = (t)->
|
2018-06-12 15:12:27 -07:00
|
|
|
unless AST.is_syntax_tree(t)
|
2018-05-16 19:08:16 -07:00
|
|
|
return repr(t)
|
2018-06-12 18:04:18 -07:00
|
|
|
bits = [make_tree(bit) for bit in *t]
|
|
|
|
return t.type.."("..repr(tostring t.source)..", "..table.concat(bits, ", ")..")"
|
2018-06-04 17:56:09 -07:00
|
|
|
Lua.Value tree.source, make_tree(tree[1])
|
2018-05-16 19:08:16 -07:00
|
|
|
|
|
|
|
when "Block"
|
2018-05-26 15:04:31 -07:00
|
|
|
lua = Lua(tree.source)
|
2018-06-04 17:56:09 -07:00
|
|
|
for i,line in ipairs tree
|
2018-05-26 15:04:31 -07:00
|
|
|
line_lua = @tree_to_lua(line)
|
2018-05-16 19:08:16 -07:00
|
|
|
if i > 1
|
|
|
|
lua\append "\n"
|
|
|
|
lua\append line_lua\as_statements!
|
|
|
|
return lua
|
|
|
|
|
|
|
|
when "Text"
|
2018-05-26 15:04:31 -07:00
|
|
|
lua = Lua.Value(tree.source)
|
2018-05-16 19:08:16 -07:00
|
|
|
string_buffer = ""
|
2018-06-04 17:56:09 -07:00
|
|
|
for i, bit in ipairs tree
|
2018-05-16 19:08:16 -07:00
|
|
|
if type(bit) == "string"
|
|
|
|
string_buffer ..= bit
|
|
|
|
continue
|
|
|
|
if string_buffer ~= ""
|
|
|
|
if #lua.bits > 0 then lua\append ".."
|
|
|
|
lua\append repr(string_buffer)
|
|
|
|
string_buffer = ""
|
2018-05-26 15:04:31 -07:00
|
|
|
bit_lua = @tree_to_lua(bit)
|
2018-05-16 19:08:16 -07:00
|
|
|
unless bit_lua.is_value
|
2018-06-12 18:04:18 -07:00
|
|
|
src = ' '..gsub(tostring(@tree_to_nomsu(bit)), '\n','\n ')
|
2018-06-04 22:53:47 -07:00
|
|
|
line = "#{bit.source.filename}:#{pos_to_line(FILE_CACHE[bit.source.filename], bit.source.start)}"
|
2018-06-12 13:56:15 -07:00
|
|
|
compile_error bit,
|
|
|
|
"Cannot use:\n%s\nas a string interpolation value, since it's not an expression."
|
2018-05-16 19:08:16 -07:00
|
|
|
if #lua.bits > 0 then lua\append ".."
|
|
|
|
if bit.type != "Text"
|
2018-05-26 15:04:31 -07:00
|
|
|
bit_lua = Lua.Value(bit.source, "stringify(",bit_lua,")")
|
2018-05-16 19:08:16 -07:00
|
|
|
lua\append bit_lua
|
|
|
|
|
|
|
|
if string_buffer ~= "" or #lua.bits == 0
|
|
|
|
if #lua.bits > 0 then lua\append ".."
|
|
|
|
lua\append repr(string_buffer)
|
|
|
|
|
|
|
|
if #lua.bits > 1
|
|
|
|
lua\parenthesize!
|
|
|
|
return lua
|
|
|
|
|
|
|
|
when "List"
|
2018-06-06 13:25:01 -07:00
|
|
|
lua = Lua.Value tree.source, "list{"
|
2018-05-16 19:08:16 -07:00
|
|
|
line_length = 0
|
2018-06-04 17:56:09 -07:00
|
|
|
for i, item in ipairs tree
|
2018-05-26 15:04:31 -07:00
|
|
|
item_lua = @tree_to_lua(item)
|
2018-05-16 19:08:16 -07:00
|
|
|
unless item_lua.is_value
|
2018-06-12 13:56:15 -07:00
|
|
|
compile_error item,
|
|
|
|
"Cannot use:\n%s\nas a list item, since it's not an expression."
|
2018-05-16 19:08:16 -07:00
|
|
|
lua\append item_lua
|
|
|
|
item_string = tostring(item_lua)
|
2018-06-12 18:04:18 -07:00
|
|
|
last_line = match(item_string, "[^\n]*$")
|
|
|
|
if match(item_string, "\n")
|
2018-05-16 19:08:16 -07:00
|
|
|
line_length = #last_line
|
|
|
|
else
|
|
|
|
line_length += #last_line
|
2018-06-04 17:56:09 -07:00
|
|
|
if i < #tree
|
2018-05-16 19:08:16 -07:00
|
|
|
if line_length >= MAX_LINE
|
|
|
|
lua\append ",\n "
|
|
|
|
line_length = 0
|
|
|
|
else
|
|
|
|
lua\append ", "
|
|
|
|
line_length += 2
|
|
|
|
lua\append "}"
|
|
|
|
return lua
|
|
|
|
|
|
|
|
when "Dict"
|
2018-06-06 13:25:01 -07:00
|
|
|
lua = Lua.Value tree.source, "dict{"
|
2018-05-16 19:08:16 -07:00
|
|
|
line_length = 0
|
2018-06-04 17:56:09 -07:00
|
|
|
for i, entry in ipairs tree
|
2018-05-26 15:04:31 -07:00
|
|
|
entry_lua = @tree_to_lua(entry)
|
2018-05-16 19:08:16 -07:00
|
|
|
lua\append entry_lua
|
|
|
|
entry_lua_str = tostring(entry_lua)
|
|
|
|
-- TODO: maybe make this more accurate? It's only a heuristic, so eh...
|
2018-06-12 18:04:18 -07:00
|
|
|
last_line = match(entry_lua_str, "\n([^\n]*)$")
|
2018-05-16 19:08:16 -07:00
|
|
|
if last_line
|
|
|
|
line_length = #last_line
|
|
|
|
else
|
|
|
|
line_length += #entry_lua_str
|
2018-06-04 17:56:09 -07:00
|
|
|
if i < #tree
|
2018-05-16 19:08:16 -07:00
|
|
|
if line_length >= MAX_LINE
|
|
|
|
lua\append ",\n "
|
|
|
|
line_length = 0
|
|
|
|
else
|
|
|
|
lua\append ", "
|
|
|
|
line_length += 2
|
|
|
|
lua\append "}"
|
|
|
|
return lua
|
|
|
|
|
|
|
|
when "DictEntry"
|
2018-06-04 17:56:09 -07:00
|
|
|
key, value = tree[1], tree[2]
|
2018-05-26 15:04:31 -07:00
|
|
|
key_lua = @tree_to_lua(key)
|
2018-05-16 19:08:16 -07:00
|
|
|
unless key_lua.is_value
|
2018-06-12 13:56:15 -07:00
|
|
|
compile_error tree[1],
|
|
|
|
"Cannot use:\n%s\nas a dict key, since it's not an expression."
|
2018-05-26 15:04:31 -07:00
|
|
|
value_lua = value and @tree_to_lua(value) or Lua.Value(key.source, "true")
|
2018-05-16 19:08:16 -07:00
|
|
|
unless value_lua.is_value
|
2018-06-12 13:56:15 -07:00
|
|
|
compile_error tree[2],
|
|
|
|
"Cannot use:\n%s\nas a dict value, since it's not an expression."
|
2018-06-12 18:04:18 -07:00
|
|
|
key_str = match(tostring(key_lua), [=[["']([a-zA-Z_][a-zA-Z0-9_]*)['"]]=])
|
2018-05-16 19:08:16 -07:00
|
|
|
return if key_str
|
2018-05-26 15:04:31 -07:00
|
|
|
Lua tree.source, key_str,"=",value_lua
|
2018-06-12 18:04:18 -07:00
|
|
|
elseif sub(tostring(key_lua),1,1) == "["
|
2018-05-16 19:08:16 -07:00
|
|
|
-- NOTE: this *must* use a space after the [ to avoid freaking out
|
|
|
|
-- Lua's parser if the inner expression is a long string. Lua
|
|
|
|
-- parses x[[[y]]] as x("[y]"), not as x["y"]
|
2018-05-26 15:04:31 -07:00
|
|
|
Lua tree.source, "[ ",key_lua,"]=",value_lua
|
2018-05-16 19:08:16 -07:00
|
|
|
else
|
2018-05-26 15:04:31 -07:00
|
|
|
Lua tree.source, "[",key_lua,"]=",value_lua
|
2018-05-16 19:08:16 -07:00
|
|
|
|
|
|
|
when "IndexChain"
|
2018-06-04 17:56:09 -07:00
|
|
|
lua = @tree_to_lua(tree[1])
|
2018-05-16 19:08:16 -07:00
|
|
|
unless lua.is_value
|
2018-06-12 13:56:15 -07:00
|
|
|
compile_error tree[1],
|
|
|
|
"Cannot index:\n%s\nsince it's not an expression."
|
2018-06-12 18:04:18 -07:00
|
|
|
first_char = sub(tostring(lua),1,1)
|
2018-05-16 19:08:16 -07:00
|
|
|
if first_char == "{" or first_char == '"' or first_char == "["
|
|
|
|
lua\parenthesize!
|
|
|
|
|
2018-06-04 17:56:09 -07:00
|
|
|
for i=2,#tree
|
|
|
|
key = tree[i]
|
2018-05-26 15:04:31 -07:00
|
|
|
key_lua = @tree_to_lua(key)
|
2018-05-16 19:08:16 -07:00
|
|
|
unless key_lua.is_value
|
2018-06-12 13:56:15 -07:00
|
|
|
compile_error key,
|
|
|
|
"Cannot use:\n%s\nas an index, since it's not an expression."
|
2018-05-16 19:08:16 -07:00
|
|
|
key_lua_str = tostring(key_lua)
|
2018-06-12 18:04:18 -07:00
|
|
|
if lua_id = match(key_lua_str, "^['\"]([a-zA-Z_][a-zA-Z0-9_]*)['\"]$")
|
2018-05-16 19:08:16 -07:00
|
|
|
lua\append ".#{lua_id}"
|
2018-06-12 18:04:18 -07:00
|
|
|
elseif sub(key_lua_str,1,1) == '['
|
2018-05-16 19:08:16 -07:00
|
|
|
-- NOTE: this *must* use a space after the [ to avoid freaking out
|
|
|
|
-- Lua's parser if the inner expression is a long string. Lua
|
|
|
|
-- parses x[[[y]]] as x("[y]"), not as x["y"]
|
|
|
|
lua\append "[ ",key_lua," ]"
|
|
|
|
else
|
|
|
|
lua\append "[",key_lua,"]"
|
|
|
|
return lua
|
|
|
|
|
|
|
|
when "Number"
|
2018-06-12 18:04:18 -07:00
|
|
|
Lua.Value(tree.source, tostring(tree[1]))
|
2018-05-16 19:08:16 -07:00
|
|
|
|
|
|
|
when "Var"
|
2018-06-12 18:04:18 -07:00
|
|
|
Lua.Value(tree.source, string.as_lua_id(tree[1]))
|
2018-05-16 19:08:16 -07:00
|
|
|
|
|
|
|
else
|
|
|
|
error("Unknown type: #{tree.type}")
|
|
|
|
|
|
|
|
tree_to_nomsu: (tree, inline=false, can_use_colon=false)=>
|
|
|
|
switch tree.type
|
|
|
|
when "Action"
|
|
|
|
if inline
|
2018-05-26 15:04:31 -07:00
|
|
|
nomsu = Nomsu(tree.source)
|
2018-06-04 17:56:09 -07:00
|
|
|
for i,bit in ipairs tree
|
2018-05-24 21:16:51 -07:00
|
|
|
if type(bit) == "string"
|
2018-05-16 19:08:16 -07:00
|
|
|
if i > 1
|
|
|
|
nomsu\append " "
|
2018-05-24 21:16:51 -07:00
|
|
|
nomsu\append bit
|
2018-05-16 19:08:16 -07:00
|
|
|
else
|
|
|
|
arg_nomsu = @tree_to_nomsu(bit,true)
|
|
|
|
return nil unless arg_nomsu
|
|
|
|
unless i == 1
|
|
|
|
nomsu\append " "
|
|
|
|
if bit.type == "Action" or bit.type == "Block"
|
|
|
|
arg_nomsu\parenthesize!
|
|
|
|
nomsu\append arg_nomsu
|
|
|
|
return nomsu
|
|
|
|
else
|
2018-05-26 15:04:31 -07:00
|
|
|
nomsu = Nomsu(tree.source)
|
2018-05-16 19:08:16 -07:00
|
|
|
next_space = ""
|
2018-06-12 23:47:43 -07:00
|
|
|
line_len, last_colon = 0, nil
|
2018-06-04 17:56:09 -07:00
|
|
|
for i,bit in ipairs tree
|
2018-05-24 21:16:51 -07:00
|
|
|
if type(bit) == "string"
|
2018-06-12 23:47:43 -07:00
|
|
|
line_len += #next_space + #bit
|
2018-05-24 21:16:51 -07:00
|
|
|
nomsu\append next_space, bit
|
2018-05-16 19:08:16 -07:00
|
|
|
next_space = " "
|
|
|
|
else
|
|
|
|
arg_nomsu = if last_colon == i-1 and bit.type == "Action" then nil
|
|
|
|
elseif bit.type == "Block" then nil
|
|
|
|
else @tree_to_nomsu(bit,true)
|
|
|
|
|
2018-06-12 23:47:43 -07:00
|
|
|
if arg_nomsu and line_len + #tostring(arg_nomsu) < MAX_LINE
|
2018-05-16 19:08:16 -07:00
|
|
|
if bit.type == "Action"
|
|
|
|
if can_use_colon and i > 1
|
2018-06-12 18:04:18 -07:00
|
|
|
nomsu\append match(next_space,"[^ ]*"), ": ", arg_nomsu
|
2018-05-16 19:08:16 -07:00
|
|
|
next_space = "\n.."
|
2018-06-12 23:47:43 -07:00
|
|
|
line_len = 2
|
2018-05-16 19:08:16 -07:00
|
|
|
last_colon = i
|
|
|
|
else
|
|
|
|
nomsu\append next_space, "(", arg_nomsu, ")"
|
2018-06-12 23:47:43 -07:00
|
|
|
line_len += #next_space + 2 + #tostring(arg_nomsu)
|
2018-05-16 19:08:16 -07:00
|
|
|
next_space = " "
|
|
|
|
else
|
|
|
|
nomsu\append next_space, arg_nomsu
|
2018-06-12 23:47:43 -07:00
|
|
|
line_len += #next_space + #tostring(arg_nomsu)
|
2018-05-16 19:08:16 -07:00
|
|
|
next_space = " "
|
|
|
|
else
|
|
|
|
arg_nomsu = @tree_to_nomsu(bit, nil, true)
|
|
|
|
return nil unless nomsu
|
|
|
|
-- These types carry their own indentation
|
|
|
|
if bit.type != "List" and bit.type != "Dict" and bit.type != "Text"
|
|
|
|
if i == 1
|
2018-05-26 15:04:31 -07:00
|
|
|
arg_nomsu = Nomsu(bit.source, "(..)\n ", arg_nomsu)
|
2018-05-16 19:08:16 -07:00
|
|
|
else
|
2018-05-26 15:04:31 -07:00
|
|
|
arg_nomsu = Nomsu(bit.source, "\n ", arg_nomsu)
|
2018-05-16 19:08:16 -07:00
|
|
|
|
|
|
|
if last_colon == i-1 and (bit.type == "Action" or bit.type == "Block")
|
|
|
|
next_space = ""
|
|
|
|
nomsu\append next_space, arg_nomsu
|
|
|
|
next_space = "\n.."
|
2018-06-12 23:47:43 -07:00
|
|
|
line_len = 2
|
2018-05-16 19:08:16 -07:00
|
|
|
|
2018-06-12 18:04:18 -07:00
|
|
|
if next_space == " " and #(match(tostring(nomsu),"[^\n]*$")) > MAX_LINE
|
2018-05-16 19:08:16 -07:00
|
|
|
next_space = "\n.."
|
|
|
|
return nomsu
|
|
|
|
|
|
|
|
when "EscapedNomsu"
|
2018-06-04 17:56:09 -07:00
|
|
|
nomsu = @tree_to_nomsu(tree[1], true)
|
2018-05-16 19:08:16 -07:00
|
|
|
if nomsu == nil and not inline
|
2018-06-04 17:56:09 -07:00
|
|
|
nomsu = @tree_to_nomsu(tree[1])
|
2018-05-26 15:04:31 -07:00
|
|
|
return nomsu and Nomsu tree.source, "\\:\n ", nomsu
|
|
|
|
return nomsu and Nomsu tree.source, "\\(", nomsu, ")"
|
2018-05-16 19:08:16 -07:00
|
|
|
|
|
|
|
when "Block"
|
|
|
|
if inline
|
2018-05-26 15:04:31 -07:00
|
|
|
nomsu = Nomsu(tree.source)
|
2018-06-04 17:56:09 -07:00
|
|
|
for i,line in ipairs tree
|
2018-05-16 19:08:16 -07:00
|
|
|
if i > 1
|
|
|
|
nomsu\append "; "
|
|
|
|
line_nomsu = @tree_to_nomsu(line,true)
|
|
|
|
return nil unless line_nomsu
|
|
|
|
nomsu\append line_nomsu
|
|
|
|
return nomsu
|
2018-05-26 15:04:31 -07:00
|
|
|
nomsu = Nomsu(tree.source)
|
2018-06-04 22:53:47 -07:00
|
|
|
for i, line in ipairs tree
|
2018-05-16 19:08:16 -07:00
|
|
|
line = assert(@tree_to_nomsu(line, nil, true), "Could not convert line to nomsu")
|
|
|
|
nomsu\append line
|
2018-06-04 22:53:47 -07:00
|
|
|
if i < #tree
|
2018-05-16 19:08:16 -07:00
|
|
|
nomsu\append "\n"
|
2018-06-12 18:04:18 -07:00
|
|
|
if match(tostring(line), "\n")
|
2018-05-16 19:08:16 -07:00
|
|
|
nomsu\append "\n"
|
|
|
|
return nomsu
|
|
|
|
|
|
|
|
when "Text"
|
|
|
|
if inline
|
2018-05-26 15:04:31 -07:00
|
|
|
nomsu = Nomsu(tree.source, '"')
|
2018-06-04 17:56:09 -07:00
|
|
|
for bit in *tree
|
2018-05-16 19:08:16 -07:00
|
|
|
if type(bit) == 'string'
|
|
|
|
-- TODO: unescape better?
|
2018-06-13 14:53:47 -07:00
|
|
|
nomsu\append (gsub(gsub(gsub(bit,"\\","\\\\"),"\n","\\n"),'"','\\"'))
|
2018-05-16 19:08:16 -07:00
|
|
|
else
|
|
|
|
interp_nomsu = @tree_to_nomsu(bit, true)
|
|
|
|
if interp_nomsu
|
2018-06-13 14:53:47 -07:00
|
|
|
if bit.type != "Var" and bit.type != "List" and bit.type != "Dict" and bit.type != "Text"
|
2018-05-16 19:08:16 -07:00
|
|
|
interp_nomsu\parenthesize!
|
|
|
|
nomsu\append "\\", interp_nomsu
|
|
|
|
else return nil
|
|
|
|
nomsu\append '"'
|
|
|
|
return nomsu
|
|
|
|
else
|
|
|
|
inline_version = @tree_to_nomsu(tree, true)
|
|
|
|
if inline_version and #inline_version <= MAX_LINE
|
|
|
|
return inline_version
|
2018-05-26 15:04:31 -07:00
|
|
|
nomsu = Nomsu(tree.source, '".."\n ')
|
2018-06-12 23:47:43 -07:00
|
|
|
for i, bit in ipairs tree
|
2018-05-16 19:08:16 -07:00
|
|
|
if type(bit) == 'string'
|
2018-06-12 23:47:43 -07:00
|
|
|
bit_lines = get_lines\match(bit)
|
|
|
|
for j, line in ipairs bit_lines
|
|
|
|
if j > 1 then nomsu\append "\n "
|
|
|
|
if #line > 1.25*MAX_LINE
|
|
|
|
remainder = line
|
|
|
|
while #remainder > 0
|
|
|
|
split = find(remainder, " ", MAX_LINE, true)
|
|
|
|
if split
|
|
|
|
chunk, remainder = sub(remainder, 1, split), sub(remainder, split+1, -1)
|
|
|
|
nomsu\append chunk
|
|
|
|
elseif #remainder > 1.75*MAX_LINE
|
|
|
|
split = math.floor(1.5*MAX_LINE)
|
|
|
|
chunk, remainder = sub(remainder, 1, split), sub(remainder, split+1, -1)
|
|
|
|
nomsu\append chunk
|
|
|
|
else
|
|
|
|
nomsu\append remainder
|
|
|
|
break
|
|
|
|
if #remainder > 0 then nomsu\append "\\\n .."
|
|
|
|
else
|
|
|
|
nomsu\append line
|
2018-05-16 19:08:16 -07:00
|
|
|
else
|
|
|
|
interp_nomsu = @tree_to_nomsu(bit, true)
|
|
|
|
if interp_nomsu
|
2018-06-13 14:53:47 -07:00
|
|
|
if bit.type != "Var" and bit.type != "List" and bit.type != "Dict" and bit.type != "Text"
|
2018-05-16 19:08:16 -07:00
|
|
|
interp_nomsu\parenthesize!
|
|
|
|
nomsu\append "\\", interp_nomsu
|
|
|
|
else
|
2018-06-12 23:47:43 -07:00
|
|
|
interp_nomsu = assert(@tree_to_nomsu(bit))
|
2018-05-16 19:08:16 -07:00
|
|
|
return nil unless interp_nomsu
|
|
|
|
nomsu\append "\\\n ", interp_nomsu
|
2018-06-12 23:47:43 -07:00
|
|
|
if i < #tree
|
2018-05-16 19:08:16 -07:00
|
|
|
nomsu\append "\n .."
|
|
|
|
return nomsu
|
|
|
|
|
|
|
|
when "List"
|
|
|
|
if inline
|
2018-05-26 15:04:31 -07:00
|
|
|
nomsu = Nomsu(tree.source, "[")
|
2018-06-04 17:56:09 -07:00
|
|
|
for i, item in ipairs tree
|
2018-05-16 19:08:16 -07:00
|
|
|
item_nomsu = @tree_to_nomsu(item, true)
|
|
|
|
return nil unless item_nomsu
|
|
|
|
if i > 1
|
|
|
|
nomsu\append ", "
|
|
|
|
nomsu\append item_nomsu
|
|
|
|
nomsu\append "]"
|
|
|
|
return nomsu
|
|
|
|
else
|
|
|
|
inline_version = @tree_to_nomsu(tree, true)
|
|
|
|
if inline_version and #inline_version <= MAX_LINE
|
|
|
|
return inline_version
|
2018-05-26 15:04:31 -07:00
|
|
|
nomsu = Nomsu(tree.source, "[..]")
|
|
|
|
line = Nomsu(tree.source, "\n ")
|
2018-06-04 17:56:09 -07:00
|
|
|
for item in *tree
|
2018-05-16 19:08:16 -07:00
|
|
|
item_nomsu = @tree_to_nomsu(item, true)
|
|
|
|
if item_nomsu and #line + #", " + #item_nomsu <= MAX_LINE
|
|
|
|
if #line.bits > 1
|
|
|
|
line\append ", "
|
|
|
|
line\append item_nomsu
|
|
|
|
else
|
|
|
|
unless item_nomsu
|
|
|
|
item_nomsu = @tree_to_nomsu(item)
|
|
|
|
return nil unless item_nomsu
|
|
|
|
if #line.bits > 1
|
|
|
|
nomsu\append line
|
2018-05-26 15:04:31 -07:00
|
|
|
line = Nomsu(line.source, "\n ")
|
2018-05-16 19:08:16 -07:00
|
|
|
line\append item_nomsu
|
|
|
|
if #line.bits > 1
|
|
|
|
nomsu\append line
|
|
|
|
return nomsu
|
|
|
|
|
|
|
|
when "Dict"
|
|
|
|
if inline
|
2018-05-26 15:04:31 -07:00
|
|
|
nomsu = Nomsu(tree.source, "{")
|
2018-06-04 17:56:09 -07:00
|
|
|
for i, entry in ipairs tree
|
2018-05-16 19:08:16 -07:00
|
|
|
entry_nomsu = @tree_to_nomsu(entry, true)
|
|
|
|
return nil unless entry_nomsu
|
|
|
|
if i > 1
|
|
|
|
nomsu\append ", "
|
|
|
|
nomsu\append entry_nomsu
|
|
|
|
nomsu\append "}"
|
|
|
|
return nomsu
|
|
|
|
else
|
|
|
|
inline_version = @tree_to_nomsu(tree, true)
|
|
|
|
if inline_version then return inline_version
|
2018-05-26 15:04:31 -07:00
|
|
|
nomsu = Nomsu(tree.source, "{..}")
|
|
|
|
line = Nomsu(tree.source, "\n ")
|
2018-06-04 17:56:09 -07:00
|
|
|
for entry in *tree
|
2018-05-16 19:08:16 -07:00
|
|
|
entry_nomsu = @tree_to_nomsu(entry)
|
|
|
|
return nil unless entry_nomsu
|
|
|
|
if #line + #tostring(entry_nomsu) <= MAX_LINE
|
|
|
|
if #line.bits > 1
|
|
|
|
line\append ", "
|
|
|
|
line\append entry_nomsu
|
|
|
|
else
|
|
|
|
if #line.bits > 1
|
|
|
|
nomsu\append line
|
2018-05-26 15:04:31 -07:00
|
|
|
line = Nomsu(line.source, "\n ")
|
2018-05-16 19:08:16 -07:00
|
|
|
line\append entry_nomsu
|
|
|
|
if #line.bits > 1
|
|
|
|
nomsu\append line
|
|
|
|
return nomsu
|
|
|
|
|
|
|
|
when "DictEntry"
|
2018-06-04 17:56:09 -07:00
|
|
|
key, value = tree[1], tree[2]
|
2018-05-16 19:08:16 -07:00
|
|
|
key_nomsu = @tree_to_nomsu(key, true)
|
|
|
|
return nil unless key_nomsu
|
|
|
|
if key.type == "Action" or key.type == "Block"
|
|
|
|
key_nomsu\parenthesize!
|
|
|
|
value_nomsu = if value
|
|
|
|
@tree_to_nomsu(value, true)
|
2018-05-26 15:04:31 -07:00
|
|
|
else Nomsu(tree.source, "")
|
2018-05-16 19:08:16 -07:00
|
|
|
if inline and not value_nomsu then return nil
|
|
|
|
if not value_nomsu
|
|
|
|
return nil if inline
|
|
|
|
value_nomsu = @tree_to_nomsu(value)
|
|
|
|
return nil unless value_nomsu
|
2018-05-26 15:04:31 -07:00
|
|
|
return Nomsu tree.source, key_nomsu, ":", value_nomsu
|
2018-05-16 19:08:16 -07:00
|
|
|
|
|
|
|
when "IndexChain"
|
2018-05-26 15:04:31 -07:00
|
|
|
nomsu = Nomsu(tree.source)
|
2018-06-04 17:56:09 -07:00
|
|
|
for i, bit in ipairs tree
|
2018-05-16 19:08:16 -07:00
|
|
|
if i > 1
|
|
|
|
nomsu\append "."
|
2018-06-15 03:30:20 -07:00
|
|
|
local bit_nomsu
|
|
|
|
if bit.type == "Text" and #bit == 1 and type(bit[1]) == 'string'
|
|
|
|
if (NOMSU_DEFS.ident_char^1)\match(bit[1])
|
|
|
|
bit_nomsu = bit[1]
|
|
|
|
unless bit_nomsu then bit_nomsu = @tree_to_nomsu(bit, true)
|
2018-05-16 19:08:16 -07:00
|
|
|
return nil unless bit_nomsu
|
2018-06-15 03:30:20 -07:00
|
|
|
switch bit.type
|
|
|
|
when "Action", "Block", "IndexChain"
|
|
|
|
bit_nomsu\parenthesize!
|
|
|
|
when "Number"
|
|
|
|
if i < #tree
|
|
|
|
bit_nomsu\parenthesize!
|
2018-05-16 19:08:16 -07:00
|
|
|
nomsu\append bit_nomsu
|
|
|
|
return nomsu
|
|
|
|
|
|
|
|
when "Number"
|
2018-06-12 18:04:18 -07:00
|
|
|
return Nomsu(tree.source, tostring(tree[1]))
|
2018-05-16 19:08:16 -07:00
|
|
|
|
|
|
|
when "Var"
|
2018-06-12 18:04:18 -07:00
|
|
|
return Nomsu(tree.source, "%", tree[1])
|
2018-05-16 19:08:16 -07:00
|
|
|
|
|
|
|
else
|
|
|
|
error("Unknown type: #{tree.type}")
|
2017-09-24 20:20:27 -07:00
|
|
|
|
2017-09-12 20:00:19 -07:00
|
|
|
initialize_core: =>
|
|
|
|
-- Sets up some core functionality
|
2018-01-12 16:33:11 -08:00
|
|
|
nomsu = self
|
2018-06-14 21:59:25 -07:00
|
|
|
with nomsu.environment
|
|
|
|
.A_immediately_1 = .compile_time (_block)=>
|
|
|
|
lua = nomsu\tree_to_lua(_block)\as_statements!
|
|
|
|
lua\declare_locals!
|
|
|
|
nomsu\run_lua(lua)
|
|
|
|
return Lua(_block.source, "if IMMEDIATE then\n ", lua, "\nend")
|
|
|
|
|
|
|
|
add_lua_string_bits = (lua, code)->
|
|
|
|
line_len = 0
|
|
|
|
if code.type != "Text"
|
|
|
|
lua\append ", ", nomsu\tree_to_lua(code)
|
|
|
|
return
|
|
|
|
for bit in *code
|
|
|
|
bit_lua = if type(bit) == "string"
|
|
|
|
repr(bit)
|
|
|
|
else
|
|
|
|
bit_lua = nomsu\tree_to_lua(bit)
|
|
|
|
unless bit_lua.is_value
|
|
|
|
compile_error bit,
|
|
|
|
"Cannot use:\n%s\nas a string interpolation value, since it's not an expression."
|
|
|
|
bit_lua
|
|
|
|
line_len += #tostring(bit_lua)
|
|
|
|
if line_len > MAX_LINE
|
|
|
|
lua\append ",\n "
|
|
|
|
line_len = 4
|
|
|
|
else
|
|
|
|
lua\append ", "
|
2018-04-11 20:05:12 -07:00
|
|
|
lua\append bit_lua
|
2018-06-14 21:59:25 -07:00
|
|
|
|
|
|
|
.A_Lua_1 = .compile_time (_code)=>
|
|
|
|
lua = Lua.Value(_code.source, "Lua(", repr(tostring _code.source))
|
|
|
|
add_lua_string_bits(lua, _code)
|
|
|
|
lua\append ")"
|
|
|
|
return lua
|
|
|
|
|
|
|
|
.A_Lua_value_1 = .compile_time (_code)=>
|
|
|
|
lua = Lua.Value(_code.source, "Lua.Value(", repr(tostring _code.source))
|
|
|
|
add_lua_string_bits(lua, _code)
|
|
|
|
lua\append ")"
|
|
|
|
return lua
|
|
|
|
|
|
|
|
add_lua_bits = (lua, code)->
|
|
|
|
for bit in *code
|
|
|
|
if type(bit) == "string"
|
|
|
|
lua\append bit
|
|
|
|
else
|
|
|
|
bit_lua = nomsu\tree_to_lua(bit)
|
|
|
|
unless bit_lua.is_value
|
|
|
|
compile_error bit,
|
|
|
|
"Cannot use:\n%s\nas a string interpolation value, since it's not an expression."
|
|
|
|
lua\append bit_lua
|
|
|
|
return lua
|
|
|
|
|
|
|
|
nomsu.environment["A"..string.as_lua_id("lua > 1")] = .compile_time (_code)=>
|
|
|
|
if _code.type != "Text"
|
|
|
|
return Lua @source, "nomsu:run_lua(", nomsu\tree_to_lua(_code), ");"
|
|
|
|
return add_lua_bits(Lua(@source), _code)
|
|
|
|
|
|
|
|
nomsu.environment["A"..string.as_lua_id("= lua 1")] = .compile_time (_code)=>
|
|
|
|
if _code.type != "Text"
|
|
|
|
return Lua.Value @source, "nomsu:run_lua(", nomsu\tree_to_lua(_code), ":as_statements('return '))"
|
|
|
|
return add_lua_bits(Lua.Value(@source), _code)
|
|
|
|
|
|
|
|
.A_use_1 = .compile_time (_path)=>
|
|
|
|
unless _path.type == 'Text' and #_path == 1 and type(_path[1]) == 'string'
|
|
|
|
return Lua(_path.source, "nomsu:run_file(#{nomsu\tree_to_lua(_path)});")
|
|
|
|
path = _path[1]
|
|
|
|
nomsu\run_file(path)
|
|
|
|
return Lua(_path.source, "nomsu:run_file(#{repr path});")
|
2017-09-12 20:00:19 -07:00
|
|
|
|
2018-01-30 16:40:05 -08:00
|
|
|
-- Only run this code if this file was run directly with command line arguments, and not require()'d:
|
2018-04-08 18:23:46 -07:00
|
|
|
if arg and debug_getinfo(2).func != require
|
2017-10-08 20:41:05 -07:00
|
|
|
export colors
|
|
|
|
colors = require 'consolecolors'
|
2017-10-08 18:23:48 -07:00
|
|
|
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) :}
|
|
|
|
/ {:optimized: ("-O" -> true) :}
|
|
|
|
/ {:format: ("-f" -> true) :}
|
|
|
|
/ {:syntax: ("-s" -> true) :}
|
|
|
|
/ {:print_file: "-p" ";" {file} :}
|
2018-06-15 03:11:38 -07:00
|
|
|
/ {:compile: ("-c" -> true) :}
|
|
|
|
/ {:verbose: ("-v" -> true) :}
|
2018-04-28 19:16:39 -07:00
|
|
|
/ {:help: (("-h" / "--help") -> true) :}
|
2018-04-28 17:08:28 -07:00
|
|
|
file <- "-" / [^;]+
|
2018-04-28 19:16:39 -07:00
|
|
|
]], {true: -> true})
|
2017-10-08 18:23:48 -07:00
|
|
|
args = concat(arg, ";")..";"
|
2018-04-28 19:16:39 -07:00
|
|
|
args = parser\match(args)
|
|
|
|
if not args or args.help
|
2018-04-28 17:08:28 -07:00
|
|
|
print [=[
|
|
|
|
Nomsu Compiler
|
|
|
|
|
2018-06-15 03:11:38 -07:00
|
|
|
Usage: (lua nomsu.lua | moon nomsu.moon) [-i] [-O] [-v] [-c] [-f] [-s] [--help] [-p print_file] file1 file2... [-- nomsu args...]
|
2018-04-28 17:08:28 -07:00
|
|
|
|
|
|
|
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)
|
2018-06-15 03:11:38 -07:00
|
|
|
-v Verbose: print compiled lua code
|
|
|
|
-c Compile .nom files into .lua files
|
2018-04-28 17:08:28 -07:00
|
|
|
-f Auto-format the given Nomsu file and print the result.
|
|
|
|
-s Check the program for syntax errors.
|
|
|
|
-h/--help Print this message.
|
|
|
|
-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.
|
2018-04-28 17:08:28 -07:00
|
|
|
]=]
|
2017-10-08 18:23:48 -07:00
|
|
|
os.exit!
|
2017-09-12 20:00:19 -07:00
|
|
|
|
2018-04-17 14:47:28 -07:00
|
|
|
nomsu = NomsuCompiler!
|
2018-05-03 16:30:55 -07:00
|
|
|
nomsu.environment.arg = args.nomsu_args
|
2018-04-08 18:23:46 -07:00
|
|
|
|
|
|
|
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])
|
2018-04-08 18:23:46 -07:00
|
|
|
self[filename] = line_table
|
|
|
|
return line_table
|
|
|
|
}
|
|
|
|
|
2018-04-18 17:41:40 -07:00
|
|
|
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)
|
2018-04-08 18:23:46 -07:00
|
|
|
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
|
2018-05-29 18:10:30 -07:00
|
|
|
if arg_orders = nomsu.environment.ARG_ORDERS[info.func]
|
|
|
|
info.name = next(arg_orders)
|
2018-05-29 16:14:53 -07:00
|
|
|
if map = nomsu.source_map[info.source]
|
|
|
|
if info.currentline
|
2018-05-29 17:10:44 -07:00
|
|
|
info.currentline = assert(map[info.currentline])
|
2018-05-29 16:14:53 -07:00
|
|
|
if info.linedefined
|
2018-05-29 17:10:44 -07:00
|
|
|
info.linedefined = assert(map[info.linedefined])
|
2018-05-29 16:14:53 -07:00
|
|
|
if info.lastlinedefined
|
2018-05-29 17:10:44 -07:00
|
|
|
info.lastlinedefined = assert(map[info.lastlinedefined])
|
2018-05-30 17:20:22 -07:00
|
|
|
--info.short_src = info.source\match('@([^[]*)')
|
2018-04-08 18:23:46 -07:00
|
|
|
return info
|
|
|
|
|
2018-05-29 18:10:30 -07:00
|
|
|
print_err_msg = (error_message, stack_offset=3)->
|
2018-04-28 18:07:14 -07:00
|
|
|
io.stderr\write("#{colored.red "ERROR:"} #{colored.bright colored.red (error_message or "")}\n")
|
|
|
|
io.stderr\write("stack traceback:\n")
|
2018-01-11 01:03:52 -08:00
|
|
|
|
2018-01-25 17:34:49 -08:00
|
|
|
-- TODO: properly print out the calling site of nomsu code, not just the *called* code
|
2018-01-27 16:39:56 -08:00
|
|
|
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"]
|
2018-05-29 18:10:30 -07:00
|
|
|
LINE_TABLES = setmetatable {},
|
|
|
|
__index: (file)=>
|
|
|
|
_, line_table = to_lua(file)
|
|
|
|
self[file] = line_table or false
|
|
|
|
return line_table or false
|
|
|
|
|
|
|
|
get_line = (file, line_no)->
|
|
|
|
start = LINE_STARTS[file][line_no] or 1
|
|
|
|
stop = (LINE_STARTS[file][line_no+1] or 0) - 1
|
|
|
|
return file\sub(start, stop)
|
2018-01-11 01:03:52 -08:00
|
|
|
|
2018-04-28 18:07:14 -07:00
|
|
|
level = stack_offset
|
2018-01-11 01:03:52 -08:00
|
|
|
while true
|
2018-04-08 18:23:46 -07:00
|
|
|
-- TODO: reduce duplicate code
|
|
|
|
calling_fn = debug_getinfo(level)
|
2018-01-11 01:03:52 -08:00
|
|
|
if not calling_fn then break
|
|
|
|
if calling_fn.func == run then break
|
|
|
|
level += 1
|
2018-05-29 19:10:03 -07:00
|
|
|
name = calling_fn.name and "function '#{calling_fn.name}'" or nil
|
2018-05-29 18:10:30 -07:00
|
|
|
if calling_fn.linedefined == 0 then name = "main chunk"
|
2018-01-11 01:03:52 -08:00
|
|
|
if name == "run_lua_fn" then continue
|
|
|
|
line = nil
|
2018-05-29 18:10:30 -07:00
|
|
|
if map = nomsu.source_map[calling_fn.source]
|
|
|
|
if calling_fn.currentline
|
|
|
|
calling_fn.currentline = assert(map[calling_fn.currentline])
|
|
|
|
if calling_fn.linedefined
|
|
|
|
calling_fn.linedefined = assert(map[calling_fn.linedefined])
|
|
|
|
if calling_fn.lastlinedefined
|
|
|
|
calling_fn.lastlinedefined = assert(map[calling_fn.lastlinedefined])
|
2018-05-30 17:20:22 -07:00
|
|
|
--calling_fn.short_src = calling_fn.source\match('"([^[]*)')
|
|
|
|
filename,start,stop = calling_fn.source\match('@([^[]*)%[([0-9]+):([0-9]+)]')
|
2018-05-29 18:10:30 -07:00
|
|
|
assert(filename)
|
|
|
|
file = FILE_CACHE[filename]\sub(tonumber(start),tonumber(stop))
|
|
|
|
err_line = get_line(file, calling_fn.currentline)\sub(1,-2)
|
2018-05-29 19:10:03 -07:00
|
|
|
offending_statement = colored.bright(colored.red(err_line\match("^[ ]*(.*)")))
|
2018-05-29 18:10:30 -07:00
|
|
|
if arg_orders = nomsu.environment.ARG_ORDERS[calling_fn.func]
|
2018-05-29 19:10:03 -07:00
|
|
|
name = "action '#{next(arg_orders)}'"
|
2018-01-25 17:34:49 -08:00
|
|
|
else
|
2018-05-29 19:10:03 -07:00
|
|
|
name = "main chunk"
|
|
|
|
line = colored.yellow("#{filename}:#{calling_fn.currentline} in #{name}\n #{offending_statement}")
|
2018-01-11 01:03:52 -08:00
|
|
|
else
|
2018-05-29 18:10:30 -07:00
|
|
|
ok, file = pcall ->FILE_CACHE[calling_fn.short_src]
|
|
|
|
if not ok then file = nil
|
|
|
|
local line_num
|
2018-05-29 19:10:03 -07:00
|
|
|
if name == nil
|
|
|
|
search_level = level
|
|
|
|
_info = debug.getinfo(search_level)
|
|
|
|
while _info and (_info.func == pcall or _info.func == xpcall)
|
|
|
|
search_level += 1
|
|
|
|
_info = debug.getinfo(search_level)
|
|
|
|
if _info
|
|
|
|
for i=1,999
|
|
|
|
varname, val = debug.getlocal(search_level, i)
|
|
|
|
if not varname then break
|
|
|
|
if val == calling_fn.func
|
|
|
|
name = "local '#{varname}'"
|
|
|
|
if not varname\match("%(")
|
|
|
|
break
|
|
|
|
unless name
|
|
|
|
for i=1,_info.nups
|
|
|
|
varname, val = debug.getupvalue(_info.func, i)
|
|
|
|
if not varname then break
|
|
|
|
if val == calling_fn.func
|
|
|
|
name = "upvalue '#{varname}'"
|
|
|
|
if not varname\match("%(")
|
|
|
|
break
|
2018-05-29 18:10:30 -07:00
|
|
|
if file and calling_fn.short_src\match(".moon$") and LINE_TABLES[file]
|
|
|
|
char = LINE_TABLES[file][calling_fn.currentline]
|
2018-01-19 17:29:44 -08:00
|
|
|
line_num = 1
|
2018-05-29 18:10:30 -07:00
|
|
|
for _ in file\sub(1,char)\gmatch("\n") do line_num += 1
|
2018-05-29 19:10:03 -07:00
|
|
|
line = colored.cyan("#{calling_fn.short_src}:#{line_num} in #{name or '?'}")
|
2018-01-11 01:03:52 -08:00
|
|
|
else
|
2018-05-29 18:10:30 -07:00
|
|
|
line_num = calling_fn.currentline
|
2018-05-29 19:10:03 -07:00
|
|
|
if calling_fn.short_src == '[C]'
|
|
|
|
line = colored.green("#{calling_fn.short_src} in #{name or '?'}")
|
|
|
|
else
|
|
|
|
line = colored.blue("#{calling_fn.short_src}:#{calling_fn.currentline} in #{name or '?'}")
|
2018-05-29 18:10:30 -07:00
|
|
|
|
|
|
|
if file
|
|
|
|
err_line = get_line(file, line_num)\sub(1,-2)
|
2018-05-29 19:10:03 -07:00
|
|
|
offending_statement = colored.bright(colored.red(err_line\match("^[ ]*(.*)$")))
|
|
|
|
line ..= "\n "..offending_statement
|
|
|
|
io.stderr\write(" #{line}\n")
|
|
|
|
if calling_fn.istailcall
|
|
|
|
io.stderr\write(" #{colored.dim colored.white " (...tail calls...)"}\n")
|
2018-05-29 18:10:30 -07:00
|
|
|
|
2018-04-28 18:07:14 -07:00
|
|
|
io.stderr\flush!
|
|
|
|
|
|
|
|
run = ->
|
|
|
|
|
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 18:07:14 -07:00
|
|
|
|
|
|
|
print_file = if args.print_file == "-" then io.stdout
|
|
|
|
elseif args.print_file then io.open(args.print_file, 'w')
|
|
|
|
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!
|
|
|
|
|
2018-06-15 03:11:38 -07:00
|
|
|
input_files = {}
|
|
|
|
to_run = {}
|
|
|
|
for input in *args.inputs
|
|
|
|
for f in all_files(input)
|
|
|
|
input_files[#input_files+1] = f
|
|
|
|
to_run[f] = true
|
|
|
|
|
|
|
|
nomsu.compile_fn = if args.compile or args.verbose
|
|
|
|
(code, from_file)->
|
|
|
|
if to_run[from_file]
|
|
|
|
if args.verbose
|
|
|
|
io.write(tostring(code), "\n")
|
|
|
|
if args.compile and from_file\match("%.nom$")
|
|
|
|
output_filename = from_file\gsub("%.nom$", ".lua")
|
|
|
|
output_file = io.open(output_filename, 'w')
|
|
|
|
output_file\write("local IMMEDIATE = true;\n", tostring(code))
|
|
|
|
output_file\flush!
|
|
|
|
print ("Compiled %-25s -> %s")\format(from_file, output_filename)
|
|
|
|
output_file\close!
|
2018-05-03 21:56:07 -07:00
|
|
|
else nil
|
2018-04-28 19:16:39 -07:00
|
|
|
|
2018-05-03 16:30:55 -07:00
|
|
|
parse_errs = {}
|
2018-06-15 03:11:38 -07:00
|
|
|
for filename in *input_files
|
2018-04-28 19:16:39 -07:00
|
|
|
if args.syntax
|
2018-04-28 18:07:14 -07:00
|
|
|
-- Check syntax:
|
2018-06-15 03:11:38 -07:00
|
|
|
ok,err = pcall nomsu.parse, nomsu, Nomsu(filename, io.open(filename)\read("*a"))
|
|
|
|
if not ok
|
|
|
|
insert parse_errs, err
|
|
|
|
elseif print_file
|
|
|
|
print_file\write("Parse succeeded: #{filename}\n")
|
|
|
|
print_file\flush!
|
2018-04-28 19:16:39 -07:00
|
|
|
elseif args.format
|
2018-04-28 18:07:14 -07:00
|
|
|
-- Auto-format
|
2018-06-15 03:11:38 -07:00
|
|
|
file = FILE_CACHE[filename]
|
|
|
|
if not file
|
|
|
|
error("File does not exist: #{filename}", 0)
|
|
|
|
tree = nomsu\parse(Nomsu(Source(filename,1,#file), file))
|
|
|
|
formatted = tostring(nomsu\tree_to_nomsu(tree))
|
|
|
|
if print_file
|
|
|
|
print_file\write(formatted, "\n")
|
|
|
|
print_file\flush!
|
|
|
|
elseif filename == STDIN
|
2018-06-05 16:44:36 -07:00
|
|
|
file = io.input!\read("*a")
|
|
|
|
FILE_CACHE.stdin = file
|
2018-06-15 03:11:38 -07:00
|
|
|
nomsu\run(Nomsu(Source('stdin',1,#file), file))
|
2018-04-28 18:07:14 -07:00
|
|
|
else
|
2018-06-15 03:11:38 -07:00
|
|
|
nomsu\run_file(filename)
|
2018-04-28 18:07:14 -07:00
|
|
|
|
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
|
2018-04-28 18:07:14 -07:00
|
|
|
-- REPL
|
2018-06-15 03:11:38 -07:00
|
|
|
for repl_line=1,math.huge
|
2018-04-28 18:07:14 -07:00
|
|
|
io.write(colored.bright colored.yellow ">> ")
|
2018-06-15 03:11:38 -07:00
|
|
|
buff = {}
|
2018-04-28 18:07:14 -07:00
|
|
|
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", " ")
|
2018-06-15 03:11:38 -07:00
|
|
|
insert buff, line
|
2018-04-28 18:07:14 -07:00
|
|
|
io.write(colored.dim colored.yellow ".. ")
|
|
|
|
if #buff == 0
|
|
|
|
break -- Exit
|
2018-06-15 03:11:38 -07:00
|
|
|
|
|
|
|
buff = concat(buff)
|
|
|
|
FILE_CACHE["REPL#"..repl_line] = buff
|
|
|
|
code = Nomsu(Source("REPL#"..repl_line, 1, #buff), buff)
|
|
|
|
err_hand = (error_message)->
|
|
|
|
print_err_msg error_message
|
|
|
|
ok, ret = xpcall(nomsu.run, err_hand, nomsu, code)
|
2018-04-28 18:07:14 -07:00
|
|
|
if ok and ret != nil
|
|
|
|
print "= "..repr(ret)
|
|
|
|
elseif not ok
|
|
|
|
print_err_msg ret
|
|
|
|
|
|
|
|
err_hand = (error_message)->
|
|
|
|
print_err_msg error_message
|
2018-01-11 01:03:52 -08:00
|
|
|
os.exit(false, true)
|
|
|
|
|
2018-01-19 17:29:44 -08:00
|
|
|
-- Note: xpcall has a slightly different API in Lua <=5.1 vs. >=5.2, but this works
|
|
|
|
-- for both APIs
|
2018-04-08 15:41:05 -07:00
|
|
|
-- TODO: revert back to old error handler
|
2018-04-20 14:33:49 -07:00
|
|
|
|
2018-05-14 14:45:38 -07:00
|
|
|
--require('ProFi')\profile "scratch/profile.txt", (profi)->
|
|
|
|
do
|
|
|
|
ok, ldt = pcall(require,'ldt')
|
2018-05-29 19:23:28 -07:00
|
|
|
if ok
|
2018-05-14 14:45:38 -07:00
|
|
|
ldt.guard run
|
|
|
|
else xpcall(run, err_hand)
|
2017-09-12 20:00:19 -07:00
|
|
|
|
2017-09-13 16:22:04 -07:00
|
|
|
return NomsuCompiler
|