X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-distributed-datastore%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fconfig%2Fyang%2Fconfig%2Fdistributed_datastore_provider%2FDistributedOperationalDataStoreProviderModule.java;h=d06d2ec3926a962cf907032a9d7e5eacec2eb7ce;hp=85dddde44378be768e1758255a951a6353a799f2;hb=995da01ef2d635230c37afc7cf4fdd724bf68856;hpb=b3cc695157dc7e8f3f7698ebc34403be57c65636 diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/config/yang/config/distributed_datastore_provider/DistributedOperationalDataStoreProviderModule.java b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/config/yang/config/distributed_datastore_provider/DistributedOperationalDataStoreProviderModule.java index 85dddde443..d06d2ec392 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/config/yang/config/distributed_datastore_provider/DistributedOperationalDataStoreProviderModule.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/config/yang/config/distributed_datastore_provider/DistributedOperationalDataStoreProviderModule.java @@ -1,24 +1,33 @@ +/* + * Copyright (c) 2014, 2015 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.yang.config.distributed_datastore_provider; -import org.opendaylight.controller.cluster.datastore.DatastoreContext; -import org.opendaylight.controller.cluster.datastore.DistributedDataStoreFactory; +import org.opendaylight.controller.cluster.datastore.DistributedDataStoreInterface; +import org.opendaylight.controller.cluster.datastore.compat.LegacyDOMStoreAdapter; +import org.opendaylight.controller.config.api.DependencyResolver; +import org.opendaylight.controller.config.api.ModuleIdentifier; +import org.opendaylight.controller.config.api.osgi.WaitingServiceTracker; import org.osgi.framework.BundleContext; -public class DistributedOperationalDataStoreProviderModule extends - org.opendaylight.controller.config.yang.config.distributed_datastore_provider.AbstractDistributedOperationalDataStoreProviderModule { +@Deprecated +public class DistributedOperationalDataStoreProviderModule + extends AbstractDistributedOperationalDataStoreProviderModule { private BundleContext bundleContext; - public DistributedOperationalDataStoreProviderModule( - org.opendaylight.controller.config.api.ModuleIdentifier identifier, - org.opendaylight.controller.config.api.DependencyResolver dependencyResolver) { + public DistributedOperationalDataStoreProviderModule(final ModuleIdentifier identifier, + final DependencyResolver dependencyResolver) { super(identifier, dependencyResolver); } - public DistributedOperationalDataStoreProviderModule( - org.opendaylight.controller.config.api.ModuleIdentifier identifier, - org.opendaylight.controller.config.api.DependencyResolver dependencyResolver, - org.opendaylight.controller.config.yang.config.distributed_datastore_provider.DistributedOperationalDataStoreProviderModule oldModule, - java.lang.AutoCloseable oldInstance) { + public DistributedOperationalDataStoreProviderModule(final ModuleIdentifier identifier, + final DependencyResolver dependencyResolver,final DistributedOperationalDataStoreProviderModule oldModule, + final AutoCloseable oldInstance) { super(identifier, dependencyResolver, oldModule, oldInstance); } @@ -28,55 +37,26 @@ public class DistributedOperationalDataStoreProviderModule extends } @Override - public boolean canReuseInstance(AbstractDistributedOperationalDataStoreProviderModule oldModule) { + public boolean canReuseInstance(final AbstractDistributedOperationalDataStoreProviderModule oldModule) { return true; } @Override public java.lang.AutoCloseable createInstance() { - - OperationalProperties props = getOperationalProperties(); - if(props == null) { - props = new OperationalProperties(); - } - - DatastoreContext datastoreContext = DatastoreContext.newBuilder() - .dataStoreType("operational") - .maxShardDataChangeExecutorPoolSize(props.getMaxShardDataChangeExecutorPoolSize().getValue().intValue()) - .maxShardDataChangeExecutorQueueSize(props.getMaxShardDataChangeExecutorQueueSize().getValue().intValue()) - .maxShardDataChangeListenerQueueSize(props.getMaxShardDataChangeListenerQueueSize().getValue().intValue()) - .maxShardDataStoreExecutorQueueSize(props.getMaxShardDataStoreExecutorQueueSize().getValue().intValue()) - .shardTransactionIdleTimeoutInMinutes(props.getShardTransactionIdleTimeoutInMinutes().getValue()) - .operationTimeoutInSeconds(props.getOperationTimeoutInSeconds().getValue()) - .shardJournalRecoveryLogBatchSize(props.getShardJournalRecoveryLogBatchSize(). - getValue().intValue()) - .shardSnapshotBatchCount(props.getShardSnapshotBatchCount().getValue().intValue()) - .shardSnapshotDataThresholdPercentage(props.getShardSnapshotDataThresholdPercentage().getValue().intValue()) - .shardHeartbeatIntervalInMillis(props.getShardHeartbeatIntervalInMillis().getValue()) - .shardInitializationTimeoutInSeconds(props.getShardInitializationTimeoutInSeconds().getValue()) - .shardLeaderElectionTimeoutInSeconds(props.getShardLeaderElectionTimeoutInSeconds().getValue()) - .shardTransactionCommitTimeoutInSeconds( - props.getShardTransactionCommitTimeoutInSeconds().getValue().intValue()) - .shardTransactionCommitQueueCapacity( - props.getShardTransactionCommitQueueCapacity().getValue().intValue()) - .persistent(props.getPersistent().booleanValue()) - .shardIsolatedLeaderCheckIntervalInMillis( - props.getShardIsolatedLeaderCheckIntervalInMillis().getValue()) - .shardElectionTimeoutFactor(props.getShardElectionTimeoutFactor().getValue()) - .transactionCreationInitialRateLimit(props.getTransactionCreationInitialRateLimit().getValue()) - .shardBatchedModificationCount(props.getShardBatchedModificationCount().getValue().intValue()) - .shardCommitQueueExpiryTimeoutInSeconds( - props.getShardCommitQueueExpiryTimeoutInSeconds().getValue().intValue()) - .transactionDebugContextEnabled(props.getTransactionDebugContextEnabled()) - .customRaftPolicyImplementation(props.getCustomRaftPolicyImplementation()) - .shardSnapshotChunkSize(props.getShardSnapshotChunkSize().getValue().intValue()) - .build(); - - return DistributedDataStoreFactory.createInstance(getOperationalSchemaServiceDependency(), - datastoreContext, bundleContext); + // The DistributedOperDataStore is provided via blueprint so wait for and return it here for + // backwards compatibility + WaitingServiceTracker tracker = WaitingServiceTracker.create( + DistributedDataStoreInterface.class, bundleContext, "(type=distributed-operational)"); + DistributedDataStoreInterface delegate = tracker.waitForService(WaitingServiceTracker.FIVE_MINUTES); + return new LegacyDOMStoreAdapter(delegate) { + @Override + public void close() { + tracker.close(); + } + }; } - public void setBundleContext(BundleContext bundleContext) { + public void setBundleContext(final BundleContext bundleContext) { this.bundleContext = bundleContext; }