83c7c042b17a6ca76032d461c9fec05feba6bf64
[vpnservice.git] / interfacemgr / interfacemgr-impl / src / main / java / org / opendaylight / vpnservice / interfacemgr / renderer / ovs / confighelpers / OvsVlanMemberConfigRemoveHelper.java
1 /*
2  * Copyright (c) 2015 Ericsson India Global Services Pvt Ltd. 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 package org.opendaylight.vpnservice.interfacemgr.renderer.ovs.confighelpers;
9
10 import java.math.BigInteger;
11 import java.util.ArrayList;
12 import java.util.List;
13
14 import org.opendaylight.controller.md.sal.binding.api.DataBroker;
15 import org.opendaylight.controller.md.sal.binding.api.WriteTransaction;
16 import org.opendaylight.controller.md.sal.common.api.data.LogicalDatastoreType;
17 import org.opendaylight.vpnservice.interfacemgr.IfmUtil;
18 import org.opendaylight.vpnservice.interfacemgr.commons.InterfaceManagerCommonUtils;
19 import org.opendaylight.vpnservice.interfacemgr.commons.InterfaceMetaUtils;
20 import org.opendaylight.vpnservice.interfacemgr.servicebindings.flowbased.utilities.FlowBasedServicesUtils;
21 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.interfaces.rev140508.interfaces.Interface;
22 import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.NodeConnectorId;
23 import org.opendaylight.yang.gen.v1.urn.opendaylight.vpnservice.idmanager.rev150403.IdManagerService;
24 import org.opendaylight.yang.gen.v1.urn.opendaylight.vpnservice.interfacemgr.meta.rev151007._interface.child.info.InterfaceParentEntry;
25 import org.opendaylight.yang.gen.v1.urn.opendaylight.vpnservice.interfacemgr.meta.rev151007._interface.child.info.InterfaceParentEntryKey;
26 import org.opendaylight.yang.gen.v1.urn.opendaylight.vpnservice.interfacemgr.meta.rev151007._interface.child.info._interface.parent.entry.InterfaceChildEntry;
27 import org.opendaylight.yang.gen.v1.urn.opendaylight.vpnservice.interfacemgr.meta.rev151007._interface.child.info._interface.parent.entry.InterfaceChildEntryKey;
28 import org.opendaylight.yang.gen.v1.urn.opendaylight.vpnservice.interfacemgr.rev150331.IfL2vlan;
29 import org.opendaylight.yang.gen.v1.urn.opendaylight.vpnservice.interfacemgr.rev150331.ParentRefs;
30 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
31 import org.slf4j.Logger;
32 import org.slf4j.LoggerFactory;
33
34 import com.google.common.util.concurrent.ListenableFuture;
35
36 public class OvsVlanMemberConfigRemoveHelper {
37     private static final Logger LOG = LoggerFactory.getLogger(OvsVlanMemberConfigRemoveHelper.class);
38     public static List<ListenableFuture<Void>> removeConfiguration(DataBroker dataBroker, ParentRefs parentRefs,
39                                                                 Interface interfaceOld, IfL2vlan ifL2vlan,
40                                                                 IdManagerService idManager) {
41         List<ListenableFuture<Void>> futures = new ArrayList<>();
42         WriteTransaction t = dataBroker.newWriteOnlyTransaction();
43
44         InterfaceParentEntryKey interfaceParentEntryKey = new InterfaceParentEntryKey(parentRefs.getParentInterface());
45         InstanceIdentifier<InterfaceParentEntry> interfaceParentEntryIid =
46                 InterfaceMetaUtils.getInterfaceParentEntryIdentifier(interfaceParentEntryKey);
47         InterfaceParentEntry interfaceParentEntry =
48                 InterfaceMetaUtils.getInterfaceParentEntryFromConfigDS(interfaceParentEntryIid, dataBroker);
49
50         List<InterfaceChildEntry> interfaceChildEntries = interfaceParentEntry.getInterfaceChildEntry();
51         if (interfaceChildEntries.size() <= 1) {
52             t.delete(LogicalDatastoreType.CONFIGURATION, interfaceParentEntryIid);
53         } else {
54             InterfaceChildEntryKey interfaceChildEntryKey = new InterfaceChildEntryKey(interfaceOld.getName());
55             InstanceIdentifier<InterfaceChildEntry> interfaceChildEntryIid =
56                     InterfaceMetaUtils.getInterfaceChildEntryIdentifier(interfaceParentEntryKey, interfaceChildEntryKey);
57             t.delete(LogicalDatastoreType.CONFIGURATION, interfaceChildEntryIid);
58         }
59
60         org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.interfaces.rev140508.interfaces.state.Interface ifState =
61                 InterfaceManagerCommonUtils.getInterfaceStateFromOperDS(parentRefs.getParentInterface(), dataBroker);
62         if (ifState != null) {
63             /* FIXME -- The below code is needed if vlan-trunks should be updated in the of-port
64
65             String lowerLayerIf = ifState.getLowerLayerIf().get(0);
66             NodeConnectorId nodeConnectorId = new NodeConnectorId(lowerLayerIf);
67             BigInteger dpId = new BigInteger(IfmUtil.getDpnFromNodeConnectorId(nodeConnectorId));
68
69             BridgeRefEntryKey BridgeRefEntryKey = new BridgeRefEntryKey(dpId);
70             InstanceIdentifier<BridgeRefEntry> dpnBridgeEntryIid =
71                     InterfaceMetaUtils.getBridgeRefEntryIdentifier(BridgeRefEntryKey);
72             BridgeRefEntry bridgeRefEntry =
73                     InterfaceMetaUtils.getBridgeRefEntryFromOperDS(dpnBridgeEntryIid, dataBroker);
74             if (bridgeRefEntry != null) {
75                 InstanceIdentifier<OvsdbBridgeAugmentation> bridgeIid =
76                         (InstanceIdentifier<OvsdbBridgeAugmentation>)bridgeRefEntry.getBridgeReference().getValue();
77                 Optional<OvsdbBridgeAugmentation> bridgeNodeOptional =
78                         IfmUtil.read(LogicalDatastoreType.OPERATIONAL, bridgeIid, dataBroker);
79                 if (bridgeNodeOptional.isPresent()) {
80                     OvsdbBridgeAugmentation ovsdbBridgeAugmentation = bridgeNodeOptional.get();
81                     String bridgeName = ovsdbBridgeAugmentation.getBridgeName().getValue();
82                     VlanTrunkSouthboundUtils.updateVlanMemberInTrunk(bridgeIid, ifL2vlan,
83                             ovsdbBridgeAugmentation, bridgeName, parentRefs.getParentInterface(), dataBroker, t);
84                 }
85             } */
86
87             String ncStr = ifState.getLowerLayerIf().get(0);
88             NodeConnectorId nodeConnectorId = new NodeConnectorId(ncStr);
89             BigInteger dpId = new BigInteger(IfmUtil.getDpnFromNodeConnectorId(nodeConnectorId));
90             InstanceIdentifier<org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.interfaces.rev140508.interfaces.state.Interface> ifStateId =
91                     IfmUtil.buildStateInterfaceId(interfaceOld.getName());
92             t.delete(LogicalDatastoreType.OPERATIONAL, ifStateId);
93             FlowBasedServicesUtils.removeIngressFlow(interfaceOld, dpId, t);
94         }
95
96         futures.add(t.submit());
97         return futures;
98     }
99 }