Tidying up error handling and REPL.
This commit is contained in:
parent
7deed5af41
commit
c1cec2ac84
@ -49,8 +49,8 @@ debug.getinfo = function(thread, f, what)
|
|||||||
end
|
end
|
||||||
return info
|
return info
|
||||||
end
|
end
|
||||||
local print_err_msg
|
local print_error
|
||||||
print_err_msg = function(error_message, stack_offset)
|
print_error = function(error_message, stack_offset)
|
||||||
if stack_offset == nil then
|
if stack_offset == nil then
|
||||||
stack_offset = 3
|
stack_offset = 3
|
||||||
end
|
end
|
||||||
@ -194,13 +194,17 @@ print_err_msg = function(error_message, stack_offset)
|
|||||||
end
|
end
|
||||||
return io.stderr:flush()
|
return io.stderr:flush()
|
||||||
end
|
end
|
||||||
local err_hand
|
local error_handler
|
||||||
err_hand = function(error_message)
|
error_handler = function(error_message)
|
||||||
print_err_msg(error_message)
|
print_error(error_message)
|
||||||
return os.exit(false, true)
|
return os.exit(false, true)
|
||||||
end
|
end
|
||||||
local safe_run
|
local run_safely
|
||||||
safe_run = function(fn)
|
run_safely = function(fn)
|
||||||
return xpcall(fn, err_hand)
|
return xpcall(fn, error_handler)
|
||||||
end
|
end
|
||||||
return safe_run
|
return {
|
||||||
|
run_safely = run_safely,
|
||||||
|
print_error = print_error,
|
||||||
|
error_handler = error_handler
|
||||||
|
}
|
||||||
|
@ -32,7 +32,7 @@ debug.getinfo = (thread,f,what)->
|
|||||||
info.short_src = info.source\match('@([^[]*)') or info.short_src
|
info.short_src = info.source\match('@([^[]*)') or info.short_src
|
||||||
return info
|
return info
|
||||||
|
|
||||||
print_err_msg = (error_message, stack_offset=3)->
|
print_error = (error_message, stack_offset=3)->
|
||||||
io.stderr\write("#{colored.red "ERROR:"} #{colored.bright colored.red (error_message or "")}\n")
|
io.stderr\write("#{colored.red "ERROR:"} #{colored.bright colored.red (error_message or "")}\n")
|
||||||
io.stderr\write("stack traceback:\n")
|
io.stderr\write("stack traceback:\n")
|
||||||
|
|
||||||
@ -120,11 +120,11 @@ print_err_msg = (error_message, stack_offset=3)->
|
|||||||
|
|
||||||
io.stderr\flush!
|
io.stderr\flush!
|
||||||
|
|
||||||
err_hand = (error_message)->
|
error_handler = (error_message)->
|
||||||
print_err_msg error_message
|
print_error error_message
|
||||||
os.exit(false, true)
|
os.exit(false, true)
|
||||||
|
|
||||||
safe_run = (fn)->
|
run_safely = (fn)->
|
||||||
xpcall(fn, err_hand)
|
xpcall(fn, error_handler)
|
||||||
|
|
||||||
return safe_run
|
return {:run_safely, :print_error, :error_handler}
|
||||||
|
13
nomsu.lua
13
nomsu.lua
@ -15,7 +15,7 @@ OPTIONS
|
|||||||
]=]
|
]=]
|
||||||
local lpeg = require('lpeg')
|
local lpeg = require('lpeg')
|
||||||
local re = require('re')
|
local re = require('re')
|
||||||
local run_safely = require("error_handling")
|
local Errhand = require("error_handling")
|
||||||
local NomsuCompiler = require("nomsu_compiler")
|
local NomsuCompiler = require("nomsu_compiler")
|
||||||
local NomsuCode, LuaCode, Source
|
local NomsuCode, LuaCode, Source
|
||||||
do
|
do
|
||||||
@ -173,16 +173,17 @@ run = function()
|
|||||||
break
|
break
|
||||||
end
|
end
|
||||||
buff = table.concat(buff)
|
buff = table.concat(buff)
|
||||||
FILE_CACHE["REPL#" .. repl_line] = buff
|
local pseudo_filename = "user input #" .. repl_line
|
||||||
|
FILE_CACHE[pseudo_filename] = buff
|
||||||
local err_hand
|
local err_hand
|
||||||
err_hand = function(error_message)
|
err_hand = function(error_message)
|
||||||
return print_err_msg(error_message)
|
return Errhand.print_error(error_message)
|
||||||
end
|
end
|
||||||
local ok, ret = xpcall(nomsu.run, err_hand, nomsu, buff, Source("REPL#" .. repl_line, 1, #buff))
|
local ok, ret = xpcall(nomsu.run, err_hand, nomsu, buff, Source(pseudo_filename, 1, #buff))
|
||||||
if ok and ret ~= nil then
|
if ok and ret ~= nil then
|
||||||
print("= " .. repr(ret))
|
print("= " .. repr(ret))
|
||||||
elseif not ok then
|
elseif not ok then
|
||||||
print_err_msg(ret)
|
Errhand.print_error(ret)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@ -191,5 +192,5 @@ local has_ldt, ldt = pcall(require, 'ldt')
|
|||||||
if has_ldt then
|
if has_ldt then
|
||||||
return ldt.guard(run)
|
return ldt.guard(run)
|
||||||
else
|
else
|
||||||
return run_safely(run)
|
return Errhand.run_safely(run)
|
||||||
end
|
end
|
||||||
|
13
nomsu.moon
13
nomsu.moon
@ -19,7 +19,7 @@ OPTIONS
|
|||||||
|
|
||||||
lpeg = require 'lpeg'
|
lpeg = require 'lpeg'
|
||||||
re = require 're'
|
re = require 're'
|
||||||
run_safely = require "error_handling"
|
Errhand = require "error_handling"
|
||||||
NomsuCompiler = require "nomsu_compiler"
|
NomsuCompiler = require "nomsu_compiler"
|
||||||
{:NomsuCode, :LuaCode, :Source} = require "code_obj"
|
{:NomsuCode, :LuaCode, :Source} = require "code_obj"
|
||||||
STDIN, STDOUT, STDERR = "/dev/fd/0", "/dev/fd/1", "/dev/fd/2"
|
STDIN, STDOUT, STDERR = "/dev/fd/0", "/dev/fd/1", "/dev/fd/2"
|
||||||
@ -148,17 +148,18 @@ run = ->
|
|||||||
break -- Exit
|
break -- Exit
|
||||||
|
|
||||||
buff = table.concat(buff)
|
buff = table.concat(buff)
|
||||||
FILE_CACHE["REPL#"..repl_line] = buff
|
pseudo_filename = "user input #"..repl_line
|
||||||
|
FILE_CACHE[pseudo_filename] = buff
|
||||||
err_hand = (error_message)->
|
err_hand = (error_message)->
|
||||||
print_err_msg error_message
|
Errhand.print_error error_message
|
||||||
ok, ret = xpcall(nomsu.run, err_hand, nomsu, buff, Source("REPL#"..repl_line, 1, #buff))
|
ok, ret = xpcall(nomsu.run, err_hand, nomsu, buff, Source(pseudo_filename, 1, #buff))
|
||||||
if ok and ret != nil
|
if ok and ret != nil
|
||||||
print "= "..repr(ret)
|
print "= "..repr(ret)
|
||||||
elseif not ok
|
elseif not ok
|
||||||
print_err_msg ret
|
Errhand.print_error ret
|
||||||
|
|
||||||
has_ldt, ldt = pcall(require,'ldt')
|
has_ldt, ldt = pcall(require,'ldt')
|
||||||
if has_ldt
|
if has_ldt
|
||||||
ldt.guard(run)
|
ldt.guard(run)
|
||||||
else
|
else
|
||||||
run_safely(run)
|
Errhand.run_safely(run)
|
||||||
|
Loading…
Reference in New Issue
Block a user