X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-inmemory-datastore%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fmd%2Fsal%2Fdom%2Fstore%2Fimpl%2FInMemoryDOMDataStoreFactory.java;h=6571c60425ad3f1ccdbb52782dda3c7bef9c3c93;hb=refs%2Fchanges%2F11%2F80211%2F6;hp=c853a132de6395fb1b562406e0edfcddeeed1166;hpb=24c8edfec01c5a61bf40a930aec018502cd37275;p=controller.git diff --git a/opendaylight/md-sal/sal-inmemory-datastore/src/main/java/org/opendaylight/controller/md/sal/dom/store/impl/InMemoryDOMDataStoreFactory.java b/opendaylight/md-sal/sal-inmemory-datastore/src/main/java/org/opendaylight/controller/md/sal/dom/store/impl/InMemoryDOMDataStoreFactory.java index c853a132de..6571c60425 100644 --- a/opendaylight/md-sal/sal-inmemory-datastore/src/main/java/org/opendaylight/controller/md/sal/dom/store/impl/InMemoryDOMDataStoreFactory.java +++ b/opendaylight/md-sal/sal-inmemory-datastore/src/main/java/org/opendaylight/controller/md/sal/dom/store/impl/InMemoryDOMDataStoreFactory.java @@ -5,65 +5,79 @@ * 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.md.sal.dom.store.impl; import java.util.concurrent.ExecutorService; -import java.util.concurrent.Executors; - -import javax.annotation.Nullable; - -import org.opendaylight.controller.sal.core.api.model.SchemaService; +import org.eclipse.jdt.annotation.Nullable; +import org.opendaylight.controller.md.sal.common.api.data.LogicalDatastoreType; +import org.opendaylight.mdsal.dom.api.DOMSchemaService; import org.opendaylight.yangtools.util.concurrent.SpecialExecutors; -import org.opendaylight.yangtools.util.PropertyUtils; -import com.google.common.util.concurrent.MoreExecutors; /** * A factory for creating InMemoryDOMDataStore instances. * * @author Thomas Pantelis + * + * @deprecated Use {@link org.opendaylight.mdsal.dom.store.inmemory.InMemoryDOMDataStoreFactory} instead. */ +@Deprecated public final class InMemoryDOMDataStoreFactory { - private static final String DCL_EXECUTOR_MAX_QUEUE_SIZE_PROP = - "mdsal.datastore-dcl-notification-queue.size"; - private static final int DEFAULT_DCL_EXECUTOR_MAX_QUEUE_SIZE = 1000; + private InMemoryDOMDataStoreFactory() { + } - private static final String DCL_EXECUTOR_MAX_POOL_SIZE_PROP = - "mdsal.datastore-dcl-notification-pool.size"; - private static final int DEFAULT_DCL_EXECUTOR_MAX_POOL_SIZE = 20; + public static InMemoryDOMDataStore create(final String name, final @Nullable DOMSchemaService schemaService) { + return create(name, schemaService, null); + } - private InMemoryDOMDataStoreFactory() { + /** + * Creates an InMemoryDOMDataStore instance. + * + * @param name the name of the data store + * @param schemaService the SchemaService to which to register the data store. + * @param properties configuration properties for the InMemoryDOMDataStore instance. If null, + * default property values are used. + * @return an InMemoryDOMDataStore instance + */ + public static InMemoryDOMDataStore create(final String name, final @Nullable DOMSchemaService schemaService, + final @Nullable InMemoryDOMDataStoreConfigProperties properties) { + return create(name, LogicalDatastoreType.OPERATIONAL, schemaService, false, properties); } /** * Creates an InMemoryDOMDataStore instance. * * @param name the name of the data store + * @param type Data store type * @param schemaService the SchemaService to which to register the data store. + * @param debugTransactions enable transaction debugging + * @param properties configuration properties for the InMemoryDOMDataStore instance. If null, + * default property values are used. * @return an InMemoryDOMDataStore instance */ - public static InMemoryDOMDataStore create(final String name, - @Nullable final SchemaService schemaService) { + public static InMemoryDOMDataStore create(final String name, final LogicalDatastoreType type, + final @Nullable DOMSchemaService schemaService, final boolean debugTransactions, + final @Nullable InMemoryDOMDataStoreConfigProperties properties) { + + InMemoryDOMDataStoreConfigProperties actualProperties = properties; + if (actualProperties == null) { + actualProperties = InMemoryDOMDataStoreConfigProperties.getDefault(); + } // For DataChangeListener notifications we use an executor that provides the fastest // task execution time to get higher throughput as DataChangeListeners typically provide // much of the business logic for a data model. If the executor queue size limit is reached, // subsequent submitted notifications will block the calling thread. - - int dclExecutorMaxQueueSize = PropertyUtils.getIntSystemProperty( - DCL_EXECUTOR_MAX_QUEUE_SIZE_PROP, DEFAULT_DCL_EXECUTOR_MAX_QUEUE_SIZE); - int dclExecutorMaxPoolSize = PropertyUtils.getIntSystemProperty( - DCL_EXECUTOR_MAX_POOL_SIZE_PROP, DEFAULT_DCL_EXECUTOR_MAX_POOL_SIZE); + int dclExecutorMaxQueueSize = actualProperties.getMaxDataChangeExecutorQueueSize(); + int dclExecutorMaxPoolSize = actualProperties.getMaxDataChangeExecutorPoolSize(); ExecutorService dataChangeListenerExecutor = SpecialExecutors.newBlockingBoundedFastThreadPool( - dclExecutorMaxPoolSize, dclExecutorMaxQueueSize, name + "-DCL" ); + dclExecutorMaxPoolSize, dclExecutorMaxQueueSize, name + "-DCL", InMemoryDOMDataStore.class); - InMemoryDOMDataStore dataStore = new InMemoryDOMDataStore(name, - MoreExecutors.listeningDecorator(Executors.newSingleThreadExecutor()), - dataChangeListenerExecutor); + final InMemoryDOMDataStore dataStore = new InMemoryDOMDataStore(name, type, dataChangeListenerExecutor, + actualProperties.getMaxDataChangeListenerQueueSize(), debugTransactions); - if(schemaService != null) { + if (schemaService != null) { schemaService.registerSchemaContextListener(dataStore); }