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

main.java.com.dragome.services.ServiceInvocation Maven / Gradle / Ivy

/*
 * Copyright (c) 2011-2014 Fernando Petrola
 *
 * 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 com.dragome.services;

import java.lang.reflect.Method;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import com.dragome.commons.ContinueReflection;
import com.dragome.helpers.DragomeEntityManager;

public class ServiceInvocation
{
	private Class type;
	private Method method;
	private List args;
	private String id;
	private static Map, Object> services= new HashMap, Object>();

	public void setId(String id)
	{
		this.id= id;
	}

	public ServiceInvocation()
	{
	}

	public ServiceInvocation(Class type, Method method, List list)
	{
		this.type= type;
		this.method= method;
		this.args= list;
		id= DragomeEntityManager.getEntityId(this);
	}

	public ServiceInvocation(Class type, Method method, List list, String id)
	{
		this.type= type;
		this.method= method;
		this.args= list;
		this.id= id;
	}

	public List getArgs()
	{
		return args;
	}

	public Method getMethod()
	{
		return method;
	}

	public Class getType()
	{
		return type;
	}

	public void setArgs(List list)
	{
		this.args= list;
	}
	public void setMethod(Method method)
	{
		this.method= method;
	}

	public void setType(Class type)
	{
		this.type= type;
	}

	@ContinueReflection
	public Object invoke()
	{
		try
		{
			Object service= services.get(type);
			if (service == null)
			{
				Class implementationForInterface= ServiceLocator.getInstance().getMetadataManager().getImplementationForInterface(type);
				service= implementationForInterface.newInstance();
				services.put(type, service);
//				System.out.println("service " + type.getName() + " created");
			}

			Object[] array= args.toArray();
			Method localMethod= method;
			
			return localMethod.invoke(service, array);
		}
		catch (Exception e)
		{
			throw new RuntimeException(e);
		}
	}
	public String getId()
	{
		return id;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy