From f5dd2cf3bab25e2d83502d21a4bf227efd5494bb Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 19 Jun 2008 14:57:57 +0000 Subject: * array.c (rb_ary_equal, rb_ary_eql, rb_ary_hash, rb_ary_cmp): Make Array#eql?, #hash, #== and #<=> use rb_exec_recursive() and handle recursive data properly. [ruby-dev:35181] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8_6@17438 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 6 ++++ array.c | 99 ++++++++++++++++++++++++++++++++++++++++++++------------------- version.h | 8 +++--- 3 files changed, 80 insertions(+), 33 deletions(-) diff --git a/ChangeLog b/ChangeLog index d9b028fbc3..b38f0a19d9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Thu Jun 19 23:57:54 2008 Nobuyoshi Nakada + + * array.c (rb_ary_equal, rb_ary_eql, rb_ary_hash, rb_ary_cmp): + Make Array#eql?, #hash, #== and #<=> use rb_exec_recursive() and + handle recursive data properly. [ruby-dev:35181] + Wed Jun 18 15:20:21 2008 Nobuyoshi Nakada * marshal.c (w_object, marshal_dump, r_object0, marshal_load): search diff --git a/array.c b/array.c index fbca3c193e..101779c053 100644 --- a/array.c +++ b/array.c @@ -2462,6 +2462,20 @@ rb_ary_rassoc(ary, value) return Qnil; } +static VALUE +recursive_equal(ary1, ary2) + VALUE ary1, ary2; +{ + long i; + + if (rb_inspecting_p(ary1)) return Qfalse; + for (i=0; ilen; i++) { + if (!rb_equal(rb_ary_elt(ary1, i), rb_ary_elt(ary2, i))) + return Qfalse; + } + return Qtrue; +} + /* * call-seq: * array == other_array -> bool @@ -2480,8 +2494,6 @@ static VALUE rb_ary_equal(ary1, ary2) VALUE ary1, ary2; { - long i; - if (ary1 == ary2) return Qtrue; if (TYPE(ary2) != T_ARRAY) { if (!rb_respond_to(ary2, rb_intern("to_ary"))) { @@ -2490,8 +2502,18 @@ rb_ary_equal(ary1, ary2) return rb_equal(ary2, ary1); } if (RARRAY(ary1)->len != RARRAY(ary2)->len) return Qfalse; + return rb_protect_inspect(recursive_equal, ary1, ary2); +} + +static VALUE +recursive_eql(ary1, ary2) + VALUE ary1, ary2; +{ + long i; + + if (rb_inspecting_p(ary1)) return Qfalse; for (i=0; ilen; i++) { - if (!rb_equal(rb_ary_elt(ary1, i), rb_ary_elt(ary2, i))) + if (!rb_eql(rb_ary_elt(ary1, i), rb_ary_elt(ary2, i))) return Qfalse; } return Qtrue; @@ -2509,33 +2531,24 @@ static VALUE rb_ary_eql(ary1, ary2) VALUE ary1, ary2; { - long i; - if (ary1 == ary2) return Qtrue; if (TYPE(ary2) != T_ARRAY) return Qfalse; if (RARRAY(ary1)->len != RARRAY(ary2)->len) return Qfalse; - for (i=0; ilen; i++) { - if (!rb_eql(rb_ary_elt(ary1, i), rb_ary_elt(ary2, i))) - return Qfalse; - } - return Qtrue; + return rb_protect_inspect(recursive_eql, ary1, ary2); } -/* - * call-seq: - * array.hash -> fixnum - * - * Compute a hash-code for this array. Two arrays with the same content - * will have the same hash code (and will compare using eql?). - */ +static VALUE recursive_hash _((VALUE ary)); static VALUE -rb_ary_hash(ary) +recursive_hash(ary) VALUE ary; { long i, h; VALUE n; + if (rb_inspecting_p(ary)) { + return LONG2FIX(0); + } h = RARRAY(ary)->len; for (i=0; ilen; i++) { h = (h << 1) | (h<0 ? 1 : 0); @@ -2545,6 +2558,21 @@ rb_ary_hash(ary) return LONG2FIX(h); } +/* + * call-seq: + * array.hash -> fixnum + * + * Compute a hash-code for this array. Two arrays with the same content + * will have the same hash code (and will compare using eql?). + */ + +static VALUE +rb_ary_hash(ary) + VALUE ary; +{ + return rb_protect_inspect(recursive_hash, ary, 0); +} + /* * call-seq: * array.include?(obj) -> true or false @@ -2573,6 +2601,25 @@ rb_ary_includes(ary, item) return Qfalse; } +VALUE +recursive_cmp(ary1, ary2) + VALUE ary1, ary2; +{ + long i, len; + + if (rb_inspecting_p(ary1)) return Qfalse; + len = RARRAY(ary1)->len; + if (len > RARRAY(ary2)->len) { + len = RARRAY(ary2)->len; + } + for (i=0; ilen; - if (len > RARRAY(ary2)->len) { - len = RARRAY(ary2)->len; - } - for (i=0; ilen - RARRAY(ary2)->len; if (len == 0) return INT2FIX(0); if (len > 0) return INT2FIX(1); diff --git a/version.h b/version.h index 562c1e21d4..e21c65fc7b 100644 --- a/version.h +++ b/version.h @@ -1,15 +1,15 @@ #define RUBY_VERSION "1.8.6" -#define RUBY_RELEASE_DATE "2008-06-18" +#define RUBY_RELEASE_DATE "2008-06-19" #define RUBY_VERSION_CODE 186 -#define RUBY_RELEASE_CODE 20080618 -#define RUBY_PATCHLEVEL 225 +#define RUBY_RELEASE_CODE 20080619 +#define RUBY_PATCHLEVEL 226 #define RUBY_VERSION_MAJOR 1 #define RUBY_VERSION_MINOR 8 #define RUBY_VERSION_TEENY 6 #define RUBY_RELEASE_YEAR 2008 #define RUBY_RELEASE_MONTH 6 -#define RUBY_RELEASE_DAY 18 +#define RUBY_RELEASE_DAY 19 #ifdef RUBY_EXTERN RUBY_EXTERN const char ruby_version[]; -- cgit v1.2.3