mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
88abd791f5
* variable.c (rb_cvar_set): empty iv_tbl may cause infinite loop. * variable.c (rb_cvar_get): ditto. * variable.c (cvar_override_check): ditto. * bignum.c (rb_big_eq): convert Bignum to Float, instead of reverse. * time.c (time_localtime): getting tm should not be prohibited for frozen time objects. * time.c (time_gmtime): ditto. * version.c (Init_version): freeze RUBY_VERSION, RUBY_RELEASE_DATE, and RUBY_PLATFORM. * file.c (Init_File): freeze File::SEPARATOR, ALT_SEPARATOR and PATH_SEPARATOR. * file.c (rb_stat_cmp): should check operand type before calling get_stat(). * eval.c (rb_eval_cmd): should not invoke "call" with a block on any occasion. * numeric.c (fix_aref): idx may be a Bignum. * numeric.c (num_remainder): a bug in Numeric#remainder. * eval.c (rb_exec_end_proc): END might be called within END block. * class.c (rb_mod_clone): should not copy class name, since clone should remain anonymous. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1800 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
171 lines
2.8 KiB
Ruby
171 lines
2.8 KiB
Ruby
#
|
|
# tracer.rb -
|
|
# $Release Version: 0.2$
|
|
# $Revision: 1.8 $
|
|
# $Date: 1998/05/19 03:42:49 $
|
|
# by Keiju ISHITSUKA(Nippon Rational Inc.)
|
|
#
|
|
# --
|
|
#
|
|
#
|
|
#
|
|
|
|
#
|
|
# tracer main class
|
|
#
|
|
class Tracer
|
|
@RCS_ID='-$Id: tracer.rb,v 1.8 1998/05/19 03:42:49 keiju Exp keiju $-'
|
|
|
|
@stdout = STDOUT
|
|
@verbose = false
|
|
class << self
|
|
attr :verbose, true
|
|
alias verbose? verbose
|
|
attr :stdout, true
|
|
end
|
|
|
|
MY_FILE_NAME = caller(0)[0].scan(/^(.*):[0-9]+$/)[0][0]
|
|
|
|
EVENT_SYMBOL = {
|
|
"line" => "-",
|
|
"call" => ">",
|
|
"return" => "<",
|
|
"class" => "C",
|
|
"end" => "E",
|
|
"c-call" => ">",
|
|
"c-return" => "<",
|
|
}
|
|
|
|
def initialize
|
|
@threads = Hash.new
|
|
if defined? Thread.main
|
|
@threads[Thread.main.id] = 0
|
|
else
|
|
@threads[Thread.current.id] = 0
|
|
end
|
|
|
|
@get_line_procs = {}
|
|
|
|
@filters = []
|
|
end
|
|
|
|
def stdout
|
|
Tracer.stdout
|
|
end
|
|
|
|
def on
|
|
if block_given?
|
|
on
|
|
begin
|
|
yield
|
|
ensure
|
|
off
|
|
end
|
|
else
|
|
set_trace_func proc{|event, file, line, id, binding, klass, *rest|
|
|
trace_func event, file, line, id, binding, klass
|
|
}
|
|
stdout.print "Trace on\n" if Tracer.verbose?
|
|
end
|
|
end
|
|
|
|
def off
|
|
set_trace_func nil
|
|
stdout.print "Trace off\n" if Tracer.verbose?
|
|
end
|
|
|
|
def add_filter(p = proc)
|
|
@filters.push p
|
|
end
|
|
|
|
def set_get_line_procs(file, p = proc)
|
|
@get_line_procs[file] = p
|
|
end
|
|
|
|
def get_line(file, line)
|
|
if p = @get_line_procs[file]
|
|
return p.call line
|
|
end
|
|
|
|
unless list = LINES__[file]
|
|
begin
|
|
f = open(file)
|
|
begin
|
|
LINES__[file] = list = f.readlines
|
|
ensure
|
|
f.close
|
|
end
|
|
rescue
|
|
LINES__[file] = list = []
|
|
end
|
|
end
|
|
if l = list[line - 1]
|
|
l
|
|
else
|
|
"-\n"
|
|
end
|
|
end
|
|
|
|
def get_thread_no
|
|
if no = @threads[Thread.current.id]
|
|
no
|
|
else
|
|
@threads[Thread.current.id] = @threads.size
|
|
end
|
|
end
|
|
|
|
def trace_func(event, file, line, id, binding, klass)
|
|
return if file == MY_FILE_NAME
|
|
|
|
for p in @filters
|
|
return unless p.call event, file, line, id, binding, klass
|
|
end
|
|
|
|
Thread.critical = true
|
|
stdout.printf("#%d:%s:%d:%s:%s: %s",
|
|
get_thread_no,
|
|
file,
|
|
line,
|
|
klass || '',
|
|
EVENT_SYMBOL[event],
|
|
get_line(file, line))
|
|
Thread.critical = false
|
|
end
|
|
|
|
Single = new
|
|
def Tracer.on
|
|
if block_given?
|
|
Single.on{yield}
|
|
else
|
|
Single.on
|
|
end
|
|
end
|
|
|
|
def Tracer.off
|
|
Single.off
|
|
end
|
|
|
|
def Tracer.set_get_line_procs(file_name, p = proc)
|
|
Single.set_get_line_procs(file_name, p)
|
|
end
|
|
|
|
def Tracer.add_filter(p = proc)
|
|
Single.add_filter(p)
|
|
end
|
|
|
|
end
|
|
|
|
SCRIPT_LINES__ = {} unless defined? SCRIPT_LINES__
|
|
|
|
if caller(0).size == 1
|
|
if $0 == Tracer::MY_FILE_NAME
|
|
# direct call
|
|
|
|
$0 = ARGV[0]
|
|
ARGV.shift
|
|
Tracer.on
|
|
require $0
|
|
else
|
|
Tracer.on
|
|
end
|
|
end
|