nomsu/core/metaprogramming.nom

280 lines
11 KiB
Plaintext
Raw Normal View History

2018-05-15 18:55:55 -07:00
#
This File contains actions for making actions and compile-time actions and some helper
functions to make that easier.
# Compile-time action to make compile-time actions:
immediately
2018-01-10 20:45:03 -08:00
lua> ".."
2018-06-12 20:15:52 -07:00
_ENV['ACTION'..string.as_lua_id("compile % to %")] = compile_time(function(tree, \%actions, \%lua)
2018-06-12 20:06:33 -07:00
local lua = Lua(tree.source)
local canonical = \%actions[1]
2018-06-12 20:15:52 -07:00
lua:append("ACTION", string.as_lua_id(canonical.stub), ' = compile_time(function(tree')
local args = {}
2018-06-12 20:06:33 -07:00
for i,tok in ipairs(canonical) do
if tok.type == "Var" then args[#args+1] = tok end
end
2018-06-12 20:06:33 -07:00
local canonical_arg_positions = {}
2018-04-11 20:05:12 -07:00
for i, arg in ipairs(args) do
2018-06-12 20:06:33 -07:00
canonical_arg_positions[arg[1]] = i
lua:append(", ", nomsu:tree_to_lua(arg))
end
local body_lua = nomsu:tree_to_lua(\%lua):as_statements("return ")
body_lua:remove_free_vars(args)
body_lua:declare_locals()
2018-06-12 20:15:52 -07:00
lua:append(")\n ", body_lua, "\nend)")
2018-06-12 20:06:33 -07:00
for i=2,#\%actions do
local action = \%actions[i]
lua:append("\n", "ACTION", string.as_lua_id(action.stub), " = ACTION", string.as_lua_id(canonical.stub))
local arg_positions = {}
for _,tok in ipairs(action) do
if tok.type == 'Var' then
arg_positions[#arg_positions+1] = canonical_arg_positions[tok[1]]
end
end
lua:append("\n", "ARG_ORDERS[", repr(action.stub), "] = ", repr(arg_positions))
end
lua:append("\nALIASES[ACTION", string.as_lua_id(canonical.stub), "] = {")
for i,action in ipairs(\%actions) do
if i > 1 then lua:append(", ") end
lua:append(repr(action.stub))
end
lua:append("}")
return lua
2018-06-12 20:15:52 -07:00
end)
# Compile-time action to make actions
immediately
compile [action %actions %body] to
lua> ".."
2018-06-12 20:06:33 -07:00
local lua = Lua(tree.source)
local canonical = \%actions[1]
lua:append("ACTION", string.as_lua_id(canonical.stub), ' = function(')
local args = {}
2018-06-12 20:06:33 -07:00
for i,tok in ipairs(canonical) do
if tok.type == "Var" then args[#args+1] = tok end
end
2018-06-12 20:06:33 -07:00
local canonical_arg_positions = {}
2018-04-11 20:05:12 -07:00
for i, arg in ipairs(args) do
2018-06-12 20:06:33 -07:00
canonical_arg_positions[arg[1]] = i
lua:append(nomsu:tree_to_lua(arg))
2018-04-11 20:05:12 -07:00
if i < #args then lua:append(", ") end
end
local body_lua = nomsu:tree_to_lua(\%body):as_statements("return ")
body_lua:remove_free_vars(args)
body_lua:declare_locals()
2018-06-12 20:06:33 -07:00
lua:append(")\n ", body_lua, "\nend")
for i=2,#\%actions do
local action = \%actions[i]
lua:append("\n", "ACTION", string.as_lua_id(action.stub), " = ACTION", string.as_lua_id(canonical.stub))
local arg_positions = {}
for _,tok in ipairs(action) do
if tok.type == 'Var' then
arg_positions[#arg_positions+1] = canonical_arg_positions[tok[1]]
end
end
lua:append("\n", "ARG_ORDERS[", repr(action.stub), "] = ", repr(arg_positions))
end
lua:append("\nALIASES[ACTION", string.as_lua_id(canonical.stub), "] = {")
for i,action in ipairs(\%actions) do
if i > 1 then lua:append(", ") end
lua:append(repr(action.stub))
end
lua:append("}")
return lua
2017-09-25 17:02:00 -07:00
# Macro to make nomsu macros
immediately
compile [parse %shorthand as %longhand] to
lua> ".."
2018-06-12 20:06:33 -07:00
local lua = Lua(tree.source)
local canonical = \%shorthand[1]
2018-06-12 20:15:52 -07:00
lua:append("ACTION", string.as_lua_id(canonical.stub), ' = compile_time(function(tree')
2018-06-12 20:06:33 -07:00
local args = {}
for i,tok in ipairs(canonical) do
if tok.type == "Var" then args[#args+1] = tok end
end
local canonical_arg_positions = {}
for i, arg in ipairs(args) do
canonical_arg_positions[arg[1]] = i
lua:append(", ", nomsu:tree_to_lua(arg))
end
local replacements = {}
2018-06-12 20:06:33 -07:00
for i,tok in ipairs(canonical) do
if tok.type == "Var" then
local lua_var = tostring(nomsu:tree_to_lua(tok))
replacements[tok[1]] = lua_var
end
end
MANGLE_INDEX = (MANGLE_INDEX or 0) + 1
local function make_tree(t)
2018-05-26 15:04:31 -07:00
if type(t) ~= 'table' and type(t) ~= 'userdata' then
2018-05-16 18:12:56 -07:00
return repr(t)
elseif t.type == 'Var' and replacements[t[1]] then
return replacements[t[1]]
elseif t.type == 'Var' then
return t.type.."("..repr(tostring(t.source))..", "..repr(t[1].."#"..tostring(MANGLE_INDEX))..")"
else
local bits = {repr(tostring(t.source))}
for i, entry in ipairs(t) do
bits[#bits+1] = make_tree(entry)
end
return t.type.."("..table.concat(bits, ", ")..")"
end
2018-04-11 20:05:12 -07:00
end
2018-06-12 20:15:52 -07:00
lua:append(")\n local tree = ", make_tree(\%longhand), "\n return nomsu:tree_to_lua(tree)\nend)")
2018-06-12 20:06:33 -07:00
for i=2,#\%shorthand do
local action = \%shorthand[i]
lua:append("\n", "ACTION", string.as_lua_id(action.stub), " = ACTION", string.as_lua_id(canonical.stub))
local arg_positions = {}
for _,tok in ipairs(action) do
if tok.type == 'Var' then
arg_positions[#arg_positions+1] = canonical_arg_positions[tok[1]]
end
end
lua:append("\n", "ARG_ORDERS[", repr(action.stub), "] = ", repr(arg_positions))
end
lua:append("\nALIASES[ACTION", string.as_lua_id(canonical.stub), "] = {")
for i,action in ipairs(\%shorthand) do
if i > 1 then lua:append(", ") end
lua:append(repr(action.stub))
end
lua:append("}")
return lua
compile [remove action %action] to
Lua ".."
do
2018-06-12 20:06:33 -07:00
local fn = ACTION\(=lua "string.as_lua_id(\(%action.stub))")
for stub in pairs(ALIASES[fn]) do
_ENV['ACTION'..string.as_lua_id(stub)] = nil
end
ARG_ORDERS[fn] = nil
2018-06-12 20:06:33 -07:00
COMPILE_TIME[fn] = nil
2017-12-13 16:29:15 -08:00
end
2017-11-01 19:59:44 -07:00
immediately
2018-05-16 18:12:56 -07:00
action [%tree as nomsu]
=lua "nomsu:tree_to_nomsu(\%tree)"
2018-05-16 18:12:56 -07:00
action [%tree as inline nomsu]
=lua "nomsu:tree_to_nomsu(\%tree, true)"
2018-05-16 18:12:56 -07:00
action [%tree as lua]
=lua "nomsu:tree_to_lua(\%tree)"
action [%tree as lua expr]
lua> ".."
local lua = nomsu:tree_to_lua(\%tree)
2018-04-11 21:07:13 -07:00
if not lua.is_value then
compile_error(\%tree, "Invalid thing to convert to lua expr:\n%s")
end
return lua
action [%tree as lua statements]
=lua "nomsu:tree_to_lua(\%tree):as_statements()"
action [%tree as lua return]
=lua "nomsu:tree_to_lua(\%tree):as_statements('return ')"
2018-04-19 17:23:44 -07:00
immediately
compile [%tree with vars %vars] to
barf "Deprecated"
compile [%tree with %t -> %replacement] to
Lua value ".."
\(%tree as lua expr):map(function(\(%t as lua expr))
\(%replacement as lua return)
end)
compile [declare locals in %code] to
Lua value "\(%code as lua expr):declare_locals()"
2018-04-19 17:23:44 -07:00
compile [declare locals %locals in %code] to
Lua value "\(%code as lua expr):declare_locals(\(%locals as lua expr))"
2018-04-19 17:23:44 -07:00
compile [remove free vars %vars from %code] to
Lua "\(%code as lua expr):remove_free_vars(\(%vars as lua expr));"
action [%tree as value]
2018-05-30 14:29:08 -07:00
lua> ".."
if \%tree.type == 'Text' and #\%tree == 1 and type(\%tree[1]) == 'string' then
return \%tree[1]
end
local lua = Lua(\%tree.source, "return ",nomsu:tree_to_lua(\%tree))
return nomsu:run_lua(lua)
immediately
parse [%var <-write %code] as: lua> "\%var:append(\%code);"
2018-04-19 17:23:44 -07:00
parse [to %var write %code] as: lua> "\%var:append(\%code);"
2017-12-04 17:54:52 -08:00
immediately
compile [quote %s] to
Lua value ".."
('"'..\(%s as lua expr):gsub("\\\\", "\\\\\\\\"):gsub("\n","\\\\n"):gsub('"', '\\\\"')..'"')
compile [type of %obj] to: Lua value "type(\(%obj as lua expr))"
2018-01-10 20:45:03 -08:00
immediately
compile [nomsu] to: Lua value "nomsu"
compile [%var as lua identifier] to: Lua value "nomsu:tree_to_lua(\(%var as lua expr))"
# Compiler tools
immediately
compile [run %code] to
Lua value "nomsu:run(Nomsu(\(quote "\(%code.source)"), \(%code as lua expr)))"
immediately
compile [show lua %block] to
lua> ".."
local \%lua = nomsu:tree_to_lua(\%block);
2018-05-26 15:04:31 -07:00
return Lua(tree.source, "print(", repr(tostring(\%lua)), ");");
immediately
compile [say %message] to
lua> ".."
if \%message.type == "Text" then
2018-05-26 15:04:31 -07:00
return Lua(tree.source, "print(", \(%message as lua expr), ");");
else
return Lua(tree.source, "print(tostring(", \(%message as lua expr), "));");
end
# Return
immediately
2018-05-15 18:55:55 -07:00
# Return statement is wrapped in a do..end block because Lua is unhappy if you
put code after a return statement, unless you wrap it in a block.
2018-04-13 14:54:35 -07:00
compile [return] to: Lua "do return; end"
compile [return %return_value] to: Lua "do return \(%return_value as lua expr); end"
# Error functions
immediately
compile [traceback] to: Lua value "debug.traceback()"
compile [traceback %] to: Lua value "debug.traceback('', \(% as lua expr))"
2018-04-19 17:23:44 -07:00
compile [barf] to: Lua "error(nil, 0);"
compile [barf %msg] to: Lua "error(\(%msg as lua expr), 0);"
compile [assume %condition] to
lua> "local \%assumption = 'Assumption failed: '..tostring(nomsu:tree_to_nomsu(\%condition));"
return
2018-04-13 14:54:35 -07:00
Lua ".."
if not \(%condition as lua expr) then
error(\(quote "\%assumption"), 0);
end
2018-04-13 15:29:16 -07:00
compile [assume %condition or barf %message] to
2018-04-13 15:29:16 -07:00
Lua ".."
if not \(%condition as lua expr) then
error(\(%message as lua expr), 0);
end
# Literals
immediately
compile [yes] to: Lua value "true"
compile [no] to: Lua value "false"
compile [nothing, nil, null] to: Lua value "nil"