X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-dom-broker%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fconfig%2Fyang%2Fmd%2Fsal%2Fdom%2Fimpl%2FSchemaServiceImplSingletonModule.java;h=93284c98e1032f0030fff3c21d2c6c3dfc2ba1f2;hp=6b597dea9e5c1bc691acd78e2737db391c842f07;hb=c52298d11716c990ad681a69b6a96e725fd1c63e;hpb=3979e330c9f95a898c54a9234f3a07e3b2ae4349 diff --git a/opendaylight/md-sal/sal-dom-broker/src/main/java/org/opendaylight/controller/config/yang/md/sal/dom/impl/SchemaServiceImplSingletonModule.java b/opendaylight/md-sal/sal-dom-broker/src/main/java/org/opendaylight/controller/config/yang/md/sal/dom/impl/SchemaServiceImplSingletonModule.java index 6b597dea9e..93284c98e1 100644 --- a/opendaylight/md-sal/sal-dom-broker/src/main/java/org/opendaylight/controller/config/yang/md/sal/dom/impl/SchemaServiceImplSingletonModule.java +++ b/opendaylight/md-sal/sal-dom-broker/src/main/java/org/opendaylight/controller/config/yang/md/sal/dom/impl/SchemaServiceImplSingletonModule.java @@ -1,34 +1,45 @@ -/** -* Generated file - -* Generated from: yang module name: opendaylight-sal-dom-broker-impl yang module local name: schema-service-singleton -* Generated by: org.opendaylight.controller.config.yangjmxgenerator.plugin.JMXGenerator -* Generated at: Wed Nov 20 17:01:31 CET 2013 -* -* Do not modify this file unless it is present under src/main directory -*/ +/* + * Copyright (c) 2014 Cisco Systems, Inc. and others. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v1.0 which accompanies this distribution, + * and is available at http://www.eclipse.org/legal/epl-v10.html + */ package org.opendaylight.controller.config.yang.md.sal.dom.impl; -import org.opendaylight.controller.sal.dom.broker.SchemaServiceImpl; -import org.opendaylight.yangtools.yang.parser.impl.YangParserImpl; +import org.opendaylight.controller.sal.core.api.model.SchemaService; +import org.opendaylight.controller.sal.dom.broker.GlobalBundleScanningSchemaServiceImpl; +import org.opendaylight.yangtools.concepts.Delegator; +import org.opendaylight.yangtools.concepts.ListenerRegistration; +import org.opendaylight.yangtools.yang.model.api.Module; +import org.opendaylight.yangtools.yang.model.api.SchemaContext; +import org.opendaylight.yangtools.yang.model.api.SchemaServiceListener; import org.osgi.framework.BundleContext; +import org.osgi.framework.ServiceReference; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; /** * */ -public final class SchemaServiceImplSingletonModule extends org.opendaylight.controller.config.yang.md.sal.dom.impl.AbstractSchemaServiceImplSingletonModule -{ +public final class SchemaServiceImplSingletonModule extends + org.opendaylight.controller.config.yang.md.sal.dom.impl.AbstractSchemaServiceImplSingletonModule { + + private static final Logger LOG = LoggerFactory.getLogger(SchemaServiceImplSingletonModule.class); BundleContext bundleContext; - - public SchemaServiceImplSingletonModule(org.opendaylight.controller.config.api.ModuleIdentifier identifier, org.opendaylight.controller.config.api.DependencyResolver dependencyResolver) { + + public SchemaServiceImplSingletonModule(org.opendaylight.controller.config.api.ModuleIdentifier identifier, + org.opendaylight.controller.config.api.DependencyResolver dependencyResolver) { super(identifier, dependencyResolver); } - public SchemaServiceImplSingletonModule(org.opendaylight.controller.config.api.ModuleIdentifier identifier, org.opendaylight.controller.config.api.DependencyResolver dependencyResolver, SchemaServiceImplSingletonModule oldModule, java.lang.AutoCloseable oldInstance) { + public SchemaServiceImplSingletonModule(org.opendaylight.controller.config.api.ModuleIdentifier identifier, + org.opendaylight.controller.config.api.DependencyResolver dependencyResolver, + SchemaServiceImplSingletonModule oldModule, java.lang.AutoCloseable oldInstance) { super(identifier, dependencyResolver, oldModule, oldInstance); } - + @Override public boolean canReuseInstance(AbstractSchemaServiceImplSingletonModule oldModule) { return true; @@ -43,16 +54,82 @@ public final class SchemaServiceImplSingletonModule extends org.opendaylight.con } @Override - public void validate(){ + public void validate() { super.validate(); } @Override public java.lang.AutoCloseable createInstance() { - SchemaServiceImpl newInstance = new SchemaServiceImpl(); + ServiceReference ref = getBundleContext().getServiceReference(SchemaService.class); + if (ref != null) { + return new GlobalSchemaServiceProxy(getBundleContext(), ref); + } + + GlobalBundleScanningSchemaServiceImpl newInstance = new GlobalBundleScanningSchemaServiceImpl(); newInstance.setContext(getBundleContext()); - newInstance.setParser(new YangParserImpl()); newInstance.start(); return newInstance; } + + public class GlobalSchemaServiceProxy implements AutoCloseable, SchemaService, Delegator { + + private BundleContext bundleContext; + private ServiceReference reference; + private SchemaService delegate; + + public GlobalSchemaServiceProxy(BundleContext bundleContext, ServiceReference ref) { + this.bundleContext = bundleContext; + this.reference = ref; + this.delegate = bundleContext.getService(reference); + } + + @Override + public void close() throws Exception { + if (delegate != null) { + delegate = null; + + try { + bundleContext.ungetService(reference); + } catch (IllegalStateException e) { + // Indicates the service was already unregistered which can happen normally + // on shutdown. + LOG.debug( "Error unregistering service", e ); + } + + reference = null; + bundleContext = null; + } + } + + @Override + public void addModule(Module arg0) { + delegate.addModule(arg0); + } + + @Override + public SchemaContext getGlobalContext() { + return delegate.getGlobalContext(); + } + + @Override + public SchemaContext getSessionContext() { + return delegate.getSessionContext(); + } + + @Override + public ListenerRegistration registerSchemaServiceListener(SchemaServiceListener arg0) { + return delegate.registerSchemaServiceListener(arg0); + } + + @Override + public void removeModule(Module arg0) { + delegate.removeModule(arg0); + } + + @Override + public SchemaService getDelegate() { + return delegate; + } + + } }