/* * Copyright (c) 2014 Brocade Communications 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.md.sal.dom.store.impl; import java.util.concurrent.ExecutorService; import javax.annotation.Nullable; import org.opendaylight.controller.md.sal.common.api.data.LogicalDatastoreType; import org.opendaylight.controller.sal.core.api.model.SchemaService; import org.opendaylight.mdsal.dom.api.DOMSchemaService; import org.opendaylight.yangtools.util.concurrent.SpecialExecutors; /** * A factory for creating InMemoryDOMDataStore instances. * * @author Thomas Pantelis */ public final class InMemoryDOMDataStoreFactory { private InMemoryDOMDataStoreFactory() { } /** * @deprecated Use {@link #create(String, DOMSchemaService)} instead. */ @Deprecated public static InMemoryDOMDataStore create(final String name, @Nullable final SchemaService schemaService) { return create(name, (DOMSchemaService)schemaService); } public static InMemoryDOMDataStore create(final String name, @Nullable final DOMSchemaService schemaService) { return create(name, schemaService, null); } /** * 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 * * @deprecated Use {@link #create(String, DOMSchemaService, InMemoryDOMDataStoreConfigProperties)} instead. */ @Deprecated public static InMemoryDOMDataStore create(final String name, @Nullable final SchemaService schemaService, @Nullable final InMemoryDOMDataStoreConfigProperties properties) { return create(name, (DOMSchemaService) schemaService, properties); } /** * 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, @Nullable final DOMSchemaService schemaService, @Nullable final InMemoryDOMDataStoreConfigProperties properties) { return create(name, LogicalDatastoreType.OPERATIONAL, schemaService, false, properties); } /** * Creates an InMemoryDOMDataStore instance. * * @param name the name of the data store * @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 * * @deprecated Use {@link #create(String, LogicalDatastoreType, SchemaService, boolean, InMemoryDOMDataStoreConfigProperties)} * instead. */ @Deprecated public static InMemoryDOMDataStore create(final String name, @Nullable final SchemaService schemaService, final boolean debugTransactions, @Nullable final InMemoryDOMDataStoreConfigProperties properties) { return create(name, LogicalDatastoreType.OPERATIONAL, schemaService, debugTransactions, 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 * * @deprecated Use {@link #create(String, LogicalDatastoreType, DOMSchemaService, boolean, * InMemoryDOMDataStoreConfigProperties)} instead. */ @Deprecated public static InMemoryDOMDataStore create(final String name, final LogicalDatastoreType type, @Nullable final SchemaService schemaService, final boolean debugTransactions, @Nullable final InMemoryDOMDataStoreConfigProperties properties) { return create(name, type, (DOMSchemaService) schemaService, debugTransactions, 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, final LogicalDatastoreType type, @Nullable final DOMSchemaService schemaService, final boolean debugTransactions, @Nullable final 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 = actualProperties.getMaxDataChangeExecutorQueueSize(); int dclExecutorMaxPoolSize = actualProperties.getMaxDataChangeExecutorPoolSize(); ExecutorService dataChangeListenerExecutor = SpecialExecutors.newBlockingBoundedFastThreadPool( dclExecutorMaxPoolSize, dclExecutorMaxQueueSize, name + "-DCL", InMemoryDOMDataStore.class); final InMemoryDOMDataStore dataStore = new InMemoryDOMDataStore(name, type, dataChangeListenerExecutor, actualProperties.getMaxDataChangeListenerQueueSize(), debugTransactions); if (schemaService != null) { schemaService.registerSchemaContextListener(dataStore); } return dataStore; } }