2018-07-20 20:27:15 -07:00
|
|
|
#!/usr/bin/env nomsu -V2.5.4.3
|
2018-06-14 22:17:26 -07:00
|
|
|
#
|
|
|
|
This file contains basic error reporting code
|
|
|
|
|
|
|
|
use "core/metaprogramming.nom"
|
2018-07-20 20:27:15 -07:00
|
|
|
|
2018-07-17 23:08:13 -07:00
|
|
|
compile [traceback] to (Lua value "debug.traceback()")
|
|
|
|
compile [traceback %] to (Lua value "debug.traceback('', \(% as lua expr))")
|
|
|
|
compile [barf] to (Lua "error(nil, 0);")
|
|
|
|
compile [barf %msg] to (Lua "error(\(%msg as lua expr), 0);")
|
2018-07-18 17:55:29 -07:00
|
|
|
compile [compile error at %source %msg] to (..)
|
|
|
|
Lua "nomsu:compile_error(\(%source as lua expr), \(%msg as lua expr))"
|
|
|
|
|
2018-07-17 23:08:13 -07:00
|
|
|
compile [assume %condition] to:
|
|
|
|
lua> ".."
|
|
|
|
local \%assumption = 'Assumption failed: '..tostring(nomsu:tree_to_nomsu(\%condition))
|
|
|
|
|
|
|
|
return (..)
|
2018-06-14 22:17:26 -07:00
|
|
|
Lua ".."
|
|
|
|
if not \(%condition as lua expr) then
|
2018-07-10 15:00:01 -07:00
|
|
|
error(\(quote "\%assumption"), 0)
|
2018-06-14 22:17:26 -07:00
|
|
|
end
|
|
|
|
|
2018-07-17 23:08:13 -07:00
|
|
|
compile [assume %condition or barf %message] to (..)
|
2018-06-14 22:17:26 -07:00
|
|
|
Lua ".."
|
|
|
|
if not \(%condition as lua expr) then
|
2018-07-10 15:00:01 -07:00
|
|
|
error(\(%message as lua expr), 0)
|
2018-06-14 22:17:26 -07:00
|
|
|
end
|
2018-06-14 23:25:05 -07:00
|
|
|
|
2018-07-17 23:08:13 -07:00
|
|
|
|
2018-06-14 23:25:05 -07:00
|
|
|
# Try/except
|
2018-06-18 15:44:29 -07:00
|
|
|
compile [..]
|
|
|
|
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-07-17 23:08:13 -07:00
|
|
|
..to (..)
|
2018-06-18 15:44:29 -07:00
|
|
|
Lua ".."
|
|
|
|
do
|
|
|
|
local fell_through = false
|
|
|
|
local err, erred = nil, false
|
|
|
|
local ok, ret = xpcall(function()
|
|
|
|
\(%action as lua statements)
|
|
|
|
fell_through = true
|
|
|
|
end, function(\(%msg as lua expr))
|
|
|
|
local ok, ret = pcall(function()
|
|
|
|
\(%fallback as lua statements)
|
2018-06-14 23:25:05 -07:00
|
|
|
end)
|
2018-06-18 15:44:29 -07:00
|
|
|
if not ok then err, erred = ret, true end
|
|
|
|
end)
|
|
|
|
if ok then
|
|
|
|
\(%success as lua statements)
|
|
|
|
if not fell_through then
|
|
|
|
return ret
|
2018-06-14 23:25:05 -07:00
|
|
|
end
|
2018-06-18 15:44:29 -07:00
|
|
|
elseif erred then
|
|
|
|
error(err, 0)
|
2018-06-14 23:25:05 -07:00
|
|
|
end
|
2018-06-18 15:44:29 -07:00
|
|
|
end
|
|
|
|
|
2018-07-17 23:08:13 -07:00
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2018-06-18 15:44:29 -07:00
|
|
|
parse [..]
|
|
|
|
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-07-17 23:08:13 -07:00
|
|
|
..as (try %action and if it succeeds %success or if it barfs (=lua "") %fallback)
|
|
|
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
parse [try %action] as (..)
|
|
|
|
try %action and if it succeeds (do nothing) or if it barfs (do nothing)
|
|
|
|
|
|
|
|
parse [try %action and if it barfs %fallback] as (..)
|
|
|
|
try %action and if it succeeds (do nothing) or if it barfs %fallback
|
|
|
|
|
|
|
|
parse [try %action and if it barfs %msg %fallback] as (..)
|
|
|
|
try %action and if it succeeds (do nothing) or if it barfs %msg %fallback
|
|
|
|
|
|
|
|
parse [try %action and if it succeeds %success] as (..)
|
|
|
|
try %action and if it succeeds %success or if it barfs (do nothing)
|