diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-09-15 08:04:10 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-09-15 08:04:10 +0000 |
commit | 583a15023413b8b9462178b6a90e538794dd3976 (patch) | |
tree | 06d41d47ccfae664671557ae83098d7a72ecf81d | |
parent | 50de0d6a1d308c0586bd67070703af41b33f80ac (diff) | |
download | ruby-583a15023413b8b9462178b6a90e538794dd3976.tar.gz ruby-583a15023413b8b9462178b6a90e538794dd3976.tar.xz ruby-583a15023413b8b9462178b6a90e538794dd3976.zip |
* encoding.c (rb_enc_associate_index, rb_enc_get_index): check if
object is encoding capable. [ruby-dev:31780]
* string.c (rb_str_subpat_set): check for if the argument is a String.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13447 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | encoding.c | 44 | ||||
-rw-r--r-- | string.c | 1 |
3 files changed, 51 insertions, 1 deletions
@@ -1,3 +1,10 @@ +Sat Sep 15 17:04:08 2007 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * encoding.c (rb_enc_associate_index, rb_enc_get_index): check if + object is encoding capable. [ruby-dev:31780] + + * string.c (rb_str_subpat_set): check for if the argument is a String. + Sat Sep 15 13:31:21 2007 Kouhei Sutou <kou@cozmixng.org> * lib/rss.rb, lib/rss/, test/rss/: diff --git a/encoding.c b/encoding.c index 8b674d13e..b1c8ba934 100644 --- a/encoding.c +++ b/encoding.c @@ -79,9 +79,49 @@ rb_enc_find(const char *name) return ONIG_ENCODING_ASCII; } +static int +enc_capable(VALUE obj) +{ + if (IMMEDIATE_P(obj)) return Qfalse; + switch (BUILTIN_TYPE(obj)) { + case T_STRING: + case T_REGEXP: + case T_FILE: + return Qtrue; + default: + return Qfalse; + } +} + +static void +enc_check_capable(VALUE x) +{ + if (!enc_capable(x)) { + const char *etype; + + if (NIL_P(x)) { + etype = "nil"; + } + else if (FIXNUM_P(x)) { + etype = "Fixnum"; + } + else if (SYMBOL_P(x)) { + etype = "Symbol"; + } + else if (rb_special_const_p(x)) { + etype = RSTRING_PTR(rb_obj_as_string(x)); + } + else { + etype = rb_obj_classname(x); + } + rb_raise(rb_eTypeError, "wrong argument type %s (not encode capable)", etype); + } +} + void rb_enc_associate_index(VALUE obj, int idx) { + enc_check_capable(obj); if (idx < ENCODING_INLINE_MAX) { ENCODING_SET(obj, idx); return; @@ -117,8 +157,10 @@ rb_enc_associate(VALUE obj, rb_encoding *enc) int rb_enc_get_index(VALUE obj) { - int i = ENCODING_GET(obj); + int i; + enc_check_capable(obj); + i = ENCODING_GET(obj); if (i == ENCODING_INLINE_MAX) { VALUE iv; @@ -1996,6 +1996,7 @@ rb_str_subpat_set(VALUE str, VALUE re, int nth, VALUE val) } end = RMATCH(match)->END(nth); len = end - start; + StringValue(val); rb_enc_check(str, val); rb_str_splice_0(str, start, len, val); } |