Make TransactionBuilder type-aware
[ovsdb.git] / hwvtepsouthbound / hwvtepsouthbound-impl / src / main / java / org / opendaylight / ovsdb / hwvtepsouthbound / transact / McastMacsLocalRemoveCommand.java
1 /*
2  * Copyright © 2015, 2017 China Telecom Beijing Research Institute 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.ovsdb.hwvtepsouthbound.transact;
10
11 import static org.opendaylight.ovsdb.lib.operations.Operations.op;
12
13 import com.google.common.base.Optional;
14 import java.util.Collection;
15 import java.util.Collections;
16 import java.util.List;
17 import java.util.Map;
18 import java.util.Map.Entry;
19 import org.opendaylight.controller.md.sal.binding.api.DataTreeModification;
20 import org.opendaylight.ovsdb.lib.notation.UUID;
21 import org.opendaylight.ovsdb.lib.operations.TransactionBuilder;
22 import org.opendaylight.ovsdb.schema.hardwarevtep.McastMacsLocal;
23 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.ovsdb.hwvtep.rev150901.HwvtepGlobalAugmentation;
24 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.ovsdb.hwvtep.rev150901.hwvtep.global.attributes.LocalMcastMacs;
25 import org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.topology.rev131021.network.topology.topology.Node;
26 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
27 import org.slf4j.Logger;
28 import org.slf4j.LoggerFactory;
29
30 public class McastMacsLocalRemoveCommand extends AbstractTransactCommand<LocalMcastMacs, HwvtepGlobalAugmentation> {
31     private static final Logger LOG = LoggerFactory.getLogger(McastMacsLocalRemoveCommand.class);
32
33     public McastMacsLocalRemoveCommand(final HwvtepOperationalState state,
34             final Collection<DataTreeModification<Node>> changes) {
35         super(state, changes);
36     }
37
38     @Override
39     public void execute(final TransactionBuilder transaction) {
40         Map<InstanceIdentifier<Node>, List<LocalMcastMacs>> removeds =
41                 extractRemoved(getChanges(),LocalMcastMacs.class);
42         if (!removeds.isEmpty()) {
43             for (Entry<InstanceIdentifier<Node>, List<LocalMcastMacs>> removed:
44                 removeds.entrySet()) {
45                 removeMcastMacLocal(transaction,  removed.getKey(), removed.getValue());
46             }
47         }
48     }
49
50     private void removeMcastMacLocal(final TransactionBuilder transaction,
51             final InstanceIdentifier<Node> instanceIdentifier, final List<LocalMcastMacs> macList) {
52         for (LocalMcastMacs mac: macList) {
53             LOG.debug("Removing localMcastMacs, mac address: {}", mac.getMacEntryKey().getValue());
54             Optional<LocalMcastMacs> operationalMacOptional =
55                     getOperationalState().getLocalMcastMacs(instanceIdentifier, mac.key());
56             McastMacsLocal mcastMacsLocal = transaction.getTypedRowSchema(McastMacsLocal.class);
57             if (operationalMacOptional.isPresent() && operationalMacOptional.get().getMacEntryUuid() != null) {
58                 //when mac entry is deleted, its referenced locator set and locators are deleted automatically.
59                 //TODO: locator in config DS is not deleted
60                 UUID macEntryUUID = new UUID(operationalMacOptional.get().getMacEntryUuid().getValue());
61                 mcastMacsLocal.getUuidColumn().setData(macEntryUUID);
62                 transaction.add(op.delete(mcastMacsLocal.getSchema())
63                         .where(mcastMacsLocal.getUuidColumn().getSchema().opEqual(macEntryUUID)).build());
64                 transaction.add(op.comment("McastMacLocal: Deleting " + mac.getMacEntryKey().getValue()));
65             } else {
66                 LOG.warn("Unable to delete localMcastMacs {} because it was not found in the operational store",
67                         mac.getMacEntryKey().getValue());
68             }
69         }
70     }
71
72     @Override
73     protected List<LocalMcastMacs> getData(final HwvtepGlobalAugmentation augmentation) {
74         return augmentation.getLocalMcastMacs();
75     }
76
77     @Override
78     protected boolean cascadeDelete() {
79         return true;
80     }
81
82     @Override
83     protected UnMetDependencyGetter getDependencyGetter() {
84         return MAC_DEPENDENCY_GETTER;
85     }
86
87     static UnMetDependencyGetter MAC_DEPENDENCY_GETTER = new MacDependencyGetter();
88
89     public static class MacDependencyGetter extends UnMetDependencyGetter<LocalMcastMacs> {
90         @Override
91         public List<InstanceIdentifier<?>> getLogicalSwitchDependencies(final LocalMcastMacs data) {
92             return Collections.singletonList(data.getLogicalSwitchRef().getValue());
93         }
94
95         @Override
96         public List<InstanceIdentifier<?>> getTerminationPointDependencies(final LocalMcastMacs data) {
97             return Collections.emptyList();
98         }
99     }
100
101     @Override
102     protected boolean isRemoveCommand() {
103         return true;
104     }
105 }