Remove excessive (trace) logging in FRS
[openflowplugin.git] / applications / forwardingrules-sync / src / main / java / org / opendaylight / openflowplugin / applications / frsync / impl / SimplifiedConfigListener.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.base.Optional;
12 import com.google.common.util.concurrent.ListenableFuture;
13 import java.util.Collection;
14 import org.opendaylight.controller.md.sal.binding.api.DataObjectModification;
15 import org.opendaylight.controller.md.sal.binding.api.DataTreeModification;
16 import org.opendaylight.controller.md.sal.common.api.data.LogicalDatastoreType;
17 import org.opendaylight.openflowplugin.applications.frsync.SyncReactor;
18 import org.opendaylight.openflowplugin.applications.frsync.dao.FlowCapableNodeDao;
19 import org.opendaylight.openflowplugin.applications.frsync.dao.FlowCapableNodeSnapshotDao;
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  * Listens to config changes and delegates sync entry to {@link SyncReactor}.
30  */
31 public class SimplifiedConfigListener extends AbstractFrmSyncListener<FlowCapableNode> {
32     private static final Logger LOG = LoggerFactory.getLogger(SimplifiedConfigListener.class);
33     private final SyncReactor reactor;
34     private final FlowCapableNodeSnapshotDao configSnapshot;
35     private final FlowCapableNodeDao operationalDao;
36
37     public SimplifiedConfigListener(final SyncReactor reactor,
38                                     final FlowCapableNodeSnapshotDao configSnapshot,
39                                     final FlowCapableNodeDao operationalDao) {
40         this.reactor = reactor;
41         this.configSnapshot = configSnapshot;
42         this.operationalDao = operationalDao;
43     }
44
45     @Override
46     public void onDataTreeChanged(final Collection<DataTreeModification<FlowCapableNode>> modifications) {
47         super.onDataTreeChanged(modifications);
48     }
49
50     /**
51      * Update cache. If operational data are present, choose appropriate data and start syncup.
52      * Otherwise skip incoming change.
53      * @throws InterruptedException from syncup
54      */
55     protected Optional<ListenableFuture<Boolean>> processNodeModification(
56             final DataTreeModification<FlowCapableNode> modification) throws InterruptedException {
57         final InstanceIdentifier<FlowCapableNode> nodePath = modification.getRootPath().getRootIdentifier();
58         final NodeId nodeId = PathUtil.digNodeId(nodePath);
59
60         configSnapshot.updateCache(nodeId, Optional.fromNullable(modification.getRootNode().getDataAfter()));
61
62         final Optional<FlowCapableNode> operationalNode = operationalDao.loadByNodeId(nodeId);
63         if (!operationalNode.isPresent()) {
64             LOG.debug("Skip syncup, {} operational is not present", nodeId.getValue());
65             return Optional.absent();
66         }
67
68         final DataObjectModification<FlowCapableNode> configModification = modification.getRootNode();
69         final FlowCapableNode dataBefore = configModification.getDataBefore();
70         final FlowCapableNode dataAfter = configModification.getDataAfter();
71         final ListenableFuture<Boolean> endResult;
72         if (dataBefore == null && dataAfter != null) {
73             endResult = onNodeAdded(nodePath, dataAfter, operationalNode.get());
74         } else if (dataBefore != null && dataAfter == null) {
75             endResult = onNodeDeleted(nodePath, dataBefore);
76         } else {
77             endResult = onNodeUpdated(nodePath, dataBefore, dataAfter);
78         }
79
80         return Optional.of(endResult);
81     }
82
83     /**
84      * Add only what is missing on device. If node was added to config DS and it is already present
85      * in operational DS (connected) diff between current new configuration and actual configuration
86      * (seen in operational) should be calculated and sent to device.
87      */
88     private ListenableFuture<Boolean> onNodeAdded(final InstanceIdentifier<FlowCapableNode> nodePath,
89                                                   final FlowCapableNode dataAfter,
90                                                   final FlowCapableNode operationalNode) throws InterruptedException {
91         LOG.debug("Reconciliation {}: {}", dsType(), PathUtil.digNodeId(nodePath).getValue());
92         final SyncupEntry syncupEntry = new SyncupEntry(dataAfter, dsType(), operationalNode, LogicalDatastoreType.OPERATIONAL);
93         return reactor.syncup(nodePath, syncupEntry);
94     }
95
96     /**
97      * Apply minimal changes very fast. For better performance needed just compare config
98      * after+before. Config listener should not be dependent on operational flows/groups/meters while
99      * updating config because operational store is highly async and it depends on another module in
100      * system which is updating operational store (that components is also trying to solve
101      * scale/performance issues on several layers).
102      */
103     private ListenableFuture<Boolean> onNodeUpdated(final InstanceIdentifier<FlowCapableNode> nodePath,
104                                                     final FlowCapableNode dataBefore,
105                                                     final FlowCapableNode dataAfter) throws InterruptedException {
106         final SyncupEntry syncupEntry = new SyncupEntry(dataAfter, dsType(), dataBefore, dsType());
107         return reactor.syncup(nodePath, syncupEntry);
108     }
109
110     /**
111      * Remove values that are being deleted in the config from the switch.
112      * Note, this could be probably optimized using dedicated wipe-out RPC.
113      */
114     private ListenableFuture<Boolean> onNodeDeleted(final InstanceIdentifier<FlowCapableNode> nodePath,
115                                                     final FlowCapableNode dataBefore) throws InterruptedException {
116         final SyncupEntry syncupEntry = new SyncupEntry(null, dsType(), dataBefore, dsType());
117         return reactor.syncup(nodePath, syncupEntry);
118     }
119
120     @Override
121     public LogicalDatastoreType dsType() {
122         return LogicalDatastoreType.CONFIGURATION;
123     }
124 }