* io.c (rb_open_file): encoding in mode string was ignored if perm is
[ruby-svn.git] / compar.c
blob633c5b5309deb04026cc930f83c47eed4d1d4448
1 /**********************************************************************
3 compar.c -
5 $Author$
6 created at: Thu Aug 26 14:39:48 JST 1993
8 Copyright (C) 1993-2007 Yukihiro Matsumoto
10 **********************************************************************/
12 #include "ruby/ruby.h"
14 VALUE rb_mComparable;
16 static ID cmp;
18 void
19 rb_cmperr(VALUE x, VALUE y)
21 const char *classname;
23 if (SPECIAL_CONST_P(y)) {
24 y = rb_inspect(y);
25 classname = StringValuePtr(y);
27 else {
28 classname = rb_obj_classname(y);
30 rb_raise(rb_eArgError, "comparison of %s with %s failed",
31 rb_obj_classname(x), classname);
34 static VALUE
35 cmp_eq(VALUE *a)
37 VALUE c = rb_funcall(a[0], cmp, 1, a[1]);
39 if (NIL_P(c)) return Qfalse;
40 if (rb_cmpint(c, a[0], a[1]) == 0) return Qtrue;
41 return Qfalse;
44 static VALUE
45 cmp_failed(void)
47 return Qfalse;
51 * call-seq:
52 * obj == other => true or false
54 * Compares two objects based on the receiver's <code><=></code>
55 * method, returning true if it returns 0. Also returns true if
56 * _obj_ and _other_ are the same object.
59 static VALUE
60 cmp_equal(VALUE x, VALUE y)
62 VALUE a[2];
64 if (x == y) return Qtrue;
66 a[0] = x; a[1] = y;
67 return rb_rescue(cmp_eq, (VALUE)a, cmp_failed, 0);
71 * call-seq:
72 * obj > other => true or false
74 * Compares two objects based on the receiver's <code><=></code>
75 * method, returning true if it returns 1.
78 static VALUE
79 cmp_gt(VALUE x, VALUE y)
81 VALUE c = rb_funcall(x, cmp, 1, y);
83 if (rb_cmpint(c, x, y) > 0) return Qtrue;
84 return Qfalse;
88 * call-seq:
89 * obj >= other => true or false
91 * Compares two objects based on the receiver's <code><=></code>
92 * method, returning true if it returns 0 or 1.
95 static VALUE
96 cmp_ge(VALUE x, VALUE y)
98 VALUE c = rb_funcall(x, cmp, 1, y);
100 if (rb_cmpint(c, x, y) >= 0) return Qtrue;
101 return Qfalse;
105 * call-seq:
106 * obj < other => true or false
108 * Compares two objects based on the receiver's <code><=></code>
109 * method, returning true if it returns -1.
112 static VALUE
113 cmp_lt(VALUE x, VALUE y)
115 VALUE c = rb_funcall(x, cmp, 1, y);
117 if (rb_cmpint(c, x, y) < 0) return Qtrue;
118 return Qfalse;
122 * call-seq:
123 * obj <= other => true or false
125 * Compares two objects based on the receiver's <code><=></code>
126 * method, returning true if it returns -1 or 0.
129 static VALUE
130 cmp_le(VALUE x, VALUE y)
132 VALUE c = rb_funcall(x, cmp, 1, y);
134 if (rb_cmpint(c, x, y) <= 0) return Qtrue;
135 return Qfalse;
139 * call-seq:
140 * obj.between?(min, max) => true or false
142 * Returns <code>false</code> if <i>obj</i> <code><=></code>
143 * <i>min</i> is less than zero or if <i>anObject</i> <code><=></code>
144 * <i>max</i> is greater than zero, <code>true</code> otherwise.
146 * 3.between?(1, 5) #=> true
147 * 6.between?(1, 5) #=> false
148 * 'cat'.between?('ant', 'dog') #=> true
149 * 'gnu'.between?('ant', 'dog') #=> false
153 static VALUE
154 cmp_between(VALUE x, VALUE min, VALUE max)
156 if (RTEST(cmp_lt(x, min))) return Qfalse;
157 if (RTEST(cmp_gt(x, max))) return Qfalse;
158 return Qtrue;
162 * The <code>Comparable</code> mixin is used by classes whose objects
163 * may be ordered. The class must define the <code><=></code> operator,
164 * which compares the receiver against another object, returning -1, 0,
165 * or +1 depending on whether the receiver is less than, equal to, or
166 * greater than the other object. <code>Comparable</code> uses
167 * <code><=></code> to implement the conventional comparison operators
168 * (<code><</code>, <code><=</code>, <code>==</code>, <code>>=</code>,
169 * and <code>></code>) and the method <code>between?</code>.
171 * class SizeMatters
172 * include Comparable
173 * attr :str
174 * def <=>(anOther)
175 * str.size <=> anOther.str.size
176 * end
177 * def initialize(str)
178 * @str = str
179 * end
180 * def inspect
181 * @str
182 * end
183 * end
185 * s1 = SizeMatters.new("Z")
186 * s2 = SizeMatters.new("YY")
187 * s3 = SizeMatters.new("XXX")
188 * s4 = SizeMatters.new("WWWW")
189 * s5 = SizeMatters.new("VVVVV")
191 * s1 < s2 #=> true
192 * s4.between?(s1, s3) #=> false
193 * s4.between?(s3, s5) #=> true
194 * [ s3, s2, s5, s4, s1 ].sort #=> [Z, YY, XXX, WWWW, VVVVV]
198 void
199 Init_Comparable(void)
201 #undef rb_intern
202 #define rb_intern(str) rb_intern_const(str)
204 rb_mComparable = rb_define_module("Comparable");
205 rb_define_method(rb_mComparable, "==", cmp_equal, 1);
206 rb_define_method(rb_mComparable, ">", cmp_gt, 1);
207 rb_define_method(rb_mComparable, ">=", cmp_ge, 1);
208 rb_define_method(rb_mComparable, "<", cmp_lt, 1);
209 rb_define_method(rb_mComparable, "<=", cmp_le, 1);
210 rb_define_method(rb_mComparable, "between?", cmp_between, 2);
212 cmp = rb_intern("<=>");