Merge "Fix Checkstyle violations related to exception handling in elanmanager."
[netvirt.git] / vpnservice / elanmanager / elanmanager-impl / src / main / java / org / opendaylight / netvirt / elan / internal / InterfaceAddWorkerOnElan.java
1 /*
2  * Copyright (c) 2016 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.netvirt.elan.internal;
9
10 import com.google.common.util.concurrent.ListenableFuture;
11 import java.util.ArrayList;
12 import java.util.List;
13 import java.util.concurrent.Callable;
14 import org.opendaylight.genius.interfacemanager.globals.InterfaceInfo;
15 import org.opendaylight.netvirt.elan.ElanException;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.netvirt.elan.rev150602.elan.instances.ElanInstance;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.netvirt.elan.rev150602.elan.interfaces.ElanInterface;
18 import org.slf4j.Logger;
19 import org.slf4j.LoggerFactory;
20
21 public class InterfaceAddWorkerOnElan implements Callable<List<ListenableFuture<Void>>> {
22
23     private static final Logger LOG = LoggerFactory.getLogger(InterfaceAddWorkerOnElan.class);
24
25     private String key;
26     private ElanInterface elanInterface;
27     private ElanInstance elanInstance;
28     private InterfaceInfo interfaceInfo;
29     private ElanInterfaceManager dataChangeListener;
30
31     public InterfaceAddWorkerOnElan(String key, ElanInterface elanInterface, InterfaceInfo interfaceInfo,
32                                     ElanInstance elanInstance, ElanInterfaceManager dataChangeListener) {
33         super();
34         this.key = key;
35         this.elanInterface = elanInterface;
36         this.interfaceInfo = interfaceInfo;
37         this.elanInstance = elanInstance;
38         this.dataChangeListener = dataChangeListener;
39     }
40
41     @Override
42     public String toString() {
43         return "InterfaceAddWorkerOnElan [key=" + key + ", elanInterface=" + elanInterface + ", elanInstance="
44             + elanInstance + ", interfaceInfo=" + interfaceInfo + "]";
45     }
46
47
48     @Override
49     @SuppressWarnings("checkstyle:IllegalCatch")
50     public List<ListenableFuture<Void>> call() throws Exception {
51         List<ListenableFuture<Void>> futures = new ArrayList<>();
52         try {
53             dataChangeListener.addElanInterface(futures, elanInterface, interfaceInfo, elanInstance);
54         } catch (RuntimeException e) {
55             throw new ElanException("Error while processing " + key + " for " + elanInterface, e);
56         }
57         return futures;
58     }
59
60 }