/* * Copyright (c) 2015, 2017 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.topology.manager; import com.google.common.base.Optional; import java.util.Collections; import java.util.List; import org.opendaylight.controller.md.sal.common.api.data.LogicalDatastoreType; import org.opendaylight.controller.md.sal.common.api.data.ReadFailedException; import org.opendaylight.openflowplugin.common.txchain.TransactionChainManager; import org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.topology.rev131021.NodeId; import org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.topology.rev131021.TpId; import org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.topology.rev131021.network.topology.Topology; import org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.topology.rev131021.network.topology.topology.Link; import org.opendaylight.yangtools.yang.binding.InstanceIdentifier; import org.slf4j.Logger; import org.slf4j.LoggerFactory; class TopologyManagerUtil { private static final Logger LOG = LoggerFactory.getLogger(TopologyManagerUtil.class); private TopologyManagerUtil() { } static void removeAffectedLinks(final NodeId id, final TransactionChainManager manager, InstanceIdentifier topology) { Optional topologyOptional = Optional.absent(); try { topologyOptional = manager.readFromTransaction(LogicalDatastoreType.OPERATIONAL, topology).checkedGet(); } catch (ReadFailedException e) { LOG.warn("Error reading topology data for topology {}: {}", topology, e.getMessage()); LOG.debug("Error reading topology data for topology.. ", e); } if (topologyOptional.isPresent()) { removeAffectedLinks(id, topologyOptional, manager, topology); } } private static void removeAffectedLinks(final NodeId id, Optional topologyOptional, TransactionChainManager manager, final InstanceIdentifier topology) { if (!topologyOptional.isPresent()) { return; } List linkList = topologyOptional.get().getLink() != null ? topologyOptional.get().getLink() : Collections.emptyList(); for (Link link : linkList) { if (id.equals(link.getSource().getSourceNode()) || id.equals(link.getDestination().getDestNode())) { manager.addDeleteOperationToTxChain(LogicalDatastoreType.OPERATIONAL, linkPath(link, topology)); } } } static void removeAffectedLinks(final TpId id, final TransactionChainManager manager, final InstanceIdentifier topology) { Optional topologyOptional = Optional.absent(); try { topologyOptional = manager.readFromTransaction(LogicalDatastoreType.OPERATIONAL, topology).checkedGet(); } catch (ReadFailedException e) { LOG.warn("Error reading topology data for topology {}: {}", topology, e.getMessage()); LOG.debug("Error reading topology data for topology..", e); } if (topologyOptional.isPresent()) { removeAffectedLinks(id, topologyOptional, manager, topology); } } private static void removeAffectedLinks(final TpId id, Optional topologyOptional, TransactionChainManager manager, final InstanceIdentifier topology) { if (!topologyOptional.isPresent()) { return; } List linkList = topologyOptional.get().getLink() != null ? topologyOptional.get() .getLink() : Collections.emptyList(); for (Link link : linkList) { if (id.equals(link.getSource().getSourceTp()) || id.equals(link.getDestination().getDestTp())) { manager.addDeleteOperationToTxChain(LogicalDatastoreType.OPERATIONAL, linkPath(link, topology)); } } } static InstanceIdentifier linkPath(final Link link, final InstanceIdentifier topology) { return topology.child(Link.class, link.getKey()); } }