2 * Copyright (c) 2016 Ericsson India Global Services Pvt Ltd. and others. All rights reserved.
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
8 package org.opendaylight.netvirt.elan.internal;
10 import com.google.common.util.concurrent.ListenableFuture;
11 import java.util.ArrayList;
12 import java.util.List;
13 import java.util.concurrent.Callable;
15 import org.opendaylight.genius.interfacemanager.globals.InterfaceInfo;
16 import org.opendaylight.netvirt.elan.utils.ElanUtils;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.netvirt.elan.rev150602.elan.instances.ElanInstance;
18 import org.slf4j.Logger;
19 import org.slf4j.LoggerFactory;
21 public class InterfaceRemoveWorkerOnElan implements Callable<List<ListenableFuture<Void>>> {
23 private static final Logger LOG = LoggerFactory.getLogger(InterfaceRemoveWorkerOnElan.class);
25 private final String key;
26 private final ElanInstance elanInfo;
27 private final String interfaceName;
28 private final InterfaceInfo interfaceInfo;
29 private final boolean isInterfaceStateRemoved;
30 private final ElanInterfaceManager dataChangeListener;
32 public InterfaceRemoveWorkerOnElan(String key, ElanInstance elanInfo, String interfaceName,
33 InterfaceInfo interfaceInfo, boolean isInterfaceStateRemoved, ElanInterfaceManager dataChangeListener) {
35 this.elanInfo = elanInfo;
36 this.interfaceName = interfaceName;
37 this.interfaceInfo = interfaceInfo;
38 this.isInterfaceStateRemoved = isInterfaceStateRemoved;
39 this.dataChangeListener = dataChangeListener;
43 public String toString() {
44 return "InterfaceRemoveWorkerOnElan [key=" + key + ", elanInfo=" + elanInfo
45 + ", interfaceName=" + interfaceName
46 + ", interfaceInfo=" + interfaceInfo + "]";
50 @SuppressWarnings("checkstyle:IllegalCatch")
51 public List<ListenableFuture<Void>> call() throws Exception {
52 List<ListenableFuture<Void>> futures = new ArrayList<>();
54 futures.addAll(dataChangeListener.removeElanInterface(elanInfo, interfaceName, interfaceInfo,
55 isInterfaceStateRemoved));
56 } catch (RuntimeException e) {
57 LOG.error("Error while processing key {} for elan interface {} and elan {}",
58 key, interfaceName, elanInfo, e);
59 ElanUtils.addToListenableFutureIfTxException(e, futures);