org.camunda.spin.plugin.impl.SpinFunctionMapper Maven / Gradle / Ivy
/*
* Copyright Camunda Services GmbH and/or licensed to Camunda Services GmbH
* under one or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information regarding copyright
* ownership. Camunda licenses this file to you under the Apache License,
* Version 2.0; 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.camunda.spin.plugin.impl;
import java.lang.reflect.Method;
import java.util.HashMap;
import java.util.Map;
import org.camunda.bpm.engine.impl.javax.el.FunctionMapper;
import org.camunda.bpm.engine.impl.util.ReflectUtil;
import org.camunda.spin.Spin;
/**
* A FunctionMapper which resolves the Spin functions for Expression Language.
*
* Lazy loading: This implementation supports lazy loading: the Java Methods
* are loaded upon the first request.
*
* Caching: once the methods are loaded, they are cached in a Map for efficient
* retrieval.
*
* @author Daniel Meyer
*
*/
public class SpinFunctionMapper extends FunctionMapper {
public static Map SPIN_FUNCTION_MAP = null;
public Method resolveFunction(String prefix, String localName) {
// Spin methods are used un-prefixed
ensureSpinFunctionMapInitialized();
return SPIN_FUNCTION_MAP.get(localName);
}
protected void ensureSpinFunctionMapInitialized() {
if(SPIN_FUNCTION_MAP == null) {
synchronized (SpinFunctionMapper.class) {
if(SPIN_FUNCTION_MAP == null) {
SPIN_FUNCTION_MAP = new HashMap();
createMethodBindings();
}
}
}
}
protected void createMethodBindings() {
Class> spinClass = Spin.class;
SPIN_FUNCTION_MAP.put("S", ReflectUtil.getMethod(spinClass, "S", Object.class));
SPIN_FUNCTION_MAP.put("XML", ReflectUtil.getMethod(spinClass, "XML", Object.class));
SPIN_FUNCTION_MAP.put("JSON", ReflectUtil.getMethod(spinClass, "JSON", Object.class));
}
}