Merge "Removing { } from NormalizedNodeJsonBodyWriter"
[controller.git] / opendaylight / networkconfiguration / neutron / implementation / src / main / java / org / opendaylight / controller / networkconfig / neutron / implementation / NeutronNetworkInterface.java
1 /*
2  * Copyright IBM Corporation, 2013.  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.controller.networkconfig.neutron.implementation;
10
11 import java.lang.reflect.Method;
12 import java.util.ArrayList;
13 import java.util.HashSet;
14 import java.util.List;
15 import java.util.Map.Entry;
16 import java.util.Set;
17 import java.util.concurrent.ConcurrentHashMap;
18 import java.util.concurrent.ConcurrentMap;
19
20 import org.opendaylight.controller.networkconfig.neutron.INeutronNetworkCRUD;
21 import org.opendaylight.controller.networkconfig.neutron.NeutronNetwork;
22 import org.slf4j.Logger;
23 import org.slf4j.LoggerFactory;
24
25 public class NeutronNetworkInterface implements INeutronNetworkCRUD {
26     private static final Logger logger = LoggerFactory.getLogger(NeutronNetworkInterface.class);
27     private ConcurrentMap<String, NeutronNetwork> networkDB = new ConcurrentHashMap<String, NeutronNetwork>();
28
29
30
31
32     // this method uses reflection to update an object from it's delta.
33
34     private boolean overwrite(Object target, Object delta) {
35         Method[] methods = target.getClass().getMethods();
36
37         for(Method toMethod: methods){
38             if(toMethod.getDeclaringClass().equals(target.getClass())
39                     && toMethod.getName().startsWith("set")){
40
41                 String toName = toMethod.getName();
42                 String fromName = toName.replace("set", "get");
43
44                 try {
45                     Method fromMethod = delta.getClass().getMethod(fromName);
46                     Object value = fromMethod.invoke(delta, (Object[])null);
47                     if(value != null){
48                         toMethod.invoke(target, value);
49                     }
50                 } catch (Exception e) {
51                     e.printStackTrace();
52                     return false;
53                 }
54             }
55         }
56         return true;
57     }
58
59     // IfNBNetworkCRUD methods
60
61     @Override
62     public boolean networkExists(String uuid) {
63         return networkDB.containsKey(uuid);
64     }
65
66     @Override
67     public NeutronNetwork getNetwork(String uuid) {
68         if (!networkExists(uuid)) {
69             return null;
70         }
71         return networkDB.get(uuid);
72     }
73
74     @Override
75     public List<NeutronNetwork> getAllNetworks() {
76         Set<NeutronNetwork> allNetworks = new HashSet<NeutronNetwork>();
77         for (Entry<String, NeutronNetwork> entry : networkDB.entrySet()) {
78             NeutronNetwork network = entry.getValue();
79             allNetworks.add(network);
80         }
81         logger.debug("Exiting getAllNetworks, Found {} OpenStackNetworks", allNetworks.size());
82         List<NeutronNetwork> ans = new ArrayList<NeutronNetwork>();
83         ans.addAll(allNetworks);
84         return ans;
85     }
86
87     @Override
88     public boolean addNetwork(NeutronNetwork input) {
89         if (networkExists(input.getID())) {
90             return false;
91         }
92         networkDB.putIfAbsent(input.getID(), input);
93       //TODO: add code to find INeutronNetworkAware services and call newtorkCreated on them
94         return true;
95     }
96
97     @Override
98     public boolean removeNetwork(String uuid) {
99         if (!networkExists(uuid)) {
100             return false;
101         }
102         networkDB.remove(uuid);
103       //TODO: add code to find INeutronNetworkAware services and call newtorkDeleted on them
104         return true;
105     }
106
107     @Override
108     public boolean updateNetwork(String uuid, NeutronNetwork delta) {
109         if (!networkExists(uuid)) {
110             return false;
111         }
112         NeutronNetwork target = networkDB.get(uuid);
113         return overwrite(target, delta);
114     }
115
116     @Override
117     public boolean networkInUse(String netUUID) {
118         if (!networkExists(netUUID)) {
119             return true;
120         }
121         NeutronNetwork target = networkDB.get(netUUID);
122         if (target.getPortsOnNetwork().size() > 0) {
123             return true;
124         }
125         return false;
126     }
127 }