blob: 8a4f5012791f78283cddb0a42047abbad40825b6 [file] [log] [blame]
/*
* Copyright 2002,2004 The Apache Software Foundation.
*
* Licensed 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.apache.commons.jelly.expression.jexl;
import org.apache.commons.jelly.JellyContext;
import org.apache.commons.jelly.JellyException;
import org.apache.commons.jelly.expression.Expression;
import org.apache.commons.jelly.expression.ExpressionSupport;
import org.apache.commons.jelly.expression.ExpressionFactory;
//import org.apache.commons.jexl.resolver.FlatResolver;
/**
* Represents a factory of <a href="http://jakarta.apache.org/commons/jexl.html">Jexl</a>
* expression which fully supports the Expression Language in JSTL and JSP.
* In addition this ExpressionFactory can also support Ant style variable
* names, where '.' is used inside variable names.
*
* @author <a href="mailto:jstrachan@apache.org">James Strachan</a>
* @version $Revision: 1.19 $
*/
public class JexlExpressionFactory implements ExpressionFactory {
/** whether we should allow Ant-style expresssions, using dots as part of variable name */
private boolean supportAntVariables = true;
// ExpressionFactory interface
//-------------------------------------------------------------------------
public Expression createExpression(String text) throws JellyException {
/*
org.apache.commons.jexl.Expression expr =
org.apache.commons.jexl.ExpressionFactory.createExpression(text);
if ( isSupportAntVariables() ) {
expr.addPostResolver(new FlatResolver());
}
return new JexlExpression( expr );
*/
Expression jexlExpression = null;
try {
// this method really does throw Exception
jexlExpression = new JexlExpression(
org.apache.commons.jexl.ExpressionFactory.createExpression(text)
);
} catch (Exception e) {
throw new JellyException("Unable to create expression: " + text, e);
}
if ( isSupportAntVariables() && isValidAntVariableName(text) ) {
return new ExpressionSupportLocal(jexlExpression,text);
}
return jexlExpression;
}
// Properties
//-------------------------------------------------------------------------
/**
* @return whether we should allow Ant-style expresssions, using dots as
* part of variable name
*/
public boolean isSupportAntVariables() {
return supportAntVariables;
}
/**
* Sets whether we should allow Ant-style expresssions, using dots as
* part of variable name
*/
public void setSupportAntVariables(boolean supportAntVariables) {
this.supportAntVariables = supportAntVariables;
}
// Implementation methods
//-------------------------------------------------------------------------
/**
* @return true if the given string is a valid Ant variable name,
* typically thats alphanumeric text with '.' etc.
*/
protected boolean isValidAntVariableName(String text) {
char[] chars = text.toCharArray();
for (int i = 0, size = chars.length; i < size; i++ ) {
char ch = chars[i];
// could maybe be a bit more restrictive...
if ( Character.isWhitespace(ch) || ch == '[' || ch == ']' || ch == '(' || ch == ')') {
return false;
}
}
return true;
}
private class ExpressionSupportLocal extends ExpressionSupport {
protected Expression jexlExpression = null;
protected String text = null;
public ExpressionSupportLocal(Expression jexlExpression, String text) {
this.jexlExpression = jexlExpression;
this.text = text;
}
public Object evaluate(JellyContext context) {
Object answer = jexlExpression.evaluate(context);
if ( answer == null ) {
answer = context.getVariable(text);
}
return answer;
}
public String getExpressionText() {
return "${" + text + "}";
}
public String toString() {
return super.toString() + "[expression:" + text + "]";
}
}
}