mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
error.c: redefined backtrace
* error.c (rb_get_backtrace): honor redefined Exception#backtrace method. [ruby-core:78097] [Bug #12925] * eval.c (setup_exception): rescue exceptions during backtrace setup. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56767 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
d432839cbd
commit
7ab8dcebbf
3 changed files with 66 additions and 16 deletions
23
error.c
23
error.c
|
@ -885,17 +885,20 @@ exc_backtrace(VALUE exc)
|
||||||
VALUE
|
VALUE
|
||||||
rb_get_backtrace(VALUE exc)
|
rb_get_backtrace(VALUE exc)
|
||||||
{
|
{
|
||||||
VALUE info, klass = rb_eException;
|
|
||||||
ID mid = id_backtrace;
|
ID mid = id_backtrace;
|
||||||
rb_thread_t *th = GET_THREAD();
|
if (rb_method_basic_definition_p(CLASS_OF(exc), id_backtrace)) {
|
||||||
if (NIL_P(exc))
|
VALUE info, klass = rb_eException;
|
||||||
return Qnil;
|
rb_thread_t *th = GET_THREAD();
|
||||||
EXEC_EVENT_HOOK(th, RUBY_EVENT_C_CALL, exc, mid, mid, klass, Qundef);
|
if (NIL_P(exc))
|
||||||
info = exc_backtrace(exc);
|
return Qnil;
|
||||||
EXEC_EVENT_HOOK(th, RUBY_EVENT_C_RETURN, exc, mid, mid, klass, info);
|
EXEC_EVENT_HOOK(th, RUBY_EVENT_C_CALL, exc, mid, mid, klass, Qundef);
|
||||||
if (NIL_P(info))
|
info = exc_backtrace(exc);
|
||||||
return Qnil;
|
EXEC_EVENT_HOOK(th, RUBY_EVENT_C_RETURN, exc, mid, mid, klass, info);
|
||||||
return rb_check_backtrace(info);
|
if (NIL_P(info))
|
||||||
|
return Qnil;
|
||||||
|
return rb_check_backtrace(info);
|
||||||
|
}
|
||||||
|
return rb_funcall(exc, mid, 0, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
25
eval.c
25
eval.c
|
@ -507,13 +507,25 @@ setup_exception(rb_thread_t *th, int tag, volatile VALUE mesg, VALUE cause)
|
||||||
rb_ivar_set(mesg, idBt_locations, at);
|
rb_ivar_set(mesg, idBt_locations, at);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (NIL_P(rb_get_backtrace(mesg))) {
|
else {
|
||||||
at = rb_vm_backtrace_object();
|
int status;
|
||||||
if (OBJ_FROZEN(mesg)) {
|
|
||||||
mesg = rb_obj_dup(mesg);
|
TH_PUSH_TAG(th);
|
||||||
|
if ((status = EXEC_TAG()) == 0) {
|
||||||
|
VALUE bt;
|
||||||
|
if (rb_threadptr_set_raised(th)) goto fatal;
|
||||||
|
bt = rb_get_backtrace(mesg);
|
||||||
|
if (NIL_P(bt)) {
|
||||||
|
at = rb_vm_backtrace_object();
|
||||||
|
if (OBJ_FROZEN(mesg)) {
|
||||||
|
mesg = rb_obj_dup(mesg);
|
||||||
|
}
|
||||||
|
rb_ivar_set(mesg, idBt_locations, at);
|
||||||
|
set_backtrace(mesg, at);
|
||||||
|
}
|
||||||
|
rb_threadptr_reset_raised(th);
|
||||||
}
|
}
|
||||||
rb_ivar_set(mesg, idBt_locations, at);
|
TH_POP_TAG();
|
||||||
set_backtrace(mesg, at);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -556,6 +568,7 @@ setup_exception(rb_thread_t *th, int tag, volatile VALUE mesg, VALUE cause)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (rb_threadptr_set_raised(th)) {
|
if (rb_threadptr_set_raised(th)) {
|
||||||
|
fatal:
|
||||||
th->errinfo = exception_error;
|
th->errinfo = exception_error;
|
||||||
rb_threadptr_reset_raised(th);
|
rb_threadptr_reset_raised(th);
|
||||||
TH_JUMP_TAG(th, TAG_FATAL);
|
TH_JUMP_TAG(th, TAG_FATAL);
|
||||||
|
|
|
@ -965,4 +965,38 @@ $stderr = $stdout; raise "\x82\xa0"') do |outs, errs, status|
|
||||||
}
|
}
|
||||||
end;
|
end;
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def test_redefined_backtrace
|
||||||
|
assert_separately([], "#{<<-"begin;"}\n#{<<-"end;"}")
|
||||||
|
begin;
|
||||||
|
$exc = nil
|
||||||
|
|
||||||
|
class Exception
|
||||||
|
undef backtrace
|
||||||
|
def backtrace
|
||||||
|
$exc = self
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
e = assert_raise(RuntimeError) {
|
||||||
|
raise RuntimeError, "hello"
|
||||||
|
}
|
||||||
|
assert_same(e, $exc)
|
||||||
|
end;
|
||||||
|
end
|
||||||
|
|
||||||
|
def test_wrong_backtrace
|
||||||
|
assert_separately([], "#{<<-"begin;"}\n#{<<-"end;"}")
|
||||||
|
begin;
|
||||||
|
class Exception
|
||||||
|
undef backtrace
|
||||||
|
def backtrace(a)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
assert_raise(RuntimeError) {
|
||||||
|
raise RuntimeError, "hello"
|
||||||
|
}
|
||||||
|
end;
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue