This repository was archived by the owner on Jan 30, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathAstValue.java
More file actions
288 lines (259 loc) · 10.4 KB
/
AstValue.java
File metadata and controls
288 lines (259 loc) · 10.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
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 1997-2012 Oracle and/or its affiliates. All rights reserved.
*
* The contents of this file are subject to the terms of either the GNU
* General Public License Version 2 only ("GPL") or the Common Development
* and Distribution License("CDDL") (collectively, the "License"). You
* may not use this file except in compliance with the License. You can
* obtain a copy of the License at
* https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html
* or packager/legal/LICENSE.txt. See the License for the specific
* language governing permissions and limitations under the License.
*
* When distributing the software, include this License Header Notice in each
* file and include the License file at packager/legal/LICENSE.txt.
*
* GPL Classpath Exception:
* Oracle designates this particular file as subject to the "Classpath"
* exception as provided by Oracle in the GPL Version 2 section of the License
* file that accompanied this code.
*
* Modifications:
* If applicable, add the following below the License Header, with the fields
* enclosed by brackets [] replaced by your own identifying information:
* "Portions Copyright [year] [name of copyright owner]"
*
* Contributor(s):
* If you wish your version of this file to be governed by only the CDDL or
* only the GPL Version 2, indicate your decision by adding "[Contributor]
* elects to include this software in this distribution under the [CDDL or GPL
* Version 2] license." If you don't indicate a single choice of license, a
* recipient has the option to distribute your version of this file under
* either the CDDL, the GPL Version 2 or to extend the choice of license to
* its licensees as provided above. However, if you add GPL Version 2 code
* and therefore, elected the GPL Version 2 license, then the option applies
* only if the new code is made subject to such option by the copyright
* holder.
*/
package com.sun.el.parser;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import javax.el.ELException;
import javax.el.ELResolver;
import javax.el.MethodInfo;
import javax.el.ValueReference;
import javax.el.ELClass;
import javax.el.PropertyNotFoundException;
import javax.el.PropertyNotWritableException;
import javax.el.ImportHandler;
import com.sun.el.lang.EvaluationContext;
import com.sun.el.lang.ELSupport;
import com.sun.el.util.MessageFactory;
import com.sun.el.util.ReflectionUtil;
/**
* @author Jacob Hookom [jacob@hookom.net]
* @author Kin-man Chung
* @version $Change: 181177 $$DateTime: 2001/06/26 08:45:09 $$Author: kchung $
*/
public final class AstValue extends SimpleNode {
protected static class Target {
protected Object base;
protected Node suffixNode;
Target(Object base, Node suffixNode) {
this.base = base;
this.suffixNode = suffixNode;
}
boolean isMethodCall() {
return getArguments(suffixNode) != null;
}
}
public AstValue(int id) {
super(id);
}
public Class getType(EvaluationContext ctx) throws ELException {
Target t = getTarget(ctx);
if (t.isMethodCall()) {
return null;
}
Object property = t.suffixNode.getValue(ctx);
ctx.setPropertyResolved(false);
Class ret = ctx.getELResolver().getType(ctx, t.base, property);
if (! ctx.isPropertyResolved()) {
ELSupport.throwUnhandled(t.base, property);
}
return ret;
}
public ValueReference getValueReference(EvaluationContext ctx)
throws ELException {
Target t = getTarget(ctx);
if (t.isMethodCall()) {
return null;
}
Object property = t.suffixNode.getValue(ctx);
return new ValueReference(t.base, property);
}
private static AstMethodArguments getArguments(Node n) {
if (n instanceof AstDotSuffix && n.jjtGetNumChildren() > 0) {
return (AstMethodArguments) n.jjtGetChild(0);
}
if (n instanceof AstBracketSuffix && n.jjtGetNumChildren() > 1) {
return (AstMethodArguments) n.jjtGetChild(1);
}
return null;
}
private Object getValue(Object base, Node child, EvaluationContext ctx)
throws ELException {
Object value = null;
ELResolver resolver = ctx.getELResolver();
Object property = child.getValue(ctx);
AstMethodArguments args = getArguments(child);
if (args != null) {
// This is a method call
if (! (property instanceof String)) {
throw new ELException(MessageFactory.get(
"error.method.name", property));
}
Class<?>[] paramTypes = args.getParamTypes();
Object[] params = args.getParameters(ctx);
ctx.setPropertyResolved(false);
value = resolver.invoke(ctx, base, property, paramTypes, params);
} else {
if (property != null) {
ctx.setPropertyResolved(false);
value = resolver.getValue(ctx, base, property);
if (! ctx.isPropertyResolved()) {
ELSupport.throwUnhandled(base, property);
}
}
}
return value;
}
private final Object getBase(EvaluationContext ctx) {
try {
return this.children[0].getValue(ctx);
} catch (PropertyNotFoundException ex) {
// Next check if the base is an imported class
if (this.children[0] instanceof AstIdentifier) {
String name = ((AstIdentifier) this.children[0]).image;
ImportHandler importHandler = ctx.getImportHandler();
if (importHandler != null) {
Class<?> c = importHandler.resolveClass(name);
if (c != null) {
return new ELClass(c);
}
}
}
throw ex;
}
}
private final Target getTarget(EvaluationContext ctx) throws ELException {
// evaluate expr-a to value-a
Object base = getBase(ctx);
// if our base is null (we know there are more properites to evaluate)
if (base == null) {
throw new PropertyNotFoundException(MessageFactory.get(
"error.unreachable.base", this.children[0].getImage()));
}
// set up our start/end
Object property = null;
int propCount = this.jjtGetNumChildren() - 1;
int i = 1;
// evaluate any properties before our target
if (propCount > 1) {
while (base != null && i < propCount) {
base = getValue(base, this.children[i], ctx);
i++;
}
// if we are in this block, we have more properties to resolve,
// but our base was null
if (base == null) {
throw new PropertyNotFoundException(MessageFactory.get(
"error.unreachable.property", property));
}
}
return new Target(base, this.children[propCount]);
}
public Object getValue(EvaluationContext ctx) throws ELException {
Object base = getBase(ctx);
int propCount = this.jjtGetNumChildren();
int i = 1;
while (base != null && i < propCount) {
base = getValue(base, this.children[i], ctx);
i++;
}
return base;
}
public boolean isReadOnly(EvaluationContext ctx) throws ELException {
Target t = getTarget(ctx);
if (t.isMethodCall()) {
return true;
}
Object property = t.suffixNode.getValue(ctx);
ctx.setPropertyResolved(false);
boolean ret = ctx.getELResolver().isReadOnly(ctx, t.base, property);
if (! ctx.isPropertyResolved()) {
ELSupport.throwUnhandled(t.base, property);
}
return ret;
}
public void setValue(EvaluationContext ctx, Object value)
throws ELException {
Target t = getTarget(ctx);
if (t.isMethodCall()) {
throw new PropertyNotWritableException(
MessageFactory.get("error.syntax.set"));
}
Object property = t.suffixNode.getValue(ctx);
ctx.setPropertyResolved(false);
ELResolver elResolver = ctx.getELResolver();
value = ctx.convertToType(value,
elResolver.getType(ctx, t.base, property));
elResolver.setValue(ctx, t.base, property, value);
if (! ctx.isPropertyResolved()) {
ELSupport.throwUnhandled(t.base, property);
}
}
public MethodInfo getMethodInfo(EvaluationContext ctx, Class[] paramTypes)
throws ELException {
Target t = getTarget(ctx);
if (t.isMethodCall()) {
return null;
}
Object property = t.suffixNode.getValue(ctx);
Method m = ReflectionUtil.getMethod(t.base, property, paramTypes);
return new MethodInfo(m.getName(), m.getReturnType(), m
.getParameterTypes());
}
public Object invoke(EvaluationContext ctx, Class[] paramTypes,
Object[] paramValues) throws ELException {
Target t = getTarget(ctx);
if (t.isMethodCall()) {
AstMethodArguments args = getArguments(t.suffixNode);
// Always use the param types in the expression, and ignore those
// specified elsewhere, such as TLD
paramTypes = args.getParamTypes();
Object[] params = args.getParameters(ctx);
String method = (String) t.suffixNode.getValue(ctx);
ctx.setPropertyResolved(false);
ELResolver resolver = ctx.getELResolver();
return resolver.invoke(ctx, t.base, method, paramTypes, params);
}
Object property = t.suffixNode.getValue(ctx);
Method m = ReflectionUtil.getMethod(t.base, property, paramTypes);
Object result = null;
try {
result = m.invoke(t.base, (Object[]) paramValues);
} catch (IllegalAccessException iae) {
throw new ELException(iae);
} catch (InvocationTargetException ite) {
throw new ELException(ite.getCause());
}
return result;
}
@Override
public boolean isParametersProvided() {
return getArguments(this.children[this.jjtGetNumChildren()-1]) != null;
}
}