-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Expand file tree
/
Copy pathAbstractCallSite.java
More file actions
457 lines (391 loc) · 16.4 KB
/
AbstractCallSite.java
File metadata and controls
457 lines (391 loc) · 16.4 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
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache 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.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.codehaus.groovy.runtime.callsite;
import groovy.lang.GroovyObject;
import groovy.lang.GroovyRuntimeException;
import groovy.lang.MetaClass;
import groovy.lang.MetaClassImpl;
import groovy.lang.MetaProperty;
import groovy.transform.Internal;
import org.codehaus.groovy.reflection.CachedClass;
import org.codehaus.groovy.reflection.CachedField;
import org.codehaus.groovy.reflection.ParameterTypes;
import org.codehaus.groovy.runtime.ArrayUtil;
import org.codehaus.groovy.runtime.GroovyCategorySupport;
import org.codehaus.groovy.runtime.InvokerHelper;
import org.codehaus.groovy.runtime.NullObject;
import org.codehaus.groovy.runtime.ScriptBytecodeAdapter;
import org.codehaus.groovy.runtime.wrappers.Wrapper;
import java.lang.reflect.Method;
/**
* Base class for all call sites.
*/
@Deprecated
public class AbstractCallSite implements CallSite {
protected final int index;
protected final String name;
protected final CallSiteArray array;
public AbstractCallSite(final CallSiteArray array, final int index, final String name) {
this.name = name;
this.index = index;
this.array = array;
}
public AbstractCallSite(final CallSite prev) {
this.name = prev.getName();
this.index = prev.getIndex();
this.array = prev.getArray();
}
@Override
public int getIndex() {
return index;
}
@Override
public CallSiteArray getArray() {
return array;
}
@Override
public String getName() {
return name;
}
@Override
public final Object callSafe(final Object receiver, final Object[] args) throws Throwable {
if (receiver == null)
return null;
return call(receiver, args);
}
@Override
public final Object callSafe(final Object receiver) throws Throwable {
if (receiver == null)
return null;
return call(receiver);
}
@Override
public final Object callSafe(final Object receiver, final Object arg1) throws Throwable {
if (receiver == null)
return null;
return call(receiver, arg1);
}
@Override
public final Object callSafe(final Object receiver, final Object arg1, final Object arg2) throws Throwable {
if (receiver == null)
return null;
return call(receiver, arg1, arg2);
}
@Override
public final Object callSafe(final Object receiver, final Object arg1, final Object arg2, final Object arg3) throws Throwable {
if (receiver == null)
return null;
return call(receiver, arg1, arg2, arg3);
}
@Override
public Object callSafe(final Object receiver, final Object arg1, final Object arg2, final Object arg3, final Object arg4) throws Throwable {
if (receiver == null)
return null;
return call(receiver, arg1, arg2, arg3, arg4);
}
@Override
public Object call(final Object receiver, final Object[] args) throws Throwable {
return CallSiteArray.defaultCall(this, receiver, args);
}
@Override
public Object call(final Object receiver) throws Throwable {
return call(receiver, CallSiteArray.NOPARAM);
}
@Override
public Object call(final Object receiver, final Object arg1) throws Throwable {
CallSite stored = array.array[index];
if (stored!=this) {
return stored.call(receiver, arg1);
}
return call(receiver, ArrayUtil.createArray(arg1));
}
@Override
public Object call(final Object receiver, final Object arg1, final Object arg2) throws Throwable {
CallSite stored = array.array[index];
if (stored!=this) {
return stored.call(receiver, arg1, arg2);
}
return call(receiver, ArrayUtil.createArray(arg1, arg2));
}
@Override
public Object call(final Object receiver, final Object arg1, final Object arg2, final Object arg3) throws Throwable {
CallSite stored = array.array[index];
if (stored!=this) {
return stored.call(receiver, arg1, arg2, arg3);
}
return call(receiver, ArrayUtil.createArray(arg1, arg2, arg3));
}
@Override
public Object call(final Object receiver, final Object arg1, final Object arg2, final Object arg3, final Object arg4) throws Throwable {
CallSite stored = array.array[index];
if (stored!=this) {
return stored.call(receiver, arg1, arg2, arg3, arg4);
}
return call(receiver, ArrayUtil.createArray(arg1, arg2, arg3, arg4));
}
@Override
public Object callCurrent(final GroovyObject receiver, final Object[] args) throws Throwable {
return CallSiteArray.defaultCallCurrent(this, receiver, args);
}
@Override
public Object callCurrent(final GroovyObject receiver) throws Throwable {
return callCurrent(receiver, CallSiteArray.NOPARAM);
}
@Override
public Object callCurrent(final GroovyObject receiver, final Object arg1) throws Throwable {
CallSite stored = array.array[index];
if (stored!=this) {
return stored.callCurrent(receiver, arg1);
}
return callCurrent(receiver, ArrayUtil.createArray(arg1));
}
@Override
public Object callCurrent(final GroovyObject receiver, final Object arg1, final Object arg2) throws Throwable {
CallSite stored = array.array[index];
if (stored!=this) {
return stored.callCurrent(receiver, arg1, arg2);
}
return callCurrent(receiver, ArrayUtil.createArray(arg1, arg2));
}
@Override
public Object callCurrent(final GroovyObject receiver, final Object arg1, final Object arg2, final Object arg3) throws Throwable {
CallSite stored = array.array[index];
if (stored!=this) {
return stored.callCurrent(receiver, arg1, arg2, arg3);
}
return callCurrent(receiver, ArrayUtil.createArray(arg1, arg2, arg3));
}
@Override
public Object callCurrent(final GroovyObject receiver, final Object arg1, final Object arg2, final Object arg3, final Object arg4) throws Throwable {
CallSite stored = array.array[index];
if (stored!=this) {
return stored.callCurrent(receiver, arg1, arg2, arg3, arg4);
}
return callCurrent(receiver, ArrayUtil.createArray(arg1, arg2, arg3, arg4));
}
@Override
public Object callStatic(final Class receiver, final Object[] args) throws Throwable {
return CallSiteArray.defaultCallStatic(this, receiver, args);
}
@Override
public Object callStatic(final Class receiver) throws Throwable {
return callStatic(receiver, CallSiteArray.NOPARAM);
}
@Override
public Object callStatic(final Class receiver, final Object arg1) throws Throwable {
CallSite stored = array.array[index];
if (stored!=this) {
return stored.callStatic(receiver, arg1);
}
return callStatic(receiver, ArrayUtil.createArray(arg1));
}
@Override
public Object callStatic(final Class receiver, final Object arg1, final Object arg2) throws Throwable {
CallSite stored = array.array[index];
if (stored!=this) {
return stored.callStatic(receiver, arg1, arg2);
}
return callStatic(receiver, ArrayUtil.createArray(arg1, arg2));
}
@Override
public Object callStatic(final Class receiver, final Object arg1, final Object arg2, final Object arg3) throws Throwable {
CallSite stored = array.array[index];
if (stored!=this) {
return stored.callStatic(receiver, arg1, arg2, arg3);
}
return callStatic(receiver, ArrayUtil.createArray(arg1, arg2, arg3));
}
@Override
public Object callStatic(final Class receiver, final Object arg1, final Object arg2, final Object arg3, final Object arg4) throws Throwable {
CallSite stored = array.array[index];
if (stored!=this) {
return stored.callStatic(receiver, arg1, arg2, arg3, arg4);
}
return callStatic(receiver, ArrayUtil.createArray(arg1, arg2, arg3, arg4));
}
@Override
public Object callConstructor(final Object receiver, final Object[] args) throws Throwable {
return CallSiteArray.defaultCallConstructor(this, receiver, args);
}
@Override
public Object callConstructor(final Object receiver) throws Throwable {
return callConstructor(receiver, CallSiteArray.NOPARAM);
}
@Override
public Object callConstructor(final Object receiver, final Object arg1) throws Throwable {
CallSite stored = array.array[index];
if (stored!=this) {
return stored.callConstructor(receiver, arg1);
}
return callConstructor(receiver, ArrayUtil.createArray(arg1));
}
@Override
public Object callConstructor(final Object receiver, final Object arg1, final Object arg2) throws Throwable {
CallSite stored = array.array[index];
if (stored!=this) {
return stored.callConstructor(receiver, arg1, arg2);
}
return callConstructor(receiver, ArrayUtil.createArray(arg1, arg2));
}
@Override
public Object callConstructor(final Object receiver, final Object arg1, final Object arg2, final Object arg3) throws Throwable {
CallSite stored = array.array[index];
if (stored!=this) {
return stored.callConstructor(receiver, arg1, arg2, arg3);
}
return callConstructor(receiver, ArrayUtil.createArray(arg1, arg2, arg3));
}
@Override
public Object callConstructor(final Object receiver, final Object arg1, final Object arg2, final Object arg3, final Object arg4) throws Throwable {
CallSite stored = array.array[index];
if (stored!=this) {
return stored.callConstructor(receiver, arg1, arg2, arg3, arg4);
}
return callConstructor(receiver, ArrayUtil.createArray(arg1, arg2, arg3, arg4));
}
static boolean noCoerce(final ParameterTypes metaMethod, final Object[] args) {
final CachedClass[] paramClasses = metaMethod.getParameterTypes();
if (paramClasses.length != args.length)
return false;
for (int i = 0; i < paramClasses.length; i++) {
CachedClass paramClass = paramClasses[i];
if (args[i] != null && !paramClass.isDirectlyAssignable(args[i]))
return true;
}
return false;
}
static boolean noWrappers(final Object[] args) {
for (int i = 0; i != args.length; i += 1)
if (args[i] instanceof Wrapper)
return false;
return true;
}
@Override
public Object callGetProperty(final Object receiver) throws Throwable {
return acceptGetProperty(receiver).getProperty(receiver);
}
@Override
public Object callGroovyObjectGetProperty(final Object receiver) throws Throwable {
if (receiver == null) {
try {
return InvokerHelper.getProperty(NullObject.getNullObject(), name);
} catch (GroovyRuntimeException gre) {
throw ScriptBytecodeAdapter.unwrap(gre);
}
} else {
return acceptGroovyObjectGetProperty(receiver).getProperty(receiver);
}
}
public CallSite acceptGetProperty(final Object receiver) {
return createGetPropertySite(receiver);
}
public CallSite acceptGroovyObjectGetProperty(final Object receiver) {
return createGroovyObjectGetPropertySite(receiver);
}
protected final CallSite createGetPropertySite(final Object receiver) {
if (receiver == null) {
return new NullCallSite(this);
} else if (receiver instanceof GroovyObject) {
return createGroovyObjectGetPropertySite(receiver);
} else if (receiver instanceof Class) {
return createClassMetaClassGetPropertySite((Class<?>) receiver);
}
return createPojoMetaClassGetPropertySite(receiver);
}
protected final CallSite createGroovyObjectGetPropertySite(final Object receiver) {
Class<?> aClass = receiver.getClass();
try {
final Method method = aClass.getMethod("getProperty", String.class);
if (method != null && (method.isSynthetic() || isMarkedInternal(method)) && ((GroovyObject) receiver).getMetaClass() instanceof MetaClassImpl)
return createPogoMetaClassGetPropertySite((GroovyObject) receiver);
} catch (NoSuchMethodException e) {
// fall threw
}
if (receiver instanceof Class) {
return createClassMetaClassGetPropertySite((Class<?>) receiver);
} else {
return createPogoGetPropertySite(aClass);
}
}
private boolean isMarkedInternal(final Method method) {
return method.getAnnotation(Internal.class) != null;
}
@Override
public Object getProperty(final Object receiver) throws Throwable {
throw new UnsupportedOperationException();
}
private CallSite createPojoMetaClassGetPropertySite(final Object receiver) {
final MetaClass metaClass = InvokerHelper.getMetaClass(receiver);
CallSite site;
if (metaClass.getClass() != MetaClassImpl.class || GroovyCategorySupport.hasCategoryInCurrentThread()) {
site = new PojoMetaClassGetPropertySite(this);
} else {
final MetaProperty effective = ((MetaClassImpl) metaClass).getEffectiveGetMetaProperty(receiver.getClass(), receiver, name, false);
if (effective != null) {
if (effective instanceof CachedField)
site = new GetEffectivePojoFieldSite(this, (MetaClassImpl) metaClass, (CachedField) effective);
else
site = new GetEffectivePojoPropertySite(this, (MetaClassImpl) metaClass, effective);
} else {
site = new PojoMetaClassGetPropertySite(this);
}
}
array.array[index] = site;
return site;
}
private CallSite createClassMetaClassGetPropertySite(final Class<?> aClass) {
CallSite site = new ClassMetaClassGetPropertySite(this, aClass);
array.array[index] = site;
return site;
}
private CallSite createPogoMetaClassGetPropertySite(final GroovyObject receiver) {
MetaClass metaClass = receiver.getMetaClass();
CallSite site;
if (metaClass.getClass() != MetaClassImpl.class || GroovyCategorySupport.hasCategoryInCurrentThread()) {
site = new PogoMetaClassGetPropertySite(this, metaClass);
} else {
final MetaProperty effective = ((MetaClassImpl) metaClass).getEffectiveGetMetaProperty(this.array.owner, receiver, name, false);
if (effective != null) {
if (effective instanceof CachedField)
site = new GetEffectivePogoFieldSite(this, metaClass, (CachedField) effective);
else
site = new GetEffectivePogoPropertySite(this, metaClass, effective);
} else {
site = new PogoMetaClassGetPropertySite(this, metaClass);
}
}
array.array[index] = site;
return site;
}
private CallSite createPogoGetPropertySite(final Class<?> aClass) {
CallSite site = new PogoGetPropertySite(this, aClass);
array.array[index] = site;
return site;
}
@Override
public final Object callGetPropertySafe(final Object receiver) throws Throwable {
if (receiver == null) return null;
return callGetProperty(receiver);
}
@Override
public final Object callGroovyObjectGetPropertySafe(final Object receiver) throws Throwable {
if (receiver == null) return null;
return callGroovyObjectGetProperty(receiver);
}
}