blob: 8ae6e6d7e5e407a0694212568508b9a27cc239f6 [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();
pierventrefa5dc3c2021-11-05 15:37:32 +0100204 return jsonCommon(member).put("uiAttached", isUiAttached)
Steven Burrowsad75aa22016-12-14 17:17:24 -0500205 .put("switches", switchCount);
Simon Huntd5b96732016-07-08 13:22:27 -0700206 }
207
208 /**
209 * Returns a JSON representation of the layout to use for displaying in
Simon Huntf836a872016-08-10 17:37:36 -0700210 * the topology view. The identifiers and names of regions from the
211 * current to the root is included, so that the bread-crumb widget can
212 * be rendered.
Simon Huntd5b96732016-07-08 13:22:27 -0700213 *
214 * @param layout the layout to transform
Simon Huntf836a872016-08-10 17:37:36 -0700215 * @param crumbs list of layouts in bread-crumb order
Simon Huntd5b96732016-07-08 13:22:27 -0700216 * @return a JSON representation of the data
217 */
Simon Huntf7e7d4a2017-03-24 15:22:20 -0700218 ObjectNode layout(UiTopoLayout layout, List<UiTopoLayout> crumbs) {
Simon Huntf836a872016-08-10 17:37:36 -0700219 ObjectNode result = objectNode()
Simon Huntd5b96732016-07-08 13:22:27 -0700220 .put("id", layout.id().toString())
221 .put("parent", nullIsEmpty(layout.parent()))
222 .put("region", nullIsEmpty(layout.regionId()))
Simon Huntf836a872016-08-10 17:37:36 -0700223 .put("regionName", UiRegion.safeName(layout.region()));
224 addCrumbs(result, crumbs);
Simon Huntf7e7d4a2017-03-24 15:22:20 -0700225 addBgRef(result, layout);
Simon Huntf836a872016-08-10 17:37:36 -0700226 return result;
Simon Huntd5b96732016-07-08 13:22:27 -0700227 }
228
Simon Huntf7e7d4a2017-03-24 15:22:20 -0700229 private void addBgRef(ObjectNode result, UiTopoLayout layout) {
Steven Burrows86b74fc2017-02-22 00:15:16 +0000230 String mapId = layout.geomap();
231 String sprId = layout.sprites();
232
233 if (mapId != null) {
Simon Hunt95f4b422017-03-03 13:49:05 -0800234 result.put("bgType", GEO).put("bgId", mapId);
Steven Burrows86b74fc2017-02-22 00:15:16 +0000235 addMapParameters(result, mapId);
236 } else if (sprId != null) {
Simon Hunt95f4b422017-03-03 13:49:05 -0800237 result.put("bgType", GRID).put("bgId", sprId);
Steven Burrows86b74fc2017-02-22 00:15:16 +0000238 }
Simon Huntf0c6f542017-03-22 18:31:18 -0700239
Simon Huntf7e7d4a2017-03-24 15:22:20 -0700240 attachZoomData(result, layout);
Simon Hunt95f4b422017-03-03 13:49:05 -0800241 }
242
Simon Huntf7e7d4a2017-03-24 15:22:20 -0700243 private void attachZoomData(ObjectNode result, UiTopoLayout layout) {
Steven Burrowsb43c1a92017-03-07 17:13:28 +0000244
Simon Huntf0c6f542017-03-22 18:31:18 -0700245 ObjectNode zoomData = objectNode();
Steven Burrowsb43c1a92017-03-07 17:13:28 +0000246
Simon Huntf0c6f542017-03-22 18:31:18 -0700247 // first, set configured scale and offset
248 addCfgZoomData(zoomData, layout);
Simon Hunt95f4b422017-03-03 13:49:05 -0800249
Simon Huntf0c6f542017-03-22 18:31:18 -0700250 // next, retrieve user-set zoom data, if we have it
Simon Huntf7e7d4a2017-03-24 15:22:20 -0700251 String rid = layout.regionId().toString();
Simon Huntf0c6f542017-03-22 18:31:18 -0700252 ObjectNode userZoom = metaUi.get(contextKey(rid, ZOOM_KEY));
253 if (userZoom != null) {
254 zoomData.set("usr", userZoom);
Simon Hunt95f4b422017-03-03 13:49:05 -0800255 }
Simon Huntf0c6f542017-03-22 18:31:18 -0700256 result.set("bgZoom", zoomData);
257 }
Steven Burrowsb43c1a92017-03-07 17:13:28 +0000258
Simon Huntf0c6f542017-03-22 18:31:18 -0700259 private void addCfgZoomData(ObjectNode data, UiTopoLayout layout) {
260 ObjectNode zoom = objectNode();
261 zoom.put("scale", layout.scale());
262 zoom.put("offsetX", layout.offsetX());
263 zoom.put("offsetY", layout.offsetY());
264 data.set("cfg", zoom);
Steven Burrows86b74fc2017-02-22 00:15:16 +0000265 }
266
267 private void addMapParameters(ObjectNode result, String mapId) {
268
269 // TODO: This ought to be written more efficiently.
270
271 // ALSO: Should retrieving a UiTopoMap by ID be something that
272 // the UiExtensionService provides, along with other
273 // useful lookups?
274 //
275 // Or should it remain very basic / general?
276 //
277 // return uiextService.getTopoMap(String mapId);
278
279 final UiTopoMap[] map = {null};
280
281 uiextService.getExtensions().forEach(ext -> {
282 UiTopoMapFactory factory = ext.topoMapFactory();
283
284 // TODO: use .stream().filter(...) here
285 if (map[0] == null && factory != null) {
286 List<UiTopoMap> topoMaps = factory.geoMaps();
287
288 topoMaps.forEach(m -> {
289 if (map[0] == null && m.id().equals(mapId)) {
290 map[0] = m;
291 }
292 });
293 }
294 });
295
296 UiTopoMap m = map[0];
297 if (m != null) {
298 result.put("bgDesc", m.description())
299 .put("bgFilePath", m.filePath())
300 .put("bgDefaultScale", m.scale());
301 } else {
302 result.put("bgWarn", "no map registered with id: " + mapId);
Simon Huntbc30e682017-02-15 18:39:23 -0800303 }
304 }
305
Simon Huntf836a872016-08-10 17:37:36 -0700306 private void addCrumbs(ObjectNode result, List<UiTopoLayout> crumbs) {
307 ArrayNode trail = arrayNode();
308 crumbs.forEach(c -> {
309 ObjectNode n = objectNode()
310 .put("id", c.regionId().toString())
311 .put("name", UiRegion.safeName(c.region()));
312 trail.add(n);
313 });
314 result.set("crumbs", trail);
Simon Huntd5b96732016-07-08 13:22:27 -0700315 }
316
317 /**
318 * Returns a JSON representation of the region to display in the topology
319 * view.
320 *
Simon Hunt977aa052016-07-20 17:08:29 -0700321 * @param region the region to transform to JSON
322 * @param subRegions the subregions within this region
Simon Huntc13082f2016-08-03 21:20:23 -0700323 * @param links the links within this region
Simon Huntd5b96732016-07-08 13:22:27 -0700324 * @return a JSON representation of the data
325 */
Simon Huntc13082f2016-08-03 21:20:23 -0700326 ObjectNode region(UiRegion region, Set<UiRegion> subRegions,
327 List<UiSynthLink> links) {
Simon Huntd5b96732016-07-08 13:22:27 -0700328 ObjectNode payload = objectNode();
Simon Huntd5b96732016-07-08 13:22:27 -0700329 if (region == null) {
330 payload.put("note", "no-region");
331 return payload;
332 }
Simon Hunt2521d5f2017-03-20 18:17:28 -0700333
334 String ridStr = region.idAsString();
335
336 payload.put("id", ridStr);
337 payload.set("subregions", jsonSubRegions(ridStr, subRegions));
Simon Huntcd508a62016-10-27 12:47:24 -0700338 payload.set("links", jsonLinks(links));
Simon Huntc13082f2016-08-03 21:20:23 -0700339
Simon Hunt977aa052016-07-20 17:08:29 -0700340 List<String> layerTags = region.layerOrder();
341 List<Set<UiNode>> splitDevices = splitByLayer(layerTags, region.devices());
342 List<Set<UiNode>> splitHosts = splitByLayer(layerTags, region.hosts());
Simon Huntd5b96732016-07-08 13:22:27 -0700343
Simon Hunt2521d5f2017-03-20 18:17:28 -0700344 payload.set("devices", jsonGrouped(ridStr, splitDevices));
345 payload.set("hosts", jsonGrouped(ridStr, splitHosts));
Simon Hunt977aa052016-07-20 17:08:29 -0700346 payload.set("layerOrder", jsonStrings(layerTags));
Simon Huntd5b96732016-07-08 13:22:27 -0700347
Simon Hunt8f60ff82017-04-24 17:19:30 -0700348 if (!region.isRoot()) {
349 addPeerLocations(payload, region.backingRegion());
350 }
351
Simon Huntd5b96732016-07-08 13:22:27 -0700352 return payload;
353 }
354
Simon Hunt2521d5f2017-03-20 18:17:28 -0700355 private ArrayNode jsonSubRegions(String ridStr, Set<UiRegion> subregions) {
Simon Hunt977aa052016-07-20 17:08:29 -0700356 ArrayNode kids = arrayNode();
Simon Hunt2521d5f2017-03-20 18:17:28 -0700357 subregions.forEach(s -> kids.add(jsonClosedRegion(ridStr, s)));
Simon Hunt977aa052016-07-20 17:08:29 -0700358 return kids;
359 }
360
Simon Huntbf59db22017-05-12 13:26:35 -0700361 protected JsonNode jsonLinks(List<UiSynthLink> links) {
Simon Huntcf76a652017-05-12 18:28:24 -0700362 return collateSynthLinks(links);
Simon Huntc13082f2016-08-03 21:20:23 -0700363 }
364
Simon Hunt977aa052016-07-20 17:08:29 -0700365 private ArrayNode jsonStrings(List<String> strings) {
366 ArrayNode array = arrayNode();
367 strings.forEach(array::add);
368 return array;
369 }
370
Simon Hunt2521d5f2017-03-20 18:17:28 -0700371 private ArrayNode jsonGrouped(String ridStr, List<Set<UiNode>> groupedNodes) {
Simon Hunt977aa052016-07-20 17:08:29 -0700372 ArrayNode result = arrayNode();
373 groupedNodes.forEach(g -> {
374 ArrayNode subset = arrayNode();
Simon Hunt2521d5f2017-03-20 18:17:28 -0700375 g.forEach(n -> subset.add(json(ridStr, n)));
Simon Hunt977aa052016-07-20 17:08:29 -0700376 result.add(subset);
377 });
378 return result;
379 }
380
Simon Hunt537bc762016-12-20 12:15:13 -0800381 /**
Simon Hunt8eac4ae2017-01-20 12:56:45 -0800382 * Creates a JSON representation of a UI element.
383 *
384 * @param element the source element
385 * @return a JSON representation of that element
386 */
387 public ObjectNode jsonUiElement(UiElement element) {
388 if (element instanceof UiNode) {
Simon Hunt2521d5f2017-03-20 18:17:28 -0700389 return json(NO_CONTEXT, (UiNode) element);
Simon Hunt8eac4ae2017-01-20 12:56:45 -0800390 }
391 if (element instanceof UiLink) {
392 return json((UiLink) element);
393 }
Simon Hunt708a5b32017-08-01 15:06:04 -0700394 if (element instanceof UiClusterMember) {
395 return json((UiClusterMember) element);
396 }
Simon Hunt8eac4ae2017-01-20 12:56:45 -0800397
398 // Unrecognized UiElement class
399 return objectNode()
400 .put("warning", "unknown UiElement... cannot encode")
401 .put("javaclass", element.getClass().toString());
402 }
403
404 /**
Simon Hunt537bc762016-12-20 12:15:13 -0800405 * Creates a JSON representation of a UI model event.
406 *
407 * @param modelEvent the source model event
408 * @return a JSON representation of that event
409 */
410 public ObjectNode jsonEvent(UiModelEvent modelEvent) {
Steven Burrows512b6272016-12-19 14:09:45 -0500411 ObjectNode payload = objectNode();
412 payload.put(TYPE, enumToString(modelEvent.type()));
413 payload.put(SUBJECT, modelEvent.subject().idAsString());
Simon Hunt8eac4ae2017-01-20 12:56:45 -0800414 payload.set(DATA, modelEvent.data());
415 payload.put(MEMO, modelEvent.memo());
Steven Burrows512b6272016-12-19 14:09:45 -0500416 return payload;
417 }
418
419 // TODO: Investigate why we can't do this inline
420 private String enumToString(Enum<?> e) {
421 return e.toString();
422 }
423
Steven Burrowsad75aa22016-12-14 17:17:24 -0500424 // Returns the name of the master node for the specified device id.
425 private String master(DeviceId deviceId) {
426 NodeId master = mastershipService.getMasterFor(deviceId);
427 return master != null ? master.toString() : "";
428 }
Simon Hunt977aa052016-07-20 17:08:29 -0700429
Simon Hunt2521d5f2017-03-20 18:17:28 -0700430 private ObjectNode json(String ridStr, UiNode node) {
Simon Hunt977aa052016-07-20 17:08:29 -0700431 if (node instanceof UiRegion) {
Simon Hunt2521d5f2017-03-20 18:17:28 -0700432 return jsonClosedRegion(ridStr, (UiRegion) node);
Simon Hunt977aa052016-07-20 17:08:29 -0700433 }
434 if (node instanceof UiDevice) {
Simon Hunt2521d5f2017-03-20 18:17:28 -0700435 return json(ridStr, (UiDevice) node);
Simon Hunt977aa052016-07-20 17:08:29 -0700436 }
437 if (node instanceof UiHost) {
Simon Hunt2521d5f2017-03-20 18:17:28 -0700438 return json(ridStr, (UiHost) node);
Simon Hunt977aa052016-07-20 17:08:29 -0700439 }
440 throw new IllegalStateException(E_UNKNOWN_UI_NODE + node.getClass());
441 }
442
Simon Hunt2521d5f2017-03-20 18:17:28 -0700443 private ObjectNode json(String ridStr, UiDevice device) {
Simon Huntd5b96732016-07-08 13:22:27 -0700444 ObjectNode node = objectNode()
Simon Hunt977aa052016-07-20 17:08:29 -0700445 .put("id", device.idAsString())
Simon Hunt98189192016-07-29 19:02:27 -0700446 .put("nodeType", DEVICE)
Simon Huntd5b96732016-07-08 13:22:27 -0700447 .put("type", device.type())
Simon Hunt3d712522016-08-11 11:20:44 -0700448 .put("online", deviceService.isAvailable(device.id()))
Steven Burrowsad75aa22016-12-14 17:17:24 -0500449 .put("master", master(device.id()))
Simon Huntd5b96732016-07-08 13:22:27 -0700450 .put("layer", device.layer());
Simon Hunt6a8cb4f2016-08-09 15:08:57 -0700451 Device d = device.backingDevice();
dvaddireedeaf4a2017-06-21 00:00:30 +0530452 if (d != null) {
453 addProps(node, d);
454 addGeoGridLocation(node, d);
455 }
Simon Hunt2521d5f2017-03-20 18:17:28 -0700456 addMetaUi(node, ridStr, device.idAsString());
Simon Huntd5b96732016-07-08 13:22:27 -0700457
458 return node;
459 }
460
Simon Hunt53612212016-12-04 17:19:52 -0800461 private void addProps(ObjectNode node, Annotated a) {
462 Annotations annot = a.annotations();
Simon Hunt6a8cb4f2016-08-09 15:08:57 -0700463 ObjectNode props = objectNode();
464 if (annot != null) {
465 annot.keys().forEach(k -> props.put(k, annot.value(k)));
466 }
467 node.set("props", props);
468 }
Simon Huntd5b96732016-07-08 13:22:27 -0700469
Simon Hunt2521d5f2017-03-20 18:17:28 -0700470 private void addMetaUi(ObjectNode node, String ridStr, String metaInstanceId) {
471 String key = contextKey(ridStr, metaInstanceId);
472 ObjectNode meta = metaUi.get(key);
Simon Hunt6a8cb4f2016-08-09 15:08:57 -0700473 if (meta != null) {
474 node.set("metaUi", meta);
475 }
476 }
477
Simon Huntbc30e682017-02-15 18:39:23 -0800478 private void addGeoGridLocation(ObjectNode node, Annotated a) {
Simon Huntf27a9292017-05-04 17:36:26 -0700479 List<String> latLongData = getAnnotValues(a, LATITUDE, LONGITUDE);
480 List<String> gridYXdata = getAnnotValues(a, GRID_Y, GRID_X);
Simon Hunt6a8cb4f2016-08-09 15:08:57 -0700481
Simon Huntf27a9292017-05-04 17:36:26 -0700482 if (latLongData != null) {
483 attachLocation(node, GEO, latLongData);
484 } else if (gridYXdata != null) {
485 attachLocation(node, GRID, gridYXdata);
Simon Huntbc30e682017-02-15 18:39:23 -0800486 }
487 }
488
489 private void attachLocation(ObjectNode node, String locType,
Simon Huntf27a9292017-05-04 17:36:26 -0700490 List<String> values) {
Simon Huntbc30e682017-02-15 18:39:23 -0800491 try {
Simon Huntf27a9292017-05-04 17:36:26 -0700492 double latOrY = Double.parseDouble(values.get(0));
493 double longOrX = Double.parseDouble(values.get(1));
Simon Huntbc30e682017-02-15 18:39:23 -0800494 ObjectNode loc = objectNode()
Simon Huntf27a9292017-05-04 17:36:26 -0700495 .put(LOC_TYPE, locType)
496 .put(LAT_OR_Y, latOrY)
497 .put(LONG_OR_X, longOrX);
498 node.set(LOCATION, loc);
Simon Huntbc30e682017-02-15 18:39:23 -0800499
500 } catch (NumberFormatException e) {
Simon Huntf27a9292017-05-04 17:36:26 -0700501 log.warn("Invalid {} data: lat/Y={}, long/X={}",
Simon Huntbf59db22017-05-12 13:26:35 -0700502 locType, values.get(0), values.get(1));
Simon Hunt6a8cb4f2016-08-09 15:08:57 -0700503 }
504 }
505
Simon Hunt8f60ff82017-04-24 17:19:30 -0700506 private void addPeerLocations(ObjectNode node, Region r) {
507 String compact = r.annotations().value(PEER_LOCATIONS);
508 if (!Strings.isNullOrEmpty(compact)) {
509 List<LayoutLocation> locs = fromCompactListString(compact);
510
511 ObjectNode o = objectNode();
512 for (LayoutLocation ll : locs) {
513 ObjectNode lnode = objectNode()
Simon Huntbf59db22017-05-12 13:26:35 -0700514 .put(LOC_TYPE, ll.locType().toString())
515 .put(LAT_OR_Y, ll.latOrY())
516 .put(LONG_OR_X, ll.longOrX());
Simon Hunt8f60ff82017-04-24 17:19:30 -0700517 o.set(ll.id(), lnode);
518 }
519
520 node.set(PEER_LOCATIONS, o);
521 }
522 }
523
Steven Burrows583f4be2016-11-04 14:06:50 +0100524 private void addIps(ObjectNode node, Host h) {
525 Set<IpAddress> ips = h.ipAddresses();
526
527 ArrayNode a = arrayNode();
528 for (IpAddress ip : ips) {
529 a.add(ip.toString());
530 }
531
532 node.set("ips", a);
533 }
534
Simon Hunt6a8cb4f2016-08-09 15:08:57 -0700535 // return list of string values from annotated instance, for given keys
536 // return null if any keys are not present
537 List<String> getAnnotValues(Annotated a, String... annotKeys) {
538 List<String> result = new ArrayList<>(annotKeys.length);
539 for (String k : annotKeys) {
540 String v = a.annotations().value(k);
541 if (v == null) {
542 return null;
543 }
544 result.add(v);
545 }
546 return result;
547 }
548
549 // derive JSON object from annotations
550 private ObjectNode props(Annotations annotations) {
551 ObjectNode p = objectNode();
552 if (annotations != null) {
553 annotations.keys().forEach(k -> p.put(k, annotations.value(k)));
554 }
555 return p;
Simon Huntd5b96732016-07-08 13:22:27 -0700556 }
557
Simon Hunt2521d5f2017-03-20 18:17:28 -0700558 private ObjectNode json(String ridStr, UiHost host) {
Steven Burrows583f4be2016-11-04 14:06:50 +0100559 ObjectNode node = objectNode()
Simon Hunt977aa052016-07-20 17:08:29 -0700560 .put("id", host.idAsString())
Simon Hunt98189192016-07-29 19:02:27 -0700561 .put("nodeType", HOST)
Simon Huntd5b96732016-07-08 13:22:27 -0700562 .put("layer", host.layer());
563 // TODO: complete host details
Steven Burrows583f4be2016-11-04 14:06:50 +0100564 Host h = host.backingHost();
565
Simon Hunt5b83ac22017-05-16 10:53:43 -0700566 // h will be null, for example, after a HOST_REMOVED event
567 if (h != null) {
568 addIps(node, h);
569 addProps(node, h);
570 addGeoGridLocation(node, h);
Steven Burrows22cb5502018-02-06 11:28:33 +0000571 node.put("configured", h.configured());
Simon Hunt5b83ac22017-05-16 10:53:43 -0700572 }
Simon Hunt2521d5f2017-03-20 18:17:28 -0700573 addMetaUi(node, ridStr, host.idAsString());
Steven Burrows583f4be2016-11-04 14:06:50 +0100574
575 return node;
Simon Huntd5b96732016-07-08 13:22:27 -0700576 }
577
Simon Huntcf76a652017-05-12 18:28:24 -0700578 private ArrayNode collateSynthLinks(List<UiSynthLink> links) {
579 Map<UiLinkId, Set<UiSynthLink>> collation = new HashMap<>();
Simon Huntbf59db22017-05-12 13:26:35 -0700580
Simon Huntcf76a652017-05-12 18:28:24 -0700581 // first, group together the synthlinks into sets per ID...
582 for (UiSynthLink sl : links) {
583 UiLinkId id = sl.link().id();
584 Set<UiSynthLink> rollup =
585 collation.computeIfAbsent(id, k -> new HashSet<>());
586 rollup.add(sl);
587 }
588
589 // now add json nodes per set, and return the array of them
590 ArrayNode array = arrayNode();
591 for (UiLinkId id : collation.keySet()) {
592 array.add(json(collation.get(id)));
593 }
594 return array;
Simon Huntbf59db22017-05-12 13:26:35 -0700595 }
596
Simon Huntcf76a652017-05-12 18:28:24 -0700597 private ObjectNode json(Set<UiSynthLink> memberSet) {
598 ArrayNode rollup = arrayNode();
599 ObjectNode node = null;
600
601 boolean first = true;
602 for (UiSynthLink member : memberSet) {
603 UiLink link = member.link();
604 if (first) {
605 node = json(link);
606 first = false;
607 }
608 rollup.add(json(member.original()));
609 }
610 if (node != null) {
611 node.set("rollup", rollup);
612 }
613 return node;
Simon Hunt8eac4ae2017-01-20 12:56:45 -0800614 }
615
616 private ObjectNode json(UiLink link) {
Simon Hunt3d712522016-08-11 11:20:44 -0700617 ObjectNode data = objectNode()
Simon Hunt8eac4ae2017-01-20 12:56:45 -0800618 .put("id", link.idAsString())
619 .put("epA", link.endPointA())
620 .put("epB", link.endPointB())
621 .put("type", link.type());
622 String pA = link.endPortA();
623 String pB = link.endPortB();
Simon Hunt3d712522016-08-11 11:20:44 -0700624 if (pA != null) {
625 data.put("portA", pA);
626 }
627 if (pB != null) {
628 data.put("portB", pB);
629 }
630 return data;
Simon Huntd5b96732016-07-08 13:22:27 -0700631 }
632
Simon Hunt708a5b32017-08-01 15:06:04 -0700633 private ObjectNode json(UiClusterMember member) {
pierventrefa5dc3c2021-11-05 15:37:32 +0100634 return jsonCommon(member).put(GlyphConstants.UI_ATTACHED,
635 clusterService.getLocalNode().equals(member.backingNode()));
636 }
637
638 private ObjectNode jsonCommon(UiClusterMember member) {
Simon Hunt708a5b32017-08-01 15:06:04 -0700639 ControllerNode.State state = clusterService.getState(member.id());
pierventrefa5dc3c2021-11-05 15:37:32 +0100640 ControllerNode node = member.backingNode();
641 if (node != null) {
642 IpAddress nodeIp = member.backingNode().ip();
643 return objectNode()
644 .put("id", member.idAsString())
645 .put("ip", nodeIp != null ? nodeIp.toString() : node.host())
646 .put("online", state.isActive())
647 .put("ready", state.isReady());
648 }
Simon Hunt708a5b32017-08-01 15:06:04 -0700649 return objectNode()
650 .put("id", member.idAsString())
pierventrefa5dc3c2021-11-05 15:37:32 +0100651 .put("ip", "NONE")
652 .put("online", false)
653 .put("ready", false);
Simon Hunt708a5b32017-08-01 15:06:04 -0700654 }
Simon Huntd5b96732016-07-08 13:22:27 -0700655
Simon Hunt2521d5f2017-03-20 18:17:28 -0700656 private ObjectNode jsonClosedRegion(String ridStr, UiRegion region) {
Steven Burrows482d9502016-09-27 11:24:58 -0700657 ObjectNode node = objectNode()
Simon Huntb1ce2602016-07-23 14:04:31 -0700658 .put("id", region.idAsString())
Simon Huntf836a872016-08-10 17:37:36 -0700659 .put("name", region.name())
Simon Hunt98189192016-07-29 19:02:27 -0700660 .put("nodeType", REGION)
Steven Burrows19e6e4f2016-10-05 13:27:07 -0500661 .put("nDevs", region.deviceCount())
662 .put("nHosts", region.hostCount());
Simon Hunt2521d5f2017-03-20 18:17:28 -0700663 // TODO: device and host counts should take into account any nested
664 // subregions. i.e. should be the sum of all devices/hosts in
Simon Hunt8f60ff82017-04-24 17:19:30 -0700665 // all descendant subregions.
Simon Hunt53612212016-12-04 17:19:52 -0800666
667 Region r = region.backingRegion();
Simon Hunt0ee20bf2017-05-10 19:59:17 -0700668 if (r != null) {
669 // add data injected via network configuration script
670 addGeoGridLocation(node, r);
671 addProps(node, r);
672 }
Steven Burrows482d9502016-09-27 11:24:58 -0700673
Simon Hunt2521d5f2017-03-20 18:17:28 -0700674 // this may contain location data, as dragged by user
675 // (which should take precedence, over configured data)
676 addMetaUi(node, ridStr, region.idAsString());
Steven Burrows482d9502016-09-27 11:24:58 -0700677 return node;
Simon Hunt977aa052016-07-20 17:08:29 -0700678 }
679
Simon Hunt98189192016-07-29 19:02:27 -0700680 /**
681 * Returns a JSON array representation of a set of regions/devices. Note
682 * that the information is sufficient for showing regions as nodes.
Simon Hunt2521d5f2017-03-20 18:17:28 -0700683 * THe region ID string defines the context (which region) the node is
684 * being displayed in.
Simon Hunt98189192016-07-29 19:02:27 -0700685 *
Simon Hunt2521d5f2017-03-20 18:17:28 -0700686 * @param ridStr region-id string
Simon Huntf0c6f542017-03-22 18:31:18 -0700687 * @param nodes the nodes
Simon Hunt98189192016-07-29 19:02:27 -0700688 * @return a JSON representation of the nodes
689 */
Simon Hunt2521d5f2017-03-20 18:17:28 -0700690 public ArrayNode closedNodes(String ridStr, Set<UiNode> nodes) {
Simon Hunt98189192016-07-29 19:02:27 -0700691 ArrayNode array = arrayNode();
Simon Huntc13082f2016-08-03 21:20:23 -0700692 for (UiNode node : nodes) {
Simon Hunt98189192016-07-29 19:02:27 -0700693 if (node instanceof UiRegion) {
Simon Hunt2521d5f2017-03-20 18:17:28 -0700694 array.add(jsonClosedRegion(ridStr, (UiRegion) node));
Simon Hunt98189192016-07-29 19:02:27 -0700695 } else if (node instanceof UiDevice) {
Simon Hunt2521d5f2017-03-20 18:17:28 -0700696 array.add(json(ridStr, (UiDevice) node));
Simon Hunt98189192016-07-29 19:02:27 -0700697 } else {
698 log.warn("Unexpected node instance: {}", node.getClass());
699 }
700 }
701 return array;
702 }
Simon Hunt977aa052016-07-20 17:08:29 -0700703
Simon Hunt977aa052016-07-20 17:08:29 -0700704 // package-private for unit testing
705 List<Set<UiNode>> splitByLayer(List<String> layerTags,
706 Set<? extends UiNode> nodes) {
707 final int nLayers = layerTags.size();
708 if (!layerTags.get(nLayers - 1).equals(LAYER_DEFAULT)) {
709 throw new IllegalArgumentException(E_DEF_NOT_LAST);
710 }
711
712 List<Set<UiNode>> splitList = new ArrayList<>(layerTags.size());
713 Map<String, Set<UiNode>> byLayer = new HashMap<>(layerTags.size());
714
715 for (String tag : layerTags) {
716 Set<UiNode> set = new HashSet<>();
717 byLayer.put(tag, set);
718 splitList.add(set);
719 }
720
721 for (UiNode n : nodes) {
722 String which = n.layer();
723 if (!layerTags.contains(which)) {
724 which = LAYER_DEFAULT;
725 }
726 byLayer.get(which).add(n);
727 }
728
729 return splitList;
730 }
Steven Burrowse7cc3082016-09-27 11:24:58 -0700731
Simon Hunt2521d5f2017-03-20 18:17:28 -0700732
733 private String contextKey(String context, String key) {
734 return context + CONTEXT_KEY_DELIM + key;
735 }
736
Steven Burrowse7cc3082016-09-27 11:24:58 -0700737 /**
738 * Stores the memento for an element.
Simon Hunt2521d5f2017-03-20 18:17:28 -0700739 * This method assumes the payload has an id String, memento ObjectNode.
740 * The region-id string is used as a context within which to store the
741 * memento.
Steven Burrowse7cc3082016-09-27 11:24:58 -0700742 *
Simon Hunt2521d5f2017-03-20 18:17:28 -0700743 * @param ridStr region ID string
Steven Burrowse7cc3082016-09-27 11:24:58 -0700744 * @param payload event payload
745 */
Simon Hunt2521d5f2017-03-20 18:17:28 -0700746 void updateMeta(String ridStr, ObjectNode payload) {
Steven Burrowse7cc3082016-09-27 11:24:58 -0700747
748 String id = JsonUtils.string(payload, "id");
Simon Hunt2521d5f2017-03-20 18:17:28 -0700749 String key = contextKey(ridStr, id);
750 metaUi.put(key, JsonUtils.node(payload, "memento"));
Steven Burrowse7cc3082016-09-27 11:24:58 -0700751
Simon Hunt2521d5f2017-03-20 18:17:28 -0700752 log.debug("Storing metadata for {}", key);
Steven Burrowse7cc3082016-09-27 11:24:58 -0700753 }
Simon Huntd5b96732016-07-08 13:22:27 -0700754}