blob: dacbda91e858e3650ce9190ec47aeb67effaa11e [file] [log] [blame]
Simon Hunt737c89f2015-01-28 12:23:19 -08001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2015-present Open Networking Foundation
Simon Hunt737c89f2015-01-28 12:23:19 -08003 *
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
17/*
Simon Hunt3a6eec02015-02-09 21:16:43 -080018 ONOS GUI -- Topology Force Module.
19 Visualization of the topology in an SVG layer, using a D3 Force Layout.
Simon Hunt737c89f2015-01-28 12:23:19 -080020 */
21
22(function () {
23 'use strict';
24
25 // injected refs
Simon Hunt8d22c4b2015-08-06 16:24:43 -070026 var $log, $timeout, fs, sus, ts, flash, wss, tov,
Andrea Campanella732ea832017-02-06 09:25:59 -080027 tis, tms, td3, tss, tts, tos, fltr, tls, uplink, svg, tpis;
Simon Huntac4c6f72015-02-03 19:50:53 -080028
Simon Hunte2d9dc72017-08-10 15:21:04 -070029 // function to be replaced by the localization bundle function
30 var topoLion = function (x) {
31 return '#tfs#' + x + '#';
32 };
33
Simon Huntac4c6f72015-02-03 19:50:53 -080034 // configuration
Simon Hunt1894d792015-02-04 17:09:20 -080035 var linkConfig = {
36 light: {
Simon Huntf44d7262016-06-14 14:46:56 -070037 baseColor: '#939598',
Simon Hunt1894d792015-02-04 17:09:20 -080038 inColor: '#66f',
Steven Burrows1c2a9682017-07-14 16:52:46 +010039 outColor: '#f00',
Simon Hunt1894d792015-02-04 17:09:20 -080040 },
41 dark: {
Simon Huntf44d7262016-06-14 14:46:56 -070042 // TODO : theme
43 baseColor: '#939598',
Simon Hunt1894d792015-02-04 17:09:20 -080044 inColor: '#66f',
Steven Burrows1c2a9682017-07-14 16:52:46 +010045 outColor: '#f00',
Simon Hunt1894d792015-02-04 17:09:20 -080046 },
47 inWidth: 12,
Steven Burrows1c2a9682017-07-14 16:52:46 +010048 outWidth: 10,
Simon Hunt1894d792015-02-04 17:09:20 -080049 };
50
Simon Hunt737c89f2015-01-28 12:23:19 -080051 // internal state
Steven Burrows1c2a9682017-07-14 16:52:46 +010052 var settings, // merged default settings and options
53 force, // force layout object
54 drag, // drag behavior handler
Simon Hunt737c89f2015-01-28 12:23:19 -080055 network = {
56 nodes: [],
57 links: [],
Bri Prebilic Coleaeeb33e2015-07-09 15:15:54 -070058 linksByDevice: {},
Simon Hunt737c89f2015-01-28 12:23:19 -080059 lookup: {},
Steven Burrows1c2a9682017-07-14 16:52:46 +010060 revLinkToKey: {},
Simon Huntac4c6f72015-02-03 19:50:53 -080061 },
Steven Burrows1c2a9682017-07-14 16:52:46 +010062 lu, // shorthand for lookup
63 rlk, // shorthand for revLinktoKey
64 showHosts = false, // whether hosts are displayed
65 showOffline = true, // whether offline devices are displayed
66 nodeLock = false, // whether nodes can be dragged or not (locked)
67 fTimer, // timer for delayed force layout
68 fNodesTimer, // timer for delayed nodes update
69 fLinksTimer, // timer for delayed links update
70 dim, // the dimensions of the force layout [w,h]
71 linkNums = [], // array of link number labels
72 devIconDim = 36, // node target dimension
73 devIconDimMin = 20, // node minimum dimension when zoomed out
Thomas Vachuskac8c8f462021-03-01 11:22:56 -080074 devIconDimMax = 70, // node maximum dimension when zoomed in
Steven Burrowsf17f0ab2017-04-11 11:03:58 -070075 portLabelDim = 30;
Simon Hunt737c89f2015-01-28 12:23:19 -080076
77 // SVG elements;
Bri Prebilic Cole80401762015-07-16 11:36:18 -070078 var linkG, linkLabelG, numLinkLblsG, portLabelG, nodeG;
Simon Hunt737c89f2015-01-28 12:23:19 -080079
80 // D3 selections;
81 var link, linkLabel, node;
82
83 // default settings for force layout
84 var defaultSettings = {
85 gravity: 0.4,
86 friction: 0.7,
87 charge: {
88 // note: key is node.class
89 device: -8000,
90 host: -5000,
Steven Burrows1c2a9682017-07-14 16:52:46 +010091 _def_: -12000,
Simon Hunt737c89f2015-01-28 12:23:19 -080092 },
93 linkDistance: {
94 // note: key is link.type
95 direct: 100,
96 optical: 120,
97 hostLink: 3,
Steven Burrows1c2a9682017-07-14 16:52:46 +010098 _def_: 50,
Simon Hunt737c89f2015-01-28 12:23:19 -080099 },
100 linkStrength: {
101 // note: key is link.type
102 // range: {0.0 ... 1.0}
Steven Burrows1c2a9682017-07-14 16:52:46 +0100103 // direct: 1.0,
104 // optical: 1.0,
105 // hostLink: 1.0,
106 _def_: 1.0,
107 },
Simon Hunt737c89f2015-01-28 12:23:19 -0800108 };
109
Thomas Vachuskac8c8f462021-03-01 11:22:56 -0800110 var hostScaleFactor = {icon: 1.0, text: 1.0};
Simon Hunt737c89f2015-01-28 12:23:19 -0800111
Simon Huntac4c6f72015-02-03 19:50:53 -0800112 // ==========================
113 // === EVENT HANDLERS
114
Thomas Vachuskac616e172018-04-17 16:57:12 -0700115 function mergeNodeData(o, n) {
116 angular.extend(o, n);
117 if (!n.location) {
118 delete o.location;
119 }
120 }
121
Simon Huntac4c6f72015-02-03 19:50:53 -0800122 function addDevice(data) {
123 var id = data.id,
124 d;
125
Simon Hunt1894d792015-02-04 17:09:20 -0800126 uplink.showNoDevs(false);
Simon Huntac4c6f72015-02-03 19:50:53 -0800127
128 // although this is an add device event, if we already have the
129 // device, treat it as an update instead..
Simon Hunt1894d792015-02-04 17:09:20 -0800130 if (lu[id]) {
Simon Huntac4c6f72015-02-03 19:50:53 -0800131 updateDevice(data);
132 return;
133 }
134
Simon Hunt3a6eec02015-02-09 21:16:43 -0800135 d = tms.createDeviceNode(data);
Simon Huntac4c6f72015-02-03 19:50:53 -0800136 network.nodes.push(d);
Simon Hunt1894d792015-02-04 17:09:20 -0800137 lu[id] = d;
Simon Huntac4c6f72015-02-03 19:50:53 -0800138 updateNodes();
Simon Hunta17fa672015-08-19 18:42:22 -0700139 fStart();
Simon Huntac4c6f72015-02-03 19:50:53 -0800140 }
141
142 function updateDevice(data) {
143 var id = data.id,
Simon Hunt1894d792015-02-04 17:09:20 -0800144 d = lu[id],
Simon Huntac4c6f72015-02-03 19:50:53 -0800145 wasOnline;
146
147 if (d) {
148 wasOnline = d.online;
Thomas Vachuskac616e172018-04-17 16:57:12 -0700149 mergeNodeData(d, data);
Simon Hunt3a6eec02015-02-09 21:16:43 -0800150 if (tms.positionNode(d, true)) {
Simon Hunt445e8152015-02-06 13:00:12 -0800151 sendUpdateMeta(d);
Simon Huntac4c6f72015-02-03 19:50:53 -0800152 }
153 updateNodes();
Thomas Vachuskac616e172018-04-17 16:57:12 -0700154 tick();
Simon Huntac4c6f72015-02-03 19:50:53 -0800155 if (wasOnline !== d.online) {
Simon Huntdc6adea2015-02-09 22:29:36 -0800156 tms.findAttachedLinks(d.id).forEach(restyleLinkElement);
Simon Hunt5724fb42015-02-05 16:59:40 -0800157 updateOfflineVisibility(d);
Simon Huntac4c6f72015-02-03 19:50:53 -0800158 }
Thomas Vachuskac616e172018-04-17 16:57:12 -0700159 fStart();
Simon Huntac4c6f72015-02-03 19:50:53 -0800160 }
161 }
162
Simon Hunt1894d792015-02-04 17:09:20 -0800163 function removeDevice(data) {
164 var id = data.id,
165 d = lu[id];
166 if (d) {
167 removeDeviceElement(d);
Simon Hunt1894d792015-02-04 17:09:20 -0800168 }
169 }
170
171 function addHost(data) {
172 var id = data.id,
Simon Hunt12c79ed2017-09-12 11:58:44 -0700173 d;
Simon Hunt1894d792015-02-04 17:09:20 -0800174
175 // although this is an add host event, if we already have the
176 // host, treat it as an update instead..
177 if (lu[id]) {
178 updateHost(data);
179 return;
180 }
181
Simon Hunt3a6eec02015-02-09 21:16:43 -0800182 d = tms.createHostNode(data);
Simon Hunt1894d792015-02-04 17:09:20 -0800183 network.nodes.push(d);
184 lu[id] = d;
Simon Hunt1894d792015-02-04 17:09:20 -0800185 updateNodes();
186
Simon Hunt12c79ed2017-09-12 11:58:44 -0700187 // need to handle possible multiple links (multi-homed host)
Simon Hunt7df764f2017-09-14 21:26:14 -0700188 createHostLinks(data.allCps, d);
Simon Hunt12c79ed2017-09-12 11:58:44 -0700189
190 if (d.links.length) {
Simon Hunt1894d792015-02-04 17:09:20 -0800191 updateLinks();
192 }
Simon Hunta17fa672015-08-19 18:42:22 -0700193 fStart();
Simon Hunt1894d792015-02-04 17:09:20 -0800194 }
195
196 function updateHost(data) {
197 var id = data.id,
198 d = lu[id];
199 if (d) {
Thomas Vachuskac616e172018-04-17 16:57:12 -0700200 mergeNodeData(d, data);
Simon Hunt3a6eec02015-02-09 21:16:43 -0800201 if (tms.positionNode(d, true)) {
Simon Hunt445e8152015-02-06 13:00:12 -0800202 sendUpdateMeta(d);
Simon Hunt1894d792015-02-04 17:09:20 -0800203 }
204 updateNodes();
Thomas Vachuskac616e172018-04-17 16:57:12 -0700205 tick();
206 fStart();
Simon Hunt1894d792015-02-04 17:09:20 -0800207 }
208 }
209
Simon Hunt7df764f2017-09-14 21:26:14 -0700210 function createHostLinks(cps, model) {
211 model.links = [];
212 cps.forEach(function (cp) {
213 var linkData = {
214 key: model.id + '/0-' + cp.device + '/' + cp.port,
215 dst: cp.device,
216 dstPort: cp.port,
217 };
218 model.links.push(linkData);
219
220 var lnk = tms.createHostLink(model.id, cp.device, cp.port);
221 if (lnk) {
222 network.links.push(lnk);
223 lu[linkData.key] = lnk;
224 }
225 });
226 }
227
Simon Hunt95d56fd2015-11-12 11:06:44 -0800228 function moveHost(data) {
229 var id = data.id,
Simon Hunt7df764f2017-09-14 21:26:14 -0700230 d = lu[id];
Simon Hunt12c79ed2017-09-12 11:58:44 -0700231
Simon Hunt95d56fd2015-11-12 11:06:44 -0800232 if (d) {
Simon Hunt7df764f2017-09-14 21:26:14 -0700233 removeAllLinkElements(d.links);
Simon Hunt95d56fd2015-11-12 11:06:44 -0800234
235 // merge new data
236 angular.extend(d, data);
237 if (tms.positionNode(d, true)) {
238 sendUpdateMeta(d);
239 }
240
Simon Hunt7df764f2017-09-14 21:26:14 -0700241 // now create new host link(s)
242 createHostLinks(data.allCps, d);
Simon Hunt95d56fd2015-11-12 11:06:44 -0800243
244 updateNodes();
245 updateLinks();
246 fResume();
247 }
248 }
249
Simon Hunt1894d792015-02-04 17:09:20 -0800250 function removeHost(data) {
251 var id = data.id,
252 d = lu[id];
253 if (d) {
254 removeHostElement(d, true);
Simon Hunt1894d792015-02-04 17:09:20 -0800255 }
256 }
257
258 function addLink(data) {
Simon Huntdc6adea2015-02-09 22:29:36 -0800259 var result = tms.findLink(data, 'add'),
Simon Hunt1894d792015-02-04 17:09:20 -0800260 bad = result.badLogic,
261 d = result.ldata;
262
263 if (bad) {
Simon Hunteb18f522016-01-28 19:22:23 -0800264 $log.debug(bad + ': ' + link.id);
Simon Hunt1894d792015-02-04 17:09:20 -0800265 return;
266 }
267
268 if (d) {
269 // we already have a backing store link for src/dst nodes
270 addLinkUpdate(d, data);
271 return;
272 }
273
274 // no backing store link yet
Simon Hunt3a6eec02015-02-09 21:16:43 -0800275 d = tms.createLink(data);
Simon Hunt1894d792015-02-04 17:09:20 -0800276 if (d) {
277 network.links.push(d);
Bri Prebilic Coleaeeb33e2015-07-09 15:15:54 -0700278 aggregateLink(d, data);
Simon Hunt1894d792015-02-04 17:09:20 -0800279 lu[d.key] = d;
280 updateLinks();
Simon Hunta17fa672015-08-19 18:42:22 -0700281 fStart();
Simon Hunt1894d792015-02-04 17:09:20 -0800282 }
283 }
284
285 function updateLink(data) {
Simon Huntdc6adea2015-02-09 22:29:36 -0800286 var result = tms.findLink(data, 'update'),
Simon Hunt1894d792015-02-04 17:09:20 -0800287 bad = result.badLogic;
288 if (bad) {
Simon Hunteb18f522016-01-28 19:22:23 -0800289 $log.debug(bad + ': ' + link.id);
Simon Hunt1894d792015-02-04 17:09:20 -0800290 return;
291 }
Simon Hunteb18f522016-01-28 19:22:23 -0800292 result.updateWith(data);
Simon Hunt1894d792015-02-04 17:09:20 -0800293 }
294
295 function removeLink(data) {
Simon Hunta4242de2015-02-24 17:11:55 -0800296 var result = tms.findLink(data, 'remove');
297
298 if (!result.badLogic) {
299 result.removeRawLink();
Simon Hunt1894d792015-02-04 17:09:20 -0800300 }
Simon Hunt1894d792015-02-04 17:09:20 -0800301 }
302
Simon Hunt4a6b54b2015-10-27 22:08:25 -0700303 function topoStartDone(data) {
304 // called when the initial barrage of data has been sent from server
305 uplink.topoStartDone();
306 }
307
Simon Hunt1894d792015-02-04 17:09:20 -0800308 // ========================
309
Simon Hunt94f7dae2015-08-26 17:40:59 -0700310 function nodeById(id) {
311 return lu[id];
312 }
313
Bri Prebilic Coleaeeb33e2015-07-09 15:15:54 -0700314 function makeNodeKey(node1, node2) {
315 return node1 + '-' + node2;
316 }
317
318 function findNodePair(key, keyRev) {
319 if (network.linksByDevice[key]) {
320 return key;
321 } else if (network.linksByDevice[keyRev]) {
322 return keyRev;
323 } else {
324 return false;
325 }
326 }
327
328 function aggregateLink(ldata, link) {
329 var key = makeNodeKey(link.src, link.dst),
330 keyRev = makeNodeKey(link.dst, link.src),
331 found = findNodePair(key, keyRev);
332
333 if (found) {
334 network.linksByDevice[found].push(ldata);
335 ldata.devicePair = found;
336 } else {
Steven Burrows1c2a9682017-07-14 16:52:46 +0100337 network.linksByDevice[key] = [ldata];
Bri Prebilic Coleaeeb33e2015-07-09 15:15:54 -0700338 ldata.devicePair = key;
339 }
340 }
341
Simon Hunt1894d792015-02-04 17:09:20 -0800342 function addLinkUpdate(ldata, link) {
343 // add link event, but we already have the reverse link installed
344 ldata.fromTarget = link;
Simon Huntdc6adea2015-02-09 22:29:36 -0800345 rlk[link.id] = ldata.key;
Bri Prebilic Coleaeeb33e2015-07-09 15:15:54 -0700346 // possible solution to el being undefined in restyleLinkElement:
Steven Burrows1c2a9682017-07-14 16:52:46 +0100347 // _updateLinks();
Simon Hunt1894d792015-02-04 17:09:20 -0800348 restyleLinkElement(ldata);
349 }
350
Simon Hunt1894d792015-02-04 17:09:20 -0800351
352 var widthRatio = 1.4,
353 linkScale = d3.scale.linear()
354 .domain([1, 12])
355 .range([widthRatio, 12 * widthRatio])
Simon Hunt5724fb42015-02-05 16:59:40 -0800356 .clamp(true),
Ray Milkeyb7f0f642016-01-22 16:08:14 -0800357 allLinkTypes = 'direct indirect optical tunnel',
358 allLinkSubTypes = 'inactive not-permitted';
Simon Hunt1894d792015-02-04 17:09:20 -0800359
Simon Hunta142dd22015-02-12 22:07:51 -0800360 function restyleLinkElement(ldata, immediate) {
Simon Hunt1894d792015-02-04 17:09:20 -0800361 // this fn's job is to look at raw links and decide what svg classes
362 // need to be applied to the line element in the DOM
363 var th = ts.theme(),
364 el = ldata.el,
365 type = ldata.type(),
366 lw = ldata.linkWidth(),
Simon Hunta142dd22015-02-12 22:07:51 -0800367 online = ldata.online(),
Ray Milkeyb7f0f642016-01-22 16:08:14 -0800368 modeCls = ldata.expected() ? 'inactive' : 'not-permitted',
Simon Hunta142dd22015-02-12 22:07:51 -0800369 delay = immediate ? 0 : 1000;
Simon Hunt1894d792015-02-04 17:09:20 -0800370
Simon Huntf44d7262016-06-14 14:46:56 -0700371 // NOTE: understand why el is sometimes undefined on addLink events...
Bri Prebilic Coleaeeb33e2015-07-09 15:15:54 -0700372 // Investigated:
373 // el is undefined when it's a reverse link that is being added.
374 // updateLinks (which sets ldata.el) isn't called before this is called.
375 // Calling _updateLinks in addLinkUpdate fixes it, but there might be
376 // a more efficient way to fix it.
377 if (el && !el.empty()) {
Thomas Vachuskacb5016f2015-05-18 14:11:43 -0700378 el.classed('link', true);
Ray Milkeyb7f0f642016-01-22 16:08:14 -0800379 el.classed(allLinkSubTypes, false);
380 el.classed(modeCls, !online);
Thomas Vachuskacb5016f2015-05-18 14:11:43 -0700381 el.classed(allLinkTypes, false);
382 if (type) {
383 el.classed(type, true);
384 }
385 el.transition()
386 .duration(delay)
387 .attr('stroke-width', linkScale(lw))
388 .attr('stroke', linkConfig[th].baseColor);
Simon Hunt1894d792015-02-04 17:09:20 -0800389 }
Simon Hunt1894d792015-02-04 17:09:20 -0800390 }
391
Simon Hunt7df764f2017-09-14 21:26:14 -0700392 function removeAllLinkElements(links) {
393 links.forEach(function (lnk) {
394 removeLinkElement(lnk);
395 });
396 }
397
Simon Hunt1894d792015-02-04 17:09:20 -0800398 function removeLinkElement(d) {
399 var idx = fs.find(d.key, network.links, 'key'),
400 removed;
401 if (idx >=0) {
402 // remove from links array
403 removed = network.links.splice(idx, 1);
404 // remove from lookup cache
405 delete lu[removed[0].key];
406 updateLinks();
Simon Hunta17fa672015-08-19 18:42:22 -0700407 fResume();
Simon Hunt1894d792015-02-04 17:09:20 -0800408 }
409 }
410
411 function removeHostElement(d, upd) {
Simon Hunt1fb00552017-09-15 09:21:14 -0700412 // first, remove associated hostLink(s)...
413 removeAllLinkElements(d.links);
Simon Hunt1894d792015-02-04 17:09:20 -0800414
415 // remove from lookup cache
416 delete lu[d.id];
417 // remove from nodes array
418 var idx = fs.find(d.id, network.nodes);
419 network.nodes.splice(idx, 1);
420
421 // remove from SVG
422 // NOTE: upd is false if we were called from removeDeviceElement()
423 if (upd) {
424 updateNodes();
Simon Hunta17fa672015-08-19 18:42:22 -0700425 fResume();
Simon Hunt1894d792015-02-04 17:09:20 -0800426 }
427 }
428
429 function removeDeviceElement(d) {
Bri Prebilic Cole8d003782015-07-31 15:33:06 -0700430 var id = d.id,
431 idx;
Simon Hunt1894d792015-02-04 17:09:20 -0800432 // first, remove associated hosts and links..
Simon Huntdc6adea2015-02-09 22:29:36 -0800433 tms.findAttachedHosts(id).forEach(removeHostElement);
434 tms.findAttachedLinks(id).forEach(removeLinkElement);
Simon Hunt1894d792015-02-04 17:09:20 -0800435
436 // remove from lookup cache
437 delete lu[id];
438 // remove from nodes array
Bri Prebilic Cole8d003782015-07-31 15:33:06 -0700439 idx = fs.find(id, network.nodes);
440 if (idx > -1) {
441 network.nodes.splice(idx, 1);
442 }
Simon Hunt1894d792015-02-04 17:09:20 -0800443
444 if (!network.nodes.length) {
Simon Huntdc6adea2015-02-09 22:29:36 -0800445 uplink.showNoDevs(true);
Simon Hunt1894d792015-02-04 17:09:20 -0800446 }
447
448 // remove from SVG
449 updateNodes();
Simon Hunta17fa672015-08-19 18:42:22 -0700450 fResume();
Simon Hunt1894d792015-02-04 17:09:20 -0800451 }
452
Simon Hunt5724fb42015-02-05 16:59:40 -0800453 function updateHostVisibility() {
Simon Hunt18bf9822015-02-12 17:35:45 -0800454 sus.visible(nodeG.selectAll('.host'), showHosts);
455 sus.visible(linkG.selectAll('.hostLink'), showHosts);
Simon Hunt8eb4d3a2015-02-23 18:23:29 -0800456 sus.visible(linkLabelG.selectAll('.hostLinkLabel'), showHosts);
Simon Hunt5724fb42015-02-05 16:59:40 -0800457 }
458
459 function updateOfflineVisibility(dev) {
460 function updDev(d, show) {
Simon Hunt8eb4d3a2015-02-23 18:23:29 -0800461 var b;
Simon Hunt18bf9822015-02-12 17:35:45 -0800462 sus.visible(d.el, show);
Simon Hunt5724fb42015-02-05 16:59:40 -0800463
Simon Huntdc6adea2015-02-09 22:29:36 -0800464 tms.findAttachedLinks(d.id).forEach(function (link) {
Simon Hunt5724fb42015-02-05 16:59:40 -0800465 b = show && ((link.type() !== 'hostLink') || showHosts);
Simon Hunt18bf9822015-02-12 17:35:45 -0800466 sus.visible(link.el, b);
Simon Hunt5724fb42015-02-05 16:59:40 -0800467 });
Simon Huntdc6adea2015-02-09 22:29:36 -0800468 tms.findAttachedHosts(d.id).forEach(function (host) {
Simon Hunt5724fb42015-02-05 16:59:40 -0800469 b = show && showHosts;
Simon Hunt18bf9822015-02-12 17:35:45 -0800470 sus.visible(host.el, b);
Simon Hunt5724fb42015-02-05 16:59:40 -0800471 });
472 }
473
474 if (dev) {
475 // updating a specific device that just toggled off/on-line
476 updDev(dev, dev.online || showOffline);
477 } else {
478 // updating all offline devices
Simon Huntdc6adea2015-02-09 22:29:36 -0800479 tms.findDevices(true).forEach(function (d) {
Simon Hunt5724fb42015-02-05 16:59:40 -0800480 updDev(d, showOffline);
481 });
482 }
483 }
484
Simon Hunt1894d792015-02-04 17:09:20 -0800485
Simon Hunt445e8152015-02-06 13:00:12 -0800486 function sendUpdateMeta(d, clearPos) {
Simon Huntac4c6f72015-02-03 19:50:53 -0800487 var metaUi = {},
488 ll;
489
Simon Hunt445e8152015-02-06 13:00:12 -0800490 // if we are not clearing the position data (unpinning),
Simon Huntfd7106c2016-02-09 15:05:26 -0800491 // attach the x, y, (and equivalent longitude, latitude)...
Simon Hunt445e8152015-02-06 13:00:12 -0800492 if (!clearPos) {
Simon Hunt3a6eec02015-02-09 21:16:43 -0800493 ll = tms.lngLatFromCoord([d.x, d.y]);
Simon Huntfd7106c2016-02-09 15:05:26 -0800494 metaUi = {
495 x: d.x,
496 y: d.y,
497 equivLoc: {
498 lng: ll[0],
Steven Burrows1c2a9682017-07-14 16:52:46 +0100499 lat: ll[1],
500 },
Simon Huntfd7106c2016-02-09 15:05:26 -0800501 };
Simon Hunt1894d792015-02-04 17:09:20 -0800502 }
503 d.metaUi = metaUi;
Simon Hunt237676b52015-03-10 19:04:26 -0700504 wss.sendEvent('updateMeta', {
Simon Hunt1894d792015-02-04 17:09:20 -0800505 id: d.id,
Bri Prebilic Coleaeeb33e2015-07-09 15:15:54 -0700506 class: d.class,
Steven Burrows1c2a9682017-07-14 16:52:46 +0100507 memento: metaUi,
Simon Hunt1894d792015-02-04 17:09:20 -0800508 });
Simon Huntac4c6f72015-02-03 19:50:53 -0800509 }
510
Simon Hunt1894d792015-02-04 17:09:20 -0800511
Simon Huntac4c6f72015-02-03 19:50:53 -0800512 function mkSvgClass(d) {
513 return d.fixed ? d.svgClass + ' fixed' : d.svgClass;
514 }
515
Simon Hunt5724fb42015-02-05 16:59:40 -0800516 function vis(b) {
Simon Hunt1603c692017-08-10 19:53:35 -0700517 return topoLion(b ? 'visible' : 'hidden');
Simon Hunt5724fb42015-02-05 16:59:40 -0800518 }
519
Simon Huntfcbde892015-04-16 12:05:28 -0700520 function toggleHosts(x) {
521 var kev = (x === 'keyev'),
522 on = kev ? !showHosts : !!x;
523
524 showHosts = on;
Simon Hunt5724fb42015-02-05 16:59:40 -0800525 updateHostVisibility();
Simon Hunte2d9dc72017-08-10 15:21:04 -0700526 flash.flash(topoLion('hosts') + ' ' + vis(on));
Simon Huntfcbde892015-04-16 12:05:28 -0700527 return on;
Simon Hunt5724fb42015-02-05 16:59:40 -0800528 }
529
Simon Huntfcbde892015-04-16 12:05:28 -0700530 function toggleOffline(x) {
531 var kev = (x === 'keyev'),
532 on = kev ? !showOffline : !!x;
533
534 showOffline = on;
Simon Hunt5724fb42015-02-05 16:59:40 -0800535 updateOfflineVisibility();
Simon Hunte2d9dc72017-08-10 15:21:04 -0700536 flash.flash(topoLion('fl_offline_devices') + ' ' + vis(on));
Simon Huntfcbde892015-04-16 12:05:28 -0700537 return on;
Simon Hunt5724fb42015-02-05 16:59:40 -0800538 }
539
540 function cycleDeviceLabels() {
Bri Prebilic Cole9cf1a8d2015-04-21 13:15:29 -0700541 flash.flash(td3.incDevLabIndex());
Simon Huntdc6adea2015-02-09 22:29:36 -0800542 tms.findDevices().forEach(function (d) {
Simon Hunta4242de2015-02-24 17:11:55 -0800543 td3.updateDeviceLabel(d);
Simon Hunt1c367112015-02-05 18:02:46 -0800544 });
Simon Hunt5724fb42015-02-05 16:59:40 -0800545 }
546
Simon Hunt10618f62017-06-15 19:30:52 -0700547 function cycleHostLabels() {
548 flash.flash(td3.incHostLabIndex());
549 tms.findHosts().forEach(function (d) {
550 td3.updateHostLabel(d);
551 });
552 }
553
Thomas Vachuskaa4eac6a2021-03-01 15:11:59 -0800554 function cycleLinkLabels() {
555 td3.toggleLinkLabels();
556 }
557
Simon Hunt445e8152015-02-06 13:00:12 -0800558 function unpin() {
Simon Hunt08f841d02015-02-10 14:39:20 -0800559 var hov = tss.hovered();
560 if (hov) {
561 sendUpdateMeta(hov, true);
562 hov.fixed = false;
563 hov.el.classed('fixed', false);
Simon Hunt445e8152015-02-06 13:00:12 -0800564 fResume();
565 }
566 }
567
Simon Hunta142dd22015-02-12 22:07:51 -0800568 function showMastership(masterId) {
569 if (!masterId) {
570 restoreLayerState();
571 } else {
572 showMastershipFor(masterId);
573 }
574 }
575
576 function restoreLayerState() {
577 // NOTE: this level of indirection required, for when we have
578 // the layer filter functionality re-implemented
579 suppressLayers(false);
580 }
581
582 function showMastershipFor(id) {
583 suppressLayers(true);
584 node.each(function (n) {
585 if (n.master === id) {
Simon Hunt743a8492015-08-25 16:18:19 -0700586 n.el.classed('suppressedmax', false);
Simon Hunta142dd22015-02-12 22:07:51 -0800587 }
588 });
589 }
590
Simon Hunt743a8492015-08-25 16:18:19 -0700591 function supAmt(less) {
Steven Burrows1c2a9682017-07-14 16:52:46 +0100592 return less ? 'suppressed' : 'suppressedmax';
Simon Hunt743a8492015-08-25 16:18:19 -0700593 }
594
595 function suppressLayers(b, less) {
596 var cls = supAmt(less);
597 node.classed(cls, b);
598 link.classed(cls, b);
599 }
600
601 function unsuppressNode(id, less) {
602 var cls = supAmt(less);
603 node.each(function (n) {
604 if (n.id === id) {
605 n.el.classed(cls, false);
606 }
607 });
608 }
609
Simon Hunt94f7dae2015-08-26 17:40:59 -0700610 function unsuppressLink(key, less) {
Simon Hunt743a8492015-08-25 16:18:19 -0700611 var cls = supAmt(less);
612 link.each(function (n) {
Simon Hunt94f7dae2015-08-26 17:40:59 -0700613 if (n.key === key) {
Simon Hunt743a8492015-08-25 16:18:19 -0700614 n.el.classed(cls, false);
615 }
616 });
Simon Hunta142dd22015-02-12 22:07:51 -0800617 }
Simon Hunt445e8152015-02-06 13:00:12 -0800618
Simon Hunt86b7c882015-04-02 23:06:08 -0700619 function showBadLinks() {
620 var badLinks = tms.findBadLinks();
Simon Hunte2d9dc72017-08-10 15:21:04 -0700621 flash.flash(topoLion('fl_bad_links') + ': ' + badLinks.length);
Simon Hunt86b7c882015-04-02 23:06:08 -0700622 $log.debug('Bad Link List (' + badLinks.length + '):');
623 badLinks.forEach(function (d) {
624 $log.debug('bad link: (' + d.bad + ') ' + d.key, d);
625 if (d.el) {
626 d.el.attr('stroke-width', linkScale(2.8))
627 .attr('stroke', 'red');
628 }
629 });
630 // back to normal after 2 seconds...
631 $timeout(updateLinks, 2000);
632 }
633
Thomas Vachuskac8c8f462021-03-01 11:22:56 -0800634 function deviceScale(scaleFactor) {
635 var scale = uplink.zoomer().scale() * scaleFactor,
Steven Burrowsf17f0ab2017-04-11 11:03:58 -0700636 dim = devIconDim,
637 multiplier = 1;
638
639 if (dim * scale < devIconDimMin) {
640 multiplier = devIconDimMin / (dim * scale);
641 } else if (dim * scale > devIconDimMax) {
642 multiplier = devIconDimMax / (dim * scale);
643 }
644
645 return multiplier;
646 }
647
Thomas Vachuskac8c8f462021-03-01 11:22:56 -0800648 function linkWidthScale() {
Steven Burrowsf17f0ab2017-04-11 11:03:58 -0700649 var scale = uplink.zoomer().scale();
650 return linkScale(widthRatio) / scale;
651 }
652
Thomas Vachuskac8c8f462021-03-01 11:22:56 -0800653 function portLabelScale() {
Steven Burrowsf17f0ab2017-04-11 11:03:58 -0700654 var scale = uplink.zoomer().scale();
655 return portLabelDim / (portLabelDim * scale);
656 }
657
Thomas Vachuskac8c8f462021-03-01 11:22:56 -0800658 function adjustNodeScale() {
Steven Burrowsf17f0ab2017-04-11 11:03:58 -0700659 // Scale the network nodes
660 _.each(network.nodes, function (node) {
661 if (node.class === 'host') {
Thomas Vachuskac8c8f462021-03-01 11:22:56 -0800662 node.el.selectAll('g').style('transform', 'scale(' + deviceScale(hostScaleFactor.icon) + ')');
663 node.el.selectAll('text').style('transform', 'scale(' + deviceScale(hostScaleFactor.text) + ')');
Steven Burrowsf17f0ab2017-04-11 11:03:58 -0700664 return;
665 }
Thomas Vachuskac8c8f462021-03-01 11:22:56 -0800666 node.el.selectAll('*').style('transform', 'scale(' + deviceScale(1.0) + ')');
Steven Burrowsf17f0ab2017-04-11 11:03:58 -0700667 });
668
669 // Scale the network links
670 _.each(network.links, function (link) {
Thomas Vachuskac8c8f462021-03-01 11:22:56 -0800671 link.el.style('stroke-width', linkWidthScale() + 'px');
Steven Burrowsf17f0ab2017-04-11 11:03:58 -0700672 });
673
674 d3.select('#topo-portLabels')
675 .selectAll('.portLabel')
676 .selectAll('*')
Thomas Vachuskac8c8f462021-03-01 11:22:56 -0800677 .style('transform', 'scale(' + portLabelScale() + ')');
678 }
679
680
681 function toggleScale(scale) {
682 if (scale < 0.5) {
683 return 1.0
684 }
685 return scale - 0.2;
686 }
687
688 function toggleHostTextSize() {
689 hostScaleFactor.text = toggleScale(hostScaleFactor.text);
690 adjustNodeScale();
691 }
692
693 function toggleHostIconSize() {
694 hostScaleFactor.icon = toggleScale(hostScaleFactor.icon);
695 adjustNodeScale();
Steven Burrowsf17f0ab2017-04-11 11:03:58 -0700696 }
697
Simon Huntfd7106c2016-02-09 15:05:26 -0800698 function resetAllLocations() {
699 tms.resetAllLocations();
700 updateNodes();
701 tick(); // force nodes to be redrawn in their new locations
Simon Hunte2d9dc72017-08-10 15:21:04 -0700702 flash.flash(topoLion('fl_reset_node_locations'));
Simon Huntfd7106c2016-02-09 15:05:26 -0800703 }
704
Simon Hunt5724fb42015-02-05 16:59:40 -0800705 // ==========================================
706
Simon Huntac4c6f72015-02-03 19:50:53 -0800707 function updateNodes() {
Thomas Vachuska1a989c12015-06-09 18:29:22 -0700708 if (fNodesTimer) {
709 $timeout.cancel(fNodesTimer);
710 }
711 fNodesTimer = $timeout(_updateNodes, 150);
712 }
713
Simon Hunta17fa672015-08-19 18:42:22 -0700714 // IMPLEMENTATION NOTE: _updateNodes() should NOT stop, start, or resume
715 // the force layout; that needs to be determined and implemented elsewhere
Thomas Vachuska1a989c12015-06-09 18:29:22 -0700716 function _updateNodes() {
Simon Hunt1894d792015-02-04 17:09:20 -0800717 // select all the nodes in the layout:
Simon Huntac4c6f72015-02-03 19:50:53 -0800718 node = nodeG.selectAll('.node')
719 .data(network.nodes, function (d) { return d.id; });
720
Simon Hunt1894d792015-02-04 17:09:20 -0800721 // operate on existing nodes:
Simon Hunta4242de2015-02-24 17:11:55 -0800722 node.filter('.device').each(td3.deviceExisting);
723 node.filter('.host').each(td3.hostExisting);
Simon Huntac4c6f72015-02-03 19:50:53 -0800724
725 // operate on entering nodes:
726 var entering = node.enter()
727 .append('g')
728 .attr({
729 id: function (d) { return sus.safeId(d.id); },
730 class: mkSvgClass,
Simon Hunta17fa672015-08-19 18:42:22 -0700731 transform: function (d) {
732 // Need to guard against NaN here ??
733 return sus.translate(d.x, d.y);
734 },
Steven Burrows1c2a9682017-07-14 16:52:46 +0100735 opacity: 0,
Simon Huntac4c6f72015-02-03 19:50:53 -0800736 })
737 .call(drag)
Simon Hunt08f841d02015-02-10 14:39:20 -0800738 .on('mouseover', tss.nodeMouseOver)
739 .on('mouseout', tss.nodeMouseOut)
Simon Huntac4c6f72015-02-03 19:50:53 -0800740 .transition()
741 .attr('opacity', 1);
742
Simon Hunt1894d792015-02-04 17:09:20 -0800743 // augment entering nodes:
Simon Hunta4242de2015-02-24 17:11:55 -0800744 entering.filter('.device').each(td3.deviceEnter);
745 entering.filter('.host').each(td3.hostEnter);
Simon Huntac4c6f72015-02-03 19:50:53 -0800746
Simon Hunt51056592015-02-03 21:48:07 -0800747 // operate on both existing and new nodes:
Simon Hunta4242de2015-02-24 17:11:55 -0800748 td3.updateDeviceColors();
Simon Huntac4c6f72015-02-03 19:50:53 -0800749
750 // operate on exiting nodes:
751 // Note that the node is removed after 2 seconds.
752 // Sub element animations should be shorter than 2 seconds.
753 var exiting = node.exit()
754 .transition()
755 .duration(2000)
756 .style('opacity', 0)
757 .remove();
758
Simon Hunt1894d792015-02-04 17:09:20 -0800759 // exiting node specifics:
Simon Hunta4242de2015-02-24 17:11:55 -0800760 exiting.filter('.host').each(td3.hostExit);
761 exiting.filter('.device').each(td3.deviceExit);
Thomas Vachuskac616e172018-04-17 16:57:12 -0700762 tick();
Simon Huntac4c6f72015-02-03 19:50:53 -0800763 }
764
Simon Hunt51056592015-02-03 21:48:07 -0800765 // ==========================
Simon Hunt1894d792015-02-04 17:09:20 -0800766
Bri Prebilic Cole038aedd2015-07-13 15:25:16 -0700767 function getDefaultPos(link) {
768 return {
769 x1: link.source.x,
770 y1: link.source.y,
771 x2: link.target.x,
Steven Burrows1c2a9682017-07-14 16:52:46 +0100772 y2: link.target.y,
Bri Prebilic Cole038aedd2015-07-13 15:25:16 -0700773 };
774 }
775
776 // returns amount of adjustment along the normal for given link
777 function amt(numLinks, linkIdx) {
778 var gap = 6;
779 return (linkIdx - ((numLinks - 1) / 2)) * gap;
780 }
781
782 function calcMovement(d, amt, flipped) {
783 var pos = getDefaultPos(d),
784 mult = flipped ? -amt : amt,
785 dx = pos.x2 - pos.x1,
786 dy = pos.y2 - pos.y1,
787 length = Math.sqrt((dx * dx) + (dy * dy));
788
789 return {
790 x1: pos.x1 + (mult * dy / length),
791 y1: pos.y1 + (mult * -dx / length),
792 x2: pos.x2 + (mult * dy / length),
Steven Burrows1c2a9682017-07-14 16:52:46 +0100793 y2: pos.y2 + (mult * -dx / length),
Bri Prebilic Cole038aedd2015-07-13 15:25:16 -0700794 };
795 }
796
797 function calcPosition() {
798 var lines = this,
799 linkSrcId;
Bri Prebilic Cole80401762015-07-16 11:36:18 -0700800 linkNums = [];
Bri Prebilic Cole038aedd2015-07-13 15:25:16 -0700801 lines.each(function (d) {
802 if (d.type() === 'hostLink') {
803 d.position = getDefaultPos(d);
804 }
805 });
806
807 function normalizeLinkSrc(link) {
808 // ensure source device is consistent across set of links
809 // temporary measure until link modeling is refactored
810 if (!linkSrcId) {
811 linkSrcId = link.source.id;
812 return false;
813 }
814
815 return link.source.id !== linkSrcId;
816 }
817
Bri Prebilic Cole80401762015-07-16 11:36:18 -0700818 angular.forEach(network.linksByDevice, function (linkArr, key) {
Bri Prebilic Cole038aedd2015-07-13 15:25:16 -0700819 var numLinks = linkArr.length,
820 link;
821
822 if (numLinks === 1) {
823 link = linkArr[0];
824 link.position = getDefaultPos(link);
Bri Prebilic Cole80401762015-07-16 11:36:18 -0700825 link.position.multiLink = false;
Bri Prebilic Cole038aedd2015-07-13 15:25:16 -0700826 } else if (numLinks >= 5) {
827 // this code is inefficient, in the future the way links
828 // are modeled will be changed
829 angular.forEach(linkArr, function (link) {
830 link.position = getDefaultPos(link);
831 link.position.multiLink = true;
832 });
Bri Prebilic Cole80401762015-07-16 11:36:18 -0700833 linkNums.push({
834 id: key,
835 num: numLinks,
Steven Burrows1c2a9682017-07-14 16:52:46 +0100836 linkCoords: linkArr[0].position,
Bri Prebilic Cole80401762015-07-16 11:36:18 -0700837 });
Bri Prebilic Cole038aedd2015-07-13 15:25:16 -0700838 } else {
Bri Prebilic Cole038aedd2015-07-13 15:25:16 -0700839 linkSrcId = null;
840 angular.forEach(linkArr, function (link, index) {
841 var offsetAmt = amt(numLinks, index),
842 needToFlip = normalizeLinkSrc(link);
843 link.position = calcMovement(link, offsetAmt, needToFlip);
Bri Prebilic Cole80401762015-07-16 11:36:18 -0700844 link.position.multiLink = false;
Bri Prebilic Cole038aedd2015-07-13 15:25:16 -0700845 });
846 }
847 });
848 }
849
Simon Hunt1894d792015-02-04 17:09:20 -0800850 function updateLinks() {
Thomas Vachuska1a989c12015-06-09 18:29:22 -0700851 if (fLinksTimer) {
852 $timeout.cancel(fLinksTimer);
853 }
854 fLinksTimer = $timeout(_updateLinks, 150);
855 }
856
Simon Hunta17fa672015-08-19 18:42:22 -0700857 // IMPLEMENTATION NOTE: _updateLinks() should NOT stop, start, or resume
858 // the force layout; that needs to be determined and implemented elsewhere
Thomas Vachuska1a989c12015-06-09 18:29:22 -0700859 function _updateLinks() {
Simon Hunt1894d792015-02-04 17:09:20 -0800860 var th = ts.theme();
861
862 link = linkG.selectAll('.link')
863 .data(network.links, function (d) { return d.key; });
864
865 // operate on existing links:
Simon Huntd5264122015-02-25 10:17:43 -0800866 link.each(function (d) {
867 // this is supposed to be an existing link, but we have observed
868 // occasions (where links are deleted and added rapidly?) where
869 // the DOM element has not been defined. So protect against that...
870 if (d.el) {
871 restyleLinkElement(d, true);
872 }
873 });
Simon Hunt1894d792015-02-04 17:09:20 -0800874
875 // operate on entering links:
876 var entering = link.enter()
877 .append('line')
Bri Prebilic Cole038aedd2015-07-13 15:25:16 -0700878 .call(calcPosition)
Simon Hunt1894d792015-02-04 17:09:20 -0800879 .attr({
Bri Prebilic Cole038aedd2015-07-13 15:25:16 -0700880 x1: function (d) { return d.position.x1; },
881 y1: function (d) { return d.position.y1; },
882 x2: function (d) { return d.position.x2; },
883 y2: function (d) { return d.position.y2; },
Simon Hunt1894d792015-02-04 17:09:20 -0800884 stroke: linkConfig[th].inColor,
Steven Burrows1c2a9682017-07-14 16:52:46 +0100885 'stroke-width': linkConfig.inWidth,
Simon Hunt1894d792015-02-04 17:09:20 -0800886 });
887
888 // augment links
Simon Hunta4242de2015-02-24 17:11:55 -0800889 entering.each(td3.linkEntering);
Simon Hunt1894d792015-02-04 17:09:20 -0800890
891 // operate on both existing and new links:
Steven Burrows1c2a9682017-07-14 16:52:46 +0100892 // link.each(...)
Simon Hunt1894d792015-02-04 17:09:20 -0800893
Bri Prebilic Cole80401762015-07-16 11:36:18 -0700894 // add labels for how many links are in a thick line
895 td3.applyNumLinkLabels(linkNums, numLinkLblsG);
896
Simon Hunt1894d792015-02-04 17:09:20 -0800897 // apply or remove labels
Simon Hunta4242de2015-02-24 17:11:55 -0800898 td3.applyLinkLabels();
Simon Hunt1894d792015-02-04 17:09:20 -0800899
900 // operate on exiting links:
901 link.exit()
902 .attr('stroke-dasharray', '3 3')
Simon Hunt5724fb42015-02-05 16:59:40 -0800903 .attr('stroke', linkConfig[th].outColor)
Simon Hunt1894d792015-02-04 17:09:20 -0800904 .style('opacity', 0.5)
905 .transition()
906 .duration(1500)
907 .attr({
908 'stroke-dasharray': '3 12',
Steven Burrows1c2a9682017-07-14 16:52:46 +0100909 'stroke-width': linkConfig.outWidth,
Simon Hunt1894d792015-02-04 17:09:20 -0800910 })
911 .style('opacity', 0.0)
912 .remove();
Simon Hunt1894d792015-02-04 17:09:20 -0800913 }
914
Simon Huntac4c6f72015-02-03 19:50:53 -0800915
916 // ==========================
Simon Hunt737c89f2015-01-28 12:23:19 -0800917 // force layout tick function
Simon Hunt737c89f2015-01-28 12:23:19 -0800918
Simon Hunt5724fb42015-02-05 16:59:40 -0800919 function fResume() {
Simon Huntc3c5b672015-02-20 11:32:13 -0800920 if (!tos.isOblique()) {
Simon Hunt5724fb42015-02-05 16:59:40 -0800921 force.resume();
922 }
923 }
924
925 function fStart() {
Simon Huntc3c5b672015-02-20 11:32:13 -0800926 if (!tos.isOblique()) {
Simon Hunta17fa672015-08-19 18:42:22 -0700927 if (fTimer) {
928 $timeout.cancel(fTimer);
929 }
930 fTimer = $timeout(function () {
Steven Burrows1c2a9682017-07-14 16:52:46 +0100931 $log.debug('Starting force-layout');
Simon Hunta17fa672015-08-19 18:42:22 -0700932 force.start();
933 }, 200);
Simon Hunt5724fb42015-02-05 16:59:40 -0800934 }
935 }
936
937 var tickStuff = {
938 nodeAttr: {
Simon Hunta17fa672015-08-19 18:42:22 -0700939 transform: function (d) {
940 var dx = isNaN(d.x) ? 0 : d.x,
941 dy = isNaN(d.y) ? 0 : d.y;
942 return sus.translate(dx, dy);
Steven Burrows1c2a9682017-07-14 16:52:46 +0100943 },
Simon Hunt5724fb42015-02-05 16:59:40 -0800944 },
945 linkAttr: {
Bri Prebilic Cole038aedd2015-07-13 15:25:16 -0700946 x1: function (d) { return d.position.x1; },
947 y1: function (d) { return d.position.y1; },
948 x2: function (d) { return d.position.x2; },
Steven Burrows1c2a9682017-07-14 16:52:46 +0100949 y2: function (d) { return d.position.y2; },
Simon Hunt5724fb42015-02-05 16:59:40 -0800950 },
951 linkLabelAttr: {
952 transform: function (d) {
Simon Huntdc6adea2015-02-09 22:29:36 -0800953 var lnk = tms.findLinkById(d.key);
Simon Hunt5724fb42015-02-05 16:59:40 -0800954 if (lnk) {
Carmelo Casconed01eda62016-08-02 10:19:15 -0700955 return td3.transformLabel(lnk.position, d.key);
Simon Hunt5724fb42015-02-05 16:59:40 -0800956 }
Steven Burrows1c2a9682017-07-14 16:52:46 +0100957 },
958 },
Simon Hunt5724fb42015-02-05 16:59:40 -0800959 };
960
961 function tick() {
Simon Hunt3ab20282015-02-26 20:32:19 -0800962 // guard against null (which can happen when our view pages out)...
Bri Prebilic Cole8d003782015-07-31 15:33:06 -0700963 if (node && node.size()) {
Bri Prebilic Coleaeeb33e2015-07-09 15:15:54 -0700964 node.attr(tickStuff.nodeAttr);
965 }
Bri Prebilic Cole8d003782015-07-31 15:33:06 -0700966 if (link && link.size()) {
Bri Prebilic Cole038aedd2015-07-13 15:25:16 -0700967 link.call(calcPosition)
968 .attr(tickStuff.linkAttr);
Bri Prebilic Cole80401762015-07-16 11:36:18 -0700969 td3.applyNumLinkLabels(linkNums, numLinkLblsG);
Bri Prebilic Coleaeeb33e2015-07-09 15:15:54 -0700970 }
Bri Prebilic Cole8d003782015-07-31 15:33:06 -0700971 if (linkLabel && linkLabel.size()) {
Bri Prebilic Coleaeeb33e2015-07-09 15:15:54 -0700972 linkLabel.attr(tickStuff.linkLabelAttr);
973 }
Simon Hunt737c89f2015-01-28 12:23:19 -0800974 }
975
976
Simon Huntac4c6f72015-02-03 19:50:53 -0800977 // ==========================
978 // === MOUSE GESTURE HANDLERS
979
Simon Hunt205099e2015-02-07 13:12:01 -0800980 function zoomingOrPanning(ev) {
981 return ev.metaKey || ev.altKey;
Simon Hunt445e8152015-02-06 13:00:12 -0800982 }
983
984 function atDragEnd(d) {
985 // once we've finished moving, pin the node in position
986 d.fixed = true;
987 d3.select(this).classed('fixed', true);
988 sendUpdateMeta(d);
Simon Hunt0c6b2d32015-03-26 17:46:29 -0700989 tss.clickConsumed(true);
Simon Hunt445e8152015-02-06 13:00:12 -0800990 }
991
992 // predicate that indicates when dragging is active
993 function dragEnabled() {
994 var ev = d3.event.sourceEvent;
995 // nodeLock means we aren't allowing nodes to be dragged...
Simon Hunt205099e2015-02-07 13:12:01 -0800996 return !nodeLock && !zoomingOrPanning(ev);
Simon Hunt445e8152015-02-06 13:00:12 -0800997 }
998
999 // predicate that indicates when clicking is active
1000 function clickEnabled() {
1001 return true;
1002 }
Simon Hunt737c89f2015-01-28 12:23:19 -08001003
Simon Hunt8d22c4b2015-08-06 16:24:43 -07001004 // =============================================
1005 // function entry points for overlay module
Simon Huntf542d842015-02-11 16:20:33 -08001006
Simon Hunt8d22c4b2015-08-06 16:24:43 -07001007 // TODO: find an automatic way of tracking via the "showHighlights" events
Simon Hunte50829c2015-06-09 08:39:28 -07001008 var allTrafficClasses = 'primary secondary optical animated ' +
Simon Hunt21281fd2017-03-30 22:28:28 -07001009 'port-traffic-green port-traffic-yellow port-traffic-orange ' +
1010 'port-traffic-red';
Simon Huntf542d842015-02-11 16:20:33 -08001011
1012 function clearLinkTrafficStyle() {
1013 link.style('stroke-width', null)
1014 .classed(allTrafficClasses, false);
1015 }
1016
1017 function removeLinkLabels() {
1018 network.links.forEach(function (d) {
1019 d.label = '';
1020 });
1021 }
Simon Hunt737c89f2015-01-28 12:23:19 -08001022
Simon Hunte9343f32015-10-21 18:07:46 -07001023 function clearNodeDeco() {
1024 node.selectAll('g.badge').remove();
1025 }
1026
1027 function removeNodeBadges() {
1028 network.nodes.forEach(function (d) {
1029 d.badge = null;
1030 });
1031 }
1032
Simon Hunta4242de2015-02-24 17:11:55 -08001033 function updateLinkLabelModel() {
1034 // create the backing data for showing labels..
1035 var data = [];
1036 link.each(function (d) {
1037 if (d.label) {
1038 data.push({
1039 id: 'lab-' + d.key,
1040 key: d.key,
1041 label: d.label,
Steven Burrows1c2a9682017-07-14 16:52:46 +01001042 ldata: d,
Simon Hunta4242de2015-02-24 17:11:55 -08001043 });
1044 }
1045 });
1046
1047 linkLabel = linkLabelG.selectAll('.linkLabel')
1048 .data(data, function (d) { return d.id; });
1049 }
1050
Simon Hunt737c89f2015-01-28 12:23:19 -08001051 // ==========================
Simon Huntac4c6f72015-02-03 19:50:53 -08001052 // Module definition
Simon Hunt737c89f2015-01-28 12:23:19 -08001053
Simon Huntdc6adea2015-02-09 22:29:36 -08001054 function mkModelApi(uplink) {
1055 return {
1056 projection: uplink.projection,
1057 network: network,
1058 restyleLinkElement: restyleLinkElement,
Steven Burrows1c2a9682017-07-14 16:52:46 +01001059 removeLinkElement: removeLinkElement,
Simon Huntdc6adea2015-02-09 22:29:36 -08001060 };
1061 }
1062
Simon Hunt8d22c4b2015-08-06 16:24:43 -07001063 function mkD3Api() {
Simon Hunta4242de2015-02-24 17:11:55 -08001064 return {
1065 node: function () { return node; },
1066 link: function () { return link; },
1067 linkLabel: function () { return linkLabel; },
1068 instVisible: function () { return tis.isVisible(); },
1069 posNode: tms.positionNode,
1070 showHosts: function () { return showHosts; },
1071 restyleLinkElement: restyleLinkElement,
Bri Prebilic Cole80401762015-07-16 11:36:18 -07001072 updateLinkLabelModel: updateLinkLabelModel,
Steven Burrowsf17f0ab2017-04-11 11:03:58 -07001073 linkConfig: function () { return linkConfig; },
1074 deviceScale: deviceScale,
Steven Burrows1c2a9682017-07-14 16:52:46 +01001075 linkWidthScale: linkWidthScale,
Bri Prebilic Coleaeeb33e2015-07-09 15:15:54 -07001076 };
Simon Hunta4242de2015-02-24 17:11:55 -08001077 }
1078
Simon Hunt8d22c4b2015-08-06 16:24:43 -07001079 function mkSelectApi() {
Simon Hunt08f841d02015-02-10 14:39:20 -08001080 return {
1081 node: function () { return node; },
1082 zoomingOrPanning: zoomingOrPanning,
Simon Hunt0c6b2d32015-03-26 17:46:29 -07001083 updateDeviceColors: td3.updateDeviceColors,
Steven Burrows1c2a9682017-07-14 16:52:46 +01001084 deselectAllLinks: tls.deselectAllLinks,
Simon Hunt08f841d02015-02-10 14:39:20 -08001085 };
1086 }
1087
Simon Hunt8d22c4b2015-08-06 16:24:43 -07001088 function mkTrafficApi() {
1089 return {
1090 hovered: tss.hovered,
1091 somethingSelected: tss.somethingSelected,
Steven Burrows1c2a9682017-07-14 16:52:46 +01001092 selectOrder: tss.selectOrder,
Simon Hunt8d22c4b2015-08-06 16:24:43 -07001093 };
1094 }
1095
1096 function mkOverlayApi() {
Simon Huntf542d842015-02-11 16:20:33 -08001097 return {
Simon Hunte9343f32015-10-21 18:07:46 -07001098 clearNodeDeco: clearNodeDeco,
1099 removeNodeBadges: removeNodeBadges,
Simon Huntf542d842015-02-11 16:20:33 -08001100 clearLinkTrafficStyle: clearLinkTrafficStyle,
1101 removeLinkLabels: removeLinkLabels,
Simon Hunt743a8492015-08-25 16:18:19 -07001102 findLinkById: tms.findLinkById,
Simon Hunt94f7dae2015-08-26 17:40:59 -07001103 findNodeById: nodeById,
Simon Huntf542d842015-02-11 16:20:33 -08001104 updateLinks: updateLinks,
Simon Hunt743a8492015-08-25 16:18:19 -07001105 updateNodes: updateNodes,
1106 supLayers: suppressLayers,
1107 unsupNode: unsuppressNode,
Steven Burrows1c2a9682017-07-14 16:52:46 +01001108 unsupLink: unsuppressLink,
Bri Prebilic Coleaeeb33e2015-07-09 15:15:54 -07001109 };
Simon Huntf542d842015-02-11 16:20:33 -08001110 }
1111
Simon Huntc3c5b672015-02-20 11:32:13 -08001112 function mkObliqueApi(uplink, fltr) {
Simon Hunt96f88c62015-02-19 17:57:25 -08001113 return {
Steven Burrows1c2a9682017-07-14 16:52:46 +01001114 force: function () { return force; },
Simon Huntc3c5b672015-02-20 11:32:13 -08001115 zoomLayer: uplink.zoomLayer,
Steven Burrows1c2a9682017-07-14 16:52:46 +01001116 nodeGBBox: function () { return nodeG.node().getBBox(); },
Simon Hunt96f88c62015-02-19 17:57:25 -08001117 node: function () { return node; },
Simon Huntc3c5b672015-02-20 11:32:13 -08001118 link: function () { return link; },
1119 linkLabel: function () { return linkLabel; },
1120 nodes: function () { return network.nodes; },
1121 tickStuff: tickStuff,
1122 nodeLock: function (b) {
1123 var old = nodeLock;
1124 nodeLock = b;
1125 return old;
1126 },
1127 opacifyMap: uplink.opacifyMap,
Bri Prebilic Cole038aedd2015-07-13 15:25:16 -07001128 inLayer: fltr.inLayer,
Bri Prebilic Cole80401762015-07-16 11:36:18 -07001129 calcLinkPos: calcPosition,
1130 applyNumLinkLabels: function () {
1131 td3.applyNumLinkLabels(linkNums, numLinkLblsG);
Steven Burrows1c2a9682017-07-14 16:52:46 +01001132 },
Simon Hunt96f88c62015-02-19 17:57:25 -08001133 };
1134 }
1135
Simon Hunt8d22c4b2015-08-06 16:24:43 -07001136 function mkFilterApi() {
Simon Hunteb0fa052015-02-17 19:20:28 -08001137 return {
1138 node: function () { return node; },
Steven Burrows1c2a9682017-07-14 16:52:46 +01001139 link: function () { return link; },
Simon Hunteb0fa052015-02-17 19:20:28 -08001140 };
1141 }
1142
Simon Hunt9e2104c2015-02-26 10:48:59 -08001143 function mkLinkApi(svg, uplink) {
Simon Huntfb8ea1f2015-02-24 21:38:09 -08001144 return {
1145 svg: svg,
Simon Huntfb8ea1f2015-02-24 21:38:09 -08001146 zoomer: uplink.zoomer(),
1147 network: network,
Simon Hunt1a5301e2015-02-25 15:31:25 -08001148 portLabelG: function () { return portLabelG; },
Steven Burrows1c2a9682017-07-14 16:52:46 +01001149 showHosts: function () { return showHosts; },
Simon Huntfb8ea1f2015-02-24 21:38:09 -08001150 };
1151 }
1152
Simon Huntf51bf462016-06-29 16:22:57 -07001153 function updateLinksAndNodes() {
1154 updateLinks();
1155 updateNodes();
1156 }
Steven Burrowsec1f45c2016-08-08 16:14:41 +01001157
Simon Hunte2d9dc72017-08-10 15:21:04 -07001158 // invoked after the localization bundle has been received from the server
1159 function setLionBundle(bundle) {
1160 topoLion = bundle;
1161 td3.setLionBundle(bundle);
1162 fltr.setLionBundle(bundle);
1163 tls.setLionBundle(bundle);
Simon Hunt1603c692017-08-10 19:53:35 -07001164 tos.setLionBundle(bundle);
1165 tov.setLionBundle(bundle);
Simon Huntcaed0412017-08-12 13:49:17 -07001166 tss.setLionBundle(bundle);
Simon Hunte2d9dc72017-08-10 15:21:04 -07001167 }
1168
Simon Hunt737c89f2015-01-28 12:23:19 -08001169 angular.module('ovTopo')
1170 .factory('TopoForceService',
Bri Prebilic Coleaeeb33e2015-07-09 15:15:54 -07001171 ['$log', '$timeout', 'FnService', 'SvgUtilService',
Simon Hunt86b7c882015-04-02 23:06:08 -07001172 'ThemeService', 'FlashService', 'WebSocketService',
Simon Hunt8d22c4b2015-08-06 16:24:43 -07001173 'TopoOverlayService', 'TopoInstService', 'TopoModelService',
Simon Hunta4242de2015-02-24 17:11:55 -08001174 'TopoD3Service', 'TopoSelectService', 'TopoTrafficService',
Simon Huntfb8ea1f2015-02-24 21:38:09 -08001175 'TopoObliqueService', 'TopoFilterService', 'TopoLinkService',
Andrea Campanella732ea832017-02-06 09:25:59 -08001176 'TopoProtectedIntentsService',
Simon Hunt737c89f2015-01-28 12:23:19 -08001177
Simon Hunt8d22c4b2015-08-06 16:24:43 -07001178 function (_$log_, _$timeout_, _fs_, _sus_, _ts_, _flash_, _wss_, _tov_,
Andrea Campanella732ea832017-02-06 09:25:59 -08001179 _tis_, _tms_, _td3_, _tss_, _tts_, _tos_, _fltr_, _tls_, _tpis_) {
Simon Hunt737c89f2015-01-28 12:23:19 -08001180 $log = _$log_;
Simon Hunt86b7c882015-04-02 23:06:08 -07001181 $timeout = _$timeout_;
Simon Hunt1894d792015-02-04 17:09:20 -08001182 fs = _fs_;
Simon Hunt737c89f2015-01-28 12:23:19 -08001183 sus = _sus_;
Simon Huntac4c6f72015-02-03 19:50:53 -08001184 ts = _ts_;
Simon Hunt5724fb42015-02-05 16:59:40 -08001185 flash = _flash_;
Simon Hunt237676b52015-03-10 19:04:26 -07001186 wss = _wss_;
Simon Hunt8d22c4b2015-08-06 16:24:43 -07001187 tov = _tov_;
Simon Huntac4c6f72015-02-03 19:50:53 -08001188 tis = _tis_;
Simon Hunt3a6eec02015-02-09 21:16:43 -08001189 tms = _tms_;
Simon Hunta4242de2015-02-24 17:11:55 -08001190 td3 = _td3_;
Simon Hunt08f841d02015-02-10 14:39:20 -08001191 tss = _tss_;
Simon Huntf542d842015-02-11 16:20:33 -08001192 tts = _tts_;
Simon Hunt96f88c62015-02-19 17:57:25 -08001193 tos = _tos_;
Simon Hunteb0fa052015-02-17 19:20:28 -08001194 fltr = _fltr_;
Simon Huntfb8ea1f2015-02-24 21:38:09 -08001195 tls = _tls_;
Andrea Campanella732ea832017-02-06 09:25:59 -08001196 tpis = _tpis_;
Simon Hunt737c89f2015-01-28 12:23:19 -08001197
Simon Huntf51bf462016-06-29 16:22:57 -07001198 ts.addListener(updateLinksAndNodes);
Simon Hunta142dd22015-02-12 22:07:51 -08001199
Simon Hunt737c89f2015-01-28 12:23:19 -08001200 // forceG is the SVG group to display the force layout in
Simon Huntdc6adea2015-02-09 22:29:36 -08001201 // uplink is the api from the main topo source file
Simon Hunt3a6eec02015-02-09 21:16:43 -08001202 // dim is the initial dimensions of the SVG as [w,h]
Simon Hunt737c89f2015-01-28 12:23:19 -08001203 // opts are, well, optional :)
Simon Hunt3ab20282015-02-26 20:32:19 -08001204 function initForce(_svg_, forceG, _uplink_, _dim_, opts) {
Simon Hunt1894d792015-02-04 17:09:20 -08001205 uplink = _uplink_;
Simon Hunt3a6eec02015-02-09 21:16:43 -08001206 dim = _dim_;
Simon Hunt3ab20282015-02-26 20:32:19 -08001207 svg = _svg_;
1208
1209 lu = network.lookup;
1210 rlk = network.revLinkToKey;
Simon Hunt3a6eec02015-02-09 21:16:43 -08001211
1212 $log.debug('initForce().. dim = ' + dim);
1213
Simon Hunt8d22c4b2015-08-06 16:24:43 -07001214 tov.setApi(mkOverlayApi(), tss);
Simon Huntdc6adea2015-02-09 22:29:36 -08001215 tms.initModel(mkModelApi(uplink), dim);
Steven Burrowsf17f0ab2017-04-11 11:03:58 -07001216 td3.initD3(mkD3Api(), uplink.zoomer());
Simon Hunt8d22c4b2015-08-06 16:24:43 -07001217 tss.initSelect(mkSelectApi());
1218 tts.initTraffic(mkTrafficApi());
Andrea Campanella732ea832017-02-06 09:25:59 -08001219 tpis.initProtectedIntents(mkTrafficApi());
Simon Huntc3c5b672015-02-20 11:32:13 -08001220 tos.initOblique(mkObliqueApi(uplink, fltr));
Simon Hunt8d22c4b2015-08-06 16:24:43 -07001221 fltr.initFilter(mkFilterApi());
Simon Hunt9e2104c2015-02-26 10:48:59 -08001222 tls.initLink(mkLinkApi(svg, uplink), td3);
Simon Hunta11b4eb2015-01-28 16:20:50 -08001223
Simon Hunt737c89f2015-01-28 12:23:19 -08001224 settings = angular.extend({}, defaultSettings, opts);
1225
1226 linkG = forceG.append('g').attr('id', 'topo-links');
1227 linkLabelG = forceG.append('g').attr('id', 'topo-linkLabels');
Bri Prebilic Cole80401762015-07-16 11:36:18 -07001228 numLinkLblsG = forceG.append('g').attr('id', 'topo-numLinkLabels');
Simon Hunt737c89f2015-01-28 12:23:19 -08001229 nodeG = forceG.append('g').attr('id', 'topo-nodes');
Simon Hunt1a5301e2015-02-25 15:31:25 -08001230 portLabelG = forceG.append('g').attr('id', 'topo-portLabels');
Simon Hunt737c89f2015-01-28 12:23:19 -08001231
1232 link = linkG.selectAll('.link');
1233 linkLabel = linkLabelG.selectAll('.linkLabel');
1234 node = nodeG.selectAll('.node');
1235
1236 force = d3.layout.force()
Simon Hunt3a6eec02015-02-09 21:16:43 -08001237 .size(dim)
Simon Hunt737c89f2015-01-28 12:23:19 -08001238 .nodes(network.nodes)
1239 .links(network.links)
1240 .gravity(settings.gravity)
1241 .friction(settings.friction)
1242 .charge(settings.charge._def_)
1243 .linkDistance(settings.linkDistance._def_)
1244 .linkStrength(settings.linkStrength._def_)
1245 .on('tick', tick);
1246
1247 drag = sus.createDragBehavior(force,
Simon Hunt08f841d02015-02-10 14:39:20 -08001248 tss.selectObject, atDragEnd, dragEnabled, clickEnabled);
Simon Hunt737c89f2015-01-28 12:23:19 -08001249 }
1250
Simon Hunt3a6eec02015-02-09 21:16:43 -08001251 function newDim(_dim_) {
1252 dim = _dim_;
1253 force.size(dim);
1254 tms.newDim(dim);
Simon Hunt737c89f2015-01-28 12:23:19 -08001255 }
1256
Simon Hunt3a6eec02015-02-09 21:16:43 -08001257 function destroyForce() {
Simon Hunt3ab20282015-02-26 20:32:19 -08001258 force.stop();
1259
Simon Huntfb8ea1f2015-02-24 21:38:09 -08001260 tls.destroyLink();
Simon Hunt96f88c62015-02-19 17:57:25 -08001261 tos.destroyOblique();
Simon Huntf542d842015-02-11 16:20:33 -08001262 tts.destroyTraffic();
Andrea Campanella732ea832017-02-06 09:25:59 -08001263 tpis.destroyProtectedIntents();
Simon Huntf542d842015-02-11 16:20:33 -08001264 tss.destroySelect();
Simon Hunta4242de2015-02-24 17:11:55 -08001265 td3.destroyD3();
Simon Huntf542d842015-02-11 16:20:33 -08001266 tms.destroyModel();
Simon Hunt8d22c4b2015-08-06 16:24:43 -07001267 // note: no need to destroy overlay service
Simon Huntf51bf462016-06-29 16:22:57 -07001268 ts.removeListener(updateLinksAndNodes);
Simon Hunt3ab20282015-02-26 20:32:19 -08001269
1270 // clean up the DOM
1271 svg.selectAll('g').remove();
1272 svg.selectAll('defs').remove();
1273
1274 // clean up internal state
1275 network.nodes = [];
1276 network.links = [];
Bri Prebilic Coleaeeb33e2015-07-09 15:15:54 -07001277 network.linksByDevice = {};
Simon Hunt3ab20282015-02-26 20:32:19 -08001278 network.lookup = {};
1279 network.revLinkToKey = {};
1280
Bri Prebilic Cole80401762015-07-16 11:36:18 -07001281 linkNums = [];
1282
1283 linkG = linkLabelG = numLinkLblsG = nodeG = portLabelG = null;
Simon Hunt3ab20282015-02-26 20:32:19 -08001284 link = linkLabel = node = null;
1285 force = drag = null;
Bri Prebilic Coleaeeb33e2015-07-09 15:15:54 -07001286
1287 // clean up $timeout promises
Simon Hunta17fa672015-08-19 18:42:22 -07001288 if (fTimer) {
1289 $timeout.cancel(fTimer);
1290 }
Bri Prebilic Coleaeeb33e2015-07-09 15:15:54 -07001291 if (fNodesTimer) {
1292 $timeout.cancel(fNodesTimer);
1293 }
1294 if (fLinksTimer) {
1295 $timeout.cancel(fLinksTimer);
1296 }
Simon Hunt3a6eec02015-02-09 21:16:43 -08001297 }
1298
Simon Hunt737c89f2015-01-28 12:23:19 -08001299 return {
1300 initForce: initForce,
Simon Hunt3a6eec02015-02-09 21:16:43 -08001301 newDim: newDim,
1302 destroyForce: destroyForce,
Simon Huntac4c6f72015-02-03 19:50:53 -08001303
Simon Hunta4242de2015-02-24 17:11:55 -08001304 updateDeviceColors: td3.updateDeviceColors,
Simon Hunt5724fb42015-02-05 16:59:40 -08001305 toggleHosts: toggleHosts,
Simon Hunt9e2104c2015-02-26 10:48:59 -08001306 togglePorts: tls.togglePorts,
Simon Hunt5724fb42015-02-05 16:59:40 -08001307 toggleOffline: toggleOffline,
1308 cycleDeviceLabels: cycleDeviceLabels,
Simon Hunt10618f62017-06-15 19:30:52 -07001309 cycleHostLabels: cycleHostLabels,
Thomas Vachuskaa4eac6a2021-03-01 15:11:59 -08001310 cycleLinkLabels: cycleLinkLabels,
Simon Hunt445e8152015-02-06 13:00:12 -08001311 unpin: unpin,
Simon Hunta142dd22015-02-12 22:07:51 -08001312 showMastership: showMastership,
Simon Hunt86b7c882015-04-02 23:06:08 -07001313 showBadLinks: showBadLinks,
Thomas Vachuskac8c8f462021-03-01 11:22:56 -08001314 adjustNodeScale: adjustNodeScale,
1315
1316 toggleHostTextSize: toggleHostTextSize,
1317 toggleHostIconSize: toggleHostIconSize,
Simon Huntac4c6f72015-02-03 19:50:53 -08001318
Simon Huntfd7106c2016-02-09 15:05:26 -08001319 resetAllLocations: resetAllLocations,
Simon Huntac4c6f72015-02-03 19:50:53 -08001320 addDevice: addDevice,
Simon Hunt1894d792015-02-04 17:09:20 -08001321 updateDevice: updateDevice,
1322 removeDevice: removeDevice,
1323 addHost: addHost,
1324 updateHost: updateHost,
Simon Hunt95d56fd2015-11-12 11:06:44 -08001325 moveHost: moveHost,
Simon Hunt1894d792015-02-04 17:09:20 -08001326 removeHost: removeHost,
1327 addLink: addLink,
1328 updateLink: updateLink,
Simon Hunt4a6b54b2015-10-27 22:08:25 -07001329 removeLink: removeLink,
Steven Burrows1c2a9682017-07-14 16:52:46 +01001330 topoStartDone: topoStartDone,
Simon Hunte2d9dc72017-08-10 15:21:04 -07001331
1332 setLionBundle: setLionBundle,
Simon Hunt737c89f2015-01-28 12:23:19 -08001333 };
1334 }]);
1335}());