io.atlasmap.core.DefaultAtlasFunctionResolver Maven / Gradle / Ivy
/**
* Copyright (C) 2017 Red Hat, Inc.
*
* 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 io.atlasmap.core;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.ServiceLoader;
import io.atlasmap.expression.Expression;
import io.atlasmap.expression.FunctionResolver;
import io.atlasmap.expression.parser.ParseException;
import io.atlasmap.spi.AtlasFieldActionService;
import io.atlasmap.spi.FunctionFactory;
import io.atlasmap.v2.Action;
import io.atlasmap.v2.ActionParameter;
import io.atlasmap.v2.ActionParameters;
public class DefaultAtlasFunctionResolver implements FunctionResolver {
private static DefaultAtlasFunctionResolver instance;
private HashMap functions = new HashMap<>();
private DefaultAtlasFieldActionService fieldActionService;
public static DefaultAtlasFunctionResolver getInstance() {
if (instance == null) {
instance = new DefaultAtlasFunctionResolver();
instance.init();
}
return instance;
}
private void init() {
functions = new HashMap<>();
ServiceLoader implementations = ServiceLoader.load(FunctionFactory.class, FunctionFactory.class.getClassLoader());
for (FunctionFactory f : implementations) {
functions.put(f.getName().toUpperCase(), f);
}
fieldActionService = DefaultAtlasFieldActionService.getInstance();
fieldActionService.init();
}
@Override
public Expression resolve(final String name, List args) throws ParseException {
String functionName = name.toUpperCase();
FunctionFactory f = functions.get(functionName);
if (f != null) {
return f.create(args);
} else {
//lookup action
return (ctx) -> {
List