-
-
Notifications
You must be signed in to change notification settings - Fork 938
Expand file tree
/
Copy pathRubyComparable.java
More file actions
255 lines (207 loc) · 9.77 KB
/
RubyComparable.java
File metadata and controls
255 lines (207 loc) · 9.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
/***** BEGIN LICENSE BLOCK *****
* Version: EPL 2.0/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Eclipse Public
* License Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.eclipse.org/legal/epl-v20.html
*
* Software distributed under the License is distributed on an "AS
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
* implied. See the License for the specific language governing
* rights and limitations under the License.
*
* Copyright (C) 2001-2004 Jan Arne Petersen <jpetersen@uni-bonn.de>
* Copyright (C) 2002 Benoit Cerrina <b.cerrina@wanadoo.fr>
* Copyright (C) 2004 Anders Bengtsson <ndrsbngtssn@yahoo.se>
* Copyright (C) 2004 Stefan Matthias Aust <sma@3plus4.de>
* Copyright (C) 2005 Charles O Nutter <headius@headius.com>
* Copyright (C) 2006 Miguel Covarrubias <mlcovarrubias@gmail.com>
* Copyright (C) 2006 Thomas E Enebo <enebo@acm.org>
*
* Alternatively, the contents of this file may be used under the terms of
* either of the GNU General Public License Version 2 or later (the "GPL"),
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
* in which case the provisions of the GPL or the LGPL are applicable instead
* of those above. If you wish to allow use of your version of this file only
* under the terms of either the GPL or the LGPL, and not to allow others to
* use your version of this file under the terms of the EPL, indicate your
* decision by deleting the provisions above and replace them with the notice
* and other provisions required by the GPL or the LGPL. If you do not delete
* the provisions above, a recipient may use your version of this file under
* the terms of any one of the EPL, the GPL or the LGPL.
***** END LICENSE BLOCK *****/
package org.jruby;
import org.jruby.anno.JRubyMethod;
import org.jruby.anno.JRubyModule;
import org.jruby.runtime.CallSite;
import org.jruby.runtime.JavaSites.ComparableSites;
import org.jruby.runtime.ThreadContext;
import org.jruby.runtime.builtin.IRubyObject;
import static org.jruby.api.Convert.*;
import static org.jruby.api.Define.defineModule;
import static org.jruby.api.Error.argumentError;
/** Implementation of the Comparable module.
*
*/
@JRubyModule(name="Comparable")
public class RubyComparable {
public static RubyModule createComparable(ThreadContext context) {
return defineModule(context, "Comparable").defineMethods(context, RubyComparable.class);
}
/* ================
* Utility Methods
* ================
*/
/** rb_cmpint
*
*/
public static int cmpint(ThreadContext context, CallSite op_gt, CallSite op_lt, IRubyObject val, IRubyObject a, IRubyObject b) {
if (val == context.nil) cmperr(context, a, b);
if (val instanceof RubyFixnum fixnum) return Integer.compare(toInt(context, fixnum), 0);
if (val instanceof RubyBignum bignum) return bignum.signum(context) == -1 ? -1 : 1;
var zero = RubyFixnum.zero(context.runtime);
if (op_gt.call(context, val, val, zero).isTrue()) return 1;
if (op_lt.call(context, val, val, zero).isTrue()) return -1;
return 0;
}
public static int cmpint(ThreadContext context, IRubyObject val, IRubyObject a, IRubyObject b) {
ComparableSites sites = sites(context);
return cmpint(context, sites.op_gt, sites.op_lt, val, a, b);
}
public static int cmpAndCmpint(ThreadContext context, IRubyObject a, IRubyObject b) {
IRubyObject cmpResult = sites(context).op_cmp.call(context, a, a, b);
return cmpint(context, cmpResult, a, b);
}
public static int cmpAndCmpint(ThreadContext context, CallSite op_cmp, CallSite op_gt, CallSite op_lt, IRubyObject a, IRubyObject b) {
IRubyObject cmpResult = op_cmp.call(context, a, a, b);
return cmpint(context, op_gt, op_lt, cmpResult, a, b);
}
@Deprecated(since = "10.0.0.0")
public static IRubyObject cmperr(IRubyObject recv, IRubyObject other) {
return cmperr(((RubyBasicObject) recv).getCurrentContext(), recv, other);
}
/** rb_cmperr
*
*/
public static IRubyObject cmperr(ThreadContext context, IRubyObject recv, IRubyObject other) {
IRubyObject target = other.isImmediate() || !(other.isNil() || other.isTrue() || other == context.fals) ?
other.inspect(context) : other.getType();
throw argumentError(context, "comparison of " + recv.getType() + " with " + target + " failed");
}
/** rb_invcmp
*
*/
public static IRubyObject invcmp(final ThreadContext context, final IRubyObject recv, final IRubyObject other) {
return invcmp(context, RubyComparable::invcmpRecursive, recv, other);
}
private static IRubyObject invcmpRecursive(ThreadContext context, IRubyObject recv, IRubyObject other, boolean recur) {
if (recur || !sites(context).respond_to_op_cmp.respondsTo(context, other, other)) return context.nil;
return sites(context).op_cmp.call(context, other, other, recv);
}
/** rb_invcmp
*
*/
public static IRubyObject invcmp(final ThreadContext context, ThreadContext.RecursiveFunctionEx<IRubyObject> func, IRubyObject recv, IRubyObject other) {
var result = context.safeRecurse(func, recv, other, "<=>", true);
return result.isNil() ? context.nil : asFixnum(context, -cmpint(context, result, recv, other));
}
/* ================
* Module Methods
* ================
*/
/** cmp_equal (cmp_eq inlined here)
*
*/
@JRubyMethod(name = "==")
public static IRubyObject op_equal(ThreadContext context, IRubyObject recv, IRubyObject other) {
return callCmpMethod(context, recv, other, context.fals);
}
private static IRubyObject callCmpMethod(final ThreadContext context, final IRubyObject recv, final IRubyObject other, IRubyObject returnValueOnError) {
if (recv == other) return context.tru;
var result = context.safeRecurse(
(ctx, obj, self, recur) -> recur ? ctx.nil : sites(ctx).op_cmp.call(ctx, self, self, obj),
other, recv, "<=>", true);
// This is only to prevent throwing exceptions by cmperr - it has poor performance
if (result.isNil()) return returnValueOnError;
return asBoolean(context, cmpint(context, result, recv, other) == 0);
}
/** cmp_gt
*
*/
// <=> may return nil in many circumstances, e.g. 3 <=> NaN
@JRubyMethod(name = ">")
public static RubyBoolean op_gt(ThreadContext context, IRubyObject recv, IRubyObject other) {
var result = sites(context).op_cmp.call(context, recv, recv, other);
if (result.isNil()) cmperr(context, recv, other);
return asBoolean(context, cmpint(context, result, recv, other) > 0);
}
/** cmp_ge
*
*/
@JRubyMethod(name = ">=")
public static RubyBoolean op_ge(ThreadContext context, IRubyObject recv, IRubyObject other) {
var result = sites(context).op_cmp.call(context, recv, recv, other);
if (result.isNil()) cmperr(context, recv, other);
return asBoolean(context, cmpint(context, result, recv, other) >= 0);
}
/** cmp_lt
*
*/
@JRubyMethod(name = "<")
public static RubyBoolean op_lt(ThreadContext context, IRubyObject recv, IRubyObject other) {
return op_lt(context, sites(context).op_cmp, recv, other);
}
public static RubyBoolean op_lt(ThreadContext context, CallSite cmp, IRubyObject recv, IRubyObject other) {
var result = cmp.call(context, recv, recv, other);
if (result.isNil()) cmperr(context, recv, other);
return asBoolean(context, cmpint(context, result, recv, other) < 0);
}
/** cmp_le
*
*/
@JRubyMethod(name = "<=")
public static RubyBoolean op_le(ThreadContext context, IRubyObject recv, IRubyObject other) {
var result = sites(context).op_cmp.call(context, recv, recv, other);
if (result.isNil()) cmperr(context, recv, other);
return asBoolean(context, cmpint(context, result, recv, other) <= 0);
}
/** cmp_between
*
*/
@JRubyMethod(name = "between?")
public static RubyBoolean between_p(ThreadContext context, IRubyObject recv, IRubyObject first, IRubyObject second) {
return asBoolean(context, op_lt(context, recv, first).isFalse() && op_gt(context, recv, second).isFalse());
}
@JRubyMethod(name = "clamp")
public static IRubyObject clamp(ThreadContext context, IRubyObject recv, IRubyObject arg) {
var range = castAsRange(context, arg);
var min = range.begin(context);
var max = range.end(context);
if (!max.isNil() && range.isExcludeEnd()) throw argumentError(context, "cannot clamp with an exclusive range");
return clamp(context, recv, min, max);
}
@JRubyMethod(name = "clamp")
public static IRubyObject clamp(ThreadContext context, IRubyObject recv, IRubyObject min, IRubyObject max) {
ComparableSites sites = sites(context);
CallSite op_gt = sites.op_gt;
CallSite op_lt = sites.op_lt;
CallSite op_cmp = sites.op_cmp;
if (!min.isNil() && !max.isNil() && cmpAndCmpint(context, op_cmp, op_gt, op_lt, min, max) > 0) {
throw argumentError(context, "min argument must be less than or equal to max argument");
}
if (!min.isNil()) {
int c = cmpAndCmpint(context, op_cmp, op_gt, op_lt, recv, min);
if (c == 0) return recv;
if (c < 0) return min;
}
if (!max.isNil()) {
int c = cmpAndCmpint(context, op_cmp, op_gt, op_lt, recv, max);
if (c > 0) return max;
}
return recv;
}
private static ComparableSites sites(ThreadContext context) {
return context.sites.Comparable;
}
}