/* * Copyright (c) 2013 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.manager.testingservices.threadpool; import com.google.common.collect.Sets; import org.opendaylight.controller.config.api.DependencyResolver; import org.opendaylight.controller.config.api.DependencyResolverFactory; import org.opendaylight.controller.config.api.DynamicMBeanWithInstance; import org.opendaylight.controller.config.api.ModuleIdentifier; import org.opendaylight.controller.config.api.annotations.AbstractServiceInterface; import org.opendaylight.controller.config.manager.testingservices.seviceinterface.ModifiableThreadPoolServiceInterface; import org.opendaylight.controller.config.manager.testingservices.seviceinterface.TestingThreadPoolServiceInterface; import org.opendaylight.controller.config.spi.Module; import org.opendaylight.controller.config.spi.ModuleFactory; import org.osgi.framework.BundleContext; import java.util.Collections; import java.util.HashSet; import java.util.Set; public class TestingFixedThreadPoolModuleFactory implements ModuleFactory { public static final String NAME = "fixed"; private static Set> ifc = Collections.unmodifiableSet(Sets.newHashSet( (Class) ModifiableThreadPoolServiceInterface.class, TestingThreadPoolServiceInterface.class)); @Override public String getImplementationName() { return NAME; } @Override public TestingFixedThreadPoolModule createModule(String instanceName, DependencyResolver dependencyResolver, BundleContext bundleContext) { return new TestingFixedThreadPoolModule(new ModuleIdentifier(NAME, instanceName), null, null); } @Override public Module createModule(String instanceName, DependencyResolver dependencyResolver, DynamicMBeanWithInstance old, BundleContext bundleContext) throws Exception { int threadCount = (Integer) old.getAttribute("ThreadCount"); // is the instance compatible? TestingFixedThreadPool oldInstance; try { // reconfigure existing instance oldInstance = (TestingFixedThreadPool) old.getInstance(); } catch (ClassCastException e) { // old instance will be closed, new needs to be created oldInstance = null; } TestingFixedThreadPoolModule result = new TestingFixedThreadPoolModule( new ModuleIdentifier(NAME, instanceName), old.getInstance(), oldInstance); result.setThreadCount(threadCount); return result; } @Override public boolean isModuleImplementingServiceInterface( Class serviceInterface) { return ifc.contains(serviceInterface); } @Override public Set getDefaultModules(DependencyResolverFactory dependencyResolverFactory, BundleContext bundleContext) { return new HashSet(); } @Override public Set> getImplementedServiceIntefaces() { return ifc; } }