blob: d84fbda7fd4aa546e85a3e7b9c50bbb35ad84fef [file] [log] [blame]
Thomas Vachuska329af532015-03-10 02:08:33 -07001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2015-present Open Networking Foundation
Thomas Vachuska329af532015-03-10 02:08:33 -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.ui.impl;
17
18import com.fasterxml.jackson.databind.JsonNode;
Thomas Vachuska329af532015-03-10 02:08:33 -070019import com.fasterxml.jackson.databind.node.ArrayNode;
20import com.fasterxml.jackson.databind.node.ObjectNode;
Simon Hunt879ce452017-08-10 23:32:00 -070021import com.google.common.collect.ImmutableSet;
Thomas Vachuska329af532015-03-10 02:08:33 -070022import org.onlab.osgi.ServiceDirectory;
23import org.onlab.packet.IpAddress;
Simon Hunta58d8942017-08-11 12:51:14 -070024import org.onlab.packet.VlanId;
Simon Hunt95d56fd2015-11-12 11:06:44 -080025import org.onlab.util.DefaultHashMap;
Thomas Vachuska329af532015-03-10 02:08:33 -070026import org.onosproject.cluster.ClusterEvent;
Thomas Vachuska329af532015-03-10 02:08:33 -070027import org.onosproject.cluster.ControllerNode;
28import org.onosproject.cluster.NodeId;
29import org.onosproject.core.CoreService;
cheng fan35dc0f22015-06-10 06:02:47 +080030import org.onosproject.incubator.net.tunnel.OpticalTunnelEndPoint;
31import org.onosproject.incubator.net.tunnel.Tunnel;
Thomas Vachuska329af532015-03-10 02:08:33 -070032import org.onosproject.net.Annotated;
33import org.onosproject.net.AnnotationKeys;
34import org.onosproject.net.Annotations;
35import org.onosproject.net.ConnectPoint;
36import org.onosproject.net.DefaultEdgeLink;
37import org.onosproject.net.Device;
38import org.onosproject.net.DeviceId;
39import org.onosproject.net.EdgeLink;
Simon Huntf4fd2a22016-08-10 15:41:09 -070040import org.onosproject.net.ElementId;
Thomas Vachuska329af532015-03-10 02:08:33 -070041import org.onosproject.net.Host;
42import org.onosproject.net.HostId;
43import org.onosproject.net.HostLocation;
44import org.onosproject.net.Link;
Thomas Vachuska329af532015-03-10 02:08:33 -070045import org.onosproject.net.device.DeviceEvent;
Thomas Vachuska329af532015-03-10 02:08:33 -070046import org.onosproject.net.flow.FlowEntry;
Thomas Vachuska329af532015-03-10 02:08:33 -070047import org.onosproject.net.host.HostEvent;
Thomas Vachuska329af532015-03-10 02:08:33 -070048import org.onosproject.net.link.LinkEvent;
Thomas Vachuska329af532015-03-10 02:08:33 -070049import org.onosproject.net.provider.ProviderId;
Thomas Vachuska329af532015-03-10 02:08:33 -070050import org.onosproject.net.topology.Topology;
Simon Huntd2747a02015-04-30 22:41:16 -070051import org.onosproject.ui.JsonUtils;
Thomas Vachuska329af532015-03-10 02:08:33 -070052import org.onosproject.ui.UiConnection;
Simon Hunta0ddb022015-05-01 09:53:01 -070053import org.onosproject.ui.UiMessageHandler;
Simon Hunted804d52016-03-30 09:51:40 -070054import org.onosproject.ui.impl.topo.util.ServicesBundle;
Simon Hunt879ce452017-08-10 23:32:00 -070055import org.onosproject.ui.lion.LionBundle;
Simon Hunt0af1ec32015-07-24 12:17:55 -070056import org.onosproject.ui.topo.PropertyPanel;
Thomas Vachuska329af532015-03-10 02:08:33 -070057import org.slf4j.Logger;
58import org.slf4j.LoggerFactory;
59
Thomas Vachuska329af532015-03-10 02:08:33 -070060import java.util.Collection;
61import java.util.Collections;
Thomas Vachuska329af532015-03-10 02:08:33 -070062import java.util.Iterator;
Thomas Vachuska329af532015-03-10 02:08:33 -070063import java.util.Map;
chengfanc553c952016-07-22 15:48:23 +080064import java.util.Optional;
Simon Huntf4fd2a22016-08-10 15:41:09 -070065import java.util.Set;
Thomas Vachuska329af532015-03-10 02:08:33 -070066import java.util.concurrent.ConcurrentHashMap;
67
Thomas Vachuska329af532015-03-10 02:08:33 -070068import static com.google.common.base.Strings.isNullOrEmpty;
Thomas Vachuska329af532015-03-10 02:08:33 -070069import static org.onosproject.net.PortNumber.portNumber;
Simon Hunt3a0598f2015-08-04 19:59:04 -070070import static org.onosproject.ui.topo.TopoConstants.CoreButtons;
Simon Hunt879ce452017-08-10 23:32:00 -070071import static org.onosproject.ui.topo.TopoConstants.Properties.DEVICES;
72import static org.onosproject.ui.topo.TopoConstants.Properties.FLOWS;
Simon Hunta58d8942017-08-11 12:51:14 -070073import static org.onosproject.ui.topo.TopoConstants.Properties.GRID_X;
74import static org.onosproject.ui.topo.TopoConstants.Properties.GRID_Y;
Simon Hunt879ce452017-08-10 23:32:00 -070075import static org.onosproject.ui.topo.TopoConstants.Properties.HOSTS;
Simon Hunta58d8942017-08-11 12:51:14 -070076import static org.onosproject.ui.topo.TopoConstants.Properties.HW_VERSION;
Simon Hunt879ce452017-08-10 23:32:00 -070077import static org.onosproject.ui.topo.TopoConstants.Properties.INTENTS;
Simon Hunta58d8942017-08-11 12:51:14 -070078import static org.onosproject.ui.topo.TopoConstants.Properties.IP;
79import static org.onosproject.ui.topo.TopoConstants.Properties.LATITUDE;
Simon Hunt879ce452017-08-10 23:32:00 -070080import static org.onosproject.ui.topo.TopoConstants.Properties.LINKS;
Simon Hunta58d8942017-08-11 12:51:14 -070081import static org.onosproject.ui.topo.TopoConstants.Properties.LONGITUDE;
82import static org.onosproject.ui.topo.TopoConstants.Properties.MAC;
83import static org.onosproject.ui.topo.TopoConstants.Properties.PORTS;
84import static org.onosproject.ui.topo.TopoConstants.Properties.PROTOCOL;
85import static org.onosproject.ui.topo.TopoConstants.Properties.SERIAL_NUMBER;
86import static org.onosproject.ui.topo.TopoConstants.Properties.SW_VERSION;
Simon Hunt879ce452017-08-10 23:32:00 -070087import static org.onosproject.ui.topo.TopoConstants.Properties.TOPOLOGY_SSCS;
88import static org.onosproject.ui.topo.TopoConstants.Properties.TUNNELS;
Simon Hunta58d8942017-08-11 12:51:14 -070089import static org.onosproject.ui.topo.TopoConstants.Properties.URI;
90import static org.onosproject.ui.topo.TopoConstants.Properties.VENDOR;
Simon Hunt879ce452017-08-10 23:32:00 -070091import static org.onosproject.ui.topo.TopoConstants.Properties.VERSION;
Simon Hunta58d8942017-08-11 12:51:14 -070092import static org.onosproject.ui.topo.TopoConstants.Properties.VLAN;
93import static org.onosproject.ui.topo.TopoConstants.Properties.VLAN_NONE;
Simon Huntd3ceffa2015-08-25 12:44:35 -070094import static org.onosproject.ui.topo.TopoUtils.compactLinkString;
Thomas Vachuska329af532015-03-10 02:08:33 -070095
96/**
97 * Facility for creating messages bound for the topology viewer.
98 */
Simon Hunta0ddb022015-05-01 09:53:01 -070099public abstract class TopologyViewMessageHandlerBase extends UiMessageHandler {
Thomas Vachuska329af532015-03-10 02:08:33 -0700100
Simon Huntf4fd2a22016-08-10 15:41:09 -0700101 private static final String NO_GEO_VALUE = "0.0";
Simon Hunt10618f62017-06-15 19:30:52 -0700102 private static final String DASH = "-";
Simon Hunta58d8942017-08-11 12:51:14 -0700103 private static final String SLASH = " / ";
Simon Hunt10618f62017-06-15 19:30:52 -0700104
105 // nav paths are the view names for hot-link navigation from topo view...
106 private static final String DEVICE_NAV_PATH = "device";
107 private static final String HOST_NAV_PATH = "host";
Simon Huntf4fd2a22016-08-10 15:41:09 -0700108
Simon Hunta58d8942017-08-11 12:51:14 -0700109 // link panel label keys
110 private static final String LPL_FRIENDLY = "lp_label_friendly";
111 private static final String LPL_A_TYPE = "lp_label_a_type";
112 private static final String LPL_A_ID = "lp_label_a_id";
113 private static final String LPL_A_FRIENDLY = "lp_label_a_friendly";
114 private static final String LPL_A_PORT = "lp_label_a_port";
115 private static final String LPL_B_TYPE = "lp_label_b_type";
116 private static final String LPL_B_ID = "lp_label_b_id";
117 private static final String LPL_B_FRIENDLY = "lp_label_b_friendly";
118 private static final String LPL_B_PORT = "lp_label_b_port";
119 private static final String LPL_A2B = "lp_label_a2b";
120 private static final String LPL_B2A = "lp_label_b2a";
121 private static final String LPV_NO_LINK = "lp_value_no_link";
122
123 // other Lion keys
124 private static final String HOST = "host";
125 private static final String DEVICE = "device";
126 private static final String EXPECTED = "expected";
127 private static final String NOT_EXPECTED = "not_expected";
128
Simon Hunt95d56fd2015-11-12 11:06:44 -0800129 // default to an "add" event...
130 private static final DefaultHashMap<ClusterEvent.Type, String> CLUSTER_EVENT =
131 new DefaultHashMap<>("addInstance");
132
133 // default to an "update" event...
134 private static final DefaultHashMap<DeviceEvent.Type, String> DEVICE_EVENT =
135 new DefaultHashMap<>("updateDevice");
136 private static final DefaultHashMap<LinkEvent.Type, String> LINK_EVENT =
137 new DefaultHashMap<>("updateLink");
138 private static final DefaultHashMap<HostEvent.Type, String> HOST_EVENT =
139 new DefaultHashMap<>("updateHost");
140
141 // but call out specific events that we care to differentiate...
142 static {
143 CLUSTER_EVENT.put(ClusterEvent.Type.INSTANCE_REMOVED, "removeInstance");
144
145 DEVICE_EVENT.put(DeviceEvent.Type.DEVICE_ADDED, "addDevice");
146 DEVICE_EVENT.put(DeviceEvent.Type.DEVICE_REMOVED, "removeDevice");
147
148 LINK_EVENT.put(LinkEvent.Type.LINK_ADDED, "addLink");
149 LINK_EVENT.put(LinkEvent.Type.LINK_REMOVED, "removeLink");
150
151 HOST_EVENT.put(HostEvent.Type.HOST_ADDED, "addHost");
152 HOST_EVENT.put(HostEvent.Type.HOST_REMOVED, "removeHost");
153 HOST_EVENT.put(HostEvent.Type.HOST_MOVED, "moveHost");
154 }
155
Simon Hunta58d8942017-08-11 12:51:14 -0700156 private static final DefaultHashMap<Device.Type, String> DEVICE_GLYPHS =
157 new DefaultHashMap<>("m_unknown");
158
159 static {
160 DEVICE_GLYPHS.put(Device.Type.SWITCH, "m_switch");
161 DEVICE_GLYPHS.put(Device.Type.ROUTER, "m_router");
162 DEVICE_GLYPHS.put(Device.Type.ROADM, "m_roadm");
163 DEVICE_GLYPHS.put(Device.Type.OTN, "m_otn");
164 DEVICE_GLYPHS.put(Device.Type.ROADM_OTN, "m_roadm_otn");
165 DEVICE_GLYPHS.put(Device.Type.BALANCER, "m_balancer");
166 DEVICE_GLYPHS.put(Device.Type.IPS, "m_ips");
167 DEVICE_GLYPHS.put(Device.Type.IDS, "m_ids");
168 DEVICE_GLYPHS.put(Device.Type.CONTROLLER, "m_controller");
169 DEVICE_GLYPHS.put(Device.Type.VIRTUAL, "m_virtual");
170 DEVICE_GLYPHS.put(Device.Type.FIBER_SWITCH, "m_fiberSwitch");
171 DEVICE_GLYPHS.put(Device.Type.MICROWAVE, "m_microwave");
172 DEVICE_GLYPHS.put(Device.Type.OLT, "m_olt");
173 DEVICE_GLYPHS.put(Device.Type.ONU, "m_onu");
174 DEVICE_GLYPHS.put(Device.Type.OPTICAL_AMPLIFIER, "unknown"); // TODO glyph needed
175 DEVICE_GLYPHS.put(Device.Type.OTHER, "m_other");
176 }
177
178 private static final String DEFAULT_HOST_GLYPH = "m_endstation";
179 private static final String LINK_GLYPH = "m_ports";
180
181
Ray Milkey9c9cde42018-01-12 14:22:06 -0800182 static final Logger log =
Simon Huntd2747a02015-04-30 22:41:16 -0700183 LoggerFactory.getLogger(TopologyViewMessageHandlerBase.class);
Thomas Vachuska329af532015-03-10 02:08:33 -0700184
Simon Huntd2747a02015-04-30 22:41:16 -0700185 private static final ProviderId PID =
186 new ProviderId("core", "org.onosproject.core", true);
Thomas Vachuska329af532015-03-10 02:08:33 -0700187
Thomas Vachuska329af532015-03-10 02:08:33 -0700188 // TODO: extract into an external & durable state; good enough for now and demo
189 private static Map<String, ObjectNode> metaUi = new ConcurrentHashMap<>();
190
191 /**
Thomas Vachuska329af532015-03-10 02:08:33 -0700192 * Returns read-only view of the meta-ui information.
193 *
194 * @return map of id to meta-ui mementos
195 */
196 static Map<String, ObjectNode> getMetaUi() {
197 return Collections.unmodifiableMap(metaUi);
198 }
199
Simon Hunt879ce452017-08-10 23:32:00 -0700200 private static final String LION_TOPO = "core.view.Topo";
201
202 private static final Set<String> REQ_LION_BUNDLES = ImmutableSet.of(
203 LION_TOPO
204 );
Simon Hunt1911fe42017-05-02 18:25:58 -0700205
206 protected ServicesBundle services;
207
208 private String version;
209
210
Thomas Vachuska329af532015-03-10 02:08:33 -0700211 @Override
212 public void init(UiConnection connection, ServiceDirectory directory) {
213 super.init(connection, directory);
Simon Hunt1911fe42017-05-02 18:25:58 -0700214 services = new ServicesBundle(directory);
215 setVersionString(directory);
216 }
Thomas Vachuska329af532015-03-10 02:08:33 -0700217
Simon Hunt1911fe42017-05-02 18:25:58 -0700218 // Creates a palatable version string to display on the summary panel
219 private void setVersionString(ServiceDirectory directory) {
Thomas Vachuska329af532015-03-10 02:08:33 -0700220 String ver = directory.get(CoreService.class).version().toString();
221 version = ver.replace(".SNAPSHOT", "*").replaceFirst("~.*$", "");
222 }
223
Simon Hunt879ce452017-08-10 23:32:00 -0700224 @Override
225 public Set<String> requiredLionBundles() {
226 return REQ_LION_BUNDLES;
227 }
228
Simon Hunt10618f62017-06-15 19:30:52 -0700229 // Returns the first of the given set of IP addresses as a string.
Thomas Vachuska329af532015-03-10 02:08:33 -0700230 private String ip(Set<IpAddress> ipAddresses) {
231 Iterator<IpAddress> it = ipAddresses.iterator();
232 return it.hasNext() ? it.next().toString() : "unknown";
233 }
234
235 // Produces JSON structure from annotations.
236 private JsonNode props(Annotations annotations) {
Simon Huntda580882015-05-12 20:58:18 -0700237 ObjectNode props = objectNode();
Thomas Vachuska329af532015-03-10 02:08:33 -0700238 if (annotations != null) {
239 for (String key : annotations.keys()) {
240 props.put(key, annotations.value(key));
241 }
242 }
243 return props;
244 }
245
246 // Produces an informational log message event bound to the client.
Simon Hunt36740d02017-06-07 11:25:51 -0700247 protected ObjectNode info(String message) {
248 return message("info", message);
Thomas Vachuska329af532015-03-10 02:08:33 -0700249 }
250
251 // Produces a warning log message event bound to the client.
Simon Hunt36740d02017-06-07 11:25:51 -0700252 protected ObjectNode warning(String message) {
253 return message("warning", message);
Thomas Vachuska329af532015-03-10 02:08:33 -0700254 }
255
256 // Produces an error log message event bound to the client.
Simon Hunt36740d02017-06-07 11:25:51 -0700257 protected ObjectNode error(String message) {
258 return message("error", message);
Thomas Vachuska329af532015-03-10 02:08:33 -0700259 }
260
261 // Produces a log message event bound to the client.
Simon Hunt36740d02017-06-07 11:25:51 -0700262 private ObjectNode message(String severity, String message) {
Simon Huntda580882015-05-12 20:58:18 -0700263 ObjectNode payload = objectNode()
Simon Huntd2747a02015-04-30 22:41:16 -0700264 .put("severity", severity)
265 .put("message", message);
Thomas Vachuska329af532015-03-10 02:08:33 -0700266
Simon Hunt36740d02017-06-07 11:25:51 -0700267 return JsonUtils.envelope("message", payload);
Thomas Vachuska329af532015-03-10 02:08:33 -0700268 }
269
Thomas Vachuska329af532015-03-10 02:08:33 -0700270 // Produces a cluster instance message to the client.
Simon Hunt95d56fd2015-11-12 11:06:44 -0800271 protected ObjectNode instanceMessage(ClusterEvent event, String msgType) {
Thomas Vachuska329af532015-03-10 02:08:33 -0700272 ControllerNode node = event.subject();
Simon Hunt1911fe42017-05-02 18:25:58 -0700273 int switchCount = services.mastership().getDevicesOf(node.id()).size();
Simon Huntda580882015-05-12 20:58:18 -0700274 ObjectNode payload = objectNode()
Thomas Vachuska329af532015-03-10 02:08:33 -0700275 .put("id", node.id().toString())
276 .put("ip", node.ip().toString())
Simon Hunt1911fe42017-05-02 18:25:58 -0700277 .put("online", services.cluster().getState(node.id()).isActive())
278 .put("ready", services.cluster().getState(node.id()).isReady())
279 .put("uiAttached", node.equals(services.cluster().getLocalNode()))
Thomas Vachuska329af532015-03-10 02:08:33 -0700280 .put("switches", switchCount);
281
Simon Huntda580882015-05-12 20:58:18 -0700282 ArrayNode labels = arrayNode();
Thomas Vachuska329af532015-03-10 02:08:33 -0700283 labels.add(node.id().toString());
284 labels.add(node.ip().toString());
285
286 // Add labels, props and stuff the payload into envelope.
287 payload.set("labels", labels);
288 addMetaUi(node.id().toString(), payload);
289
Simon Hunt95d56fd2015-11-12 11:06:44 -0800290 String type = msgType != null ? msgType : CLUSTER_EVENT.get(event.type());
Simon Hunt36740d02017-06-07 11:25:51 -0700291 return JsonUtils.envelope(type, payload);
Thomas Vachuska329af532015-03-10 02:08:33 -0700292 }
293
294 // Produces a device event message to the client.
295 protected ObjectNode deviceMessage(DeviceEvent event) {
296 Device device = event.subject();
Simon Hunt1e20dae2016-10-28 11:26:26 -0700297 String uiType = device.annotations().value(AnnotationKeys.UI_TYPE);
298 String devType = uiType != null ? uiType :
299 device.type().toString().toLowerCase();
Simon Hunt10618f62017-06-15 19:30:52 -0700300 String name = device.annotations().value(AnnotationKeys.NAME);
301 name = isNullOrEmpty(name) ? device.id().toString() : name;
Simon Hunt1e20dae2016-10-28 11:26:26 -0700302
Simon Huntda580882015-05-12 20:58:18 -0700303 ObjectNode payload = objectNode()
Thomas Vachuska329af532015-03-10 02:08:33 -0700304 .put("id", device.id().toString())
Simon Hunt1e20dae2016-10-28 11:26:26 -0700305 .put("type", devType)
Simon Hunt1911fe42017-05-02 18:25:58 -0700306 .put("online", services.device().isAvailable(device.id()))
Thomas Vachuska329af532015-03-10 02:08:33 -0700307 .put("master", master(device.id()));
308
Simon Hunt10618f62017-06-15 19:30:52 -0700309 payload.set("labels", labels("", name, device.id().toString()));
Thomas Vachuska329af532015-03-10 02:08:33 -0700310 payload.set("props", props(device.annotations()));
311 addGeoLocation(device, payload);
312 addMetaUi(device.id().toString(), payload);
313
Simon Hunt95d56fd2015-11-12 11:06:44 -0800314 String type = DEVICE_EVENT.get(event.type());
Simon Hunt36740d02017-06-07 11:25:51 -0700315 return JsonUtils.envelope(type, payload);
Thomas Vachuska329af532015-03-10 02:08:33 -0700316 }
317
318 // Produces a link event message to the client.
319 protected ObjectNode linkMessage(LinkEvent event) {
320 Link link = event.subject();
Simon Huntda580882015-05-12 20:58:18 -0700321 ObjectNode payload = objectNode()
Thomas Vachuska329af532015-03-10 02:08:33 -0700322 .put("id", compactLinkString(link))
323 .put("type", link.type().toString().toLowerCase())
Ray Milkeyb7f0f642016-01-22 16:08:14 -0800324 .put("expected", link.isExpected())
Thomas Vachuska329af532015-03-10 02:08:33 -0700325 .put("online", link.state() == Link.State.ACTIVE)
326 .put("linkWidth", 1.2)
327 .put("src", link.src().deviceId().toString())
328 .put("srcPort", link.src().port().toString())
329 .put("dst", link.dst().deviceId().toString())
330 .put("dstPort", link.dst().port().toString());
Simon Hunt95d56fd2015-11-12 11:06:44 -0800331 String type = LINK_EVENT.get(event.type());
Simon Hunt36740d02017-06-07 11:25:51 -0700332 return JsonUtils.envelope(type, payload);
Thomas Vachuska329af532015-03-10 02:08:33 -0700333 }
334
335 // Produces a host event message to the client.
336 protected ObjectNode hostMessage(HostEvent event) {
337 Host host = event.subject();
Charles Chan33f28a92015-11-13 13:12:38 -0800338 Host prevHost = event.prevSubject();
Simon Hunt1e20dae2016-10-28 11:26:26 -0700339 String hostType = host.annotations().value(AnnotationKeys.UI_TYPE);
Simon Hunt10618f62017-06-15 19:30:52 -0700340 String ip = ip(host.ipAddresses());
Simon Hunt95d56fd2015-11-12 11:06:44 -0800341
Simon Huntda580882015-05-12 20:58:18 -0700342 ObjectNode payload = objectNode()
Thomas Vachuska329af532015-03-10 02:08:33 -0700343 .put("id", host.id().toString())
Simon Hunt12c79ed2017-09-12 11:58:44 -0700344 .put("type", isNullOrEmpty(hostType) ? "endstation" : hostType);
Simon Hunt10618f62017-06-15 19:30:52 -0700345
Simon Hunt12c79ed2017-09-12 11:58:44 -0700346 // set most recent connect point (and previous if we know it)
Simon Huntda580882015-05-12 20:58:18 -0700347 payload.set("cp", hostConnect(host.location()));
Charles Chan33f28a92015-11-13 13:12:38 -0800348 if (prevHost != null && prevHost.location() != null) {
349 payload.set("prevCp", hostConnect(prevHost.location()));
Simon Hunt95d56fd2015-11-12 11:06:44 -0800350 }
Simon Hunt12c79ed2017-09-12 11:58:44 -0700351
352 // set ALL connect points
353 addAllCps(host.locations(), payload);
354
Thomas Vachuska528ea952017-10-09 18:25:35 +0200355 payload.set("labels", labels(nameForHost(host), ip, host.mac().toString(), ""));
Thomas Vachuska329af532015-03-10 02:08:33 -0700356 payload.set("props", props(host.annotations()));
357 addGeoLocation(host, payload);
358 addMetaUi(host.id().toString(), payload);
359
Simon Hunt95d56fd2015-11-12 11:06:44 -0800360 String type = HOST_EVENT.get(event.type());
Simon Hunt36740d02017-06-07 11:25:51 -0700361 return JsonUtils.envelope(type, payload);
Thomas Vachuska329af532015-03-10 02:08:33 -0700362 }
363
Simon Hunt12c79ed2017-09-12 11:58:44 -0700364 private void addAllCps(Set<HostLocation> locations, ObjectNode payload) {
365 ArrayNode cps = arrayNode();
366 locations.forEach(loc -> cps.add(hostConnect(loc)));
367 payload.set("allCps", cps);
368 }
369
Thomas Vachuska329af532015-03-10 02:08:33 -0700370 // Encodes the specified host location into a JSON object.
Simon Huntda580882015-05-12 20:58:18 -0700371 private ObjectNode hostConnect(HostLocation location) {
372 return objectNode()
Thomas Vachuska329af532015-03-10 02:08:33 -0700373 .put("device", location.deviceId().toString())
374 .put("port", location.port().toLong());
375 }
376
377 // Encodes the specified list of labels a JSON array.
Simon Huntda580882015-05-12 20:58:18 -0700378 private ArrayNode labels(String... labels) {
379 ArrayNode json = arrayNode();
Thomas Vachuska329af532015-03-10 02:08:33 -0700380 for (String label : labels) {
381 json.add(label);
382 }
383 return json;
384 }
385
386 // Returns the name of the master node for the specified device id.
387 private String master(DeviceId deviceId) {
Simon Hunt1911fe42017-05-02 18:25:58 -0700388 NodeId master = services.mastership().getMasterFor(deviceId);
Thomas Vachuska329af532015-03-10 02:08:33 -0700389 return master != null ? master.toString() : "";
390 }
391
392 // Generates an edge link from the specified host location.
393 private EdgeLink edgeLink(Host host, boolean ingress) {
394 return new DefaultEdgeLink(PID, new ConnectPoint(host.id(), portNumber(0)),
395 host.location(), ingress);
396 }
397
398 // Adds meta UI information for the specified object.
399 private void addMetaUi(String id, ObjectNode payload) {
400 ObjectNode meta = metaUi.get(id);
401 if (meta != null) {
402 payload.set("metaUi", meta);
403 }
404 }
405
406 // Adds a geo location JSON to the specified payload object.
407 private void addGeoLocation(Annotated annotated, ObjectNode payload) {
408 Annotations annotations = annotated.annotations();
409 if (annotations == null) {
410 return;
411 }
412
Simon Huntfd7106c2016-02-09 15:05:26 -0800413 String slat = annotations.value(AnnotationKeys.LATITUDE);
Simon Huntf27a9292017-05-04 17:36:26 -0700414 String slng = annotations.value(AnnotationKeys.LONGITUDE);
Simon Huntf4fd2a22016-08-10 15:41:09 -0700415 boolean validLat = slat != null && !slat.equals(NO_GEO_VALUE);
Simon Huntf27a9292017-05-04 17:36:26 -0700416 boolean validLng = slng != null && !slng.equals(NO_GEO_VALUE);
Simon Huntf4fd2a22016-08-10 15:41:09 -0700417 if (validLat && validLng) {
418 try {
Simon Huntfd7106c2016-02-09 15:05:26 -0800419 double lat = Double.parseDouble(slat);
Simon Huntf27a9292017-05-04 17:36:26 -0700420 double lng = Double.parseDouble(slng);
Simon Huntda580882015-05-12 20:58:18 -0700421 ObjectNode loc = objectNode()
Simon Huntf27a9292017-05-04 17:36:26 -0700422 .put("locType", "geo")
423 .put("latOrY", lat)
424 .put("longOrX", lng);
Thomas Vachuska329af532015-03-10 02:08:33 -0700425 payload.set("location", loc);
Simon Huntf4fd2a22016-08-10 15:41:09 -0700426 } catch (NumberFormatException e) {
Simon Huntf27a9292017-05-04 17:36:26 -0700427 log.warn("Invalid geo data: latitude={}, longitude={}", slat, slng);
Thomas Vachuska329af532015-03-10 02:08:33 -0700428 }
Thomas Vachuska329af532015-03-10 02:08:33 -0700429 }
430 }
431
432 // Updates meta UI information for the specified object.
Simon Huntd2747a02015-04-30 22:41:16 -0700433 protected void updateMetaUi(ObjectNode payload) {
434 metaUi.put(JsonUtils.string(payload, "id"),
435 JsonUtils.node(payload, "memento"));
Thomas Vachuska329af532015-03-10 02:08:33 -0700436 }
437
Simon Hunta17fa672015-08-19 18:42:22 -0700438
Simon Huntb745ca62015-07-28 15:37:11 -0700439 // -----------------------------------------------------------------------
440 // Create models of the data to return, that overlays can adjust / augment
441
Simon Hunta58d8942017-08-11 12:51:14 -0700442 private String lookupGlyph(Device device) {
443 return DEVICE_GLYPHS.get(device.type());
444 }
445
446
Simon Huntb745ca62015-07-28 15:37:11 -0700447 // Returns property panel model for summary response.
Simon Hunt8a0429a2017-01-06 16:52:47 -0800448 protected PropertyPanel summmaryMessage() {
Simon Hunta58d8942017-08-11 12:51:14 -0700449 // chose NOT to add debug messages, since this is called every few seconds
Simon Hunt1911fe42017-05-02 18:25:58 -0700450 Topology topology = services.topology().currentTopology();
Simon Hunt879ce452017-08-10 23:32:00 -0700451 LionBundle lion = getLionBundle(LION_TOPO);
452 String panelTitle = lion.getSafe("title_panel_summary");
Simon Hunt0af1ec32015-07-24 12:17:55 -0700453
Simon Hunta58d8942017-08-11 12:51:14 -0700454 return new PropertyPanel(panelTitle, "bird")
Simon Hunt879ce452017-08-10 23:32:00 -0700455 .addProp(VERSION, lion.getSafe(VERSION), version)
Simon Hunt1911fe42017-05-02 18:25:58 -0700456 .addSeparator()
Simon Hunt879ce452017-08-10 23:32:00 -0700457 .addProp(DEVICES, lion.getSafe(DEVICES), services.device().getDeviceCount())
458 .addProp(LINKS, lion.getSafe(LINKS), topology.linkCount())
459 .addProp(HOSTS, lion.getSafe(HOSTS), services.host().getHostCount())
460 .addProp(TOPOLOGY_SSCS, lion.getSafe(TOPOLOGY_SSCS), topology.clusterCount())
Simon Hunt1911fe42017-05-02 18:25:58 -0700461 .addSeparator()
Simon Hunt879ce452017-08-10 23:32:00 -0700462 .addProp(INTENTS, lion.getSafe(INTENTS), services.intent().getIntentCount())
463 .addProp(TUNNELS, lion.getSafe(TUNNELS), services.tunnel().tunnelCount())
464 .addProp(FLOWS, lion.getSafe(FLOWS), services.flow().getFlowRuleCount());
Thomas Vachuska329af532015-03-10 02:08:33 -0700465 }
466
Simon Hunta58d8942017-08-11 12:51:14 -0700467
468 private String friendlyDevice(DeviceId deviceId) {
Simon Hunt1911fe42017-05-02 18:25:58 -0700469 Device device = services.device().getDevice(deviceId);
Thomas Vachuska329af532015-03-10 02:08:33 -0700470 Annotations annot = device.annotations();
471 String name = annot.value(AnnotationKeys.NAME);
Simon Hunta58d8942017-08-11 12:51:14 -0700472 return isNullOrEmpty(name) ? deviceId.toString() : name;
473 }
474
475 // Generates a property panel model for device details response
476 protected PropertyPanel deviceDetails(DeviceId deviceId) {
477 log.debug("generate prop panel data for device {}", deviceId);
478 Device device = services.device().getDevice(deviceId);
479 Annotations annot = device.annotations();
480 String proto = annot.value(AnnotationKeys.PROTOCOL);
481 String title = friendlyDevice(deviceId);
482 LionBundle lion = getLionBundle(LION_TOPO);
483
484 PropertyPanel pp = new PropertyPanel(title, lookupGlyph(device))
485 .navPath(DEVICE_NAV_PATH)
486 .id(deviceId.toString());
487 addDeviceBasicProps(pp, deviceId, device, proto, lion);
488 addLocationProps(pp, annot, lion);
489 addDeviceCountStats(pp, deviceId, lion);
490 addDeviceCoreButtons(pp);
491 return pp;
492 }
493
494 private void addDeviceBasicProps(PropertyPanel pp, DeviceId deviceId,
495 Device device, String proto, LionBundle lion) {
496 pp.addProp(URI, lion.getSafe(URI), deviceId.toString())
497 .addProp(VENDOR, lion.getSafe(VENDOR), device.manufacturer())
498 .addProp(HW_VERSION, lion.getSafe(HW_VERSION), device.hwVersion())
499 .addProp(SW_VERSION, lion.getSafe(SW_VERSION), device.swVersion())
500 .addProp(SERIAL_NUMBER, lion.getSafe(SERIAL_NUMBER), device.serialNumber())
501 .addProp(PROTOCOL, lion.getSafe(PROTOCOL), proto)
502 .addSeparator();
503 }
504
505 // only add location properties if we have them
506 private void addLocationProps(PropertyPanel pp, Annotations annot,
507 LionBundle lion) {
508 String slat = annot.value(AnnotationKeys.LATITUDE);
509 String slng = annot.value(AnnotationKeys.LONGITUDE);
510 String sgrY = annot.value(AnnotationKeys.GRID_Y);
511 String sgrX = annot.value(AnnotationKeys.GRID_X);
512
513 boolean validLat = slat != null && !slat.equals(NO_GEO_VALUE);
514 boolean validLng = slng != null && !slng.equals(NO_GEO_VALUE);
515 if (validLat && validLng) {
516 pp.addProp(LATITUDE, lion.getSafe(LATITUDE), slat)
517 .addProp(LONGITUDE, lion.getSafe(LONGITUDE), slng)
518 .addSeparator();
519
520 } else if (sgrY != null && sgrX != null) {
521 pp.addProp(GRID_Y, lion.getSafe(GRID_Y), sgrY)
522 .addProp(GRID_X, lion.getSafe(GRID_X), sgrX)
523 .addSeparator();
524 }
525 // else, no location
526 }
527
528 private void addDeviceCountStats(PropertyPanel pp, DeviceId deviceId, LionBundle lion) {
Simon Hunt1911fe42017-05-02 18:25:58 -0700529 int portCount = services.device().getPorts(deviceId).size();
Thomas Vachuska329af532015-03-10 02:08:33 -0700530 int flowCount = getFlowCount(deviceId);
cheng fan35dc0f22015-06-10 06:02:47 +0800531 int tunnelCount = getTunnelCount(deviceId);
Simon Huntb745ca62015-07-28 15:37:11 -0700532
Simon Hunta58d8942017-08-11 12:51:14 -0700533 pp.addProp(PORTS, lion.getSafe(PORTS), portCount)
534 .addProp(FLOWS, lion.getSafe(FLOWS), flowCount)
535 .addProp(TUNNELS, lion.getSafe(TUNNELS), tunnelCount);
536 }
Simon Huntb745ca62015-07-28 15:37:11 -0700537
Simon Hunta58d8942017-08-11 12:51:14 -0700538 private void addDeviceCoreButtons(PropertyPanel pp) {
539 pp.addButton(CoreButtons.SHOW_DEVICE_VIEW)
Simon Hunt1911fe42017-05-02 18:25:58 -0700540 .addButton(CoreButtons.SHOW_FLOW_VIEW)
541 .addButton(CoreButtons.SHOW_PORT_VIEW)
542 .addButton(CoreButtons.SHOW_GROUP_VIEW)
543 .addButton(CoreButtons.SHOW_METER_VIEW);
Thomas Vachuska329af532015-03-10 02:08:33 -0700544 }
545
546 protected int getFlowCount(DeviceId deviceId) {
547 int count = 0;
Simon Hunt1911fe42017-05-02 18:25:58 -0700548 for (FlowEntry flowEntry : services.flow().getFlowEntries(deviceId)) {
Thomas Vachuska329af532015-03-10 02:08:33 -0700549 count++;
Thomas Vachuska329af532015-03-10 02:08:33 -0700550 }
551 return count;
552 }
553
cheng fan35dc0f22015-06-10 06:02:47 +0800554 protected int getTunnelCount(DeviceId deviceId) {
555 int count = 0;
Simon Hunt1911fe42017-05-02 18:25:58 -0700556 Collection<Tunnel> tunnels = services.tunnel().queryAllTunnels();
cheng fan35dc0f22015-06-10 06:02:47 +0800557 for (Tunnel tunnel : tunnels) {
chengfanc553c952016-07-22 15:48:23 +0800558 //Only OpticalTunnelEndPoint has a device
559 if (!(tunnel.src() instanceof OpticalTunnelEndPoint) ||
560 !(tunnel.dst() instanceof OpticalTunnelEndPoint)) {
561 continue;
562 }
563
564 Optional<ElementId> srcElementId = ((OpticalTunnelEndPoint) tunnel.src()).elementId();
565 Optional<ElementId> dstElementId = ((OpticalTunnelEndPoint) tunnel.dst()).elementId();
566 if (!srcElementId.isPresent() || !dstElementId.isPresent()) {
567 continue;
568 }
569 DeviceId srcDeviceId = (DeviceId) srcElementId.get();
570 DeviceId dstDeviceId = (DeviceId) dstElementId.get();
571 if (srcDeviceId.equals(deviceId) || dstDeviceId.equals(deviceId)) {
cheng fan35dc0f22015-06-10 06:02:47 +0800572 count++;
573 }
574 }
575 return count;
576 }
577
Simon Hunt10618f62017-06-15 19:30:52 -0700578 private boolean useDefaultName(String annotName) {
579 return isNullOrEmpty(annotName) || DASH.equals(annotName);
580 }
581
582 private String nameForHost(Host host) {
583 String name = host.annotations().value(AnnotationKeys.NAME);
584 return useDefaultName(name) ? ip(host.ipAddresses()) : name;
585 }
586
Simon Hunta58d8942017-08-11 12:51:14 -0700587 private String glyphForHost(Annotations annot) {
588 String uiType = annot.value(AnnotationKeys.UI_TYPE);
589 return isNullOrEmpty(uiType) ? DEFAULT_HOST_GLYPH : uiType;
Thomas Vachuska329af532015-03-10 02:08:33 -0700590 }
591
Simon Hunta58d8942017-08-11 12:51:14 -0700592 // Generates a property panel model for a host details response
593 protected PropertyPanel hostDetails(HostId hostId) {
594 log.debug("generate prop panel data for host {}", hostId);
595 Host host = services.host().getHost(hostId);
596 Annotations annot = host.annotations();
597 String glyphId = glyphForHost(annot);
598 LionBundle lion = getLionBundle(LION_TOPO);
599
600 PropertyPanel pp = new PropertyPanel(nameForHost(host), glyphId)
601 .navPath(HOST_NAV_PATH)
602 .id(hostId.toString());
603 addHostBasicProps(pp, host, lion);
604 addLocationProps(pp, annot, lion);
605 return pp;
606 }
607
608 private void addHostBasicProps(PropertyPanel pp, Host host, LionBundle lion) {
609 pp.addProp(LPL_FRIENDLY, lion.getSafe(LPL_FRIENDLY), nameForHost(host))
610 .addProp(MAC, lion.getSafe(MAC), host.mac())
611 .addProp(IP, lion.getSafe(IP), host.ipAddresses(), "[\\[\\]]")
612 .addProp(VLAN, lion.getSafe(VLAN), displayVlan(host.vlan(), lion))
613 .addSeparator();
614 }
615
616 private String displayVlan(VlanId vlan, LionBundle lion) {
617 return VlanId.NONE.equals(vlan) ? lion.getSafe(VLAN_NONE) : vlan.toString();
618 }
619
620 // Generates a property panel model for a link details response (edge-link)
621 protected PropertyPanel edgeLinkDetails(HostId hid, ConnectPoint cp) {
622 log.debug("generate prop panel data for edgelink {} {}", hid, cp);
623 LionBundle lion = getLionBundle(LION_TOPO);
624 String title = lion.getSafe("title_edge_link");
625
626 PropertyPanel pp = new PropertyPanel(title, LINK_GLYPH);
627 addLinkHostProps(pp, hid, lion);
628 addLinkCpBProps(pp, cp, lion);
629 return pp;
630 }
631
632 // Generates a property panel model for a link details response (infra-link)
633 protected PropertyPanel infraLinkDetails(ConnectPoint cpA, ConnectPoint cpB) {
634 log.debug("generate prop panel data for infralink {} {}", cpA, cpB);
635 LionBundle lion = getLionBundle(LION_TOPO);
636 String title = lion.getSafe("title_infra_link");
637
638 PropertyPanel pp = new PropertyPanel(title, LINK_GLYPH);
639 addLinkCpAProps(pp, cpA, lion);
640 addLinkCpBProps(pp, cpB, lion);
641 addLinkBackingProps(pp, cpA, cpB, lion);
642 return pp;
643 }
644
645 private void addLinkHostProps(PropertyPanel pp, HostId hostId, LionBundle lion) {
646 Host host = services.host().getHost(hostId);
647
648 pp.addProp(LPL_A_TYPE, lion.getSafe(LPL_A_TYPE), lion.getSafe(HOST))
649 .addProp(LPL_A_ID, lion.getSafe(LPL_A_ID), hostId.toString())
650 .addProp(LPL_A_FRIENDLY, lion.getSafe(LPL_A_FRIENDLY), nameForHost(host))
651 .addSeparator();
652 }
653
654 private void addLinkCpAProps(PropertyPanel pp, ConnectPoint cp, LionBundle lion) {
655 DeviceId did = cp.deviceId();
656
657 pp.addProp(LPL_A_TYPE, lion.getSafe(LPL_A_TYPE), lion.getSafe(DEVICE))
658 .addProp(LPL_A_ID, lion.getSafe(LPL_A_ID), did.toString())
659 .addProp(LPL_A_FRIENDLY, lion.getSafe(LPL_A_FRIENDLY), friendlyDevice(did))
660 .addProp(LPL_A_PORT, lion.getSafe(LPL_A_PORT), cp.port().toLong())
661 .addSeparator();
662 }
663
664 private void addLinkCpBProps(PropertyPanel pp, ConnectPoint cp, LionBundle lion) {
665 DeviceId did = cp.deviceId();
666
667 pp.addProp(LPL_B_TYPE, lion.getSafe(LPL_B_TYPE), lion.getSafe(DEVICE))
668 .addProp(LPL_B_ID, lion.getSafe(LPL_B_ID), did.toString())
669 .addProp(LPL_B_FRIENDLY, lion.getSafe(LPL_B_FRIENDLY), friendlyDevice(did))
670 .addProp(LPL_B_PORT, lion.getSafe(LPL_B_PORT), cp.port().toLong())
671 .addSeparator();
672 }
673
674 private void addLinkBackingProps(PropertyPanel pp, ConnectPoint cpA,
675 ConnectPoint cpB, LionBundle lion) {
676 Link a2b = services.link().getLink(cpA, cpB);
677 Link b2a = services.link().getLink(cpB, cpA);
678
679 pp.addProp(LPL_A2B, lion.getSafe(LPL_A2B), linkPropString(a2b, lion))
680 .addProp(LPL_B2A, lion.getSafe(LPL_B2A), linkPropString(b2a, lion));
681 }
682
683 private String linkPropString(Link link, LionBundle lion) {
684 if (link == null) {
685 return lion.getSafe(LPV_NO_LINK);
686 }
687 return lion.getSafe(link.type()) + SLASH +
688 lion.getSafe(link.state()) + SLASH +
689 lion.getSafe(link.isExpected() ? EXPECTED : NOT_EXPECTED);
690 }
Thomas Vachuska329af532015-03-10 02:08:33 -0700691}