X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fconfig%2Fconfig-manager%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fconfig%2Fmanager%2Fimpl%2Fosgi%2Fmapping%2FModuleInfoBundleTracker.java;h=57740477a1f6c6ec643d94776e7e62ef6e961753;hb=refs%2Fchanges%2F73%2F46573%2F5;hp=a8fdfda7d7201f9cb00f50f590265e64825d2751;hpb=ca923718510fffbf66c2a0c6f41a3638d59495e9;p=controller.git diff --git a/opendaylight/config/config-manager/src/main/java/org/opendaylight/controller/config/manager/impl/osgi/mapping/ModuleInfoBundleTracker.java b/opendaylight/config/config-manager/src/main/java/org/opendaylight/controller/config/manager/impl/osgi/mapping/ModuleInfoBundleTracker.java index a8fdfda7d7..57740477a1 100644 --- a/opendaylight/config/config-manager/src/main/java/org/opendaylight/controller/config/manager/impl/osgi/mapping/ModuleInfoBundleTracker.java +++ b/opendaylight/config/config-manager/src/main/java/org/opendaylight/controller/config/manager/impl/osgi/mapping/ModuleInfoBundleTracker.java @@ -7,84 +7,112 @@ */ package org.opendaylight.controller.config.manager.impl.osgi.mapping; -import org.apache.commons.io.IOUtils; -import org.opendaylight.yangtools.concepts.Registration; -import org.opendaylight.yangtools.sal.binding.generator.impl.GeneratedClassLoadingStrategy; -import org.opendaylight.yangtools.sal.binding.generator.impl.ModuleInfoBackedContext; +import com.google.common.io.Resources; +import java.io.IOException; +import java.net.URL; +import java.nio.charset.StandardCharsets; +import java.util.Collection; +import java.util.Collections; +import java.util.LinkedList; +import java.util.List; +import org.opendaylight.yangtools.concepts.ObjectRegistration; import org.opendaylight.yangtools.yang.binding.YangModelBindingProvider; import org.opendaylight.yangtools.yang.binding.YangModuleInfo; import org.osgi.framework.Bundle; +import org.osgi.framework.BundleContext; import org.osgi.framework.BundleEvent; +import org.osgi.util.tracker.BundleTracker; import org.osgi.util.tracker.BundleTrackerCustomizer; import org.slf4j.Logger; import org.slf4j.LoggerFactory; -import java.io.InputStream; -import java.net.URL; -import java.util.Collection; -import java.util.LinkedList; -import java.util.List; - -import static java.lang.String.format; - /** - * Tracks bundles and attempts to retrieve YangModuleInfo. + * Tracks bundles and attempts to retrieve YangModuleInfo, which is then fed into ModuleInfoRegistry */ -public final class ModuleInfoBundleTracker implements BundleTrackerCustomizer>> { +public final class ModuleInfoBundleTracker implements AutoCloseable, + BundleTrackerCustomizer>> { - private static final Logger logger = LoggerFactory.getLogger(ModuleInfoBundleTracker.class); - public static final String GET_MODULE_INFO_METHOD = "getModuleInfo"; + private static final Logger LOG = LoggerFactory.getLogger(ModuleInfoBundleTracker.class); public static final String MODULE_INFO_PROVIDER_PATH_PREFIX = "META-INF/services/"; - private ModuleInfoBackedContext moduleInfoLoadingStrategy = ModuleInfoBackedContext.create(); - public GeneratedClassLoadingStrategy getModuleInfoLoadingStrategy() { - return moduleInfoLoadingStrategy; + private final RefreshingSCPModuleInfoRegistry moduleInfoRegistry; + private BundleTracker>> bundleTracker; + private boolean starting; + + public ModuleInfoBundleTracker(BundleContext context, RefreshingSCPModuleInfoRegistry moduleInfoRegistry) { + this.moduleInfoRegistry = moduleInfoRegistry; } - @Override - public Collection> addingBundle(Bundle bundle, BundleEvent event) { - URL resource = bundle.getEntry(MODULE_INFO_PROVIDER_PATH_PREFIX + YangModelBindingProvider.class.getName()); + public void open(BundleTracker>> bundleTracker) { + LOG.debug("ModuleInfoBundleTracker open starting with bundleTracker {}", bundleTracker); + + if(bundleTracker != null) { + this.bundleTracker = bundleTracker; + starting = true; + bundleTracker.open(); - if(resource==null) { - return null; + starting = false; + moduleInfoRegistry.updateService(); + } else { + starting = false; } - List> registrations = new LinkedList<>(); + LOG.debug("ModuleInfoBundleTracker open complete"); + } - try (InputStream inputStream = resource.openStream()) { - List lines = IOUtils.readLines(inputStream); - for (String moduleInfoName : lines) { + @Override + public void close() { + if(bundleTracker != null) { + bundleTracker.close(); + } + } + + @Override + public Collection> addingBundle(Bundle bundle, BundleEvent event) { + URL resource = bundle.getEntry(MODULE_INFO_PROVIDER_PATH_PREFIX + YangModelBindingProvider.class.getName()); + LOG.debug("Got addingBundle({}) with YangModelBindingProvider resource {}", bundle, resource); + if(resource == null) { + return Collections.emptyList(); + } + List> registrations = new LinkedList<>(); + + try { + for (String moduleInfoName : Resources.readLines(resource, StandardCharsets.UTF_8)) { + LOG.trace("Retrieve ModuleInfo({}, {})", moduleInfoName, bundle); YangModuleInfo moduleInfo = retrieveModuleInfo(moduleInfoName, bundle); - registrations.add(moduleInfoLoadingStrategy.registerModuleInfo(moduleInfo)); + registrations.add(moduleInfoRegistry.registerModuleInfo(moduleInfo)); } - - } catch (Exception e) { - logger.error("Error while reading {}", resource, e); - throw new RuntimeException(e); + if(!starting) { + moduleInfoRegistry.updateService(); + } + } catch (IOException e) { + LOG.error("Error while reading {} from bundle {}", resource, bundle, e); + } catch (RuntimeException e) { + LOG.error("Failed to process {} for bundle {}", resource, bundle, e); } + LOG.trace("Got following registrations {}", registrations); return registrations; } @Override - public void modifiedBundle(Bundle bundle, BundleEvent event, Collection> object) { - // NOOP + public void modifiedBundle(Bundle bundle, BundleEvent event, Collection> object) { } @Override - public void removedBundle(Bundle bundle, BundleEvent event, Collection> regs) { + public void removedBundle(Bundle bundle, BundleEvent event, Collection> regs) { if(regs == null) { return; } - for (Registration reg : regs) { + for (ObjectRegistration reg : regs) { try { reg.close(); } catch (Exception e) { - throw new RuntimeException("Unable to unregister YangModuleInfo " + reg.getInstance(), e); + LOG.error("Unable to unregister YangModuleInfo {}", reg.getInstance(), e); } } } @@ -93,7 +121,7 @@ public final class ModuleInfoBundleTracker implements BundleTrackerCustomizer clazz = loadClass(moduleInfoClass, bundle); - if (YangModelBindingProvider.class.isAssignableFrom(clazz) == false) { + if (!YangModelBindingProvider.class.isAssignableFrom(clazz)) { errorMessage = logMessage("Class {} does not implement {} in bundle {}", clazz, YangModelBindingProvider.class, bundle); throw new IllegalStateException(errorMessage); } @@ -105,17 +133,15 @@ public final class ModuleInfoBundleTracker implements BundleTrackerCustomizer