2017-09-12 21:38:54 -07:00
local re = require ( ' re ' )
local lpeg = require ( ' lpeg ' )
local utils = require ( ' utils ' )
2017-09-21 21:11:13 -07:00
local repr = utils.repr
local insert , remove , concat
do
local _obj_0 = table
insert , remove , concat = _obj_0.insert , _obj_0.remove , _obj_0.concat
end
local pcall
pcall = function ( fn , ... )
return true , fn ( ... )
end
2017-09-12 21:38:54 -07:00
local INDENT = " "
lpeg.setmaxstack ( 10000 )
local P , V , S , Cg , C , Cp , B , Cmt
P , V , S , Cg , C , Cp , B , Cmt = lpeg.P , lpeg.V , lpeg.S , lpeg.Cg , lpeg.C , lpeg.Cp , lpeg.B , lpeg.Cmt
2017-09-21 04:51:02 -07:00
local STRING_ESCAPES = {
n = " \n " ,
t = " \t " ,
b = " \b " ,
a = " \a " ,
v = " \v " ,
f = " \f " ,
r = " \r "
}
2017-09-21 21:11:13 -07:00
local parsetree_mt = {
__tostring = function ( self )
return tostring ( self.type ) .. " ( " .. tostring ( repr ( self.value ) ) .. " ) "
end
}
local ParseTree
ParseTree = function ( type , src , value , errors )
return setmetatable ( {
type = type ,
src = src ,
value = value ,
errors = errors
} , parsetree_mt )
end
local functiondef_mt = {
__tostring = function ( self )
return " FunctionDef( " .. tostring ( repr ( self.aliases ) )
end
}
local FunctionDef
FunctionDef = function ( fn , aliases , src , is_macro )
return setmetatable ( {
fn = fn ,
aliases = aliases ,
src = src ,
is_macro = is_macro
} , functiondef_mt )
end
2017-09-22 00:03:32 -07:00
local indent_stack = {
0
}
local check_indent
check_indent = function ( subject , end_pos , spaces )
if # spaces > indent_stack [ # indent_stack ] then
insert ( indent_stack , # spaces )
return end_pos
end
end
local check_dedent
check_dedent = function ( subject , end_pos , spaces )
if # spaces < indent_stack [ # indent_stack ] then
remove ( indent_stack )
return end_pos
end
end
local check_nodent
check_nodent = function ( subject , end_pos , spaces )
if # spaces == indent_stack [ # indent_stack ] then
return end_pos
end
end
local nomsu = [ = [ file <- ( { { | shebang ? { : body : block : } % nl * ( ( { . + } ( " " -> " Unexpected end of file " ) ) => error ) ? | } } ) -> File
shebang <- " #! " [ ^% nl ] * % nl
block <- ( { { |
( ignored_line % nl ) *
line_of_statements ( nodent line_of_statements ) *
( % nl ignored_line ) * | } } ) -> Block
inline_block <- ( { { | inline_line_of_statements | } } ) -> Block
line_of_statements <- statement ( % ws ? " ; " % ws ? statement ) *
inline_line_of_statements <- inline_statement ( % ws ? " ; " % ws ? inline_statement ) *
statement <- ( { functioncall / expression } ) -> Statement
inline_statement <- ( { inline_functioncall / expression } ) -> Statement
expression <- (
longstring / string / number / variable / list / thunk / block_functioncall
/ ( " ( " % ws ? ( inline_thunk / inline_functioncall ) % ws ? " ) " ) )
-- Function calls need at least one word in them
functioncall <- ( { { |
( expression ( dotdot / tok_gap ) ) * word ( ( dotdot / tok_gap ) ( expression / word ) ) *
| } } ) -> FunctionCall
inline_functioncall <- ( { { |
( expression tok_gap ) * word ( tok_gap ( expression / word ) ) *
| } } ) -> FunctionCall
block_functioncall <- " (..) " indent
functioncall
( dedent / ( ( { . + } ( " " -> " Error while parsing block function call " ) ) => error ) )
word <- ( { ! number { % wordchar ( ! " ' " % wordchar ) * } } ) -> Word
thunk <- ( { " : " ( ( indent block ( dedent / ( ( { . + } ( " " -> " Error while parsing thunk " ) ) => error ) ) )
/ ( % ws ? inline_block ) ) } ) -> Thunk
inline_thunk <- ( { " : " % ws ? inline_block } ) -> Thunk
string <- ( { ( ! longstring ) ' " ' { ( ( " \" [^%nl]) / [^ " % nl ] ) * } ' " ' } ) -> String
longstring <- ( { ' ".." ' % ws ?
{ | ( longstring_line ( indent
longstring_line ( nodent longstring_line ) *
( dedent / longstring_error ) ) ? )
/ ( indent
longstring_line ( nodent longstring_line ) *
( dedent / longstring_error ) ) | } } ) -> Longstring
longstring_line <- " | " { | ( { ( " \\ " / ( ! string_interpolation [ ^% nl ] ) ) + } / string_interpolation ) * | }
longstring_error <- ( ( { . + } ( " " -> " Error while parsing Longstring " ) ) => error )
string_interpolation <- " \" %ws? (((inline_functioncall / expression) dotdot?) / dotdot) %ws? " \ "
number <- ( { { " - " ? ( ( [ 0 - 9 ] + " . " [ 0 - 9 ] + ) / ( " . " [ 0 - 9 ] + ) / ( [ 0 - 9 ] + ) ) } } ) -> Number
-- Hack to allow %foo's to parse as "%foo" and "'s" separately
variable <- ( { ( " % " { % wordchar ( ! " ' " % wordchar ) * } ) } ) -> Var
list <- ( { { |
( " [..] " indent
list_line ( nodent list_line ) *
( dedent / ( ( { . + } ( " " -> " Error while parsing list " ) ) => error ) ) )
/ ( " [ " % ws ? ( list_line % ws ? ) ? " ] " )
| } } ) -> List
list_line <- list_bit ( % ws ? " , " tok_gap list_bit ) * ( % ws ? " , " ) ?
list_bit <- inline_functioncall / expression
block_comment <- " #.. " [ ^% nl ] * indent [ ^% nl ] * ( % nl ( ( % ws ? ( ! . / &% nl ) ) / ( ! % dedented [ ^% nl ] * ) ) ) *
line_comment <- " # " [ ^% nl ] *
eol <- % ws ? line_comment ? ( ! . / &% nl )
ignored_line <- ( % nodented ( block_comment / line_comment ) ) / ( % ws ? ( ! . / &% nl ) )
indent <- eol ( % nl ignored_line ) * % nl % indented
nodent <- eol ( % nl ignored_line ) * % nl % nodented
dedent <- eol ( % nl ignored_line ) * ( ( ( ! . ) &% dedented ) / ( & ( % nl % dedented ) ) )
tok_gap <- % ws / % prev_edge / & ( " [ " / [ . , : ; { ( " #%'])
dotdot <- nodent " .. " % ws ?
] = ]
local whitespace = S ( " \t " ) ^ 1
local defs = {
ws = whitespace ,
nl = P ( " \n " ) ,
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 ) ,
prev_edge = B ( S ( " \t \n .,:;}]) \" " ) ) ,
error = function ( src , pos , errors , err_msg )
local line_no = 1
for _ in src : sub ( 1 , -# errors ) : gmatch ( " \n " ) do
line_no = line_no + 1
end
local err_pos = # src - # errors + 1
if errors : sub ( 1 , 1 ) == " \n " then
err_pos = err_pos + # errors : match ( " [ \t ]* " , 2 )
end
local start_of_err_line = err_pos
while src : sub ( start_of_err_line , start_of_err_line ) ~= " \n " and start_of_err_line > 1 do
start_of_err_line = start_of_err_line - 1
end
local 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 do
start_of_prev_line = start_of_prev_line - 1
end
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 )
local pointer = ( " - " ) : rep ( err_pos - start_of_err_line + 0 ) .. " ^ "
return error ( " \n " .. tostring ( err_msg or " Parse error " ) .. " in " .. tostring ( filename ) .. " on line " .. tostring ( line_no ) .. " : \n \n " .. tostring ( prev_line ) .. " \n " .. tostring ( err_line ) .. " \n " .. tostring ( pointer ) .. " \n " .. tostring ( next_line ) .. " \n " )
end
}
setmetatable ( defs , {
__index = function ( t , key )
local fn
fn = function ( src , value , errors )
return ParseTree ( key , src , value , errors )
end
t [ key ] = fn
return fn
end
} )
nomsu = re.compile ( nomsu , defs )
2017-09-13 16:22:04 -07:00
local NomsuCompiler
2017-09-12 21:38:54 -07:00
do
local _class_0
local _base_0 = {
2017-09-14 21:03:42 -07:00
writeln = function ( self , ... )
self : write ( ... )
return self : write ( " \n " )
end ,
2017-09-21 21:11:13 -07:00
def = function ( self , aliases , fn , src , is_macro )
if is_macro == nil then
is_macro = false
2017-09-12 21:38:54 -07:00
end
2017-09-21 21:11:13 -07:00
if type ( aliases ) == ' string ' then
aliases = self : get_aliases ( aliases )
2017-09-12 21:38:54 -07:00
end
if self.debug then
2017-09-21 21:11:13 -07:00
self : writeln ( " Defining rule: " .. tostring ( aliases ) )
2017-09-12 21:38:54 -07:00
end
2017-09-21 21:11:13 -07:00
local fn_def = FunctionDef ( fn , { } , src , is_macro )
return self : add_aliases ( aliases , fn_def )
2017-09-12 21:38:54 -07:00
end ,
2017-09-21 21:11:13 -07:00
defmacro = function ( self , aliases , fn , src )
return self : def ( aliases , fn , src , true )
2017-09-12 21:38:54 -07:00
end ,
2017-09-21 21:11:13 -07:00
add_aliases = function ( self , aliases , fn_def )
local first_alias , first_args = next ( fn_def.aliases )
if not first_alias then
first_alias , first_args = next ( aliases )
2017-09-12 21:38:54 -07:00
end
2017-09-21 21:11:13 -07:00
for alias , args in pairs ( aliases ) do
2017-09-20 04:21:46 -07:00
local _continue_0 = false
repeat
2017-09-21 21:11:13 -07:00
if fn_def [ alias ] then
2017-09-20 04:21:46 -07:00
_continue_0 = true
break
end
2017-09-21 21:11:13 -07:00
if self.defs [ alias ] then
self : remove_alias ( alias )
2017-09-18 22:41:50 -07:00
end
2017-09-21 21:11:13 -07:00
if alias ~= first_alias and not utils.equivalent ( utils.set ( args ) , utils.set ( first_args ) ) then
self : error ( " Conflicting argument names between " .. tostring ( first_alias ) .. " and " .. tostring ( alias ) )
2017-09-20 04:21:46 -07:00
end
2017-09-21 21:11:13 -07:00
fn_def.aliases [ alias ] = args
self.defs [ alias ] = fn_def
2017-09-20 04:21:46 -07:00
_continue_0 = true
until true
if not _continue_0 then
break
2017-09-18 22:41:50 -07:00
end
end
end ,
2017-09-21 21:11:13 -07:00
remove_alias = function ( self , alias )
local fn_def = self.defs [ alias ]
if not fn_def then
return
2017-09-18 22:41:50 -07:00
end
2017-09-21 21:11:13 -07:00
fn_def.aliases [ alias ] = nil
self.defs [ alias ] = nil
end ,
remove_aliases = function ( self , aliases )
for alias in pairs ( aliases ) do
self : remove_alias ( alias )
2017-09-18 22:41:50 -07:00
end
2017-09-21 21:11:13 -07:00
end ,
get_fn_def = function ( self , x )
if not x then
self : error ( " Nothing to get function def from " )
2017-09-12 21:38:54 -07:00
end
2017-09-21 21:11:13 -07:00
local aliases = self : get_aliases ( x )
local alias , _ = next ( aliases )
return self.defs [ alias ]
end ,
call = function ( self , alias , ... )
local fn_def = self.defs [ alias ]
if fn_def == nil then
self : error ( " Attempt to call undefined function: " .. tostring ( alias ) )
end
if fn_def.is_macro and self.callstack [ # self.callstack ] ~= " __macro__ " then
self : error ( " Attempt to call macro at runtime: " .. tostring ( alias ) .. " \n This can be caused by using a macro in a function that is defined before the macro. " )
end
if not ( self : check_permission ( alias ) ) then
self : error ( " You do not have the authority to call: " .. tostring ( alias ) )
end
insert ( self.callstack , alias )
local fn , aliases
fn , aliases = fn_def.fn , fn_def.aliases
local args
do
local _tbl_0 = { }
for i , name in ipairs ( aliases [ alias ] ) do
_tbl_0 [ name ] = select ( i , ... )
end
args = _tbl_0
end
if self.debug then
self : writeln ( " Calling " .. tostring ( alias ) .. " with args: " .. tostring ( repr ( args ) ) )
end
local rets = {
fn ( self , args )
}
remove ( self.callstack )
return unpack ( rets )
end ,
run_macro = function ( self , tree , kind )
if kind == nil then
kind = " Expression "
end
local args
do
local _accum_0 = { }
local _len_0 = 1
local _list_0 = tree.value
for _index_0 = 1 , # _list_0 do
local a = _list_0 [ _index_0 ]
if a.type ~= " Word " then
_accum_0 [ _len_0 ] = a
2017-09-12 21:38:54 -07:00
_len_0 = _len_0 + 1
end
end
2017-09-21 21:11:13 -07:00
args = _accum_0
2017-09-12 21:38:54 -07:00
end
2017-09-21 21:11:13 -07:00
local alias , _ = self : get_alias ( tree )
insert ( self.callstack , " __macro__ " )
local ret , manual_mode = self : call ( alias , unpack ( args ) )
remove ( self.callstack )
if not ret then
self : error ( " No return value for macro: " .. tostring ( name ) )
2017-09-18 17:08:35 -07:00
end
2017-09-21 21:11:13 -07:00
if kind == " Statement " and not manual_mode then
if ret : match ( " ^do \n " ) then
error ( " Attempting to use macro return value as an expression, when it looks like a block: \n " .. tostring ( ret ) )
2017-09-21 13:30:59 -07:00
end
2017-09-21 21:11:13 -07:00
ret = " ret = " .. ret
2017-09-21 13:30:59 -07:00
end
2017-09-21 21:11:13 -07:00
return ret
end ,
check_permission = function ( self , fn_name )
local fn_def = self.defs [ fn_name ]
if fn_def == nil then
self : error ( " Undefined function: " .. tostring ( fn_name ) )
2017-09-12 21:38:54 -07:00
end
2017-09-21 21:11:13 -07:00
if fn_def.whiteset == nil then
return true
end
local _list_0 = self.callstack
for _index_0 = 1 , # _list_0 do
local caller = _list_0 [ _index_0 ]
if fn_def.whiteset [ caller ] then
return true
end
end
return false
2017-09-12 21:38:54 -07:00
end ,
2017-09-20 04:21:46 -07:00
parse = function ( self , str , filename )
2017-09-12 21:38:54 -07:00
if self.debug then
2017-09-14 21:03:42 -07:00
self : writeln ( " PARSING: \n " .. tostring ( str ) )
2017-09-12 21:38:54 -07:00
end
2017-09-22 00:03:32 -07:00
str = str : gsub ( " \r " , " " ) .. " \n "
local old_indent_stack
old_indent_stack , indent_stack = indent_stack , {
2017-09-20 04:21:46 -07:00
0
}
2017-09-22 00:03:32 -07:00
local tree = nomsu : match ( str )
indent_stack = old_indent_stack
2017-09-12 21:38:54 -07:00
if self.debug then
2017-09-14 21:03:42 -07:00
self : writeln ( " \n PARSE TREE: " )
2017-09-12 21:38:54 -07:00
self : print_tree ( tree )
end
assert ( tree , " Failed to parse: " .. tostring ( str ) )
return tree
end ,
2017-09-14 02:41:10 -07:00
tree_to_value = function ( self , tree , vars )
2017-09-18 12:34:10 -07:00
local code = " \n return (function(compiler, vars) \n return " .. tostring ( self : tree_to_lua ( tree ) ) .. " \n end) "
2017-09-12 21:38:54 -07:00
local lua_thunk , err = load ( code )
if not lua_thunk then
error ( " Failed to compile generated code: \n " .. tostring ( code ) .. " \n \n " .. tostring ( err ) )
end
2017-09-14 02:41:10 -07:00
return ( lua_thunk ( ) ) ( self , vars or { } )
2017-09-12 21:38:54 -07:00
end ,
2017-09-21 04:04:08 -07:00
tree_to_lua = function ( self , tree )
2017-09-12 21:38:54 -07:00
assert ( tree , " No tree provided. " )
2017-09-20 04:21:46 -07:00
if not tree.type then
2017-09-21 21:11:13 -07:00
self : error ( " Invalid tree: " .. tostring ( repr ( tree ) ) )
2017-09-20 04:21:46 -07:00
end
2017-09-12 21:38:54 -07:00
local _exp_0 = tree.type
if " File " == _exp_0 then
2017-09-21 04:51:02 -07:00
local buffer = {
[ [ return ( function ( compiler , vars )
local ret ] ]
}
2017-09-12 21:38:54 -07:00
local vars = { }
local _list_0 = tree.value . body.value
for _index_0 = 1 , # _list_0 do
local statement = _list_0 [ _index_0 ]
2017-09-21 04:51:02 -07:00
local ok , code = pcall ( self.tree_to_lua , self , statement )
2017-09-21 00:10:26 -07:00
if not ok then
self : writeln ( " Error occurred in statement: \n " .. tostring ( statement.src ) )
error ( code )
end
2017-09-18 12:34:10 -07:00
local lua_code = " \n return (function(compiler, vars) \n " .. tostring ( code ) .. " \n end) "
2017-09-14 19:45:36 -07:00
local lua_thunk , err = load ( lua_code )
2017-09-12 21:38:54 -07:00
if not lua_thunk then
2017-09-21 21:11:13 -07:00
error ( " Failed to compile generated code: \n " .. tostring ( code ) .. " \n \n " .. tostring ( err ) .. " \n \n Produced by statement: \n " .. tostring ( repr ( statement ) ) )
2017-09-12 21:38:54 -07:00
end
2017-09-14 19:45:36 -07:00
local value = lua_thunk ( )
2017-09-21 04:51:02 -07:00
local return_value
2017-09-21 00:10:26 -07:00
ok , return_value = pcall ( value , self , vars )
if not ok then
self : writeln ( " Error occurred in statement: \n " .. tostring ( statement.src ) )
error ( return_value )
end
2017-09-21 04:51:02 -07:00
insert ( buffer , code )
2017-09-12 21:38:54 -07:00
end
2017-09-21 04:51:02 -07:00
insert ( buffer , [ [ return ret
2017-09-12 21:38:54 -07:00
end )
] ] )
2017-09-21 21:11:13 -07:00
return concat ( buffer , " \n " ) , return_value
2017-09-12 21:38:54 -07:00
elseif " Block " == _exp_0 then
2017-09-21 04:51:02 -07:00
local buffer = { }
2017-09-12 21:38:54 -07:00
local _list_0 = tree.value
for _index_0 = 1 , # _list_0 do
local statement = _list_0 [ _index_0 ]
2017-09-21 04:51:02 -07:00
insert ( buffer , self : tree_to_lua ( statement ) )
2017-09-12 21:38:54 -07:00
end
2017-09-21 21:11:13 -07:00
return concat ( buffer , " \n " )
2017-09-12 21:38:54 -07:00
elseif " Thunk " == _exp_0 then
assert ( tree.value . type == " Block " , " Non-block value in Thunk " )
2017-09-21 04:51:02 -07:00
return [ [ ( function ( compiler , vars )
2017-09-18 12:34:10 -07:00
local ret
2017-09-21 04:51:02 -07:00
] ] .. self : tree_to_lua ( tree.value ) .. " \n " .. [ [ return ret
2017-09-12 21:38:54 -07:00
end )
2017-09-21 04:51:02 -07:00
] ]
2017-09-12 21:38:54 -07:00
elseif " Statement " == _exp_0 then
if tree.value . type == " FunctionCall " then
2017-09-21 21:11:13 -07:00
local alias = self : get_alias ( tree.value )
if self.defs [ alias ] and self.defs [ alias ] . is_macro then
2017-09-21 04:51:02 -07:00
return self : run_macro ( tree.value , " Statement " )
2017-09-12 21:38:54 -07:00
end
end
2017-09-21 04:51:02 -07:00
return " ret = " .. ( self : tree_to_lua ( tree.value ) )
2017-09-12 21:38:54 -07:00
elseif " FunctionCall " == _exp_0 then
2017-09-21 21:11:13 -07:00
local alias = self : get_alias ( tree )
if self.defs [ alias ] and self.defs [ alias ] . is_macro then
2017-09-21 04:51:02 -07:00
return self : run_macro ( tree , " Expression " )
2017-09-12 21:38:54 -07:00
else
local args
do
local _accum_0 = { }
local _len_0 = 1
local _list_0 = tree.value
for _index_0 = 1 , # _list_0 do
local a = _list_0 [ _index_0 ]
if a.type ~= " Word " then
2017-09-21 04:51:02 -07:00
_accum_0 [ _len_0 ] = self : tree_to_lua ( a )
2017-09-12 21:38:54 -07:00
_len_0 = _len_0 + 1
end
end
args = _accum_0
end
2017-09-21 21:11:13 -07:00
insert ( args , 1 , repr ( alias ) )
2017-09-21 04:51:02 -07:00
return self.__class : comma_separated_items ( " compiler:call( " , args , " ) " )
2017-09-12 21:38:54 -07:00
end
elseif " String " == _exp_0 then
2017-09-21 21:11:13 -07:00
return repr ( self.__class : unescape_string ( tree.value ) )
2017-09-12 21:38:54 -07:00
elseif " Longstring " == _exp_0 then
2017-09-14 02:41:10 -07:00
local concat_parts = { }
local string_buffer = " "
for i , line in ipairs ( tree.value ) do
if i > 1 then
string_buffer = string_buffer .. " \n "
2017-09-12 21:38:54 -07:00
end
2017-09-14 02:41:10 -07:00
for _index_0 = 1 , # line do
local bit = line [ _index_0 ]
if type ( bit ) == " string " then
string_buffer = string_buffer .. bit : gsub ( " \\ \\ " , " \\ " )
else
if string_buffer ~= " " then
2017-09-21 21:11:13 -07:00
insert ( concat_parts , repr ( string_buffer ) )
2017-09-14 02:41:10 -07:00
string_buffer = " "
end
2017-09-21 04:51:02 -07:00
insert ( concat_parts , " compiler.utils.repr_if_not_string( " .. tostring ( self : tree_to_lua ( bit ) ) .. " ) " )
2017-09-14 02:41:10 -07:00
end
end
end
if string_buffer ~= " " then
2017-09-21 21:11:13 -07:00
insert ( concat_parts , repr ( string_buffer ) )
2017-09-14 02:41:10 -07:00
end
if # concat_parts == 0 then
2017-09-21 04:51:02 -07:00
return " '' "
2017-09-14 02:41:10 -07:00
elseif # concat_parts == 1 then
2017-09-21 04:51:02 -07:00
return concat_parts [ 1 ]
2017-09-14 02:41:10 -07:00
else
2017-09-21 21:11:13 -07:00
return " ( " .. tostring ( concat ( concat_parts , " .. " ) ) .. " ) "
2017-09-12 21:38:54 -07:00
end
elseif " Number " == _exp_0 then
2017-09-21 04:51:02 -07:00
return tree.value
2017-09-12 21:38:54 -07:00
elseif " List " == _exp_0 then
if # tree.value == 0 then
2017-09-21 04:51:02 -07:00
return " {} "
2017-09-12 21:38:54 -07:00
elseif # tree.value == 1 then
2017-09-21 04:51:02 -07:00
return " { " .. tostring ( self : tree_to_lua ( tree.value [ 1 ] ) ) .. " } "
2017-09-12 21:38:54 -07:00
else
2017-09-21 04:51:02 -07:00
return self.__class : comma_separated_items ( " { " , ( function ( )
2017-09-12 21:38:54 -07:00
local _accum_0 = { }
local _len_0 = 1
local _list_0 = tree.value
for _index_0 = 1 , # _list_0 do
local item = _list_0 [ _index_0 ]
2017-09-21 04:51:02 -07:00
_accum_0 [ _len_0 ] = self : tree_to_lua ( item )
2017-09-12 21:38:54 -07:00
_len_0 = _len_0 + 1
end
return _accum_0
2017-09-21 04:51:02 -07:00
end ) ( ) , " } " )
2017-09-12 21:38:54 -07:00
end
elseif " Var " == _exp_0 then
2017-09-21 21:11:13 -07:00
return " vars[ " .. tostring ( repr ( tree.value ) ) .. " ] "
2017-09-12 21:38:54 -07:00
else
2017-09-21 04:51:02 -07:00
return self : error ( " Unknown/unimplemented thingy: " .. tostring ( tree.type ) )
2017-09-12 21:38:54 -07:00
end
end ,
2017-09-21 21:11:13 -07:00
get_alias = function ( self , x )
if not x then
self : error ( " Nothing to get alias from " )
end
if type ( x ) == ' string ' then
local alias = x : gsub ( " ' " , " ' " ) : gsub ( " %%%S+ " , " %% " ) : gsub ( " %s+ " , " " )
local args
do
local _accum_0 = { }
local _len_0 = 1
for arg in x : gmatch ( " %%(%S[^%s']*) " ) do
_accum_0 [ _len_0 ] = arg
_len_0 = _len_0 + 1
end
args = _accum_0
end
return alias , args
end
local _exp_0 = x.type
if " String " == _exp_0 then
return self : get_alias ( x.value )
elseif " Statement " == _exp_0 then
return self : get_alias ( x.value )
elseif " FunctionCall " == _exp_0 then
local alias , args = { } , { } , { }
local _list_0 = x.value
for _index_0 = 1 , # _list_0 do
local token = _list_0 [ _index_0 ]
local _exp_1 = token.type
if " Word " == _exp_1 then
insert ( alias , token.value )
elseif " Var " == _exp_1 then
insert ( alias , " % " )
insert ( args , token.value )
2017-09-12 21:38:54 -07:00
else
2017-09-21 21:11:13 -07:00
insert ( alias , " % " )
insert ( args , token )
2017-09-12 21:38:54 -07:00
end
2017-09-21 21:11:13 -07:00
end
return concat ( alias , " " ) , args
end
end ,
get_aliases = function ( self , x )
if self.value then
print ( self )
error ( " WTF " )
end
if not x then
self : error ( " Nothing to get aliases from " )
end
if type ( x ) == ' string ' then
local alias , args = self : get_alias ( x )
return {
[ alias ] = args
}
end
local _exp_0 = x.type
if " String " == _exp_0 then
return self : get_aliases ( {
x.value
} )
elseif " Statement " == _exp_0 then
return self : get_aliases ( {
x.value
} )
elseif " FunctionCall " == _exp_0 then
return self : get_aliases ( {
x
} )
elseif " List " == _exp_0 then
x = x.value
elseif " Block " == _exp_0 then
x = x.value
end
do
local _with_0 = { }
for _index_0 = 1 , # x do
local y = x [ _index_0 ]
local alias , args = self : get_alias ( y )
_with_0 [ alias ] = args
end
return _with_0
2017-09-12 21:38:54 -07:00
end
end ,
2017-09-21 00:10:26 -07:00
var_to_lua_identifier = function ( self , var )
if var.type ~= " Var " then
self : error ( " Tried to convert something that wasn't a Var into a lua identifier: it was not a Var, it was: " .. label.type )
end
2017-09-21 04:04:08 -07:00
return " var " .. ( var.value : gsub ( " %W " , function ( verboten )
if verboten == " _ " then
return " __ "
else
return ( " _%x " ) : format ( verboten : byte ( ) )
end
end ) )
2017-09-21 00:10:26 -07:00
end ,
2017-09-12 21:38:54 -07:00
_yield_tree = function ( self , tree , indent_level )
if indent_level == nil then
indent_level = 0
end
local ind
ind = function ( s )
return INDENT : rep ( indent_level ) .. s
end
local _exp_0 = tree.type
if " File " == _exp_0 then
coroutine.yield ( ind ( " File: " ) )
2017-09-21 21:11:13 -07:00
return self : _yield_tree ( tree.value . body , indent_level + 1 )
2017-09-12 21:38:54 -07:00
elseif " Errors " == _exp_0 then
2017-09-21 21:11:13 -07:00
return coroutine.yield ( ind ( " Error: \n " .. tostring ( tree.value ) ) )
2017-09-12 21:38:54 -07:00
elseif " Block " == _exp_0 then
local _list_0 = tree.value
for _index_0 = 1 , # _list_0 do
local chunk = _list_0 [ _index_0 ]
self : _yield_tree ( chunk , indent_level )
end
elseif " Thunk " == _exp_0 then
coroutine.yield ( ind ( " Thunk: " ) )
2017-09-21 21:11:13 -07:00
return self : _yield_tree ( tree.value , indent_level + 1 )
2017-09-12 21:38:54 -07:00
elseif " Statement " == _exp_0 then
2017-09-21 21:11:13 -07:00
return self : _yield_tree ( tree.value , indent_level )
2017-09-12 21:38:54 -07:00
elseif " FunctionCall " == _exp_0 then
2017-09-21 21:11:13 -07:00
local alias = self : get_alias ( tree )
2017-09-12 21:38:54 -07:00
local args
do
local _accum_0 = { }
local _len_0 = 1
local _list_0 = tree.value
for _index_0 = 1 , # _list_0 do
local a = _list_0 [ _index_0 ]
if a.type ~= " Word " then
_accum_0 [ _len_0 ] = a
_len_0 = _len_0 + 1
end
end
args = _accum_0
end
if # args == 0 then
2017-09-21 21:11:13 -07:00
return coroutine.yield ( ind ( " Call [ " .. tostring ( alias ) .. " ]! " ) )
2017-09-12 21:38:54 -07:00
else
2017-09-21 21:11:13 -07:00
coroutine.yield ( ind ( " Call [ " .. tostring ( alias ) .. " ]: " ) )
2017-09-12 21:38:54 -07:00
for _index_0 = 1 , # args do
local a = args [ _index_0 ]
self : _yield_tree ( a , indent_level + 1 )
end
end
elseif " String " == _exp_0 then
2017-09-21 21:11:13 -07:00
return coroutine.yield ( ind ( repr ( tree.value ) ) )
2017-09-12 21:38:54 -07:00
elseif " Longstring " == _exp_0 then
2017-09-21 21:11:13 -07:00
return coroutine.yield ( ind ( repr ( tree.value ) ) )
2017-09-12 21:38:54 -07:00
elseif " Number " == _exp_0 then
2017-09-21 21:11:13 -07:00
return coroutine.yield ( ind ( tree.value ) )
elseif " Var " == _exp_0 then
return coroutine.yield ( ind ( " Var[ " .. tostring ( repr ( tree.value ) ) .. " ] " ) )
2017-09-12 21:38:54 -07:00
elseif " List " == _exp_0 then
if # tree.value == 0 then
2017-09-21 21:11:13 -07:00
return coroutine.yield ( ind ( " <Empty List> " ) )
2017-09-12 21:38:54 -07:00
else
coroutine.yield ( ind ( " List: " ) )
local _list_0 = tree.value
for _index_0 = 1 , # _list_0 do
local item = _list_0 [ _index_0 ]
self : _yield_tree ( item , indent_level + 1 )
end
end
else
2017-09-21 21:11:13 -07:00
return error ( " Unknown/unimplemented thingy: " .. tostring ( tree.type ) )
2017-09-12 21:38:54 -07:00
end
end ,
print_tree = function ( self , tree )
for line in coroutine.wrap ( function ( )
return self : _yield_tree ( tree )
end ) do
2017-09-14 21:03:42 -07:00
self : writeln ( line )
2017-09-12 21:38:54 -07:00
end
end ,
stringify_tree = function ( self , tree )
local result = { }
for line in coroutine.wrap ( function ( )
return self : _yield_tree ( tree )
end ) do
2017-09-21 04:51:02 -07:00
insert ( result , line )
2017-09-12 21:38:54 -07:00
end
2017-09-21 21:11:13 -07:00
return concat ( result , " \n " )
2017-09-12 21:38:54 -07:00
end ,
2017-09-21 04:51:02 -07:00
run = function ( self , src , filename , output_file )
2017-09-12 21:38:54 -07:00
if output_file == nil then
output_file = nil
end
if self.debug then
2017-09-14 21:03:42 -07:00
self : writeln ( " COMPILING: \n " .. tostring ( src ) )
2017-09-12 21:38:54 -07:00
end
2017-09-20 04:21:46 -07:00
local tree = self : parse ( src , filename )
2017-09-12 21:38:54 -07:00
assert ( tree , " Tree failed to compile: " .. tostring ( src ) )
2017-09-14 18:18:42 -07:00
local code , retval = self : tree_to_lua ( tree )
2017-09-12 21:38:54 -07:00
if output_file then
local output = io.open ( output_file , " w " )
output : write ( code )
end
2017-09-21 04:51:02 -07:00
return retval , code
2017-09-12 21:38:54 -07:00
end ,
error = function ( self , ... )
2017-09-14 21:03:42 -07:00
self : writeln ( " ERROR! " )
self : writeln ( ... )
self : writeln ( " Callstack: " )
2017-09-12 21:38:54 -07:00
for i = # self.callstack , 1 , - 1 do
2017-09-14 21:03:42 -07:00
self : writeln ( " " .. tostring ( self.callstack [ i ] ) )
2017-09-12 21:38:54 -07:00
end
2017-09-14 21:03:42 -07:00
self : writeln ( " <top level> " )
2017-09-14 18:18:42 -07:00
self.callstack = { }
2017-09-12 21:38:54 -07:00
return error ( )
end ,
2017-09-20 04:21:46 -07:00
test = function ( self , src , filename , expected )
2017-09-12 21:38:54 -07:00
local i = 1
while i ~= nil do
local start , stop = src : find ( " \n \n " , i )
local test = src : sub ( i , start )
i = stop
start , stop = test : find ( " === " )
if not start or not stop then
self : error ( " WHERE'S THE ===? in: \n " .. tostring ( test ) )
end
local test_src
test_src , expected = test : sub ( 1 , start - 1 ) , test : sub ( stop + 1 , - 1 )
expected = expected : match ( ' [ \n ]*(.*[^ \n ]) ' )
2017-09-20 04:21:46 -07:00
local tree = self : parse ( test_src , filename )
2017-09-12 21:38:54 -07:00
local got = self : stringify_tree ( tree.value . body )
if got ~= expected then
self : error ( " TEST FAILED! \n Source: \n " .. tostring ( test_src ) .. " \n Expected: \n " .. tostring ( expected ) .. " \n \n Got: \n " .. tostring ( got ) )
end
end
end ,
initialize_core = function ( self )
2017-09-21 21:11:13 -07:00
self : defmacro ( " lua block %lua_code " , function ( self , vars , kind )
2017-09-12 21:38:54 -07:00
if kind == " Expression " then
error ( " Expected to be in statement. " )
end
2017-09-18 22:41:50 -07:00
local inner_vars = setmetatable ( { } , {
__index = function ( _ , key )
2017-09-21 21:15:37 -07:00
return " vars[ " .. tostring ( repr ( key ) ) .. " ] "
2017-09-18 22:41:50 -07:00
end
} )
2017-09-21 21:15:37 -07:00
local lua = self : tree_to_value ( vars.lua_code , inner_vars )
return " do \n " .. tostring ( lua ) .. " \n end " , true
2017-09-12 21:38:54 -07:00
end )
2017-09-21 21:11:13 -07:00
self : defmacro ( " lua expr %lua_code " , function ( self , vars , kind )
2017-09-12 21:38:54 -07:00
local lua_code = vars.lua_code . value
2017-09-18 22:41:50 -07:00
local inner_vars = setmetatable ( { } , {
__index = function ( _ , key )
2017-09-21 21:15:37 -07:00
return " vars[ " .. tostring ( repr ( key ) ) .. " ] "
2017-09-18 22:41:50 -07:00
end
} )
2017-09-21 21:15:37 -07:00
local lua = self : tree_to_value ( vars.lua_code , inner_vars )
return lua
2017-09-12 21:38:54 -07:00
end )
2017-09-19 00:35:37 -07:00
self : def ( " require %filename " , function ( self , vars )
if not self.loaded_files [ vars.filename ] then
local file = io.open ( vars.filename )
2017-09-20 04:21:46 -07:00
if not file then
self : error ( " File does not exist: " .. tostring ( vars.filename ) )
end
2017-09-21 14:11:34 -07:00
self.loaded_files [ vars.filename ] = ( self : run ( file : read ( ' *a ' ) , vars.filename ) ) or true
2017-09-19 00:35:37 -07:00
end
return self.loaded_files [ vars.filename ]
end )
2017-09-12 21:38:54 -07:00
return self : def ( " run file %filename " , function ( self , vars )
local file = io.open ( vars.filename )
2017-09-20 04:21:46 -07:00
if not file then
self : error ( " File does not exist: " .. tostring ( vars.filename ) )
end
return self : run ( file : read ( ' *a ' ) , vars.filename )
2017-09-12 21:38:54 -07:00
end )
end
}
_base_0.__index = _base_0
_class_0 = setmetatable ( {
__init = function ( self , parent )
2017-09-20 04:21:46 -07:00
self.write = function ( self , ... )
return io.write ( ... )
end
2017-09-12 21:38:54 -07:00
self.defs = setmetatable ( { } , {
__index = parent and parent.defs
} )
self.callstack = { }
self.debug = false
2017-09-14 21:03:42 -07:00
self : initialize_core ( )
2017-09-18 12:34:10 -07:00
self.utils = utils
2017-09-21 21:11:13 -07:00
self.repr = function ( self , ... )
return repr ( ... )
end
2017-09-19 00:35:37 -07:00
self.loaded_files = { }
2017-09-12 21:38:54 -07:00
end ,
__base = _base_0 ,
2017-09-13 16:22:04 -07:00
__name = " NomsuCompiler "
2017-09-12 21:38:54 -07:00
} , {
__index = _base_0 ,
__call = function ( cls , ... )
local _self_0 = setmetatable ( { } , _base_0 )
cls.__init ( _self_0 , ... )
return _self_0
end
} )
_base_0.__class = _class_0
local self = _class_0
2017-09-21 13:30:59 -07:00
self.unescape_string = function ( self , str )
return str : gsub ( " \\ (.) " , ( function ( c )
return STRING_ESCAPES [ c ] or c
end ) )
end
2017-09-12 21:38:54 -07:00
self.comma_separated_items = function ( self , open , items , close )
2017-09-21 13:30:59 -07:00
local bits = {
open
}
local so_far = 0
for i , item in ipairs ( items ) do
if i < # items then
item = item .. " , "
end
insert ( bits , item )
so_far = so_far + # item
if so_far >= 80 then
insert ( bits , " \n " )
so_far = 0
2017-09-12 21:38:54 -07:00
end
2017-09-21 13:30:59 -07:00
end
insert ( bits , close )
2017-09-21 21:11:13 -07:00
return concat ( bits )
2017-09-12 21:38:54 -07:00
end
2017-09-13 16:22:04 -07:00
NomsuCompiler = _class_0
2017-09-12 21:38:54 -07:00
end
2017-09-12 23:12:45 -07:00
if arg and arg [ 1 ] then
2017-09-13 16:22:04 -07:00
local c = NomsuCompiler ( )
2017-09-12 21:38:54 -07:00
local input = io.open ( arg [ 1 ] ) : read ( " *a " )
2017-09-14 21:03:42 -07:00
local _write = c.write
2017-09-12 21:38:54 -07:00
if arg [ 2 ] == " - " then
2017-09-14 21:03:42 -07:00
c.write = function ( ) end
2017-09-12 21:38:54 -07:00
end
2017-09-21 04:51:02 -07:00
local retval , code = c : run ( input , arg [ 1 ] )
2017-09-14 21:03:42 -07:00
c.write = _write
2017-09-12 21:38:54 -07:00
if arg [ 2 ] then
local output
if arg [ 2 ] == " - " then
output = io.output ( )
else
output = io.open ( arg [ 2 ] , ' w ' )
end
2017-09-18 12:34:10 -07:00
output : write ( [ [ local load = function ( )
2017-09-12 21:38:54 -07:00
] ] )
output : write ( code )
output : write ( [ [
end
2017-09-13 16:22:04 -07:00
local NomsuCompiler = require ( ' nomsu ' )
local c = NomsuCompiler ( )
2017-09-14 18:18:42 -07:00
return load ( ) ( c , { } )
2017-09-12 21:38:54 -07:00
] ] )
end
2017-09-14 15:35:06 -07:00
elseif arg then
local c = NomsuCompiler ( )
2017-09-20 04:21:46 -07:00
c : run ( ' require "lib/core.nom" ' )
2017-09-14 15:35:06 -07:00
while true do
local buff = " "
while true do
io.write ( " >> " )
local line = io.read ( " *L " )
if line == " \n " or not line then
break
end
buff = buff .. line
end
if # buff == 0 then
break
end
2017-09-14 18:18:42 -07:00
local ok , ret = pcall ( function ( )
return c : run ( buff )
end )
if ok and ret ~= nil then
2017-09-21 21:11:13 -07:00
print ( " = " .. repr ( ret ) )
2017-09-14 18:18:42 -07:00
end
2017-09-14 15:35:06 -07:00
end
2017-09-12 21:38:54 -07:00
end
2017-09-13 16:22:04 -07:00
return NomsuCompiler