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

com.avanza.astrix.gs.GsComponent Maven / Gradle / Ivy

There is a newer version: 2.0.6
Show newest version
/*
 * Copyright 2014 Avanza Bank AB
 *
 * 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.avanza.astrix.gs;

import org.openspaces.core.GigaSpace;

import com.avanza.astrix.beans.service.BoundServiceBeanInstance;
import com.avanza.astrix.beans.service.ServiceComponent;
import com.avanza.astrix.beans.service.ServiceDefinition;
import com.avanza.astrix.beans.service.ServiceProperties;
import com.avanza.astrix.beans.service.UnsupportedTargetTypeException;
import com.avanza.astrix.gs.ClusteredProxyCacheImpl.GigaSpaceInstance;
import com.avanza.astrix.provider.component.AstrixServiceComponentNames;
import com.avanza.astrix.spring.AstrixSpringContext;
/**
 * Service component allowing GigaSpace clustered proxy to be used as a service. 
 * 
 * @author Elias Lindholm
 *
 */
public class GsComponent implements ServiceComponent, ClusteredProxyBinder {

	private GsBinder gsBinder;
	private AstrixSpringContext astrixSpringContext;
	private ClusteredProxyCache proxyCache;
	
	public GsComponent(GsBinder gsBinder, AstrixSpringContext astrixSpringContext, ClusteredProxyCache proxyCache) {
		this.gsBinder = gsBinder;
		this.astrixSpringContext = astrixSpringContext;
		this.proxyCache = proxyCache;
	}

	@Override
	public  BoundServiceBeanInstance bind(ServiceDefinition serviceDefinition, ServiceProperties serviceProperties) {
		Class targetType = serviceDefinition.getServiceType();
		if (!GigaSpace.class.isAssignableFrom(targetType)) {
			throw new UnsupportedTargetTypeException(getName(), targetType);
		}
		GigaSpaceInstance gigaSpaceInstance = proxyCache.getProxy(serviceProperties);
		T proxyWithFaultTolerance = targetType.cast(GigaSpaceProxy.create(gigaSpaceInstance.get()));
		return BoundProxyServiceBeanInstance.create(proxyWithFaultTolerance, gigaSpaceInstance);
	}
	
	@Override
	public ServiceProperties parseServiceProviderUri(String serviceProviderUri) {
		return gsBinder.createServiceProperties(serviceProviderUri);
	}


	@Override
	public String getName() {
		return AstrixServiceComponentNames.GS;
	}
	
	@Override
	public boolean canBindType(Class type) {
		return GigaSpace.class.equals(type);
	}

	@Override
	public  void exportService(Class providedApi, T provider, ServiceDefinition versioningContext) {
		// Intentionally empty
	}
	
	@Override
	public boolean requiresProviderInstance() {
		return false;
	}
	
	@Override
	public  ServiceProperties createServiceProperties(ServiceDefinition definition) {
		if (!definition.getServiceType().equals(GigaSpace.class)) {
			throw new IllegalArgumentException("Can't export: " + definition.getServiceType());
		}
		GigaSpace space = gsBinder.getEmbeddedSpace(astrixSpringContext.getApplicationContext());
		return gsBinder.createProperties(space);
	}
	

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy