Refator names & imports (frsync) 08/39308/15
authorAndrej Leitner <anleitne@cisco.com>
Fri, 27 May 2016 12:21:31 +0000 (14:21 +0200)
committerAndrej Leitner <anleitne@cisco.com>
Tue, 7 Jun 2016 09:34:21 +0000 (11:34 +0200)
  - fix typos, guard & executor factory rename
  - junit test for guard decorator
  - add missing parameter descriptions
  - remove unused local variables and suppress warnings
  - remove commented usage of incremental strategy
  - edit access level modifiers
  - organize and remove unused imports

Change-Id: I5e1767df2aa1dce77001161b0148d0717aefef6c
Signed-off-by: Andrej Leitner <anleitne@cisco.com>
32 files changed:
applications/forwardingrules-sync/src/main/java/org/opendaylight/openflowplugin/applications/frsync/NodeListener.java
applications/forwardingrules-sync/src/main/java/org/opendaylight/openflowplugin/applications/frsync/SyncReactor.java
applications/forwardingrules-sync/src/main/java/org/opendaylight/openflowplugin/applications/frsync/dao/FlowCapableNodeCachedDao.java
applications/forwardingrules-sync/src/main/java/org/opendaylight/openflowplugin/applications/frsync/dao/FlowCapableNodeDao.java
applications/forwardingrules-sync/src/main/java/org/opendaylight/openflowplugin/applications/frsync/dao/FlowCapableNodeOdlDao.java
applications/forwardingrules-sync/src/main/java/org/opendaylight/openflowplugin/applications/frsync/dao/FlowCapableNodeSnapshotDao.java
applications/forwardingrules-sync/src/main/java/org/opendaylight/openflowplugin/applications/frsync/impl/AbstractFrmSyncListener.java
applications/forwardingrules-sync/src/main/java/org/opendaylight/openflowplugin/applications/frsync/impl/FlowForwarder.java
applications/forwardingrules-sync/src/main/java/org/opendaylight/openflowplugin/applications/frsync/impl/ForwardingRulesSyncProvider.java
applications/forwardingrules-sync/src/main/java/org/opendaylight/openflowplugin/applications/frsync/impl/FrmExecutors.java
applications/forwardingrules-sync/src/main/java/org/opendaylight/openflowplugin/applications/frsync/impl/MeterForwarder.java
applications/forwardingrules-sync/src/main/java/org/opendaylight/openflowplugin/applications/frsync/impl/SimplifiedConfigListener.java
applications/forwardingrules-sync/src/main/java/org/opendaylight/openflowplugin/applications/frsync/impl/SimplifiedOperationalListener.java
applications/forwardingrules-sync/src/main/java/org/opendaylight/openflowplugin/applications/frsync/impl/SyncReactorFutureDecorator.java
applications/forwardingrules-sync/src/main/java/org/opendaylight/openflowplugin/applications/frsync/impl/SyncReactorFutureWithCompressionDecorator.java
applications/forwardingrules-sync/src/main/java/org/opendaylight/openflowplugin/applications/frsync/impl/SyncReactorGuardDecorator.java
applications/forwardingrules-sync/src/main/java/org/opendaylight/openflowplugin/applications/frsync/impl/TableForwarder.java
applications/forwardingrules-sync/src/main/java/org/opendaylight/openflowplugin/applications/frsync/impl/strategy/SyncPlanPushStrategyFlatBatchImpl.java
applications/forwardingrules-sync/src/main/java/org/opendaylight/openflowplugin/applications/frsync/util/FlowCapableNodeLookups.java
applications/forwardingrules-sync/src/main/java/org/opendaylight/openflowplugin/applications/frsync/util/SemaphoreKeeperGuavaImpl.java
applications/forwardingrules-sync/src/test/java/org/opendaylight/openflowplugin/applications/frsync/impl/FlowForwarderTest.java
applications/forwardingrules-sync/src/test/java/org/opendaylight/openflowplugin/applications/frsync/impl/ForwardingRulesSyncProviderTest.java
applications/forwardingrules-sync/src/test/java/org/opendaylight/openflowplugin/applications/frsync/impl/GroupForwarderTest.java
applications/forwardingrules-sync/src/test/java/org/opendaylight/openflowplugin/applications/frsync/impl/MeterForwarderTest.java
applications/forwardingrules-sync/src/test/java/org/opendaylight/openflowplugin/applications/frsync/impl/SimplifiedConfigListenerTest.java
applications/forwardingrules-sync/src/test/java/org/opendaylight/openflowplugin/applications/frsync/impl/SimplifiedOperationalListenerTest.java
applications/forwardingrules-sync/src/test/java/org/opendaylight/openflowplugin/applications/frsync/impl/SyncReactorGuardDecoratorTest.java [new file with mode: 0644]
applications/forwardingrules-sync/src/test/java/org/opendaylight/openflowplugin/applications/frsync/impl/TableForwarderTest.java
applications/forwardingrules-sync/src/test/java/org/opendaylight/openflowplugin/applications/frsync/impl/strategy/DiffInputFactory.java
applications/forwardingrules-sync/src/test/java/org/opendaylight/openflowplugin/applications/frsync/impl/strategy/SyncPlanPushStrategyFlatBatchImplTest.java
applications/forwardingrules-sync/src/test/java/org/opendaylight/openflowplugin/applications/frsync/util/ReconcileUtilTest.java
applications/forwardingrules-sync/src/test/java/org/opendaylight/openflowplugin/applications/frsync/util/SemaphoreKeeperTest.java

index df1bab02168f862c57ff3c57da67dad9545d157a..f3bc24928f31b93f4188d706568c66ae0c9883fd 100644 (file)
@@ -9,7 +9,6 @@
 package org.opendaylight.openflowplugin.applications.frsync;
 
 import java.util.EventListener;
-
 import org.opendaylight.controller.md.sal.binding.api.DataTreeChangeListener;
 import org.opendaylight.yangtools.yang.binding.DataObject;
 
index 12cffd1362eb6bdaab84810cba078d04521cf493..141e3b465ae915b87fa06c0e1490d9c7ae7f68bd 100644 (file)
@@ -8,11 +8,10 @@
 
 package org.opendaylight.openflowplugin.applications.frsync;
 
+import com.google.common.util.concurrent.ListenableFuture;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.inventory.rev130819.FlowCapableNode;
 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
 
-import com.google.common.util.concurrent.ListenableFuture;
-
 /**
  * Device synchronization API.
  */
index 0aebb06b0c7bc5c8370f33dbf2bc7cb85379e4a0..149c25959605e1eb272fb2da055708034b62c5b7 100644 (file)
@@ -8,13 +8,11 @@
 \r
 package org.opendaylight.openflowplugin.applications.frsync.dao;\r
 \r
+import com.google.common.base.Optional;\r
 import javax.annotation.Nonnull;\r
-\r
 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.inventory.rev130819.FlowCapableNode;\r
 import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.NodeId;\r
 \r
-import com.google.common.base.Optional;\r
-\r
 /**\r
  * Implementation of data access object for {@link FlowCapableNode}.\r
  * Contains pair of snapshot and odl DAOs.\r
index 0bc6b991ce9ff3e3dbd058c15e6d857e466c95d8..469fc13cde12b082f50ae9054ba067271872dbcb 100644 (file)
@@ -8,13 +8,11 @@
 \r
 package org.opendaylight.openflowplugin.applications.frsync.dao;\r
 \r
+import com.google.common.base.Optional;\r
 import javax.annotation.Nonnull;\r
-\r
 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.inventory.rev130819.FlowCapableNode;\r
 import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.NodeId;\r
 \r
-import com.google.common.base.Optional;\r
-\r
 /**\r
  * Data access object for {@link FlowCapableNode}.\r
  */\r
index 724c43ad67d0f73b7602f76e08bc2793d614aa57..a97fcc170836e9898245710a2a872aa78c675395 100644 (file)
@@ -9,10 +9,8 @@
 package org.opendaylight.openflowplugin.applications.frsync.dao;\r
 \r
 import com.google.common.base.Optional;\r
-\r
 import java.util.concurrent.TimeUnit;\r
 import java.util.concurrent.TimeoutException;\r
-\r
 import javax.annotation.Nonnull;\r
 import org.opendaylight.controller.md.sal.binding.api.DataBroker;\r
 import org.opendaylight.controller.md.sal.binding.api.ReadOnlyTransaction;\r
index 2c40af77b91beb73f339f8a41f59c10e5eb1d082..5cbf726cc53af6400e2c82a8682f764649761991 100644 (file)
@@ -8,15 +8,12 @@
 \r
 package org.opendaylight.openflowplugin.applications.frsync.dao;\r
 \r
+import com.google.common.base.Optional;\r
 import java.util.concurrent.ConcurrentHashMap;\r
-\r
 import javax.annotation.Nonnull;\r
-\r
 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.inventory.rev130819.FlowCapableNode;\r
 import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.NodeId;\r
 \r
-import com.google.common.base.Optional;\r
-\r
 /**\r
  * Adding cache to data access object of {@link FlowCapableNode}.\r
  */\r
index 4d1e53a6932ff16f9fc5671122eb19639aa5a49f..2a4d1bd0f5b3d4559cb41778b138203b02b6e67d 100644 (file)
@@ -52,9 +52,9 @@ public abstract class AbstractFrmSyncListener<T extends DataObject> implements N
     protected abstract Optional<ListenableFuture<Boolean>> processNodeModification(
             DataTreeModification<T> modification) throws ReadFailedException, InterruptedException;
 
-    public abstract LogicalDatastoreType dsType();
+    protected abstract LogicalDatastoreType dsType();
 
-    static String threadName() {
+    private static String threadName() {
         final Thread currentThread = Thread.currentThread();
         return currentThread.getName();
     }
index f0babcba30af0ae1659b4bfe4a1397e37613f0b7..8bc18dd0ffec6c228a7f3548b78ebe4a8e30ff56 100644 (file)
@@ -8,8 +8,8 @@
 
 package org.opendaylight.openflowplugin.applications.frsync.impl;
 
+import com.google.common.base.Preconditions;
 import java.util.concurrent.Future;
-
 import org.opendaylight.openflowplugin.applications.frsync.ForwardingRulesCommitter;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.inventory.rev130819.FlowCapableNode;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.inventory.rev130819.tables.Table;
@@ -26,7 +26,6 @@ import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.service.rev130819.Upda
 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.service.rev130819.flow.update.OriginalFlowBuilder;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.service.rev130819.flow.update.UpdatedFlowBuilder;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.types.rev131026.FlowRef;
-import org.opendaylight.yang.gen.v1.urn.opendaylight.group.types.rev131018.groups.Group;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.NodeRef;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.nodes.Node;
 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
@@ -36,8 +35,6 @@ import org.opendaylight.yangtools.yang.common.RpcResultBuilder;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
-import com.google.common.base.Preconditions;
-
 /**
  * Implements {@link ForwardingRulesCommitter} methods for processing add, update and remove of {@link Flow}.
  */
index 57c404b6d8cca5c7a0913e960e1e8cb5f189aa12..a35cde26003ea1ab3dc2008615f3deabc32e1e36 100644 (file)
@@ -31,12 +31,8 @@ import org.opendaylight.openflowplugin.applications.frsync.util.SemaphoreKeeperG
 import org.opendaylight.openflowplugin.common.wait.SimpleTaskRetryLooper;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.flat.batch.service.rev160321.SalFlatBatchService;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.inventory.rev130819.FlowCapableNode;
-import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.service.rev130819.SalFlowService;
-import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.transaction.rev150304.FlowCapableTransactionService;
-import org.opendaylight.yang.gen.v1.urn.opendaylight.group.service.rev130918.SalGroupService;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.Nodes;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.nodes.Node;
-import org.opendaylight.yang.gen.v1.urn.opendaylight.meter.service.rev130918.SalMeterService;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.table.service.rev131026.SalTableService;
 import org.opendaylight.yangtools.concepts.ListenerRegistration;
 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
@@ -53,11 +49,7 @@ public class ForwardingRulesSyncProvider implements AutoCloseable, BindingAwareP
     public static final int STARTUP_LOOP_MAX_RETRIES = 8;
 
     private final DataBroker dataService;
-    private final SalFlowService salFlowService;
-    private final SalGroupService salGroupService;
-    private final SalMeterService salMeterService;
     private final SalTableService salTableService;
-    private final FlowCapableTransactionService transactionService;
     private final SalFlatBatchService flatBatchService;
 
     /** wildcard path to flow-capable-node augmentation of inventory node */
@@ -78,27 +70,14 @@ public class ForwardingRulesSyncProvider implements AutoCloseable, BindingAwareP
     public ForwardingRulesSyncProvider(final BindingAwareBroker broker,
                                        final DataBroker dataBroker,
                                        final RpcConsumerRegistry rpcRegistry) {
-        this.dataService = Preconditions.checkNotNull(dataBroker, "DataBroker can not be null!");
-
         Preconditions.checkArgument(rpcRegistry != null, "RpcConsumerRegistry can not be null !");
-
-        this.salFlowService = Preconditions.checkNotNull(rpcRegistry.getRpcService(SalFlowService.class),
-                "RPC SalFlowService not found.");
-        this.salGroupService = Preconditions.checkNotNull(rpcRegistry.getRpcService(SalGroupService.class),
-                "RPC SalGroupService not found.");
-        this.salMeterService = Preconditions.checkNotNull(rpcRegistry.getRpcService(SalMeterService.class),
-                "RPC SalMeterService not found.");
+        this.dataService = Preconditions.checkNotNull(dataBroker, "DataBroker can not be null!");
         this.salTableService = Preconditions.checkNotNull(rpcRegistry.getRpcService(SalTableService.class),
                 "RPC SalTableService not found.");
-        this.transactionService =
-                Preconditions.checkNotNull(rpcRegistry.getRpcService(FlowCapableTransactionService.class),
-                        "RPC SalTableService not found.");
-        this.flatBatchService =
-                Preconditions.checkNotNull(rpcRegistry.getRpcService(SalFlatBatchService.class),
-                        "RPC SalFlatBatchService not found.");
-
-        nodeConfigDataTreePath =
-                new DataTreeIdentifier<>(LogicalDatastoreType.CONFIGURATION, FLOW_CAPABLE_NODE_WC_PATH);
+        this.flatBatchService = Preconditions.checkNotNull(rpcRegistry.getRpcService(SalFlatBatchService.class),
+                "RPC SalFlatBatchService not found.");
+
+        nodeConfigDataTreePath = new DataTreeIdentifier<>(LogicalDatastoreType.CONFIGURATION, FLOW_CAPABLE_NODE_WC_PATH);
         nodeOperationalDataTreePath = new DataTreeIdentifier<>(LogicalDatastoreType.OPERATIONAL, NODE_WC_PATH);
 
         broker.registerProvider(this);
@@ -121,69 +100,52 @@ public class ForwardingRulesSyncProvider implements AutoCloseable, BindingAwareP
 
     @Override
     public void onSessionInitiated(final BindingAwareBroker.ProviderContext providerContext) {
-        final FlowForwarder flowForwarder = new FlowForwarder(salFlowService);
-        final GroupForwarder groupForwarder = new GroupForwarder(salGroupService);
-        final MeterForwarder meterForwarder = new MeterForwarder(salMeterService);
         final TableForwarder tableForwarder = new TableForwarder(salTableService);
 
-        {
-            //TODO: make is switchable
-//            final SyncPlanPushStrategy syncPlanPushStrategy = new SyncPlanPushStrategyIncrementalImpl()
-//                    .setFlowForwarder(flowForwarder)
-//                    .setGroupForwarder(groupForwarder)
-//                    .setMeterForwarder(meterForwarder)
-//                    .setTableForwarder(tableForwarder)
-//                    .setTransactionService(transactionService);
-
-            final SyncPlanPushStrategy syncPlanPushStrategy = new SyncPlanPushStrategyFlatBatchImpl()
-                    .setFlatBatchService(flatBatchService)
-                    .setTableForwarder(tableForwarder);
-
-            final SyncReactorImpl syncReactorImpl = new SyncReactorImpl(syncPlanPushStrategy);
-            final SyncReactor syncReactorGuard = new SyncReactorGuardDecorator(syncReactorImpl,
-                    new SemaphoreKeeperGuavaImpl<InstanceIdentifier<FlowCapableNode>>(1, true));
-
-            final SyncReactor cfgReactor = new SyncReactorFutureWithCompressionDecorator(syncReactorGuard, syncThreadPool);
-            final SyncReactor operReactor = new SyncReactorFutureWithCompressionDecorator(syncReactorGuard, syncThreadPool);
-
-            final FlowCapableNodeSnapshotDao configSnapshot = new FlowCapableNodeSnapshotDao();
-            final FlowCapableNodeSnapshotDao operationalSnapshot = new FlowCapableNodeSnapshotDao();
-            final FlowCapableNodeDao configDao = new FlowCapableNodeCachedDao(configSnapshot,
-                    new FlowCapableNodeOdlDao(dataService, LogicalDatastoreType.CONFIGURATION));
-            final FlowCapableNodeDao operationalDao = new FlowCapableNodeCachedDao(operationalSnapshot,
-                    new FlowCapableNodeOdlDao(dataService, LogicalDatastoreType.OPERATIONAL));
-
-            final NodeListener<FlowCapableNode> nodeListenerConfig =
-                    new SimplifiedConfigListener(
-                            cfgReactor,
-                            configSnapshot, operationalDao);
-            final NodeListener<Node> nodeListenerOperational =
-                    new SimplifiedOperationalListener(operReactor, operationalSnapshot, configDao);
-
-            try {
-                SimpleTaskRetryLooper looper1 = new SimpleTaskRetryLooper(STARTUP_LOOP_TICK, STARTUP_LOOP_MAX_RETRIES);
-                dataTreeConfigChangeListener = looper1.loopUntilNoException(
-                        new Callable<ListenerRegistration<NodeListener>>() {
-                            @Override
-                            public ListenerRegistration<NodeListener> call() throws Exception {
-                                return dataService.registerDataTreeChangeListener(
-                                        nodeConfigDataTreePath, nodeListenerConfig);
-                            }
-                        });
-
-                SimpleTaskRetryLooper looper2 = new SimpleTaskRetryLooper(STARTUP_LOOP_TICK, STARTUP_LOOP_MAX_RETRIES);
-                dataTreeOperationalChangeListener = looper2.loopUntilNoException(
-                        new Callable<ListenerRegistration<NodeListener>>() {
-                            @Override
-                            public ListenerRegistration<NodeListener> call() throws Exception {
-                                return dataService.registerDataTreeChangeListener(
-                                        nodeOperationalDataTreePath, nodeListenerOperational);
-                            }
-                        });
-            } catch (final Exception e) {
-                LOG.warn("FR-Sync node DataChange listener registration fail!", e);
-                throw new IllegalStateException("FR-Sync startup fail!", e);
-            }
+        final SyncPlanPushStrategy syncPlanPushStrategy = new SyncPlanPushStrategyFlatBatchImpl()
+                .setFlatBatchService(flatBatchService)
+                .setTableForwarder(tableForwarder);
+
+        final SyncReactorImpl syncReactorImpl = new SyncReactorImpl(syncPlanPushStrategy);
+        final SyncReactor syncReactorGuard = new SyncReactorGuardDecorator(syncReactorImpl,
+                new SemaphoreKeeperGuavaImpl<InstanceIdentifier<FlowCapableNode>>(1, true));
+
+        final SyncReactor cfgReactor = new SyncReactorFutureWithCompressionDecorator(syncReactorGuard, syncThreadPool);
+        final SyncReactor operReactor = new SyncReactorFutureWithCompressionDecorator(syncReactorGuard, syncThreadPool);
+
+        final FlowCapableNodeSnapshotDao configSnapshot = new FlowCapableNodeSnapshotDao();
+        final FlowCapableNodeSnapshotDao operationalSnapshot = new FlowCapableNodeSnapshotDao();
+        final FlowCapableNodeDao configDao = new FlowCapableNodeCachedDao(configSnapshot,
+                new FlowCapableNodeOdlDao(dataService, LogicalDatastoreType.CONFIGURATION));
+        final FlowCapableNodeDao operationalDao = new FlowCapableNodeCachedDao(operationalSnapshot,
+                new FlowCapableNodeOdlDao(dataService, LogicalDatastoreType.OPERATIONAL));
+
+        final NodeListener<FlowCapableNode> nodeListenerConfig = new SimplifiedConfigListener(cfgReactor, configSnapshot, operationalDao);
+        final NodeListener<Node> nodeListenerOperational = new SimplifiedOperationalListener(operReactor, operationalSnapshot, configDao);
+
+        try {
+            SimpleTaskRetryLooper looper1 = new SimpleTaskRetryLooper(STARTUP_LOOP_TICK, STARTUP_LOOP_MAX_RETRIES);
+            dataTreeConfigChangeListener = looper1.loopUntilNoException(
+                    new Callable<ListenerRegistration<NodeListener>>() {
+                        @Override
+                        public ListenerRegistration<NodeListener> call() throws Exception {
+                            return dataService.registerDataTreeChangeListener(
+                                    nodeConfigDataTreePath, nodeListenerConfig);
+                        }
+                    });
+
+            SimpleTaskRetryLooper looper2 = new SimpleTaskRetryLooper(STARTUP_LOOP_TICK, STARTUP_LOOP_MAX_RETRIES);
+            dataTreeOperationalChangeListener = looper2.loopUntilNoException(
+                    new Callable<ListenerRegistration<NodeListener>>() {
+                        @Override
+                        public ListenerRegistration<NodeListener> call() throws Exception {
+                            return dataService.registerDataTreeChangeListener(
+                                    nodeOperationalDataTreePath, nodeListenerOperational);
+                        }
+                    });
+        } catch (final Exception e) {
+            LOG.warn("FR-Sync node DataChange listener registration fail!", e);
+            throw new IllegalStateException("FR-Sync startup fail!", e);
         }
         LOG.info("ForwardingRulesSync has started.");
     }
index 44e625dd239a712a896c8bd108b90e7a551567dc..17c500f003ca86bf992eed0db8ea6ea0d42de5be 100644 (file)
@@ -8,33 +8,32 @@
 \r
 package org.opendaylight.openflowplugin.applications.frsync.impl;\r
 \r
-import java.util.concurrent.ExecutorService;\r
-import java.util.concurrent.Executors;\r
-import java.util.concurrent.ThreadFactory;\r
-\r
 import com.google.common.annotations.VisibleForTesting;\r
 import com.google.common.util.concurrent.ListeningExecutorService;\r
 import com.google.common.util.concurrent.MoreExecutors;\r
+import java.util.concurrent.ExecutorService;\r
+import java.util.concurrent.Executors;\r
+import java.util.concurrent.ThreadFactory;\r
 \r
 /**\r
- * Static Factory for creating ExecutorServicess (because there is no dependency injection but\r
+ * Static Factory for creating ExecutorServices (because there is no dependency injection but\r
  * static getInstance).\r
  */\r
 public final class FrmExecutors {\r
-    public static PceExecursFactory instance() {\r
+    public static PceExecutorsFactory instance() {\r
         return DEFAULT_EXECUTORS;\r
     }\r
 \r
-    public interface PceExecursFactory {\r
+    public interface PceExecutorsFactory {\r
 \r
-        public ListeningExecutorService newFixedThreadPool(int nThreads, ThreadFactory factory);\r
+        ListeningExecutorService newFixedThreadPool(int nThreads, ThreadFactory factory);\r
     }\r
 \r
     /**\r
      * This will be rewritten in JUnits using SynchronousExecutorService\r
      */\r
     @VisibleForTesting // should not be private and final\r
-    static PceExecursFactory DEFAULT_EXECUTORS = new PceExecursFactory() {\r
+    static PceExecutorsFactory DEFAULT_EXECUTORS = new PceExecutorsFactory() {\r
 \r
         public ListeningExecutorService newFixedThreadPool(int nThreads, ThreadFactory factory) {\r
             final ExecutorService executorService = Executors.newFixedThreadPool(nThreads, factory);\r
index 9e69f2c40e078dc6b47d2bd38afef6fdb8b6d6cc..58faaab38f5706135eebd49fa8406e70ffe1aca8 100644 (file)
@@ -9,7 +9,6 @@
 package org.opendaylight.openflowplugin.applications.frsync.impl;
 
 import java.util.concurrent.Future;
-
 import org.opendaylight.openflowplugin.applications.frsync.ForwardingRulesCommitter;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.inventory.rev130819.FlowCapableNode;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.inventory.rev130819.meters.Meter;
index 94265eccfc737c3c4c3248429039e538c146bfa9..c2298aa7dec155ac6b99bfbe26794d47a0de3779 100644 (file)
@@ -8,8 +8,9 @@
 
 package org.opendaylight.openflowplugin.applications.frsync.impl;
 
+import com.google.common.base.Optional;
+import com.google.common.util.concurrent.ListenableFuture;
 import java.util.Collection;
-
 import org.opendaylight.controller.md.sal.binding.api.DataObjectModification;
 import org.opendaylight.controller.md.sal.binding.api.DataTreeModification;
 import org.opendaylight.controller.md.sal.common.api.data.LogicalDatastoreType;
@@ -23,15 +24,12 @@ import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
-import com.google.common.base.Optional;
-import com.google.common.util.concurrent.ListenableFuture;
-
 /**
  * Listens to config changes and delegates add/remove/update/barrier to {@link SyncReactor}.
  */
 public class SimplifiedConfigListener extends AbstractFrmSyncListener<FlowCapableNode> {
     private static final Logger LOG = LoggerFactory.getLogger(SimplifiedConfigListener.class);
-    protected final SyncReactor reactor;
+    private final SyncReactor reactor;
     private final FlowCapableNodeSnapshotDao configSnaphot;
     private final FlowCapableNodeDao operationalDao;
 
index e66bf3f25f8f4c5106b6bc70c6099ddf4afc30a2..3c7afc1cd8a037d96f6b84556f5fe018b6f50d8e 100644 (file)
@@ -8,9 +8,10 @@
 
 package org.opendaylight.openflowplugin.applications.frsync.impl;
 
+import com.google.common.base.Optional;
+import com.google.common.util.concurrent.ListenableFuture;
 import java.util.Collection;
 import java.util.List;
-
 import org.opendaylight.controller.md.sal.binding.api.DataObjectModification;
 import org.opendaylight.controller.md.sal.binding.api.DataObjectModification.ModificationType;
 import org.opendaylight.controller.md.sal.binding.api.DataTreeModification;
@@ -29,25 +30,20 @@ import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
-import com.google.common.base.Optional;
-import com.google.common.util.concurrent.ListenableFuture;
-
 /**
  * Listens to operational new nodes and delegates add/remove/update/barrier to {@link SyncReactor}.
  */
 public class SimplifiedOperationalListener extends AbstractFrmSyncListener<Node> {
     private static final Logger LOG = LoggerFactory.getLogger(SimplifiedOperationalListener.class);
 
-    protected final SyncReactor reactor;
-
-    private FlowCapableNodeSnapshotDao operationalSnaphot;
-
+    private final SyncReactor reactor;
+    private FlowCapableNodeSnapshotDao operationalSnapshot;
     private FlowCapableNodeDao configDao;
 
     public SimplifiedOperationalListener(SyncReactor reactor,
-            FlowCapableNodeSnapshotDao operationalSnaphot, FlowCapableNodeDao configDao) {
+            FlowCapableNodeSnapshotDao operationalSnapshot, FlowCapableNodeDao configDao) {
         this.reactor = reactor;
-        this.operationalSnaphot = operationalSnaphot;
+        this.operationalSnapshot = operationalSnapshot;
         this.configDao = configDao;
     }
 
@@ -82,17 +78,17 @@ public class SimplifiedOperationalListener extends AbstractFrmSyncListener<Node>
     /**
      * Remove if delete. Update only if FlowCapableNode Augmentation modified.
      *
-     * @param modification
+     * @param modification Datastore modification
      */
     protected void updateCache(DataTreeModification<Node> modification) {
         try {
             boolean isDelete = isDelete(modification) || isDeleteLogical(modification);
             if (isDelete) {
-                operationalSnaphot.updateCache(nodeId(modification), Optional.<FlowCapableNode>absent());
+                operationalSnapshot.updateCache(nodeId(modification), Optional.<FlowCapableNode>absent());
                 return;
             }
 
-            operationalSnaphot.updateCache(nodeId(modification), Optional.fromNullable(flowCapableNodeAfter(modification)));
+            operationalSnapshot.updateCache(nodeId(modification), Optional.fromNullable(flowCapableNodeAfter(modification)));
         } catch(Exception e) {
             LOG.error("update cache failed {}", nodeId(modification), e);
         }
@@ -183,11 +179,8 @@ public class SimplifiedOperationalListener extends AbstractFrmSyncListener<Node>
         }
 
         final List<NodeConnector> nodeConnectors = node.getNodeConnector();
-        if (nodeConnectors == null || nodeConnectors.isEmpty()) {
-            return true;
-        }
 
-        return false;
+        return nodeConnectors == null || nodeConnectors.isEmpty();
     }
 
     static String nodeIdValue(DataTreeModification<Node> modification) {
index fb0b3e98503f6cb08bd245631e5c10ce338c5edd..33db6ea9c54f467253abea1125571fba0a2f2f0d 100644 (file)
@@ -8,10 +8,11 @@
 \r
 package org.opendaylight.openflowplugin.applications.frsync.impl;\r
 \r
+import com.google.common.util.concurrent.ListenableFuture;\r
+import com.google.common.util.concurrent.ListeningExecutorService;\r
 import java.util.concurrent.Callable;\r
 import java.util.concurrent.TimeUnit;\r
 import java.util.concurrent.TimeoutException;\r
-\r
 import org.opendaylight.openflowplugin.applications.frsync.SyncReactor;\r
 import org.opendaylight.openflowplugin.applications.frsync.util.PathUtil;\r
 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.inventory.rev130819.FlowCapableNode;\r
@@ -20,9 +21,6 @@ import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
 import org.slf4j.Logger;\r
 import org.slf4j.LoggerFactory;\r
 \r
-import com.google.common.util.concurrent.ListenableFuture;\r
-import com.google.common.util.concurrent.ListeningExecutorService;\r
-\r
 /**\r
  * Decorator for running delegate syncup in Future.\r
  */\r
index 44f3ee7fbe6a7dcad507a296cf71b52850c0e8f5..ce7c579070def5a766b439cdb7e6e8d3e5076e76 100644 (file)
@@ -8,12 +8,13 @@
 \r
 package org.opendaylight.openflowplugin.applications.frsync.impl;\r
 \r
+import com.google.common.util.concurrent.Futures;\r
+import com.google.common.util.concurrent.ListenableFuture;\r
+import com.google.common.util.concurrent.ListeningExecutorService;\r
 import java.util.HashMap;\r
 import java.util.Map;\r
 import java.util.concurrent.Semaphore;\r
-\r
 import javax.annotation.concurrent.GuardedBy;\r
-\r
 import org.apache.commons.lang3.tuple.Pair;\r
 import org.opendaylight.openflowplugin.applications.frsync.SyncReactor;\r
 import org.opendaylight.openflowplugin.applications.frsync.util.PathUtil;\r
@@ -23,10 +24,6 @@ import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
 import org.slf4j.Logger;\r
 import org.slf4j.LoggerFactory;\r
 \r
-import com.google.common.util.concurrent.Futures;\r
-import com.google.common.util.concurrent.ListenableFuture;\r
-import com.google.common.util.concurrent.ListeningExecutorService;\r
-\r
 /**\r
  * Enriches {@link SyncReactorFutureDecorator} with state compression.\r
  */\r
@@ -34,10 +31,10 @@ public class SyncReactorFutureWithCompressionDecorator extends SyncReactorFuture
 \r
     private static final Logger LOG = LoggerFactory.getLogger(SyncReactorFutureWithCompressionDecorator.class);\r
 \r
-    @GuardedBy("beforeCompressionGuard")\r
-    final Map<InstanceIdentifier<FlowCapableNode>, Pair<FlowCapableNode, FlowCapableNode>> beforeCompression =\r
+    @GuardedBy("compressionGuard")\r
+    final Map<InstanceIdentifier<FlowCapableNode>, Pair<FlowCapableNode, FlowCapableNode>> compressionQueue =\r
             new HashMap<>();\r
-    final Semaphore beforeCompressionGuard = new Semaphore(1, false);\r
+    final Semaphore compressionGuard = new Semaphore(1, false);\r
 \r
     public SyncReactorFutureWithCompressionDecorator(SyncReactor delegate, ListeningExecutorService executorService) {\r
         super(delegate, executorService);\r
@@ -49,7 +46,7 @@ public class SyncReactorFutureWithCompressionDecorator extends SyncReactorFuture
         LOG.trace("syncup {}", nodeId.getValue());\r
 \r
         try {\r
-            beforeCompressionGuard.acquire();\r
+            compressionGuard.acquire();\r
 \r
             final boolean newFutureNecessary = updateCompressionState(flowcapableNodePath, configTree, operationalTree);\r
             if (newFutureNecessary) {\r
@@ -57,7 +54,7 @@ public class SyncReactorFutureWithCompressionDecorator extends SyncReactorFuture
             }\r
             return Futures.immediateFuture(true);\r
         } finally {\r
-            beforeCompressionGuard.release();\r
+            compressionGuard.release();\r
         }\r
     }\r
 \r
@@ -79,13 +76,13 @@ public class SyncReactorFutureWithCompressionDecorator extends SyncReactorFuture
 \r
     protected boolean updateCompressionState(final InstanceIdentifier<FlowCapableNode> flowcapableNodePath,\r
             final FlowCapableNode configTree, final FlowCapableNode operationalTree) {\r
-        final Pair<FlowCapableNode, FlowCapableNode> previous = beforeCompression.get(flowcapableNodePath);\r
+        final Pair<FlowCapableNode, FlowCapableNode> previous = compressionQueue.get(flowcapableNodePath);\r
         if (previous != null) {\r
             final FlowCapableNode previousOperational = previous.getRight();\r
-            beforeCompression.put(flowcapableNodePath, Pair.of(configTree, previousOperational));\r
+            compressionQueue.put(flowcapableNodePath, Pair.of(configTree, previousOperational));\r
             return false;\r
         } else {\r
-            beforeCompression.put(flowcapableNodePath, Pair.of(configTree, operationalTree));\r
+            compressionQueue.put(flowcapableNodePath, Pair.of(configTree, operationalTree));\r
             return true;\r
         }\r
     }\r
@@ -94,14 +91,14 @@ public class SyncReactorFutureWithCompressionDecorator extends SyncReactorFuture
             final InstanceIdentifier<FlowCapableNode> flowcapableNodePath) {\r
         try {\r
             try {\r
-                beforeCompressionGuard.acquire();\r
+                compressionGuard.acquire();\r
             } catch (InterruptedException e) {\r
                 return null;\r
             }\r
 \r
-            return beforeCompression.remove(flowcapableNodePath);\r
+            return compressionQueue.remove(flowcapableNodePath);\r
         } finally {\r
-            beforeCompressionGuard.release();\r
+            compressionGuard.release();\r
         }\r
     }\r
 }\r
index ea019e5ee6bd72bf2c0266ee24f596014bf362c5..92627831e7b8f007a086a5434a82dec0522f1f31 100644 (file)
@@ -8,11 +8,13 @@
 \r
 package org.opendaylight.openflowplugin.applications.frsync.impl;\r
 \r
+import com.google.common.base.Preconditions;\r
+import com.google.common.util.concurrent.FutureCallback;\r
+import com.google.common.util.concurrent.Futures;\r
+import com.google.common.util.concurrent.ListenableFuture;\r
 import java.util.concurrent.Semaphore;\r
 import java.util.concurrent.TimeUnit;\r
-\r
 import javax.annotation.Nullable;\r
-\r
 import org.opendaylight.openflowplugin.applications.frsync.SemaphoreKeeper;\r
 import org.opendaylight.openflowplugin.applications.frsync.SyncReactor;\r
 import org.opendaylight.openflowplugin.applications.frsync.util.PathUtil;\r
@@ -22,11 +24,6 @@ import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
 import org.slf4j.Logger;\r
 import org.slf4j.LoggerFactory;\r
 \r
-import com.google.common.base.Preconditions;\r
-import com.google.common.util.concurrent.FutureCallback;\r
-import com.google.common.util.concurrent.Futures;\r
-import com.google.common.util.concurrent.ListenableFuture;\r
-\r
 /**\r
  * Decorator for NodeId level syncup locking.\r
  */\r
@@ -73,10 +70,10 @@ public class SyncReactorGuardDecorator implements SyncReactor {
                                 formatNanos(stampAfterGuard - stampBeforeGuard),\r
                                 guard, threadName());\r
                     }\r
-                    \r
-                    lockReleaseForNodeId(nodeId, guard);\r
+\r
+                    releaseGuardForNodeId(nodeId, guard);\r
                 }\r
-                \r
+\r
                 @Override\r
                 public void onFailure(final Throwable t) {\r
                     if (LOG.isDebugEnabled()) {\r
@@ -87,13 +84,13 @@ public class SyncReactorGuardDecorator implements SyncReactor {
                                 formatNanos(stampAfterGuard - stampBeforeGuard),\r
                                 guard, threadName());\r
                     }\r
-                    \r
-                    lockReleaseForNodeId(nodeId, guard);\r
+\r
+                    releaseGuardForNodeId(nodeId, guard);\r
                 }\r
             });\r
             return endResult;\r
         } catch(InterruptedException e) {\r
-            lockReleaseForNodeId(nodeId, guard);\r
+            releaseGuardForNodeId(nodeId, guard);\r
             throw e;\r
         }\r
     }\r
@@ -105,8 +102,8 @@ public class SyncReactorGuardDecorator implements SyncReactor {
     /**\r
      * get guard\r
      *\r
-     * @param flowcapableNodePath\r
-     * @return\r
+     * @param flowcapableNodePath II of node for which guard should be acquired\r
+     * @return semaphore guard\r
      */\r
     protected Semaphore summonGuardAndAcquire(final InstanceIdentifier<FlowCapableNode> flowcapableNodePath)\r
             throws InterruptedException {\r
@@ -129,11 +126,10 @@ public class SyncReactorGuardDecorator implements SyncReactor {
     /**\r
      * unlock per node\r
      *\r
-     * @param nodeId\r
-     * @param guard\r
+     * @param nodeId NodeId of node which should be unlocked\r
+     * @param guard semaphore guard\r
      */\r
-    protected void lockReleaseForNodeId(final NodeId nodeId,\r
-            final Semaphore guard) {\r
+    protected void releaseGuardForNodeId(final NodeId nodeId, final Semaphore guard) {\r
         if (guard == null) {\r
             return;\r
         }\r
index f2dc532bb6596369caaef4c5ff22e8c02766ab92..74347b1a8735107de89b32b64e3c355c4eb50999 100644 (file)
@@ -10,7 +10,6 @@ package org.opendaylight.openflowplugin.applications.frsync.impl;
 
 import java.util.Collections;
 import java.util.concurrent.Future;
-
 import org.opendaylight.openflowplugin.applications.frsync.ForwardingRulesUpdateCommitter;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.inventory.rev130819.FlowCapableNode;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.inventory.rev130819.tables.Table;
index 48560a457581128ec451afe58805d2a9b93dea1a..ed90d2854624002de508eda5556f6ce1b3fca027 100644 (file)
@@ -180,7 +180,7 @@ public class SyncPlanPushStrategyFlatBatchImpl implements SyncPlanPushStrategy {
             @Override
             public void onSuccess(@Nullable final RpcResult<ProcessFlatBatchOutput> result) {
                 if (!result.isSuccessful() && result.getResult() != null && !result.getResult().getBatchFailure().isEmpty()) {
-                    Map<Range<Integer>, Batch> batchMap = mapBachesToRanges(inputBatchBag, failureIndexLimit);
+                    Map<Range<Integer>, Batch> batchMap = mapBatchesToRanges(inputBatchBag, failureIndexLimit);
 
                     for (BatchFailure batchFailure : result.getResult().getBatchFailure()) {
                         for (Map.Entry<Range<Integer>, Batch> rangeBatchEntry : batchMap.entrySet()) {
@@ -224,7 +224,7 @@ public class SyncPlanPushStrategyFlatBatchImpl implements SyncPlanPushStrategy {
         }
     }
 
-    static Map<Range<Integer>, Batch> mapBachesToRanges(final List<Batch> inputBatchBag, final int failureIndexLimit) {
+    static Map<Range<Integer>, Batch> mapBatchesToRanges(final List<Batch> inputBatchBag, final int failureIndexLimit) {
         final Map<Range<Integer>, Batch> batchMap = new LinkedHashMap<>();
         final PeekingIterator<Batch> batchPeekingIterator = Iterators.peekingIterator(inputBatchBag.iterator());
         while (batchPeekingIterator.hasNext()) {
@@ -248,7 +248,6 @@ public class SyncPlanPushStrategyFlatBatchImpl implements SyncPlanPushStrategy {
         // process flow remove
         if (flowItemSyncTableMap != null) {
             for (Map.Entry<TableKey, ItemSyncBox<Flow>> syncBoxEntry : flowItemSyncTableMap.entrySet()) {
-                final TableKey tableKey = syncBoxEntry.getKey();
                 final ItemSyncBox<Flow> flowItemSyncBox = syncBoxEntry.getValue();
 
                 if (!flowItemSyncBox.getItemsToPush().isEmpty()) {
@@ -422,7 +421,6 @@ public class SyncPlanPushStrategyFlatBatchImpl implements SyncPlanPushStrategy {
         // process flow add+update
         if (flowItemSyncTableMap != null) {
             for (Map.Entry<TableKey, ItemSyncBox<Flow>> syncBoxEntry : flowItemSyncTableMap.entrySet()) {
-                final TableKey tableKey = syncBoxEntry.getKey();
                 final ItemSyncBox<Flow> flowItemSyncBox = syncBoxEntry.getValue();
 
                 if (!flowItemSyncBox.getItemsToPush().isEmpty()) {
index df3a3db7951c0e3e2641e1d81b51d67fb90b0ff2..1a6b277962b0fc36011366ea7261338d0543733f 100644 (file)
@@ -14,10 +14,8 @@ import java.util.List;
 import java.util.Map;
 import javax.annotation.Nonnull;
 import javax.annotation.Nullable;
-
 import org.opendaylight.openflowplugin.applications.frsync.markandsweep.SwitchFlowId;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.inventory.rev130819.FlowCapableNode;
-import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.inventory.rev130819.FlowId;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.inventory.rev130819.meters.Meter;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.inventory.rev130819.tables.Table;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.inventory.rev130819.tables.table.Flow;
index 1a11c9f16fe509eaccfde0df8bada1325db22815..2cd6204033839af51e4372ff0f9980069c3285dc 100644 (file)
@@ -8,15 +8,12 @@
 
 package org.opendaylight.openflowplugin.applications.frsync.util;
 
-import java.util.concurrent.Semaphore;
-
-import javax.annotation.Nonnull;
-
-import org.opendaylight.openflowplugin.applications.frsync.SemaphoreKeeper;
-
 import com.google.common.cache.CacheBuilder;
 import com.google.common.cache.CacheLoader;
 import com.google.common.cache.LoadingCache;
+import java.util.concurrent.Semaphore;
+import javax.annotation.Nonnull;
+import org.opendaylight.openflowplugin.applications.frsync.SemaphoreKeeper;
 
 /**
  * Key-based semaphore provider.
index 1effafda9442521b74794c7e0a46fc0247aba4e1..7feb84aa58f1324ed504d3bea1b4381a3d263e2d 100644 (file)
@@ -12,7 +12,6 @@ import java.math.BigInteger;
 import java.util.Collections;
 import java.util.concurrent.Future;
 import java.util.concurrent.TimeUnit;
-
 import org.junit.Assert;
 import org.junit.Before;
 import org.junit.Test;
index 1b1fac25e5f91068fe6239d87c122f0303d6efd2..76fb1fad803b57f91e90879625058f6bb523502f 100644 (file)
@@ -21,11 +21,8 @@ import org.opendaylight.controller.md.sal.binding.api.DataTreeChangeListener;
 import org.opendaylight.controller.md.sal.binding.api.DataTreeIdentifier;
 import org.opendaylight.controller.sal.binding.api.BindingAwareBroker;
 import org.opendaylight.controller.sal.binding.api.RpcConsumerRegistry;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.flat.batch.service.rev160321.SalFlatBatchService;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.inventory.rev130819.FlowCapableNode;
-import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.service.rev130819.SalFlowService;
-import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.transaction.rev150304.FlowCapableTransactionService;
-import org.opendaylight.yang.gen.v1.urn.opendaylight.group.service.rev130918.SalGroupService;
-import org.opendaylight.yang.gen.v1.urn.opendaylight.meter.service.rev130918.SalMeterService;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.table.service.rev131026.SalTableService;
 import org.opendaylight.yangtools.yang.binding.RpcService;
 
@@ -57,13 +54,8 @@ public class ForwardingRulesSyncProviderTest {
                 });
 
         provider = new ForwardingRulesSyncProvider(broker, dataBroker, rpcRegistry);
-
-        Mockito.verify(rpcRegistry).getRpcService(SalFlowService.class);
-        Mockito.verify(rpcRegistry).getRpcService(SalGroupService.class);
-        Mockito.verify(rpcRegistry).getRpcService(SalMeterService.class);
         Mockito.verify(rpcRegistry).getRpcService(SalTableService.class);
-        Mockito.verify(rpcRegistry).getRpcService(FlowCapableTransactionService.class);
-
+        Mockito.verify(rpcRegistry).getRpcService(SalFlatBatchService.class);
         Mockito.verify(broker).registerProvider(provider);
     }
 
index 2cf2eec9516ef166a8755d256877c538e29eebd4..8e980dcb60bd0bc2b51b9fcb95d3f2b9e99aeba1 100644 (file)
@@ -11,7 +11,6 @@ package org.opendaylight.openflowplugin.applications.frsync.impl;
 import java.math.BigInteger;
 import java.util.concurrent.Future;
 import java.util.concurrent.TimeUnit;
-
 import org.junit.Assert;
 import org.junit.Before;
 import org.junit.Test;
index 7c820748d689234a9ca751d2eacfed4bee92b2bb..28ae5dc4c3e637916963a648e30050e3a673f697 100644 (file)
@@ -11,7 +11,6 @@ package org.opendaylight.openflowplugin.applications.frsync.impl;
 import java.math.BigInteger;
 import java.util.concurrent.Future;
 import java.util.concurrent.TimeUnit;
-
 import org.junit.Assert;
 import org.junit.Before;
 import org.junit.Test;
index 3b5caeaec036a414671d888f33755d4d35607640..7e37a1f9a5487b930e4b6286edd4f46277f59129 100644 (file)
@@ -8,8 +8,9 @@
 
 package org.opendaylight.openflowplugin.applications.frsync.impl;
 
+import com.google.common.base.Optional;
+import com.google.common.util.concurrent.Futures;
 import java.util.Collections;
-
 import org.junit.Assert;
 import org.junit.Before;
 import org.junit.Test;
@@ -36,13 +37,9 @@ import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.nodes.N
 import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.nodes.NodeKey;
 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
 
-import com.google.common.base.Optional;
-import com.google.common.util.concurrent.Futures;
-
 /**
  * Test for {@link SimplifiedConfigListener}.
  */
-@SuppressWarnings("deprecation")
 @RunWith(MockitoJUnitRunner.class)
 public class SimplifiedConfigListenerTest {
 
index 4be870f5e8bd48dc6225ac7639b523b803787146..34ce9750d8c47fc571bd5d39be7a28262582aee9 100644 (file)
@@ -8,8 +8,9 @@
 
 package org.opendaylight.openflowplugin.applications.frsync.impl;
 
+import com.google.common.base.Optional;
+import com.google.common.util.concurrent.Futures;
 import java.util.Collections;
-
 import org.junit.Assert;
 import org.junit.Before;
 import org.junit.Test;
@@ -35,16 +36,10 @@ import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.Nodes;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.nodes.Node;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.nodes.NodeKey;
 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
-import org.opendaylight.yangtools.yang.common.RpcResult;
-
-import com.google.common.base.Optional;
-import com.google.common.util.concurrent.AsyncFunction;
-import com.google.common.util.concurrent.Futures;
 
 /**
  * Test for {@link SimplifiedOperationalListener}.
  */
-@SuppressWarnings("deprecation")
 @RunWith(MockitoJUnitRunner.class)
 public class SimplifiedOperationalListenerTest {
 
@@ -64,7 +59,6 @@ public class SimplifiedOperationalListenerTest {
     private InstanceIdentifier<FlowCapableNode> fcNodePath;
     private SimplifiedOperationalListener nodeListenerOperational;
 
-    @SuppressWarnings("deprecation")
     @Before
     public void setUp() throws Exception {
         final FlowCapableNodeSnapshotDao configSnaphot = new FlowCapableNodeSnapshotDao();
diff --git a/applications/forwardingrules-sync/src/test/java/org/opendaylight/openflowplugin/applications/frsync/impl/SyncReactorGuardDecoratorTest.java b/applications/forwardingrules-sync/src/test/java/org/opendaylight/openflowplugin/applications/frsync/impl/SyncReactorGuardDecoratorTest.java
new file mode 100644 (file)
index 0000000..8eda58c
--- /dev/null
@@ -0,0 +1,73 @@
+/**
+ * Copyright (c) 2016 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.openflowplugin.applications.frsync.impl;
+
+import com.google.common.util.concurrent.Futures;
+import org.junit.Before;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.mockito.Matchers;
+import org.mockito.Mock;
+import org.mockito.Mockito;
+import org.mockito.runners.MockitoJUnitRunner;
+import org.opendaylight.openflowplugin.applications.frsync.util.SemaphoreKeeperGuavaImpl;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.inventory.rev130819.FlowCapableNode;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.NodeId;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.Nodes;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.nodes.Node;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.nodes.NodeKey;
+import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
+
+/**
+ * Test for {@link SyncReactorGuardDecorator}.
+ */
+@RunWith(MockitoJUnitRunner.class)
+public class SyncReactorGuardDecoratorTest {
+
+    private static final NodeId NODE_ID = new NodeId("test-node");
+    private SyncReactorGuardDecorator reactor;
+    private InstanceIdentifier<FlowCapableNode> fcNodePath;
+
+    @Mock
+    private SyncReactorImpl delegate;
+    @Mock
+    private FlowCapableNode fcConfigNode;
+    @Mock
+    private FlowCapableNode fcOperationalNode;
+
+    @Before
+    public void setUp() throws Exception {
+        reactor = new SyncReactorGuardDecorator(delegate, new SemaphoreKeeperGuavaImpl<InstanceIdentifier<FlowCapableNode>>(1, true));
+        InstanceIdentifier<Node> nodePath = InstanceIdentifier.create(Nodes.class).child(Node.class, new NodeKey(NODE_ID));
+        fcNodePath = nodePath.augmentation(FlowCapableNode.class);
+
+        final Node operationalNode = Mockito.mock(Node.class);
+        Mockito.when(operationalNode.getId()).thenReturn(NODE_ID);
+        Mockito.when(operationalNode.getAugmentation(FlowCapableNode.class)).thenReturn(fcOperationalNode);
+    }
+
+    @Test
+    public void testSyncupSuccess() throws Exception {
+        Mockito.when(delegate.syncup(Matchers.<InstanceIdentifier<FlowCapableNode>>any(),Matchers.<FlowCapableNode>any(),
+                Matchers.<FlowCapableNode>any())).thenReturn(Futures.immediateFuture(Boolean.TRUE));
+        reactor.syncup(fcNodePath, fcConfigNode, fcOperationalNode);
+        Mockito.verify(delegate).syncup(fcNodePath, fcConfigNode, fcOperationalNode);
+
+    }
+
+    @Test
+    public void testSyncupFail() throws Exception {
+        Mockito.when(delegate.syncup(Matchers.<InstanceIdentifier<FlowCapableNode>>any(),Matchers.<FlowCapableNode>any(),
+                Matchers.<FlowCapableNode>any())).thenReturn(Futures.immediateFailedFuture(new Exception()));
+        reactor.syncup(fcNodePath, fcConfigNode, fcOperationalNode);
+        Mockito.verify(delegate).syncup(fcNodePath, fcConfigNode, fcOperationalNode);
+
+    }
+
+}
\ No newline at end of file
index 7e88950e84b7b001c4b4a466bd511eea6e802ce7..86cf17bf4cadf39d11b6b41dee709a0b41b03170 100644 (file)
@@ -11,7 +11,6 @@ package org.opendaylight.openflowplugin.applications.frsync.impl;
 import java.math.BigInteger;
 import java.util.concurrent.Future;
 import java.util.concurrent.TimeUnit;
-
 import org.junit.Assert;
 import org.junit.Before;
 import org.junit.Test;
index a30d600799df016e1c1c8d2dd2bba8239f956b4f..0eadaef2304f7a106a96f14236ae1358035fb9de 100644 (file)
@@ -43,7 +43,7 @@ public class DiffInputFactory {
         return groupBox;
     }
 
-    static Group createPlainGroup(final long gid) {
+    private static Group createPlainGroup(final long gid) {
         return new GroupBuilder().setGroupId(new GroupId(gid)).build();
     }
 
@@ -67,7 +67,7 @@ public class DiffInputFactory {
         return groupBox;
     }
 
-    static Meter createPlainMeter(final long mid) {
+    private static Meter createPlainMeter(final long mid) {
         return new MeterBuilder().setMeterId(new MeterId(mid)).build();
     }
 
@@ -91,7 +91,7 @@ public class DiffInputFactory {
         return groupBox;
     }
 
-    static Flow createPlainFlow(final String fid) {
+    private static Flow createPlainFlow(final String fid) {
         return new FlowBuilder().setId(new FlowId(fid)).build();
     }
 }
index e83d9b036212141eb0c0753d29b10f42440d4d5e..90b7cf8b876e0c0a44a960641d7b1c526be5562e 100644 (file)
@@ -287,7 +287,7 @@ public class SyncPlanPushStrategyFlatBatchImplTest {
                 new BatchBuilder().setBatchOrder(9).build(),
                 new BatchBuilder().setBatchOrder(15).build()
         );
-        final Map<Range<Integer>, Batch> rangeBatchMap = SyncPlanPushStrategyFlatBatchImpl.mapBachesToRanges(inputBatchBag, 42);
+        final Map<Range<Integer>, Batch> rangeBatchMap = SyncPlanPushStrategyFlatBatchImpl.mapBatchesToRanges(inputBatchBag, 42);
 
         Assert.assertEquals(4, rangeBatchMap.size());
         int idx = 0;
index 75aa3b23bcd36e0f8dbe863aeff8bbbf99e5336c..ee09da96ee7447fd94ea482fb237f14537eb5d34 100644 (file)
@@ -12,6 +12,14 @@ import com.google.common.base.Splitter;
 import com.google.common.util.concurrent.Futures;
 import com.google.common.util.concurrent.ListenableFuture;
 import com.google.common.util.concurrent.SettableFuture;
+import java.util.ArrayList;
+import java.util.Arrays;
+import java.util.Collections;
+import java.util.HashMap;
+import java.util.HashSet;
+import java.util.List;
+import java.util.Map;
+import java.util.Set;
 import org.junit.Assert;
 import org.junit.Rule;
 import org.junit.Test;
@@ -46,15 +54,6 @@ import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
 import org.opendaylight.yangtools.yang.common.RpcResult;
 import org.opendaylight.yangtools.yang.common.RpcResultBuilder;
 
-import java.util.ArrayList;
-import java.util.Arrays;
-import java.util.Collections;
-import java.util.HashMap;
-import java.util.HashSet;
-import java.util.List;
-import java.util.Map;
-import java.util.Set;
-
 /**
  * Test for {@link ReconcileUtil}.
  */
index f874eb7b5de3e8de9de6f21f001a4dda637032a7..b2d38d06ec87c36de820629eb7bbbc4e5f36fae1 100644 (file)
@@ -15,7 +15,6 @@ import java.util.concurrent.LinkedBlockingQueue;
 import java.util.concurrent.Semaphore;
 import java.util.concurrent.ThreadPoolExecutor;
 import java.util.concurrent.TimeUnit;
-
 import org.junit.Assert;
 import org.junit.Before;
 import org.junit.Test;
@@ -29,7 +28,7 @@ import org.slf4j.LoggerFactory;
 public class SemaphoreKeeperTest {
     private static final Logger LOG = LoggerFactory.getLogger(SemaphoreKeeperTest.class);
     private SemaphoreKeeperGuavaImpl<String> semaphoreKeeper;
-    final String key = "11";
+    private final String key = "11";
 
     @Before
     public void setUp() throws Exception {