blob: e1b4bead2e5385e0f350ae938e45397284ad1178 [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 Vachuskab6acc7b2015-03-11 09:11:21 -0700233 .put("uiAttached", node.equals(clusterService.getLocalNode()))
Thomas Vachuska329af532015-03-10 02:08:33 -0700234 .put("switches", switchCount);
235
Simon Huntda580882015-05-12 20:58:18 -0700236 ArrayNode labels = arrayNode();
Thomas Vachuska329af532015-03-10 02:08:33 -0700237 labels.add(node.id().toString());
238 labels.add(node.ip().toString());
239
240 // Add labels, props and stuff the payload into envelope.
241 payload.set("labels", labels);
242 addMetaUi(node.id().toString(), payload);
243
Simon Hunt95d56fd2015-11-12 11:06:44 -0800244 String type = msgType != null ? msgType : CLUSTER_EVENT.get(event.type());
Simon Huntd2747a02015-04-30 22:41:16 -0700245 return JsonUtils.envelope(type, 0, payload);
Thomas Vachuska329af532015-03-10 02:08:33 -0700246 }
247
248 // Produces a device event message to the client.
249 protected ObjectNode deviceMessage(DeviceEvent event) {
250 Device device = event.subject();
Simon Huntda580882015-05-12 20:58:18 -0700251 ObjectNode payload = objectNode()
Thomas Vachuska329af532015-03-10 02:08:33 -0700252 .put("id", device.id().toString())
253 .put("type", device.type().toString().toLowerCase())
254 .put("online", deviceService.isAvailable(device.id()))
255 .put("master", master(device.id()));
256
257 // Generate labels: id, chassis id, no-label, optional-name
258 String name = device.annotations().value(AnnotationKeys.NAME);
Simon Huntda580882015-05-12 20:58:18 -0700259 ArrayNode labels = arrayNode();
Thomas Vachuska329af532015-03-10 02:08:33 -0700260 labels.add("");
261 labels.add(isNullOrEmpty(name) ? device.id().toString() : name);
262 labels.add(device.id().toString());
263
264 // Add labels, props and stuff the payload into envelope.
265 payload.set("labels", labels);
266 payload.set("props", props(device.annotations()));
267 addGeoLocation(device, payload);
268 addMetaUi(device.id().toString(), payload);
269
Simon Hunt95d56fd2015-11-12 11:06:44 -0800270 String type = DEVICE_EVENT.get(event.type());
Simon Huntd2747a02015-04-30 22:41:16 -0700271 return JsonUtils.envelope(type, 0, payload);
Thomas Vachuska329af532015-03-10 02:08:33 -0700272 }
273
274 // Produces a link event message to the client.
275 protected ObjectNode linkMessage(LinkEvent event) {
276 Link link = event.subject();
Simon Huntda580882015-05-12 20:58:18 -0700277 ObjectNode payload = objectNode()
Thomas Vachuska329af532015-03-10 02:08:33 -0700278 .put("id", compactLinkString(link))
279 .put("type", link.type().toString().toLowerCase())
Ray Milkeyb7f0f642016-01-22 16:08:14 -0800280 .put("expected", link.isExpected())
Thomas Vachuska329af532015-03-10 02:08:33 -0700281 .put("online", link.state() == Link.State.ACTIVE)
282 .put("linkWidth", 1.2)
283 .put("src", link.src().deviceId().toString())
284 .put("srcPort", link.src().port().toString())
285 .put("dst", link.dst().deviceId().toString())
286 .put("dstPort", link.dst().port().toString());
Simon Hunt95d56fd2015-11-12 11:06:44 -0800287 String type = LINK_EVENT.get(event.type());
Simon Huntd2747a02015-04-30 22:41:16 -0700288 return JsonUtils.envelope(type, 0, payload);
Thomas Vachuska329af532015-03-10 02:08:33 -0700289 }
290
291 // Produces a host event message to the client.
292 protected ObjectNode hostMessage(HostEvent event) {
293 Host host = event.subject();
Charles Chan33f28a92015-11-13 13:12:38 -0800294 Host prevHost = event.prevSubject();
Thomas Vachuska329af532015-03-10 02:08:33 -0700295 String hostType = host.annotations().value(AnnotationKeys.TYPE);
Simon Hunt95d56fd2015-11-12 11:06:44 -0800296
Simon Huntda580882015-05-12 20:58:18 -0700297 ObjectNode payload = objectNode()
Thomas Vachuska329af532015-03-10 02:08:33 -0700298 .put("id", host.id().toString())
299 .put("type", isNullOrEmpty(hostType) ? "endstation" : hostType)
300 .put("ingress", compactLinkString(edgeLink(host, true)))
301 .put("egress", compactLinkString(edgeLink(host, false)));
Simon Huntda580882015-05-12 20:58:18 -0700302 payload.set("cp", hostConnect(host.location()));
Charles Chan33f28a92015-11-13 13:12:38 -0800303 if (prevHost != null && prevHost.location() != null) {
304 payload.set("prevCp", hostConnect(prevHost.location()));
Simon Hunt95d56fd2015-11-12 11:06:44 -0800305 }
Simon Huntda580882015-05-12 20:58:18 -0700306 payload.set("labels", labels(ip(host.ipAddresses()),
Thomas Vachuska329af532015-03-10 02:08:33 -0700307 host.mac().toString()));
308 payload.set("props", props(host.annotations()));
309 addGeoLocation(host, payload);
310 addMetaUi(host.id().toString(), payload);
311
Simon Hunt95d56fd2015-11-12 11:06:44 -0800312 String type = HOST_EVENT.get(event.type());
Simon Huntd2747a02015-04-30 22:41:16 -0700313 return JsonUtils.envelope(type, 0, payload);
Thomas Vachuska329af532015-03-10 02:08:33 -0700314 }
315
316 // Encodes the specified host location into a JSON object.
Simon Huntda580882015-05-12 20:58:18 -0700317 private ObjectNode hostConnect(HostLocation location) {
318 return objectNode()
Thomas Vachuska329af532015-03-10 02:08:33 -0700319 .put("device", location.deviceId().toString())
320 .put("port", location.port().toLong());
321 }
322
323 // Encodes the specified list of labels a JSON array.
Simon Huntda580882015-05-12 20:58:18 -0700324 private ArrayNode labels(String... labels) {
325 ArrayNode json = arrayNode();
Thomas Vachuska329af532015-03-10 02:08:33 -0700326 for (String label : labels) {
327 json.add(label);
328 }
329 return json;
330 }
331
332 // Returns the name of the master node for the specified device id.
333 private String master(DeviceId deviceId) {
334 NodeId master = mastershipService.getMasterFor(deviceId);
335 return master != null ? master.toString() : "";
336 }
337
338 // Generates an edge link from the specified host location.
339 private EdgeLink edgeLink(Host host, boolean ingress) {
340 return new DefaultEdgeLink(PID, new ConnectPoint(host.id(), portNumber(0)),
341 host.location(), ingress);
342 }
343
344 // Adds meta UI information for the specified object.
345 private void addMetaUi(String id, ObjectNode payload) {
346 ObjectNode meta = metaUi.get(id);
347 if (meta != null) {
348 payload.set("metaUi", meta);
349 }
350 }
351
352 // Adds a geo location JSON to the specified payload object.
353 private void addGeoLocation(Annotated annotated, ObjectNode payload) {
354 Annotations annotations = annotated.annotations();
355 if (annotations == null) {
356 return;
357 }
358
Thomas Vachuska329af532015-03-10 02:08:33 -0700359 String slng = annotations.value(AnnotationKeys.LONGITUDE);
Simon Huntfd7106c2016-02-09 15:05:26 -0800360 String slat = annotations.value(AnnotationKeys.LATITUDE);
361 boolean haveLng = slng != null && !slng.isEmpty();
362 boolean haveLat = slat != null && !slat.isEmpty();
Thomas Vachuska329af532015-03-10 02:08:33 -0700363 try {
Simon Huntfd7106c2016-02-09 15:05:26 -0800364 if (haveLng && haveLat) {
Thomas Vachuska329af532015-03-10 02:08:33 -0700365 double lng = Double.parseDouble(slng);
Simon Huntfd7106c2016-02-09 15:05:26 -0800366 double lat = Double.parseDouble(slat);
Simon Huntda580882015-05-12 20:58:18 -0700367 ObjectNode loc = objectNode()
Simon Huntfd7106c2016-02-09 15:05:26 -0800368 .put("type", "lnglat")
369 .put("lng", lng)
370 .put("lat", lat);
Thomas Vachuska329af532015-03-10 02:08:33 -0700371 payload.set("location", loc);
Simon Huntfd7106c2016-02-09 15:05:26 -0800372 } else {
373 log.trace("missing Lng/Lat: lng={}, lat={}", slng, slat);
Thomas Vachuska329af532015-03-10 02:08:33 -0700374 }
375 } catch (NumberFormatException e) {
Simon Huntfd7106c2016-02-09 15:05:26 -0800376 log.warn("Invalid geo data: longitude={}, latitude={}", slng, slat);
Thomas Vachuska329af532015-03-10 02:08:33 -0700377 }
378 }
379
380 // Updates meta UI information for the specified object.
Simon Huntd2747a02015-04-30 22:41:16 -0700381 protected void updateMetaUi(ObjectNode payload) {
382 metaUi.put(JsonUtils.string(payload, "id"),
383 JsonUtils.node(payload, "memento"));
Thomas Vachuska329af532015-03-10 02:08:33 -0700384 }
385
Simon Hunta17fa672015-08-19 18:42:22 -0700386
Simon Huntb745ca62015-07-28 15:37:11 -0700387 // -----------------------------------------------------------------------
388 // Create models of the data to return, that overlays can adjust / augment
389
390 // Returns property panel model for summary response.
Simon Hunt0af1ec32015-07-24 12:17:55 -0700391 protected PropertyPanel summmaryMessage(long sid) {
Thomas Vachuska329af532015-03-10 02:08:33 -0700392 Topology topology = topologyService.currentTopology();
Simon Hunt0af1ec32015-07-24 12:17:55 -0700393
Simon Hunt00a27ff2015-07-28 18:53:40 -0700394 return new PropertyPanel("ONOS Summary", "node")
Thomas Vachuskae50b6212015-12-02 08:00:09 -0800395 .addProp(Properties.VERSION, version)
396 .addSeparator()
Thomas Vachuska297907a2015-12-04 16:14:27 -0800397 .addProp(Properties.DEVICES, deviceService.getDeviceCount())
Simon Huntfb940112015-07-29 18:36:35 -0700398 .addProp(Properties.LINKS, topology.linkCount())
399 .addProp(Properties.HOSTS, hostService.getHostCount())
400 .addProp(Properties.TOPOLOGY_SSCS, topology.clusterCount())
Simon Hunt00a27ff2015-07-28 18:53:40 -0700401 .addSeparator()
Simon Huntfb940112015-07-29 18:36:35 -0700402 .addProp(Properties.INTENTS, intentService.getIntentCount())
403 .addProp(Properties.TUNNELS, tunnelService.tunnelCount())
Thomas Vachuskae50b6212015-12-02 08:00:09 -0800404 .addProp(Properties.FLOWS, flowService.getFlowRuleCount());
Thomas Vachuska329af532015-03-10 02:08:33 -0700405 }
406
Simon Huntb745ca62015-07-28 15:37:11 -0700407 // Returns property panel model for device details response.
408 protected PropertyPanel deviceDetails(DeviceId deviceId, long sid) {
Thomas Vachuska329af532015-03-10 02:08:33 -0700409 Device device = deviceService.getDevice(deviceId);
410 Annotations annot = device.annotations();
411 String name = annot.value(AnnotationKeys.NAME);
412 int portCount = deviceService.getPorts(deviceId).size();
413 int flowCount = getFlowCount(deviceId);
cheng fan35dc0f22015-06-10 06:02:47 +0800414 int tunnelCount = getTunnelCount(deviceId);
Simon Huntb745ca62015-07-28 15:37:11 -0700415
416 String title = isNullOrEmpty(name) ? deviceId.toString() : name;
417 String typeId = device.type().toString().toLowerCase();
418
419 PropertyPanel pp = new PropertyPanel(title, typeId)
Simon Huntfb940112015-07-29 18:36:35 -0700420 .id(deviceId.toString())
Simon Hunt3a0598f2015-08-04 19:59:04 -0700421
Simon Huntfb940112015-07-29 18:36:35 -0700422 .addProp(Properties.URI, deviceId.toString())
423 .addProp(Properties.VENDOR, device.manufacturer())
424 .addProp(Properties.HW_VERSION, device.hwVersion())
425 .addProp(Properties.SW_VERSION, device.swVersion())
426 .addProp(Properties.SERIAL_NUMBER, device.serialNumber())
427 .addProp(Properties.PROTOCOL, annot.value(AnnotationKeys.PROTOCOL))
428 .addSeparator()
Simon Hunt3a0598f2015-08-04 19:59:04 -0700429
Simon Huntfb940112015-07-29 18:36:35 -0700430 .addProp(Properties.LATITUDE, annot.value(AnnotationKeys.LATITUDE))
431 .addProp(Properties.LONGITUDE, annot.value(AnnotationKeys.LONGITUDE))
432 .addSeparator()
Simon Hunt3a0598f2015-08-04 19:59:04 -0700433
Simon Huntfb940112015-07-29 18:36:35 -0700434 .addProp(Properties.PORTS, portCount)
435 .addProp(Properties.FLOWS, flowCount)
Simon Hunt3a0598f2015-08-04 19:59:04 -0700436 .addProp(Properties.TUNNELS, tunnelCount)
Simon Hunt00a27ff2015-07-28 18:53:40 -0700437
Simon Hunt3a0598f2015-08-04 19:59:04 -0700438 .addButton(CoreButtons.SHOW_DEVICE_VIEW)
439 .addButton(CoreButtons.SHOW_FLOW_VIEW)
440 .addButton(CoreButtons.SHOW_PORT_VIEW)
Jian Li79f67322016-01-06 18:22:37 -0800441 .addButton(CoreButtons.SHOW_GROUP_VIEW)
442 .addButton(CoreButtons.SHOW_METER_VIEW);
Simon Huntb745ca62015-07-28 15:37:11 -0700443
444 return pp;
Thomas Vachuska329af532015-03-10 02:08:33 -0700445 }
446
447 protected int getFlowCount(DeviceId deviceId) {
448 int count = 0;
Simon Huntb745ca62015-07-28 15:37:11 -0700449 for (FlowEntry flowEntry : flowService.getFlowEntries(deviceId)) {
Thomas Vachuska329af532015-03-10 02:08:33 -0700450 count++;
Thomas Vachuska329af532015-03-10 02:08:33 -0700451 }
452 return count;
453 }
454
cheng fan35dc0f22015-06-10 06:02:47 +0800455 protected int getTunnelCount(DeviceId deviceId) {
456 int count = 0;
457 Collection<Tunnel> tunnels = tunnelService.queryAllTunnels();
458 for (Tunnel tunnel : tunnels) {
459 OpticalTunnelEndPoint src = (OpticalTunnelEndPoint) tunnel.src();
460 OpticalTunnelEndPoint dst = (OpticalTunnelEndPoint) tunnel.dst();
461 DeviceId srcDevice = (DeviceId) src.elementId().get();
462 DeviceId dstDevice = (DeviceId) dst.elementId().get();
Simon Huntb745ca62015-07-28 15:37:11 -0700463 if (srcDevice.toString().equals(deviceId.toString()) ||
464 dstDevice.toString().equals(deviceId.toString())) {
cheng fan35dc0f22015-06-10 06:02:47 +0800465 count++;
466 }
467 }
468 return count;
469 }
470
Simon Hunta17fa672015-08-19 18:42:22 -0700471 // Counts all flow entries that egress on the links of the given device.
472 private Map<Link, Integer> getLinkFlowCounts(DeviceId deviceId) {
473 // get the flows for the device
Thomas Vachuska329af532015-03-10 02:08:33 -0700474 List<FlowEntry> entries = new ArrayList<>();
Simon Huntb745ca62015-07-28 15:37:11 -0700475 for (FlowEntry flowEntry : flowService.getFlowEntries(deviceId)) {
476 entries.add(flowEntry);
Thomas Vachuska329af532015-03-10 02:08:33 -0700477 }
478
Simon Hunta17fa672015-08-19 18:42:22 -0700479 // get egress links from device, and include edge links
480 Set<Link> links = new HashSet<>(linkService.getDeviceEgressLinks(deviceId));
481 Set<Host> hosts = hostService.getConnectedHosts(deviceId);
Thomas Vachuska329af532015-03-10 02:08:33 -0700482 if (hosts != null) {
483 for (Host host : hosts) {
Simon Hunta17fa672015-08-19 18:42:22 -0700484 links.add(createEdgeLink(host, false));
Thomas Vachuska329af532015-03-10 02:08:33 -0700485 }
486 }
487
Simon Hunta17fa672015-08-19 18:42:22 -0700488 // compile flow counts per link
Thomas Vachuska329af532015-03-10 02:08:33 -0700489 Map<Link, Integer> counts = new HashMap<>();
490 for (Link link : links) {
491 counts.put(link, getEgressFlows(link, entries));
492 }
493 return counts;
494 }
495
496 // Counts all entries that egress on the link source port.
Simon Hunta17fa672015-08-19 18:42:22 -0700497 private int getEgressFlows(Link link, List<FlowEntry> entries) {
Thomas Vachuska329af532015-03-10 02:08:33 -0700498 int count = 0;
499 PortNumber out = link.src().port();
500 for (FlowEntry entry : entries) {
501 TrafficTreatment treatment = entry.treatment();
Ray Milkey42507352015-03-20 15:16:10 -0700502 for (Instruction instruction : treatment.allInstructions()) {
Thomas Vachuska329af532015-03-10 02:08:33 -0700503 if (instruction.type() == Instruction.Type.OUTPUT &&
504 ((OutputInstruction) instruction).port().equals(out)) {
505 count++;
506 }
507 }
508 }
509 return count;
510 }
511
Thomas Vachuska329af532015-03-10 02:08:33 -0700512 // Returns host details response.
Simon Huntb745ca62015-07-28 15:37:11 -0700513 protected PropertyPanel hostDetails(HostId hostId, long sid) {
Thomas Vachuska329af532015-03-10 02:08:33 -0700514 Host host = hostService.getHost(hostId);
515 Annotations annot = host.annotations();
516 String type = annot.value(AnnotationKeys.TYPE);
517 String name = annot.value(AnnotationKeys.NAME);
518 String vlan = host.vlan().toString();
Simon Huntb745ca62015-07-28 15:37:11 -0700519
520 String title = isNullOrEmpty(name) ? hostId.toString() : name;
521 String typeId = isNullOrEmpty(type) ? "endstation" : type;
522
523 PropertyPanel pp = new PropertyPanel(title, typeId)
Simon Huntfb940112015-07-29 18:36:35 -0700524 .id(hostId.toString())
525 .addProp(Properties.MAC, host.mac())
526 .addProp(Properties.IP, host.ipAddresses(), "[\\[\\]]")
527 .addProp(Properties.VLAN, vlan.equals("-1") ? "none" : vlan)
528 .addSeparator()
529 .addProp(Properties.LATITUDE, annot.value(AnnotationKeys.LATITUDE))
530 .addProp(Properties.LONGITUDE, annot.value(AnnotationKeys.LONGITUDE));
Simon Huntb745ca62015-07-28 15:37:11 -0700531
Simon Hunta17fa672015-08-19 18:42:22 -0700532 // Potentially add button descriptors here
Simon Huntb745ca62015-07-28 15:37:11 -0700533 return pp;
Thomas Vachuska329af532015-03-10 02:08:33 -0700534 }
535
Thomas Vachuska329af532015-03-10 02:08:33 -0700536}