Purged references to "macro" and replaced with "compile action" or

"compile-time action".
This commit is contained in:
Bruce Hill 2018-01-11 02:07:37 -08:00
parent 199161a438
commit 8c1da9a6c3
4 changed files with 89 additions and 121 deletions

View File

@ -1,93 +1,93 @@
#.. #..
This File contains actions for making actions and macros and some helper functions to make This File contains actions for making actions and compile-time actions and some helper
that easier. functions to make that easier.
# Helper function # Helper function
immediately: immediately:
lua> ".." lua> ".."
nomsu.parse_spec = function(nomsu, spec) nomsu.parse_spec = function(nomsu, spec)
local signature = {}; local names = {};
for i, alias in ipairs(spec.value) do for i, alias in ipairs(spec.value) do
signature[i] = alias.src; names[i] = alias.src;
end end
local _, arg_names, _ = nomsu:get_stub(spec.value[1]); local _, arg_names, _ = nomsu:get_stub(spec.value[1]);
local args = {"nomsu"}; local args = {"nomsu"};
for i, a in ipairs(arg_names) do args[i+1] = "_"..nomsu:var_to_lua_identifier(a); end for i, a in ipairs(arg_names) do args[i+1] = "_"..nomsu:var_to_lua_identifier(a); end
signature, args = nomsu:repr(signature), table.concat(args, ", "); names, args = nomsu:repr(names), table.concat(args, ", ");
return signature, args; return names, args;
end end
# Macro to make macros: # Compile-time action to make compile-time actions:
immediately: immediately:
lua> ".." lua> ".."
nomsu:define_macro("compile %macro_def to %body", \(__line_no__), function(nomsu, \%macro_def, \%body) nomsu:define_compile_action("compile %names to %body", \(__line_no__), function(nomsu, \%names, \%body)
nomsu:assert(\%macro_def.type == "List", nomsu:assert(\%names.type == "List",
"Invalid type for compile definition signature. Expected List, but got: "..tostring(\%macro_def.type)); "Invalid type for compile definition names. Expected List, but got: "..tostring(\%names.type));
nomsu:assert(\%body.type == "Block", nomsu:assert(\%body.type == "Block",
"Invalid type for compile definition body. Expected Block, but got: "..tostring(\%body.type)); "Invalid type for compile definition body. Expected Block, but got: "..tostring(\%body.type));
local signature, args = nomsu:parse_spec(\%macro_def); local names, args = nomsu:parse_spec(\%names);
local body_lua = nomsu:tree_to_lua(\%body); local body_lua = nomsu:tree_to_lua(\%body);
body_lua = body_lua.statements or ("return "..body_lua.expr..";"); body_lua = body_lua.statements or ("return "..body_lua.expr..";");
local lua = ([[ local lua = ([[
do do
local function macro(%s) local function compile_action(%s)
%s %s
end end
local function macro_wrapper(...) return {expr=macro(...)}; end local function compile_action_wrapper(...) return {expr=compile_action(...)}; end
nomsu:define_macro(%s, %s, macro_wrapper, %s); nomsu:define_compile_action(%s, %s, compile_action_wrapper, %s);
end]]):format(args, body_lua, signature, nomsu:repr(\%macro_def:get_line_no()), end]]):format(args, body_lua, names, nomsu:repr(\%names:get_line_no()),
nomsu:repr(("compile %s\\n..to code %s"):format(\%macro_def.src, \%body.src))); nomsu:repr(("compile %s\\n..to code %s"):format(\%names.src, \%body.src)));
return {statements=lua}; return {statements=lua};
end, \(__src__ 1)); end, \(__src__ 1));
lua> ".." lua> ".."
nomsu:define_macro("compile %macro_def to code %body", \(__line_no__), function(nomsu, \%macro_def, \%body) nomsu:define_compile_action("compile %names to code %body", \(__line_no__), function(nomsu, \%names, \%body)
nomsu:assert(\%macro_def.type == "List", nomsu:assert(\%names.type == "List",
"Invalid type for compile definition signature. Expected List, but got: "..tostring(\%macro_def.type)); "Invalid type for compile definition names. Expected List, but got: "..tostring(\%names.type));
nomsu:assert(\%body.type == "Block", nomsu:assert(\%body.type == "Block",
"Invalid type for compile definition body. Expected Block, but got: "..tostring(\%body.type)); "Invalid type for compile definition body. Expected Block, but got: "..tostring(\%body.type));
local signature, args = nomsu:parse_spec(\%macro_def); local names, args = nomsu:parse_spec(\%names);
local body_lua = nomsu:tree_to_lua(\%body); local body_lua = nomsu:tree_to_lua(\%body);
body_lua = body_lua.statements or ("return "..body_lua.expr..";"); body_lua = body_lua.statements or ("return "..body_lua.expr..";");
local lua = ([[ local lua = ([[
do do
local function macro(%s) local function compile_action(%s)
%s %s
end end
local function macro_wrapper(...) return {statements=macro(...)}; end local function compile_action_wrapper(...) return {statements=compile_action(...)}; end
nomsu:define_macro(%s, %s, macro_wrapper, %s); nomsu:define_compile_action(%s, %s, compile_action_wrapper, %s);
end]]):format(args, body_lua, signature, nomsu:repr(\%macro_def:get_line_no()), end]]):format(args, body_lua, names, nomsu:repr(\%names:get_line_no()),
nomsu:repr(("compile %s\\n..to code %s"):format(\%macro_def.src, \%body.src))); nomsu:repr(("compile %s\\n..to code %s"):format(\%names.src, \%body.src)));
return {statements=lua}; return {statements=lua};
end, \(__src__ 1)); end, \(__src__ 1));
# Macro to make actions: # Compile-time action to make actions
immediately: immediately:
compile [action %signature %body] to code: compile [action %names %body] to code:
lua> ".." lua> ".."
nomsu:assert(\%signature.type == "List", nomsu:assert(\%names.type == "List",
"Invalid type for action definition signature. Expected List, but got: "..tostring(\%signature.type)); "Invalid type for action definition names. Expected List, but got: "..tostring(\%names.type));
nomsu:assert(\%body.type == "Block", nomsu:assert(\%body.type == "Block",
"Invalid type for action definition body. Expected Block, but got: "..tostring(\%body.type)); "Invalid type for action definition body. Expected Block, but got: "..tostring(\%body.type));
local signature, args = nomsu:parse_spec(\%signature); local names, args = nomsu:parse_spec(\%names);
local body_lua = nomsu:tree_to_lua(\%body); local body_lua = nomsu:tree_to_lua(\%body);
body_lua = body_lua.statements or ("return "..body_lua.expr..";"); body_lua = body_lua.statements or ("return "..body_lua.expr..";");
local src = nomsu:dedent(nomsu:source_code(0)); local src = nomsu:dedent(nomsu:source_code(0));
local def_lua = ([[ local def_lua = ([[
nomsu:define_action(%s, \(__line_no__), function(%s) nomsu:define_action(%s, \(__line_no__), function(%s)
%s %s
end, %s);]]):format(signature, args, body_lua, nomsu:repr(src)); end, %s);]]):format(names, args, body_lua, nomsu:repr(src));
return def_lua; return def_lua;
# Macro to make nomsu macros: # Macro to make nomsu macros:
immediately: immediately:
lua> ".." lua> ".."
nomsu:define_macro("parse %shorthand as %longhand", \(__line_no__), (function(nomsu, \%shorthand, \%longhand) nomsu:define_compile_action("parse %shorthand as %longhand", \(__line_no__), (function(nomsu, \%shorthand, \%longhand)
nomsu:assert(\%shorthand.type == "List", nomsu:assert(\%shorthand.type == "List",
"Invalid type for parse definition signature. Expected List, but got: "..tostring(\%shorthand.type)); "Invalid type for parse definition shorthand. Expected List, but got: "..tostring(\%shorthand.type));
nomsu:assert(\%longhand.type == "Block", nomsu:assert(\%longhand.type == "Block",
"Invalid type for parse definition body. Expected Block, but got: "..tostring(\%longhand.type)); "Invalid type for parse definition body. Expected Block, but got: "..tostring(\%longhand.type));
local signature, args = nomsu:parse_spec(\%shorthand); local names, args = nomsu:parse_spec(\%shorthand);
local template = {}; local template = {};
for i, line in ipairs(\%longhand.value) do for i, line in ipairs(\%longhand.value) do
template[i] = nomsu:dedent(line.src); template[i] = nomsu:dedent(line.src);
@ -98,11 +98,11 @@ immediately:
for i, a in ipairs(arg_names) do replacements[i] = "["..nomsu:repr(a).."]=_"..nomsu:var_to_lua_identifier(a); end for i, a in ipairs(arg_names) do replacements[i] = "["..nomsu:repr(a).."]=_"..nomsu:var_to_lua_identifier(a); end
replacements = "{"..table.concat(replacements, ", ").."}"; replacements = "{"..table.concat(replacements, ", ").."}";
local lua_code = ([[ local lua_code = ([[
nomsu:define_macro(%s, %s, (function(%s) nomsu:define_compile_action(%s, %s, (function(%s)
local template = nomsu:parse(%s, %s); local template = nomsu:parse(%s, %s);
local replacement = nomsu:replaced_vars(template, %s); local replacement = nomsu:replaced_vars(template, %s);
return nomsu:tree_to_lua(replacement); return nomsu:tree_to_lua(replacement);
end), %s)]]):format(signature, nomsu:repr(\%shorthand:get_line_no()), args, template, end), %s)]]):format(names, nomsu:repr(\%shorthand:get_line_no()), args, template,
nomsu:repr(\%shorthand:get_line_no()), replacements, nomsu:repr(nomsu:source_code(0))); nomsu:repr(\%shorthand:get_line_no()), replacements, nomsu:repr(nomsu:source_code(0)));
return {statements=lua_code}; return {statements=lua_code};
end), \(__src__ 1)); end), \(__src__ 1));
@ -145,8 +145,8 @@ compile [nomsu %method %args] to: "nomsu[\(%method as lua)](nomsu, unpack(\(%arg
compile [tree %tree with %replacements] to: ".." compile [tree %tree with %replacements] to: ".."
nomsu:replaced_vars(\(%tree as lua), \(%replacements as lua)) nomsu:replaced_vars(\(%tree as lua), \(%replacements as lua))
parse [action %signature] as: parse [action %names] as:
(nomsu's "defs")->(nomsu "get_stub" [\%signature]) (nomsu's "defs")->(nomsu "get_stub" [\%names])
# Get the source code for a function # Get the source code for a function
action [help %action]: action [help %action]:

View File

@ -113,7 +113,7 @@ lua> ".."
}; };
for name,code in pairs(colors) do for name,code in pairs(colors) do
local escape = "\\"\\\\27["..tostring(code).."m\\"" local escape = "\\"\\\\27["..tostring(code).."m\\""
nomsu:define_macro(name, \(__line_no__), function() return escape end, ""); nomsu:define_compile_action(name, \(__line_no__), function() return escape end, "");
end end
end end

View File

@ -204,9 +204,9 @@ do
self:write_err(...) self:write_err(...)
return self:write_err("\n") return self:write_err("\n")
end, end,
def = function(self, signature, line_no, fn, src, is_macro) define_action = function(self, signature, line_no, fn, src, compile_time)
if is_macro == nil then if compile_time == nil then
is_macro = false compile_time = false
end end
if type(signature) == 'string' then if type(signature) == 'string' then
signature = self:get_stubs({ signature = self:get_stubs({
@ -222,7 +222,7 @@ do
fn = fn, fn = fn,
src = src, src = src,
line_no = line_no, line_no = line_no,
is_macro = is_macro, compile_time = compile_time,
aliases = { }, aliases = { },
def_number = self.__class.def_number, def_number = self.__class.def_number,
defs = self.defs defs = self.defs
@ -276,8 +276,8 @@ do
rawset(where_defs_go, stub, stub_def) rawset(where_defs_go, stub, stub_def)
end end
end, end,
defmacro = function(self, signature, line_no, fn, src) define_compile_action = function(self, signature, line_no, fn, src)
return self:def(signature, line_no, fn, src, true) return self:define_action(signature, line_no, fn, src, true)
end, end,
serialize_defs = function(self, scope, after) serialize_defs = function(self, scope, after)
if scope == nil then if scope == nil then
@ -348,27 +348,6 @@ do
end end
return concat(buff, "\n") return concat(buff, "\n")
end, end,
run_macro = function(self, tree)
local args
do
local _accum_0 = { }
local _len_0 = 1
local _list_0 = tree.value
for _index_0 = 1, #_list_0 do
local arg = _list_0[_index_0]
if arg.type ~= "Word" then
_accum_0[_len_0] = arg
_len_0 = _len_0 + 1
end
end
args = _accum_0
end
if self.debug then
self:write(tostring(colored.bright("RUNNING MACRO")) .. " " .. tostring(colored.underscore(colored.magenta(tree.stub))) .. " ")
self:writeln(tostring(colored.bright("WITH ARGS:")) .. " " .. tostring(colored.dim(repr(args))))
end
return self.defs[tree.stub].fn(self, unpack(args))
end,
dedent = function(self, code) dedent = function(self, code)
if not (code:find("\n")) then if not (code:find("\n")) then
return code return code
@ -811,8 +790,26 @@ end]]):format(lua_code))
elseif "FunctionCall" == _exp_0 then elseif "FunctionCall" == _exp_0 then
insert(self.compilestack, tree) insert(self.compilestack, tree)
local def = self.defs[tree.stub] local def = self.defs[tree.stub]
if def and def.is_macro then if def and def.compile_time then
local lua = self:run_macro(tree) local args
do
local _accum_0 = { }
local _len_0 = 1
local _list_0 = tree.value
for _index_0 = 1, #_list_0 do
local arg = _list_0[_index_0]
if arg.type ~= "Word" then
_accum_0[_len_0] = arg
_len_0 = _len_0 + 1
end
end
args = _accum_0
end
if self.debug then
self:write(tostring(colored.bright("RUNNING MACRO")) .. " " .. tostring(colored.underscore(colored.magenta(tree.stub))) .. " ")
self:writeln(tostring(colored.bright("WITH ARGS:")) .. " " .. tostring(colored.dim(repr(args))))
end
local lua = self.defs[tree.stub].fn(self, unpack(args))
remove(self.compilestack) remove(self.compilestack)
return lua return lua
elseif not def and self.__class.math_patt:match(tree.stub) then elseif not def and self.__class.math_patt:match(tree.stub) then
@ -1214,7 +1211,7 @@ end]]):format(lua_code))
end end
return concat(concat_parts) return concat(concat_parts)
end end
self:defmacro("do %block", "nomsu.moon", function(self, _block) self:define_compile_action("do %block", "nomsu.moon", function(self, _block)
local make_line local make_line
make_line = function(lua) make_line = function(lua)
return lua.expr and (lua.expr .. ";") or lua.statements return lua.expr and (lua.expr .. ";") or lua.statements
@ -1227,7 +1224,7 @@ end]]):format(lua_code))
} }
end end
end) end)
self:defmacro("immediately %block", "nomsu.moon", function(self, _block) self:define_compile_action("immediately %block", "nomsu.moon", function(self, _block)
local lua = self:tree_to_lua(_block) local lua = self:tree_to_lua(_block)
local lua_code = lua.statements or (lua.expr .. ";") local lua_code = lua.statements or (lua.expr .. ";")
lua_code = "-- Immediately:\n" .. lua_code lua_code = "-- Immediately:\n" .. lua_code
@ -1236,32 +1233,32 @@ end]]):format(lua_code))
statements = lua_code statements = lua_code
} }
end) end)
self:defmacro("lua> %code", "nomsu.moon", function(self, _code) self:define_compile_action("lua> %code", "nomsu.moon", function(self, _code)
local lua = nomsu_string_as_lua(self, _code) local lua = nomsu_string_as_lua(self, _code)
return { return {
statements = lua statements = lua
} }
end) end)
self:defmacro("=lua %code", "nomsu.moon", function(self, _code) self:define_compile_action("=lua %code", "nomsu.moon", function(self, _code)
local lua = nomsu_string_as_lua(self, _code) local lua = nomsu_string_as_lua(self, _code)
return { return {
expr = lua expr = lua
} }
end) end)
self:defmacro("__line_no__", "nomsu.moon", function(self) self:define_compile_action("__line_no__", "nomsu.moon", function(self)
return { return {
expr = repr(self.compilestack[#self.compilestack]:get_line_no()) expr = repr(self.compilestack[#self.compilestack]:get_line_no())
} }
end) end)
self:defmacro("__src__ %level", "nomsu.moon", function(self, _level) self:define_compile_action("__src__ %level", "nomsu.moon", function(self, _level)
return { return {
expr = repr(self:source_code(self:tree_to_value(_level))) expr = repr(self:source_code(self:tree_to_value(_level)))
} }
end) end)
self:def("run file %filename", "nomsu.moon", function(self, _filename) self:define_action("run file %filename", "nomsu.moon", function(self, _filename)
return self:run_file(_filename) return self:run_file(_filename)
end) end)
return self:defmacro("require %filename", "nomsu.moon", function(self, _filename) return self:define_compile_action("require %filename", "nomsu.moon", function(self, _filename)
local filename = self:tree_to_value(_filename) local filename = self:tree_to_value(_filename)
self:require_file(filename) self:require_file(filename)
return { return {

View File

@ -171,7 +171,7 @@ class NomsuCompiler
@write_err(...) @write_err(...)
@write_err("\n") @write_err("\n")
define_action: (signature, line_no, fn, src, is_macro=false)=> define_action: (signature, line_no, fn, src, compile_time=false)=>
if type(signature) == 'string' if type(signature) == 'string'
signature = @get_stubs {signature} signature = @get_stubs {signature}
elseif type(signature) == 'table' and type(signature[1]) == 'string' elseif type(signature) == 'table' and type(signature[1]) == 'string'
@ -179,7 +179,7 @@ class NomsuCompiler
@assert type(fn) == 'function', "Bad fn: #{repr fn}" @assert type(fn) == 'function', "Bad fn: #{repr fn}"
aliases = {} aliases = {}
@@def_number += 1 @@def_number += 1
def = {:fn, :src, :line_no, :is_macro, aliases:{}, def_number:@@def_number, defs:@defs} def = {:fn, :src, :line_no, :compile_time, aliases:{}, def_number:@@def_number, defs:@defs}
where_defs_go = (getmetatable(@defs) or {}).__newindex or @defs where_defs_go = (getmetatable(@defs) or {}).__newindex or @defs
for sig_i=1,#signature for sig_i=1,#signature
stub, arg_names, escaped_args = unpack(signature[sig_i]) stub, arg_names, escaped_args = unpack(signature[sig_i])
@ -204,7 +204,7 @@ class NomsuCompiler
stub_def = setmetatable({:stub, :arg_names, :arg_positions}, {__index:def}) stub_def = setmetatable({:stub, :arg_names, :arg_positions}, {__index:def})
rawset(where_defs_go, stub, stub_def) rawset(where_defs_go, stub, stub_def)
define_macro: (signature, line_no, fn, src)=> define_compile_action: (signature, line_no, fn, src)=>
@define_action(signature, line_no, fn, src, true) @define_action(signature, line_no, fn, src, true)
serialize_defs: (scope=nil, after=nil)=> serialize_defs: (scope=nil, after=nil)=>
@ -242,13 +242,6 @@ class NomsuCompiler
return concat buff, "\n" return concat buff, "\n"
run_macro: (tree)=>
args = [arg for arg in *tree.value when arg.type != "Word"]
if @debug
@write "#{colored.bright "RUNNING MACRO"} #{colored.underscore colored.magenta(tree.stub)} "
@writeln "#{colored.bright "WITH ARGS:"} #{colored.dim repr args}"
return @defs[tree.stub].fn(self, unpack(args))
dedent: (code)=> dedent: (code)=>
unless code\find("\n") unless code\find("\n")
return code return code
@ -268,32 +261,6 @@ class NomsuCompiler
indent: (code, levels=1)=> indent: (code, levels=1)=>
return code\gsub("\n","\n"..(" ")\rep(levels)) return code\gsub("\n","\n"..(" ")\rep(levels))
assert_permission: (stub)=>
fn_def = @defs[stub]
unless fn_def
@error "Undefined function: #{fn_name}"
whiteset = fn_def.whiteset
if whiteset == nil then return true
-- TODO: maybe optimize this by making the callstack a Counter and using a
-- move-to-front optimization on the whitelist to check most likely candidates sooner
for caller in *@callstack
if caller != "#macro" and whiteset[caller[1]] then return true
@error "You do not have the authority to call: #{stub}"
check_permission: (fn_def)=>
if getmetatable(fn_def) != functiondef_mt
fn_name = fn_def
fn_def = @defs[fn_name]
if fn_def == nil
@error "Undefined function: #{fn_name}"
whiteset = fn_def.whiteset
if whiteset == nil then return true
-- TODO: maybe optimize this by making the callstack a Counter and using a
-- move-to-front optimization on the whitelist to check most likely candidates sooner
for caller in *@callstack
if caller != "#macro" and whiteset[caller[1]] then return true
return false
parse: (str, filename)=> parse: (str, filename)=>
@assert type(filename) == "string", "Bad filename type: #{type filename}" @assert type(filename) == "string", "Bad filename type: #{type filename}"
if @debug if @debug
@ -548,8 +515,12 @@ end]]\format(lua_code))
insert @compilestack, tree insert @compilestack, tree
def = @defs[tree.stub] def = @defs[tree.stub]
if def and def.is_macro if def and def.compile_time
lua = @run_macro(tree) args = [arg for arg in *tree.value when arg.type != "Word"]
if @debug
@write "#{colored.bright "RUNNING MACRO"} #{colored.underscore colored.magenta(tree.stub)} "
@writeln "#{colored.bright "WITH ARGS:"} #{colored.dim repr args}"
lua = @defs[tree.stub].fn(self, unpack(args))
remove @compilestack remove @compilestack
return lua return lua
elseif not def and @@math_patt\match(tree.stub) elseif not def and @@math_patt\match(tree.stub)
@ -793,38 +764,38 @@ end]]\format(lua_code))
insert concat_parts, lua.expr insert concat_parts, lua.expr
return concat(concat_parts) return concat(concat_parts)
@define_macro "do %block", "nomsu.moon", (_block)=> @define_compile_action "do %block", "nomsu.moon", (_block)=>
make_line = (lua)-> lua.expr and (lua.expr..";") or lua.statements make_line = (lua)-> lua.expr and (lua.expr..";") or lua.statements
if _block.type == "Block" if _block.type == "Block"
return @tree_to_lua(_block) return @tree_to_lua(_block)
else else
return expr:"#{@tree_to_lua _block}(nomsu)" return expr:"#{@tree_to_lua _block}(nomsu)"
@define_macro "immediately %block", "nomsu.moon", (_block)=> @define_compile_action "immediately %block", "nomsu.moon", (_block)=>
lua = @tree_to_lua(_block) lua = @tree_to_lua(_block)
lua_code = lua.statements or (lua.expr..";") lua_code = lua.statements or (lua.expr..";")
lua_code = "-- Immediately:\n"..lua_code lua_code = "-- Immediately:\n"..lua_code
@run_lua(lua_code) @run_lua(lua_code)
return statements:lua_code return statements:lua_code
@define_macro "lua> %code", "nomsu.moon", (_code)=> @define_compile_action "lua> %code", "nomsu.moon", (_code)=>
lua = nomsu_string_as_lua(@, _code) lua = nomsu_string_as_lua(@, _code)
return statements:lua return statements:lua
@define_macro "=lua %code", "nomsu.moon", (_code)=> @define_compile_action "=lua %code", "nomsu.moon", (_code)=>
lua = nomsu_string_as_lua(@, _code) lua = nomsu_string_as_lua(@, _code)
return expr:lua return expr:lua
@define_macro "__line_no__", "nomsu.moon", ()=> @define_compile_action "__line_no__", "nomsu.moon", ()=>
expr: repr(@compilestack[#@compilestack]\get_line_no!) expr: repr(@compilestack[#@compilestack]\get_line_no!)
@define_macro "__src__ %level", "nomsu.moon", (_level)=> @define_compile_action "__src__ %level", "nomsu.moon", (_level)=>
expr: repr(@source_code(@tree_to_value(_level))) expr: repr(@source_code(@tree_to_value(_level)))
@define_action "run file %filename", "nomsu.moon", (_filename)=> @define_action "run file %filename", "nomsu.moon", (_filename)=>
@run_file(_filename) @run_file(_filename)
@define_macro "require %filename", "nomsu.moon", (_filename)=> @define_compile_action "require %filename", "nomsu.moon", (_filename)=>
filename = @tree_to_value(_filename) filename = @tree_to_value(_filename)
@require_file(filename) @require_file(filename)
return statements:"nomsu:require_file(#{repr filename});" return statements:"nomsu:require_file(#{repr filename});"