blob: 95c0cf489657d1c18aab874910d91e81631bbe0b [file] [log] [blame]
Thomas Vachuska329af532015-03-10 02:08:33 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
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;
21import org.onlab.osgi.ServiceDirectory;
22import org.onlab.packet.IpAddress;
Simon Hunt95d56fd2015-11-12 11:06:44 -080023import org.onlab.util.DefaultHashMap;
Thomas Vachuska329af532015-03-10 02:08:33 -070024import org.onosproject.cluster.ClusterEvent;
25import org.onosproject.cluster.ClusterService;
26import org.onosproject.cluster.ControllerNode;
27import org.onosproject.cluster.NodeId;
28import org.onosproject.core.CoreService;
Thomas Vachuskaf0397b52015-05-29 13:50:17 -070029import org.onosproject.incubator.net.PortStatisticsService;
cheng fan35dc0f22015-06-10 06:02:47 +080030import org.onosproject.incubator.net.tunnel.OpticalTunnelEndPoint;
31import org.onosproject.incubator.net.tunnel.Tunnel;
32import org.onosproject.incubator.net.tunnel.TunnelService;
Thomas Vachuska329af532015-03-10 02:08:33 -070033import org.onosproject.mastership.MastershipService;
34import org.onosproject.net.Annotated;
35import org.onosproject.net.AnnotationKeys;
36import org.onosproject.net.Annotations;
37import org.onosproject.net.ConnectPoint;
38import org.onosproject.net.DefaultEdgeLink;
39import org.onosproject.net.Device;
40import org.onosproject.net.DeviceId;
41import org.onosproject.net.EdgeLink;
Simon Huntf4fd2a22016-08-10 15:41:09 -070042import org.onosproject.net.ElementId;
Thomas Vachuska329af532015-03-10 02:08:33 -070043import org.onosproject.net.Host;
44import org.onosproject.net.HostId;
45import org.onosproject.net.HostLocation;
46import org.onosproject.net.Link;
Thomas Vachuska329af532015-03-10 02:08:33 -070047import org.onosproject.net.PortNumber;
48import org.onosproject.net.device.DeviceEvent;
49import org.onosproject.net.device.DeviceService;
50import org.onosproject.net.flow.FlowEntry;
51import org.onosproject.net.flow.FlowRuleService;
52import org.onosproject.net.flow.TrafficTreatment;
53import org.onosproject.net.flow.instructions.Instruction;
54import org.onosproject.net.flow.instructions.Instructions.OutputInstruction;
55import org.onosproject.net.host.HostEvent;
56import org.onosproject.net.host.HostService;
Thomas Vachuska329af532015-03-10 02:08:33 -070057import org.onosproject.net.intent.IntentService;
Thomas Vachuska329af532015-03-10 02:08:33 -070058import org.onosproject.net.link.LinkEvent;
59import org.onosproject.net.link.LinkService;
60import org.onosproject.net.provider.ProviderId;
Thomas Vachuska329af532015-03-10 02:08:33 -070061import org.onosproject.net.statistic.StatisticService;
62import org.onosproject.net.topology.Topology;
63import org.onosproject.net.topology.TopologyService;
Simon Huntd2747a02015-04-30 22:41:16 -070064import org.onosproject.ui.JsonUtils;
Thomas Vachuska329af532015-03-10 02:08:33 -070065import org.onosproject.ui.UiConnection;
Simon Hunta0ddb022015-05-01 09:53:01 -070066import org.onosproject.ui.UiMessageHandler;
Simon Hunted804d52016-03-30 09:51:40 -070067import org.onosproject.ui.impl.topo.util.ServicesBundle;
Simon Hunt0af1ec32015-07-24 12:17:55 -070068import org.onosproject.ui.topo.PropertyPanel;
Thomas Vachuska329af532015-03-10 02:08:33 -070069import org.slf4j.Logger;
70import org.slf4j.LoggerFactory;
71
Thomas Vachuska329af532015-03-10 02:08:33 -070072import java.util.ArrayList;
73import java.util.Collection;
74import java.util.Collections;
75import java.util.HashMap;
76import java.util.HashSet;
77import java.util.Iterator;
78import java.util.List;
79import java.util.Map;
chengfanc553c952016-07-22 15:48:23 +080080import java.util.Optional;
Simon Huntf4fd2a22016-08-10 15:41:09 -070081import java.util.Set;
Thomas Vachuska329af532015-03-10 02:08:33 -070082import java.util.concurrent.ConcurrentHashMap;
83
84import static com.google.common.base.Preconditions.checkNotNull;
85import static com.google.common.base.Strings.isNullOrEmpty;
Thomas Vachuska204cb6c2015-06-04 00:03:06 -070086import static org.onosproject.net.DefaultEdgeLink.createEdgeLink;
Thomas Vachuska329af532015-03-10 02:08:33 -070087import static org.onosproject.net.PortNumber.portNumber;
Simon Hunt3a0598f2015-08-04 19:59:04 -070088import static org.onosproject.ui.topo.TopoConstants.CoreButtons;
89import static org.onosproject.ui.topo.TopoConstants.Properties;
Simon Huntd3ceffa2015-08-25 12:44:35 -070090import static org.onosproject.ui.topo.TopoUtils.compactLinkString;
Thomas Vachuska329af532015-03-10 02:08:33 -070091
92/**
93 * Facility for creating messages bound for the topology viewer.
94 */
Simon Hunta0ddb022015-05-01 09:53:01 -070095public abstract class TopologyViewMessageHandlerBase extends UiMessageHandler {
Thomas Vachuska329af532015-03-10 02:08:33 -070096
Simon Huntf4fd2a22016-08-10 15:41:09 -070097 private static final String NO_GEO_VALUE = "0.0";
98
Simon Hunt95d56fd2015-11-12 11:06:44 -080099 // default to an "add" event...
100 private static final DefaultHashMap<ClusterEvent.Type, String> CLUSTER_EVENT =
101 new DefaultHashMap<>("addInstance");
102
103 // default to an "update" event...
104 private static final DefaultHashMap<DeviceEvent.Type, String> DEVICE_EVENT =
105 new DefaultHashMap<>("updateDevice");
106 private static final DefaultHashMap<LinkEvent.Type, String> LINK_EVENT =
107 new DefaultHashMap<>("updateLink");
108 private static final DefaultHashMap<HostEvent.Type, String> HOST_EVENT =
109 new DefaultHashMap<>("updateHost");
110
111 // but call out specific events that we care to differentiate...
112 static {
113 CLUSTER_EVENT.put(ClusterEvent.Type.INSTANCE_REMOVED, "removeInstance");
114
115 DEVICE_EVENT.put(DeviceEvent.Type.DEVICE_ADDED, "addDevice");
116 DEVICE_EVENT.put(DeviceEvent.Type.DEVICE_REMOVED, "removeDevice");
117
118 LINK_EVENT.put(LinkEvent.Type.LINK_ADDED, "addLink");
119 LINK_EVENT.put(LinkEvent.Type.LINK_REMOVED, "removeLink");
120
121 HOST_EVENT.put(HostEvent.Type.HOST_ADDED, "addHost");
122 HOST_EVENT.put(HostEvent.Type.HOST_REMOVED, "removeHost");
123 HOST_EVENT.put(HostEvent.Type.HOST_MOVED, "moveHost");
124 }
125
Simon Huntd2747a02015-04-30 22:41:16 -0700126 protected static final Logger log =
127 LoggerFactory.getLogger(TopologyViewMessageHandlerBase.class);
Thomas Vachuska329af532015-03-10 02:08:33 -0700128
Simon Huntd2747a02015-04-30 22:41:16 -0700129 private static final ProviderId PID =
130 new ProviderId("core", "org.onosproject.core", true);
Thomas Vachuska329af532015-03-10 02:08:33 -0700131
Simon Hunta17fa672015-08-19 18:42:22 -0700132 protected static final String SHOW_HIGHLIGHTS = "showHighlights";
Thomas Vachuskaf0397b52015-05-29 13:50:17 -0700133
Thomas Vachuska329af532015-03-10 02:08:33 -0700134 protected ServiceDirectory directory;
135 protected ClusterService clusterService;
136 protected DeviceService deviceService;
137 protected LinkService linkService;
138 protected HostService hostService;
139 protected MastershipService mastershipService;
140 protected IntentService intentService;
141 protected FlowRuleService flowService;
Thomas Vachuskaf0397b52015-05-29 13:50:17 -0700142 protected StatisticService flowStatsService;
143 protected PortStatisticsService portStatsService;
Thomas Vachuska329af532015-03-10 02:08:33 -0700144 protected TopologyService topologyService;
cheng fan35dc0f22015-06-10 06:02:47 +0800145 protected TunnelService tunnelService;
Thomas Vachuska329af532015-03-10 02:08:33 -0700146
Simon Hunta17fa672015-08-19 18:42:22 -0700147 protected ServicesBundle servicesBundle;
Thomas Vachuskaf0397b52015-05-29 13:50:17 -0700148
Thomas Vachuska329af532015-03-10 02:08:33 -0700149 private String version;
150
151 // TODO: extract into an external & durable state; good enough for now and demo
152 private static Map<String, ObjectNode> metaUi = new ConcurrentHashMap<>();
153
154 /**
Thomas Vachuska329af532015-03-10 02:08:33 -0700155 * Returns read-only view of the meta-ui information.
156 *
157 * @return map of id to meta-ui mementos
158 */
159 static Map<String, ObjectNode> getMetaUi() {
160 return Collections.unmodifiableMap(metaUi);
161 }
162
163 @Override
164 public void init(UiConnection connection, ServiceDirectory directory) {
165 super.init(connection, directory);
166 this.directory = checkNotNull(directory, "Directory cannot be null");
167 clusterService = directory.get(ClusterService.class);
168 deviceService = directory.get(DeviceService.class);
169 linkService = directory.get(LinkService.class);
170 hostService = directory.get(HostService.class);
171 mastershipService = directory.get(MastershipService.class);
172 intentService = directory.get(IntentService.class);
173 flowService = directory.get(FlowRuleService.class);
Thomas Vachuskaf0397b52015-05-29 13:50:17 -0700174 flowStatsService = directory.get(StatisticService.class);
175 portStatsService = directory.get(PortStatisticsService.class);
Thomas Vachuska329af532015-03-10 02:08:33 -0700176 topologyService = directory.get(TopologyService.class);
cheng fan35dc0f22015-06-10 06:02:47 +0800177 tunnelService = directory.get(TunnelService.class);
Thomas Vachuska329af532015-03-10 02:08:33 -0700178
Simon Hunta17fa672015-08-19 18:42:22 -0700179 servicesBundle = new ServicesBundle(intentService, deviceService,
180 hostService, linkService,
181 flowService,
182 flowStatsService, portStatsService);
183
Thomas Vachuska329af532015-03-10 02:08:33 -0700184 String ver = directory.get(CoreService.class).version().toString();
185 version = ver.replace(".SNAPSHOT", "*").replaceFirst("~.*$", "");
186 }
187
Thomas Vachuska329af532015-03-10 02:08:33 -0700188 // Returns the specified set of IP addresses as a string.
189 private String ip(Set<IpAddress> ipAddresses) {
190 Iterator<IpAddress> it = ipAddresses.iterator();
191 return it.hasNext() ? it.next().toString() : "unknown";
192 }
193
194 // Produces JSON structure from annotations.
195 private JsonNode props(Annotations annotations) {
Simon Huntda580882015-05-12 20:58:18 -0700196 ObjectNode props = objectNode();
Thomas Vachuska329af532015-03-10 02:08:33 -0700197 if (annotations != null) {
198 for (String key : annotations.keys()) {
199 props.put(key, annotations.value(key));
200 }
201 }
202 return props;
203 }
204
205 // Produces an informational log message event bound to the client.
206 protected ObjectNode info(long id, String message) {
207 return message("info", id, message);
208 }
209
210 // Produces a warning log message event bound to the client.
211 protected ObjectNode warning(long id, String message) {
212 return message("warning", id, message);
213 }
214
215 // Produces an error log message event bound to the client.
216 protected ObjectNode error(long id, String message) {
217 return message("error", id, message);
218 }
219
220 // Produces a log message event bound to the client.
221 private ObjectNode message(String severity, long id, String message) {
Simon Huntda580882015-05-12 20:58:18 -0700222 ObjectNode payload = objectNode()
Simon Huntd2747a02015-04-30 22:41:16 -0700223 .put("severity", severity)
224 .put("message", message);
Thomas Vachuska329af532015-03-10 02:08:33 -0700225
Simon Huntd2747a02015-04-30 22:41:16 -0700226 return JsonUtils.envelope("message", id, payload);
Thomas Vachuska329af532015-03-10 02:08:33 -0700227 }
228
Thomas Vachuska329af532015-03-10 02:08:33 -0700229 // Produces a cluster instance message to the client.
Simon Hunt95d56fd2015-11-12 11:06:44 -0800230 protected ObjectNode instanceMessage(ClusterEvent event, String msgType) {
Thomas Vachuska329af532015-03-10 02:08:33 -0700231 ControllerNode node = event.subject();
232 int switchCount = mastershipService.getDevicesOf(node.id()).size();
Simon Huntda580882015-05-12 20:58:18 -0700233 ObjectNode payload = objectNode()
Thomas Vachuska329af532015-03-10 02:08:33 -0700234 .put("id", node.id().toString())
235 .put("ip", node.ip().toString())
Thomas Vachuska7a8de842016-03-07 20:56:35 -0800236 .put("online", clusterService.getState(node.id()).isActive())
Thomas Vachuskafba7f3d2016-03-23 15:46:25 -0700237 .put("ready", clusterService.getState(node.id()).isReady())
Thomas Vachuskab6acc7b2015-03-11 09:11:21 -0700238 .put("uiAttached", node.equals(clusterService.getLocalNode()))
Thomas Vachuska329af532015-03-10 02:08:33 -0700239 .put("switches", switchCount);
240
Simon Huntda580882015-05-12 20:58:18 -0700241 ArrayNode labels = arrayNode();
Thomas Vachuska329af532015-03-10 02:08:33 -0700242 labels.add(node.id().toString());
243 labels.add(node.ip().toString());
244
245 // Add labels, props and stuff the payload into envelope.
246 payload.set("labels", labels);
247 addMetaUi(node.id().toString(), payload);
248
Simon Hunt95d56fd2015-11-12 11:06:44 -0800249 String type = msgType != null ? msgType : CLUSTER_EVENT.get(event.type());
Simon Huntd2747a02015-04-30 22:41:16 -0700250 return JsonUtils.envelope(type, 0, payload);
Thomas Vachuska329af532015-03-10 02:08:33 -0700251 }
252
253 // Produces a device event message to the client.
254 protected ObjectNode deviceMessage(DeviceEvent event) {
255 Device device = event.subject();
Simon Hunt1e20dae2016-10-28 11:26:26 -0700256 String uiType = device.annotations().value(AnnotationKeys.UI_TYPE);
257 String devType = uiType != null ? uiType :
258 device.type().toString().toLowerCase();
259
Simon Huntda580882015-05-12 20:58:18 -0700260 ObjectNode payload = objectNode()
Thomas Vachuska329af532015-03-10 02:08:33 -0700261 .put("id", device.id().toString())
Simon Hunt1e20dae2016-10-28 11:26:26 -0700262 .put("type", devType)
Thomas Vachuska329af532015-03-10 02:08:33 -0700263 .put("online", deviceService.isAvailable(device.id()))
264 .put("master", master(device.id()));
265
266 // Generate labels: id, chassis id, no-label, optional-name
267 String name = device.annotations().value(AnnotationKeys.NAME);
Simon Huntda580882015-05-12 20:58:18 -0700268 ArrayNode labels = arrayNode();
Thomas Vachuska329af532015-03-10 02:08:33 -0700269 labels.add("");
270 labels.add(isNullOrEmpty(name) ? device.id().toString() : name);
271 labels.add(device.id().toString());
272
273 // Add labels, props and stuff the payload into envelope.
274 payload.set("labels", labels);
275 payload.set("props", props(device.annotations()));
276 addGeoLocation(device, payload);
277 addMetaUi(device.id().toString(), payload);
278
Simon Hunt95d56fd2015-11-12 11:06:44 -0800279 String type = DEVICE_EVENT.get(event.type());
Simon Huntd2747a02015-04-30 22:41:16 -0700280 return JsonUtils.envelope(type, 0, payload);
Thomas Vachuska329af532015-03-10 02:08:33 -0700281 }
282
283 // Produces a link event message to the client.
284 protected ObjectNode linkMessage(LinkEvent event) {
285 Link link = event.subject();
Simon Huntda580882015-05-12 20:58:18 -0700286 ObjectNode payload = objectNode()
Thomas Vachuska329af532015-03-10 02:08:33 -0700287 .put("id", compactLinkString(link))
288 .put("type", link.type().toString().toLowerCase())
Ray Milkeyb7f0f642016-01-22 16:08:14 -0800289 .put("expected", link.isExpected())
Thomas Vachuska329af532015-03-10 02:08:33 -0700290 .put("online", link.state() == Link.State.ACTIVE)
291 .put("linkWidth", 1.2)
292 .put("src", link.src().deviceId().toString())
293 .put("srcPort", link.src().port().toString())
294 .put("dst", link.dst().deviceId().toString())
295 .put("dstPort", link.dst().port().toString());
Simon Hunt95d56fd2015-11-12 11:06:44 -0800296 String type = LINK_EVENT.get(event.type());
Simon Huntd2747a02015-04-30 22:41:16 -0700297 return JsonUtils.envelope(type, 0, payload);
Thomas Vachuska329af532015-03-10 02:08:33 -0700298 }
299
300 // Produces a host event message to the client.
301 protected ObjectNode hostMessage(HostEvent event) {
302 Host host = event.subject();
Charles Chan33f28a92015-11-13 13:12:38 -0800303 Host prevHost = event.prevSubject();
Simon Hunt1e20dae2016-10-28 11:26:26 -0700304 String hostType = host.annotations().value(AnnotationKeys.UI_TYPE);
Simon Hunt95d56fd2015-11-12 11:06:44 -0800305
Simon Huntda580882015-05-12 20:58:18 -0700306 ObjectNode payload = objectNode()
Thomas Vachuska329af532015-03-10 02:08:33 -0700307 .put("id", host.id().toString())
308 .put("type", isNullOrEmpty(hostType) ? "endstation" : hostType)
309 .put("ingress", compactLinkString(edgeLink(host, true)))
310 .put("egress", compactLinkString(edgeLink(host, false)));
Simon Huntda580882015-05-12 20:58:18 -0700311 payload.set("cp", hostConnect(host.location()));
Charles Chan33f28a92015-11-13 13:12:38 -0800312 if (prevHost != null && prevHost.location() != null) {
313 payload.set("prevCp", hostConnect(prevHost.location()));
Simon Hunt95d56fd2015-11-12 11:06:44 -0800314 }
Simon Huntda580882015-05-12 20:58:18 -0700315 payload.set("labels", labels(ip(host.ipAddresses()),
Thomas Vachuska329af532015-03-10 02:08:33 -0700316 host.mac().toString()));
317 payload.set("props", props(host.annotations()));
318 addGeoLocation(host, payload);
319 addMetaUi(host.id().toString(), payload);
320
Simon Hunt95d56fd2015-11-12 11:06:44 -0800321 String type = HOST_EVENT.get(event.type());
Simon Huntd2747a02015-04-30 22:41:16 -0700322 return JsonUtils.envelope(type, 0, payload);
Thomas Vachuska329af532015-03-10 02:08:33 -0700323 }
324
325 // Encodes the specified host location into a JSON object.
Simon Huntda580882015-05-12 20:58:18 -0700326 private ObjectNode hostConnect(HostLocation location) {
327 return objectNode()
Thomas Vachuska329af532015-03-10 02:08:33 -0700328 .put("device", location.deviceId().toString())
329 .put("port", location.port().toLong());
330 }
331
332 // Encodes the specified list of labels a JSON array.
Simon Huntda580882015-05-12 20:58:18 -0700333 private ArrayNode labels(String... labels) {
334 ArrayNode json = arrayNode();
Thomas Vachuska329af532015-03-10 02:08:33 -0700335 for (String label : labels) {
336 json.add(label);
337 }
338 return json;
339 }
340
341 // Returns the name of the master node for the specified device id.
342 private String master(DeviceId deviceId) {
343 NodeId master = mastershipService.getMasterFor(deviceId);
344 return master != null ? master.toString() : "";
345 }
346
347 // Generates an edge link from the specified host location.
348 private EdgeLink edgeLink(Host host, boolean ingress) {
349 return new DefaultEdgeLink(PID, new ConnectPoint(host.id(), portNumber(0)),
350 host.location(), ingress);
351 }
352
353 // Adds meta UI information for the specified object.
354 private void addMetaUi(String id, ObjectNode payload) {
355 ObjectNode meta = metaUi.get(id);
356 if (meta != null) {
357 payload.set("metaUi", meta);
358 }
359 }
360
361 // Adds a geo location JSON to the specified payload object.
362 private void addGeoLocation(Annotated annotated, ObjectNode payload) {
363 Annotations annotations = annotated.annotations();
364 if (annotations == null) {
365 return;
366 }
367
Thomas Vachuska329af532015-03-10 02:08:33 -0700368 String slng = annotations.value(AnnotationKeys.LONGITUDE);
Simon Huntfd7106c2016-02-09 15:05:26 -0800369 String slat = annotations.value(AnnotationKeys.LATITUDE);
Simon Huntf4fd2a22016-08-10 15:41:09 -0700370 boolean validLng = slng != null && !slng.equals(NO_GEO_VALUE);
371 boolean validLat = slat != null && !slat.equals(NO_GEO_VALUE);
372 if (validLat && validLng) {
373 try {
Thomas Vachuska329af532015-03-10 02:08:33 -0700374 double lng = Double.parseDouble(slng);
Simon Huntfd7106c2016-02-09 15:05:26 -0800375 double lat = Double.parseDouble(slat);
Simon Huntda580882015-05-12 20:58:18 -0700376 ObjectNode loc = objectNode()
Simon Huntfd7106c2016-02-09 15:05:26 -0800377 .put("type", "lnglat")
378 .put("lng", lng)
379 .put("lat", lat);
Thomas Vachuska329af532015-03-10 02:08:33 -0700380 payload.set("location", loc);
Simon Huntf4fd2a22016-08-10 15:41:09 -0700381 } catch (NumberFormatException e) {
382 log.warn("Invalid geo data: longitude={}, latitude={}", slng, slat);
Thomas Vachuska329af532015-03-10 02:08:33 -0700383 }
Thomas Vachuska329af532015-03-10 02:08:33 -0700384 }
385 }
386
387 // Updates meta UI information for the specified object.
Simon Huntd2747a02015-04-30 22:41:16 -0700388 protected void updateMetaUi(ObjectNode payload) {
389 metaUi.put(JsonUtils.string(payload, "id"),
390 JsonUtils.node(payload, "memento"));
Thomas Vachuska329af532015-03-10 02:08:33 -0700391 }
392
Simon Hunta17fa672015-08-19 18:42:22 -0700393
Simon Huntb745ca62015-07-28 15:37:11 -0700394 // -----------------------------------------------------------------------
395 // Create models of the data to return, that overlays can adjust / augment
396
397 // Returns property panel model for summary response.
Simon Hunt8a0429a2017-01-06 16:52:47 -0800398 protected PropertyPanel summmaryMessage() {
Thomas Vachuska329af532015-03-10 02:08:33 -0700399 Topology topology = topologyService.currentTopology();
Simon Hunt0af1ec32015-07-24 12:17:55 -0700400
Simon Hunt00a27ff2015-07-28 18:53:40 -0700401 return new PropertyPanel("ONOS Summary", "node")
Thomas Vachuskae50b6212015-12-02 08:00:09 -0800402 .addProp(Properties.VERSION, version)
403 .addSeparator()
chengfanc553c952016-07-22 15:48:23 +0800404 .addProp(Properties.DEVICES, deviceService.getDeviceCount())
Simon Huntfb940112015-07-29 18:36:35 -0700405 .addProp(Properties.LINKS, topology.linkCount())
406 .addProp(Properties.HOSTS, hostService.getHostCount())
407 .addProp(Properties.TOPOLOGY_SSCS, topology.clusterCount())
Simon Hunt00a27ff2015-07-28 18:53:40 -0700408 .addSeparator()
Simon Huntfb940112015-07-29 18:36:35 -0700409 .addProp(Properties.INTENTS, intentService.getIntentCount())
410 .addProp(Properties.TUNNELS, tunnelService.tunnelCount())
Thomas Vachuskae50b6212015-12-02 08:00:09 -0800411 .addProp(Properties.FLOWS, flowService.getFlowRuleCount());
Thomas Vachuska329af532015-03-10 02:08:33 -0700412 }
413
Simon Huntb745ca62015-07-28 15:37:11 -0700414 // Returns property panel model for device details response.
Simon Hunt8a0429a2017-01-06 16:52:47 -0800415 protected PropertyPanel deviceDetails(DeviceId deviceId) {
Thomas Vachuska329af532015-03-10 02:08:33 -0700416 Device device = deviceService.getDevice(deviceId);
417 Annotations annot = device.annotations();
418 String name = annot.value(AnnotationKeys.NAME);
419 int portCount = deviceService.getPorts(deviceId).size();
420 int flowCount = getFlowCount(deviceId);
cheng fan35dc0f22015-06-10 06:02:47 +0800421 int tunnelCount = getTunnelCount(deviceId);
Simon Huntb745ca62015-07-28 15:37:11 -0700422
423 String title = isNullOrEmpty(name) ? deviceId.toString() : name;
424 String typeId = device.type().toString().toLowerCase();
425
426 PropertyPanel pp = new PropertyPanel(title, typeId)
Simon Huntfb940112015-07-29 18:36:35 -0700427 .id(deviceId.toString())
Simon Hunt3a0598f2015-08-04 19:59:04 -0700428
Simon Huntfb940112015-07-29 18:36:35 -0700429 .addProp(Properties.URI, deviceId.toString())
430 .addProp(Properties.VENDOR, device.manufacturer())
431 .addProp(Properties.HW_VERSION, device.hwVersion())
432 .addProp(Properties.SW_VERSION, device.swVersion())
433 .addProp(Properties.SERIAL_NUMBER, device.serialNumber())
434 .addProp(Properties.PROTOCOL, annot.value(AnnotationKeys.PROTOCOL))
435 .addSeparator()
Simon Hunt3a0598f2015-08-04 19:59:04 -0700436
Simon Huntfb940112015-07-29 18:36:35 -0700437 .addProp(Properties.LATITUDE, annot.value(AnnotationKeys.LATITUDE))
438 .addProp(Properties.LONGITUDE, annot.value(AnnotationKeys.LONGITUDE))
439 .addSeparator()
Simon Hunt3a0598f2015-08-04 19:59:04 -0700440
Simon Huntfb940112015-07-29 18:36:35 -0700441 .addProp(Properties.PORTS, portCount)
442 .addProp(Properties.FLOWS, flowCount)
Simon Hunt3a0598f2015-08-04 19:59:04 -0700443 .addProp(Properties.TUNNELS, tunnelCount)
Simon Hunt00a27ff2015-07-28 18:53:40 -0700444
Simon Hunt3a0598f2015-08-04 19:59:04 -0700445 .addButton(CoreButtons.SHOW_DEVICE_VIEW)
446 .addButton(CoreButtons.SHOW_FLOW_VIEW)
447 .addButton(CoreButtons.SHOW_PORT_VIEW)
Jian Li79f67322016-01-06 18:22:37 -0800448 .addButton(CoreButtons.SHOW_GROUP_VIEW)
449 .addButton(CoreButtons.SHOW_METER_VIEW);
Simon Huntb745ca62015-07-28 15:37:11 -0700450
451 return pp;
Thomas Vachuska329af532015-03-10 02:08:33 -0700452 }
453
454 protected int getFlowCount(DeviceId deviceId) {
455 int count = 0;
Simon Huntb745ca62015-07-28 15:37:11 -0700456 for (FlowEntry flowEntry : flowService.getFlowEntries(deviceId)) {
Thomas Vachuska329af532015-03-10 02:08:33 -0700457 count++;
Thomas Vachuska329af532015-03-10 02:08:33 -0700458 }
459 return count;
460 }
461
cheng fan35dc0f22015-06-10 06:02:47 +0800462 protected int getTunnelCount(DeviceId deviceId) {
463 int count = 0;
464 Collection<Tunnel> tunnels = tunnelService.queryAllTunnels();
465 for (Tunnel tunnel : tunnels) {
chengfanc553c952016-07-22 15:48:23 +0800466 //Only OpticalTunnelEndPoint has a device
467 if (!(tunnel.src() instanceof OpticalTunnelEndPoint) ||
468 !(tunnel.dst() instanceof OpticalTunnelEndPoint)) {
469 continue;
470 }
471
472 Optional<ElementId> srcElementId = ((OpticalTunnelEndPoint) tunnel.src()).elementId();
473 Optional<ElementId> dstElementId = ((OpticalTunnelEndPoint) tunnel.dst()).elementId();
474 if (!srcElementId.isPresent() || !dstElementId.isPresent()) {
475 continue;
476 }
477 DeviceId srcDeviceId = (DeviceId) srcElementId.get();
478 DeviceId dstDeviceId = (DeviceId) dstElementId.get();
479 if (srcDeviceId.equals(deviceId) || dstDeviceId.equals(deviceId)) {
cheng fan35dc0f22015-06-10 06:02:47 +0800480 count++;
481 }
482 }
483 return count;
484 }
485
Simon Hunta17fa672015-08-19 18:42:22 -0700486 // Counts all flow entries that egress on the links of the given device.
487 private Map<Link, Integer> getLinkFlowCounts(DeviceId deviceId) {
488 // get the flows for the device
Thomas Vachuska329af532015-03-10 02:08:33 -0700489 List<FlowEntry> entries = new ArrayList<>();
Simon Huntb745ca62015-07-28 15:37:11 -0700490 for (FlowEntry flowEntry : flowService.getFlowEntries(deviceId)) {
491 entries.add(flowEntry);
Thomas Vachuska329af532015-03-10 02:08:33 -0700492 }
493
Simon Hunta17fa672015-08-19 18:42:22 -0700494 // get egress links from device, and include edge links
495 Set<Link> links = new HashSet<>(linkService.getDeviceEgressLinks(deviceId));
496 Set<Host> hosts = hostService.getConnectedHosts(deviceId);
Thomas Vachuska329af532015-03-10 02:08:33 -0700497 if (hosts != null) {
498 for (Host host : hosts) {
Simon Hunta17fa672015-08-19 18:42:22 -0700499 links.add(createEdgeLink(host, false));
Thomas Vachuska329af532015-03-10 02:08:33 -0700500 }
501 }
502
Simon Hunta17fa672015-08-19 18:42:22 -0700503 // compile flow counts per link
Thomas Vachuska329af532015-03-10 02:08:33 -0700504 Map<Link, Integer> counts = new HashMap<>();
505 for (Link link : links) {
506 counts.put(link, getEgressFlows(link, entries));
507 }
508 return counts;
509 }
510
511 // Counts all entries that egress on the link source port.
Simon Hunta17fa672015-08-19 18:42:22 -0700512 private int getEgressFlows(Link link, List<FlowEntry> entries) {
Thomas Vachuska329af532015-03-10 02:08:33 -0700513 int count = 0;
514 PortNumber out = link.src().port();
515 for (FlowEntry entry : entries) {
516 TrafficTreatment treatment = entry.treatment();
Ray Milkey42507352015-03-20 15:16:10 -0700517 for (Instruction instruction : treatment.allInstructions()) {
Thomas Vachuska329af532015-03-10 02:08:33 -0700518 if (instruction.type() == Instruction.Type.OUTPUT &&
519 ((OutputInstruction) instruction).port().equals(out)) {
520 count++;
521 }
522 }
523 }
524 return count;
525 }
526
Thomas Vachuska329af532015-03-10 02:08:33 -0700527 // Returns host details response.
Simon Hunt8a0429a2017-01-06 16:52:47 -0800528 protected PropertyPanel hostDetails(HostId hostId) {
Thomas Vachuska329af532015-03-10 02:08:33 -0700529 Host host = hostService.getHost(hostId);
530 Annotations annot = host.annotations();
531 String type = annot.value(AnnotationKeys.TYPE);
532 String name = annot.value(AnnotationKeys.NAME);
533 String vlan = host.vlan().toString();
Simon Huntb745ca62015-07-28 15:37:11 -0700534
535 String title = isNullOrEmpty(name) ? hostId.toString() : name;
536 String typeId = isNullOrEmpty(type) ? "endstation" : type;
537
538 PropertyPanel pp = new PropertyPanel(title, typeId)
Simon Huntfb940112015-07-29 18:36:35 -0700539 .id(hostId.toString())
540 .addProp(Properties.MAC, host.mac())
541 .addProp(Properties.IP, host.ipAddresses(), "[\\[\\]]")
542 .addProp(Properties.VLAN, vlan.equals("-1") ? "none" : vlan)
543 .addSeparator()
544 .addProp(Properties.LATITUDE, annot.value(AnnotationKeys.LATITUDE))
545 .addProp(Properties.LONGITUDE, annot.value(AnnotationKeys.LONGITUDE));
Simon Huntb745ca62015-07-28 15:37:11 -0700546
Simon Hunta17fa672015-08-19 18:42:22 -0700547 // Potentially add button descriptors here
Simon Huntb745ca62015-07-28 15:37:11 -0700548 return pp;
Thomas Vachuska329af532015-03-10 02:08:33 -0700549 }
550
Thomas Vachuska329af532015-03-10 02:08:33 -0700551}