nomsu/core/errors.nom

111 lines
3.3 KiB
Plaintext
Raw Normal View History

2018-12-30 19:04:34 -08:00
#!/usr/bin/env nomsu -V6.12.12.8
2018-06-14 22:17:26 -07:00
#
This file contains basic error reporting code
2018-06-14 22:17:26 -07:00
use "core/metaprogramming.nom"
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2018-12-30 19:04:34 -08:00
(barf $msg) compiles to
2018-12-30 23:58:47 -08:00
"error(\(=lua "\$msg and \($msg as lua expr) or 'nil'"), 0);"
2018-12-14 20:21:03 -08:00
(assume $condition) compiles to:
2018-12-30 23:58:47 -08:00
lua> ("
local \$assumption = 'Assumption failed: '..tostring((\$condition):get_source_code())
")
2018-12-30 19:04:34 -08:00
return
Lua ("
2018-12-14 20:21:03 -08:00
if not \($condition as lua expr) then
error(\(quote "\$assumption"), 0)
2018-12-30 19:04:34 -08:00
end
")
2018-06-14 22:17:26 -07:00
2018-12-14 20:21:03 -08:00
(assume $a == $b) compiles to:
lua> "local \$assumption = 'Assumption failed: '..tostring(\(\($a == $b) as nomsu))"
2018-12-30 19:04:34 -08:00
define mangler
2018-12-30 19:04:34 -08:00
return
Lua ("
2018-12-14 20:21:03 -08:00
do
local \(mangle "a"), \(mangle "b") = \($a as lua expr), \($b as lua expr)
if \(mangle "a") ~= \(mangle "b") then
2018-12-30 23:58:47 -08:00
error(\(quote "\$assumption").."\\n"..tostring(\(mangle "a")).." != "..tostring(\
..\(mangle "b")), 0)
end
2018-12-30 19:04:34 -08:00
end
")
2018-12-30 19:04:34 -08:00
(assume $condition or barf $message) compiles to ("
2018-12-14 20:21:03 -08:00
if not \($condition as lua expr) then
error(\($message as lua expr), 0)
2018-12-30 19:04:34 -08:00
end
")
test:
try (barf) and if it succeeds:
barf "try failed."
2018-12-14 20:21:03 -08:00
$worked = (no)
try (barf) and if it barfs:
2018-12-14 20:21:03 -08:00
$worked = (yes)
assume $worked or barf "try/catch failed"
$x = 1
try:
2018-12-14 20:21:03 -08:00
$x = 2
do (barf) then always: $x = 3
..and if it barfs:
do nothing
2018-12-14 20:21:03 -08:00
assume ($x == 3) or barf "do/then always failed"
# Try/except
2018-12-30 19:04:34 -08:00
[
2018-12-14 20:21:03 -08:00
try $action and if it succeeds $success or if it barfs $msg $fallback
try $action and if it barfs $msg $fallback or if it succeeds $success
2018-12-30 19:04:34 -08:00
] all compile to ("
2018-12-14 20:21:03 -08:00
do
local fell_through = false
local err, erred = nil, false
local ok, ret = xpcall(function()
2018-12-14 20:21:03 -08:00
\($action as lua)
fell_through = true
2018-12-14 20:21:03 -08:00
end, function(\(=lua "\$fallback and \($msg as lua expr) or ''"))
local ok, ret = pcall(function()
2018-12-14 20:21:03 -08:00
\((=lua "\$fallback or \$msg") as lua)
2018-06-18 15:44:29 -07:00
end)
if not ok then err, erred = ret, true end
end)
if ok then
2018-12-14 20:21:03 -08:00
\($success as lua)
if not fell_through then
return ret
end
elseif erred then
error(err, 0)
end
2018-12-30 19:04:34 -08:00
end
")
2018-06-18 15:44:29 -07:00
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#
[..]
try %action and if it succeeds %success or if it barfs %fallback
try %action and if it barfs %fallback or if it succeeds %success
..all parse as (..)
try %action and if it succeeds %success or if it barfs (=lua "") %fallback
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2018-12-30 19:04:34 -08:00
(try $action) parses as
2018-12-14 20:21:03 -08:00
try $action and if it succeeds (do nothing) or if it barfs (do nothing)
#(try %action and if it barfs %fallback) parses as (..)
try %action and if it succeeds (do nothing) or if it barfs %fallback
2018-12-30 19:04:34 -08:00
(try $action and if it barfs $msg $fallback) parses as
2018-12-14 20:21:03 -08:00
try $action and if it succeeds (do nothing) or if it barfs $msg $fallback
2018-12-30 19:04:34 -08:00
(try $action and if it succeeds $success) parses as
2018-12-14 20:21:03 -08:00
try $action and if it succeeds $success or if it barfs (do nothing)