nomsu/core/control_flow.nom

440 lines
18 KiB
Plaintext
Raw Normal View History

#..
This file contains compile-time actions that define basic control flow structures
like "if" statements and loops.
use "core/metaprogramming.nom"
use "core/text.nom"
use "core/operators.nom"
# No-Op
2018-01-31 15:31:06 -08:00
immediately:
compile [do nothing] to: Lua ""
# Conditionals
2018-01-31 15:31:06 -08:00
immediately:
compile [if %condition %if_body] to:
Lua ".."
if \(%condition as lua expr) then
\(%if_body as lua statements)
end
parse [unless %condition %unless_body] as: if (not %condition) %unless_body
2017-09-26 15:27:01 -07:00
2018-01-31 15:31:06 -08:00
compile [if %condition %if_body else %else_body, unless %condition %else_body else %if_body] to:
Lua ".."
if \(%condition as lua expr) then
\(%if_body as lua statements)
else
\(%else_body as lua statements)
end
# Conditional expression (ternary operator)
#.. Note: this uses a function instead of "(condition and if_expr or else_expr)"
because that breaks if %if_expr is falsey, e.g. "x < 5 and false or 99"
immediately
compile [..]
%when_true_expr if %condition else %when_false_expr
%when_true_expr if %condition otherwise %when_false_expr
%when_false_expr unless %condition else %when_true_expr
%when_false_expr unless %condition then %when_true_expr
2018-01-31 15:31:06 -08:00
..to:
#.. If %when_true_expr is guaranteed to be truthy, we can use Lua's idiomatic
equivalent of a conditional expression: (cond and if_true or if_false)
2018-04-08 16:01:18 -07:00
if: %when_true_expr.type in {Text:yes, List:yes, Dict:yes, Number:yes}
return:
Lua ".."
(\(%condition as lua expr) and \(%when_true_expr as lua expr) or \(%when_false_expr as lua expr))
2018-01-31 15:31:06 -08:00
..else:
#.. Otherwise, need to do an anonymous inline function (yuck, too bad lua
doesn't have a proper ternary operator!)
To see why this is necessary consider: (random()<.5 and false or 99)
return:
Lua ".."
(function()
if \(%condition as lua expr) then
return \(%when_true_expr as lua expr);
else
return \(%when_false_expr as lua expr);
end
end)()
# GOTOs
2018-01-31 15:31:06 -08:00
immediately:
compile [=== %label ===, --- %label ---, *** %label ***] to
Lua "::label_\(%label as lua identifier)::;"
compile [go to %label] to
Lua "goto label_\(%label as lua identifier);"
# Basic loop control
2018-01-31 15:31:06 -08:00
immediately:
compile [do next] to: Lua "continue;"
compile [stop] to: Lua "break;"
# Helper function
2018-01-31 15:31:06 -08:00
immediately:
compile [if %tree has subtree %subtree where %condition %body] to:
Lua ".."
for \(%subtree as lua expr) in coroutine.wrap(function() nomsu:walk_tree(\(%tree as lua expr)) end) do
if Types.is_node(\(%subtree as lua expr)) then
if \(%condition as lua expr) then
\(%body as lua statements)
break;
end
end
end
# While loops
2018-01-31 15:31:06 -08:00
immediately:
compile [do next repeat] to: Lua "goto continue_repeat;"
compile [stop repeating] to: Lua "goto stop_repeat;"
compile [repeat while %condition %body] to
%lua <-: Lua "while \(%condition as lua expr) do"
2018-01-31 15:31:06 -08:00
if %body has subtree % where:
(%.type = "Action") and ((%'s stub) is "do next repeat")
..:
%lua <-write "\n::continue_repeat::;"
%lua <-write "\n"
%lua <-write (%body as lua statements)
%lua <-write "\nend --while-loop"
2018-01-31 15:31:06 -08:00
if %body has subtree % where:
(%.type = "Action") and ((%'s stub) is "stop repeating")
2018-01-31 15:31:06 -08:00
..:
%lua <- ".."
do -- scope of "stop repeating" label
\%lua
::stop_repeat::;
end -- end of "stop repeating" label scope
return %lua
2018-01-19 18:13:02 -08:00
parse [repeat %body] as: repeat while (yes) %body
parse [repeat until %condition %body] as: repeat while (not %condition) %body
compile [..]
repeat %n times %body
2018-01-31 15:31:06 -08:00
..to:
%lua <-: Lua "for i=1,\(%n as lua expr) do"
if %body has subtree % where
(%.type = "Action") and ((%'s stub) is "do next repeat")
..: %lua <-write "\n::continue_repeat::;"
%lua <-write "\n\(%body as lua statements)\nend --numeric for-loop"
2018-01-31 15:31:06 -08:00
if %body has subtree % where:
(%.type = "Action") and ((%'s stub) is "stop repeating")
2018-01-31 15:31:06 -08:00
..:
%lua <-:
Lua ".."
do -- scope of "stop repeating" label
\%lua
::stop_repeat::;
end -- end of "stop repeating" label scope
return %lua
# For loop control flow:
2018-01-31 15:31:06 -08:00
immediately:
compile [stop %var] to
Lua "goto stop_\(%var as lua identifier);"
compile [do next %var] to
Lua "goto continue_\(%var as lua identifier);"
# Numeric range for loops
2018-01-31 15:31:06 -08:00
immediately:
compile [..]
for %var from %start to %stop by %step %body
for %var from %start to %stop via %step %body
2018-01-31 15:31:06 -08:00
..to:
# This uses Lua's approach of only allowing loop-scoped variables in a loop
assume (%var.type is "Var") or barf "Loop expected variable, not: \(%var's source code)"
%lua <-
Lua ".."
for \(%var as lua expr)=\(%start as lua expr),\(%n as lua expr) do
2018-01-31 15:31:06 -08:00
if %body has subtree % where:
(%.type = "Action") and
((%'s stub) is "do next %") and
2018-04-08 16:01:18 -07:00
%.value.3.value is %var.value
..: %lua <-write "\n::continue_\(%var as lua identifier)::;"
%lua <-write "\n\(%body as lua statements)\nend --numeric for-loop"
2018-01-31 15:31:06 -08:00
if %body has subtree % where:
(%.type = "Action") and:
((%'s stub) is "stop %") and:
2018-04-08 16:01:18 -07:00
%.value.2.value is %var.value
2018-01-31 15:31:06 -08:00
..:
%lua <-write ".."
do -- scope for stopping for-loop
\%lua
::stop_\(%var as lua identifier)::;
end -- end of scope for stopping for-loop
return %lua
2018-01-31 15:31:06 -08:00
immediately:
parse [for %var from %start to %stop %body] as: for %var from %start to %stop via 1 %body
parse [..]
for all %start to %stop by %step %body
for all %start to %stop via %step %body
..as: for % from %start to %stop via %step %body
parse [for all %start to %stop %body] as: for all %start to %stop via 1 %body
2017-09-26 15:27:01 -07:00
# For-each loop (lua's "ipairs()")
2018-01-31 15:31:06 -08:00
immediately:
compile [for %var in %iterable %body] to:
# This uses Lua's approach of only allowing loop-scoped variables in a loop
assume (%var.type is "Var") or barf "Loop expected variable, not: \(%var's source code)"
%lua <-: Lua "for i,\(%var as lua identifier) in ipairs(\(%iterable as lua expr)) do"
2018-01-31 15:31:06 -08:00
if %body has subtree % where:
(%.type = "Action") and
((%'s stub) is "do next %") and
2018-04-08 16:01:18 -07:00
%.value.3.value is %var.value
..: %lua <-write (Lua "\n::continue_\(%var as lua identifier)::;")
%lua <-write (Lua "\n\(%body as lua statements)\nend --foreach-loop")
2018-01-31 15:31:06 -08:00
if %body has subtree % where:
(%.type = "Action") and
((%'s stub) is "stop %") and
2018-04-08 16:01:18 -07:00
%.value.2.value is %var.value
2018-01-31 15:31:06 -08:00
..:
%lua <-
Lua ".."
do -- scope for stopping for-loop
\%lua
::stop_\(%var as lua identifier)::;
end -- end of scope for stopping for-loop
return %lua
parse [for all %iterable %body] as: for % in %iterable %body
# Dict iteration (lua's "pairs()")
2018-01-31 15:31:06 -08:00
immediately:
compile [for %key = %value in %iterable %body] to:
# This uses Lua's approach of only allowing loop-scoped variables in a loop
assume (%key.type is "Var") or barf "Loop expected variable, not: \(%key's source code)"
assume (%value.type is "Var") or barf "Loop expected variable, not: \(%value's source code)"
%lua <- (Lua "for \(%key as lua identifier),\(%value as lua identifier) in pairs(\(%iterable as lua expr)) do")
2018-01-31 15:31:06 -08:00
if %body has subtree % where:
(%.type = "Action") and
((%'s stub) is "do next %") and
2018-04-08 16:01:18 -07:00
%.value.3.value is %key.value
..: %lua <-write (Lua "\n::continue_\(%key as lua identifier)::;")
2018-01-31 15:31:06 -08:00
if %body has subtree % where:
(%.type = "Action") and
((%'s stub) is "do next %") and
2018-04-08 16:01:18 -07:00
%.value.3.value is %value.value
..: %lua <-write (Lua "\n::continue_\(%value as lua identifier)::;")
%lua <-write (Lua "\n\(%body as lua statements)\nend --foreach-loop")
%stop_labels <- ""
2018-01-31 15:31:06 -08:00
if %body has subtree % where:
(%.type = "Action") and
((%'s stub) is "stop %") and
2018-04-08 16:01:18 -07:00
%.value.2.value is %key.value
..: %stop_labels <-write "\n::stop_\(%key as lua identifier)::;"
2018-01-31 15:31:06 -08:00
if %body has subtree % where:
(%.type = "Action") and
((%'s stub) is "stop %") and
2018-04-08 16:01:18 -07:00
%.value.2.value is %value.value
..: %stop_labels <-write "\n::stop_\(%value as lua identifier)::;"
if: %stop_labels is not ""
%lua <-
Lua ".."
do -- scope for stopping for % = % loop
\%lua\%stop_labels
end
return %lua
# Switch statement/multi-branch if
2018-01-31 15:31:06 -08:00
immediately:
compile [when %body] to:
%code <- ""
%fallthroughs <- []
%locals <- []
%is_first <- (yes)
%seen_else <- (no)
2018-04-08 16:01:18 -07:00
for %func_call in %body.value:
assume (%func_call.type is "Action") or barf ".."
Invalid format for 'when' statement. Only '*' blocks are allowed.
with {..}
%tokens: %func_call.value
%star: %tokens.1
%condition: %tokens.2
%action: %tokens.3
2018-01-31 15:31:06 -08:00
..:
assume (=lua "\%star and \%star.type == 'Word' and \%star.value == '*'") or barf ".."
Invalid format for 'when' statement. Lines must begin with '*'
assume %condition or barf ".."
Invalid format for 'when' statement. Lines must begin with '*' and have a condition or the word "else"
if: %action is (nil)
lua> "table.insert(\%fallthroughs, \(%condition as lua expr));"
do next %func_call
%action <- (%action as lua)
2018-04-08 16:01:18 -07:00
%action_statements <- (%action.statements or "\(%action.expr);")
for %local in (%action.locals or []):
lua> "table.insert(\%locals, \%local);"
if: =lua "\%condition.type == 'Word' and \%condition.value == 'else'"
assume (not %is_first) or barf "'else' clause cannot be first in 'when % = ?' block"
%code <-write ".."
else
\%action_statements
%seen_else <- (yes)
2018-01-31 15:31:06 -08:00
..else:
assume (not %seen_else) or barf "'else' clause needs to be last in 'when' block"
lua> "table.insert(\%fallthroughs, \(%condition as lua expr));"
%condition_code <- (%fallthroughs joined with " or ")
%code <-write ".."
\("if" if %is_first else "elseif") \%condition_code then
\%action_statements
%fallthroughs <- []
%is_first <- (no)
assume (%fallthroughs = []) or barf "Unfinished fallthrough conditions in 'when' block"
if: %code is not ""
%code <-write "\nend"
lua> "utils.deduplicate(\%locals);"
return {statements:%code, locals:%locals}
# Switch statement
2018-01-31 15:31:06 -08:00
immediately:
compile [when %branch_value = ? %body, when %branch_value is ? %body] to:
%code <- ""
%fallthroughs <- []
%locals <- []
%is_first <- (yes)
%seen_else <- (no)
2018-04-08 16:01:18 -07:00
for %func_call in %body.value:
assume (%func_call.type is "Action") or barf ".."
Invalid format for 'when' statement. Only '*' blocks are allowed.
2018-04-08 16:01:18 -07:00
%tokens <- %func_call.value
with {%star:%tokens.1, %condition:%tokens.2, %action:%tokens.3}:
assume (=lua "\%star and \%star.type == 'Word' and \%star.value == '*'") or barf ".."
Invalid format for 'when' statement. Lines must begin with '*'
assume %condition or barf ".."
Invalid format for 'when' statement. Lines must begin with '*' and have a condition or the word "else"
if: %action is (nil)
lua> "table.insert(\%fallthroughs, \(%condition as lua expr))"
do next %func_call
%action <- (%action as lua)
2018-04-08 16:01:18 -07:00
%action_statements <- (%action.statements or "\(%action.expr);")
for %local in (%action.locals or []):
lua> "table.insert(\%locals, \%local);"
if: =lua "\%condition.type == 'Word' and \%condition.value == 'else'"
assume (not %is_first) or barf "'else' clause cannot be first in 'when % = ?' block"
%code <-write ".."
else
\%action_statements
end
%seen_else <- (yes)
2018-01-31 15:31:06 -08:00
..else:
assume (not %seen_else) or barf "'else' clause needs to be last in 'when % = ?' block"
lua> "table.insert(\%fallthroughs, \(%condition as lua expr));"
for %i = % in %fallthroughs
2018-04-08 16:01:18 -07:00
if: (%.type is "Text") or (%.type is "Number")
(%i'th in %fallthroughs) <- "branch_value == \%"
..else
(%i'th in %fallthroughs) <- "utils.equivalent(branch_value, \%)"
%clause <- (%fallthroughs joined with " or ")
%code <-write ".."
\("if" if %is_first else "elseif") \%clause then
\%action_statements
%fallthroughs <- []
%is_first <- (no)
assume (%fallthroughs = []) or barf "Unfinished fallthrough conditions in 'when' block"
assume (%code is not "") or barf "No body for 'when % = ?' block!"
unless %seen_else
%code <-write "\nend"
%code <- ".."
do --when % = ?
local branch_value = \(%branch_value as lua expr);\
..\%code
end --when % = ?
lua> "utils.deduplicate(\%locals);"
return {statements:%code, locals:%locals}
2017-10-12 14:39:03 -07:00
# Try/except
2018-01-31 15:31:06 -08:00
immediately:
compile [..]
try %action and if it succeeds %success or if it barfs %fallback
try %action and if it barfs %fallback or if it succeeds %success
2018-01-31 15:31:06 -08:00
..to:
%locals <- []
%action_lua <- (%action as lua)
%success_lua <- (%success as lua)
%fallback_lua <- (%fallback as lua)
%fallback <- (%fallback as lua)
2018-01-31 15:31:06 -08:00
for %block in [%action_lua, %success_lua, %fallback_lua]:
2018-04-08 16:01:18 -07:00
for %local in (%block.locals or []):
lua> "table.insert(\%locals, \%local);"
lua> "utils.deduplicate(\%locals);"
return {..}
locals: %locals
statements: ".."
do
local fell_through = false;
local ok, ret = pcall(function()
2018-04-08 16:01:18 -07:00
\(%action_lua.statements or "\(%action_lua.expr);")
fell_through = true;
end);
if ok then
2018-04-08 16:01:18 -07:00
\(%success_lua.statements or "\(%success_lua.expr);")
end
if not ok then
2018-04-08 16:01:18 -07:00
\(%fallback_lua.statements or "\(%fallback_lua.expr);")
elseif not fell_through then
return ret;
end
end
2018-01-31 15:31:06 -08:00
parse [try %action] as:
try %action and if it succeeds: do nothing
..or if it barfs: do nothing
2018-01-31 15:31:06 -08:00
parse [try %action and if it barfs %fallback] as:
try %action and if it succeeds: do nothing
..or if it barfs %fallback
2018-01-31 15:31:06 -08:00
parse [try %action and if it succeeds %success] as:
try %action and if it succeeds %success or if it barfs: do nothing
# Do/finally:
2018-01-31 15:31:06 -08:00
immediately:
compile [do %action] to:
%action <- (%action as lua)
return {..}
2018-04-08 16:01:18 -07:00
locals: %action.locals
statements: ".."
do
2018-04-08 16:01:18 -07:00
\(%action.statements or "\(%action.expr);")
end
2018-01-31 15:31:06 -08:00
compile [do %action then always %final_action] to:
%action <- (%action as lua)
%final_action <- (%final_action as lua)
%locals <- []
2018-04-08 16:01:18 -07:00
for %sub_locals in [%action.locals, %final_action.locals]:
2018-01-31 15:31:06 -08:00
for %local in %sub_locals:
lua> "table.insert(\%locals, \%local);"
lua> "utils.deduplicate(\%locals);"
return {..}
locals: %locals
statements: ".."
do
local fell_through = false;
local ok, ret1 = pcall(function()
2018-04-08 16:01:18 -07:00
\(%action.statements or "\(%action.expr);")
fell_through = true;
end);
local ok2, ret2 = pcall(function()
2018-04-08 16:01:18 -07:00
\(%final_action.statements or "\(%final_action.expr);")
end);
if not ok then error(ret1); end
if not ok2 then error(ret2); end
if not fell_through then
return ret1;
end
end