/** * Generated file * Generated from: yang module name: opendaylight-sal-binding-broker-impl yang module local name: runtime-generated-mapping * Generated by: org.opendaylight.controller.config.yangjmxgenerator.plugin.JMXGenerator * Generated at: Wed Nov 20 18:20:19 CET 2013 * * Do not modify this file unless it is present under src/main directory */ package org.opendaylight.controller.config.yang.md.sal.binding.impl; import java.util.Map.Entry; import java.util.Set; import javassist.ClassPool; import org.opendaylight.controller.sal.binding.codegen.impl.SingletonHolder; import org.opendaylight.yangtools.concepts.Delegator; import org.opendaylight.yangtools.sal.binding.generator.impl.RuntimeGeneratedMappingServiceImpl; import org.opendaylight.yangtools.yang.binding.DataContainer; import org.opendaylight.yangtools.yang.binding.DataObject; import org.opendaylight.yangtools.yang.binding.RpcService; import org.opendaylight.yangtools.yang.common.QName; import org.opendaylight.yangtools.yang.data.api.CompositeNode; import org.opendaylight.yangtools.yang.data.api.InstanceIdentifier; import org.opendaylight.yangtools.yang.data.impl.codec.BindingIndependentMappingService; import org.opendaylight.yangtools.yang.data.impl.codec.CodecRegistry; import org.opendaylight.yangtools.yang.data.impl.codec.DeserializationException; import org.osgi.framework.BundleContext; import org.osgi.framework.ServiceReference; import com.google.common.base.Preconditions; /** * */ public final class RuntimeMappingModule extends org.opendaylight.controller.config.yang.md.sal.binding.impl.AbstractRuntimeMappingModule { private BundleContext bundleContext; public RuntimeMappingModule(org.opendaylight.controller.config.api.ModuleIdentifier identifier, org.opendaylight.controller.config.api.DependencyResolver dependencyResolver) { super(identifier, dependencyResolver); } public RuntimeMappingModule(org.opendaylight.controller.config.api.ModuleIdentifier identifier, org.opendaylight.controller.config.api.DependencyResolver dependencyResolver, RuntimeMappingModule oldModule, java.lang.AutoCloseable oldInstance) { super(identifier, dependencyResolver, oldModule, oldInstance); } @Override public void validate() { super.validate(); Preconditions.checkNotNull(bundleContext); // Add custom validation for module attributes here. } @Override public boolean canReuseInstance(AbstractRuntimeMappingModule oldModule) { return true; } @Override public java.lang.AutoCloseable createInstance() { RuntimeGeneratedMappingServiceProxy potential = tryToReuseGlobalInstance(); if(potential != null) { return potential; } RuntimeGeneratedMappingServiceImpl service = new RuntimeGeneratedMappingServiceImpl(); service.setPool(SingletonHolder.CLASS_POOL); service.init(); return service; } private RuntimeGeneratedMappingServiceProxy tryToReuseGlobalInstance() { ServiceReference serviceRef = getBundleContext().getServiceReference(BindingIndependentMappingService.class); if(serviceRef == null) { return null; } return new RuntimeGeneratedMappingServiceProxy(getBundleContext(),serviceRef); } private BundleContext getBundleContext() { return bundleContext; } public void setBundleContext(BundleContext bundleContext) { this.bundleContext = bundleContext; } private static final class RuntimeGeneratedMappingServiceProxy implements // BindingIndependentMappingService, // Delegator, // AutoCloseable { private BindingIndependentMappingService delegate; private ServiceReference reference; private BundleContext bundleContext; public RuntimeGeneratedMappingServiceProxy(BundleContext bundleContext, ServiceReference serviceRef) { this.bundleContext = bundleContext; this.reference = serviceRef; this.delegate = bundleContext.getService(serviceRef); } public CodecRegistry getCodecRegistry() { return delegate.getCodecRegistry(); } public CompositeNode toDataDom(DataObject data) { return delegate.toDataDom(data); } public Entry toDataDom( Entry, DataObject> entry) { return delegate.toDataDom(entry); } public InstanceIdentifier toDataDom( org.opendaylight.yangtools.yang.binding.InstanceIdentifier path) { return delegate.toDataDom(path); } public DataObject dataObjectFromDataDom( org.opendaylight.yangtools.yang.binding.InstanceIdentifier path, CompositeNode result) throws DeserializationException { return delegate.dataObjectFromDataDom(path, result); } public org.opendaylight.yangtools.yang.binding.InstanceIdentifier fromDataDom(InstanceIdentifier entry) throws DeserializationException { return delegate.fromDataDom(entry); } public Set getRpcQNamesFor(Class service) { return delegate.getRpcQNamesFor(service); } public DataContainer dataObjectFromDataDom(Class inputClass, CompositeNode domInput) { return delegate.dataObjectFromDataDom(inputClass, domInput); } @Override public void close() throws Exception { if(delegate != null) { delegate = null; bundleContext.ungetService(reference); bundleContext= null; reference = null; } } @Override public BindingIndependentMappingService getDelegate() { return delegate; } } }