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

com.avanza.astrix.gs.remoting.GsRemotingComponent 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.remoting;

import org.openspaces.core.GigaSpace;

import com.avanza.astrix.beans.core.ReactiveTypeConverter;
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.core.util.ReflectionUtil;
import com.avanza.astrix.gs.BoundProxyServiceBeanInstance;
import com.avanza.astrix.gs.ClusteredProxyCache;
import com.avanza.astrix.gs.ClusteredProxyCacheImpl.GigaSpaceInstance;
import com.avanza.astrix.gs.GsBinder;
import com.avanza.astrix.provider.component.AstrixServiceComponentNames;
import com.avanza.astrix.remoting.client.RemotingProxy;
import com.avanza.astrix.remoting.client.RemotingTransport;
import com.avanza.astrix.remoting.server.AstrixServiceActivator;
import com.avanza.astrix.spring.AstrixSpringContext;
import com.avanza.astrix.versioning.core.AstrixObjectSerializer;
import com.avanza.astrix.versioning.core.ObjectSerializerFactory;
/**
 * Provides remoting using a GigaSpace clustered proxy as transport. 

* * @author Elias Lindholm * */ public class GsRemotingComponent implements ServiceComponent { private final GsBinder gsBinder; private final AstrixSpringContext astrixSpringContext; private final AstrixServiceActivator serviceActivator; private final ObjectSerializerFactory objectSerializerFactory; private final ClusteredProxyCache proxyCache; private final ReactiveTypeConverter reactiveTypeConverter; public GsRemotingComponent(GsBinder gsBinder, AstrixSpringContext astrixSpringContext, AstrixServiceActivator serviceActivator, ObjectSerializerFactory objectSerializerFactory, ClusteredProxyCache proxyCache, ReactiveTypeConverter reactiveTypeConverter) { this.gsBinder = gsBinder; this.astrixSpringContext = astrixSpringContext; this.serviceActivator = serviceActivator; this.objectSerializerFactory = objectSerializerFactory; this.proxyCache = proxyCache; this.reactiveTypeConverter = reactiveTypeConverter; } @Override public BoundServiceBeanInstance bind(ServiceDefinition serviceDefinition, ServiceProperties serviceProperties) { AstrixObjectSerializer objectSerializer = objectSerializerFactory.create(serviceDefinition.getObjectSerializerDefinition()); GigaSpaceInstance proxyInstance = proxyCache.getProxy(serviceProperties); GsRemotingTransport gsRemotingTransport = new GsRemotingTransport(proxyInstance.getSpaceTaskDispatcher()); RemotingTransport remotingTransport = RemotingTransport.create(gsRemotingTransport); T proxy = RemotingProxy.create(serviceDefinition.getServiceType(), ReflectionUtil.classForName(serviceProperties.getProperty(ServiceProperties.API)) , remotingTransport, objectSerializer, new GsRoutingStrategy(), reactiveTypeConverter); return BoundProxyServiceBeanInstance.create(proxy, proxyInstance); } @Override public ServiceProperties parseServiceProviderUri(String serviceProviderUri) { return gsBinder.createServiceProperties(serviceProviderUri); } @Override public ServiceProperties createServiceProperties(ServiceDefinition serviceDefinition) { GigaSpace space = gsBinder.getEmbeddedSpace(astrixSpringContext.getApplicationContext()); ServiceProperties serviceProperties = gsBinder.createProperties(space); return serviceProperties; } @Override public String getName() { return AstrixServiceComponentNames.GS_REMOTING; } @Override public boolean canBindType(Class type) { return true; } @Override public void exportService(Class providedApi, T provider, ServiceDefinition serviceDefinition) { AstrixObjectSerializer objectSerializer = objectSerializerFactory.create(serviceDefinition.getObjectSerializerDefinition()); this.serviceActivator.register(provider, objectSerializer, providedApi); } @Override public boolean requiresProviderInstance() { return true; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy