2018-03-13 02:02:51 -07:00
|
|
|
C = require "curses"
|
2018-03-17 18:47:01 -07:00
|
|
|
re = require 're'
|
2018-03-13 02:02:51 -07:00
|
|
|
repr = require 'repr'
|
2018-03-14 16:10:17 -07:00
|
|
|
local run_debugger, guard, stdscr
|
2018-03-14 18:45:32 -07:00
|
|
|
AUTO = {}
|
2018-03-13 02:55:03 -07:00
|
|
|
log = io.open("output.log", "w")
|
2018-03-13 02:02:51 -07:00
|
|
|
|
|
|
|
-- Return the callstack index of the code that actually caused an error and the max index
|
|
|
|
callstack_range = ->
|
|
|
|
min, max = 0, -1
|
|
|
|
for i=1,999 do
|
2018-03-13 02:55:03 -07:00
|
|
|
info = debug.getinfo(i, 'f')
|
2018-03-13 03:50:18 -07:00
|
|
|
if not info
|
|
|
|
min = i-1
|
|
|
|
break
|
2018-03-14 16:10:17 -07:00
|
|
|
if info.func == run_debugger
|
2018-03-13 03:44:03 -07:00
|
|
|
min = i+1
|
2018-03-13 02:02:51 -07:00
|
|
|
break
|
|
|
|
for i=min,999
|
2018-03-13 02:55:03 -07:00
|
|
|
info = debug.getinfo(i, 'f')
|
2018-03-13 03:50:18 -07:00
|
|
|
if not info or info.func == guard
|
2018-03-15 15:30:43 -07:00
|
|
|
max = i-0
|
2018-03-13 02:02:51 -07:00
|
|
|
break
|
|
|
|
return min, max
|
|
|
|
|
2018-03-13 04:18:28 -07:00
|
|
|
|
2018-03-13 03:44:03 -07:00
|
|
|
wrap_text = (text, width)->
|
|
|
|
lines = {}
|
|
|
|
for line in text\gmatch("[^\n]*")
|
2018-03-13 04:18:28 -07:00
|
|
|
while #line > width
|
|
|
|
table.insert(lines, line\sub(1,width))
|
|
|
|
line = line\sub(width+1,-1)
|
|
|
|
if #line > 0
|
|
|
|
table.insert(lines, line)
|
2018-03-13 03:44:03 -07:00
|
|
|
return lines
|
|
|
|
|
2018-03-13 23:53:06 -07:00
|
|
|
|
2018-03-13 02:02:51 -07:00
|
|
|
class Pad
|
2018-03-19 20:32:09 -07:00
|
|
|
new: (@label,@y,@x,height,width,...)=>
|
2018-03-14 18:45:32 -07:00
|
|
|
@scroll_y, @scroll_x = 1, 1
|
2018-03-13 02:02:51 -07:00
|
|
|
@selected = nil
|
2018-03-13 02:55:03 -07:00
|
|
|
|
2018-03-19 20:32:09 -07:00
|
|
|
@columns = {}
|
|
|
|
@column_widths = {}
|
|
|
|
@active_frame = color("blue bold")
|
|
|
|
@inactive_frame = color("blue dim")
|
|
|
|
@colors = {}
|
|
|
|
for i=1,select('#',...)-1,2
|
|
|
|
col = select(i, ...)
|
|
|
|
table.insert(@columns, col)
|
|
|
|
w = 0
|
|
|
|
for chunk in *col do w = math.max(w, #chunk)
|
|
|
|
table.insert(@column_widths, w)
|
|
|
|
color_fn = select(i+1,...) or ((i)=>color())
|
|
|
|
assert(type(color_fn) == 'function', "Invalid color function type: #{type color_fn}")
|
|
|
|
table.insert(@colors, color_fn)
|
|
|
|
|
|
|
|
@configure_size height, width
|
|
|
|
@_frame = C.newwin(@height, @width, @y, @x)
|
|
|
|
@_frame\immedok(true)
|
|
|
|
@_pad = C.newpad(@_height, @_width)
|
|
|
|
@_pad\scrollok(true)
|
|
|
|
@set_active false
|
|
|
|
@chstrs = {}
|
|
|
|
for i=1,#@columns[1]
|
|
|
|
@chstrs[i] = C.new_chstr(@_width)
|
|
|
|
@setup_chstr(i)
|
|
|
|
@dirty = true
|
|
|
|
|
|
|
|
configure_size: (@height, @width)=>
|
|
|
|
@_height = #@columns[1]
|
2018-03-14 18:45:32 -07:00
|
|
|
if @height == AUTO
|
|
|
|
@height = @_height + 2
|
|
|
|
|
|
|
|
@_width = 0
|
2018-03-19 20:32:09 -07:00
|
|
|
for i=1,#@columns[1]
|
|
|
|
row_len = #@columns - 1
|
|
|
|
for col in *@columns
|
|
|
|
row_len += #col[i]
|
|
|
|
@_width = math.max(@_width, row_len)
|
2018-03-13 23:53:06 -07:00
|
|
|
if @width == AUTO
|
2018-03-14 18:45:32 -07:00
|
|
|
@width = @_width + 2
|
2018-03-13 02:55:03 -07:00
|
|
|
|
2018-03-19 20:32:09 -07:00
|
|
|
setup_chstr: (i)=>
|
|
|
|
chstr = @chstrs[i]
|
|
|
|
x = 0
|
|
|
|
for c=1,#@columns
|
|
|
|
attr = @colors[c](@, i)
|
|
|
|
chunk = @columns[c][i]
|
|
|
|
chstr\set_str(x, chunk, attr)
|
|
|
|
x += #chunk
|
2018-03-20 15:57:21 -07:00
|
|
|
if #chunk < @column_widths[c]
|
|
|
|
chstr\set_str(x, " ", attr, @column_widths[c]-#chunk)
|
|
|
|
x += @column_widths[c]-#chunk
|
2018-03-19 20:32:09 -07:00
|
|
|
if c < #@columns
|
|
|
|
chstr\set_ch(x, C.ACS_VLINE, @active and @active_frame or @inactive_frame)
|
|
|
|
x += 1
|
|
|
|
@_pad\mvaddchstr(i-1,0,chstr)
|
|
|
|
@dirty = true
|
2018-03-13 02:02:51 -07:00
|
|
|
|
2018-03-13 23:53:06 -07:00
|
|
|
set_active: (active)=>
|
2018-03-14 16:10:17 -07:00
|
|
|
return if active == @active
|
2018-03-13 23:53:06 -07:00
|
|
|
@active = active
|
2018-03-19 20:32:09 -07:00
|
|
|
@_frame\attrset(active and @active_frame or @inactive_frame)
|
|
|
|
@dirty = true
|
2018-03-13 23:53:06 -07:00
|
|
|
|
2018-03-13 02:02:51 -07:00
|
|
|
select: (i)=>
|
2018-03-19 20:32:09 -07:00
|
|
|
if #@columns[1] == 0 then i = nil
|
2018-03-14 18:45:32 -07:00
|
|
|
if i == @selected then return @selected
|
2018-03-19 20:32:09 -07:00
|
|
|
old_y, old_x = @scroll_y, @scroll_x
|
2018-03-13 02:02:51 -07:00
|
|
|
if i != nil
|
2018-03-19 20:32:09 -07:00
|
|
|
i = math.max(1, math.min(#@columns[1], i))
|
|
|
|
|
|
|
|
old_selected,@selected = @selected,i
|
|
|
|
|
|
|
|
if old_selected
|
|
|
|
@setup_chstr(old_selected)
|
|
|
|
|
2018-03-13 02:02:51 -07:00
|
|
|
if @selected
|
2018-03-19 20:32:09 -07:00
|
|
|
@setup_chstr(@selected)
|
2018-03-13 02:02:51 -07:00
|
|
|
|
2018-03-14 18:45:32 -07:00
|
|
|
scrolloff = 3
|
2018-03-19 20:32:09 -07:00
|
|
|
if @selected > @scroll_y + (@height-2) - scrolloff
|
|
|
|
@scroll_y = @selected - (@height-2) + scrolloff
|
|
|
|
elseif @selected < @scroll_y + scrolloff
|
|
|
|
@scroll_y = @selected - scrolloff
|
|
|
|
@scroll_y = math.max(1, math.min(#@columns[1], @scroll_y))
|
|
|
|
|
|
|
|
if @scroll_y == old_y
|
|
|
|
w = math.min(@width-2,@_width)
|
|
|
|
if old_selected and @scroll_y <= old_selected and old_selected <= @scroll_y + @height-2
|
|
|
|
@_pad\pnoutrefresh(old_selected-1,@scroll_x-1,@y+1+(old_selected-@scroll_y),@x+1,@y+1+(old_selected-@scroll_y)+1,@x+w)
|
|
|
|
if @selected and @scroll_y <= @selected and @selected <= @scroll_y + @height-2
|
|
|
|
@_pad\pnoutrefresh(@selected-1,@scroll_x-1,@y+1+(@selected-@scroll_y),@x+1,@y+1+(@selected-@scroll_y)+1,@x+w)
|
|
|
|
else
|
|
|
|
@dirty = true
|
|
|
|
|
2018-03-13 02:02:51 -07:00
|
|
|
if @on_select then @on_select(@selected)
|
2018-03-13 03:44:03 -07:00
|
|
|
return @selected
|
2018-03-13 02:02:51 -07:00
|
|
|
|
2018-03-14 18:45:32 -07:00
|
|
|
scroll: (dy,dx)=>
|
2018-03-19 20:32:09 -07:00
|
|
|
old_y, old_x = @scroll_y, @scroll_x
|
2018-03-14 18:45:32 -07:00
|
|
|
if @selected != nil
|
|
|
|
@select(@selected + (dy or 0))
|
|
|
|
else
|
|
|
|
@scroll_y = math.max(1, math.min(@_height-@height, @scroll_y+(dy or 0)))
|
|
|
|
@scroll_x = math.max(1, math.min(@_width-@width, @scroll_x+(dx or 0)))
|
2018-03-19 20:32:09 -07:00
|
|
|
if @scroll_y != old_y or @scroll_x != old_x
|
|
|
|
@dirty = true
|
2018-03-14 16:10:17 -07:00
|
|
|
|
2018-03-19 20:32:09 -07:00
|
|
|
refresh: (force=false)=>
|
|
|
|
return if not force and not @dirty
|
2018-03-14 18:45:32 -07:00
|
|
|
@_frame\border(C.ACS_VLINE, C.ACS_VLINE,
|
2018-03-13 02:02:51 -07:00
|
|
|
C.ACS_HLINE, C.ACS_HLINE,
|
|
|
|
C.ACS_ULCORNER, C.ACS_URCORNER,
|
|
|
|
C.ACS_LLCORNER, C.ACS_LRCORNER)
|
2018-03-13 23:53:06 -07:00
|
|
|
if @label
|
2018-03-14 18:45:32 -07:00
|
|
|
@_frame\mvaddstr(0, math.floor((@width-#@label-2)/2), " #{@label} ")
|
|
|
|
@_frame\refresh!
|
2018-03-19 20:32:09 -07:00
|
|
|
--@_frame\prefresh(0,0,@y,@x,@y+@height-1,@x+@width-1)
|
2018-03-14 18:45:32 -07:00
|
|
|
h,w = math.min(@height-2,@_height),math.min(@width-2,@_width)
|
|
|
|
@_pad\pnoutrefresh(@scroll_y-1,@scroll_x-1,@y+1,@x+1,@y+h,@x+w)
|
2018-03-19 20:32:09 -07:00
|
|
|
@dirty = false
|
2018-03-13 02:02:51 -07:00
|
|
|
|
|
|
|
erase: =>
|
2018-03-19 20:32:09 -07:00
|
|
|
@dirty = true
|
2018-03-14 18:45:32 -07:00
|
|
|
@_frame\erase!
|
|
|
|
@_frame\refresh!
|
2018-03-13 02:02:51 -07:00
|
|
|
|
2018-03-14 18:45:32 -07:00
|
|
|
__gc: =>
|
2018-03-15 15:30:43 -07:00
|
|
|
@_frame\close!
|
|
|
|
@_pad\close!
|
2018-03-13 02:02:51 -07:00
|
|
|
|
2018-03-19 20:32:09 -07:00
|
|
|
class NumberedPad extends Pad
|
|
|
|
new: (@label,@y,@x,height,width,...)=>
|
|
|
|
col1 = select(1, ...)
|
|
|
|
fmt = "%#{#tostring(#col1)}d"
|
|
|
|
line_nums = [fmt\format(i) for i=1,#col1]
|
|
|
|
cols = {line_nums, ((i)=>color("yellow")), ...}
|
|
|
|
super @label, @y, @x, height, width, unpack(cols)
|
|
|
|
|
2018-03-13 03:44:03 -07:00
|
|
|
ok, to_lua = pcall -> require('moonscript.base').to_lua
|
|
|
|
if not ok then to_lua = -> nil
|
|
|
|
file_cache = setmetatable({}, {__index:(filename)=>
|
2018-03-13 03:50:18 -07:00
|
|
|
file = io.open(filename)
|
|
|
|
if not file then return nil
|
|
|
|
contents = file\read("*a")
|
|
|
|
@[filename] = contents
|
|
|
|
return contents
|
2018-03-13 03:44:03 -07:00
|
|
|
})
|
|
|
|
line_tables = setmetatable({}, {__index:(filename)=>
|
|
|
|
file = file_cache[filename]
|
2018-03-13 15:51:28 -07:00
|
|
|
if not file
|
|
|
|
return nil
|
2018-03-13 03:44:03 -07:00
|
|
|
ok, line_table = to_lua(file)
|
|
|
|
if ok
|
|
|
|
@[filename] = line_table
|
|
|
|
return line_table
|
|
|
|
})
|
|
|
|
|
2018-03-14 16:10:17 -07:00
|
|
|
run_debugger = (err_msg)->
|
|
|
|
export stdscr, SCREEN_H, SCREEN_W
|
|
|
|
stdscr = C.initscr!
|
|
|
|
SCREEN_H, SCREEN_W = stdscr\getmaxyx!
|
|
|
|
|
|
|
|
C.cbreak!
|
|
|
|
C.echo(false)
|
|
|
|
C.nl(false)
|
|
|
|
C.curs_set(0)
|
|
|
|
C.start_color!
|
|
|
|
C.use_default_colors!
|
|
|
|
|
2018-03-17 18:47:01 -07:00
|
|
|
color_index = 0
|
|
|
|
existing = {}
|
|
|
|
make_color = (fg=-1, bg=-1)->
|
|
|
|
key = "#{fg},#{bg}"
|
|
|
|
unless existing[key]
|
|
|
|
color_index += 1
|
|
|
|
C.init_pair(color_index, fg, bg)
|
|
|
|
existing[key] = C.color_pair(color_index)
|
|
|
|
return existing[key]
|
|
|
|
color_lang = re.compile[[
|
|
|
|
x <- {|
|
|
|
|
{:attrs: {| {attr} (" " {attr})* |} :}
|
2018-03-19 20:32:09 -07:00
|
|
|
/ (
|
|
|
|
({:bg: "on " {color} :} / ({:fg: color :} (" on " {:bg: color :})?))
|
|
|
|
{:attrs: {| (" " {attr})* |} :})
|
2018-03-17 18:47:01 -07:00
|
|
|
|}
|
|
|
|
attr <- "blink" / "bold" / "dim" / "invis" / "normal" / "protect" / "reverse" / "standout" / "underline"
|
|
|
|
color <- "black" / "blue" / "cyan" / "green" / "magenta" / "red" / "white" / "yellow" / "default"
|
|
|
|
]]
|
|
|
|
C.COLOR_DEFAULT = -1
|
2018-03-19 20:32:09 -07:00
|
|
|
export color
|
2018-03-17 18:47:01 -07:00
|
|
|
color = (s="default")->
|
|
|
|
t = assert(color_lang\match(s), "Invalid color: #{s}")
|
|
|
|
if t.fg then t.fg = C["COLOR_"..t.fg\upper!]
|
|
|
|
if t.bg then t.bg = C["COLOR_"..t.bg\upper!]
|
|
|
|
c = make_color(t.fg, t.bg)
|
|
|
|
for a in *t.attrs
|
|
|
|
c |= C["A_"..a\upper!]
|
|
|
|
return c
|
|
|
|
|
2018-03-15 15:30:43 -07:00
|
|
|
do -- Fullscreen flash
|
2018-03-17 18:47:01 -07:00
|
|
|
stdscr\wbkgd(color"yellow on red bold")
|
2018-03-15 15:30:43 -07:00
|
|
|
stdscr\clear!
|
|
|
|
stdscr\refresh!
|
|
|
|
lines = wrap_text("ERROR!\n \n "..err_msg.."\n \npress any key...", math.floor(SCREEN_W/2))
|
2018-03-17 18:47:01 -07:00
|
|
|
max_line = 0
|
|
|
|
for line in *lines do max_line = math.max(max_line, #line)
|
2018-03-15 15:30:43 -07:00
|
|
|
for i, line in ipairs(lines)
|
2018-03-17 18:47:01 -07:00
|
|
|
if i == 1 or i == #lines
|
|
|
|
stdscr\mvaddstr(math.floor(SCREEN_H/2 - #lines/2)+i, math.floor((SCREEN_W-#line)/2), line)
|
|
|
|
else
|
|
|
|
stdscr\mvaddstr(math.floor(SCREEN_H/2 - #lines/2)+i, math.floor((SCREEN_W-max_line)/2), line)
|
2018-03-15 15:30:43 -07:00
|
|
|
stdscr\refresh!
|
|
|
|
C.doupdate!
|
|
|
|
stdscr\getch!
|
|
|
|
|
2018-03-17 18:47:01 -07:00
|
|
|
stdscr\wbkgd(color!)
|
2018-03-14 16:10:17 -07:00
|
|
|
stdscr\clear!
|
|
|
|
stdscr\refresh!
|
|
|
|
|
|
|
|
pads = {}
|
|
|
|
|
|
|
|
do -- Err pad
|
2018-03-13 04:48:17 -07:00
|
|
|
err_msg_lines = wrap_text(err_msg, SCREEN_W - 4)
|
2018-03-13 23:53:06 -07:00
|
|
|
for i,line in ipairs(err_msg_lines)
|
2018-03-17 18:47:01 -07:00
|
|
|
err_msg_lines[i] = (" ")\rep(2)..line
|
2018-03-19 20:32:09 -07:00
|
|
|
pads.err = Pad("Error Message", 0,0,AUTO,SCREEN_W, err_msg_lines, (i)=> color("red bold"))
|
2018-03-13 04:48:17 -07:00
|
|
|
|
2018-03-15 15:30:43 -07:00
|
|
|
stack_locations = {}
|
2018-03-14 16:10:17 -07:00
|
|
|
do -- Stack pad
|
|
|
|
stack_names = {}
|
2018-03-17 18:47:01 -07:00
|
|
|
max_filename, max_fn_name = 0, 0
|
2018-03-14 16:10:17 -07:00
|
|
|
stack_min, stack_max = callstack_range!
|
|
|
|
for i=stack_min,stack_max
|
|
|
|
info = debug.getinfo(i)
|
|
|
|
if not info then break
|
2018-03-19 20:32:09 -07:00
|
|
|
fn_name = info.name or "<unnamed function>"
|
|
|
|
table.insert(stack_names, fn_name)
|
|
|
|
line = if info.short_src
|
|
|
|
line_table = line_tables[info.short_src]
|
|
|
|
if line_table
|
|
|
|
char = line_table[info.currentline]
|
|
|
|
line_num = 1
|
|
|
|
file = file_cache[info.short_src]
|
|
|
|
for _ in file\sub(1,char)\gmatch("\n") do line_num += 1
|
|
|
|
"#{info.short_src}:#{line_num}"
|
|
|
|
else
|
|
|
|
info.short_src..":"..info.currentline
|
2018-03-14 16:10:17 -07:00
|
|
|
else
|
2018-03-19 20:32:09 -07:00
|
|
|
"???"
|
2018-03-14 16:10:17 -07:00
|
|
|
table.insert(stack_locations, line)
|
|
|
|
max_filename = math.max(max_filename, #line)
|
2018-03-19 20:32:09 -07:00
|
|
|
max_fn_name = math.max(max_fn_name, #fn_name)
|
2018-03-14 16:10:17 -07:00
|
|
|
callstack = {}
|
2018-03-17 18:47:01 -07:00
|
|
|
max_line = 0
|
2018-03-14 16:10:17 -07:00
|
|
|
for i=1,#stack_names do
|
2018-03-19 20:32:09 -07:00
|
|
|
fn_name = stack_names[i]
|
|
|
|
callstack[i] = {fn_name, stack_locations[i]}
|
|
|
|
max_line = math.max(max_line, #fn_name+#stack_locations[i]+3)
|
|
|
|
|
|
|
|
stack_h = math.max(#callstack+2, math.floor(2/3*SCREEN_H))
|
|
|
|
pads.stack = Pad "(C)allstack",pads.err.height,SCREEN_W-(max_line+2),stack_h,max_line+2,
|
|
|
|
stack_names, ((i)=> (i == @selected) and color("black on green") or color("green")),
|
|
|
|
stack_locations, ((i)=> (i == @selected) and color("black on cyan") or color("cyan"))
|
2018-03-14 16:10:17 -07:00
|
|
|
|
|
|
|
show_src = (filename, line_no)->
|
2018-03-19 20:32:09 -07:00
|
|
|
if pads.src
|
|
|
|
pads.src\erase!
|
2018-03-14 16:10:17 -07:00
|
|
|
file = file_cache[filename]
|
|
|
|
if file
|
2018-03-19 20:32:09 -07:00
|
|
|
src_lines = {}
|
|
|
|
for line in (file..'\n')\gmatch("([^\n]*)\n")
|
2018-03-13 23:53:06 -07:00
|
|
|
table.insert src_lines, line
|
2018-03-19 20:32:09 -07:00
|
|
|
pads.src = NumberedPad "(S)ource Code", pads.err.height,0,
|
|
|
|
pads.stack.height,pads.stack.x, src_lines, (i)=>
|
|
|
|
if i == @selected then return color("black on white")
|
|
|
|
elseif i == line_no then return color("yellow on red bold")
|
|
|
|
return color("white bold")
|
|
|
|
pads.src\select(line_no)
|
2018-03-13 02:55:03 -07:00
|
|
|
else
|
2018-03-19 20:32:09 -07:00
|
|
|
lines = {}
|
|
|
|
for i=1,math.floor(pads.stack.height/2)-1 do table.insert(lines, "")
|
|
|
|
s = "<no source code found>"
|
|
|
|
s = (" ")\rep(math.floor((pads.stack.x-2-#s)/2))..s
|
|
|
|
table.insert(lines, s)
|
|
|
|
pads.src = Pad "(S)ource Code", pads.err.height,0,pads.stack.height,pads.stack.x,lines, ->color("red")
|
2018-03-13 02:02:51 -07:00
|
|
|
|
2018-03-14 16:10:17 -07:00
|
|
|
show_vars = (stack_index)->
|
|
|
|
if pads.vars
|
|
|
|
pads.vars\erase!
|
|
|
|
if pads.values
|
|
|
|
pads.values\erase!
|
|
|
|
callstack_min, _ = callstack_range!
|
|
|
|
var_names, values = {}, {}
|
|
|
|
for loc=1,999
|
|
|
|
name, value = debug.getlocal(callstack_min+stack_index-1, loc)
|
|
|
|
if value == nil then break
|
|
|
|
table.insert(var_names, tostring(name))
|
|
|
|
if type(value) == 'function'
|
|
|
|
info = debug.getinfo(value, 'nS')
|
|
|
|
--values\add_line(("function: %s @ %s:%s")\format(info.name or '???', info.short_src, info.linedefined))
|
|
|
|
table.insert(values, repr(info))
|
|
|
|
else
|
|
|
|
table.insert(values, repr(value))
|
|
|
|
|
|
|
|
var_y = pads.stack.y + pads.stack.height
|
|
|
|
var_x = 0
|
2018-03-17 18:47:01 -07:00
|
|
|
--height = math.min(2+#var_names, SCREEN_H-pads.err.height-pads.stack.height)
|
|
|
|
height = SCREEN_H-(pads.err.height+pads.stack.height)
|
2018-03-19 20:32:09 -07:00
|
|
|
pads.vars = Pad "(V)ars", var_y,var_x,height,AUTO,var_names, (i)=> color()
|
2018-03-14 16:10:17 -07:00
|
|
|
|
|
|
|
pads.vars.on_select = (var_index)=>
|
|
|
|
value_x = pads.vars.x+pads.vars.width
|
|
|
|
value_w = SCREEN_W-(value_x)
|
|
|
|
-- Show single value:
|
|
|
|
if var_index
|
2018-03-19 20:32:09 -07:00
|
|
|
pads.values = Pad "V(a)lue",var_y,value_x,pads.vars.height,value_w,wrap_text(values[var_index], value_w-2), (i)=>color()
|
2018-03-14 16:10:17 -07:00
|
|
|
else
|
2018-03-19 20:32:09 -07:00
|
|
|
pads.values = Pad "V(a)lue",var_y,value_x,pads.vars.height,value_w,values, (i)=>color()
|
2018-03-15 15:30:43 -07:00
|
|
|
collectgarbage()
|
|
|
|
collectgarbage()
|
2018-03-14 16:10:17 -07:00
|
|
|
|
|
|
|
pads.vars\select(1)
|
|
|
|
|
|
|
|
pads.stack.on_select = (stack_index)=>
|
2018-03-19 20:32:09 -07:00
|
|
|
filename = pads.stack.columns[2][stack_index]\match("([^:]*):.*")
|
|
|
|
--filename, line_no = pads.stack.lines[stack_index]\match("[^|]*| ([^:]*):(%d*).*")
|
2018-03-14 16:10:17 -07:00
|
|
|
line_no = tonumber(line_no)
|
|
|
|
show_src(filename, line_no)
|
|
|
|
show_vars(stack_index)
|
|
|
|
|
|
|
|
pads.stack\select(1)
|
|
|
|
|
2018-03-17 18:47:01 -07:00
|
|
|
selected_pad = nil
|
2018-03-14 16:10:17 -07:00
|
|
|
select_pad = (pad)->
|
|
|
|
if selected_pad != pad
|
2018-03-17 18:47:01 -07:00
|
|
|
if selected_pad
|
|
|
|
selected_pad\set_active(false)
|
|
|
|
selected_pad\refresh!
|
2018-03-14 16:10:17 -07:00
|
|
|
selected_pad = pad
|
|
|
|
selected_pad\set_active(true)
|
|
|
|
selected_pad\refresh!
|
2018-03-17 18:47:01 -07:00
|
|
|
|
|
|
|
select_pad(pads.src)
|
2018-03-13 02:02:51 -07:00
|
|
|
|
|
|
|
while true
|
2018-03-19 20:32:09 -07:00
|
|
|
for _,p in pairs(pads)
|
|
|
|
if p.dirty
|
|
|
|
p\refresh!
|
2018-03-13 02:02:51 -07:00
|
|
|
C.doupdate!
|
|
|
|
c = stdscr\getch!
|
2018-03-13 02:55:03 -07:00
|
|
|
switch c
|
|
|
|
when C.KEY_DOWN, C.KEY_SF, ("j")\byte!
|
2018-03-14 18:45:32 -07:00
|
|
|
selected_pad\scroll(1,0)
|
|
|
|
when ('J')\byte!
|
|
|
|
selected_pad\scroll(10,0)
|
2018-03-13 02:55:03 -07:00
|
|
|
|
|
|
|
when C.KEY_UP, C.KEY_SR, ("k")\byte!
|
2018-03-14 18:45:32 -07:00
|
|
|
selected_pad\scroll(-1,0)
|
|
|
|
when ('K')\byte!
|
|
|
|
selected_pad\scroll(-10,0)
|
2018-03-13 02:55:03 -07:00
|
|
|
|
2018-03-14 18:45:32 -07:00
|
|
|
when C.KEY_RIGHT, ("l")\byte!
|
|
|
|
selected_pad\scroll(0,1)
|
|
|
|
when ("L")\byte!
|
|
|
|
selected_pad\scroll(0,10)
|
2018-03-13 02:55:03 -07:00
|
|
|
|
2018-03-14 18:45:32 -07:00
|
|
|
when C.KEY_LEFT, ("h")\byte!
|
|
|
|
selected_pad\scroll(0,-1)
|
|
|
|
when ("H")\byte!
|
|
|
|
selected_pad\scroll(0,-10)
|
2018-03-14 16:10:17 -07:00
|
|
|
|
|
|
|
when ('c')\byte!
|
|
|
|
select_pad(pads.stack) -- (C)allstack
|
|
|
|
|
|
|
|
when ('s')\byte!
|
|
|
|
select_pad(pads.src) -- (S)ource Code
|
|
|
|
|
|
|
|
when ('v')\byte!
|
|
|
|
select_pad(pads.vars) -- (V)ars
|
2018-03-13 02:55:03 -07:00
|
|
|
|
2018-03-17 18:47:01 -07:00
|
|
|
when ('a')\byte!
|
|
|
|
select_pad(pads.values) -- V(a)lue
|
|
|
|
|
2018-03-13 02:55:03 -07:00
|
|
|
when ('o')\byte!
|
2018-03-14 16:10:17 -07:00
|
|
|
file = stack_locations[pads.stack.selected]
|
2018-03-13 02:55:03 -07:00
|
|
|
filename,line_no = file\match("([^:]*):(.*)")
|
2018-03-17 18:47:01 -07:00
|
|
|
line_no = tostring(pads.src.selected)
|
2018-03-13 02:55:03 -07:00
|
|
|
-- Launch system editor and then redraw everything
|
2018-03-15 15:30:43 -07:00
|
|
|
C.endwin!
|
2018-03-13 02:55:03 -07:00
|
|
|
os.execute((os.getenv("EDITOR") or "nano").." +"..line_no.." "..filename)
|
2018-03-15 15:30:43 -07:00
|
|
|
stdscr = C.initscr!
|
|
|
|
C.cbreak!
|
|
|
|
C.echo(false)
|
|
|
|
C.nl(false)
|
|
|
|
C.curs_set(0)
|
|
|
|
C.start_color!
|
|
|
|
C.use_default_colors!
|
|
|
|
stdscr\clear!
|
|
|
|
stdscr\refresh!
|
|
|
|
for _,pad in pairs(pads) do pad\refresh!
|
2018-03-13 02:55:03 -07:00
|
|
|
|
|
|
|
when ('q')\byte!, ("Q")\byte!
|
2018-03-15 15:30:43 -07:00
|
|
|
pads = {}
|
|
|
|
C.endwin!
|
|
|
|
return
|
2018-03-13 02:55:03 -07:00
|
|
|
|
2018-03-13 15:55:14 -07:00
|
|
|
C.endwin!
|
|
|
|
|
2018-03-13 02:02:51 -07:00
|
|
|
|
2018-03-13 03:44:03 -07:00
|
|
|
guard = (fn, ...)->
|
2018-03-13 02:02:51 -07:00
|
|
|
err_hand = (err)->
|
|
|
|
C.endwin!
|
|
|
|
print "Caught an error:"
|
|
|
|
print(debug.traceback(err, 2))
|
|
|
|
os.exit(2)
|
|
|
|
|
|
|
|
return xpcall(fn, ((err_msg)-> xpcall(run_debugger, err_hand, err_msg)), ...)
|
|
|
|
|
2018-03-13 03:44:03 -07:00
|
|
|
breakpoint = ->
|
|
|
|
err_hand = (err)->
|
|
|
|
C.endwin!
|
|
|
|
print "Caught an error:"
|
|
|
|
print(debug.traceback(err, 2))
|
|
|
|
os.exit(2)
|
|
|
|
|
|
|
|
return xpcall(run_debugger, err_hand, "Breakpoint triggered!")
|
|
|
|
|
|
|
|
return {:guard, :breakpoint}
|