X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-binding-util%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fmd%2Fsal%2Fbinding%2Futil%2FBindingContextUtils.java;fp=opendaylight%2Fmd-sal%2Fsal-binding-util%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fmd%2Fsal%2Fbinding%2Futil%2FBindingContextUtils.java;h=6f2186be88cc4479216174f91ae2b9e79c7b18db;hp=0000000000000000000000000000000000000000;hb=696c988be117c8aa1afa39502ff2e56c9b72e834;hpb=43a4eb1e085754c92a88b0d9740610fe382298f8 diff --git a/opendaylight/md-sal/sal-binding-util/src/main/java/org/opendaylight/controller/md/sal/binding/util/BindingContextUtils.java b/opendaylight/md-sal/sal-binding-util/src/main/java/org/opendaylight/controller/md/sal/binding/util/BindingContextUtils.java new file mode 100644 index 0000000000..6f2186be88 --- /dev/null +++ b/opendaylight/md-sal/sal-binding-util/src/main/java/org/opendaylight/controller/md/sal/binding/util/BindingContextUtils.java @@ -0,0 +1,143 @@ +package org.opendaylight.controller.md.sal.binding.util; + +import java.awt.image.SinglePixelPackedSampleModel; + +import org.opendaylight.controller.md.sal.common.api.routing.RouteChangeListener; +import org.opendaylight.controller.sal.binding.api.BindingAwareBroker.ConsumerContext; +import org.opendaylight.controller.sal.binding.api.BindingAwareBroker.ProviderContext; +import org.opendaylight.controller.sal.binding.api.BindingAwareBroker.RoutedRpcRegistration; +import org.opendaylight.controller.sal.binding.api.BindingAwareBroker.RpcRegistration; +import org.opendaylight.controller.sal.binding.api.BindingAwareProvider; +import org.opendaylight.controller.sal.binding.api.BindingAwareProvider.ProviderFunctionality; +import org.opendaylight.controller.sal.binding.api.rpc.RpcContextIdentifier; +import org.opendaylight.controller.sal.binding.api.BindingAwareConsumer; +import org.opendaylight.controller.sal.binding.api.BindingAwareService; +import org.opendaylight.controller.sal.binding.api.RpcConsumerRegistry; +import org.opendaylight.controller.sal.binding.api.RpcProviderRegistry; +import org.opendaylight.yangtools.concepts.ListenerRegistration; +import org.opendaylight.yangtools.yang.binding.InstanceIdentifier; +import org.opendaylight.yangtools.yang.binding.RpcService; + +import static com.google.common.base.Preconditions.*; + +import com.google.common.collect.ClassToInstanceMap; +import com.google.common.collect.MutableClassToInstanceMap; + +public class BindingContextUtils { + + public static ConsumerContext createConsumerContext(BindingAwareConsumer consumer, + ClassToInstanceMap serviceProvider) { + checkNotNull(consumer,"Consumer should not be null"); + checkNotNull(serviceProvider,"Service map should not be null"); + return new SingleConsumerContextImpl(serviceProvider); + } + + public static ProviderContext createProviderContext(BindingAwareProvider provider, + ClassToInstanceMap serviceProvider) { + checkNotNull(provider,"Provider should not be null"); + checkNotNull(serviceProvider,"Service map should not be null"); + return new SingleProviderContextImpl(serviceProvider); + } + + public static ConsumerContext createConsumerContextAndInitialize(BindingAwareConsumer consumer, + ClassToInstanceMap serviceProvider) { + ConsumerContext context = createConsumerContext(consumer, serviceProvider); + consumer.onSessionInitialized(context); + return context; + } + + public static ProviderContext createProviderContextAndInitialize(BindingAwareProvider provider, + ClassToInstanceMap serviceProvider) { + ProviderContext context = createProviderContext(provider, serviceProvider); + provider.onSessionInitiated(context); + return context; + } + + public static T createContextProxyOrReturnService(Class service, T instance) { + // FIXME: Create Proxy + return instance; + } + + private static class SingleConsumerContextImpl implements ConsumerContext, AutoCloseable { + + private ClassToInstanceMap alreadyRetrievedServices; + private ClassToInstanceMap serviceProvider; + + public SingleConsumerContextImpl(ClassToInstanceMap serviceProvider) { + this.alreadyRetrievedServices = MutableClassToInstanceMap.create(); + this.serviceProvider = serviceProvider; + } + + @Override + public final T getRpcService(Class module) { + return getSALService(RpcConsumerRegistry.class).getRpcService(module); + } + + @Override + public final T getSALService(Class service) { + checkNotNull(service,"Service class should not be null."); + T potential = alreadyRetrievedServices.getInstance(service); + if(potential != null) { + return potential; + } + return tryToRetrieveSalService(service); + } + + private synchronized T tryToRetrieveSalService(Class service) { + final T potential = alreadyRetrievedServices.getInstance(service); + if(potential != null) { + return potential; + } + final T requested = serviceProvider.getInstance(service); + if(requested == null) { + throw new IllegalArgumentException("Requested service "+service.getName() +" is not available."); + } + final T retrieved = BindingContextUtils.createContextProxyOrReturnService(service,requested); + alreadyRetrievedServices.put(service, retrieved); + return retrieved; + } + + @Override + public final void close() throws Exception { + alreadyRetrievedServices = null; + serviceProvider = null; + } + } + + private static class SingleProviderContextImpl extends SingleConsumerContextImpl implements ProviderContext { + + public SingleProviderContextImpl(ClassToInstanceMap serviceProvider) { + super(serviceProvider); + } + + @Override + public >> ListenerRegistration registerRouteChangeListener( + L listener) { + return getSALService(RpcProviderRegistry.class).registerRouteChangeListener(listener); + } + + @Override + public RoutedRpcRegistration addRoutedRpcImplementation(Class type, + T implementation) throws IllegalStateException { + return getSALService(RpcProviderRegistry.class).addRoutedRpcImplementation(type, implementation); + } + + @Override + public RpcRegistration addRpcImplementation(Class type, T implementation) + throws IllegalStateException { + return getSALService(RpcProviderRegistry.class).addRpcImplementation(type, implementation); + } + + @Deprecated + @Override + public void registerFunctionality(ProviderFunctionality functionality) { + // NOOP + } + + @Deprecated + @Override + public void unregisterFunctionality(ProviderFunctionality functionality) { + // NOOP + } + } +}