blob: 0ef6fafb65a8061df4e957dd93c62a105f87c60b [file] [log] [blame]
Simon Huntd5b96732016-07-08 13:22:27 -07001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2016-present Open Networking Foundation
Simon Huntd5b96732016-07-08 13:22:27 -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 */
16
17package org.onosproject.ui.impl.topo;
18
Simon Huntc13082f2016-08-03 21:20:23 -070019import com.fasterxml.jackson.databind.JsonNode;
Simon Huntd5b96732016-07-08 13:22:27 -070020import com.fasterxml.jackson.databind.ObjectMapper;
21import com.fasterxml.jackson.databind.node.ArrayNode;
22import com.fasterxml.jackson.databind.node.ObjectNode;
Simon Hunt8f60ff82017-04-24 17:19:30 -070023import com.google.common.base.Strings;
Simon Huntd5b96732016-07-08 13:22:27 -070024import org.onlab.osgi.ServiceDirectory;
Steven Burrows583f4be2016-11-04 14:06:50 +010025import org.onlab.packet.IpAddress;
Simon Huntd5b96732016-07-08 13:22:27 -070026import org.onosproject.cluster.ClusterService;
Simon Hunt708a5b32017-08-01 15:06:04 -070027import org.onosproject.cluster.ControllerNode;
Simon Huntd5b96732016-07-08 13:22:27 -070028import org.onosproject.cluster.NodeId;
Thomas Vachuska52f2cd12018-11-08 21:20:04 -080029import org.onosproject.net.statistic.PortStatisticsService;
Simon Huntd5b96732016-07-08 13:22:27 -070030import org.onosproject.mastership.MastershipService;
Simon Hunt6a8cb4f2016-08-09 15:08:57 -070031import org.onosproject.net.Annotated;
32import org.onosproject.net.Annotations;
33import org.onosproject.net.Device;
Steven Burrowsad75aa22016-12-14 17:17:24 -050034import org.onosproject.net.DeviceId;
Steven Burrows583f4be2016-11-04 14:06:50 +010035import org.onosproject.net.Host;
Simon Huntd5b96732016-07-08 13:22:27 -070036import org.onosproject.net.device.DeviceService;
37import org.onosproject.net.flow.FlowRuleService;
38import org.onosproject.net.host.HostService;
39import org.onosproject.net.intent.IntentService;
40import org.onosproject.net.link.LinkService;
Simon Hunt53612212016-12-04 17:19:52 -080041import org.onosproject.net.region.Region;
Simon Huntd5b96732016-07-08 13:22:27 -070042import org.onosproject.net.statistic.StatisticService;
43import org.onosproject.net.topology.TopologyService;
Simon Hunt708a5b32017-08-01 15:06:04 -070044import org.onosproject.ui.GlyphConstants;
Steven Burrowse7cc3082016-09-27 11:24:58 -070045import org.onosproject.ui.JsonUtils;
Steven Burrows86b74fc2017-02-22 00:15:16 +000046import org.onosproject.ui.UiExtensionService;
Simon Hunt95f4b422017-03-03 13:49:05 -080047import org.onosproject.ui.UiPreferencesService;
Steven Burrows86b74fc2017-02-22 00:15:16 +000048import org.onosproject.ui.UiTopoMap;
49import org.onosproject.ui.UiTopoMapFactory;
Simon Huntd5b96732016-07-08 13:22:27 -070050import org.onosproject.ui.model.topo.UiClusterMember;
51import org.onosproject.ui.model.topo.UiDevice;
Simon Hunt8eac4ae2017-01-20 12:56:45 -080052import org.onosproject.ui.model.topo.UiElement;
Simon Huntd5b96732016-07-08 13:22:27 -070053import org.onosproject.ui.model.topo.UiHost;
54import org.onosproject.ui.model.topo.UiLink;
Simon Huntcf76a652017-05-12 18:28:24 -070055import org.onosproject.ui.model.topo.UiLinkId;
Simon Huntbf59db22017-05-12 13:26:35 -070056import org.onosproject.ui.model.topo.UiModelEvent;
Simon Hunt977aa052016-07-20 17:08:29 -070057import org.onosproject.ui.model.topo.UiNode;
Simon Huntd5b96732016-07-08 13:22:27 -070058import org.onosproject.ui.model.topo.UiRegion;
Simon Huntc13082f2016-08-03 21:20:23 -070059import org.onosproject.ui.model.topo.UiSynthLink;
Simon Huntd5b96732016-07-08 13:22:27 -070060import org.onosproject.ui.model.topo.UiTopoLayout;
Simon Hunt8f60ff82017-04-24 17:19:30 -070061import org.onosproject.ui.topo.LayoutLocation;
Simon Hunt98189192016-07-29 19:02:27 -070062import org.slf4j.Logger;
63import org.slf4j.LoggerFactory;
Simon Huntd5b96732016-07-08 13:22:27 -070064
Simon Hunt977aa052016-07-20 17:08:29 -070065import java.util.ArrayList;
66import java.util.HashMap;
67import java.util.HashSet;
Simon Huntd5b96732016-07-08 13:22:27 -070068import java.util.List;
Simon Hunt977aa052016-07-20 17:08:29 -070069import java.util.Map;
70import java.util.Set;
Simon Hunt6a8cb4f2016-08-09 15:08:57 -070071import java.util.concurrent.ConcurrentHashMap;
Simon Huntd5b96732016-07-08 13:22:27 -070072
73import static com.google.common.base.Preconditions.checkNotNull;
Simon Huntbc30e682017-02-15 18:39:23 -080074import static org.onosproject.net.AnnotationKeys.GRID_X;
75import static org.onosproject.net.AnnotationKeys.GRID_Y;
Simon Hunt6a8cb4f2016-08-09 15:08:57 -070076import static org.onosproject.net.AnnotationKeys.LATITUDE;
77import static org.onosproject.net.AnnotationKeys.LONGITUDE;
Simon Hunt977aa052016-07-20 17:08:29 -070078import static org.onosproject.ui.model.topo.UiNode.LAYER_DEFAULT;
Simon Hunt8f60ff82017-04-24 17:19:30 -070079import static org.onosproject.ui.topo.LayoutLocation.fromCompactListString;
Simon Huntd5b96732016-07-08 13:22:27 -070080
81/**
82 * Facility for creating JSON messages to send to the topology view in the
83 * Web client.
84 */
Simon Hunt537bc762016-12-20 12:15:13 -080085public class Topo2Jsonifier {
Simon Huntd5b96732016-07-08 13:22:27 -070086
Simon Hunt977aa052016-07-20 17:08:29 -070087 private static final String E_DEF_NOT_LAST =
88 "UiNode.LAYER_DEFAULT not last in layer list";
89 private static final String E_UNKNOWN_UI_NODE =
90 "Unknown subclass of UiNode: ";
91
Simon Hunt2521d5f2017-03-20 18:17:28 -070092 private static final String CONTEXT_KEY_DELIM = "_";
93 private static final String NO_CONTEXT = "";
Simon Huntf0c6f542017-03-22 18:31:18 -070094 private static final String ZOOM_KEY = "layoutZoom";
Simon Hunt2521d5f2017-03-20 18:17:28 -070095
Simon Hunt98189192016-07-29 19:02:27 -070096 private static final String REGION = "region";
97 private static final String DEVICE = "device";
98 private static final String HOST = "host";
Steven Burrows512b6272016-12-19 14:09:45 -050099 private static final String TYPE = "type";
100 private static final String SUBJECT = "subject";
Simon Hunt8eac4ae2017-01-20 12:56:45 -0800101 private static final String DATA = "data";
102 private static final String MEMO = "memo";
Simon Hunt98189192016-07-29 19:02:27 -0700103
Simon Hunt95f4b422017-03-03 13:49:05 -0800104 private static final String GEO = "geo";
105 private static final String GRID = "grid";
Simon Hunt8f60ff82017-04-24 17:19:30 -0700106 private static final String PEER_LOCATIONS = "peerLocations";
Simon Huntf27a9292017-05-04 17:36:26 -0700107 private static final String LOCATION = "location";
108 private static final String LOC_TYPE = "locType";
109 private static final String LAT_OR_Y = "latOrY";
110 private static final String LONG_OR_X = "longOrX";
Simon Hunt95f4b422017-03-03 13:49:05 -0800111
Simon Hunt98189192016-07-29 19:02:27 -0700112 private final Logger log = LoggerFactory.getLogger(getClass());
113
Simon Huntd5b96732016-07-08 13:22:27 -0700114 private final ObjectMapper mapper = new ObjectMapper();
115
Simon Hunt95f4b422017-03-03 13:49:05 -0800116 // preferences are stored per user name...
117 private final String userName;
118
Simon Huntd5b96732016-07-08 13:22:27 -0700119 private ServiceDirectory directory;
120 private ClusterService clusterService;
121 private DeviceService deviceService;
122 private LinkService linkService;
123 private HostService hostService;
124 private MastershipService mastershipService;
125 private IntentService intentService;
126 private FlowRuleService flowService;
127 private StatisticService flowStatsService;
128 private PortStatisticsService portStatsService;
129 private TopologyService topologyService;
Steven Burrows86b74fc2017-02-22 00:15:16 +0000130 private UiExtensionService uiextService;
Simon Hunt95f4b422017-03-03 13:49:05 -0800131 private UiPreferencesService prefService;
Simon Huntd5b96732016-07-08 13:22:27 -0700132
133
Simon Hunt6a8cb4f2016-08-09 15:08:57 -0700134 // NOTE: we'll stick this here for now, but maybe there is a better home?
135 // (this is not distributed across the cluster)
136 private static Map<String, ObjectNode> metaUi = new ConcurrentHashMap<>();
137
138
Simon Huntd5b96732016-07-08 13:22:27 -0700139 /**
140 * Creates an instance with a reference to the services directory, so that
141 * additional information about network elements may be looked up on
142 * on the fly.
143 *
144 * @param directory service directory
Simon Hunt95f4b422017-03-03 13:49:05 -0800145 * @param userName logged in user name
Simon Huntd5b96732016-07-08 13:22:27 -0700146 */
Simon Hunt95f4b422017-03-03 13:49:05 -0800147 public Topo2Jsonifier(ServiceDirectory directory, String userName) {
Simon Huntd5b96732016-07-08 13:22:27 -0700148 this.directory = checkNotNull(directory, "Directory cannot be null");
Simon Hunt95f4b422017-03-03 13:49:05 -0800149 this.userName = checkNotNull(userName, "User name cannot be null");
Simon Huntd5b96732016-07-08 13:22:27 -0700150
151 clusterService = directory.get(ClusterService.class);
152 deviceService = directory.get(DeviceService.class);
153 linkService = directory.get(LinkService.class);
154 hostService = directory.get(HostService.class);
155 mastershipService = directory.get(MastershipService.class);
156 intentService = directory.get(IntentService.class);
157 flowService = directory.get(FlowRuleService.class);
158 flowStatsService = directory.get(StatisticService.class);
159 portStatsService = directory.get(PortStatisticsService.class);
160 topologyService = directory.get(TopologyService.class);
Steven Burrows86b74fc2017-02-22 00:15:16 +0000161 uiextService = directory.get(UiExtensionService.class);
Simon Hunt95f4b422017-03-03 13:49:05 -0800162 prefService = directory.get(UiPreferencesService.class);
Simon Hunt977aa052016-07-20 17:08:29 -0700163 }
Simon Huntd5b96732016-07-08 13:22:27 -0700164
Simon Hunt977aa052016-07-20 17:08:29 -0700165 // for unit testing
166 Topo2Jsonifier() {
Simon Hunt95f4b422017-03-03 13:49:05 -0800167 userName = "(unit-test)";
Simon Huntd5b96732016-07-08 13:22:27 -0700168 }
169
170 private ObjectNode objectNode() {
171 return mapper.createObjectNode();
172 }
173
174 private ArrayNode arrayNode() {
175 return mapper.createArrayNode();
176 }
177
178 private String nullIsEmpty(Object o) {
179 return o == null ? "" : o.toString();
180 }
181
182
183 /**
184 * Returns a JSON representation of the cluster members (ONOS instances).
185 *
186 * @param instances the instance model objects
187 * @return a JSON representation of the data
188 */
189 ObjectNode instances(List<UiClusterMember> instances) {
190 NodeId local = clusterService.getLocalNode().id();
191 ObjectNode payload = objectNode();
192
193 ArrayNode members = arrayNode();
194 payload.set("members", members);
195 for (UiClusterMember member : instances) {
196 members.add(json(member, member.id().equals(local)));
197 }
198
199 return payload;
200 }
201
202 private ObjectNode json(UiClusterMember member, boolean isUiAttached) {
Steven Burrowsad75aa22016-12-14 17:17:24 -0500203 int switchCount = mastershipService.getDevicesOf(member.id()).size();
Simon Hunt708a5b32017-08-01 15:06:04 -0700204 ControllerNode.State state = clusterService.getState(member.id());
Simon Huntd5b96732016-07-08 13:22:27 -0700205 return objectNode()
206 .put("id", member.id().toString())
207 .put("ip", member.ip().toString())
Simon Hunt708a5b32017-08-01 15:06:04 -0700208 .put("online", state.isActive())
209 .put("ready", state.isReady())
Simon Huntd5b96732016-07-08 13:22:27 -0700210 .put("uiAttached", isUiAttached)
Steven Burrowsad75aa22016-12-14 17:17:24 -0500211 .put("switches", switchCount);
Simon Huntd5b96732016-07-08 13:22:27 -0700212 }
213
214 /**
215 * Returns a JSON representation of the layout to use for displaying in
Simon Huntf836a872016-08-10 17:37:36 -0700216 * the topology view. The identifiers and names of regions from the
217 * current to the root is included, so that the bread-crumb widget can
218 * be rendered.
Simon Huntd5b96732016-07-08 13:22:27 -0700219 *
220 * @param layout the layout to transform
Simon Huntf836a872016-08-10 17:37:36 -0700221 * @param crumbs list of layouts in bread-crumb order
Simon Huntd5b96732016-07-08 13:22:27 -0700222 * @return a JSON representation of the data
223 */
Simon Huntf7e7d4a2017-03-24 15:22:20 -0700224 ObjectNode layout(UiTopoLayout layout, List<UiTopoLayout> crumbs) {
Simon Huntf836a872016-08-10 17:37:36 -0700225 ObjectNode result = objectNode()
Simon Huntd5b96732016-07-08 13:22:27 -0700226 .put("id", layout.id().toString())
227 .put("parent", nullIsEmpty(layout.parent()))
228 .put("region", nullIsEmpty(layout.regionId()))
Simon Huntf836a872016-08-10 17:37:36 -0700229 .put("regionName", UiRegion.safeName(layout.region()));
230 addCrumbs(result, crumbs);
Simon Huntf7e7d4a2017-03-24 15:22:20 -0700231 addBgRef(result, layout);
Simon Huntf836a872016-08-10 17:37:36 -0700232 return result;
Simon Huntd5b96732016-07-08 13:22:27 -0700233 }
234
Simon Huntf7e7d4a2017-03-24 15:22:20 -0700235 private void addBgRef(ObjectNode result, UiTopoLayout layout) {
Steven Burrows86b74fc2017-02-22 00:15:16 +0000236 String mapId = layout.geomap();
237 String sprId = layout.sprites();
238
239 if (mapId != null) {
Simon Hunt95f4b422017-03-03 13:49:05 -0800240 result.put("bgType", GEO).put("bgId", mapId);
Steven Burrows86b74fc2017-02-22 00:15:16 +0000241 addMapParameters(result, mapId);
242 } else if (sprId != null) {
Simon Hunt95f4b422017-03-03 13:49:05 -0800243 result.put("bgType", GRID).put("bgId", sprId);
Steven Burrows86b74fc2017-02-22 00:15:16 +0000244 }
Simon Huntf0c6f542017-03-22 18:31:18 -0700245
Simon Huntf7e7d4a2017-03-24 15:22:20 -0700246 attachZoomData(result, layout);
Simon Hunt95f4b422017-03-03 13:49:05 -0800247 }
248
Simon Huntf7e7d4a2017-03-24 15:22:20 -0700249 private void attachZoomData(ObjectNode result, UiTopoLayout layout) {
Steven Burrowsb43c1a92017-03-07 17:13:28 +0000250
Simon Huntf0c6f542017-03-22 18:31:18 -0700251 ObjectNode zoomData = objectNode();
Steven Burrowsb43c1a92017-03-07 17:13:28 +0000252
Simon Huntf0c6f542017-03-22 18:31:18 -0700253 // first, set configured scale and offset
254 addCfgZoomData(zoomData, layout);
Simon Hunt95f4b422017-03-03 13:49:05 -0800255
Simon Huntf0c6f542017-03-22 18:31:18 -0700256 // next, retrieve user-set zoom data, if we have it
Simon Huntf7e7d4a2017-03-24 15:22:20 -0700257 String rid = layout.regionId().toString();
Simon Huntf0c6f542017-03-22 18:31:18 -0700258 ObjectNode userZoom = metaUi.get(contextKey(rid, ZOOM_KEY));
259 if (userZoom != null) {
260 zoomData.set("usr", userZoom);
Simon Hunt95f4b422017-03-03 13:49:05 -0800261 }
Simon Huntf0c6f542017-03-22 18:31:18 -0700262 result.set("bgZoom", zoomData);
263 }
Steven Burrowsb43c1a92017-03-07 17:13:28 +0000264
Simon Huntf0c6f542017-03-22 18:31:18 -0700265 private void addCfgZoomData(ObjectNode data, UiTopoLayout layout) {
266 ObjectNode zoom = objectNode();
267 zoom.put("scale", layout.scale());
268 zoom.put("offsetX", layout.offsetX());
269 zoom.put("offsetY", layout.offsetY());
270 data.set("cfg", zoom);
Steven Burrows86b74fc2017-02-22 00:15:16 +0000271 }
272
273 private void addMapParameters(ObjectNode result, String mapId) {
274
275 // TODO: This ought to be written more efficiently.
276
277 // ALSO: Should retrieving a UiTopoMap by ID be something that
278 // the UiExtensionService provides, along with other
279 // useful lookups?
280 //
281 // Or should it remain very basic / general?
282 //
283 // return uiextService.getTopoMap(String mapId);
284
285 final UiTopoMap[] map = {null};
286
287 uiextService.getExtensions().forEach(ext -> {
288 UiTopoMapFactory factory = ext.topoMapFactory();
289
290 // TODO: use .stream().filter(...) here
291 if (map[0] == null && factory != null) {
292 List<UiTopoMap> topoMaps = factory.geoMaps();
293
294 topoMaps.forEach(m -> {
295 if (map[0] == null && m.id().equals(mapId)) {
296 map[0] = m;
297 }
298 });
299 }
300 });
301
302 UiTopoMap m = map[0];
303 if (m != null) {
304 result.put("bgDesc", m.description())
305 .put("bgFilePath", m.filePath())
306 .put("bgDefaultScale", m.scale());
307 } else {
308 result.put("bgWarn", "no map registered with id: " + mapId);
Simon Huntbc30e682017-02-15 18:39:23 -0800309 }
310 }
311
Simon Huntf836a872016-08-10 17:37:36 -0700312 private void addCrumbs(ObjectNode result, List<UiTopoLayout> crumbs) {
313 ArrayNode trail = arrayNode();
314 crumbs.forEach(c -> {
315 ObjectNode n = objectNode()
316 .put("id", c.regionId().toString())
317 .put("name", UiRegion.safeName(c.region()));
318 trail.add(n);
319 });
320 result.set("crumbs", trail);
Simon Huntd5b96732016-07-08 13:22:27 -0700321 }
322
323 /**
324 * Returns a JSON representation of the region to display in the topology
325 * view.
326 *
Simon Hunt977aa052016-07-20 17:08:29 -0700327 * @param region the region to transform to JSON
328 * @param subRegions the subregions within this region
Simon Huntc13082f2016-08-03 21:20:23 -0700329 * @param links the links within this region
Simon Huntd5b96732016-07-08 13:22:27 -0700330 * @return a JSON representation of the data
331 */
Simon Huntc13082f2016-08-03 21:20:23 -0700332 ObjectNode region(UiRegion region, Set<UiRegion> subRegions,
333 List<UiSynthLink> links) {
Simon Huntd5b96732016-07-08 13:22:27 -0700334 ObjectNode payload = objectNode();
Simon Huntd5b96732016-07-08 13:22:27 -0700335 if (region == null) {
336 payload.put("note", "no-region");
337 return payload;
338 }
Simon Hunt2521d5f2017-03-20 18:17:28 -0700339
340 String ridStr = region.idAsString();
341
342 payload.put("id", ridStr);
343 payload.set("subregions", jsonSubRegions(ridStr, subRegions));
Simon Huntcd508a62016-10-27 12:47:24 -0700344 payload.set("links", jsonLinks(links));
Simon Huntc13082f2016-08-03 21:20:23 -0700345
Simon Hunt977aa052016-07-20 17:08:29 -0700346 List<String> layerTags = region.layerOrder();
347 List<Set<UiNode>> splitDevices = splitByLayer(layerTags, region.devices());
348 List<Set<UiNode>> splitHosts = splitByLayer(layerTags, region.hosts());
Simon Huntd5b96732016-07-08 13:22:27 -0700349
Simon Hunt2521d5f2017-03-20 18:17:28 -0700350 payload.set("devices", jsonGrouped(ridStr, splitDevices));
351 payload.set("hosts", jsonGrouped(ridStr, splitHosts));
Simon Hunt977aa052016-07-20 17:08:29 -0700352 payload.set("layerOrder", jsonStrings(layerTags));
Simon Huntd5b96732016-07-08 13:22:27 -0700353
Simon Hunt8f60ff82017-04-24 17:19:30 -0700354 if (!region.isRoot()) {
355 addPeerLocations(payload, region.backingRegion());
356 }
357
Simon Huntd5b96732016-07-08 13:22:27 -0700358 return payload;
359 }
360
Simon Hunt2521d5f2017-03-20 18:17:28 -0700361 private ArrayNode jsonSubRegions(String ridStr, Set<UiRegion> subregions) {
Simon Hunt977aa052016-07-20 17:08:29 -0700362 ArrayNode kids = arrayNode();
Simon Hunt2521d5f2017-03-20 18:17:28 -0700363 subregions.forEach(s -> kids.add(jsonClosedRegion(ridStr, s)));
Simon Hunt977aa052016-07-20 17:08:29 -0700364 return kids;
365 }
366
Simon Huntbf59db22017-05-12 13:26:35 -0700367 protected JsonNode jsonLinks(List<UiSynthLink> links) {
Simon Huntcf76a652017-05-12 18:28:24 -0700368 return collateSynthLinks(links);
Simon Huntc13082f2016-08-03 21:20:23 -0700369 }
370
Simon Hunt977aa052016-07-20 17:08:29 -0700371 private ArrayNode jsonStrings(List<String> strings) {
372 ArrayNode array = arrayNode();
373 strings.forEach(array::add);
374 return array;
375 }
376
Simon Hunt2521d5f2017-03-20 18:17:28 -0700377 private ArrayNode jsonGrouped(String ridStr, List<Set<UiNode>> groupedNodes) {
Simon Hunt977aa052016-07-20 17:08:29 -0700378 ArrayNode result = arrayNode();
379 groupedNodes.forEach(g -> {
380 ArrayNode subset = arrayNode();
Simon Hunt2521d5f2017-03-20 18:17:28 -0700381 g.forEach(n -> subset.add(json(ridStr, n)));
Simon Hunt977aa052016-07-20 17:08:29 -0700382 result.add(subset);
383 });
384 return result;
385 }
386
Simon Hunt537bc762016-12-20 12:15:13 -0800387 /**
Simon Hunt8eac4ae2017-01-20 12:56:45 -0800388 * Creates a JSON representation of a UI element.
389 *
390 * @param element the source element
391 * @return a JSON representation of that element
392 */
393 public ObjectNode jsonUiElement(UiElement element) {
394 if (element instanceof UiNode) {
Simon Hunt2521d5f2017-03-20 18:17:28 -0700395 return json(NO_CONTEXT, (UiNode) element);
Simon Hunt8eac4ae2017-01-20 12:56:45 -0800396 }
397 if (element instanceof UiLink) {
398 return json((UiLink) element);
399 }
Simon Hunt708a5b32017-08-01 15:06:04 -0700400 if (element instanceof UiClusterMember) {
401 return json((UiClusterMember) element);
402 }
Simon Hunt8eac4ae2017-01-20 12:56:45 -0800403
404 // Unrecognized UiElement class
405 return objectNode()
406 .put("warning", "unknown UiElement... cannot encode")
407 .put("javaclass", element.getClass().toString());
408 }
409
410 /**
Simon Hunt537bc762016-12-20 12:15:13 -0800411 * Creates a JSON representation of a UI model event.
412 *
413 * @param modelEvent the source model event
414 * @return a JSON representation of that event
415 */
416 public ObjectNode jsonEvent(UiModelEvent modelEvent) {
Steven Burrows512b6272016-12-19 14:09:45 -0500417 ObjectNode payload = objectNode();
418 payload.put(TYPE, enumToString(modelEvent.type()));
419 payload.put(SUBJECT, modelEvent.subject().idAsString());
Simon Hunt8eac4ae2017-01-20 12:56:45 -0800420 payload.set(DATA, modelEvent.data());
421 payload.put(MEMO, modelEvent.memo());
Steven Burrows512b6272016-12-19 14:09:45 -0500422 return payload;
423 }
424
425 // TODO: Investigate why we can't do this inline
426 private String enumToString(Enum<?> e) {
427 return e.toString();
428 }
429
Steven Burrowsad75aa22016-12-14 17:17:24 -0500430 // Returns the name of the master node for the specified device id.
431 private String master(DeviceId deviceId) {
432 NodeId master = mastershipService.getMasterFor(deviceId);
433 return master != null ? master.toString() : "";
434 }
Simon Hunt977aa052016-07-20 17:08:29 -0700435
Simon Hunt2521d5f2017-03-20 18:17:28 -0700436 private ObjectNode json(String ridStr, UiNode node) {
Simon Hunt977aa052016-07-20 17:08:29 -0700437 if (node instanceof UiRegion) {
Simon Hunt2521d5f2017-03-20 18:17:28 -0700438 return jsonClosedRegion(ridStr, (UiRegion) node);
Simon Hunt977aa052016-07-20 17:08:29 -0700439 }
440 if (node instanceof UiDevice) {
Simon Hunt2521d5f2017-03-20 18:17:28 -0700441 return json(ridStr, (UiDevice) node);
Simon Hunt977aa052016-07-20 17:08:29 -0700442 }
443 if (node instanceof UiHost) {
Simon Hunt2521d5f2017-03-20 18:17:28 -0700444 return json(ridStr, (UiHost) node);
Simon Hunt977aa052016-07-20 17:08:29 -0700445 }
446 throw new IllegalStateException(E_UNKNOWN_UI_NODE + node.getClass());
447 }
448
Simon Hunt2521d5f2017-03-20 18:17:28 -0700449 private ObjectNode json(String ridStr, UiDevice device) {
Simon Huntd5b96732016-07-08 13:22:27 -0700450 ObjectNode node = objectNode()
Simon Hunt977aa052016-07-20 17:08:29 -0700451 .put("id", device.idAsString())
Simon Hunt98189192016-07-29 19:02:27 -0700452 .put("nodeType", DEVICE)
Simon Huntd5b96732016-07-08 13:22:27 -0700453 .put("type", device.type())
Simon Hunt3d712522016-08-11 11:20:44 -0700454 .put("online", deviceService.isAvailable(device.id()))
Steven Burrowsad75aa22016-12-14 17:17:24 -0500455 .put("master", master(device.id()))
Simon Huntd5b96732016-07-08 13:22:27 -0700456 .put("layer", device.layer());
Simon Hunt6a8cb4f2016-08-09 15:08:57 -0700457 Device d = device.backingDevice();
dvaddireedeaf4a2017-06-21 00:00:30 +0530458 if (d != null) {
459 addProps(node, d);
460 addGeoGridLocation(node, d);
461 }
Simon Hunt2521d5f2017-03-20 18:17:28 -0700462 addMetaUi(node, ridStr, device.idAsString());
Simon Huntd5b96732016-07-08 13:22:27 -0700463
464 return node;
465 }
466
Simon Hunt53612212016-12-04 17:19:52 -0800467 private void addProps(ObjectNode node, Annotated a) {
468 Annotations annot = a.annotations();
Simon Hunt6a8cb4f2016-08-09 15:08:57 -0700469 ObjectNode props = objectNode();
470 if (annot != null) {
471 annot.keys().forEach(k -> props.put(k, annot.value(k)));
472 }
473 node.set("props", props);
474 }
Simon Huntd5b96732016-07-08 13:22:27 -0700475
Simon Hunt2521d5f2017-03-20 18:17:28 -0700476 private void addMetaUi(ObjectNode node, String ridStr, String metaInstanceId) {
477 String key = contextKey(ridStr, metaInstanceId);
478 ObjectNode meta = metaUi.get(key);
Simon Hunt6a8cb4f2016-08-09 15:08:57 -0700479 if (meta != null) {
480 node.set("metaUi", meta);
481 }
482 }
483
Simon Huntbc30e682017-02-15 18:39:23 -0800484 private void addGeoGridLocation(ObjectNode node, Annotated a) {
Simon Huntf27a9292017-05-04 17:36:26 -0700485 List<String> latLongData = getAnnotValues(a, LATITUDE, LONGITUDE);
486 List<String> gridYXdata = getAnnotValues(a, GRID_Y, GRID_X);
Simon Hunt6a8cb4f2016-08-09 15:08:57 -0700487
Simon Huntf27a9292017-05-04 17:36:26 -0700488 if (latLongData != null) {
489 attachLocation(node, GEO, latLongData);
490 } else if (gridYXdata != null) {
491 attachLocation(node, GRID, gridYXdata);
Simon Huntbc30e682017-02-15 18:39:23 -0800492 }
493 }
494
495 private void attachLocation(ObjectNode node, String locType,
Simon Huntf27a9292017-05-04 17:36:26 -0700496 List<String> values) {
Simon Huntbc30e682017-02-15 18:39:23 -0800497 try {
Simon Huntf27a9292017-05-04 17:36:26 -0700498 double latOrY = Double.parseDouble(values.get(0));
499 double longOrX = Double.parseDouble(values.get(1));
Simon Huntbc30e682017-02-15 18:39:23 -0800500 ObjectNode loc = objectNode()
Simon Huntf27a9292017-05-04 17:36:26 -0700501 .put(LOC_TYPE, locType)
502 .put(LAT_OR_Y, latOrY)
503 .put(LONG_OR_X, longOrX);
504 node.set(LOCATION, loc);
Simon Huntbc30e682017-02-15 18:39:23 -0800505
506 } catch (NumberFormatException e) {
Simon Huntf27a9292017-05-04 17:36:26 -0700507 log.warn("Invalid {} data: lat/Y={}, long/X={}",
Simon Huntbf59db22017-05-12 13:26:35 -0700508 locType, values.get(0), values.get(1));
Simon Hunt6a8cb4f2016-08-09 15:08:57 -0700509 }
510 }
511
Simon Hunt8f60ff82017-04-24 17:19:30 -0700512 private void addPeerLocations(ObjectNode node, Region r) {
513 String compact = r.annotations().value(PEER_LOCATIONS);
514 if (!Strings.isNullOrEmpty(compact)) {
515 List<LayoutLocation> locs = fromCompactListString(compact);
516
517 ObjectNode o = objectNode();
518 for (LayoutLocation ll : locs) {
519 ObjectNode lnode = objectNode()
Simon Huntbf59db22017-05-12 13:26:35 -0700520 .put(LOC_TYPE, ll.locType().toString())
521 .put(LAT_OR_Y, ll.latOrY())
522 .put(LONG_OR_X, ll.longOrX());
Simon Hunt8f60ff82017-04-24 17:19:30 -0700523 o.set(ll.id(), lnode);
524 }
525
526 node.set(PEER_LOCATIONS, o);
527 }
528 }
529
Steven Burrows583f4be2016-11-04 14:06:50 +0100530 private void addIps(ObjectNode node, Host h) {
531 Set<IpAddress> ips = h.ipAddresses();
532
533 ArrayNode a = arrayNode();
534 for (IpAddress ip : ips) {
535 a.add(ip.toString());
536 }
537
538 node.set("ips", a);
539 }
540
Simon Hunt6a8cb4f2016-08-09 15:08:57 -0700541 // return list of string values from annotated instance, for given keys
542 // return null if any keys are not present
543 List<String> getAnnotValues(Annotated a, String... annotKeys) {
544 List<String> result = new ArrayList<>(annotKeys.length);
545 for (String k : annotKeys) {
546 String v = a.annotations().value(k);
547 if (v == null) {
548 return null;
549 }
550 result.add(v);
551 }
552 return result;
553 }
554
555 // derive JSON object from annotations
556 private ObjectNode props(Annotations annotations) {
557 ObjectNode p = objectNode();
558 if (annotations != null) {
559 annotations.keys().forEach(k -> p.put(k, annotations.value(k)));
560 }
561 return p;
Simon Huntd5b96732016-07-08 13:22:27 -0700562 }
563
Simon Hunt2521d5f2017-03-20 18:17:28 -0700564 private ObjectNode json(String ridStr, UiHost host) {
Steven Burrows583f4be2016-11-04 14:06:50 +0100565 ObjectNode node = objectNode()
Simon Hunt977aa052016-07-20 17:08:29 -0700566 .put("id", host.idAsString())
Simon Hunt98189192016-07-29 19:02:27 -0700567 .put("nodeType", HOST)
Simon Huntd5b96732016-07-08 13:22:27 -0700568 .put("layer", host.layer());
569 // TODO: complete host details
Steven Burrows583f4be2016-11-04 14:06:50 +0100570 Host h = host.backingHost();
571
Simon Hunt5b83ac22017-05-16 10:53:43 -0700572 // h will be null, for example, after a HOST_REMOVED event
573 if (h != null) {
574 addIps(node, h);
575 addProps(node, h);
576 addGeoGridLocation(node, h);
Steven Burrows22cb5502018-02-06 11:28:33 +0000577 node.put("configured", h.configured());
Simon Hunt5b83ac22017-05-16 10:53:43 -0700578 }
Simon Hunt2521d5f2017-03-20 18:17:28 -0700579 addMetaUi(node, ridStr, host.idAsString());
Steven Burrows583f4be2016-11-04 14:06:50 +0100580
581 return node;
Simon Huntd5b96732016-07-08 13:22:27 -0700582 }
583
Simon Huntcf76a652017-05-12 18:28:24 -0700584 private ArrayNode collateSynthLinks(List<UiSynthLink> links) {
585 Map<UiLinkId, Set<UiSynthLink>> collation = new HashMap<>();
Simon Huntbf59db22017-05-12 13:26:35 -0700586
Simon Huntcf76a652017-05-12 18:28:24 -0700587 // first, group together the synthlinks into sets per ID...
588 for (UiSynthLink sl : links) {
589 UiLinkId id = sl.link().id();
590 Set<UiSynthLink> rollup =
591 collation.computeIfAbsent(id, k -> new HashSet<>());
592 rollup.add(sl);
593 }
594
595 // now add json nodes per set, and return the array of them
596 ArrayNode array = arrayNode();
597 for (UiLinkId id : collation.keySet()) {
598 array.add(json(collation.get(id)));
599 }
600 return array;
Simon Huntbf59db22017-05-12 13:26:35 -0700601 }
602
Simon Huntcf76a652017-05-12 18:28:24 -0700603 private ObjectNode json(Set<UiSynthLink> memberSet) {
604 ArrayNode rollup = arrayNode();
605 ObjectNode node = null;
606
607 boolean first = true;
608 for (UiSynthLink member : memberSet) {
609 UiLink link = member.link();
610 if (first) {
611 node = json(link);
612 first = false;
613 }
614 rollup.add(json(member.original()));
615 }
616 if (node != null) {
617 node.set("rollup", rollup);
618 }
619 return node;
Simon Hunt8eac4ae2017-01-20 12:56:45 -0800620 }
621
622 private ObjectNode json(UiLink link) {
Simon Hunt3d712522016-08-11 11:20:44 -0700623 ObjectNode data = objectNode()
Simon Hunt8eac4ae2017-01-20 12:56:45 -0800624 .put("id", link.idAsString())
625 .put("epA", link.endPointA())
626 .put("epB", link.endPointB())
627 .put("type", link.type());
628 String pA = link.endPortA();
629 String pB = link.endPortB();
Simon Hunt3d712522016-08-11 11:20:44 -0700630 if (pA != null) {
631 data.put("portA", pA);
632 }
633 if (pB != null) {
634 data.put("portB", pB);
635 }
636 return data;
Simon Huntd5b96732016-07-08 13:22:27 -0700637 }
638
Simon Hunt708a5b32017-08-01 15:06:04 -0700639 private ObjectNode json(UiClusterMember member) {
640 ControllerNode.State state = clusterService.getState(member.id());
641 return objectNode()
642 .put("id", member.idAsString())
643 .put("ip", member.ip().toString())
644 .put("online", state.isActive())
645 .put("ready", state.isReady())
646 .put(GlyphConstants.UI_ATTACHED,
647 member.backingNode().equals(clusterService.getLocalNode()));
648 }
Simon Huntd5b96732016-07-08 13:22:27 -0700649
Simon Hunt2521d5f2017-03-20 18:17:28 -0700650 private ObjectNode jsonClosedRegion(String ridStr, UiRegion region) {
Steven Burrows482d9502016-09-27 11:24:58 -0700651 ObjectNode node = objectNode()
Simon Huntb1ce2602016-07-23 14:04:31 -0700652 .put("id", region.idAsString())
Simon Huntf836a872016-08-10 17:37:36 -0700653 .put("name", region.name())
Simon Hunt98189192016-07-29 19:02:27 -0700654 .put("nodeType", REGION)
Steven Burrows19e6e4f2016-10-05 13:27:07 -0500655 .put("nDevs", region.deviceCount())
656 .put("nHosts", region.hostCount());
Simon Hunt2521d5f2017-03-20 18:17:28 -0700657 // TODO: device and host counts should take into account any nested
658 // subregions. i.e. should be the sum of all devices/hosts in
Simon Hunt8f60ff82017-04-24 17:19:30 -0700659 // all descendant subregions.
Simon Hunt53612212016-12-04 17:19:52 -0800660
661 Region r = region.backingRegion();
Simon Hunt0ee20bf2017-05-10 19:59:17 -0700662 if (r != null) {
663 // add data injected via network configuration script
664 addGeoGridLocation(node, r);
665 addProps(node, r);
666 }
Steven Burrows482d9502016-09-27 11:24:58 -0700667
Simon Hunt2521d5f2017-03-20 18:17:28 -0700668 // this may contain location data, as dragged by user
669 // (which should take precedence, over configured data)
670 addMetaUi(node, ridStr, region.idAsString());
Steven Burrows482d9502016-09-27 11:24:58 -0700671 return node;
Simon Hunt977aa052016-07-20 17:08:29 -0700672 }
673
Simon Hunt98189192016-07-29 19:02:27 -0700674 /**
675 * Returns a JSON array representation of a set of regions/devices. Note
676 * that the information is sufficient for showing regions as nodes.
Simon Hunt2521d5f2017-03-20 18:17:28 -0700677 * THe region ID string defines the context (which region) the node is
678 * being displayed in.
Simon Hunt98189192016-07-29 19:02:27 -0700679 *
Simon Hunt2521d5f2017-03-20 18:17:28 -0700680 * @param ridStr region-id string
Simon Huntf0c6f542017-03-22 18:31:18 -0700681 * @param nodes the nodes
Simon Hunt98189192016-07-29 19:02:27 -0700682 * @return a JSON representation of the nodes
683 */
Simon Hunt2521d5f2017-03-20 18:17:28 -0700684 public ArrayNode closedNodes(String ridStr, Set<UiNode> nodes) {
Simon Hunt98189192016-07-29 19:02:27 -0700685 ArrayNode array = arrayNode();
Simon Huntc13082f2016-08-03 21:20:23 -0700686 for (UiNode node : nodes) {
Simon Hunt98189192016-07-29 19:02:27 -0700687 if (node instanceof UiRegion) {
Simon Hunt2521d5f2017-03-20 18:17:28 -0700688 array.add(jsonClosedRegion(ridStr, (UiRegion) node));
Simon Hunt98189192016-07-29 19:02:27 -0700689 } else if (node instanceof UiDevice) {
Simon Hunt2521d5f2017-03-20 18:17:28 -0700690 array.add(json(ridStr, (UiDevice) node));
Simon Hunt98189192016-07-29 19:02:27 -0700691 } else {
692 log.warn("Unexpected node instance: {}", node.getClass());
693 }
694 }
695 return array;
696 }
Simon Hunt977aa052016-07-20 17:08:29 -0700697
Simon Hunt977aa052016-07-20 17:08:29 -0700698 // package-private for unit testing
699 List<Set<UiNode>> splitByLayer(List<String> layerTags,
700 Set<? extends UiNode> nodes) {
701 final int nLayers = layerTags.size();
702 if (!layerTags.get(nLayers - 1).equals(LAYER_DEFAULT)) {
703 throw new IllegalArgumentException(E_DEF_NOT_LAST);
704 }
705
706 List<Set<UiNode>> splitList = new ArrayList<>(layerTags.size());
707 Map<String, Set<UiNode>> byLayer = new HashMap<>(layerTags.size());
708
709 for (String tag : layerTags) {
710 Set<UiNode> set = new HashSet<>();
711 byLayer.put(tag, set);
712 splitList.add(set);
713 }
714
715 for (UiNode n : nodes) {
716 String which = n.layer();
717 if (!layerTags.contains(which)) {
718 which = LAYER_DEFAULT;
719 }
720 byLayer.get(which).add(n);
721 }
722
723 return splitList;
724 }
Steven Burrowse7cc3082016-09-27 11:24:58 -0700725
Simon Hunt2521d5f2017-03-20 18:17:28 -0700726
727 private String contextKey(String context, String key) {
728 return context + CONTEXT_KEY_DELIM + key;
729 }
730
Steven Burrowse7cc3082016-09-27 11:24:58 -0700731 /**
732 * Stores the memento for an element.
Simon Hunt2521d5f2017-03-20 18:17:28 -0700733 * This method assumes the payload has an id String, memento ObjectNode.
734 * The region-id string is used as a context within which to store the
735 * memento.
Steven Burrowse7cc3082016-09-27 11:24:58 -0700736 *
Simon Hunt2521d5f2017-03-20 18:17:28 -0700737 * @param ridStr region ID string
Steven Burrowse7cc3082016-09-27 11:24:58 -0700738 * @param payload event payload
739 */
Simon Hunt2521d5f2017-03-20 18:17:28 -0700740 void updateMeta(String ridStr, ObjectNode payload) {
Steven Burrowse7cc3082016-09-27 11:24:58 -0700741
742 String id = JsonUtils.string(payload, "id");
Simon Hunt2521d5f2017-03-20 18:17:28 -0700743 String key = contextKey(ridStr, id);
744 metaUi.put(key, JsonUtils.node(payload, "memento"));
Steven Burrowse7cc3082016-09-27 11:24:58 -0700745
Simon Hunt2521d5f2017-03-20 18:17:28 -0700746 log.debug("Storing metadata for {}", key);
Steven Burrowse7cc3082016-09-27 11:24:58 -0700747 }
Simon Huntd5b96732016-07-08 13:22:27 -0700748}