merge revision(s) r41598,r45181:

* eval_error.c (warn_printf): use rb_vsprintf instead so ruby specific
	  extensions like PRIsVALUE can be used in format strings

	* eval_error.c (error_print): use warn_print_str (alias for
	  rb_write_error_str) to print a string value instead of using
	  RSTRING_PTR and RSTRING_LEN manually

	* eval.c (setup_exception): use PRIsVALUE instead of %s and RSTRING_PTR

	* eval.c (setup_exception): preserve exception class name encoding
	  in debug mode messages.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_0_0@45253 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nagachika 2014-03-02 16:53:02 +00:00
parent 6df2fbf0f6
commit c6816d074b
5 changed files with 41 additions and 17 deletions

View file

@ -1,3 +1,12 @@
Mon Mar 3 01:43:30 2014 Charlie Somerville <charliesome@ruby-lang.org>
* eval_error.c (warn_printf): use rb_vsprintf instead so ruby specific
extensions like PRIsVALUE can be used in format strings
* eval_error.c (error_print): use warn_print_str (alias for
rb_write_error_str) to print a string value instead of using
RSTRING_PTR and RSTRING_LEN manually
* eval.c (setup_exception): use PRIsVALUE instead of %s and RSTRING_PTR
Mon Mar 3 01:32:14 2014 Nobuyoshi Nakada <nobu@ruby-lang.org> Mon Mar 3 01:32:14 2014 Nobuyoshi Nakada <nobu@ruby-lang.org>
* ext/readline/extconf.rb (rl_hook_func_t): define as Function for * ext/readline/extconf.rb (rl_hook_func_t): define as Function for

15
eval.c
View file

@ -474,19 +474,16 @@ setup_exception(rb_thread_t *th, int tag, volatile VALUE mesg)
e = rb_obj_as_string(mesg); e = rb_obj_as_string(mesg);
th->errinfo = mesg; th->errinfo = mesg;
if (file && line) { if (file && line) {
warn_printf("Exception `%s' at %s:%d - %s\n", warn_printf("Exception `%"PRIsVALUE"' at %s:%d - %"PRIsVALUE"\n",
rb_obj_classname(th->errinfo), rb_obj_class(mesg), file, line, e);
file, line, RSTRING_PTR(e));
} }
else if (file) { else if (file) {
warn_printf("Exception `%s' at %s - %s\n", warn_printf("Exception `%"PRIsVALUE"' at %s - %"PRIsVALUE"\n",
rb_obj_classname(th->errinfo), rb_obj_class(mesg), file, e);
file, RSTRING_PTR(e));
} }
else { else {
warn_printf("Exception `%s' - %s\n", warn_printf("Exception `%"PRIsVALUE"' - %"PRIsVALUE"\n",
rb_obj_classname(th->errinfo), rb_obj_class(mesg), e);
RSTRING_PTR(e));
} }
} }
POP_TAG(); POP_TAG();

View file

@ -6,17 +6,18 @@
static void static void
warn_printf(const char *fmt, ...) warn_printf(const char *fmt, ...)
{ {
char buf[BUFSIZ]; VALUE str;
va_list args; va_list args;
va_init_list(args, fmt); va_init_list(args, fmt);
vsnprintf(buf, BUFSIZ, fmt, args); str = rb_vsprintf(fmt, args);
va_end(args); va_end(args);
rb_write_error(buf); rb_write_error_str(str);
} }
#define warn_print(x) rb_write_error(x) #define warn_print(x) rb_write_error(x)
#define warn_print2(x,l) rb_write_error2((x),(l)) #define warn_print2(x,l) rb_write_error2((x),(l))
#define warn_print_str(x) rb_write_error_str(x)
static void static void
error_pos(void) error_pos(void)
@ -117,7 +118,7 @@ error_print(void)
if (NIL_P(mesg)) if (NIL_P(mesg))
error_pos(); error_pos();
else { else {
warn_print2(RSTRING_PTR(mesg), RSTRING_LEN(mesg)); warn_print_str(mesg);
} }
} }
@ -143,7 +144,7 @@ error_print(void)
epath = rb_class_name(eclass); epath = rb_class_name(eclass);
if (elen == 0) { if (elen == 0) {
warn_print(": "); warn_print(": ");
warn_print2(RSTRING_PTR(epath), RSTRING_LEN(epath)); warn_print_str(epath);
warn_print("\n"); warn_print("\n");
} }
else { else {
@ -160,7 +161,7 @@ error_print(void)
warn_print2(einfo, len); warn_print2(einfo, len);
if (epath) { if (epath) {
warn_print(" ("); warn_print(" (");
warn_print2(RSTRING_PTR(epath), RSTRING_LEN(epath)); warn_print_str(epath);
warn_print(")\n"); warn_print(")\n");
} }
if (tail) { if (tail) {
@ -182,7 +183,7 @@ error_print(void)
for (i = 1; i < len; i++) { for (i = 1; i < len; i++) {
if (RB_TYPE_P(ptr[i], T_STRING)) { if (RB_TYPE_P(ptr[i], T_STRING)) {
warn_printf("\tfrom %s\n", RSTRING_PTR(ptr[i])); warn_printf("\tfrom %"PRIsVALUE"\n", ptr[i]);
} }
if (skip && i == TRACE_HEAD && len > TRACE_MAX) { if (skip && i == TRACE_HEAD && len > TRACE_MAX) {
warn_printf("\t ... %ld levels...\n", warn_printf("\t ... %ld levels...\n",

View file

@ -102,6 +102,23 @@ class TestException < Test::Unit::TestCase
assert_include(err, bug9568.to_s) assert_include(err, bug9568.to_s)
end end
def test_errinfo_encoding_in_debug
exc = Module.new {break class_eval("class C\u{30a8 30e9 30fc} < RuntimeError; self; end".encode(Encoding::EUC_JP))}
exc.inspect
err = EnvUtil.verbose_warning do
assert_raise(exc) do
$DEBUG, debug = true, $DEBUG
begin
raise exc
ensure
$DEBUG = debug
end
end
end
assert_include(err, exc.to_s)
end
def test_break_ensure def test_break_ensure
bad = true bad = true
while true while true

View file

@ -1,6 +1,6 @@
#define RUBY_VERSION "2.0.0" #define RUBY_VERSION "2.0.0"
#define RUBY_RELEASE_DATE "2014-03-03" #define RUBY_RELEASE_DATE "2014-03-03"
#define RUBY_PATCHLEVEL 456 #define RUBY_PATCHLEVEL 457
#define RUBY_RELEASE_YEAR 2014 #define RUBY_RELEASE_YEAR 2014
#define RUBY_RELEASE_MONTH 3 #define RUBY_RELEASE_MONTH 3