blob: 29c49926035a89fdb44b1cdd4a0f677092501d15 [file] [log] [blame]
Thomas Vachuska329af532015-03-10 02:08:33 -07001/*
Jian Li79f67322016-01-06 18:22:37 -08002 * Copyright 2015,2016 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;
42import org.onosproject.net.Host;
43import org.onosproject.net.HostId;
44import org.onosproject.net.HostLocation;
45import org.onosproject.net.Link;
Thomas Vachuska329af532015-03-10 02:08:33 -070046import org.onosproject.net.PortNumber;
47import org.onosproject.net.device.DeviceEvent;
48import org.onosproject.net.device.DeviceService;
49import org.onosproject.net.flow.FlowEntry;
50import org.onosproject.net.flow.FlowRuleService;
51import org.onosproject.net.flow.TrafficTreatment;
52import org.onosproject.net.flow.instructions.Instruction;
53import org.onosproject.net.flow.instructions.Instructions.OutputInstruction;
54import org.onosproject.net.host.HostEvent;
55import org.onosproject.net.host.HostService;
Thomas Vachuska329af532015-03-10 02:08:33 -070056import org.onosproject.net.intent.IntentService;
Thomas Vachuska329af532015-03-10 02:08:33 -070057import org.onosproject.net.link.LinkEvent;
58import org.onosproject.net.link.LinkService;
59import org.onosproject.net.provider.ProviderId;
Thomas Vachuska329af532015-03-10 02:08:33 -070060import org.onosproject.net.statistic.StatisticService;
61import org.onosproject.net.topology.Topology;
62import org.onosproject.net.topology.TopologyService;
Simon Huntd2747a02015-04-30 22:41:16 -070063import org.onosproject.ui.JsonUtils;
Thomas Vachuska329af532015-03-10 02:08:33 -070064import org.onosproject.ui.UiConnection;
Simon Hunta0ddb022015-05-01 09:53:01 -070065import org.onosproject.ui.UiMessageHandler;
Simon Hunta17fa672015-08-19 18:42:22 -070066import org.onosproject.ui.impl.topo.ServicesBundle;
Simon Hunt0af1ec32015-07-24 12:17:55 -070067import org.onosproject.ui.topo.PropertyPanel;
Thomas Vachuska329af532015-03-10 02:08:33 -070068import org.slf4j.Logger;
69import org.slf4j.LoggerFactory;
70
Thomas Vachuska329af532015-03-10 02:08:33 -070071import java.util.ArrayList;
72import java.util.Collection;
73import java.util.Collections;
74import java.util.HashMap;
75import java.util.HashSet;
76import java.util.Iterator;
77import java.util.List;
78import java.util.Map;
79import java.util.Set;
80import java.util.concurrent.ConcurrentHashMap;
81
82import static com.google.common.base.Preconditions.checkNotNull;
83import static com.google.common.base.Strings.isNullOrEmpty;
Thomas Vachuska204cb6c2015-06-04 00:03:06 -070084import static org.onosproject.net.DefaultEdgeLink.createEdgeLink;
Thomas Vachuska329af532015-03-10 02:08:33 -070085import static org.onosproject.net.PortNumber.portNumber;
Simon Hunt3a0598f2015-08-04 19:59:04 -070086import static org.onosproject.ui.topo.TopoConstants.CoreButtons;
87import static org.onosproject.ui.topo.TopoConstants.Properties;
Simon Huntd3ceffa2015-08-25 12:44:35 -070088import static org.onosproject.ui.topo.TopoUtils.compactLinkString;
Thomas Vachuska329af532015-03-10 02:08:33 -070089
90/**
91 * Facility for creating messages bound for the topology viewer.
92 */
Simon Hunta0ddb022015-05-01 09:53:01 -070093public abstract class TopologyViewMessageHandlerBase extends UiMessageHandler {
Thomas Vachuska329af532015-03-10 02:08:33 -070094
Simon Hunt95d56fd2015-11-12 11:06:44 -080095 // default to an "add" event...
96 private static final DefaultHashMap<ClusterEvent.Type, String> CLUSTER_EVENT =
97 new DefaultHashMap<>("addInstance");
98
99 // default to an "update" event...
100 private static final DefaultHashMap<DeviceEvent.Type, String> DEVICE_EVENT =
101 new DefaultHashMap<>("updateDevice");
102 private static final DefaultHashMap<LinkEvent.Type, String> LINK_EVENT =
103 new DefaultHashMap<>("updateLink");
104 private static final DefaultHashMap<HostEvent.Type, String> HOST_EVENT =
105 new DefaultHashMap<>("updateHost");
106
107 // but call out specific events that we care to differentiate...
108 static {
109 CLUSTER_EVENT.put(ClusterEvent.Type.INSTANCE_REMOVED, "removeInstance");
110
111 DEVICE_EVENT.put(DeviceEvent.Type.DEVICE_ADDED, "addDevice");
112 DEVICE_EVENT.put(DeviceEvent.Type.DEVICE_REMOVED, "removeDevice");
113
114 LINK_EVENT.put(LinkEvent.Type.LINK_ADDED, "addLink");
115 LINK_EVENT.put(LinkEvent.Type.LINK_REMOVED, "removeLink");
116
117 HOST_EVENT.put(HostEvent.Type.HOST_ADDED, "addHost");
118 HOST_EVENT.put(HostEvent.Type.HOST_REMOVED, "removeHost");
119 HOST_EVENT.put(HostEvent.Type.HOST_MOVED, "moveHost");
120 }
121
Simon Huntd2747a02015-04-30 22:41:16 -0700122 protected static final Logger log =
123 LoggerFactory.getLogger(TopologyViewMessageHandlerBase.class);
Thomas Vachuska329af532015-03-10 02:08:33 -0700124
Simon Huntd2747a02015-04-30 22:41:16 -0700125 private static final ProviderId PID =
126 new ProviderId("core", "org.onosproject.core", true);
Thomas Vachuska329af532015-03-10 02:08:33 -0700127
Simon Hunta17fa672015-08-19 18:42:22 -0700128 protected static final String SHOW_HIGHLIGHTS = "showHighlights";
Thomas Vachuskaf0397b52015-05-29 13:50:17 -0700129
Thomas Vachuska329af532015-03-10 02:08:33 -0700130 protected ServiceDirectory directory;
131 protected ClusterService clusterService;
132 protected DeviceService deviceService;
133 protected LinkService linkService;
134 protected HostService hostService;
135 protected MastershipService mastershipService;
136 protected IntentService intentService;
137 protected FlowRuleService flowService;
Thomas Vachuskaf0397b52015-05-29 13:50:17 -0700138 protected StatisticService flowStatsService;
139 protected PortStatisticsService portStatsService;
Thomas Vachuska329af532015-03-10 02:08:33 -0700140 protected TopologyService topologyService;
cheng fan35dc0f22015-06-10 06:02:47 +0800141 protected TunnelService tunnelService;
Thomas Vachuska329af532015-03-10 02:08:33 -0700142
Simon Hunta17fa672015-08-19 18:42:22 -0700143 protected ServicesBundle servicesBundle;
Thomas Vachuskaf0397b52015-05-29 13:50:17 -0700144
Thomas Vachuska329af532015-03-10 02:08:33 -0700145 private String version;
146
147 // TODO: extract into an external & durable state; good enough for now and demo
148 private static Map<String, ObjectNode> metaUi = new ConcurrentHashMap<>();
149
150 /**
Thomas Vachuska329af532015-03-10 02:08:33 -0700151 * Returns read-only view of the meta-ui information.
152 *
153 * @return map of id to meta-ui mementos
154 */
155 static Map<String, ObjectNode> getMetaUi() {
156 return Collections.unmodifiableMap(metaUi);
157 }
158
159 @Override
160 public void init(UiConnection connection, ServiceDirectory directory) {
161 super.init(connection, directory);
162 this.directory = checkNotNull(directory, "Directory cannot be null");
163 clusterService = directory.get(ClusterService.class);
164 deviceService = directory.get(DeviceService.class);
165 linkService = directory.get(LinkService.class);
166 hostService = directory.get(HostService.class);
167 mastershipService = directory.get(MastershipService.class);
168 intentService = directory.get(IntentService.class);
169 flowService = directory.get(FlowRuleService.class);
Thomas Vachuskaf0397b52015-05-29 13:50:17 -0700170 flowStatsService = directory.get(StatisticService.class);
171 portStatsService = directory.get(PortStatisticsService.class);
Thomas Vachuska329af532015-03-10 02:08:33 -0700172 topologyService = directory.get(TopologyService.class);
cheng fan35dc0f22015-06-10 06:02:47 +0800173 tunnelService = directory.get(TunnelService.class);
Thomas Vachuska329af532015-03-10 02:08:33 -0700174
Simon Hunta17fa672015-08-19 18:42:22 -0700175 servicesBundle = new ServicesBundle(intentService, deviceService,
176 hostService, linkService,
177 flowService,
178 flowStatsService, portStatsService);
179
Thomas Vachuska329af532015-03-10 02:08:33 -0700180 String ver = directory.get(CoreService.class).version().toString();
181 version = ver.replace(".SNAPSHOT", "*").replaceFirst("~.*$", "");
182 }
183
Thomas Vachuska329af532015-03-10 02:08:33 -0700184 // Returns the specified set of IP addresses as a string.
185 private String ip(Set<IpAddress> ipAddresses) {
186 Iterator<IpAddress> it = ipAddresses.iterator();
187 return it.hasNext() ? it.next().toString() : "unknown";
188 }
189
190 // Produces JSON structure from annotations.
191 private JsonNode props(Annotations annotations) {
Simon Huntda580882015-05-12 20:58:18 -0700192 ObjectNode props = objectNode();
Thomas Vachuska329af532015-03-10 02:08:33 -0700193 if (annotations != null) {
194 for (String key : annotations.keys()) {
195 props.put(key, annotations.value(key));
196 }
197 }
198 return props;
199 }
200
201 // Produces an informational log message event bound to the client.
202 protected ObjectNode info(long id, String message) {
203 return message("info", id, message);
204 }
205
206 // Produces a warning log message event bound to the client.
207 protected ObjectNode warning(long id, String message) {
208 return message("warning", id, message);
209 }
210
211 // Produces an error log message event bound to the client.
212 protected ObjectNode error(long id, String message) {
213 return message("error", id, message);
214 }
215
216 // Produces a log message event bound to the client.
217 private ObjectNode message(String severity, long id, String message) {
Simon Huntda580882015-05-12 20:58:18 -0700218 ObjectNode payload = objectNode()
Simon Huntd2747a02015-04-30 22:41:16 -0700219 .put("severity", severity)
220 .put("message", message);
Thomas Vachuska329af532015-03-10 02:08:33 -0700221
Simon Huntd2747a02015-04-30 22:41:16 -0700222 return JsonUtils.envelope("message", id, payload);
Thomas Vachuska329af532015-03-10 02:08:33 -0700223 }
224
Thomas Vachuska329af532015-03-10 02:08:33 -0700225 // Produces a cluster instance message to the client.
Simon Hunt95d56fd2015-11-12 11:06:44 -0800226 protected ObjectNode instanceMessage(ClusterEvent event, String msgType) {
Thomas Vachuska329af532015-03-10 02:08:33 -0700227 ControllerNode node = event.subject();
228 int switchCount = mastershipService.getDevicesOf(node.id()).size();
Simon Huntda580882015-05-12 20:58:18 -0700229 ObjectNode payload = objectNode()
Thomas Vachuska329af532015-03-10 02:08:33 -0700230 .put("id", node.id().toString())
231 .put("ip", node.ip().toString())
Thomas Vachuska7a8de842016-03-07 20:56:35 -0800232 .put("online", clusterService.getState(node.id()).isActive())
Thomas Vachuskafba7f3d2016-03-23 15:46:25 -0700233 .put("ready", clusterService.getState(node.id()).isReady())
Thomas Vachuskab6acc7b2015-03-11 09:11:21 -0700234 .put("uiAttached", node.equals(clusterService.getLocalNode()))
Thomas Vachuska329af532015-03-10 02:08:33 -0700235 .put("switches", switchCount);
236
Simon Huntda580882015-05-12 20:58:18 -0700237 ArrayNode labels = arrayNode();
Thomas Vachuska329af532015-03-10 02:08:33 -0700238 labels.add(node.id().toString());
239 labels.add(node.ip().toString());
240
241 // Add labels, props and stuff the payload into envelope.
242 payload.set("labels", labels);
243 addMetaUi(node.id().toString(), payload);
244
Simon Hunt95d56fd2015-11-12 11:06:44 -0800245 String type = msgType != null ? msgType : CLUSTER_EVENT.get(event.type());
Simon Huntd2747a02015-04-30 22:41:16 -0700246 return JsonUtils.envelope(type, 0, payload);
Thomas Vachuska329af532015-03-10 02:08:33 -0700247 }
248
249 // Produces a device event message to the client.
250 protected ObjectNode deviceMessage(DeviceEvent event) {
251 Device device = event.subject();
Simon Huntda580882015-05-12 20:58:18 -0700252 ObjectNode payload = objectNode()
Thomas Vachuska329af532015-03-10 02:08:33 -0700253 .put("id", device.id().toString())
254 .put("type", device.type().toString().toLowerCase())
255 .put("online", deviceService.isAvailable(device.id()))
256 .put("master", master(device.id()));
257
258 // Generate labels: id, chassis id, no-label, optional-name
259 String name = device.annotations().value(AnnotationKeys.NAME);
Simon Huntda580882015-05-12 20:58:18 -0700260 ArrayNode labels = arrayNode();
Thomas Vachuska329af532015-03-10 02:08:33 -0700261 labels.add("");
262 labels.add(isNullOrEmpty(name) ? device.id().toString() : name);
263 labels.add(device.id().toString());
264
265 // Add labels, props and stuff the payload into envelope.
266 payload.set("labels", labels);
267 payload.set("props", props(device.annotations()));
268 addGeoLocation(device, payload);
269 addMetaUi(device.id().toString(), payload);
270
Simon Hunt95d56fd2015-11-12 11:06:44 -0800271 String type = DEVICE_EVENT.get(event.type());
Simon Huntd2747a02015-04-30 22:41:16 -0700272 return JsonUtils.envelope(type, 0, payload);
Thomas Vachuska329af532015-03-10 02:08:33 -0700273 }
274
275 // Produces a link event message to the client.
276 protected ObjectNode linkMessage(LinkEvent event) {
277 Link link = event.subject();
Simon Huntda580882015-05-12 20:58:18 -0700278 ObjectNode payload = objectNode()
Thomas Vachuska329af532015-03-10 02:08:33 -0700279 .put("id", compactLinkString(link))
280 .put("type", link.type().toString().toLowerCase())
Ray Milkeyb7f0f642016-01-22 16:08:14 -0800281 .put("expected", link.isExpected())
Thomas Vachuska329af532015-03-10 02:08:33 -0700282 .put("online", link.state() == Link.State.ACTIVE)
283 .put("linkWidth", 1.2)
284 .put("src", link.src().deviceId().toString())
285 .put("srcPort", link.src().port().toString())
286 .put("dst", link.dst().deviceId().toString())
287 .put("dstPort", link.dst().port().toString());
Simon Hunt95d56fd2015-11-12 11:06:44 -0800288 String type = LINK_EVENT.get(event.type());
Simon Huntd2747a02015-04-30 22:41:16 -0700289 return JsonUtils.envelope(type, 0, payload);
Thomas Vachuska329af532015-03-10 02:08:33 -0700290 }
291
292 // Produces a host event message to the client.
293 protected ObjectNode hostMessage(HostEvent event) {
294 Host host = event.subject();
Charles Chan33f28a92015-11-13 13:12:38 -0800295 Host prevHost = event.prevSubject();
Thomas Vachuska329af532015-03-10 02:08:33 -0700296 String hostType = host.annotations().value(AnnotationKeys.TYPE);
Simon Hunt95d56fd2015-11-12 11:06:44 -0800297
Simon Huntda580882015-05-12 20:58:18 -0700298 ObjectNode payload = objectNode()
Thomas Vachuska329af532015-03-10 02:08:33 -0700299 .put("id", host.id().toString())
300 .put("type", isNullOrEmpty(hostType) ? "endstation" : hostType)
301 .put("ingress", compactLinkString(edgeLink(host, true)))
302 .put("egress", compactLinkString(edgeLink(host, false)));
Simon Huntda580882015-05-12 20:58:18 -0700303 payload.set("cp", hostConnect(host.location()));
Charles Chan33f28a92015-11-13 13:12:38 -0800304 if (prevHost != null && prevHost.location() != null) {
305 payload.set("prevCp", hostConnect(prevHost.location()));
Simon Hunt95d56fd2015-11-12 11:06:44 -0800306 }
Simon Huntda580882015-05-12 20:58:18 -0700307 payload.set("labels", labels(ip(host.ipAddresses()),
Thomas Vachuska329af532015-03-10 02:08:33 -0700308 host.mac().toString()));
309 payload.set("props", props(host.annotations()));
310 addGeoLocation(host, payload);
311 addMetaUi(host.id().toString(), payload);
312
Simon Hunt95d56fd2015-11-12 11:06:44 -0800313 String type = HOST_EVENT.get(event.type());
Simon Huntd2747a02015-04-30 22:41:16 -0700314 return JsonUtils.envelope(type, 0, payload);
Thomas Vachuska329af532015-03-10 02:08:33 -0700315 }
316
317 // Encodes the specified host location into a JSON object.
Simon Huntda580882015-05-12 20:58:18 -0700318 private ObjectNode hostConnect(HostLocation location) {
319 return objectNode()
Thomas Vachuska329af532015-03-10 02:08:33 -0700320 .put("device", location.deviceId().toString())
321 .put("port", location.port().toLong());
322 }
323
324 // Encodes the specified list of labels a JSON array.
Simon Huntda580882015-05-12 20:58:18 -0700325 private ArrayNode labels(String... labels) {
326 ArrayNode json = arrayNode();
Thomas Vachuska329af532015-03-10 02:08:33 -0700327 for (String label : labels) {
328 json.add(label);
329 }
330 return json;
331 }
332
333 // Returns the name of the master node for the specified device id.
334 private String master(DeviceId deviceId) {
335 NodeId master = mastershipService.getMasterFor(deviceId);
336 return master != null ? master.toString() : "";
337 }
338
339 // Generates an edge link from the specified host location.
340 private EdgeLink edgeLink(Host host, boolean ingress) {
341 return new DefaultEdgeLink(PID, new ConnectPoint(host.id(), portNumber(0)),
342 host.location(), ingress);
343 }
344
345 // Adds meta UI information for the specified object.
346 private void addMetaUi(String id, ObjectNode payload) {
347 ObjectNode meta = metaUi.get(id);
348 if (meta != null) {
349 payload.set("metaUi", meta);
350 }
351 }
352
353 // Adds a geo location JSON to the specified payload object.
354 private void addGeoLocation(Annotated annotated, ObjectNode payload) {
355 Annotations annotations = annotated.annotations();
356 if (annotations == null) {
357 return;
358 }
359
Thomas Vachuska329af532015-03-10 02:08:33 -0700360 String slng = annotations.value(AnnotationKeys.LONGITUDE);
Simon Huntfd7106c2016-02-09 15:05:26 -0800361 String slat = annotations.value(AnnotationKeys.LATITUDE);
362 boolean haveLng = slng != null && !slng.isEmpty();
363 boolean haveLat = slat != null && !slat.isEmpty();
Thomas Vachuska329af532015-03-10 02:08:33 -0700364 try {
Simon Huntfd7106c2016-02-09 15:05:26 -0800365 if (haveLng && haveLat) {
Thomas Vachuska329af532015-03-10 02:08:33 -0700366 double lng = Double.parseDouble(slng);
Simon Huntfd7106c2016-02-09 15:05:26 -0800367 double lat = Double.parseDouble(slat);
Simon Huntda580882015-05-12 20:58:18 -0700368 ObjectNode loc = objectNode()
Simon Huntfd7106c2016-02-09 15:05:26 -0800369 .put("type", "lnglat")
370 .put("lng", lng)
371 .put("lat", lat);
Thomas Vachuska329af532015-03-10 02:08:33 -0700372 payload.set("location", loc);
Simon Huntfd7106c2016-02-09 15:05:26 -0800373 } else {
374 log.trace("missing Lng/Lat: lng={}, lat={}", slng, slat);
Thomas Vachuska329af532015-03-10 02:08:33 -0700375 }
376 } catch (NumberFormatException e) {
Simon Huntfd7106c2016-02-09 15:05:26 -0800377 log.warn("Invalid geo data: longitude={}, latitude={}", slng, slat);
Thomas Vachuska329af532015-03-10 02:08:33 -0700378 }
379 }
380
381 // Updates meta UI information for the specified object.
Simon Huntd2747a02015-04-30 22:41:16 -0700382 protected void updateMetaUi(ObjectNode payload) {
383 metaUi.put(JsonUtils.string(payload, "id"),
384 JsonUtils.node(payload, "memento"));
Thomas Vachuska329af532015-03-10 02:08:33 -0700385 }
386
Simon Hunta17fa672015-08-19 18:42:22 -0700387
Simon Huntb745ca62015-07-28 15:37:11 -0700388 // -----------------------------------------------------------------------
389 // Create models of the data to return, that overlays can adjust / augment
390
391 // Returns property panel model for summary response.
Simon Hunt0af1ec32015-07-24 12:17:55 -0700392 protected PropertyPanel summmaryMessage(long sid) {
Thomas Vachuska329af532015-03-10 02:08:33 -0700393 Topology topology = topologyService.currentTopology();
Simon Hunt0af1ec32015-07-24 12:17:55 -0700394
Simon Hunt00a27ff2015-07-28 18:53:40 -0700395 return new PropertyPanel("ONOS Summary", "node")
Thomas Vachuskae50b6212015-12-02 08:00:09 -0800396 .addProp(Properties.VERSION, version)
397 .addSeparator()
Thomas Vachuska297907a2015-12-04 16:14:27 -0800398 .addProp(Properties.DEVICES, deviceService.getDeviceCount())
Simon Huntfb940112015-07-29 18:36:35 -0700399 .addProp(Properties.LINKS, topology.linkCount())
400 .addProp(Properties.HOSTS, hostService.getHostCount())
401 .addProp(Properties.TOPOLOGY_SSCS, topology.clusterCount())
Simon Hunt00a27ff2015-07-28 18:53:40 -0700402 .addSeparator()
Simon Huntfb940112015-07-29 18:36:35 -0700403 .addProp(Properties.INTENTS, intentService.getIntentCount())
404 .addProp(Properties.TUNNELS, tunnelService.tunnelCount())
Thomas Vachuskae50b6212015-12-02 08:00:09 -0800405 .addProp(Properties.FLOWS, flowService.getFlowRuleCount());
Thomas Vachuska329af532015-03-10 02:08:33 -0700406 }
407
Simon Huntb745ca62015-07-28 15:37:11 -0700408 // Returns property panel model for device details response.
409 protected PropertyPanel deviceDetails(DeviceId deviceId, long sid) {
Thomas Vachuska329af532015-03-10 02:08:33 -0700410 Device device = deviceService.getDevice(deviceId);
411 Annotations annot = device.annotations();
412 String name = annot.value(AnnotationKeys.NAME);
413 int portCount = deviceService.getPorts(deviceId).size();
414 int flowCount = getFlowCount(deviceId);
cheng fan35dc0f22015-06-10 06:02:47 +0800415 int tunnelCount = getTunnelCount(deviceId);
Simon Huntb745ca62015-07-28 15:37:11 -0700416
417 String title = isNullOrEmpty(name) ? deviceId.toString() : name;
418 String typeId = device.type().toString().toLowerCase();
419
420 PropertyPanel pp = new PropertyPanel(title, typeId)
Simon Huntfb940112015-07-29 18:36:35 -0700421 .id(deviceId.toString())
Simon Hunt3a0598f2015-08-04 19:59:04 -0700422
Simon Huntfb940112015-07-29 18:36:35 -0700423 .addProp(Properties.URI, deviceId.toString())
424 .addProp(Properties.VENDOR, device.manufacturer())
425 .addProp(Properties.HW_VERSION, device.hwVersion())
426 .addProp(Properties.SW_VERSION, device.swVersion())
427 .addProp(Properties.SERIAL_NUMBER, device.serialNumber())
428 .addProp(Properties.PROTOCOL, annot.value(AnnotationKeys.PROTOCOL))
429 .addSeparator()
Simon Hunt3a0598f2015-08-04 19:59:04 -0700430
Simon Huntfb940112015-07-29 18:36:35 -0700431 .addProp(Properties.LATITUDE, annot.value(AnnotationKeys.LATITUDE))
432 .addProp(Properties.LONGITUDE, annot.value(AnnotationKeys.LONGITUDE))
433 .addSeparator()
Simon Hunt3a0598f2015-08-04 19:59:04 -0700434
Simon Huntfb940112015-07-29 18:36:35 -0700435 .addProp(Properties.PORTS, portCount)
436 .addProp(Properties.FLOWS, flowCount)
Simon Hunt3a0598f2015-08-04 19:59:04 -0700437 .addProp(Properties.TUNNELS, tunnelCount)
Simon Hunt00a27ff2015-07-28 18:53:40 -0700438
Simon Hunt3a0598f2015-08-04 19:59:04 -0700439 .addButton(CoreButtons.SHOW_DEVICE_VIEW)
440 .addButton(CoreButtons.SHOW_FLOW_VIEW)
441 .addButton(CoreButtons.SHOW_PORT_VIEW)
Jian Li79f67322016-01-06 18:22:37 -0800442 .addButton(CoreButtons.SHOW_GROUP_VIEW)
443 .addButton(CoreButtons.SHOW_METER_VIEW);
Simon Huntb745ca62015-07-28 15:37:11 -0700444
445 return pp;
Thomas Vachuska329af532015-03-10 02:08:33 -0700446 }
447
448 protected int getFlowCount(DeviceId deviceId) {
449 int count = 0;
Simon Huntb745ca62015-07-28 15:37:11 -0700450 for (FlowEntry flowEntry : flowService.getFlowEntries(deviceId)) {
Thomas Vachuska329af532015-03-10 02:08:33 -0700451 count++;
Thomas Vachuska329af532015-03-10 02:08:33 -0700452 }
453 return count;
454 }
455
cheng fan35dc0f22015-06-10 06:02:47 +0800456 protected int getTunnelCount(DeviceId deviceId) {
457 int count = 0;
458 Collection<Tunnel> tunnels = tunnelService.queryAllTunnels();
459 for (Tunnel tunnel : tunnels) {
460 OpticalTunnelEndPoint src = (OpticalTunnelEndPoint) tunnel.src();
461 OpticalTunnelEndPoint dst = (OpticalTunnelEndPoint) tunnel.dst();
462 DeviceId srcDevice = (DeviceId) src.elementId().get();
463 DeviceId dstDevice = (DeviceId) dst.elementId().get();
Simon Huntb745ca62015-07-28 15:37:11 -0700464 if (srcDevice.toString().equals(deviceId.toString()) ||
465 dstDevice.toString().equals(deviceId.toString())) {
cheng fan35dc0f22015-06-10 06:02:47 +0800466 count++;
467 }
468 }
469 return count;
470 }
471
Simon Hunta17fa672015-08-19 18:42:22 -0700472 // Counts all flow entries that egress on the links of the given device.
473 private Map<Link, Integer> getLinkFlowCounts(DeviceId deviceId) {
474 // get the flows for the device
Thomas Vachuska329af532015-03-10 02:08:33 -0700475 List<FlowEntry> entries = new ArrayList<>();
Simon Huntb745ca62015-07-28 15:37:11 -0700476 for (FlowEntry flowEntry : flowService.getFlowEntries(deviceId)) {
477 entries.add(flowEntry);
Thomas Vachuska329af532015-03-10 02:08:33 -0700478 }
479
Simon Hunta17fa672015-08-19 18:42:22 -0700480 // get egress links from device, and include edge links
481 Set<Link> links = new HashSet<>(linkService.getDeviceEgressLinks(deviceId));
482 Set<Host> hosts = hostService.getConnectedHosts(deviceId);
Thomas Vachuska329af532015-03-10 02:08:33 -0700483 if (hosts != null) {
484 for (Host host : hosts) {
Simon Hunta17fa672015-08-19 18:42:22 -0700485 links.add(createEdgeLink(host, false));
Thomas Vachuska329af532015-03-10 02:08:33 -0700486 }
487 }
488
Simon Hunta17fa672015-08-19 18:42:22 -0700489 // compile flow counts per link
Thomas Vachuska329af532015-03-10 02:08:33 -0700490 Map<Link, Integer> counts = new HashMap<>();
491 for (Link link : links) {
492 counts.put(link, getEgressFlows(link, entries));
493 }
494 return counts;
495 }
496
497 // Counts all entries that egress on the link source port.
Simon Hunta17fa672015-08-19 18:42:22 -0700498 private int getEgressFlows(Link link, List<FlowEntry> entries) {
Thomas Vachuska329af532015-03-10 02:08:33 -0700499 int count = 0;
500 PortNumber out = link.src().port();
501 for (FlowEntry entry : entries) {
502 TrafficTreatment treatment = entry.treatment();
Ray Milkey42507352015-03-20 15:16:10 -0700503 for (Instruction instruction : treatment.allInstructions()) {
Thomas Vachuska329af532015-03-10 02:08:33 -0700504 if (instruction.type() == Instruction.Type.OUTPUT &&
505 ((OutputInstruction) instruction).port().equals(out)) {
506 count++;
507 }
508 }
509 }
510 return count;
511 }
512
Thomas Vachuska329af532015-03-10 02:08:33 -0700513 // Returns host details response.
Simon Huntb745ca62015-07-28 15:37:11 -0700514 protected PropertyPanel hostDetails(HostId hostId, long sid) {
Thomas Vachuska329af532015-03-10 02:08:33 -0700515 Host host = hostService.getHost(hostId);
516 Annotations annot = host.annotations();
517 String type = annot.value(AnnotationKeys.TYPE);
518 String name = annot.value(AnnotationKeys.NAME);
519 String vlan = host.vlan().toString();
Simon Huntb745ca62015-07-28 15:37:11 -0700520
521 String title = isNullOrEmpty(name) ? hostId.toString() : name;
522 String typeId = isNullOrEmpty(type) ? "endstation" : type;
523
524 PropertyPanel pp = new PropertyPanel(title, typeId)
Simon Huntfb940112015-07-29 18:36:35 -0700525 .id(hostId.toString())
526 .addProp(Properties.MAC, host.mac())
527 .addProp(Properties.IP, host.ipAddresses(), "[\\[\\]]")
528 .addProp(Properties.VLAN, vlan.equals("-1") ? "none" : vlan)
529 .addSeparator()
530 .addProp(Properties.LATITUDE, annot.value(AnnotationKeys.LATITUDE))
531 .addProp(Properties.LONGITUDE, annot.value(AnnotationKeys.LONGITUDE));
Simon Huntb745ca62015-07-28 15:37:11 -0700532
Simon Hunta17fa672015-08-19 18:42:22 -0700533 // Potentially add button descriptors here
Simon Huntb745ca62015-07-28 15:37:11 -0700534 return pp;
Thomas Vachuska329af532015-03-10 02:08:33 -0700535 }
536
Thomas Vachuska329af532015-03-10 02:08:33 -0700537}