-
-
Notifications
You must be signed in to change notification settings - Fork 938
Expand file tree
/
Copy pathRubyNameError.java
More file actions
350 lines (296 loc) · 13.8 KB
/
RubyNameError.java
File metadata and controls
350 lines (296 loc) · 13.8 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
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
/***** 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) 2006 Anders Bengtsson <ndrsbngtssn@yahoo.se>
*
* 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.jcodings.specific.USASCIIEncoding;
import org.jruby.anno.JRubyMethod;
import org.jruby.anno.JRubyClass;
import org.jruby.api.Convert;
import org.jruby.ast.util.ArgsUtil;
import org.jruby.exceptions.NameError;
import org.jruby.exceptions.RaiseException;
import org.jruby.runtime.Block;
import org.jruby.runtime.ClassIndex;
import org.jruby.runtime.Helpers;
import org.jruby.runtime.ThreadContext;
import org.jruby.runtime.Visibility;
import org.jruby.runtime.builtin.IRubyObject;
import org.jruby.util.ArraySupport;
import org.jruby.util.ByteList;
import org.jruby.util.Sprintf;
import org.jruby.util.TypeConverter;
import org.jruby.util.cli.Options;
import static org.jruby.api.Convert.asBoolean;
import static org.jruby.api.Create.newEmptyString;
import static org.jruby.api.Create.newString;
import static org.jruby.api.Define.defineClass;
import static org.jruby.api.Error.argumentError;
/**
* The Java representation of a Ruby NameError.
*
* @see NameError
* @author Anders Bengtsson
*/
@JRubyClass(name="NameError", parent="StandardError")
public class RubyNameError extends RubyStandardError {
private IRubyObject name;
private IRubyObject receiver;
protected boolean privateCall;
/**
* Nested class whose instances act as thunks reacting to to_str method
* called from (Exception#to_str, Exception#message)
* MRI equivalent: rb_cNameErrorMesg, class name: "message", construction method: "!",
* to_str implementation: "name_err_mesg_to_str"
*
* TODO: this class should not be lookupable
*/
@JRubyClass(name = "NameError::Message", parent = "Object")
public static final class RubyNameErrorMessage extends RubyObject {
private final String message;
private final IRubyObject object;
private final IRubyObject name;
RubyNameErrorMessage(Ruby runtime, RubyClass klazz) {
super(runtime, klazz);
this.message = null;
this.object = null;
this.name = null;
}
RubyNameErrorMessage(Ruby runtime, String message, IRubyObject object, IRubyObject name) {
super(runtime, runtime.getNameErrorMessage(), false);
this.message = message;
this.object = object;
this.name = name;
}
@JRubyMethod(name = "_load", meta = true)
public static IRubyObject load(IRubyObject recv, IRubyObject arg) {
return arg;
}
static RubyClass define(ThreadContext context, RubyClass Object, RubyClass NameError) {
return NameError.defineClassUnder(context, "Message", Object, RubyNameErrorMessage::new).
defineMethods(context, RubyNameErrorMessage.class).
tap(c -> c.parent.setConstantVisibility(context, "Message", true));
}
@JRubyMethod(name = "_dump")
public IRubyObject dump(ThreadContext context, IRubyObject arg) {
return to_str(context);
}
// MRI: name_err_mesg_to_str
@JRubyMethod
public IRubyObject to_str(ThreadContext context) {
String message = this.message;
if (message == null) return context.nil;
final Ruby runtime = context.runtime;
final RubyBasicObject object = (RubyBasicObject) this.object;
RubyString emptyFrozenString = runtime.getEmptyFrozenString();
RubyString className, separator, description;
className = separator = description = emptyFrozenString;
switch (object.getNativeClassIndex()) {
case ClassIndex.NIL:
description = runtime.getNilInspectString(); // "nil"
break;
case ClassIndex.TRUE:
description = runtime.getTrueString(); // "true"
break;
case ClassIndex.FALSE:
description = runtime.getFalseString(); // "false"
break;
default:
// set up description
if (message.contains("%2$s")) {
description = getNameOrInspect(context, object);
}
// set up separator text and class name
IRubyObject classTmp = null;
if (!object.isSpecialConst()) {
switch (object.getNativeClassIndex()) {
case MODULE:
separator = RubyString.newString(runtime, "module ");
classTmp = object;
break;
case CLASS:
separator = RubyString.newString(runtime, "class ");
classTmp = object;
break;
}
}
if (classTmp == null) {
RubyClass klass = object.getMetaClass();
if (klass.isSingleton()) {
separator = RubyString.newString(runtime, "");
if (object == runtime.getTopSelf()) {
className = RubyString.newString(runtime, "main");
} else {
className = (RubyString) Convert.anyToString(context, object);
}
// we have our string, break out to final composition
break;
} else {
separator = RubyString.newString(runtime, "an instance of ");
classTmp = klass.getRealClass();
}
}
className = getNameOrInspect(context, classTmp);
}
RubyArray arr = RubyArray.newArray(runtime, this.name, description, separator, className);
ByteList msgBytes = new ByteList(message.length() + description.size() + separator.size() + className.size(), USASCIIEncoding.INSTANCE);
Sprintf.sprintf(msgBytes, message, arr);
return RubyString.newString(runtime, msgBytes);
}
// MRI: coercion dance for name error object inspection in name_err_mesg_to_str
private static RubyString getNameOrInspect(ThreadContext context, IRubyObject object) {
IRubyObject tmp = tryModuleName(context, object);
if (tmp == null || tmp.isNil()) tmp = tryInspect(context, object);
if (tmp == UNDEF) context.clearErrorInfo();
tmp = TypeConverter.checkStringType(context.runtime, tmp);
if (tmp.isNil()) tmp = Convert.anyToString(context, object);
return (RubyString) tmp;
}
// MRI: rb_protect with rb_inspect callback
private static IRubyObject tryInspect(ThreadContext context, IRubyObject object) {
try {
return RubyObject.inspect(context, object);
} catch (RaiseException e) {
// ignore
}
return UNDEF;
}
// MRI: rb_protect with name_err_mesg_receiver_name callback
private static IRubyObject tryModuleName(ThreadContext context, IRubyObject obj) {
if (!obj.isSpecialConst() && obj instanceof RubyModule) {
try {
return Helpers.invokeChecked(context, obj, "name");
} catch (RaiseException e) {
// ignore
}
}
return null;
}
}
static RubyClass define(ThreadContext context, RubyClass StandardError) {
return defineClass(context, "NameError", StandardError, RubyNameError::new).
reifiedClass(RubyNameError.class).defineMethods(context, RubyNameError.class);
}
protected RubyNameError(Ruby runtime, RubyClass exceptionClass) {
this(runtime, exceptionClass, exceptionClass.getName(runtime.getCurrentContext()));
}
public RubyNameError(Ruby runtime, RubyClass exceptionClass, String message) {
this(runtime, exceptionClass, message, (String) null);
}
public RubyNameError(Ruby runtime, RubyClass exceptionClass, String message, String name) {
super(runtime, exceptionClass, message);
this.name = name == null ? runtime.getNil() : RubySymbol.newSymbol(runtime, name);
}
public RubyNameError(Ruby runtime, RubyClass exceptionClass, String message, IRubyObject name) {
super(runtime, exceptionClass, message);
this.name = name;
}
@Override
protected RaiseException constructThrowable(String message) {
return new NameError(message, this);
}
@JRubyMethod(name = "exception", meta = true)
public static IRubyObject exception(ThreadContext context, IRubyObject recv) {
return newNameError(context, recv, NULL_ARRAY);
}
@JRubyMethod(name = "exception", meta = true)
public static RubyException exception(ThreadContext context, IRubyObject recv, IRubyObject message) {
return newNameError(context, recv, new IRubyObject[] { message });
}
@JRubyMethod(name = "exception", meta = true)
public static RubyException exception(ThreadContext context, IRubyObject recv, IRubyObject message, IRubyObject name) {
return newNameError(context, recv, message, name, false);
}
private static RubyException newNameError(ThreadContext context, IRubyObject recv, IRubyObject[] args) {
final RubyClass klass = (RubyClass) recv;
RubyException newError = (RubyException) klass.allocate(context);
newError.callInit(args, Block.NULL_BLOCK);
return newError;
}
static RubyException newNameError(ThreadContext context, IRubyObject recv, IRubyObject message, IRubyObject name, boolean privateCall) {
final RubyClass klass = (RubyClass) recv;
RubyNameError newError = (RubyNameError) klass.allocate(context);
newError.callInit(message, name, Block.NULL_BLOCK);
newError.privateCall = privateCall;
return newError;
}
@JRubyMethod(rest = true, visibility = Visibility.PRIVATE)
@Override
public IRubyObject initialize(IRubyObject[] args, Block block) {
RubyHash options = null;
if (args.length > 0) {
if ((args[args.length - 1] != null) && (args[args.length - 1] instanceof RubyHash)) {
options = (RubyHash)args[args.length - 1];
args = ArraySupport.newCopy(args, args.length - 1);
}
}
return initializeOptions(args, options, block);
}
public IRubyObject initializeOptions(IRubyObject[] args, RubyHash options, Block block) {
String [] keywords = {"receiver"};
if (args.length > 0) this.message = args[0];
if (message instanceof RubyNameErrorMessage) this.receiver = ((RubyNameErrorMessage) message).object;
this.name = args.length > 1 ? args[1] : getRuntime().getNil();
if (options != null) {
IRubyObject [] values = ArgsUtil.extractKeywordArgs(getRuntime().getCurrentContext(), options, keywords);
if ((values != null) && (values.length == 1) && (values[0] != null)) {
this.receiver = values[0];
}
}
return super.initialize(NULL_ARRAY, block); // message already set
}
@JRubyMethod
@Override
public IRubyObject to_s(ThreadContext context) {
if (message == context.nil) return newString(context, getMetaClass().getRealClass().getName(context));
RubyString str = message.convertToString();
if (str != message) message = str;
return message;
}
@JRubyMethod
public IRubyObject name() {
return name;
}
@JRubyMethod
public IRubyObject receiver(ThreadContext context) {
if (receiver == null) throw argumentError(context, "no receiver is available");
return receiver;
}
@JRubyMethod(name = "private_call?")
public IRubyObject private_call_p(ThreadContext context) {
return asBoolean(context, isPrivateCall());
}
@Override
public void copySpecialInstanceVariables(IRubyObject clone) {
super.copySpecialInstanceVariables(clone);
RubyNameError exception = (RubyNameError)clone;
exception.receiver = receiver;
exception.name = name;
}
public boolean isPrivateCall() {
return privateCall;
}
}