/* * Copyright (c) 2015 Intel Corp. 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.ovsdb.southbound.transactions.md; import java.util.Collection; import java.util.Map; import org.opendaylight.controller.md.sal.binding.api.ReadWriteTransaction; import org.opendaylight.controller.md.sal.common.api.data.LogicalDatastoreType; import org.opendaylight.ovsdb.lib.message.TableUpdates; import org.opendaylight.ovsdb.lib.notation.UUID; import org.opendaylight.ovsdb.lib.schema.DatabaseSchema; import org.opendaylight.ovsdb.lib.schema.typed.TyperUtils; import org.opendaylight.ovsdb.schema.openvswitch.Bridge; import org.opendaylight.ovsdb.schema.openvswitch.Port; import org.opendaylight.ovsdb.southbound.InstanceIdentifierCodec; import org.opendaylight.ovsdb.southbound.OvsdbConnectionInstance; import org.opendaylight.ovsdb.southbound.SouthboundMapper; 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.node.TerminationPoint; import org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.topology.rev131021.network.topology.topology.node.TerminationPointKey; import org.opendaylight.yangtools.yang.binding.InstanceIdentifier; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class OvsdbPortRemoveCommand extends AbstractTransactionCommand { private static final Logger LOG = LoggerFactory.getLogger(OvsdbPortRemoveCommand.class); private final InstanceIdentifierCodec instanceIdentifierCodec; public OvsdbPortRemoveCommand(InstanceIdentifierCodec instanceIdentifierCodec, OvsdbConnectionInstance key, TableUpdates updates, DatabaseSchema dbSchema) { super(key, updates, dbSchema); this.instanceIdentifierCodec = instanceIdentifierCodec; } @Override public void execute(ReadWriteTransaction transaction) { String portName = null; Collection<Port> portRemovedRows = TyperUtils.extractRowsRemoved( Port.class, getUpdates(), getDbSchema()).values(); Map<UUID,Bridge> bridgeUpdatedRows = TyperUtils.extractRowsUpdated( Bridge.class, getUpdates(), getDbSchema()); Map<UUID,Bridge> bridgeUpdatedOldRows = TyperUtils.extractRowsOld( Bridge.class, getUpdates(), getDbSchema()); for (Port port : portRemovedRows) { Bridge updatedBridgeData = null; for (UUID bridgeUuid : bridgeUpdatedOldRows.keySet()) { Bridge oldBridgeData = bridgeUpdatedOldRows.get(bridgeUuid); if (oldBridgeData.getPortsColumn() != null && oldBridgeData.getPortsColumn().getData().contains(port.getUuidColumn().getData()) && (! bridgeUpdatedRows.isEmpty())) { updatedBridgeData = bridgeUpdatedRows.get(bridgeUuid); break; } } if (updatedBridgeData == null) { LOG.warn("Bridge not found for port {}",port); continue; } portName = port.getName(); final InstanceIdentifier<TerminationPoint> nodePath = SouthboundMapper .createInstanceIdentifier(instanceIdentifierCodec, getOvsdbConnectionInstance(), updatedBridgeData).child( TerminationPoint.class, new TerminationPointKey(new TpId(portName))); transaction.delete(LogicalDatastoreType.OPERATIONAL, nodePath); } } }