forked from jruby/jruby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathArity.java
More file actions
264 lines (229 loc) · 8.87 KB
/
Copy pathArity.java
File metadata and controls
264 lines (229 loc) · 8.87 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
256
257
258
259
260
261
262
263
264
/*
***** BEGIN LICENSE BLOCK *****
* Version: CPL 1.0/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Common Public
* License Version 1.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/cpl-v10.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) 2002-2004 Anders Bengtsson <ndrsbngtssn@yahoo.se>
* Copyright (C) 2002-2004 Jan Arne Petersen <jpetersen@uni-bonn.de>
* Copyright (C) 2004 Stefan Matthias Aust <sma@3plus4.de>
*
* 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 CPL, 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 CPL, the GPL or the LGPL.
***** END LICENSE BLOCK *****/
package org.jruby.runtime;
import java.io.Serializable;
import java.util.HashMap;
import java.util.Map;
import org.jruby.Ruby;
import org.jruby.anno.JRubyMethod;
import org.jruby.ast.ArgsNode;
import org.jruby.ast.ArrayNode;
import org.jruby.ast.AttrAssignNode;
import org.jruby.ast.CallNode;
import org.jruby.ast.Node;
import org.jruby.ast.types.IArityNode;
import org.jruby.runtime.builtin.IRubyObject;
/**
* The arity of a method is the number of arguments it takes.
*/
public final class Arity implements Serializable {
private static final long serialVersionUID = 1L;
private static final Map<Integer, Arity> arities = new HashMap<Integer, Arity>();
private final int value;
public final static Arity NO_ARGUMENTS = newArity(0);
public final static Arity ONE_ARGUMENT = newArity(1);
public final static Arity TWO_ARGUMENTS = newArity(2);
public final static Arity THREE_ARGUMENTS = newArity(3);
public final static Arity OPTIONAL = newArity(-1);
public final static Arity ONE_REQUIRED = newArity(-2);
public final static Arity TWO_REQUIRED = newArity(-3);
public final static Arity THREE_REQUIRED = newArity(-4);
private Arity(int value) {
this.value = value;
}
private static Arity createArity(int required, int optional, boolean rest) {
return createArity((optional > 0 || rest) ? -(required + 1) : required);
}
public static Arity createArity(int value) {
switch (value) {
case -4:
return THREE_REQUIRED;
case -3:
return TWO_REQUIRED;
case -2:
return ONE_REQUIRED;
case -1:
return OPTIONAL;
case 0:
return NO_ARGUMENTS;
case 1:
return ONE_ARGUMENT;
case 2:
return TWO_ARGUMENTS;
case 3:
return THREE_ARGUMENTS;
}
return newArity(value);
}
public static Arity fromAnnotation(JRubyMethod anno) {
return createArity(anno.required(), anno.optional(), anno.rest());
}
public static Arity fromAnnotation(JRubyMethod anno, int required) {
return createArity(required, anno.optional(), anno.rest());
}
public static Arity fromAnnotation(JRubyMethod anno, Class[] parameterTypes, boolean isStatic) {
int required;
if (anno.optional() == 0 && !anno.rest() && anno.required() == 0) {
// try count specific args to determine required
int i = parameterTypes.length;
if (isStatic) i--;
if (parameterTypes.length > 0) {
if (parameterTypes[0] == ThreadContext.class) i--;
if (parameterTypes[parameterTypes.length - 1] == Block.class) i--;
}
required = i;
} else {
required = anno.required();
}
return createArity(required, anno.optional(), anno.rest());
}
private static Arity newArity(int value) {
Arity result;
synchronized (arities) {
result = arities.get(value);
if (result == null) {
result = new Arity(value);
arities.put(value, result);
}
}
return result;
}
public static Arity fixed(int arity) {
assert arity >= 0;
return createArity(arity);
}
public static Arity optional() {
return OPTIONAL;
}
public static Arity required(int minimum) {
assert minimum >= 0;
return createArity(-(1 + minimum));
}
public static Arity noArguments() {
return NO_ARGUMENTS;
}
public static Arity singleArgument() {
return ONE_ARGUMENT;
}
public static Arity twoArguments() {
return TWO_ARGUMENTS;
}
public static Arity procArityOf(Node node) {
if (node instanceof AttrAssignNode && node != null) {
node = ((AttrAssignNode) node).getArgsNode();
}
if (node == null) {
return Arity.optional();
} else if (node instanceof IArityNode) {
return ((IArityNode) node).getArity();
} else if (node instanceof CallNode) {
return Arity.singleArgument();
} else if (node instanceof ArrayNode) {
return Arity.singleArgument();
} else if (node instanceof ArgsNode) {
return ((ArgsNode)node).getArity();
}
throw new Error("unexpected type " + node.getClass() + " at " + node.getPosition());
}
public int getValue() {
return value;
}
public void checkArity(Ruby runtime, IRubyObject[] args) {
if (isFixed()) {
if (args.length != required()) {
throw runtime.newArgumentError("wrong number of arguments (" + args.length + " for " + required() + ")");
}
} else {
if (args.length < required()) {
throw runtime.newArgumentError("wrong number of arguments (" + args.length + " for " + required() + ")");
}
}
}
public void checkArity(Ruby runtime, int length) {
if (isFixed()) {
if (length != required()) {
throw runtime.newArgumentError("wrong number of arguments (" + length + " for " + required() + ")");
}
} else {
if (length < required()) {
throw runtime.newArgumentError("wrong number of arguments (" + length + " for " + required() + ")");
}
}
}
public boolean isFixed() {
return value >= 0;
}
public int required() {
return value < 0 ? -(1 + value) : value;
}
@Override
public boolean equals(Object other) {
return this == other;
}
@Override
public int hashCode() {
return value;
}
@Override
public String toString() {
return isFixed() ? "Fixed" + required() : "Opt";
}
// Some helper functions:
public static int checkArgumentCount(Ruby runtime, IRubyObject[] args, int min, int max) {
return checkArgumentCount(runtime, args.length, min, max);
}
public static int checkArgumentCount(Ruby runtime, int length, int min, int max) {
raiseArgumentError(runtime, length, min, max);
return length;
}
// FIXME: JRuby 2/next should change this name since it only sometimes raises an error
public static void raiseArgumentError(Ruby runtime, IRubyObject[] args, int min, int max) {
raiseArgumentError(runtime, args.length, min, max);
}
// FIXME: JRuby 2/next should change this name since it only sometimes raises an error
public static void raiseArgumentError(Ruby runtime, int length, int min, int max) {
if (length < min) throw runtime.newArgumentError(length, min);
if (max > -1 && length > max) throw runtime.newArgumentError(length, max);
}
/**
* @see org.jruby.runtime.builtin.IRubyObject#scanArgs()
*/
public static IRubyObject[] scanArgs(Ruby runtime, IRubyObject[] args, int required, int optional) {
int total = required+optional;
int real = checkArgumentCount(runtime, args,required,total);
IRubyObject[] narr = new IRubyObject[total];
System.arraycopy(args,0,narr,0,real);
for(int i=real; i<total; i++) {
narr[i] = runtime.getNil();
}
return narr;
}
}