All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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 arguments = new ArrayList<>(); for (Expression arg: args) { arguments.add(arg.evaluate(ctx)); } Object valueForTypeEvaluation = null; if (arguments.isEmpty()) { return null; } else { valueForTypeEvaluation = arguments.get(arguments.size() - 1); } DefaultAtlasFieldActionService.ActionProcessor actionProcessor = fieldActionService.findActionProcessor(name, valueForTypeEvaluation); if (actionProcessor != null) { Map actionParameters = new HashMap<>(); ActionParameters actionDetailParameters = actionProcessor.getActionDetail().getParameters(); if (actionDetailParameters != null && actionDetailParameters.getParameter() != null) { for (ActionParameter parameter : actionDetailParameters.getParameter()) { if (!arguments.isEmpty()) { Object parameterValue = arguments.remove(0); actionParameters.put(parameter.getName(), parameterValue); } else { throw new IllegalArgumentException(String.format("The transformation '%s' expects more parameters. The parameter '%s' is missing", name, parameter.getName())); } } } if (arguments.isEmpty()) { throw new IllegalArgumentException(String.format("The transformation '%s' expects more arguments", name)); } return fieldActionService.processAction(actionProcessor, actionParameters, arguments); } else { throw new IllegalArgumentException(String.format("The expression function or transformation '%s' was not found", name)); } }; } } }