blob: 4d94f3dffa4d4f192577ab3f6a39f09e7dca1fec [file] [log] [blame]
Ayaka Koshibeb1ffb002015-08-04 15:10:03 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
Ayaka Koshibeb1ffb002015-08-04 15:10:03 -07003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package org.onosproject.net.device.impl;
17
Ayaka Koshibeb1ffb002015-08-04 15:10:03 -070018import org.onosproject.net.AnnotationKeys;
19import org.onosproject.net.DefaultAnnotations;
20import org.onosproject.net.Device;
21import org.onosproject.net.SparseAnnotations;
andreafe3308f2015-10-06 15:51:25 -070022import org.onosproject.net.config.ConfigOperator;
23import org.onosproject.net.config.basics.BasicDeviceConfig;
Ayaka Koshibeb1ffb002015-08-04 15:10:03 -070024import org.onosproject.net.device.DefaultDeviceDescription;
25import org.onosproject.net.device.DeviceDescription;
26import org.slf4j.Logger;
27
Sho SHIMIZU0044f572015-09-09 14:14:59 -070028import java.util.Objects;
29
andreafe3308f2015-10-06 15:51:25 -070030import static com.google.common.base.Preconditions.checkNotNull;
31import static org.slf4j.LoggerFactory.getLogger;
32
Ayaka Koshibeb1ffb002015-08-04 15:10:03 -070033/**
34 * Implementations of merge policies for various sources of device configuration
Thomas Vachuska36008462016-01-07 15:38:20 -080035 * information. This includes applications, providers, and network configurations.
Ayaka Koshibeb1ffb002015-08-04 15:10:03 -070036 */
Ayaka Koshibe5373e762015-08-06 12:31:44 -070037public final class BasicDeviceOperator implements ConfigOperator {
Ayaka Koshibeb1ffb002015-08-04 15:10:03 -070038
Ayaka Koshibe08911292015-08-05 15:07:08 -070039 protected static final double DEFAULT_COORD = -1.0;
Ayaka Koshibeb1ffb002015-08-04 15:10:03 -070040 private static final Logger log = getLogger(BasicDeviceOperator.class);
41
42 private BasicDeviceOperator() {
43 }
44
45 /**
46 * Generates a DeviceDescription containing fields from a DeviceDescription and
47 * a DeviceConfig.
48 *
andreafe3308f2015-10-06 15:51:25 -070049 * @param bdc the device config entity from network config
Ayaka Koshibeb1ffb002015-08-04 15:10:03 -070050 * @param descr a DeviceDescription
51 * @return DeviceDescription based on both sources
52 */
53 public static DeviceDescription combine(BasicDeviceConfig bdc, DeviceDescription descr) {
Thomas Vachuska1627dc82015-11-13 12:22:14 -080054 if (bdc == null || descr == null) {
Ayaka Koshibeb1ffb002015-08-04 15:10:03 -070055 return descr;
56 }
57
58 Device.Type type = descr.type();
59 if (bdc.type() != null && bdc.type() != type) {
60 type = bdc.type();
61 }
Andrea Campanellab75b4882016-01-15 15:15:09 -080062 String manufacturer = descr.manufacturer();
63 if (bdc.manufacturer() != null && !bdc.manufacturer().equals(manufacturer)) {
64 manufacturer = bdc.manufacturer();
65 }
66 String hwVersion = descr.hwVersion();
67 if (bdc.hwVersion() != null && !bdc.hwVersion().equals(hwVersion)) {
68 hwVersion = bdc.hwVersion();
69 }
70 String swVersion = descr.swVersion();
71 if (bdc.swVersion() != null && !bdc.swVersion().equals(swVersion)) {
72 swVersion = bdc.swVersion();
73 }
74 String serial = descr.serialNumber();
75 if (bdc.serial() != null && !bdc.serial().equals(serial)) {
76 serial = bdc.serial();
77 }
Ayaka Koshibeb1ffb002015-08-04 15:10:03 -070078
79 SparseAnnotations sa = combine(bdc, descr.annotations());
Andrea Campanellab75b4882016-01-15 15:15:09 -080080 return new DefaultDeviceDescription(descr.deviceUri(), type, manufacturer,
81 hwVersion, swVersion,
82 serial, descr.chassisId(), sa);
Ayaka Koshibeb1ffb002015-08-04 15:10:03 -070083 }
84
85 /**
86 * Generates an annotation from an existing annotation and DeviceConfig.
87 *
88 * @param bdc the device config entity from network config
andreafe3308f2015-10-06 15:51:25 -070089 * @param an the annotation
Ayaka Koshibeb1ffb002015-08-04 15:10:03 -070090 * @return annotation combining both sources
91 */
92 public static SparseAnnotations combine(BasicDeviceConfig bdc, SparseAnnotations an) {
93 DefaultAnnotations.Builder newBuilder = DefaultAnnotations.builder();
Sho SHIMIZU0044f572015-09-09 14:14:59 -070094 if (!Objects.equals(bdc.driver(), an.value(AnnotationKeys.DRIVER))) {
Ayaka Koshibeb1ffb002015-08-04 15:10:03 -070095 newBuilder.set(AnnotationKeys.DRIVER, bdc.driver());
96 }
97 if (bdc.name() != null) {
98 newBuilder.set(AnnotationKeys.NAME, bdc.name());
99 }
100 if (bdc.latitude() != DEFAULT_COORD) {
101 newBuilder.set(AnnotationKeys.LATITUDE, Double.toString(bdc.latitude()));
102 }
103 if (bdc.longitude() != DEFAULT_COORD) {
104 newBuilder.set(AnnotationKeys.LONGITUDE, Double.toString(bdc.longitude()));
105 }
106 if (bdc.rackAddress() != null) {
Ayaka Koshibe08911292015-08-05 15:07:08 -0700107 newBuilder.set(AnnotationKeys.RACK_ADDRESS, bdc.rackAddress());
Ayaka Koshibeb1ffb002015-08-04 15:10:03 -0700108 }
109 if (bdc.owner() != null) {
Ayaka Koshibe08911292015-08-05 15:07:08 -0700110 newBuilder.set(AnnotationKeys.OWNER, bdc.owner());
Ayaka Koshibeb1ffb002015-08-04 15:10:03 -0700111 }
andreafe3308f2015-10-06 15:51:25 -0700112 if (bdc.managementAddress() != null) {
113 newBuilder.set(AnnotationKeys.MANAGEMENT_ADDRESS, bdc.managementAddress());
114 }
Ayaka Koshibeb1ffb002015-08-04 15:10:03 -0700115 DefaultAnnotations newAnnotations = newBuilder.build();
116 return DefaultAnnotations.union(an, newAnnotations);
117 }
Ayaka Koshibed0ab3c02015-09-04 15:43:46 -0700118
119 public static DeviceDescription descriptionOf(Device device) {
120 checkNotNull(device, "Must supply non-null Device");
121 return new DefaultDeviceDescription(device.id().uri(), device.type(),
122 device.manufacturer(), device.hwVersion(),
123 device.swVersion(), device.serialNumber(),
124 device.chassisId(), (SparseAnnotations) device.annotations());
125 }
Ayaka Koshibeb1ffb002015-08-04 15:10:03 -0700126}