/** * 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.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; import org.opendaylight.controller.md.sal.common.api.data.LogicalDatastoreType; import org.opendaylight.openflowplugin.applications.frsync.SyncReactor; import org.opendaylight.openflowplugin.applications.frsync.dao.FlowCapableNodeDao; import org.opendaylight.openflowplugin.applications.frsync.dao.FlowCapableNodeSnapshotDao; 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.node.NodeConnector; 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.slf4j.Logger; import org.slf4j.LoggerFactory; /** * Listens to operational new nodes and delegates add/remove/update/barrier to {@link SyncReactor}. */ public class SimplifiedOperationalListener extends AbstractFrmSyncListener { private static final Logger LOG = LoggerFactory.getLogger(SimplifiedOperationalListener.class); private final SyncReactor reactor; private final FlowCapableNodeSnapshotDao operationalSnapshot; private final FlowCapableNodeDao configDao; public SimplifiedOperationalListener(SyncReactor reactor, FlowCapableNodeSnapshotDao operationalSnapshot, FlowCapableNodeDao configDao) { this.reactor = reactor; this.operationalSnapshot = operationalSnapshot; this.configDao = configDao; } @Override public void onDataTreeChanged(Collection> modifications) { LOG.trace("Inventory Operational changes {}", modifications.size()); super.onDataTreeChanged(modifications); } /** * This method behaves like this: * * * @throws InterruptedException from syncup */ protected Optional> processNodeModification( DataTreeModification modification) throws InterruptedException { updateCache(modification); if (isReconciliationNeeded(modification)) { return reconciliation(modification); } return skipModification(modification); } /** * Remove if delete. Update only if FlowCapableNode Augmentation modified. * * @param modification Datastore modification * @return true for cache update, false for cache remove */ protected boolean updateCache(DataTreeModification modification) { if (isDelete(modification) || isDeleteLogical(modification)) { operationalSnapshot.updateCache(nodeId(modification), Optional.absent()); return false; } operationalSnapshot.updateCache(nodeId(modification), Optional.fromNullable(flowCapableNodeAfter(modification))); return true; } private Optional> skipModification(DataTreeModification modification) { LOG.trace("Skipping Inventory Operational modification {}, before {}, after {}", nodeIdValue(modification), modification.getRootNode().getDataBefore() == null ? "null" : "nonnull", modification.getRootNode().getDataAfter() == null ? "null" : "nonnull"); return Optional.absent(); } /** * ModificationType.DELETE. */ private boolean isDelete(DataTreeModification modification) { if (ModificationType.DELETE == modification.getRootNode().getModificationType()) { LOG.trace("Delete {} (physical)", nodeIdValue(modification)); return true; } return false; } /** * All connectors disappeared from operational store (logical delete). */ private boolean isDeleteLogical(DataTreeModification modification) { final DataObjectModification rootNode = modification.getRootNode(); if (!safeConnectorsEmpty(rootNode.getDataBefore()) && safeConnectorsEmpty(rootNode.getDataAfter())) { LOG.trace("Delete {} (logical)", nodeIdValue(modification)); return true; } return false; } private boolean isAdd(DataTreeModification modification) { final DataObjectModification rootNode = modification.getRootNode(); final Node dataAfter = rootNode.getDataAfter(); final Node dataBefore = rootNode.getDataBefore(); final boolean nodeAppearedInOperational = dataBefore == null && dataAfter != null; if (nodeAppearedInOperational) { LOG.trace("Add {} (physical)", nodeIdValue(modification)); } return nodeAppearedInOperational; } /** * All connectors appeared in operational store (logical add). */ private boolean isAddLogical(DataTreeModification modification) { final DataObjectModification rootNode = modification.getRootNode(); if (safeConnectorsEmpty(rootNode.getDataBefore()) && !safeConnectorsEmpty(rootNode.getDataAfter())) { LOG.trace("Add {} (logical)", nodeIdValue(modification)); return true; } return false; } protected boolean isReconciliationNeeded(DataTreeModification modification) { return isAdd(modification) || isAddLogical(modification); } private Optional> reconciliation(DataTreeModification modification) throws InterruptedException { final NodeId nodeId = nodeId(modification); final Optional nodeConfiguration = configDao.loadByNodeId(nodeId); if (nodeConfiguration.isPresent()) { LOG.debug("Reconciliation: {}", nodeId.getValue()); final InstanceIdentifier nodePath = InstanceIdentifier.create(Nodes.class) .child(Node.class, new NodeKey(nodeId(modification))).augmentation(FlowCapableNode.class); return Optional.of(reactor.syncup(nodePath, nodeConfiguration.get(), flowCapableNodeAfter(modification), dsType())); } else { return skipModification(modification); } } private static FlowCapableNode flowCapableNodeAfter(DataTreeModification modification) { final Node dataAfter = modification.getRootNode().getDataAfter(); if (dataAfter == null) { return null; } return dataAfter.getAugmentation(FlowCapableNode.class); } private static boolean safeConnectorsEmpty(Node node) { if (node == null) { return true; } final List nodeConnectors = node.getNodeConnector(); return nodeConnectors == null || nodeConnectors.isEmpty(); } private static String nodeIdValue(DataTreeModification modification) { final NodeId nodeId = nodeId(modification); if (nodeId == null) { return null; } return nodeId.getValue(); } static NodeId nodeId(DataTreeModification modification) { final DataObjectModification rootNode = modification.getRootNode(); final Node dataAfter = rootNode.getDataAfter(); if (dataAfter != null) { return dataAfter.getId(); } final Node dataBefore = rootNode.getDataBefore(); if (dataBefore != null) { return dataBefore.getId(); } return null; } @Override public LogicalDatastoreType dsType() { return LogicalDatastoreType.OPERATIONAL; } }