Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/**
* The MIT License (MIT)
*
* Copyright (c) 2011-2016 Incapture Technologies LLC
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package reflex.node;
import java.io.IOException;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.lang.reflect.ParameterizedType;
import java.lang.reflect.Type;
import java.util.ArrayList;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import org.apache.commons.io.IOUtils;
import org.apache.commons.lang.StringUtils;
import org.apache.log4j.Logger;
import rapture.common.RaptureTransferObject;
import rapture.common.exception.ExceptionToString;
import rapture.common.exception.RaptureException;
import rapture.common.exception.RaptureExceptionFactory;
import rapture.common.impl.jackson.JacksonUtil;
import reflex.ReflexException;
import reflex.value.ReflexFileValue;
import reflex.value.ReflexValue;
import reflex.value.internal.ReflexNullValue;
public final class KernelExecutor {
protected KernelExecutor() {
}
private static final Logger log = Logger.getLogger(KernelExecutor.class);
public static ReflexValue executeFunction(int lineNumber, Object outerApi, String areaName, String fnName, List params) {
String apiName;
if (!StringUtils.isEmpty(areaName) && areaName.length() > 1) {
apiName = areaName.substring(0, 1).toUpperCase() + areaName.substring(1);
} else {
apiName = "";
}
int numPassedParams = params.size();
try {
// Find the method get[AreaName], which will return the area
Method[] methods = outerApi.getClass().getMethods();
String getApiMethodName = "get" + apiName;
for (Method m : methods) {
if (m.getName().equals(getApiMethodName)) {
// Call that method to get the api requested
Object api = m.invoke(outerApi);
// Now find the method with the fnName
Method[] innerMethods = api.getClass().getMethods();
for (Method im : innerMethods) {
if (im.getName().equals(fnName)) {
// the api should just have one entry
Type[] types = im.getGenericParameterTypes();
int numExpectedParams = types.length;
if (numExpectedParams == numPassedParams) {
List