Merge "Bug 6745 Improve compression queue locking and handle InterruptedException"
[openflowplugin.git] / applications / forwardingrules-sync / src / main / java / org / opendaylight / openflowplugin / applications / frsync / impl / SyncReactorGuardDecorator.java
1 /**
2  * Copyright (c) 2016 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.openflowplugin.applications.frsync.impl;
10
11 import com.google.common.util.concurrent.FutureCallback;
12 import com.google.common.util.concurrent.Futures;
13 import com.google.common.util.concurrent.ListenableFuture;
14 import java.util.Objects;
15 import java.util.concurrent.Semaphore;
16 import java.util.concurrent.TimeUnit;
17 import javax.annotation.Nullable;
18 import org.opendaylight.openflowplugin.applications.frsync.SemaphoreKeeper;
19 import org.opendaylight.openflowplugin.applications.frsync.SyncReactor;
20 import org.opendaylight.openflowplugin.applications.frsync.util.PathUtil;
21 import org.opendaylight.openflowplugin.applications.frsync.util.SyncupEntry;
22 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.inventory.rev130819.FlowCapableNode;
23 import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.NodeId;
24 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
25 import org.slf4j.Logger;
26 import org.slf4j.LoggerFactory;
27
28 /**
29  * Decorator for NodeId level syncup locking.
30  */
31 public class SyncReactorGuardDecorator implements SyncReactor {
32
33     private static final Logger LOG = LoggerFactory.getLogger(SyncReactorGuardDecorator.class);
34     private final SyncReactor delegate;
35     private final SemaphoreKeeper<InstanceIdentifier<FlowCapableNode>> semaphoreKeeper;
36
37     public SyncReactorGuardDecorator(final SyncReactor delegate,
38                                      final SemaphoreKeeper<InstanceIdentifier<FlowCapableNode>> semaphoreKeeper) {
39         this.delegate = delegate;
40         this.semaphoreKeeper = semaphoreKeeper;
41     }
42
43     public ListenableFuture<Boolean> syncup(final InstanceIdentifier<FlowCapableNode> flowcapableNodePath,
44                                             final SyncupEntry syncupEntry) {
45         final NodeId nodeId = PathUtil.digNodeId(flowcapableNodePath);
46         final long stampBeforeGuard = System.nanoTime();
47         final Semaphore guard = semaphoreKeeper.summonGuardAndAcquire(flowcapableNodePath);
48         if (Objects.isNull(guard)) {
49             return Futures.immediateFuture(Boolean.FALSE);
50         }
51         final long stampAfterGuard = System.nanoTime();
52
53         if (LOG.isDebugEnabled()) {
54             LOG.debug("Syncup guard acquired and running for {} ", nodeId.getValue());
55         }
56         final ListenableFuture<Boolean> endResult = delegate.syncup(flowcapableNodePath, syncupEntry);
57         Futures.addCallback(endResult, createSyncupCallback(guard, stampBeforeGuard, stampAfterGuard, nodeId));
58         return endResult;
59     }
60
61     private FutureCallback<Boolean> createSyncupCallback(final Semaphore guard,
62                                                                 final long stampBeforeGuard,
63                                                                 final long stampAfterGuard,
64                                                                 final NodeId nodeId) {
65         return new FutureCallback<Boolean>() {
66             @Override
67             public void onSuccess(@Nullable final Boolean result) {
68                 if (LOG.isDebugEnabled()) {
69                     final long stampFinished = System.nanoTime();
70                     LOG.debug("Syncup finished {} took:{} rpc:{} wait:{}", nodeId.getValue(),
71                             formatNanos(stampFinished - stampBeforeGuard), formatNanos(stampFinished - stampAfterGuard),
72                             formatNanos(stampAfterGuard - stampBeforeGuard));
73                 }
74                 semaphoreKeeper.releaseGuard(guard);
75             }
76             @Override
77             public void onFailure(final Throwable t) {
78                 final long stampFinished = System.nanoTime();
79                 LOG.warn("Syncup failed {} took:{} rpc:{} wait:{}", nodeId.getValue(),
80                         formatNanos(stampFinished - stampBeforeGuard), formatNanos(stampFinished - stampAfterGuard),
81                         formatNanos(stampAfterGuard - stampBeforeGuard));
82                 semaphoreKeeper.releaseGuard(guard);
83             }};
84     }
85
86     private static String formatNanos(final long nanos) {
87         return "'" + TimeUnit.NANOSECONDS.toMillis(nanos) + " ms'";
88     }
89 }