Package org.apache.camel.language.jxpath

Source Code of org.apache.camel.language.jxpath.JXPathExpression

/**
* 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.apache.camel.language.jxpath;

import org.apache.camel.Exchange;
import org.apache.camel.Expression;
import org.apache.camel.Message;
import org.apache.camel.impl.ExpressionSupport;
import org.apache.camel.language.ExpressionEvaluationException;
import org.apache.commons.jxpath.CompiledExpression;
import org.apache.commons.jxpath.JXPathContext;
import org.apache.commons.jxpath.JXPathException;

/**
* <a href="http://commons.apache.org/jxpath/">JXPath</a> {@link Expression} support
*/
public class JXPathExpression extends ExpressionSupport<Exchange> {

  private String expression;
  private CompiledExpression compiledExpression;
  private final Class<?> type;

  /**
   * Creates a new JXPathExpression instance
   *
   * @param expression the JXPath expression to be evaluated
   * @param type the expected result type
   */
  public JXPathExpression(String expression, Class<?> type) {
    super();
    this.expression = expression;
    this.type = type;
  }

   
    public Object evaluate(Exchange exchange) {
    try {
            JXPathContext context = JXPathContext.newContext(exchange);
            Object result = getJXPathExpression().getValue(context, type);
      assertResultType(exchange, result);
      return result;
    } catch (JXPathException e) {
      throw new ExpressionEvaluationException(this, exchange, e);
    }
  }

  /*
   * Check if the result is of the specified type
   */
  private void assertResultType(Exchange exchange, Object result) {
    if (!type.isAssignableFrom(result.getClass())) {
      throw new JXPathException("JXPath result type is " + result.getClass() + " instead of required type " + type);
    }
  }

  @Override
  protected String assertionFailureMessage(Exchange exchange) {
    return expression.toString();
  }
 
  /*
   * Get a compiled expression instance for better performance
   */
  private synchronized CompiledExpression getJXPathExpression() {
    if (compiledExpression == null) {
      compiledExpression = JXPathContext.compile(expression);
    }
    return compiledExpression;
  }
}
TOP

Related Classes of org.apache.camel.language.jxpath.JXPathExpression

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.