| 1 | |
package org.apache.commons.ognl; |
| 2 | |
|
| 3 | |
|
| 4 | |
|
| 5 | |
|
| 6 | |
|
| 7 | |
|
| 8 | |
|
| 9 | |
|
| 10 | |
|
| 11 | |
|
| 12 | |
|
| 13 | |
|
| 14 | |
|
| 15 | |
|
| 16 | |
|
| 17 | |
|
| 18 | |
|
| 19 | |
|
| 20 | |
|
| 21 | |
|
| 22 | |
import org.apache.commons.ognl.enhance.UnsupportedCompilationException; |
| 23 | |
|
| 24 | |
|
| 25 | |
|
| 26 | |
|
| 27 | |
|
| 28 | |
|
| 29 | |
class ASTEval |
| 30 | |
extends SimpleNode |
| 31 | |
{ |
| 32 | |
|
| 33 | |
public ASTEval( int id ) |
| 34 | |
{ |
| 35 | 20 | super( id ); |
| 36 | 20 | } |
| 37 | |
|
| 38 | |
public ASTEval( OgnlParser p, int id ) |
| 39 | |
{ |
| 40 | 0 | super( p, id ); |
| 41 | 0 | } |
| 42 | |
|
| 43 | |
protected Object getValueBody( OgnlContext context, Object source ) |
| 44 | |
throws OgnlException |
| 45 | |
{ |
| 46 | 95 | Object result, expr = children[0].getValue( context, source ), previousRoot = context.getRoot(); |
| 47 | |
Node node; |
| 48 | |
|
| 49 | 95 | source = children[1].getValue( context, source ); |
| 50 | 95 | node = ( expr instanceof Node ) ? (Node) expr : (Node) Ognl.parseExpression( expr.toString() ); |
| 51 | |
try |
| 52 | |
{ |
| 53 | 95 | context.setRoot( source ); |
| 54 | 95 | result = node.getValue( context, source ); |
| 55 | |
} |
| 56 | |
finally |
| 57 | |
{ |
| 58 | 95 | context.setRoot( previousRoot ); |
| 59 | 95 | } |
| 60 | 95 | return result; |
| 61 | |
} |
| 62 | |
|
| 63 | |
protected void setValueBody( OgnlContext context, Object target, Object value ) |
| 64 | |
throws OgnlException |
| 65 | |
{ |
| 66 | 1 | Object expr = children[0].getValue( context, target ), previousRoot = context.getRoot(); |
| 67 | |
Node node; |
| 68 | |
|
| 69 | 1 | target = children[1].getValue( context, target ); |
| 70 | 1 | node = ( expr instanceof Node ) ? (Node) expr : (Node) Ognl.parseExpression( expr.toString() ); |
| 71 | |
try |
| 72 | |
{ |
| 73 | 1 | context.setRoot( target ); |
| 74 | 1 | node.setValue( context, target, value ); |
| 75 | |
} |
| 76 | |
finally |
| 77 | |
{ |
| 78 | 1 | context.setRoot( previousRoot ); |
| 79 | 1 | } |
| 80 | 1 | } |
| 81 | |
|
| 82 | |
public String toGetSourceString( OgnlContext context, Object target ) |
| 83 | |
{ |
| 84 | 1 | throw new UnsupportedCompilationException( "Eval expressions not supported as native java yet." ); |
| 85 | |
} |
| 86 | |
|
| 87 | |
public String toSetSourceString( OgnlContext context, Object target ) |
| 88 | |
{ |
| 89 | 0 | throw new UnsupportedCompilationException( "Map expressions not supported as native java yet." ); |
| 90 | |
} |
| 91 | |
|
| 92 | |
public <R, P> R accept( NodeVisitor<? extends R, ? super P> visitor, P data ) |
| 93 | |
throws OgnlException |
| 94 | |
{ |
| 95 | 0 | return visitor.visit( this, data ); |
| 96 | |
} |
| 97 | |
|
| 98 | |
@Override |
| 99 | |
public boolean isEvalChain( OgnlContext context ) |
| 100 | |
throws OgnlException |
| 101 | |
{ |
| 102 | 0 | return true; |
| 103 | |
} |
| 104 | |
} |