X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fconfig%2Fconfig-manager%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fconfig%2Fmanager%2Fimpl%2Fosgi%2Fmapping%2FModuleInfoBundleTracker.java;h=c6597071f734851f2038f0130f828c599fbb8624;hp=7680f72612cd40468f3758d8030b55b6a6908afc;hb=345f3514679a15f646a55645d99b1f67751c7ab5;hpb=9070e358923aca6229137d46f9cae7ff458204dd 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 7680f72612..c6597071f7 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,76 +7,108 @@ */ package org.opendaylight.controller.config.manager.impl.osgi.mapping; -import static java.lang.String.format; - -import java.io.InputStream; +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.apache.commons.io.IOUtils; import org.opendaylight.yangtools.concepts.ObjectRegistration; -import org.opendaylight.yangtools.sal.binding.generator.impl.GeneratedClassLoadingStrategy; -import org.opendaylight.yangtools.sal.binding.generator.impl.ModuleInfoBackedContext; import org.opendaylight.yangtools.yang.binding.YangModelBindingProvider; import org.opendaylight.yangtools.yang.binding.YangModuleInfo; import org.osgi.framework.Bundle; 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; /** - * 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 static final String YANG_MODULE_INFO_SERVICE_PATH = MODULE_INFO_PROVIDER_PATH_PREFIX + + YangModelBindingProvider.class.getName(); + + private final RefreshingSCPModuleInfoRegistry moduleInfoRegistry; - private final ModuleInfoBackedContext moduleInfoLoadingStrategy = ModuleInfoBackedContext.create(); + private BundleTracker>> bundleTracker; + private boolean starting; - public GeneratedClassLoadingStrategy getModuleInfoLoadingStrategy() { - return moduleInfoLoadingStrategy; + public ModuleInfoBundleTracker(final 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(final 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; } + LOG.debug("ModuleInfoBundleTracker open complete"); + } + + @Override + public void close() { + if (bundleTracker != null) { + bundleTracker.close(); + bundleTracker = null; + } + } + + @Override + public Collection> addingBundle(final Bundle bundle, final BundleEvent event) { + URL resource = bundle.getEntry(YANG_MODULE_INFO_SERVICE_PATH); + LOG.debug("Got addingBundle({}) with YangModelBindingProvider resource {}", bundle, resource); + if (resource == null) { + return Collections.emptyList(); + } List> registrations = new LinkedList<>(); - try (InputStream inputStream = resource.openStream()) { - List lines = IOUtils.readLines(inputStream); - for (String moduleInfoName : lines) { + 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(final Bundle bundle, final BundleEvent event, + final Collection> object) { } @Override - public void removedBundle(Bundle bundle, BundleEvent event, Collection> regs) { - if(regs == null) { + public void removedBundle(final Bundle bundle, final BundleEvent event, + final Collection> regs) { + if (regs == null) { return; } @@ -84,20 +116,21 @@ public final class ModuleInfoBundleTracker implements BundleTrackerCustomizer clazz = loadClass(moduleInfoClass, bundle); - if (YangModelBindingProvider.class.isAssignableFrom(clazz) == false) { - errorMessage = logMessage("Class {} does not implement {} in bundle {}", clazz, YangModelBindingProvider.class, bundle); + if (!YangModelBindingProvider.class.isAssignableFrom(clazz)) { + errorMessage = logMessage("Class {} does not implement {} in bundle {}", clazz, + YangModelBindingProvider.class, bundle); throw new IllegalStateException(errorMessage); } - YangModelBindingProvider instance; + final YangModelBindingProvider instance; try { Object instanceObj = clazz.newInstance(); instance = YangModelBindingProvider.class.cast(instanceObj); @@ -105,32 +138,31 @@ public final class ModuleInfoBundleTracker implements BundleTrackerCustomizer loadClass(String moduleInfoClass, Bundle bundle) { + private static Class loadClass(final String moduleInfoClass, final Bundle bundle) { try { return bundle.loadClass(moduleInfoClass); } catch (ClassNotFoundException e) { - String errorMessage = logMessage("Could not find class {} in bunde {}, reason {}", moduleInfoClass, bundle, e); + String errorMessage = logMessage("Could not find class {} in bundle {}, reason {}", moduleInfoClass, + bundle, e); throw new IllegalStateException(errorMessage); } } - public static String logMessage(String slfMessage, Object... params) { - logger.info(slfMessage, params); + public static String logMessage(final String slfMessage, final Object... params) { + LOG.info(slfMessage, params); String formatMessage = slfMessage.replaceAll("\\{\\}", "%s"); - return format(formatMessage, params); + return String.format(formatMessage, params); } }