2000-05-01 13:42:38 +04:00
|
|
|
# Copyright (C) 2000 Network Applied Communication Laboratory, Inc.
|
2000-05-09 08:53:16 +04:00
|
|
|
# Copyright (C) 2000 Information-technology Promotion Agency, Japan
|
2003-07-27 09:49:03 +04:00
|
|
|
# Copyright (C) 2000-2003 NAKAMURA, Hiroshi <nahi@ruby-lang.org>
|
2000-05-01 13:42:38 +04:00
|
|
|
|
2008-03-05 05:52:43 +03:00
|
|
|
require 'continuation'
|
|
|
|
|
2000-01-05 07:41:21 +03:00
|
|
|
if $SAFE > 0
|
|
|
|
STDERR.print "-r debug.rb is not available in safe mode\n"
|
|
|
|
exit 1
|
|
|
|
end
|
1999-10-15 12:52:18 +04:00
|
|
|
|
2000-06-28 12:31:35 +04:00
|
|
|
require 'tracer'
|
2002-01-04 17:15:33 +03:00
|
|
|
require 'pp'
|
2000-10-14 18:44:58 +04:00
|
|
|
|
2012-07-18 05:02:12 +04:00
|
|
|
class Tracer # :nodoc:
|
2000-06-28 12:31:35 +04:00
|
|
|
def Tracer.trace_func(*vars)
|
2000-08-07 09:05:04 +04:00
|
|
|
Single.trace_func(*vars)
|
2000-06-28 12:31:35 +04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-07-18 05:02:12 +04:00
|
|
|
SCRIPT_LINES__ = {} unless defined? SCRIPT_LINES__ # :nodoc:
|
|
|
|
|
|
|
|
##
|
|
|
|
# This library provides debugging functionality to Ruby.
|
|
|
|
#
|
|
|
|
# To add a debugger to your code, start by requiring +debug+ in your
|
|
|
|
# program:
|
|
|
|
#
|
|
|
|
# def say(word)
|
|
|
|
# require 'debug'
|
|
|
|
# puts word
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
# This will cause Ruby to interrupt execution and show a prompt when the +say+
|
|
|
|
# method is run.
|
|
|
|
#
|
|
|
|
# Once you're inside the prompt, you can start debugging your program.
|
|
|
|
#
|
|
|
|
# (rdb:1) p word
|
|
|
|
# "hello"
|
|
|
|
#
|
|
|
|
# == Getting help
|
|
|
|
#
|
|
|
|
# You can get help at any time by pressing +h+.
|
|
|
|
#
|
|
|
|
# (rdb:1) h
|
|
|
|
# Debugger help v.-0.002b
|
|
|
|
# Commands
|
|
|
|
# b[reak] [file:|class:]<line|method>
|
|
|
|
# b[reak] [class.]<line|method>
|
|
|
|
# set breakpoint to some position
|
|
|
|
# wat[ch] <expression> set watchpoint to some expression
|
|
|
|
# cat[ch] (<exception>|off) set catchpoint to an exception
|
|
|
|
# b[reak] list breakpoints
|
|
|
|
# cat[ch] show catchpoint
|
|
|
|
# del[ete][ nnn] delete some or all breakpoints
|
|
|
|
# disp[lay] <expression> add expression into display expression list
|
|
|
|
# undisp[lay][ nnn] delete one particular or all display expressions
|
|
|
|
# c[ont] run until program ends or hit breakpoint
|
|
|
|
# s[tep][ nnn] step (into methods) one line or till line nnn
|
|
|
|
# n[ext][ nnn] go over one line or till line nnn
|
|
|
|
# w[here] display frames
|
|
|
|
# f[rame] alias for where
|
|
|
|
# l[ist][ (-|nn-mm)] list program, - lists backwards
|
|
|
|
# nn-mm lists given lines
|
|
|
|
# up[ nn] move to higher frame
|
|
|
|
# down[ nn] move to lower frame
|
|
|
|
# fin[ish] return to outer frame
|
|
|
|
# tr[ace] (on|off) set trace mode of current thread
|
|
|
|
# tr[ace] (on|off) all set trace mode of all threads
|
|
|
|
# q[uit] exit from debugger
|
|
|
|
# v[ar] g[lobal] show global variables
|
|
|
|
# v[ar] l[ocal] show local variables
|
|
|
|
# v[ar] i[nstance] <object> show instance variables of object
|
|
|
|
# v[ar] c[onst] <object> show constants of object
|
|
|
|
# m[ethod] i[nstance] <obj> show methods of object
|
|
|
|
# m[ethod] <class|module> show instance methods of class or module
|
|
|
|
# th[read] l[ist] list all threads
|
|
|
|
# th[read] c[ur[rent]] show current thread
|
|
|
|
# th[read] [sw[itch]] <nnn> switch thread context to nnn
|
|
|
|
# th[read] stop <nnn> stop thread nnn
|
|
|
|
# th[read] resume <nnn> resume thread nnn
|
|
|
|
# p expression evaluate expression and print its value
|
|
|
|
# h[elp] print this help
|
|
|
|
# <everything else> evaluate
|
|
|
|
#
|
|
|
|
# == Usage
|
|
|
|
#
|
|
|
|
# The following is a list of common functionalities that the debugger
|
|
|
|
# provides.
|
|
|
|
#
|
|
|
|
# === Navigating through your code
|
|
|
|
#
|
|
|
|
# In general, a debugger is used to find bugs in your program, which
|
|
|
|
# often means pausing execution and inspecting variables at some point
|
|
|
|
# in time.
|
|
|
|
#
|
|
|
|
# Let's look at an example:
|
|
|
|
#
|
|
|
|
# def my_method(foo)
|
|
|
|
# require 'debug'
|
|
|
|
# foo = get_foo if foo.nil?
|
|
|
|
# raise if foo.nil?
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
# When you run this program, the debugger will kick in just before the
|
|
|
|
# +foo+ assignment.
|
|
|
|
#
|
|
|
|
# (rdb:1) p foo
|
|
|
|
# nil
|
|
|
|
#
|
|
|
|
# In this example, it'd be interesting to move to the next line and
|
|
|
|
# inspect the value of +foo+ again. You can do that by pressing +n+:
|
|
|
|
#
|
|
|
|
# (rdb:1) n # goes to next line
|
|
|
|
# (rdb:1) p foo
|
|
|
|
# nil
|
|
|
|
#
|
|
|
|
# You now know that the original value of +foo+ was nil, and that it
|
|
|
|
# still was nil after calling +get_foo+.
|
|
|
|
#
|
|
|
|
# Other useful commands for navigating through your code are:
|
|
|
|
#
|
|
|
|
# +c+::
|
|
|
|
# Runs the program until it either exists or encounters another breakpoint.
|
|
|
|
# You usually press +c+ when you are finished debugging your program and
|
|
|
|
# want to resume its execution.
|
|
|
|
# +s+::
|
|
|
|
# Steps into method definition. In the previous example, +s+ would take you
|
|
|
|
# inside the method definition of +get_foo+.
|
|
|
|
# +r+::
|
|
|
|
# Restart the program.
|
|
|
|
# +q+::
|
|
|
|
# Quit the program.
|
|
|
|
#
|
|
|
|
# === Inspecting variables
|
|
|
|
#
|
|
|
|
# You can use the debugger to easily inspect both local and global variables.
|
|
|
|
# We've seen how to inspect local variables before:
|
|
|
|
#
|
|
|
|
# (rdb:1) p my_arg
|
|
|
|
# 42
|
|
|
|
#
|
|
|
|
# You can also pretty print the result of variables or expressions:
|
|
|
|
#
|
|
|
|
# (rdb:1) pp %w{a very long long array containing many words}
|
|
|
|
# ["a",
|
|
|
|
# "very",
|
|
|
|
# "long",
|
|
|
|
# ...
|
|
|
|
# ]
|
|
|
|
#
|
|
|
|
# You can list all local variables with +v l+:
|
|
|
|
#
|
|
|
|
# (rdb:1) v l
|
|
|
|
# foo => "hello"
|
|
|
|
#
|
|
|
|
# Similarly, you can show all global variables with +v g+:
|
|
|
|
#
|
|
|
|
# (rdb:1) v g
|
|
|
|
# all global variables
|
|
|
|
#
|
|
|
|
# Finally, you can omit +p+ if you simply want to evaluate a variable or
|
|
|
|
# expression
|
|
|
|
#
|
|
|
|
# (rdb:1) 5**2
|
|
|
|
# 25
|
|
|
|
#
|
|
|
|
# === Going beyond basics
|
|
|
|
#
|
|
|
|
# Ruby Debug provides more advanced functionalities like switching
|
|
|
|
# between threads, setting breakpoints and watch expressions, and more.
|
|
|
|
# The full list of commands is available at any time by pressing +h+.
|
|
|
|
#
|
|
|
|
# == Staying out of trouble
|
|
|
|
#
|
|
|
|
# Make sure you remove every instance of +require 'debug'+ before
|
|
|
|
# shipping your code. Failing to do so may result in your program
|
|
|
|
# hanging unpredictably.
|
|
|
|
#
|
|
|
|
# Debug is not available in safe mode.
|
2000-06-28 12:31:35 +04:00
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
class DEBUGGER__
|
2012-07-18 05:02:12 +04:00
|
|
|
MUTEX = Mutex.new # :nodoc:
|
2002-02-25 18:30:31 +03:00
|
|
|
|
2012-07-18 05:02:12 +04:00
|
|
|
class Context # :nodoc:
|
2011-05-19 01:19:18 +04:00
|
|
|
DEBUG_LAST_CMD = []
|
2002-02-25 18:30:31 +03:00
|
|
|
|
2011-05-19 01:19:18 +04:00
|
|
|
begin
|
|
|
|
require 'readline'
|
|
|
|
def readline(prompt, hist)
|
|
|
|
Readline::readline(prompt, hist)
|
|
|
|
end
|
|
|
|
rescue LoadError
|
|
|
|
def readline(prompt, hist)
|
|
|
|
STDOUT.print prompt
|
|
|
|
STDOUT.flush
|
|
|
|
line = STDIN.gets
|
|
|
|
exit unless line
|
|
|
|
line.chomp!
|
|
|
|
line
|
|
|
|
end
|
|
|
|
USE_READLINE = false
|
2002-02-25 18:30:31 +03:00
|
|
|
end
|
2000-01-05 07:41:21 +03:00
|
|
|
|
2011-05-19 01:19:18 +04:00
|
|
|
def initialize
|
|
|
|
if Thread.current == Thread.main
|
|
|
|
@stop_next = 1
|
|
|
|
else
|
|
|
|
@stop_next = 0
|
|
|
|
end
|
|
|
|
@last_file = nil
|
|
|
|
@file = nil
|
|
|
|
@line = nil
|
|
|
|
@no_step = nil
|
|
|
|
@frames = []
|
|
|
|
@finish_pos = 0
|
|
|
|
@trace = false
|
|
|
|
@catch = "StandardError"
|
|
|
|
@suspend_next = false
|
2002-02-25 18:30:31 +03:00
|
|
|
end
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2011-05-19 01:19:18 +04:00
|
|
|
def stop_next(n=1)
|
|
|
|
@stop_next = n
|
|
|
|
end
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2011-05-19 01:19:18 +04:00
|
|
|
def set_suspend
|
|
|
|
@suspend_next = true
|
|
|
|
end
|
1999-08-13 09:45:20 +04:00
|
|
|
|
2011-05-19 01:19:18 +04:00
|
|
|
def clear_suspend
|
|
|
|
@suspend_next = false
|
|
|
|
end
|
2000-01-05 07:41:21 +03:00
|
|
|
|
2011-05-19 01:19:18 +04:00
|
|
|
def suspend_all
|
|
|
|
DEBUGGER__.suspend
|
|
|
|
end
|
2000-12-25 10:31:43 +03:00
|
|
|
|
2011-05-19 01:19:18 +04:00
|
|
|
def resume_all
|
|
|
|
DEBUGGER__.resume
|
|
|
|
end
|
2002-02-25 18:30:31 +03:00
|
|
|
|
2011-05-19 01:19:18 +04:00
|
|
|
def check_suspend
|
|
|
|
while MUTEX.synchronize {
|
2011-05-19 04:07:25 +04:00
|
|
|
if @suspend_next
|
|
|
|
DEBUGGER__.waiting.push Thread.current
|
|
|
|
@suspend_next = false
|
|
|
|
true
|
|
|
|
end
|
|
|
|
}
|
2011-05-19 01:19:18 +04:00
|
|
|
end
|
2000-12-27 08:59:03 +03:00
|
|
|
end
|
|
|
|
|
2011-05-19 01:19:18 +04:00
|
|
|
def trace?
|
|
|
|
@trace
|
|
|
|
end
|
2000-12-27 08:59:03 +03:00
|
|
|
|
2011-05-19 01:19:18 +04:00
|
|
|
def set_trace(arg)
|
|
|
|
@trace = arg
|
|
|
|
end
|
2000-12-27 08:59:03 +03:00
|
|
|
|
2011-05-19 01:19:18 +04:00
|
|
|
def stdout
|
|
|
|
DEBUGGER__.stdout
|
|
|
|
end
|
2000-12-25 10:31:43 +03:00
|
|
|
|
2011-05-19 01:19:18 +04:00
|
|
|
def break_points
|
|
|
|
DEBUGGER__.break_points
|
|
|
|
end
|
2000-12-25 10:31:43 +03:00
|
|
|
|
2011-05-19 01:19:18 +04:00
|
|
|
def display
|
|
|
|
DEBUGGER__.display
|
|
|
|
end
|
2000-12-25 10:31:43 +03:00
|
|
|
|
2011-05-19 01:19:18 +04:00
|
|
|
def context(th)
|
|
|
|
DEBUGGER__.context(th)
|
|
|
|
end
|
2000-12-25 10:31:43 +03:00
|
|
|
|
2011-05-19 01:19:18 +04:00
|
|
|
def set_trace_all(arg)
|
|
|
|
DEBUGGER__.set_trace(arg)
|
|
|
|
end
|
2000-12-25 10:31:43 +03:00
|
|
|
|
2011-05-19 01:19:18 +04:00
|
|
|
def set_last_thread(th)
|
|
|
|
DEBUGGER__.set_last_thread(th)
|
|
|
|
end
|
2000-01-05 07:41:21 +03:00
|
|
|
|
2011-05-19 01:19:18 +04:00
|
|
|
def debug_eval(str, binding)
|
|
|
|
begin
|
|
|
|
eval(str, binding)
|
|
|
|
rescue StandardError, ScriptError => e
|
|
|
|
at = eval("caller(1)", binding)
|
|
|
|
stdout.printf "%s:%s\n", at.shift, e.to_s.sub(/\(eval\):1:(in `.*?':)?/, '')
|
|
|
|
for i in at
|
|
|
|
stdout.printf "\tfrom %s\n", i
|
|
|
|
end
|
|
|
|
throw :debug_error
|
2002-02-25 18:30:31 +03:00
|
|
|
end
|
2000-12-25 10:31:43 +03:00
|
|
|
end
|
|
|
|
|
2011-05-19 01:19:18 +04:00
|
|
|
def debug_silent_eval(str, binding)
|
|
|
|
begin
|
|
|
|
eval(str, binding)
|
|
|
|
rescue StandardError, ScriptError
|
|
|
|
nil
|
|
|
|
end
|
2000-12-25 10:31:43 +03:00
|
|
|
end
|
|
|
|
|
2011-05-19 01:19:18 +04:00
|
|
|
def var_list(ary, binding)
|
|
|
|
ary.sort!
|
|
|
|
for v in ary
|
2011-06-28 15:45:50 +04:00
|
|
|
stdout.printf " %s => %s\n", v, eval(v.to_s, binding).inspect
|
2011-05-19 01:19:18 +04:00
|
|
|
end
|
2000-12-27 08:59:03 +03:00
|
|
|
end
|
|
|
|
|
2011-05-19 01:19:18 +04:00
|
|
|
def debug_variable_info(input, binding)
|
|
|
|
case input
|
|
|
|
when /^\s*g(?:lobal)?\s*$/
|
|
|
|
var_list(global_variables, binding)
|
2000-01-05 07:41:21 +03:00
|
|
|
|
2011-05-19 01:19:18 +04:00
|
|
|
when /^\s*l(?:ocal)?\s*$/
|
|
|
|
var_list(eval("local_variables", binding), binding)
|
2002-02-25 18:30:31 +03:00
|
|
|
|
2011-05-19 01:19:18 +04:00
|
|
|
when /^\s*i(?:nstance)?\s+/
|
|
|
|
obj = debug_eval($', binding)
|
|
|
|
var_list(obj.instance_variables, obj.instance_eval{binding()})
|
2000-08-28 13:53:42 +04:00
|
|
|
|
2011-05-19 01:19:18 +04:00
|
|
|
when /^\s*c(?:onst(?:ant)?)?\s+/
|
|
|
|
obj = debug_eval($', binding)
|
|
|
|
unless obj.kind_of? Module
|
|
|
|
stdout.print "Should be Class/Module: ", $', "\n"
|
|
|
|
else
|
|
|
|
var_list(obj.constants, obj.module_eval{binding()})
|
|
|
|
end
|
2000-01-05 07:41:21 +03:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-05-19 01:19:18 +04:00
|
|
|
def debug_method_info(input, binding)
|
|
|
|
case input
|
|
|
|
when /^i(:?nstance)?\s+/
|
|
|
|
obj = debug_eval($', binding)
|
|
|
|
|
|
|
|
len = 0
|
|
|
|
for v in obj.methods.sort
|
|
|
|
len += v.size + 1
|
|
|
|
if len > 70
|
|
|
|
len = v.size + 1
|
|
|
|
stdout.print "\n"
|
|
|
|
end
|
|
|
|
stdout.print v, " "
|
|
|
|
end
|
|
|
|
stdout.print "\n"
|
2000-01-05 07:41:21 +03:00
|
|
|
|
2002-02-25 18:30:31 +03:00
|
|
|
else
|
2011-05-19 01:19:18 +04:00
|
|
|
obj = debug_eval(input, binding)
|
|
|
|
unless obj.kind_of? Module
|
|
|
|
stdout.print "Should be Class/Module: ", input, "\n"
|
|
|
|
else
|
|
|
|
len = 0
|
|
|
|
for v in obj.instance_methods(false).sort
|
|
|
|
len += v.size + 1
|
|
|
|
if len > 70
|
|
|
|
len = v.size + 1
|
|
|
|
stdout.print "\n"
|
|
|
|
end
|
|
|
|
stdout.print v, " "
|
|
|
|
end
|
|
|
|
stdout.print "\n"
|
|
|
|
end
|
2000-01-05 07:41:21 +03:00
|
|
|
end
|
|
|
|
end
|
1999-08-13 09:45:20 +04:00
|
|
|
|
2011-05-19 01:19:18 +04:00
|
|
|
def thnum
|
2000-01-05 07:41:21 +03:00
|
|
|
num = DEBUGGER__.instance_eval{@thread_list[Thread.current]}
|
2011-05-19 01:19:18 +04:00
|
|
|
unless num
|
|
|
|
DEBUGGER__.make_thread_list
|
|
|
|
num = DEBUGGER__.instance_eval{@thread_list[Thread.current]}
|
|
|
|
end
|
|
|
|
num
|
2002-02-25 18:30:31 +03:00
|
|
|
end
|
|
|
|
|
2011-05-19 01:19:18 +04:00
|
|
|
def debug_command(file, line, id, binding)
|
|
|
|
MUTEX.lock
|
|
|
|
unless defined?($debugger_restart) and $debugger_restart
|
|
|
|
callcc{|c| $debugger_restart = c}
|
|
|
|
end
|
|
|
|
set_last_thread(Thread.current)
|
|
|
|
frame_pos = 0
|
|
|
|
binding_file = file
|
|
|
|
binding_line = line
|
|
|
|
previous_line = nil
|
|
|
|
if ENV['EMACS']
|
|
|
|
stdout.printf "\032\032%s:%d:\n", binding_file, binding_line
|
|
|
|
else
|
|
|
|
stdout.printf "%s:%d:%s", binding_file, binding_line,
|
|
|
|
line_at(binding_file, binding_line)
|
|
|
|
end
|
|
|
|
@frames[0] = [binding, file, line, id]
|
|
|
|
display_expressions(binding)
|
|
|
|
prompt = true
|
|
|
|
while prompt and input = readline("(rdb:%d) "%thnum(), true)
|
|
|
|
catch(:debug_error) do
|
|
|
|
if input == ""
|
|
|
|
next unless DEBUG_LAST_CMD[0]
|
|
|
|
input = DEBUG_LAST_CMD[0]
|
|
|
|
stdout.print input, "\n"
|
|
|
|
else
|
|
|
|
DEBUG_LAST_CMD[0] = input
|
2002-02-25 18:30:31 +03:00
|
|
|
end
|
2011-05-19 01:19:18 +04:00
|
|
|
|
|
|
|
case input
|
|
|
|
when /^\s*tr(?:ace)?(?:\s+(on|off))?(?:\s+(all))?$/
|
|
|
|
if defined?( $2 )
|
|
|
|
if $1 == 'on'
|
|
|
|
set_trace_all true
|
|
|
|
else
|
|
|
|
set_trace_all false
|
|
|
|
end
|
|
|
|
elsif defined?( $1 )
|
|
|
|
if $1 == 'on'
|
|
|
|
set_trace true
|
|
|
|
else
|
|
|
|
set_trace false
|
|
|
|
end
|
|
|
|
end
|
2011-05-19 04:07:25 +04:00
|
|
|
if trace?
|
|
|
|
stdout.print "Trace on.\n"
|
|
|
|
else
|
|
|
|
stdout.print "Trace off.\n"
|
|
|
|
end
|
2002-02-25 18:30:31 +03:00
|
|
|
|
2011-05-19 01:19:18 +04:00
|
|
|
when /^\s*b(?:reak)?\s+(?:(.+):)?([^.:]+)$/
|
|
|
|
pos = $2
|
|
|
|
if $1
|
|
|
|
klass = debug_silent_eval($1, binding)
|
|
|
|
file = $1
|
|
|
|
end
|
|
|
|
if pos =~ /^\d+$/
|
|
|
|
pname = pos
|
|
|
|
pos = pos.to_i
|
|
|
|
else
|
|
|
|
pname = pos = pos.intern.id2name
|
|
|
|
end
|
|
|
|
break_points.push [true, 0, klass || file, pos]
|
|
|
|
stdout.printf "Set breakpoint %d at %s:%s\n", break_points.size, klass || file, pname
|
|
|
|
|
|
|
|
when /^\s*b(?:reak)?\s+(.+)[#.]([^.:]+)$/
|
|
|
|
pos = $2.intern.id2name
|
|
|
|
klass = debug_eval($1, binding)
|
|
|
|
break_points.push [true, 0, klass, pos]
|
|
|
|
stdout.printf "Set breakpoint %d at %s.%s\n", break_points.size, klass, pos
|
|
|
|
|
|
|
|
when /^\s*wat(?:ch)?\s+(.+)$/
|
|
|
|
exp = $1
|
|
|
|
break_points.push [true, 1, exp]
|
|
|
|
stdout.printf "Set watchpoint %d:%s\n", break_points.size, exp
|
|
|
|
|
|
|
|
when /^\s*b(?:reak)?$/
|
|
|
|
if break_points.find{|b| b[1] == 0}
|
|
|
|
n = 1
|
|
|
|
stdout.print "Breakpoints:\n"
|
|
|
|
break_points.each do |b|
|
|
|
|
if b[0] and b[1] == 0
|
|
|
|
stdout.printf " %d %s:%s\n", n, b[2], b[3]
|
|
|
|
end
|
|
|
|
n += 1
|
|
|
|
end
|
|
|
|
end
|
2011-05-19 04:07:25 +04:00
|
|
|
if break_points.find{|b| b[1] == 1}
|
|
|
|
n = 1
|
|
|
|
stdout.print "\n"
|
|
|
|
stdout.print "Watchpoints:\n"
|
|
|
|
for b in break_points
|
|
|
|
if b[0] and b[1] == 1
|
|
|
|
stdout.printf " %d %s\n", n, b[2]
|
|
|
|
end
|
|
|
|
n += 1
|
2011-05-19 01:19:18 +04:00
|
|
|
end
|
|
|
|
end
|
2011-05-19 04:07:25 +04:00
|
|
|
if break_points.size == 0
|
|
|
|
stdout.print "No breakpoints\n"
|
|
|
|
else
|
|
|
|
stdout.print "\n"
|
|
|
|
end
|
2011-05-19 01:19:18 +04:00
|
|
|
|
|
|
|
when /^\s*del(?:ete)?(?:\s+(\d+))?$/
|
|
|
|
pos = $1
|
|
|
|
unless pos
|
|
|
|
input = readline("Clear all breakpoints? (y/n) ", false)
|
|
|
|
if input == "y"
|
|
|
|
for b in break_points
|
|
|
|
b[0] = false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
else
|
|
|
|
pos = pos.to_i
|
|
|
|
if break_points[pos-1]
|
|
|
|
break_points[pos-1][0] = false
|
|
|
|
else
|
|
|
|
stdout.printf "Breakpoint %d is not defined\n", pos
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
when /^\s*disp(?:lay)?\s+(.+)$/
|
|
|
|
exp = $1
|
|
|
|
display.push [true, exp]
|
|
|
|
stdout.printf "%d: ", display.size
|
|
|
|
display_expression(exp, binding)
|
|
|
|
|
|
|
|
when /^\s*disp(?:lay)?$/
|
|
|
|
display_expressions(binding)
|
|
|
|
|
|
|
|
when /^\s*undisp(?:lay)?(?:\s+(\d+))?$/
|
|
|
|
pos = $1
|
|
|
|
unless pos
|
|
|
|
input = readline("Clear all expressions? (y/n) ", false)
|
|
|
|
if input == "y"
|
|
|
|
for d in display
|
|
|
|
d[0] = false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
else
|
|
|
|
pos = pos.to_i
|
|
|
|
if display[pos-1]
|
|
|
|
display[pos-1][0] = false
|
|
|
|
else
|
|
|
|
stdout.printf "Display expression %d is not defined\n", pos
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
when /^\s*c(?:ont)?$/
|
|
|
|
prompt = false
|
|
|
|
|
|
|
|
when /^\s*s(?:tep)?(?:\s+(\d+))?$/
|
|
|
|
if $1
|
|
|
|
lev = $1.to_i
|
|
|
|
else
|
|
|
|
lev = 1
|
|
|
|
end
|
2011-05-19 04:07:25 +04:00
|
|
|
@stop_next = lev
|
|
|
|
prompt = false
|
2011-05-19 01:19:18 +04:00
|
|
|
|
|
|
|
when /^\s*n(?:ext)?(?:\s+(\d+))?$/
|
|
|
|
if $1
|
|
|
|
lev = $1.to_i
|
|
|
|
else
|
|
|
|
lev = 1
|
|
|
|
end
|
2011-05-19 04:07:25 +04:00
|
|
|
@stop_next = lev
|
|
|
|
@no_step = @frames.size - frame_pos
|
|
|
|
prompt = false
|
2011-05-19 01:19:18 +04:00
|
|
|
|
|
|
|
when /^\s*w(?:here)?$/, /^\s*f(?:rame)?$/
|
|
|
|
display_frames(frame_pos)
|
|
|
|
|
|
|
|
when /^\s*l(?:ist)?(?:\s+(.+))?$/
|
|
|
|
if not $1
|
|
|
|
b = previous_line ? previous_line + 10 : binding_line - 5
|
|
|
|
e = b + 9
|
|
|
|
elsif $1 == '-'
|
|
|
|
b = previous_line ? previous_line - 10 : binding_line - 5
|
|
|
|
e = b + 9
|
|
|
|
else
|
|
|
|
b, e = $1.split(/[-,]/)
|
|
|
|
if e
|
|
|
|
b = b.to_i
|
|
|
|
e = e.to_i
|
|
|
|
else
|
|
|
|
b = b.to_i - 5
|
|
|
|
e = b + 9
|
|
|
|
end
|
|
|
|
end
|
2011-05-19 04:07:25 +04:00
|
|
|
previous_line = b
|
|
|
|
display_list(b, e, binding_file, binding_line)
|
2011-05-19 01:19:18 +04:00
|
|
|
|
|
|
|
when /^\s*up(?:\s+(\d+))?$/
|
|
|
|
previous_line = nil
|
|
|
|
if $1
|
|
|
|
lev = $1.to_i
|
|
|
|
else
|
|
|
|
lev = 1
|
|
|
|
end
|
|
|
|
frame_pos += lev
|
|
|
|
if frame_pos >= @frames.size
|
|
|
|
frame_pos = @frames.size - 1
|
|
|
|
stdout.print "At toplevel\n"
|
|
|
|
end
|
|
|
|
binding, binding_file, binding_line = @frames[frame_pos]
|
|
|
|
stdout.print format_frame(frame_pos)
|
|
|
|
|
|
|
|
when /^\s*down(?:\s+(\d+))?$/
|
|
|
|
previous_line = nil
|
|
|
|
if $1
|
|
|
|
lev = $1.to_i
|
|
|
|
else
|
|
|
|
lev = 1
|
|
|
|
end
|
|
|
|
frame_pos -= lev
|
|
|
|
if frame_pos < 0
|
|
|
|
frame_pos = 0
|
|
|
|
stdout.print "At stack bottom\n"
|
|
|
|
end
|
|
|
|
binding, binding_file, binding_line = @frames[frame_pos]
|
|
|
|
stdout.print format_frame(frame_pos)
|
|
|
|
|
|
|
|
when /^\s*fin(?:ish)?$/
|
|
|
|
if frame_pos == @frames.size
|
|
|
|
stdout.print "\"finish\" not meaningful in the outermost frame.\n"
|
|
|
|
else
|
|
|
|
@finish_pos = @frames.size - frame_pos
|
|
|
|
frame_pos = 0
|
|
|
|
prompt = false
|
|
|
|
end
|
|
|
|
|
|
|
|
when /^\s*cat(?:ch)?(?:\s+(.+))?$/
|
|
|
|
if $1
|
|
|
|
excn = $1
|
|
|
|
if excn == 'off'
|
|
|
|
@catch = nil
|
|
|
|
stdout.print "Clear catchpoint.\n"
|
|
|
|
else
|
|
|
|
@catch = excn
|
|
|
|
stdout.printf "Set catchpoint %s.\n", @catch
|
|
|
|
end
|
|
|
|
else
|
|
|
|
if @catch
|
|
|
|
stdout.printf "Catchpoint %s.\n", @catch
|
|
|
|
else
|
|
|
|
stdout.print "No catchpoint.\n"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
when /^\s*q(?:uit)?$/
|
|
|
|
input = readline("Really quit? (y/n) ", false)
|
|
|
|
if input == "y"
|
|
|
|
exit! # exit -> exit!: No graceful way to stop threads...
|
|
|
|
end
|
|
|
|
|
|
|
|
when /^\s*v(?:ar)?\s+/
|
|
|
|
debug_variable_info($', binding)
|
|
|
|
|
|
|
|
when /^\s*m(?:ethod)?\s+/
|
|
|
|
debug_method_info($', binding)
|
|
|
|
|
|
|
|
when /^\s*th(?:read)?\s+/
|
|
|
|
if DEBUGGER__.debug_thread_info($', binding) == :cont
|
|
|
|
prompt = false
|
|
|
|
end
|
|
|
|
|
|
|
|
when /^\s*pp\s+/
|
|
|
|
PP.pp(debug_eval($', binding), stdout)
|
|
|
|
|
|
|
|
when /^\s*p\s+/
|
|
|
|
stdout.printf "%s\n", debug_eval($', binding).inspect
|
|
|
|
|
|
|
|
when /^\s*r(?:estart)?$/
|
|
|
|
$debugger_restart.call
|
|
|
|
|
|
|
|
when /^\s*h(?:elp)?$/
|
|
|
|
debug_print_help()
|
|
|
|
|
|
|
|
else
|
|
|
|
v = debug_eval(input, binding)
|
|
|
|
stdout.printf "%s\n", v.inspect
|
|
|
|
end
|
|
|
|
end
|
2000-01-05 07:41:21 +03:00
|
|
|
end
|
2011-05-19 01:19:18 +04:00
|
|
|
MUTEX.unlock
|
|
|
|
resume_all
|
2000-01-05 07:41:21 +03:00
|
|
|
end
|
|
|
|
|
2011-05-19 01:19:18 +04:00
|
|
|
def debug_print_help
|
|
|
|
stdout.print <<EOHELP
|
2000-05-01 13:42:38 +04:00
|
|
|
Debugger help v.-0.002b
|
|
|
|
Commands
|
2004-12-06 18:31:26 +03:00
|
|
|
b[reak] [file:|class:]<line|method>
|
2003-07-27 09:49:03 +04:00
|
|
|
b[reak] [class.]<line|method>
|
2000-10-20 20:37:01 +04:00
|
|
|
set breakpoint to some position
|
2000-05-01 13:42:38 +04:00
|
|
|
wat[ch] <expression> set watchpoint to some expression
|
2006-07-09 03:17:53 +04:00
|
|
|
cat[ch] (<exception>|off) set catchpoint to an exception
|
2000-05-01 13:42:38 +04:00
|
|
|
b[reak] list breakpoints
|
2000-10-14 18:44:58 +04:00
|
|
|
cat[ch] show catchpoint
|
2001-03-21 06:41:45 +03:00
|
|
|
del[ete][ nnn] delete some or all breakpoints
|
2000-05-01 13:42:38 +04:00
|
|
|
disp[lay] <expression> add expression into display expression list
|
|
|
|
undisp[lay][ nnn] delete one particular or all display expressions
|
|
|
|
c[ont] run until program ends or hit breakpoint
|
|
|
|
s[tep][ nnn] step (into methods) one line or till line nnn
|
|
|
|
n[ext][ nnn] go over one line or till line nnn
|
|
|
|
w[here] display frames
|
|
|
|
f[rame] alias for where
|
|
|
|
l[ist][ (-|nn-mm)] list program, - lists backwards
|
|
|
|
nn-mm lists given lines
|
|
|
|
up[ nn] move to higher frame
|
|
|
|
down[ nn] move to lower frame
|
|
|
|
fin[ish] return to outer frame
|
2000-12-25 10:31:43 +03:00
|
|
|
tr[ace] (on|off) set trace mode of current thread
|
|
|
|
tr[ace] (on|off) all set trace mode of all threads
|
2000-05-01 13:42:38 +04:00
|
|
|
q[uit] exit from debugger
|
|
|
|
v[ar] g[lobal] show global variables
|
|
|
|
v[ar] l[ocal] show local variables
|
|
|
|
v[ar] i[nstance] <object> show instance variables of object
|
|
|
|
v[ar] c[onst] <object> show constants of object
|
|
|
|
m[ethod] i[nstance] <obj> show methods of object
|
2000-08-15 10:22:49 +04:00
|
|
|
m[ethod] <class|module> show instance methods of class or module
|
2000-05-01 13:42:38 +04:00
|
|
|
th[read] l[ist] list all threads
|
2000-12-25 10:31:43 +03:00
|
|
|
th[read] c[ur[rent]] show current thread
|
|
|
|
th[read] [sw[itch]] <nnn> switch thread context to nnn
|
|
|
|
th[read] stop <nnn> stop thread nnn
|
|
|
|
th[read] resume <nnn> resume thread nnn
|
2011-11-06 20:18:26 +04:00
|
|
|
pp expression evaluate expression and pretty_print its value
|
2000-05-01 13:42:38 +04:00
|
|
|
p expression evaluate expression and print its value
|
2011-11-06 20:18:26 +04:00
|
|
|
r[estart] restart program
|
2000-05-01 13:42:38 +04:00
|
|
|
h[elp] print this help
|
|
|
|
<everything else> evaluate
|
2011-05-19 01:41:01 +04:00
|
|
|
EOHELP
|
2011-05-19 04:07:25 +04:00
|
|
|
end
|
2002-02-25 18:30:31 +03:00
|
|
|
|
2011-05-19 04:07:25 +04:00
|
|
|
def display_expressions(binding)
|
|
|
|
n = 1
|
|
|
|
for d in display
|
|
|
|
if d[0]
|
|
|
|
stdout.printf "%d: ", n
|
|
|
|
display_expression(d[1], binding)
|
|
|
|
end
|
|
|
|
n += 1
|
2000-01-05 07:41:21 +03:00
|
|
|
end
|
|
|
|
end
|
2000-08-28 13:53:42 +04:00
|
|
|
|
2011-05-19 04:07:25 +04:00
|
|
|
def display_expression(exp, binding)
|
|
|
|
stdout.printf "%s = %s\n", exp, debug_silent_eval(exp, binding).to_s
|
2000-01-05 07:41:21 +03:00
|
|
|
end
|
1999-08-13 09:45:20 +04:00
|
|
|
|
2011-05-19 04:07:25 +04:00
|
|
|
def frame_set_pos(file, line)
|
|
|
|
if @frames[0]
|
|
|
|
@frames[0][1] = file
|
|
|
|
@frames[0][2] = line
|
2000-01-05 07:41:21 +03:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-05-19 04:07:25 +04:00
|
|
|
def display_frames(pos)
|
|
|
|
0.upto(@frames.size - 1) do |n|
|
|
|
|
if n == pos
|
|
|
|
stdout.print "--> "
|
|
|
|
else
|
|
|
|
stdout.print " "
|
|
|
|
end
|
|
|
|
stdout.print format_frame(n)
|
2000-01-05 07:41:21 +03:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-05-19 04:07:25 +04:00
|
|
|
def format_frame(pos)
|
|
|
|
_, file, line, id = @frames[pos]
|
|
|
|
sprintf "#%d %s:%s%s\n", pos + 1, file, line,
|
|
|
|
(id ? ":in `#{id.id2name}'" : "")
|
2000-01-05 07:41:21 +03:00
|
|
|
end
|
|
|
|
|
2011-05-19 04:07:25 +04:00
|
|
|
def display_list(b, e, file, line)
|
|
|
|
stdout.printf "[%d, %d] in %s\n", b, e, file
|
|
|
|
if lines = SCRIPT_LINES__[file] and lines != true
|
|
|
|
b.upto(e) do |n|
|
|
|
|
if n > 0 && lines[n-1]
|
|
|
|
if n == line
|
|
|
|
stdout.printf "=> %d %s\n", n, lines[n-1].chomp
|
|
|
|
else
|
|
|
|
stdout.printf " %d %s\n", n, lines[n-1].chomp
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
else
|
|
|
|
stdout.printf "No sourcefile available for %s\n", file
|
|
|
|
end
|
2000-01-05 07:41:21 +03:00
|
|
|
end
|
|
|
|
|
2011-05-19 04:07:25 +04:00
|
|
|
def line_at(file, line)
|
|
|
|
lines = SCRIPT_LINES__[file]
|
|
|
|
if lines
|
|
|
|
return "\n" if lines == true
|
|
|
|
line = lines[line-1]
|
|
|
|
return "\n" unless line
|
|
|
|
return line
|
2000-01-05 07:41:21 +03:00
|
|
|
end
|
2011-05-19 04:07:25 +04:00
|
|
|
return "\n"
|
2000-01-05 07:41:21 +03:00
|
|
|
end
|
|
|
|
|
2011-05-19 04:07:25 +04:00
|
|
|
def debug_funcname(id)
|
|
|
|
if id.nil?
|
|
|
|
"toplevel"
|
|
|
|
else
|
|
|
|
id.id2name
|
|
|
|
end
|
2002-02-25 18:30:31 +03:00
|
|
|
end
|
2000-10-14 18:44:58 +04:00
|
|
|
|
2011-05-19 04:07:25 +04:00
|
|
|
def check_break_points(file, klass, pos, binding, id)
|
|
|
|
return false if break_points.empty?
|
|
|
|
n = 1
|
|
|
|
for b in break_points
|
|
|
|
if b[0] # valid
|
|
|
|
if b[1] == 0 # breakpoint
|
|
|
|
if (b[2] == file and b[3] == pos) or
|
|
|
|
(klass and b[2] == klass and b[3] == pos)
|
|
|
|
stdout.printf "Breakpoint %d, %s at %s:%s\n", n, debug_funcname(id), file, pos
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
elsif b[1] == 1 # watchpoint
|
|
|
|
if debug_silent_eval(b[2], binding)
|
|
|
|
stdout.printf "Watchpoint %d, %s at %s:%s\n", n, debug_funcname(id), file, pos
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
n += 1
|
2000-10-14 18:44:58 +04:00
|
|
|
end
|
2011-05-19 04:07:25 +04:00
|
|
|
return false
|
2000-01-05 07:41:21 +03:00
|
|
|
end
|
1999-08-13 09:45:20 +04:00
|
|
|
|
2011-05-19 04:07:25 +04:00
|
|
|
def excn_handle(file, line, id, binding)
|
|
|
|
if $!.class <= SystemExit
|
|
|
|
set_trace_func nil
|
|
|
|
exit
|
2002-02-25 18:30:31 +03:00
|
|
|
end
|
1999-08-13 09:45:20 +04:00
|
|
|
|
2011-05-19 04:07:25 +04:00
|
|
|
if @catch and ($!.class.ancestors.find { |e| e.to_s == @catch })
|
|
|
|
stdout.printf "%s:%d: `%s' (%s)\n", file, line, $!, $!.class
|
|
|
|
fs = @frames.size
|
|
|
|
tb = caller(0)[-fs..-1]
|
|
|
|
if tb
|
|
|
|
for i in tb
|
|
|
|
stdout.printf "\tfrom %s\n", i
|
|
|
|
end
|
|
|
|
end
|
|
|
|
suspend_all
|
|
|
|
debug_command(file, line, id, binding)
|
2002-02-25 18:30:31 +03:00
|
|
|
end
|
2011-05-19 04:07:25 +04:00
|
|
|
end
|
1999-08-13 09:45:20 +04:00
|
|
|
|
2011-05-19 04:07:25 +04:00
|
|
|
def trace_func(event, file, line, id, binding, klass)
|
|
|
|
Tracer.trace_func(event, file, line, id, binding, klass) if trace?
|
|
|
|
context(Thread.current).check_suspend
|
|
|
|
@file = file
|
|
|
|
@line = line
|
|
|
|
case event
|
|
|
|
when 'line'
|
|
|
|
frame_set_pos(file, line)
|
|
|
|
if !@no_step or @frames.size == @no_step
|
|
|
|
@stop_next -= 1
|
|
|
|
@stop_next = -1 if @stop_next < 0
|
|
|
|
elsif @frames.size < @no_step
|
|
|
|
@stop_next = 0 # break here before leaving...
|
|
|
|
else
|
|
|
|
# nothing to do. skipped.
|
|
|
|
end
|
|
|
|
if @stop_next == 0 or check_break_points(file, nil, line, binding, id)
|
|
|
|
@no_step = nil
|
|
|
|
suspend_all
|
|
|
|
debug_command(file, line, id, binding)
|
|
|
|
end
|
2000-01-05 07:41:21 +03:00
|
|
|
|
2011-05-19 04:07:25 +04:00
|
|
|
when 'call'
|
|
|
|
@frames.unshift [binding, file, line, id]
|
|
|
|
if check_break_points(file, klass, id.id2name, binding, id)
|
|
|
|
suspend_all
|
|
|
|
debug_command(file, line, id, binding)
|
|
|
|
end
|
2000-01-05 07:41:21 +03:00
|
|
|
|
2011-05-19 04:07:25 +04:00
|
|
|
when 'c-call'
|
|
|
|
frame_set_pos(file, line)
|
1999-08-13 09:45:20 +04:00
|
|
|
|
2011-05-19 04:07:25 +04:00
|
|
|
when 'class'
|
|
|
|
@frames.unshift [binding, file, line, id]
|
1999-08-13 09:45:20 +04:00
|
|
|
|
2011-05-19 04:07:25 +04:00
|
|
|
when 'return', 'end'
|
|
|
|
if @frames.size == @finish_pos
|
|
|
|
@stop_next = 1
|
|
|
|
@finish_pos = 0
|
|
|
|
end
|
|
|
|
@frames.shift
|
2000-01-05 07:41:21 +03:00
|
|
|
|
2011-05-19 04:07:25 +04:00
|
|
|
when 'raise'
|
|
|
|
excn_handle(file, line, id, binding)
|
2000-01-05 07:41:21 +03:00
|
|
|
|
2011-05-19 04:07:25 +04:00
|
|
|
end
|
|
|
|
@last_file = file
|
|
|
|
end
|
2002-02-25 18:30:31 +03:00
|
|
|
end
|
2000-12-25 10:31:43 +03:00
|
|
|
|
2011-05-19 04:07:25 +04:00
|
|
|
trap("INT") { DEBUGGER__.interrupt }
|
|
|
|
@last_thread = Thread::main
|
|
|
|
@max_thread = 1
|
|
|
|
@thread_list = {Thread::main => 1}
|
|
|
|
@break_points = []
|
|
|
|
@display = []
|
|
|
|
@waiting = []
|
|
|
|
@stdout = STDOUT
|
1999-08-13 09:45:20 +04:00
|
|
|
|
2011-05-19 04:07:25 +04:00
|
|
|
class << DEBUGGER__
|
|
|
|
def stdout
|
|
|
|
@stdout
|
|
|
|
end
|
1999-08-13 09:45:20 +04:00
|
|
|
|
2011-05-19 04:07:25 +04:00
|
|
|
def stdout=(s)
|
|
|
|
@stdout = s
|
|
|
|
end
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2011-05-19 04:07:25 +04:00
|
|
|
def display
|
|
|
|
@display
|
2000-12-25 10:31:43 +03:00
|
|
|
end
|
|
|
|
|
2011-05-19 04:07:25 +04:00
|
|
|
def break_points
|
|
|
|
@break_points
|
|
|
|
end
|
2000-12-25 10:31:43 +03:00
|
|
|
|
2011-05-19 04:07:25 +04:00
|
|
|
def waiting
|
|
|
|
@waiting
|
2007-06-18 11:55:45 +04:00
|
|
|
end
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2011-05-19 04:07:25 +04:00
|
|
|
def set_trace( arg )
|
|
|
|
MUTEX.synchronize do
|
|
|
|
make_thread_list
|
|
|
|
for th, in @thread_list
|
|
|
|
context(th).set_trace arg
|
|
|
|
end
|
2007-06-18 11:55:45 +04:00
|
|
|
end
|
2011-05-19 04:07:25 +04:00
|
|
|
arg
|
2007-06-18 11:55:45 +04:00
|
|
|
end
|
2000-12-25 10:31:43 +03:00
|
|
|
|
2011-05-19 04:07:25 +04:00
|
|
|
def set_last_thread(th)
|
|
|
|
@last_thread = th
|
1999-08-13 09:45:20 +04:00
|
|
|
end
|
|
|
|
|
2011-05-19 04:07:25 +04:00
|
|
|
def suspend
|
|
|
|
MUTEX.synchronize do
|
|
|
|
make_thread_list
|
|
|
|
for th, in @thread_list
|
|
|
|
next if th == Thread.current
|
|
|
|
context(th).set_suspend
|
|
|
|
end
|
|
|
|
end
|
|
|
|
# Schedule other threads to suspend as soon as possible.
|
|
|
|
Thread.pass
|
1998-01-16 15:13:05 +03:00
|
|
|
end
|
|
|
|
|
2011-05-19 04:07:25 +04:00
|
|
|
def resume
|
|
|
|
MUTEX.synchronize do
|
|
|
|
make_thread_list
|
|
|
|
@thread_list.each do |th,|
|
|
|
|
next if th == Thread.current
|
|
|
|
context(th).clear_suspend
|
|
|
|
end
|
|
|
|
waiting.each do |th|
|
|
|
|
th.run
|
|
|
|
end
|
|
|
|
waiting.clear
|
|
|
|
end
|
|
|
|
# Schedule other threads to restart as soon as possible.
|
|
|
|
Thread.pass
|
2002-02-25 18:30:31 +03:00
|
|
|
end
|
2011-05-19 04:07:25 +04:00
|
|
|
|
|
|
|
def context(thread=Thread.current)
|
|
|
|
c = thread[:__debugger_data__]
|
|
|
|
unless c
|
|
|
|
thread[:__debugger_data__] = c = Context.new
|
|
|
|
end
|
|
|
|
c
|
2000-01-05 07:41:21 +03:00
|
|
|
end
|
1999-08-13 09:45:20 +04:00
|
|
|
|
2011-05-19 04:07:25 +04:00
|
|
|
def interrupt
|
|
|
|
context(@last_thread).stop_next
|
2000-01-05 07:41:21 +03:00
|
|
|
end
|
1999-08-13 09:45:20 +04:00
|
|
|
|
2011-05-19 04:07:25 +04:00
|
|
|
def get_thread(num)
|
|
|
|
th = @thread_list.key(num)
|
|
|
|
unless th
|
|
|
|
@stdout.print "No thread ##{num}\n"
|
|
|
|
throw :debug_error
|
1998-01-16 15:13:05 +03:00
|
|
|
end
|
2011-05-19 04:07:25 +04:00
|
|
|
th
|
2000-01-05 07:41:21 +03:00
|
|
|
end
|
1999-08-13 09:45:20 +04:00
|
|
|
|
2011-05-19 04:07:25 +04:00
|
|
|
def thread_list(num)
|
|
|
|
th = get_thread(num)
|
2002-02-25 18:30:31 +03:00
|
|
|
if th == Thread.current
|
2011-05-19 04:07:25 +04:00
|
|
|
@stdout.print "+"
|
2002-02-25 18:30:31 +03:00
|
|
|
else
|
2011-05-19 04:07:25 +04:00
|
|
|
@stdout.print " "
|
2002-02-25 18:30:31 +03:00
|
|
|
end
|
2011-05-19 04:07:25 +04:00
|
|
|
@stdout.printf "%d ", num
|
|
|
|
@stdout.print th.inspect, "\t"
|
|
|
|
file = context(th).instance_eval{@file}
|
|
|
|
if file
|
|
|
|
@stdout.print file,":",context(th).instance_eval{@line}
|
|
|
|
end
|
|
|
|
@stdout.print "\n"
|
|
|
|
end
|
2000-01-05 07:41:21 +03:00
|
|
|
|
2011-05-19 04:07:25 +04:00
|
|
|
def thread_list_all
|
|
|
|
for th in @thread_list.values.sort
|
|
|
|
thread_list(th)
|
2002-02-25 18:30:31 +03:00
|
|
|
end
|
2011-05-19 04:07:25 +04:00
|
|
|
end
|
2000-01-05 07:41:21 +03:00
|
|
|
|
2011-05-19 04:07:25 +04:00
|
|
|
def make_thread_list
|
|
|
|
hash = {}
|
|
|
|
for th in Thread::list
|
|
|
|
if @thread_list.key? th
|
|
|
|
hash[th] = @thread_list[th]
|
|
|
|
else
|
|
|
|
@max_thread += 1
|
|
|
|
hash[th] = @max_thread
|
|
|
|
end
|
|
|
|
end
|
|
|
|
@thread_list = hash
|
|
|
|
end
|
|
|
|
|
|
|
|
def debug_thread_info(input, binding)
|
|
|
|
case input
|
|
|
|
when /^l(?:ist)?/
|
|
|
|
make_thread_list
|
|
|
|
thread_list_all
|
|
|
|
|
|
|
|
when /^c(?:ur(?:rent)?)?$/
|
|
|
|
make_thread_list
|
|
|
|
thread_list(@thread_list[Thread.current])
|
|
|
|
|
|
|
|
when /^(?:sw(?:itch)?\s+)?(\d+)/
|
|
|
|
make_thread_list
|
|
|
|
th = get_thread($1.to_i)
|
|
|
|
if th == Thread.current
|
|
|
|
@stdout.print "It's the current thread.\n"
|
|
|
|
else
|
|
|
|
thread_list(@thread_list[th])
|
|
|
|
context(th).stop_next
|
|
|
|
th.run
|
|
|
|
return :cont
|
|
|
|
end
|
|
|
|
|
|
|
|
when /^stop\s+(\d+)/
|
|
|
|
make_thread_list
|
|
|
|
th = get_thread($1.to_i)
|
|
|
|
if th == Thread.current
|
|
|
|
@stdout.print "It's the current thread.\n"
|
|
|
|
elsif th.stop?
|
|
|
|
@stdout.print "Already stopped.\n"
|
|
|
|
else
|
|
|
|
thread_list(@thread_list[th])
|
|
|
|
context(th).suspend
|
|
|
|
end
|
|
|
|
|
|
|
|
when /^resume\s+(\d+)/
|
|
|
|
make_thread_list
|
|
|
|
th = get_thread($1.to_i)
|
|
|
|
if th == Thread.current
|
|
|
|
@stdout.print "It's the current thread.\n"
|
|
|
|
elsif !th.stop?
|
|
|
|
@stdout.print "Already running."
|
|
|
|
else
|
|
|
|
thread_list(@thread_list[th])
|
|
|
|
th.run
|
|
|
|
end
|
2000-01-05 07:41:21 +03:00
|
|
|
end
|
1998-01-16 15:13:05 +03:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-05-19 04:07:25 +04:00
|
|
|
stdout.printf "Debug.rb\n"
|
|
|
|
stdout.printf "Emacs support available.\n\n"
|
|
|
|
RubyVM::InstructionSequence.compile_option = {
|
|
|
|
trace_instruction: true
|
|
|
|
}
|
|
|
|
set_trace_func proc { |event, file, line, id, binding, klass, *rest|
|
|
|
|
DEBUGGER__.context.trace_func event, file, line, id, binding, klass
|
|
|
|
}
|
1999-10-15 12:52:18 +04:00
|
|
|
end
|