blob: c830d44f9b7942690ff74f17a191b536fccbaeb8 [file] [log] [blame]
HIGUCHI Yuta2d011582013-06-15 01:47:11 -07001package net.onrc.onos.ofcontroller.core.internal;
Pankaj Berdeb6031342013-02-19 18:51:51 -08002
Jonathan Hart1a6f1d62013-11-14 11:33:46 -08003import java.util.ArrayList;
Jonathan Hartd6ed62b2013-11-01 13:18:25 -07004import java.util.Arrays;
Jonathan Hart18ad9502013-12-15 18:28:00 -08005import java.util.Iterator;
Pankaj Berdeb6031342013-02-19 18:51:51 -08006import java.util.List;
Jonathan Hartd6ed62b2013-11-01 13:18:25 -07007
8import net.floodlightcontroller.devicemanager.IDevice;
9import net.floodlightcontroller.devicemanager.SwitchPort;
10import net.onrc.onos.graph.GraphDBOperation;
11import net.onrc.onos.ofcontroller.core.IDeviceStorage;
12import net.onrc.onos.ofcontroller.core.INetMapTopologyObjects.IDeviceObject;
13import net.onrc.onos.ofcontroller.core.INetMapTopologyObjects.IIpv4Address;
14import net.onrc.onos.ofcontroller.core.INetMapTopologyObjects.IPortObject;
Jonathan Hartd857ad62013-12-14 18:08:17 -080015import net.onrc.onos.ofcontroller.core.INetMapTopologyObjects.ISwitchObject;
16import net.onrc.onos.ofcontroller.devicemanager.OnosDevice;
Jonathan Hartd6ed62b2013-11-01 13:18:25 -070017
Pankaj Berdeb6031342013-02-19 18:51:51 -080018import org.openflow.util.HexString;
19import org.slf4j.Logger;
20import org.slf4j.LoggerFactory;
21
22import com.google.common.collect.Lists;
Jonathan Hart1a6f1d62013-11-14 11:33:46 -080023import com.google.common.net.InetAddresses;
Pankaj Berdeb6031342013-02-19 18:51:51 -080024import com.thinkaurelius.titan.core.TitanException;
Pankaj Berdeb6031342013-02-19 18:51:51 -080025
Teru87cd2da2013-06-15 20:33:08 -070026/**
27 * This is the class for storing the information of devices into CassandraDB
28 * @author Pankaj
29 */
Pankaj Berdeb6031342013-02-19 18:51:51 -080030public class DeviceStorageImpl implements IDeviceStorage {
Jonathan Hart1a6f1d62013-11-14 11:33:46 -080031 protected final static Logger log = LoggerFactory.getLogger(DeviceStorageImpl.class);
Yuta HIGUCHI67a7a3e2014-01-03 14:51:34 -080032
Teru87cd2da2013-06-15 20:33:08 -070033 private GraphDBOperation ope;
Pankaj Berdeb6031342013-02-19 18:51:51 -080034
Teru87cd2da2013-06-15 20:33:08 -070035 /***
36 * Initialize function. Before you use this class, please call this method
37 * @param conf configuration file for Cassandra DB
38 */
Pankaj Berdeb6031342013-02-19 18:51:51 -080039 @Override
40 public void init(String conf) {
Jonathan Hartd6ed62b2013-11-01 13:18:25 -070041 try {
Toshio Koidebfe9b922013-06-18 10:56:05 -070042 ope = new GraphDBOperation(conf);
Jonathan Hartd6ed62b2013-11-01 13:18:25 -070043 } catch (TitanException e) {
44 log.error("Couldn't open graph operation", e);
Teru87cd2da2013-06-15 20:33:08 -070045 }
Yuta HIGUCHI67a7a3e2014-01-03 14:51:34 -080046 }
47
Teru87cd2da2013-06-15 20:33:08 -070048 /***
49 * Finalize/close function. After you use this class, please call this method.
50 * It will close the DB connection.
51 */
Pankaj Berdeb6031342013-02-19 18:51:51 -080052 @Override
53 public void close() {
Toshio Koidebfe9b922013-06-18 10:56:05 -070054 ope.close();
Teru87cd2da2013-06-15 20:33:08 -070055 }
Yuta HIGUCHI67a7a3e2014-01-03 14:51:34 -080056
Teru87cd2da2013-06-15 20:33:08 -070057 /***
58 * Finalize/close function. After you use this class, please call this method.
Pavlin Radoslavovef0cb002013-06-21 14:55:23 -070059 * It will close the DB connection. This is for Java garbage collection.
Teru87cd2da2013-06-15 20:33:08 -070060 */
61 @Override
Yuta HIGUCHI67a7a3e2014-01-03 14:51:34 -080062 protected void finalize() {
Teru87cd2da2013-06-15 20:33:08 -070063 close();
Pankaj Berdeb6031342013-02-19 18:51:51 -080064 }
65
Teru87cd2da2013-06-15 20:33:08 -070066 /***
67 * This function is for adding the device into the DB.
68 * @param device The device you want to add into the DB.
Yuta HIGUCHI67a7a3e2014-01-03 14:51:34 -080069 * @return IDeviceObject which was added in the DB.
Teru87cd2da2013-06-15 20:33:08 -070070 */
Pankaj Berdeb6031342013-02-19 18:51:51 -080071 @Override
72 public IDeviceObject addDevice(IDevice device) {
Pankaj Berdeb6031342013-02-19 18:51:51 -080073 IDeviceObject obj = null;
Jonathan Hartba9ced92013-11-24 16:52:13 -080074 for (int i = 0; i < 6; i++) {
75 try {
76 if (i > 0) {
77 log.debug("Retrying add device: i is {}", i);
78 }
79 if ((obj = ope.searchDevice(device.getMACAddressString())) != null) {
80 log.debug("Adding device {}: found existing device", device.getMACAddressString());
81 } else {
82 obj = ope.newDevice();
83 log.debug("Adding device {}: creating new device", device.getMACAddressString());
84 }
Yuta HIGUCHI67a7a3e2014-01-03 14:51:34 -080085
Naoki Shiotae2f4da72013-12-09 16:34:17 -080086 if (obj == null) {
87 return null;
88 }
Yuta HIGUCHI67a7a3e2014-01-03 14:51:34 -080089
Jonathan Hartba9ced92013-11-24 16:52:13 -080090 changeDeviceAttachments(device, obj);
Yuta HIGUCHI67a7a3e2014-01-03 14:51:34 -080091
Jonathan Hartba9ced92013-11-24 16:52:13 -080092 changeDeviceIpv4Addresses(device, obj);
Yuta HIGUCHI67a7a3e2014-01-03 14:51:34 -080093
Jonathan Hartba9ced92013-11-24 16:52:13 -080094 obj.setMACAddress(device.getMACAddressString());
95 obj.setType("device");
96 obj.setState("ACTIVE");
97 ope.commit();
Yuta HIGUCHI67a7a3e2014-01-03 14:51:34 -080098
Jonathan Hartba9ced92013-11-24 16:52:13 -080099 break;
100 //log.debug("Adding device {}",device.getMACAddressString());
101 } catch (TitanException e) {
102 ope.rollback();
103 log.error("Adding device {} failed", device.getMACAddressString(), e);
104 obj = null;
105 }
Jonathan Hartd6ed62b2013-11-01 13:18:25 -0700106 }
Yuta HIGUCHI67a7a3e2014-01-03 14:51:34 -0800107
108 return obj;
Pankaj Berdeb6031342013-02-19 18:51:51 -0800109 }
110
Teru87cd2da2013-06-15 20:33:08 -0700111 /***
112 * This function is for updating the Device properties.
113 * @param device The device you want to add into the DB.
Yuta HIGUCHI67a7a3e2014-01-03 14:51:34 -0800114 * @return IDeviceObject which was added in the DB.
Teru87cd2da2013-06-15 20:33:08 -0700115 */
Pankaj Berdeb6031342013-02-19 18:51:51 -0800116 @Override
117 public IDeviceObject updateDevice(IDevice device) {
Pankaj Berdeb6031342013-02-19 18:51:51 -0800118 return addDevice(device);
119 }
120
Teru87cd2da2013-06-15 20:33:08 -0700121 /***
122 * This function is for removing the Device from the DB.
123 * @param device The device you want to delete from the DB.
124 */
Pankaj Berdeb6031342013-02-19 18:51:51 -0800125 @Override
Pankaj Berdeda809572013-02-22 15:31:20 -0800126 public void removeDevice(IDevice device) {
Pankaj Berdeda809572013-02-22 15:31:20 -0800127 IDeviceObject dev;
Yuta HIGUCHI67a7a3e2014-01-03 14:51:34 -0800128
Jonathan Hart1a6f1d62013-11-14 11:33:46 -0800129 if ((dev = ope.searchDevice(device.getMACAddressString())) != null) {
130 removeDevice(dev);
131 }
132 }
Yuta HIGUCHI67a7a3e2014-01-03 14:51:34 -0800133
134 @Override
Jonathan Hart1a6f1d62013-11-14 11:33:46 -0800135 public void removeDevice(IDeviceObject deviceObject) {
136 String deviceMac = deviceObject.getMACAddress();
137
Jonathan Hart4cfd1932013-11-19 16:42:25 -0800138 removeDeviceImpl(deviceObject);
Jonathan Hart1a6f1d62013-11-14 11:33:46 -0800139
Pankaj Berdeda809572013-02-22 15:31:20 -0800140 try {
Jonathan Hart1a6f1d62013-11-14 11:33:46 -0800141 ope.commit();
Jonathan Hart4cfd1932013-11-19 16:42:25 -0800142 log.debug("DeviceStorage:removeDevice mac:{} done", deviceMac);
Jonathan Hartd6ed62b2013-11-01 13:18:25 -0700143 } catch (TitanException e) {
Teru87cd2da2013-06-15 20:33:08 -0700144 ope.rollback();
Jonathan Hart1a6f1d62013-11-14 11:33:46 -0800145 log.error("DeviceStorage:removeDevice mac:{} failed", deviceMac);
Pankaj Berdeda809572013-02-22 15:31:20 -0800146 }
Pankaj Berdeb6031342013-02-19 18:51:51 -0800147 }
Yuta HIGUCHI67a7a3e2014-01-03 14:51:34 -0800148
Jonathan Hart4cfd1932013-11-19 16:42:25 -0800149 public void removeDeviceImpl(IDeviceObject deviceObject) {
150 for (IIpv4Address ipv4AddressVertex : deviceObject.getIpv4Addresses()) {
151 ope.removeIpv4Address(ipv4AddressVertex);
152 }
Yuta HIGUCHI67a7a3e2014-01-03 14:51:34 -0800153
Jonathan Hart4cfd1932013-11-19 16:42:25 -0800154 ope.removeDevice(deviceObject);
155 }
Pankaj Berdeb6031342013-02-19 18:51:51 -0800156
Teru87cd2da2013-06-15 20:33:08 -0700157 /***
158 * This function is for getting the Device from the DB by Mac address of the device.
159 * @param mac The device mac address you want to get from the DB.
160 * @return IDeviceObject you want to get.
161 */
Pankaj Berdeb6031342013-02-19 18:51:51 -0800162 @Override
163 public IDeviceObject getDeviceByMac(String mac) {
Teru87cd2da2013-06-15 20:33:08 -0700164 return ope.searchDevice(mac);
Pankaj Berdeb6031342013-02-19 18:51:51 -0800165 }
166
Teru87cd2da2013-06-15 20:33:08 -0700167 /***
168 * This function is for getting the Device from the DB by IP address of the device.
169 * @param ip The device ip address you want to get from the DB.
170 * @return IDeviceObject you want to get.
171 */
Pankaj Berdeb6031342013-02-19 18:51:51 -0800172 @Override
Jonathan Hartd6ed62b2013-11-01 13:18:25 -0700173 public IDeviceObject getDeviceByIP(int ipv4Address) {
174 try {
175 IIpv4Address ipv4AddressVertex = ope.searchIpv4Address(ipv4Address);
176 if (ipv4AddressVertex != null) {
177 return ipv4AddressVertex.getDevice();
Teru87cd2da2013-06-15 20:33:08 -0700178 }
179 return null;
180 }
Jonathan Hartd6ed62b2013-11-01 13:18:25 -0700181 catch (TitanException e) {
Teru87cd2da2013-06-15 20:33:08 -0700182 log.error("DeviceStorage:getDeviceByIP:{} failed");
183 return null;
184 }
Pankaj Berdeb6031342013-02-19 18:51:51 -0800185 }
186
Teru87cd2da2013-06-15 20:33:08 -0700187 /***
188 * This function is for changing the Device attachment point.
189 * @param device The device you want change the attachment point
190 */
Pankaj Berdeda809572013-02-22 15:31:20 -0800191 @Override
192 public void changeDeviceAttachments(IDevice device) {
Pankaj Berdeda809572013-02-22 15:31:20 -0800193 IDeviceObject obj = null;
194 try {
Teru87cd2da2013-06-15 20:33:08 -0700195 if ((obj = ope.searchDevice(device.getMACAddressString())) != null) {
Jonathan Hartd6ed62b2013-11-01 13:18:25 -0700196 log.debug("Changing device ports {}: found existing device", device.getMACAddressString());
Pankaj Berdeda809572013-02-22 15:31:20 -0800197 changeDeviceAttachments(device, obj);
Teru87cd2da2013-06-15 20:33:08 -0700198 ope.commit();
199 } else {
Jonathan Hartd6ed62b2013-11-01 13:18:25 -0700200 log.debug("failed to search device...now adding {}", device.getMACAddressString());
Pankaj Berdeda809572013-02-22 15:31:20 -0800201 addDevice(device);
Jonathan Hartd6ed62b2013-11-01 13:18:25 -0700202 }
203 } catch (TitanException e) {
Teru87cd2da2013-06-15 20:33:08 -0700204 ope.rollback();
Pankaj Berdeda809572013-02-22 15:31:20 -0800205 log.error(":addDevice mac:{} failed", device.getMACAddressString());
Yuta HIGUCHI67a7a3e2014-01-03 14:51:34 -0800206 }
Pankaj Berdeda809572013-02-22 15:31:20 -0800207 }
Yuta HIGUCHI67a7a3e2014-01-03 14:51:34 -0800208
Teru87cd2da2013-06-15 20:33:08 -0700209 /***
210 * This function is for changing the Device attachment point.
211 * @param device The new device you want change the attachment point
212 * @param obj The old device IDeviceObject that is going to change the attachment point.
213 */
Pankaj Berdeda809572013-02-22 15:31:20 -0800214 public void changeDeviceAttachments(IDevice device, IDeviceObject obj) {
215 SwitchPort[] attachmentPoints = device.getAttachmentPoints();
216 List<IPortObject> attachedPorts = Lists.newArrayList(obj.getAttachedPorts());
Jonathan Hartd6ed62b2013-11-01 13:18:25 -0700217
218 for (SwitchPort ap : attachmentPoints) {
219 //Check if there is the port
220 IPortObject port = ope.searchPort(HexString.toHexString(ap.getSwitchDPID()),
221 (short) ap.getPort());
Yuta HIGUCHI67a7a3e2014-01-03 14:51:34 -0800222 log.debug("New Switch Port is {},{}",
Jonathan Hartd6ed62b2013-11-01 13:18:25 -0700223 HexString.toHexString(ap.getSwitchDPID()), (short) ap.getPort());
224
225 if (port != null){
226 if (attachedPorts.contains(port)) {
227 log.debug("This is the port you already attached {}: do nothing", device.getMACAddressString());
228 //This port will be remained, so remove from the removed port lists.
229 attachedPorts.remove(port);
230 } else {
231 log.debug("Adding device {}: attaching to port", device.getMACAddressString());
Yuta HIGUCHI67a7a3e2014-01-03 14:51:34 -0800232 port.setDevice(obj);
Jonathan Hartd6ed62b2013-11-01 13:18:25 -0700233 }
234
Yuta HIGUCHI5302ddf2014-01-06 12:53:35 -0800235 log.debug("port number is {}", port.getNumber());
236 log.debug("port desc is {}", port.getDesc());
Jonathan Hartd6ed62b2013-11-01 13:18:25 -0700237 }
Yuta HIGUCHI67a7a3e2014-01-03 14:51:34 -0800238 }
Jonathan Hartd6ed62b2013-11-01 13:18:25 -0700239
240 for (IPortObject port: attachedPorts) {
241 log.debug("Detaching the device {}: detaching from port", device.getMACAddressString());
242 port.removeDevice(obj);
Yuta HIGUCHI67a7a3e2014-01-03 14:51:34 -0800243
Jonathan Hart1a6f1d62013-11-14 11:33:46 -0800244 if (!obj.getAttachedPorts().iterator().hasNext()) {
245 // XXX If there are no more ports attached to the device,
246 // delete it. Otherwise we have a situation where the
247 // device remains forever with an IP address attached.
248 // When we implement device probing we should get rid of this.
249 removeDevice(obj);
250 }
Jonathan Hartd6ed62b2013-11-01 13:18:25 -0700251 }
Pankaj Berdeda809572013-02-22 15:31:20 -0800252 }
253
Teru87cd2da2013-06-15 20:33:08 -0700254 /***
255 * This function is for changing the Device IPv4 address.
256 * @param device The new device you want change the ipaddress
257 */
Pankaj Berdeda809572013-02-22 15:31:20 -0800258 @Override
259 public void changeDeviceIPv4Address(IDevice device) {
Jonathan Hartd6ed62b2013-11-01 13:18:25 -0700260 log.debug("Changing IP address for {} to {}", device.getMACAddressString(),
261 device.getIPv4Addresses());
Pankaj Berdeda809572013-02-22 15:31:20 -0800262 IDeviceObject obj;
263 try {
Teru87cd2da2013-06-15 20:33:08 -0700264 if ((obj = ope.searchDevice(device.getMACAddressString())) != null) {
Jonathan Hartc8ae36c2013-11-03 19:06:40 -0800265 changeDeviceIpv4Addresses(device, obj);
Yuta HIGUCHI67a7a3e2014-01-03 14:51:34 -0800266
Teru87cd2da2013-06-15 20:33:08 -0700267 ope.commit();
Pankaj Berdeda809572013-02-22 15:31:20 -0800268 } else {
269 log.error(":changeDeviceIPv4Address mac:{} failed", device.getMACAddressString());
Yuta HIGUCHI67a7a3e2014-01-03 14:51:34 -0800270 }
Pankaj Berdeda809572013-02-22 15:31:20 -0800271 } catch (TitanException e) {
Teru87cd2da2013-06-15 20:33:08 -0700272 ope.rollback();
Jonathan Hartd6ed62b2013-11-01 13:18:25 -0700273 log.error(":changeDeviceIPv4Address mac:{} failed due to exception {}", device.getMACAddressString(), e);
Pankaj Berdeda809572013-02-22 15:31:20 -0800274 }
275 }
Yuta HIGUCHI67a7a3e2014-01-03 14:51:34 -0800276
Jonathan Hartc8ae36c2013-11-03 19:06:40 -0800277 private void changeDeviceIpv4Addresses(IDevice device, IDeviceObject deviceObject) {
Jonathan Hart1a6f1d62013-11-14 11:33:46 -0800278 List<String> dbIpv4Addresses = new ArrayList<String>();
Jonathan Hartba9ced92013-11-24 16:52:13 -0800279 List<Integer> intDbIpv4Addresses = new ArrayList<Integer>();
Jonathan Hart1a6f1d62013-11-14 11:33:46 -0800280 for (IIpv4Address ipv4Vertex : deviceObject.getIpv4Addresses()) {
281 dbIpv4Addresses.add(InetAddresses.fromInteger(ipv4Vertex.getIpv4Address()).getHostAddress());
Jonathan Hartba9ced92013-11-24 16:52:13 -0800282 intDbIpv4Addresses.add(ipv4Vertex.getIpv4Address());
Jonathan Hart1a6f1d62013-11-14 11:33:46 -0800283 }
Yuta HIGUCHI67a7a3e2014-01-03 14:51:34 -0800284
Jonathan Hart1a6f1d62013-11-14 11:33:46 -0800285 List<String> memIpv4Addresses = new ArrayList<String>();
286 for (int addr : device.getIPv4Addresses()) {
287 memIpv4Addresses.add(InetAddresses.fromInteger(addr).getHostAddress());
288 }
Yuta HIGUCHI67a7a3e2014-01-03 14:51:34 -0800289
Jonathan Hart1a6f1d62013-11-14 11:33:46 -0800290 log.debug("Device IP addresses {}, database IP addresses {}",
291 memIpv4Addresses, dbIpv4Addresses);
Yuta HIGUCHI67a7a3e2014-01-03 14:51:34 -0800292
Jonathan Hartc8ae36c2013-11-03 19:06:40 -0800293 for (int ipv4Address : device.getIPv4Addresses()) {
Jonathan Hartba9ced92013-11-24 16:52:13 -0800294 //if (deviceObject.getIpv4Address(ipv4Address) == null) {
295 if (!intDbIpv4Addresses.contains(ipv4Address)) {
Jonathan Hartc8ae36c2013-11-03 19:06:40 -0800296 IIpv4Address dbIpv4Address = ope.ensureIpv4Address(ipv4Address);
Yuta HIGUCHI67a7a3e2014-01-03 14:51:34 -0800297
Jonathan Hartba9ced92013-11-24 16:52:13 -0800298 /*
Jonathan Hart1a6f1d62013-11-14 11:33:46 -0800299 IDeviceObject oldDevice = dbIpv4Address.getDevice();
300 if (oldDevice != null) {
301 oldDevice.removeIpv4Address(dbIpv4Address);
302 }
Jonathan Hartba9ced92013-11-24 16:52:13 -0800303 */
Yuta HIGUCHI67a7a3e2014-01-03 14:51:34 -0800304
305 log.debug("Adding IP address {}",
Jonathan Hart1a6f1d62013-11-14 11:33:46 -0800306 InetAddresses.fromInteger(ipv4Address).getHostAddress());
Jonathan Hartc8ae36c2013-11-03 19:06:40 -0800307 deviceObject.addIpv4Address(dbIpv4Address);
308 }
309 }
Yuta HIGUCHI67a7a3e2014-01-03 14:51:34 -0800310
Jonathan Hartc8ae36c2013-11-03 19:06:40 -0800311 List<Integer> deviceIpv4Addresses = Arrays.asList(device.getIPv4Addresses());
312 for (IIpv4Address dbIpv4Address : deviceObject.getIpv4Addresses()) {
313 if (!deviceIpv4Addresses.contains(dbIpv4Address.getIpv4Address())) {
Jonathan Hart1a6f1d62013-11-14 11:33:46 -0800314 log.debug("Removing IP address {}",
315 InetAddresses.fromInteger(dbIpv4Address.getIpv4Address())
316 .getHostAddress());
Jonathan Hartc8ae36c2013-11-03 19:06:40 -0800317 deviceObject.removeIpv4Address(dbIpv4Address);
318 }
319 }
320 }
Yuta HIGUCHI67a7a3e2014-01-03 14:51:34 -0800321
Jonathan Hartd857ad62013-12-14 18:08:17 -0800322 /**
323 * Takes an {@link OnosDevice} and adds it into the database. There is no
Yuta HIGUCHI67a7a3e2014-01-03 14:51:34 -0800324 * checking of the database data and removing old data - an
Jonathan Hartd857ad62013-12-14 18:08:17 -0800325 * {@link OnosDevice} basically corresponds to a packet we've just seen,
326 * and we need to add that information into the database.
327 */
328 @Override
329 public void addOnosDevice(OnosDevice onosDevice) {
Jonathan Hartd857ad62013-12-14 18:08:17 -0800330 String macAddress = HexString.toHexString(onosDevice.getMacAddress().toBytes());
Yuta HIGUCHI67a7a3e2014-01-03 14:51:34 -0800331
pingping-lin00926032013-12-18 12:13:08 +0800332 //if the switch port we try to attach a new device already has a link, then stop adding device
333 IPortObject portObject1 = ope.searchPort(HexString.toHexString(
334 onosDevice.getSwitchDPID()), onosDevice.getSwitchPort());
335
Pavlin Radoslavov78073282013-12-19 17:01:23 -0800336 if ((portObject1 != null) && portObject1.getLinkedPorts().iterator().hasNext()) {
Yuta HIGUCHI5302ddf2014-01-06 12:53:35 -0800337 if (log.isDebugEnabled()) {
338 log.debug("stop adding OnosDevice: {} due to there is a link to: {}",
339 onosDevice, portObject1.getLinkedPorts().iterator().next().getPortId());
340 }
pingping-lin00926032013-12-18 12:13:08 +0800341 return;
342 }
Yuta HIGUCHI67a7a3e2014-01-03 14:51:34 -0800343
pingping-lin00926032013-12-18 12:13:08 +0800344 log.debug("addOnosDevice: {}", onosDevice);
345
Jonathan Hartd857ad62013-12-14 18:08:17 -0800346 try {
347 IDeviceObject device = ope.searchDevice(macAddress);
Yuta HIGUCHI67a7a3e2014-01-03 14:51:34 -0800348
Jonathan Hartd857ad62013-12-14 18:08:17 -0800349 if (device == null) {
350 device = ope.newDevice();
351 device.setType("device");
352 device.setState("ACTIVE");
353 device.setMACAddress(macAddress);
354 }
Yuta HIGUCHI67a7a3e2014-01-03 14:51:34 -0800355
Jonathan Hartd857ad62013-12-14 18:08:17 -0800356 // Check if the device has the IP address, add it if it doesn't
Jonathan Hartd857ad62013-12-14 18:08:17 -0800357 if (onosDevice.getIpv4Address() != null) {
358 boolean hasIpAddress = false;
359 for (IIpv4Address ipv4Address : device.getIpv4Addresses()) {
360 if (ipv4Address.getIpv4Address() == onosDevice.getIpv4Address().intValue()) {
361 hasIpAddress = true;
362 break;
363 }
364 }
Yuta HIGUCHI67a7a3e2014-01-03 14:51:34 -0800365
Jonathan Hartd857ad62013-12-14 18:08:17 -0800366 if (!hasIpAddress) {
367 IIpv4Address ipv4Address = ope.ensureIpv4Address(onosDevice.getIpv4Address().intValue());
368 IDeviceObject oldDevice = ipv4Address.getDevice();
369 if (oldDevice != null && oldDevice.getMACAddress() != macAddress) {
370 oldDevice.removeIpv4Address(ipv4Address);
371 }
372 device.addIpv4Address(ipv4Address);
373 }
374 }
Yuta HIGUCHI67a7a3e2014-01-03 14:51:34 -0800375
Jonathan Hartd857ad62013-12-14 18:08:17 -0800376 // Check if the device has the attachment point, add it if not
Jonathan Hart18ad9502013-12-15 18:28:00 -0800377 // TODO single attachment point for now, extend to multiple later
Jonathan Hartd857ad62013-12-14 18:08:17 -0800378 String switchDpid = HexString.toHexString(onosDevice.getSwitchDPID());
379 boolean hasAttachmentPoint = false;
Jonathan Hart18ad9502013-12-15 18:28:00 -0800380 Iterator<IPortObject> it = device.getAttachedPorts().iterator();
381 if (it.hasNext()) {
382 IPortObject existingPort = it.next();
383 if (existingPort != null) {
384 ISwitchObject existingSwitch = existingPort.getSwitch();
385 if (!existingSwitch.getDPID().equals(switchDpid) ||
386 existingPort.getNumber() != onosDevice.getSwitchPort()) {
387 existingPort.removeDevice(device);
388 }
389 else {
390 hasAttachmentPoint = true;
391 }
392 }
393 }
Yuta HIGUCHI67a7a3e2014-01-03 14:51:34 -0800394
Jonathan Hart18ad9502013-12-15 18:28:00 -0800395 /*
Jonathan Hartd857ad62013-12-14 18:08:17 -0800396 for (IPortObject portObject : device.getAttachedPorts()) {
397 ISwitchObject switchObject = portObject.getSwitch();
398 if (switchObject.getDPID().equals(switchDpid)
399 && portObject.getNumber() == onosDevice.getSwitchPort()) {
400 hasAttachmentPoint = true;
401 break;
402 }
403 }
Jonathan Hart18ad9502013-12-15 18:28:00 -0800404 */
Yuta HIGUCHI67a7a3e2014-01-03 14:51:34 -0800405
Jonathan Hartd857ad62013-12-14 18:08:17 -0800406 if (!hasAttachmentPoint) {
407 IPortObject portObject = ope.searchPort(switchDpid, onosDevice.getSwitchPort());
Jonathan Hart18ad9502013-12-15 18:28:00 -0800408 if (portObject != null) {
409 portObject.setDevice(device);
410 }
Jonathan Hartd857ad62013-12-14 18:08:17 -0800411 }
Yuta HIGUCHI67a7a3e2014-01-03 14:51:34 -0800412
Jonathan Hartd857ad62013-12-14 18:08:17 -0800413 ope.commit();
414 }
415 catch (TitanException e) {
416 log.error("addOnosDevice {} failed:", macAddress, e);
417 ope.rollback();
418 }
419 }
Pankaj Berdeda809572013-02-22 15:31:20 -0800420
Pankaj Berdeb6031342013-02-19 18:51:51 -0800421}