-
-
Notifications
You must be signed in to change notification settings - Fork 938
Expand file tree
/
Copy pathRubyBinding.java
More file actions
248 lines (199 loc) · 9.82 KB
/
RubyBinding.java
File metadata and controls
248 lines (199 loc) · 9.82 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
/***** 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 Chad Fowler <chadfowler@chadfowler.com>
* Copyright (C) 2001 Alan Moore <alan_moore@gmx.net>
* Copyright (C) 2001-2004 Jan Arne Petersen <jpetersen@uni-bonn.de>
* Copyright (C) 2002-2004 Anders Bengtsson <ndrsbngtssn@yahoo.se>
* Copyright (C) 2002-2005 Thomas E Enebo <enebo@acm.org>
* Copyright (C) 2004 Stefan Matthias Aust <sma@3plus4.de>
* Copyright (C) 2005 Charles O Nutter <headius@headius.com>
*
* 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.JRubyClass;
import org.jruby.anno.JRubyMethod;
import org.jruby.exceptions.RaiseException;
import org.jruby.ext.ripper.RubyLexer;
import org.jruby.parser.StaticScope;
import org.jruby.runtime.Arity;
import org.jruby.runtime.Binding;
import org.jruby.runtime.Block;
import org.jruby.runtime.ClassIndex;
import org.jruby.runtime.DynamicScope;
import org.jruby.runtime.ThreadContext;
import org.jruby.runtime.Visibility;
import org.jruby.runtime.builtin.IRubyObject;
import org.jruby.runtime.marshal.DataType;
import static org.jruby.api.Convert.asBoolean;
import static org.jruby.api.Convert.asFixnum;
import static org.jruby.api.Create.newArray;
import static org.jruby.api.Create.newString;
import static org.jruby.api.Define.defineClass;
import static org.jruby.api.Error.nameError;
import static org.jruby.util.RubyStringBuilder.str;
@JRubyClass(name="Binding")
public class RubyBinding extends RubyObject implements DataType {
private Binding binding;
public RubyBinding(Ruby runtime, RubyClass rubyClass, Binding binding) {
super(runtime, rubyClass);
this.binding = binding;
}
private RubyBinding(Ruby runtime, RubyClass rubyClass) {
super(runtime, rubyClass);
}
public static RubyClass createBindingClass(ThreadContext context, RubyClass Object) {
return defineClass(context, "Binding", Object, RubyBinding::new).
reifiedClass(RubyBinding.class).
classIndex(ClassIndex.BINDING).
defineMethods(context, RubyBinding.class).
tap(c -> c.singletonClass(context).undefMethods(context, "new"));
}
public Binding getBinding() {
return binding;
}
// Proc class
public static RubyBinding newBinding(Ruby runtime, Binding binding) {
return new RubyBinding(runtime, runtime.getBinding(), binding);
}
@JRubyMethod(name = "initialize", visibility = Visibility.PRIVATE)
@Override
public IRubyObject initialize(ThreadContext context) {
binding = context.currentBinding();
return this;
}
@JRubyMethod
public IRubyObject dup(ThreadContext context) {
RubyBinding newBinding = newBinding(context.runtime, binding.dup(context));
copyInstanceVariablesInto(newBinding);
return newBinding;
}
@JRubyMethod(name = "initialize_copy", visibility = Visibility.PRIVATE)
public IRubyObject initialize_copy(ThreadContext context, IRubyObject other) {
binding = ((RubyBinding) other).binding.clone();
return this;
}
// c: bind_eval
@JRubyMethod(name = "eval", required = 1, optional = 2, checkArity = false)
public IRubyObject eval(ThreadContext context, IRubyObject[] args) {
int argc = Arity.checkArgumentCount(context, args, 1, 3);
IRubyObject[] newArgs = new IRubyObject[argc+1];
newArgs[0] = args[0]; // eval string
newArgs[1] = this; // binding
if (argc > 1) {
newArgs[2] = args[1]; // file
if (argc > 2) {
newArgs[3] = args[2]; // line
}
}
return RubyKernel.eval(context, this, newArgs, Block.NULL_BLOCK);
}
@JRubyMethod(name = "local_variable_defined?")
public IRubyObject local_variable_defined_p(ThreadContext context, IRubyObject symbol) {
String id = checkLocalId(context, symbol);
return asBoolean(context, binding.getEvalScope(context.runtime).getStaticScope().isDefinedOrImplicit(id) >= 0);
}
@JRubyMethod
public IRubyObject local_variable_get(ThreadContext context, IRubyObject symbol) {
String id = checkLocalId(context, symbol);
DynamicScope evalScope = binding.getEvalScope(context.runtime);
StaticScope staticScope = evalScope.getStaticScope();
int slot = staticScope.isDefinedOrImplicit(id);
if (slot < 0) throw undefinedVariableError(context, symbol);
return evalScope.getValueOrNil(slot & 0xffff, slot >> 16, context.nil);
}
@JRubyMethod
public IRubyObject local_variable_set(ThreadContext context, IRubyObject symbol, IRubyObject value) {
String id = checkLocalId(context, symbol);
DynamicScope evalScope = binding.getEvalScope(context.runtime);
StaticScope staticScope = evalScope.getStaticScope();
int slot = staticScope.isDefinedOrImplicit(id);
// for the implicit "it" variable
if (slot == StaticScope.IMPLICIT) throw undefinedVariableError(context, symbol);
if (slot == -1) { // Yay! New variable associated with this binding
slot = evalScope.getStaticScope().addVariable(id.intern());
evalScope.growIfNeeded();
}
return evalScope.setValue(slot & 0xffff, value, slot >> 16);
}
@JRubyMethod(name = "implicit_parameter_defined?")
public IRubyObject implicit_parameter_defined_p(ThreadContext context, IRubyObject symbol) {
String id = checkImplicitId(context, symbol);
return asBoolean(context, binding.getDynamicScope().getStaticScope().isDefinedImplicitParameter(id) != -1);
}
@JRubyMethod
public IRubyObject implicit_parameter_get(ThreadContext context, IRubyObject symbol) {
String id = checkImplicitId(context, symbol);
DynamicScope dynamicScope = binding.getDynamicScope();
StaticScope staticScope = dynamicScope.getStaticScope();
int slot = staticScope.isDefinedImplicitParameter(id);
if (slot != StaticScope.IMPLICIT) throw undefinedImplicitVariableError(context, symbol);
slot = staticScope.isDefined(id);
return dynamicScope.getValueOrNil(slot & 0xffff, slot >> 16, context.nil);
}
private static boolean isNumberedVariable(String id) {
return id.length() == 2 && id.charAt(0) == '_' && Character.isDigit(id.charAt(1));
}
private RaiseException numberedParameterError(ThreadContext context, IRubyObject symbol) {
return nameError(context, str(context.runtime, "numbered parameter '", symbol, "' is not a local variable"), symbol);
}
private RaiseException undefinedVariableError(ThreadContext context, IRubyObject symbol) {
return nameError(context, str(context.runtime, "local variable '", symbol, "' not defined for " + inspect(context)), symbol);
}
private RaiseException undefinedImplicitVariableError(ThreadContext context, IRubyObject symbol) {
return nameError(context, str(context.runtime, "'", symbol, "' is not an implicit parameter"), symbol);
}
// MRI: check_local_id
private String checkLocalId(ThreadContext context, IRubyObject obj) {
String id = RubySymbol.idStringFromObject(context, obj);
if (isNumberedVariable(id)) throw numberedParameterError(context, obj);
if (!RubyLexer.isIdentifierChar(id.charAt(0))) {
throw nameError(context, str(context.runtime, "wrong local variable name '", obj, "' for ", this), id);
}
return id;
}
private String checkImplicitId(ThreadContext context, IRubyObject obj) {
String id = RubySymbol.idStringFromObject(context, obj);
if (!isNumberedVariable(id) && !id.equals("it")) throw undefinedImplicitVariableError(context, obj);
return id;
}
@JRubyMethod
public IRubyObject local_variables(ThreadContext context) {
return binding.getEvalScope(context.runtime).getStaticScope().getLocalVariables(context);
}
@JRubyMethod
public IRubyObject implicit_parameters(ThreadContext context) {
return binding.getEvalScope(context.runtime).getStaticScope().getEnclosingScope().getImplicitParameters(context);
}
@JRubyMethod(name = "receiver")
public IRubyObject receiver(ThreadContext context) {
return binding.getSelf();
}
@JRubyMethod
public IRubyObject source_location(ThreadContext context) {
IRubyObject filename = newString(context, binding.getFile()).freeze(context);
RubyFixnum line = asFixnum(context, binding.getLine() + 1); /* zero-based */
return newArray(context, filename, line);
}
}