2019-01-15 15:53:31 -08:00
|
|
|
#!/usr/bin/env nomsu -V6.15.13.8
|
2018-06-14 22:17:26 -07:00
|
|
|
#
|
|
|
|
This file contains basic error reporting code
|
2018-11-11 15:50:46 -08:00
|
|
|
|
2019-01-10 16:33:37 -08:00
|
|
|
use "core/metaprogramming"
|
|
|
|
use "core/operators"
|
2019-01-14 15:42:48 -08:00
|
|
|
use "core/control_flow"
|
2018-07-20 20:27:15 -07:00
|
|
|
|
2018-11-08 15:23:22 -08:00
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2019-01-18 14:22:17 -08:00
|
|
|
(fail $msg) compiles to ("
|
|
|
|
at_1_fail(\(quote (this tree).source), 'Failure: \(
|
|
|
|
"'..\($msg as lua expr)" if $msg else "A failure was triggered here'"
|
|
|
|
))
|
|
|
|
")
|
2019-01-16 16:31:49 -08:00
|
|
|
|
2019-01-22 16:15:25 -08:00
|
|
|
(assume $condition) compiles to:
|
|
|
|
if ($condition.type == "Action"):
|
|
|
|
when $condition.stub is:
|
|
|
|
"1 ==":
|
|
|
|
return
|
|
|
|
LuaCode ("
|
|
|
|
do
|
|
|
|
local _a, _b = \($condition.1 as lua expr), \($condition.3 as lua expr)
|
|
|
|
if _a ~= _b then
|
|
|
|
_a = type_of(_a) == 'Text' and _a:as_lua() or tostring(_a)
|
|
|
|
_b = type_of(_b) == 'Text' and _b:as_lua() or tostring(_b)
|
|
|
|
at_1_fail(\(quote "\($condition.1.source)"),
|
|
|
|
"Assumption failed: This value was ".._a.." but it was expected to be ".._b..".")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
")
|
|
|
|
"1 !=":
|
|
|
|
return
|
|
|
|
LuaCode ("
|
|
|
|
do
|
|
|
|
local _a, _b = \($condition.1 as lua expr), \($condition.3 as lua expr)
|
|
|
|
if _a == _b then
|
|
|
|
_a = type_of(_a) == 'Text' and _a:as_lua() or tostring(_a)
|
|
|
|
at_1_fail(\(quote "\($condition.1.source)"),
|
|
|
|
"Assumption failed: This value was ".._a.." but it wasn't expected to be.")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
")
|
|
|
|
"1 >" "1 <" "1 >=" "1 <=":
|
|
|
|
return
|
|
|
|
LuaCode ("
|
|
|
|
do
|
|
|
|
local _a, _b = \($condition.1 as lua expr), \($condition.3 as lua expr)
|
|
|
|
if _a ~= _b then
|
|
|
|
_a = type_of(_a) == 'Text' and _a:as_lua() or tostring(_a)
|
|
|
|
_b = type_of(_b) == 'Text' and _b:as_lua() or tostring(_b)
|
|
|
|
at_1_fail(\(quote "\($condition.1.source)"),
|
|
|
|
"Assumption failed: This value was ".._a..", but it was expected to be \($condition.3)".._b..".")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
")
|
|
|
|
"1 is":
|
|
|
|
return
|
|
|
|
LuaCode ("
|
|
|
|
do
|
|
|
|
local _ta, _tb = type_of(\($condition.1 as lua expr)), \($condition.3 as lua expr)
|
|
|
|
if _ta ~= _tb then
|
|
|
|
at_1_fail(\(quote "\($condition.1.source)"),
|
|
|
|
"Assumption failed: This value was ".._ta.." but it was expected to be ".._tb..".")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
")
|
|
|
|
return
|
|
|
|
LuaCode ("
|
|
|
|
if not \($condition as lua expr) then
|
|
|
|
at_1_fail(\(quote "\($condition.source)"), "Assumption failed: This assumption did not hold.")
|
|
|
|
end
|
|
|
|
")
|
2018-06-14 22:17:26 -07:00
|
|
|
|
2019-01-22 16:15:25 -08:00
|
|
|
(assume $a == $b) parses as (assume ($a == $b))
|
|
|
|
(assume $a != $b) parses as (assume ($a != $b))
|
2018-09-10 15:55:34 -07:00
|
|
|
|
2018-07-22 13:59:08 -07:00
|
|
|
test:
|
2019-01-01 15:05:58 -08:00
|
|
|
try: fail
|
2018-12-14 20:21:03 -08:00
|
|
|
$worked = (no)
|
2019-01-01 17:15:51 -08:00
|
|
|
try:
|
|
|
|
fail "xx"
|
|
|
|
..if it fails with $failure:
|
2018-12-14 20:21:03 -08:00
|
|
|
$worked = (yes)
|
2019-01-01 15:05:58 -08:00
|
|
|
..if it succeeds:
|
|
|
|
fail "'try' incorrectly ran success case."
|
2019-01-16 16:31:49 -08:00
|
|
|
assume ($failure, matches "xx")
|
2019-01-01 15:05:58 -08:00
|
|
|
unless $worked:
|
|
|
|
fail "'try' failed to recover from failure"
|
2019-01-01 17:15:51 -08:00
|
|
|
|
2018-06-14 23:25:05 -07:00
|
|
|
# Try/except
|
2018-12-30 19:04:34 -08:00
|
|
|
[
|
2019-01-01 17:15:51 -08:00
|
|
|
try $action if it succeeds $success if it fails with $msg $fallback
|
|
|
|
try $action if it fails with $msg $fallback if it succeeds $success
|
2019-01-01 15:05:58 -08:00
|
|
|
] all compile to:
|
|
|
|
$success_lua = ($success as lua)
|
2019-01-01 17:15:51 -08:00
|
|
|
if ((#"\$success_lua") > 0):
|
|
|
|
$success_lua, add "\n"
|
2019-01-01 15:05:58 -08:00
|
|
|
$success_lua, prepend "-- Success:\n"
|
2019-01-01 17:15:51 -08:00
|
|
|
$success_lua,
|
|
|
|
add "if not _fell_through then return table.unpack(_result, 2) end"
|
2019-01-01 15:05:58 -08:00
|
|
|
$fallback_lua = ($fallback as lua)
|
|
|
|
if ((#"\$fallback_lua") > 0):
|
2019-01-01 17:15:51 -08:00
|
|
|
$msg_lua = ($msg as lua expr)
|
|
|
|
if ((#"\$msg_lua") > 0):
|
|
|
|
$fallback_lua, prepend "\n\$msg_lua = _result[2]\n"
|
|
|
|
if ($msg_lua, text, is lua id):
|
|
|
|
$fallback_lua, add free vars [($msg_lua, text)]
|
2019-01-14 17:48:39 -08:00
|
|
|
$fallback_lua, prepend "-- Failure:\n"
|
2019-01-01 15:05:58 -08:00
|
|
|
return
|
|
|
|
Lua ("
|
|
|
|
do
|
|
|
|
local _fell_through = false
|
2019-01-18 20:46:04 -08:00
|
|
|
local _result = {xpcall(function()
|
2019-01-01 15:05:58 -08:00
|
|
|
\($action as lua)
|
|
|
|
_fell_through = true
|
2019-01-18 20:46:04 -08:00
|
|
|
end, enhance_error)}
|
2019-01-01 15:05:58 -08:00
|
|
|
if _result[1] then
|
|
|
|
\$success_lua
|
|
|
|
else
|
|
|
|
\$fallback_lua
|
|
|
|
end
|
2018-06-14 23:25:05 -07:00
|
|
|
end
|
2019-01-01 15:05:58 -08:00
|
|
|
")
|
2018-06-18 15:44:29 -07:00
|
|
|
|
2018-07-17 23:08:13 -07:00
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2018-12-30 19:04:34 -08:00
|
|
|
(try $action) parses as
|
2019-01-01 15:05:58 -08:00
|
|
|
try $action if it succeeds (do nothing) if it fails (do nothing)
|
|
|
|
|
2019-01-01 17:15:51 -08:00
|
|
|
(try $action if it fails $fallback) parses as
|
|
|
|
try $action if it succeeds (do nothing) if it fails $fallback
|
|
|
|
|
|
|
|
(try $action if it fails with $msg $fallback) parses as
|
|
|
|
try $action if it succeeds (do nothing) if it fails with $msg $fallback
|
2019-01-01 15:05:58 -08:00
|
|
|
|
|
|
|
(try $action if it succeeds $success) parses as
|
|
|
|
try $action if it succeeds $success if it fails (do nothing)
|
|
|
|
|
|
|
|
(try $action if it fails $fallback if it succeeds $success) parses as
|
2019-01-01 17:15:51 -08:00
|
|
|
try $action if it fails with (=lua "") $fallback if it succeeds $success
|
|
|
|
|
|
|
|
(try $action if it succeeds $success if it fails $fallback) parses as
|
|
|
|
try $action if it succeeds $success if it fails with (=lua "") $fallback
|
2019-01-01 15:05:58 -08:00
|
|
|
|
|
|
|
test:
|
|
|
|
$success = (no)
|
|
|
|
try:
|
|
|
|
do: fail
|
|
|
|
..then always:
|
|
|
|
$success = (yes)
|
|
|
|
..if it succeeds:
|
|
|
|
fail "'try ... then always ...' didn't propagate failure"
|
|
|
|
|
|
|
|
unless $success:
|
|
|
|
fail "'try ... then always ...' didn't execute the 'always' code"
|
|
|
|
|
|
|
|
(do $action then always $final_action) compiles to ("
|
|
|
|
do -- do/then always
|
|
|
|
local _fell_through = false
|
2019-01-18 20:46:04 -08:00
|
|
|
local _results = {xpcall(function()
|
2019-01-01 15:05:58 -08:00
|
|
|
\($action as lua)
|
|
|
|
_fell_through = true
|
2019-01-18 20:46:04 -08:00
|
|
|
end, enhance_error)}
|
2019-01-01 15:05:58 -08:00
|
|
|
\($final_action as lua)
|
|
|
|
if not _results[1] then error(_results[2], 0) end
|
|
|
|
if not _fell_through then return table.unpack(_results, 2) end
|
|
|
|
end
|
|
|
|
")
|