blob: 7910ee008318701199f95adb429dead387652b5b [file] [log] [blame]
Simon Hunt737c89f2015-01-28 12:23:19 -08001/*
2 * Copyright 2015 Open Networking Laboratory
3 *
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 Hunt86b7c882015-04-02 23:06:08 -070026 var $log, $timeout, fs, sus, is, ts, flash, wss,
Simon Hunt237676b52015-03-10 19:04:26 -070027 tis, tms, td3, tss, tts, tos, fltr, tls,
Simon Hunt3ab20282015-02-26 20:32:19 -080028 icfg, uplink, svg;
Simon Huntac4c6f72015-02-03 19:50:53 -080029
30 // configuration
Simon Hunt1894d792015-02-04 17:09:20 -080031 var linkConfig = {
32 light: {
33 baseColor: '#666',
34 inColor: '#66f',
Simon Hunt3a6eec02015-02-09 21:16:43 -080035 outColor: '#f00'
Simon Hunt1894d792015-02-04 17:09:20 -080036 },
37 dark: {
Simon Hunt5724fb42015-02-05 16:59:40 -080038 baseColor: '#aaa',
Simon Hunt1894d792015-02-04 17:09:20 -080039 inColor: '#66f',
Simon Hunt5724fb42015-02-05 16:59:40 -080040 outColor: '#f66'
Simon Hunt1894d792015-02-04 17:09:20 -080041 },
42 inWidth: 12,
43 outWidth: 10
44 };
45
Simon Hunt737c89f2015-01-28 12:23:19 -080046 // internal state
Simon Huntac4c6f72015-02-03 19:50:53 -080047 var settings, // merged default settings and options
Simon Hunt737c89f2015-01-28 12:23:19 -080048 force, // force layout object
49 drag, // drag behavior handler
50 network = {
51 nodes: [],
52 links: [],
53 lookup: {},
54 revLinkToKey: {}
Simon Huntac4c6f72015-02-03 19:50:53 -080055 },
Simon Hunt3ab20282015-02-26 20:32:19 -080056 lu, // shorthand for lookup
57 rlk, // shorthand for revLinktoKey
Simon Hunta142dd22015-02-12 22:07:51 -080058 showHosts = false, // whether hosts are displayed
Simon Hunt5724fb42015-02-05 16:59:40 -080059 showOffline = true, // whether offline devices are displayed
Simon Hunt445e8152015-02-06 13:00:12 -080060 nodeLock = false, // whether nodes can be dragged or not (locked)
Simon Hunt08f841d02015-02-10 14:39:20 -080061 dim; // the dimensions of the force layout [w,h]
Simon Hunt737c89f2015-01-28 12:23:19 -080062
63 // SVG elements;
Simon Hunt1a5301e2015-02-25 15:31:25 -080064 var linkG, linkLabelG, portLabelG, nodeG;
Simon Hunt737c89f2015-01-28 12:23:19 -080065
66 // D3 selections;
67 var link, linkLabel, node;
68
69 // default settings for force layout
70 var defaultSettings = {
71 gravity: 0.4,
72 friction: 0.7,
73 charge: {
74 // note: key is node.class
75 device: -8000,
76 host: -5000,
77 _def_: -12000
78 },
79 linkDistance: {
80 // note: key is link.type
81 direct: 100,
82 optical: 120,
83 hostLink: 3,
84 _def_: 50
85 },
86 linkStrength: {
87 // note: key is link.type
88 // range: {0.0 ... 1.0}
89 //direct: 1.0,
90 //optical: 1.0,
91 //hostLink: 1.0,
92 _def_: 1.0
93 }
94 };
95
96
Simon Huntac4c6f72015-02-03 19:50:53 -080097 // ==========================
98 // === EVENT HANDLERS
99
100 function addDevice(data) {
101 var id = data.id,
102 d;
103
Simon Hunt1894d792015-02-04 17:09:20 -0800104 uplink.showNoDevs(false);
Simon Huntac4c6f72015-02-03 19:50:53 -0800105
106 // although this is an add device event, if we already have the
107 // device, treat it as an update instead..
Simon Hunt1894d792015-02-04 17:09:20 -0800108 if (lu[id]) {
Simon Huntac4c6f72015-02-03 19:50:53 -0800109 updateDevice(data);
110 return;
111 }
112
Simon Hunt3a6eec02015-02-09 21:16:43 -0800113 d = tms.createDeviceNode(data);
Simon Huntac4c6f72015-02-03 19:50:53 -0800114 network.nodes.push(d);
Simon Hunt1894d792015-02-04 17:09:20 -0800115 lu[id] = d;
Simon Huntac4c6f72015-02-03 19:50:53 -0800116 updateNodes();
117 fStart();
118 }
119
120 function updateDevice(data) {
121 var id = data.id,
Simon Hunt1894d792015-02-04 17:09:20 -0800122 d = lu[id],
Simon Huntac4c6f72015-02-03 19:50:53 -0800123 wasOnline;
124
125 if (d) {
126 wasOnline = d.online;
127 angular.extend(d, data);
Simon Hunt3a6eec02015-02-09 21:16:43 -0800128 if (tms.positionNode(d, true)) {
Simon Hunt445e8152015-02-06 13:00:12 -0800129 sendUpdateMeta(d);
Simon Huntac4c6f72015-02-03 19:50:53 -0800130 }
131 updateNodes();
132 if (wasOnline !== d.online) {
Simon Huntdc6adea2015-02-09 22:29:36 -0800133 tms.findAttachedLinks(d.id).forEach(restyleLinkElement);
Simon Hunt5724fb42015-02-05 16:59:40 -0800134 updateOfflineVisibility(d);
Simon Huntac4c6f72015-02-03 19:50:53 -0800135 }
Simon Huntac4c6f72015-02-03 19:50:53 -0800136 }
137 }
138
Simon Hunt1894d792015-02-04 17:09:20 -0800139 function removeDevice(data) {
140 var id = data.id,
141 d = lu[id];
142 if (d) {
143 removeDeviceElement(d);
Simon Hunt1894d792015-02-04 17:09:20 -0800144 }
145 }
146
147 function addHost(data) {
148 var id = data.id,
149 d, lnk;
150
151 // although this is an add host event, if we already have the
152 // host, treat it as an update instead..
153 if (lu[id]) {
154 updateHost(data);
155 return;
156 }
157
Simon Hunt3a6eec02015-02-09 21:16:43 -0800158 d = tms.createHostNode(data);
Simon Hunt1894d792015-02-04 17:09:20 -0800159 network.nodes.push(d);
160 lu[id] = d;
Simon Hunt1894d792015-02-04 17:09:20 -0800161 updateNodes();
162
Simon Hunt3a6eec02015-02-09 21:16:43 -0800163 lnk = tms.createHostLink(data);
Simon Hunt1894d792015-02-04 17:09:20 -0800164 if (lnk) {
Simon Hunt1894d792015-02-04 17:09:20 -0800165 d.linkData = lnk; // cache ref on its host
166 network.links.push(lnk);
167 lu[d.ingress] = lnk;
168 lu[d.egress] = lnk;
169 updateLinks();
170 }
171
172 fStart();
173 }
174
175 function updateHost(data) {
176 var id = data.id,
177 d = lu[id];
178 if (d) {
179 angular.extend(d, data);
Simon Hunt3a6eec02015-02-09 21:16:43 -0800180 if (tms.positionNode(d, true)) {
Simon Hunt445e8152015-02-06 13:00:12 -0800181 sendUpdateMeta(d);
Simon Hunt1894d792015-02-04 17:09:20 -0800182 }
183 updateNodes();
Simon Hunt1894d792015-02-04 17:09:20 -0800184 }
185 }
186
187 function removeHost(data) {
188 var id = data.id,
189 d = lu[id];
190 if (d) {
191 removeHostElement(d, true);
Simon Hunt1894d792015-02-04 17:09:20 -0800192 }
193 }
194
195 function addLink(data) {
Simon Huntdc6adea2015-02-09 22:29:36 -0800196 var result = tms.findLink(data, 'add'),
Simon Hunt1894d792015-02-04 17:09:20 -0800197 bad = result.badLogic,
198 d = result.ldata;
199
200 if (bad) {
201 //logicError(bad + ': ' + link.id);
202 return;
203 }
204
205 if (d) {
206 // we already have a backing store link for src/dst nodes
207 addLinkUpdate(d, data);
208 return;
209 }
210
211 // no backing store link yet
Simon Hunt3a6eec02015-02-09 21:16:43 -0800212 d = tms.createLink(data);
Simon Hunt1894d792015-02-04 17:09:20 -0800213 if (d) {
214 network.links.push(d);
215 lu[d.key] = d;
216 updateLinks();
217 fStart();
218 }
219 }
220
221 function updateLink(data) {
Simon Huntdc6adea2015-02-09 22:29:36 -0800222 var result = tms.findLink(data, 'update'),
Simon Hunt1894d792015-02-04 17:09:20 -0800223 bad = result.badLogic;
224 if (bad) {
225 //logicError(bad + ': ' + link.id);
226 return;
227 }
228 result.updateWith(link);
229 }
230
231 function removeLink(data) {
Simon Hunta4242de2015-02-24 17:11:55 -0800232 var result = tms.findLink(data, 'remove');
233
234 if (!result.badLogic) {
235 result.removeRawLink();
Simon Hunt1894d792015-02-04 17:09:20 -0800236 }
Simon Hunt1894d792015-02-04 17:09:20 -0800237 }
238
239 // ========================
240
241 function addLinkUpdate(ldata, link) {
242 // add link event, but we already have the reverse link installed
243 ldata.fromTarget = link;
Simon Huntdc6adea2015-02-09 22:29:36 -0800244 rlk[link.id] = ldata.key;
Simon Hunt1894d792015-02-04 17:09:20 -0800245 restyleLinkElement(ldata);
246 }
247
Simon Hunt1894d792015-02-04 17:09:20 -0800248
249 var widthRatio = 1.4,
250 linkScale = d3.scale.linear()
251 .domain([1, 12])
252 .range([widthRatio, 12 * widthRatio])
Simon Hunt5724fb42015-02-05 16:59:40 -0800253 .clamp(true),
Simon Hunt3a6eec02015-02-09 21:16:43 -0800254 allLinkTypes = 'direct indirect optical tunnel';
Simon Hunt1894d792015-02-04 17:09:20 -0800255
Simon Hunta142dd22015-02-12 22:07:51 -0800256 function restyleLinkElement(ldata, immediate) {
Simon Hunt1894d792015-02-04 17:09:20 -0800257 // this fn's job is to look at raw links and decide what svg classes
258 // need to be applied to the line element in the DOM
259 var th = ts.theme(),
260 el = ldata.el,
261 type = ldata.type(),
262 lw = ldata.linkWidth(),
Simon Hunta142dd22015-02-12 22:07:51 -0800263 online = ldata.online(),
264 delay = immediate ? 0 : 1000;
Simon Hunt1894d792015-02-04 17:09:20 -0800265
Simon Hunt86b7c882015-04-02 23:06:08 -0700266 // TODO: understand why el is sometimes undefined on addLink events...
Simon Hunt1894d792015-02-04 17:09:20 -0800267 el.classed('link', true);
268 el.classed('inactive', !online);
269 el.classed(allLinkTypes, false);
270 if (type) {
271 el.classed(type, true);
272 }
273 el.transition()
Simon Hunta142dd22015-02-12 22:07:51 -0800274 .duration(delay)
Simon Hunt1894d792015-02-04 17:09:20 -0800275 .attr('stroke-width', linkScale(lw))
276 .attr('stroke', linkConfig[th].baseColor);
277 }
278
Simon Hunt1894d792015-02-04 17:09:20 -0800279 function removeLinkElement(d) {
280 var idx = fs.find(d.key, network.links, 'key'),
281 removed;
282 if (idx >=0) {
283 // remove from links array
284 removed = network.links.splice(idx, 1);
285 // remove from lookup cache
286 delete lu[removed[0].key];
287 updateLinks();
288 fResume();
289 }
290 }
291
292 function removeHostElement(d, upd) {
293 // first, remove associated hostLink...
294 removeLinkElement(d.linkData);
295
296 // remove hostLink bindings
297 delete lu[d.ingress];
298 delete lu[d.egress];
299
300 // remove from lookup cache
301 delete lu[d.id];
302 // remove from nodes array
303 var idx = fs.find(d.id, network.nodes);
304 network.nodes.splice(idx, 1);
305
306 // remove from SVG
307 // NOTE: upd is false if we were called from removeDeviceElement()
308 if (upd) {
309 updateNodes();
310 fResume();
311 }
312 }
313
314 function removeDeviceElement(d) {
315 var id = d.id;
316 // first, remove associated hosts and links..
Simon Huntdc6adea2015-02-09 22:29:36 -0800317 tms.findAttachedHosts(id).forEach(removeHostElement);
318 tms.findAttachedLinks(id).forEach(removeLinkElement);
Simon Hunt1894d792015-02-04 17:09:20 -0800319
320 // remove from lookup cache
321 delete lu[id];
322 // remove from nodes array
323 var idx = fs.find(id, network.nodes);
324 network.nodes.splice(idx, 1);
325
326 if (!network.nodes.length) {
Simon Huntdc6adea2015-02-09 22:29:36 -0800327 uplink.showNoDevs(true);
Simon Hunt1894d792015-02-04 17:09:20 -0800328 }
329
330 // remove from SVG
331 updateNodes();
332 fResume();
333 }
334
Simon Hunt5724fb42015-02-05 16:59:40 -0800335 function updateHostVisibility() {
Simon Hunt18bf9822015-02-12 17:35:45 -0800336 sus.visible(nodeG.selectAll('.host'), showHosts);
337 sus.visible(linkG.selectAll('.hostLink'), showHosts);
Simon Hunt8eb4d3a2015-02-23 18:23:29 -0800338 sus.visible(linkLabelG.selectAll('.hostLinkLabel'), showHosts);
Simon Hunt5724fb42015-02-05 16:59:40 -0800339 }
340
341 function updateOfflineVisibility(dev) {
342 function updDev(d, show) {
Simon Hunt8eb4d3a2015-02-23 18:23:29 -0800343 var b;
Simon Hunt18bf9822015-02-12 17:35:45 -0800344 sus.visible(d.el, show);
Simon Hunt5724fb42015-02-05 16:59:40 -0800345
Simon Huntdc6adea2015-02-09 22:29:36 -0800346 tms.findAttachedLinks(d.id).forEach(function (link) {
Simon Hunt5724fb42015-02-05 16:59:40 -0800347 b = show && ((link.type() !== 'hostLink') || showHosts);
Simon Hunt18bf9822015-02-12 17:35:45 -0800348 sus.visible(link.el, b);
Simon Hunt5724fb42015-02-05 16:59:40 -0800349 });
Simon Huntdc6adea2015-02-09 22:29:36 -0800350 tms.findAttachedHosts(d.id).forEach(function (host) {
Simon Hunt5724fb42015-02-05 16:59:40 -0800351 b = show && showHosts;
Simon Hunt18bf9822015-02-12 17:35:45 -0800352 sus.visible(host.el, b);
Simon Hunt5724fb42015-02-05 16:59:40 -0800353 });
354 }
355
356 if (dev) {
357 // updating a specific device that just toggled off/on-line
358 updDev(dev, dev.online || showOffline);
359 } else {
360 // updating all offline devices
Simon Huntdc6adea2015-02-09 22:29:36 -0800361 tms.findDevices(true).forEach(function (d) {
Simon Hunt5724fb42015-02-05 16:59:40 -0800362 updDev(d, showOffline);
363 });
364 }
365 }
366
Simon Hunt1894d792015-02-04 17:09:20 -0800367
Simon Hunt445e8152015-02-06 13:00:12 -0800368 function sendUpdateMeta(d, clearPos) {
Simon Huntac4c6f72015-02-03 19:50:53 -0800369 var metaUi = {},
370 ll;
371
Simon Hunt445e8152015-02-06 13:00:12 -0800372 // if we are not clearing the position data (unpinning),
373 // attach the x, y, longitude, latitude...
374 if (!clearPos) {
Simon Hunt3a6eec02015-02-09 21:16:43 -0800375 ll = tms.lngLatFromCoord([d.x, d.y]);
Simon Huntdc6adea2015-02-09 22:29:36 -0800376 metaUi = {x: d.x, y: d.y, lng: ll[0], lat: ll[1]};
Simon Hunt1894d792015-02-04 17:09:20 -0800377 }
378 d.metaUi = metaUi;
Simon Hunt237676b52015-03-10 19:04:26 -0700379 wss.sendEvent('updateMeta', {
Simon Hunt1894d792015-02-04 17:09:20 -0800380 id: d.id,
381 'class': d.class,
382 memento: metaUi
383 });
Simon Huntac4c6f72015-02-03 19:50:53 -0800384 }
385
Simon Hunt1894d792015-02-04 17:09:20 -0800386
Simon Huntac4c6f72015-02-03 19:50:53 -0800387 function mkSvgClass(d) {
388 return d.fixed ? d.svgClass + ' fixed' : d.svgClass;
389 }
390
Simon Hunt5724fb42015-02-05 16:59:40 -0800391 function vis(b) {
392 return b ? 'visible' : 'hidden';
393 }
394
Simon Huntfcbde892015-04-16 12:05:28 -0700395 function toggleHosts(x) {
396 var kev = (x === 'keyev'),
397 on = kev ? !showHosts : !!x;
398
399 showHosts = on;
Simon Hunt5724fb42015-02-05 16:59:40 -0800400 updateHostVisibility();
Simon Huntfcbde892015-04-16 12:05:28 -0700401 flash.flash('Hosts ' + vis(on));
402 return on;
Simon Hunt5724fb42015-02-05 16:59:40 -0800403 }
404
Simon Huntfcbde892015-04-16 12:05:28 -0700405 function toggleOffline(x) {
406 var kev = (x === 'keyev'),
407 on = kev ? !showOffline : !!x;
408
409 showOffline = on;
Simon Hunt5724fb42015-02-05 16:59:40 -0800410 updateOfflineVisibility();
Simon Huntfcbde892015-04-16 12:05:28 -0700411 flash.flash('Offline devices ' + vis(on));
412 return on;
Simon Hunt5724fb42015-02-05 16:59:40 -0800413 }
414
415 function cycleDeviceLabels() {
Bri Prebilic Cole9cf1a8d2015-04-21 13:15:29 -0700416 flash.flash(td3.incDevLabIndex());
Simon Huntdc6adea2015-02-09 22:29:36 -0800417 tms.findDevices().forEach(function (d) {
Simon Hunta4242de2015-02-24 17:11:55 -0800418 td3.updateDeviceLabel(d);
Simon Hunt1c367112015-02-05 18:02:46 -0800419 });
Simon Hunt5724fb42015-02-05 16:59:40 -0800420 }
421
Simon Hunt445e8152015-02-06 13:00:12 -0800422 function unpin() {
Simon Hunt08f841d02015-02-10 14:39:20 -0800423 var hov = tss.hovered();
424 if (hov) {
425 sendUpdateMeta(hov, true);
426 hov.fixed = false;
427 hov.el.classed('fixed', false);
Simon Hunt445e8152015-02-06 13:00:12 -0800428 fResume();
429 }
430 }
431
Simon Hunta142dd22015-02-12 22:07:51 -0800432 function showMastership(masterId) {
433 if (!masterId) {
434 restoreLayerState();
435 } else {
436 showMastershipFor(masterId);
437 }
438 }
439
440 function restoreLayerState() {
441 // NOTE: this level of indirection required, for when we have
442 // the layer filter functionality re-implemented
443 suppressLayers(false);
444 }
445
446 function showMastershipFor(id) {
447 suppressLayers(true);
448 node.each(function (n) {
449 if (n.master === id) {
450 n.el.classed('suppressed', false);
451 }
452 });
453 }
454
455 function suppressLayers(b) {
456 node.classed('suppressed', b);
457 link.classed('suppressed', b);
458// d3.selectAll('svg .port').classed('inactive', b);
459// d3.selectAll('svg .portText').classed('inactive', b);
460 }
Simon Hunt445e8152015-02-06 13:00:12 -0800461
Simon Hunt86b7c882015-04-02 23:06:08 -0700462 function showBadLinks() {
463 var badLinks = tms.findBadLinks();
464 flash.flash('Bad Links: ' + badLinks.length);
465 $log.debug('Bad Link List (' + badLinks.length + '):');
466 badLinks.forEach(function (d) {
467 $log.debug('bad link: (' + d.bad + ') ' + d.key, d);
468 if (d.el) {
469 d.el.attr('stroke-width', linkScale(2.8))
470 .attr('stroke', 'red');
471 }
472 });
473 // back to normal after 2 seconds...
474 $timeout(updateLinks, 2000);
475 }
476
Simon Hunt5724fb42015-02-05 16:59:40 -0800477 // ==========================================
478
Simon Huntac4c6f72015-02-03 19:50:53 -0800479 function updateNodes() {
Simon Hunt1894d792015-02-04 17:09:20 -0800480 // select all the nodes in the layout:
Simon Huntac4c6f72015-02-03 19:50:53 -0800481 node = nodeG.selectAll('.node')
482 .data(network.nodes, function (d) { return d.id; });
483
Simon Hunt1894d792015-02-04 17:09:20 -0800484 // operate on existing nodes:
Simon Hunta4242de2015-02-24 17:11:55 -0800485 node.filter('.device').each(td3.deviceExisting);
486 node.filter('.host').each(td3.hostExisting);
Simon Huntac4c6f72015-02-03 19:50:53 -0800487
488 // operate on entering nodes:
489 var entering = node.enter()
490 .append('g')
491 .attr({
492 id: function (d) { return sus.safeId(d.id); },
493 class: mkSvgClass,
494 transform: function (d) { return sus.translate(d.x, d.y); },
495 opacity: 0
496 })
497 .call(drag)
Simon Hunt08f841d02015-02-10 14:39:20 -0800498 .on('mouseover', tss.nodeMouseOver)
499 .on('mouseout', tss.nodeMouseOut)
Simon Huntac4c6f72015-02-03 19:50:53 -0800500 .transition()
501 .attr('opacity', 1);
502
Simon Hunt1894d792015-02-04 17:09:20 -0800503 // augment entering nodes:
Simon Hunta4242de2015-02-24 17:11:55 -0800504 entering.filter('.device').each(td3.deviceEnter);
505 entering.filter('.host').each(td3.hostEnter);
Simon Huntac4c6f72015-02-03 19:50:53 -0800506
Simon Hunt51056592015-02-03 21:48:07 -0800507 // operate on both existing and new nodes:
Simon Hunta4242de2015-02-24 17:11:55 -0800508 td3.updateDeviceColors();
Simon Huntac4c6f72015-02-03 19:50:53 -0800509
510 // operate on exiting nodes:
511 // Note that the node is removed after 2 seconds.
512 // Sub element animations should be shorter than 2 seconds.
513 var exiting = node.exit()
514 .transition()
515 .duration(2000)
516 .style('opacity', 0)
517 .remove();
518
Simon Hunt1894d792015-02-04 17:09:20 -0800519 // exiting node specifics:
Simon Hunta4242de2015-02-24 17:11:55 -0800520 exiting.filter('.host').each(td3.hostExit);
521 exiting.filter('.device').each(td3.deviceExit);
Simon Huntac4c6f72015-02-03 19:50:53 -0800522 }
523
Simon Hunt51056592015-02-03 21:48:07 -0800524 // ==========================
Simon Hunt1894d792015-02-04 17:09:20 -0800525
526 function updateLinks() {
527 var th = ts.theme();
528
529 link = linkG.selectAll('.link')
530 .data(network.links, function (d) { return d.key; });
531
532 // operate on existing links:
Simon Huntd5264122015-02-25 10:17:43 -0800533 link.each(function (d) {
534 // this is supposed to be an existing link, but we have observed
535 // occasions (where links are deleted and added rapidly?) where
536 // the DOM element has not been defined. So protect against that...
537 if (d.el) {
538 restyleLinkElement(d, true);
539 }
540 });
Simon Hunt1894d792015-02-04 17:09:20 -0800541
542 // operate on entering links:
543 var entering = link.enter()
544 .append('line')
545 .attr({
Simon Huntd5264122015-02-25 10:17:43 -0800546 x1: function (d) { return d.source.x; },
547 y1: function (d) { return d.source.y; },
548 x2: function (d) { return d.target.x; },
549 y2: function (d) { return d.target.y; },
Simon Hunt1894d792015-02-04 17:09:20 -0800550 stroke: linkConfig[th].inColor,
551 'stroke-width': linkConfig.inWidth
552 });
553
554 // augment links
Simon Hunta4242de2015-02-24 17:11:55 -0800555 entering.each(td3.linkEntering);
Simon Hunt1894d792015-02-04 17:09:20 -0800556
557 // operate on both existing and new links:
558 //link.each(...)
559
560 // apply or remove labels
Simon Hunta4242de2015-02-24 17:11:55 -0800561 td3.applyLinkLabels();
Simon Hunt1894d792015-02-04 17:09:20 -0800562
563 // operate on exiting links:
564 link.exit()
565 .attr('stroke-dasharray', '3 3')
Simon Hunt5724fb42015-02-05 16:59:40 -0800566 .attr('stroke', linkConfig[th].outColor)
Simon Hunt1894d792015-02-04 17:09:20 -0800567 .style('opacity', 0.5)
568 .transition()
569 .duration(1500)
570 .attr({
571 'stroke-dasharray': '3 12',
Simon Hunt1894d792015-02-04 17:09:20 -0800572 'stroke-width': linkConfig.outWidth
573 })
574 .style('opacity', 0.0)
575 .remove();
Simon Hunt1894d792015-02-04 17:09:20 -0800576 }
577
Simon Huntac4c6f72015-02-03 19:50:53 -0800578
579 // ==========================
Simon Hunt737c89f2015-01-28 12:23:19 -0800580 // force layout tick function
Simon Hunt737c89f2015-01-28 12:23:19 -0800581
Simon Hunt5724fb42015-02-05 16:59:40 -0800582 function fResume() {
Simon Huntc3c5b672015-02-20 11:32:13 -0800583 if (!tos.isOblique()) {
Simon Hunt5724fb42015-02-05 16:59:40 -0800584 force.resume();
585 }
586 }
587
588 function fStart() {
Simon Huntc3c5b672015-02-20 11:32:13 -0800589 if (!tos.isOblique()) {
Simon Hunt5724fb42015-02-05 16:59:40 -0800590 force.start();
591 }
592 }
593
594 var tickStuff = {
595 nodeAttr: {
596 transform: function (d) { return sus.translate(d.x, d.y); }
597 },
598 linkAttr: {
599 x1: function (d) { return d.source.x; },
600 y1: function (d) { return d.source.y; },
601 x2: function (d) { return d.target.x; },
602 y2: function (d) { return d.target.y; }
603 },
604 linkLabelAttr: {
605 transform: function (d) {
Simon Huntdc6adea2015-02-09 22:29:36 -0800606 var lnk = tms.findLinkById(d.key);
Simon Hunt5724fb42015-02-05 16:59:40 -0800607 if (lnk) {
Simon Hunta4242de2015-02-24 17:11:55 -0800608 return td3.transformLabel({
Simon Hunt5724fb42015-02-05 16:59:40 -0800609 x1: lnk.source.x,
610 y1: lnk.source.y,
611 x2: lnk.target.x,
612 y2: lnk.target.y
613 });
614 }
615 }
616 }
617 };
618
619 function tick() {
Simon Hunt3ab20282015-02-26 20:32:19 -0800620 // guard against null (which can happen when our view pages out)...
621 if (node) node.attr(tickStuff.nodeAttr);
622 if (link) link.attr(tickStuff.linkAttr);
623 if (linkLabel) linkLabel.attr(tickStuff.linkLabelAttr);
Simon Hunt737c89f2015-01-28 12:23:19 -0800624 }
625
626
Simon Huntac4c6f72015-02-03 19:50:53 -0800627 // ==========================
628 // === MOUSE GESTURE HANDLERS
629
Simon Hunt205099e2015-02-07 13:12:01 -0800630 function zoomingOrPanning(ev) {
631 return ev.metaKey || ev.altKey;
Simon Hunt445e8152015-02-06 13:00:12 -0800632 }
633
634 function atDragEnd(d) {
635 // once we've finished moving, pin the node in position
636 d.fixed = true;
637 d3.select(this).classed('fixed', true);
638 sendUpdateMeta(d);
Simon Hunt0c6b2d32015-03-26 17:46:29 -0700639 tss.clickConsumed(true);
Simon Hunt445e8152015-02-06 13:00:12 -0800640 }
641
642 // predicate that indicates when dragging is active
643 function dragEnabled() {
644 var ev = d3.event.sourceEvent;
645 // nodeLock means we aren't allowing nodes to be dragged...
Simon Hunt205099e2015-02-07 13:12:01 -0800646 return !nodeLock && !zoomingOrPanning(ev);
Simon Hunt445e8152015-02-06 13:00:12 -0800647 }
648
649 // predicate that indicates when clicking is active
650 function clickEnabled() {
651 return true;
652 }
Simon Hunt737c89f2015-01-28 12:23:19 -0800653
Simon Huntf542d842015-02-11 16:20:33 -0800654 // ==========================
655 // function entry points for traffic module
656
657 var allTrafficClasses = 'primary secondary animated optical';
658
659 function clearLinkTrafficStyle() {
660 link.style('stroke-width', null)
661 .classed(allTrafficClasses, false);
662 }
663
664 function removeLinkLabels() {
665 network.links.forEach(function (d) {
666 d.label = '';
667 });
668 }
Simon Hunt737c89f2015-01-28 12:23:19 -0800669
Simon Hunta4242de2015-02-24 17:11:55 -0800670 function updateLinkLabelModel() {
671 // create the backing data for showing labels..
672 var data = [];
673 link.each(function (d) {
674 if (d.label) {
675 data.push({
676 id: 'lab-' + d.key,
677 key: d.key,
678 label: d.label,
679 ldata: d
680 });
681 }
682 });
683
684 linkLabel = linkLabelG.selectAll('.linkLabel')
685 .data(data, function (d) { return d.id; });
686 }
687
Simon Hunt737c89f2015-01-28 12:23:19 -0800688 // ==========================
Simon Huntac4c6f72015-02-03 19:50:53 -0800689 // Module definition
Simon Hunt737c89f2015-01-28 12:23:19 -0800690
Simon Huntdc6adea2015-02-09 22:29:36 -0800691 function mkModelApi(uplink) {
692 return {
693 projection: uplink.projection,
694 network: network,
695 restyleLinkElement: restyleLinkElement,
696 removeLinkElement: removeLinkElement
697 };
698 }
699
Simon Hunta4242de2015-02-24 17:11:55 -0800700 function mkD3Api(uplink) {
701 return {
702 node: function () { return node; },
703 link: function () { return link; },
704 linkLabel: function () { return linkLabel; },
705 instVisible: function () { return tis.isVisible(); },
706 posNode: tms.positionNode,
707 showHosts: function () { return showHosts; },
708 restyleLinkElement: restyleLinkElement,
709 updateLinkLabelModel: updateLinkLabelModel
710 }
711 }
712
Simon Hunt08f841d02015-02-10 14:39:20 -0800713 function mkSelectApi(uplink) {
714 return {
715 node: function () { return node; },
716 zoomingOrPanning: zoomingOrPanning,
Simon Hunt0c6b2d32015-03-26 17:46:29 -0700717 updateDeviceColors: td3.updateDeviceColors,
718 deselectLink: tls.deselectLink
Simon Hunt08f841d02015-02-10 14:39:20 -0800719 };
720 }
721
Simon Huntf542d842015-02-11 16:20:33 -0800722 function mkTrafficApi(uplink) {
723 return {
724 clearLinkTrafficStyle: clearLinkTrafficStyle,
725 removeLinkLabels: removeLinkLabels,
726 updateLinks: updateLinks,
727 findLinkById: tms.findLinkById,
728 hovered: tss.hovered,
729 validateSelectionContext: tss.validateSelectionContext,
Simon Hunt237676b52015-03-10 19:04:26 -0700730 selectOrder: tss.selectOrder
Simon Huntf542d842015-02-11 16:20:33 -0800731 }
732 }
733
Simon Huntc3c5b672015-02-20 11:32:13 -0800734 function mkObliqueApi(uplink, fltr) {
Simon Hunt96f88c62015-02-19 17:57:25 -0800735 return {
Simon Huntc3c5b672015-02-20 11:32:13 -0800736 force: function() { return force; },
737 zoomLayer: uplink.zoomLayer,
738 nodeGBBox: function() { return nodeG.node().getBBox(); },
Simon Hunt96f88c62015-02-19 17:57:25 -0800739 node: function () { return node; },
Simon Huntc3c5b672015-02-20 11:32:13 -0800740 link: function () { return link; },
741 linkLabel: function () { return linkLabel; },
742 nodes: function () { return network.nodes; },
743 tickStuff: tickStuff,
744 nodeLock: function (b) {
745 var old = nodeLock;
746 nodeLock = b;
747 return old;
748 },
749 opacifyMap: uplink.opacifyMap,
750 inLayer: fltr.inLayer
Simon Hunt96f88c62015-02-19 17:57:25 -0800751 };
752 }
753
Simon Hunteb0fa052015-02-17 19:20:28 -0800754 function mkFilterApi(uplink) {
755 return {
756 node: function () { return node; },
757 link: function () { return link; }
758 };
759 }
760
Simon Hunt9e2104c2015-02-26 10:48:59 -0800761 function mkLinkApi(svg, uplink) {
Simon Huntfb8ea1f2015-02-24 21:38:09 -0800762 return {
763 svg: svg,
Simon Huntfb8ea1f2015-02-24 21:38:09 -0800764 zoomer: uplink.zoomer(),
765 network: network,
Simon Hunt1a5301e2015-02-25 15:31:25 -0800766 portLabelG: function () { return portLabelG; },
Simon Huntfb8ea1f2015-02-24 21:38:09 -0800767 showHosts: function () { return showHosts; }
768 };
769 }
770
Simon Hunt737c89f2015-01-28 12:23:19 -0800771 angular.module('ovTopo')
772 .factory('TopoForceService',
Simon Hunt86b7c882015-04-02 23:06:08 -0700773 ['$log', '$timeout', 'FnService', 'SvgUtilService', 'IconService',
774 'ThemeService', 'FlashService', 'WebSocketService',
Simon Hunt237676b52015-03-10 19:04:26 -0700775 'TopoInstService', 'TopoModelService',
Simon Hunta4242de2015-02-24 17:11:55 -0800776 'TopoD3Service', 'TopoSelectService', 'TopoTrafficService',
Simon Huntfb8ea1f2015-02-24 21:38:09 -0800777 'TopoObliqueService', 'TopoFilterService', 'TopoLinkService',
Simon Hunt737c89f2015-01-28 12:23:19 -0800778
Simon Hunt86b7c882015-04-02 23:06:08 -0700779 function (_$log_, _$timeout_, _fs_, _sus_, _is_, _ts_, _flash_, _wss_,
Simon Huntfb8ea1f2015-02-24 21:38:09 -0800780 _tis_, _tms_, _td3_, _tss_, _tts_, _tos_, _fltr_, _tls_) {
Simon Hunt737c89f2015-01-28 12:23:19 -0800781 $log = _$log_;
Simon Hunt86b7c882015-04-02 23:06:08 -0700782 $timeout = _$timeout_;
Simon Hunt1894d792015-02-04 17:09:20 -0800783 fs = _fs_;
Simon Hunt737c89f2015-01-28 12:23:19 -0800784 sus = _sus_;
Simon Huntac4c6f72015-02-03 19:50:53 -0800785 is = _is_;
786 ts = _ts_;
Simon Hunt5724fb42015-02-05 16:59:40 -0800787 flash = _flash_;
Simon Hunt237676b52015-03-10 19:04:26 -0700788 wss = _wss_;
Simon Huntac4c6f72015-02-03 19:50:53 -0800789 tis = _tis_;
Simon Hunt3a6eec02015-02-09 21:16:43 -0800790 tms = _tms_;
Simon Hunta4242de2015-02-24 17:11:55 -0800791 td3 = _td3_;
Simon Hunt08f841d02015-02-10 14:39:20 -0800792 tss = _tss_;
Simon Huntf542d842015-02-11 16:20:33 -0800793 tts = _tts_;
Simon Hunt96f88c62015-02-19 17:57:25 -0800794 tos = _tos_;
Simon Hunteb0fa052015-02-17 19:20:28 -0800795 fltr = _fltr_;
Simon Huntfb8ea1f2015-02-24 21:38:09 -0800796 tls = _tls_;
Simon Hunt737c89f2015-01-28 12:23:19 -0800797
Simon Hunt1894d792015-02-04 17:09:20 -0800798 icfg = is.iconConfig();
799
Simon Hunta142dd22015-02-12 22:07:51 -0800800 var themeListener = ts.addListener(function () {
801 updateLinks();
802 updateNodes();
803 });
804
Simon Hunt737c89f2015-01-28 12:23:19 -0800805 // forceG is the SVG group to display the force layout in
Simon Huntdc6adea2015-02-09 22:29:36 -0800806 // uplink is the api from the main topo source file
Simon Hunt3a6eec02015-02-09 21:16:43 -0800807 // dim is the initial dimensions of the SVG as [w,h]
Simon Hunt737c89f2015-01-28 12:23:19 -0800808 // opts are, well, optional :)
Simon Hunt3ab20282015-02-26 20:32:19 -0800809 function initForce(_svg_, forceG, _uplink_, _dim_, opts) {
Simon Hunt1894d792015-02-04 17:09:20 -0800810 uplink = _uplink_;
Simon Hunt3a6eec02015-02-09 21:16:43 -0800811 dim = _dim_;
Simon Hunt3ab20282015-02-26 20:32:19 -0800812 svg = _svg_;
813
814 lu = network.lookup;
815 rlk = network.revLinkToKey;
Simon Hunt3a6eec02015-02-09 21:16:43 -0800816
817 $log.debug('initForce().. dim = ' + dim);
818
Simon Huntdc6adea2015-02-09 22:29:36 -0800819 tms.initModel(mkModelApi(uplink), dim);
Simon Hunta4242de2015-02-24 17:11:55 -0800820 td3.initD3(mkD3Api(uplink));
Simon Hunt08f841d02015-02-10 14:39:20 -0800821 tss.initSelect(mkSelectApi(uplink));
Simon Huntf542d842015-02-11 16:20:33 -0800822 tts.initTraffic(mkTrafficApi(uplink));
Simon Huntc3c5b672015-02-20 11:32:13 -0800823 tos.initOblique(mkObliqueApi(uplink, fltr));
Bri Prebilic Coleb5f2b152015-04-07 14:58:09 -0700824 fltr.initFilter(mkFilterApi(uplink));
Simon Hunt9e2104c2015-02-26 10:48:59 -0800825 tls.initLink(mkLinkApi(svg, uplink), td3);
Simon Hunta11b4eb2015-01-28 16:20:50 -0800826
Simon Hunt737c89f2015-01-28 12:23:19 -0800827 settings = angular.extend({}, defaultSettings, opts);
828
829 linkG = forceG.append('g').attr('id', 'topo-links');
830 linkLabelG = forceG.append('g').attr('id', 'topo-linkLabels');
831 nodeG = forceG.append('g').attr('id', 'topo-nodes');
Simon Hunt1a5301e2015-02-25 15:31:25 -0800832 portLabelG = forceG.append('g').attr('id', 'topo-portLabels');
Simon Hunt737c89f2015-01-28 12:23:19 -0800833
834 link = linkG.selectAll('.link');
835 linkLabel = linkLabelG.selectAll('.linkLabel');
836 node = nodeG.selectAll('.node');
837
838 force = d3.layout.force()
Simon Hunt3a6eec02015-02-09 21:16:43 -0800839 .size(dim)
Simon Hunt737c89f2015-01-28 12:23:19 -0800840 .nodes(network.nodes)
841 .links(network.links)
842 .gravity(settings.gravity)
843 .friction(settings.friction)
844 .charge(settings.charge._def_)
845 .linkDistance(settings.linkDistance._def_)
846 .linkStrength(settings.linkStrength._def_)
847 .on('tick', tick);
848
849 drag = sus.createDragBehavior(force,
Simon Hunt08f841d02015-02-10 14:39:20 -0800850 tss.selectObject, atDragEnd, dragEnabled, clickEnabled);
Simon Hunt737c89f2015-01-28 12:23:19 -0800851 }
852
Simon Hunt3a6eec02015-02-09 21:16:43 -0800853 function newDim(_dim_) {
854 dim = _dim_;
855 force.size(dim);
856 tms.newDim(dim);
Simon Hunt737c89f2015-01-28 12:23:19 -0800857 }
858
Simon Hunt3a6eec02015-02-09 21:16:43 -0800859 function destroyForce() {
Simon Hunt3ab20282015-02-26 20:32:19 -0800860 force.stop();
861
Simon Huntfb8ea1f2015-02-24 21:38:09 -0800862 tls.destroyLink();
Simon Hunt96f88c62015-02-19 17:57:25 -0800863 tos.destroyOblique();
Simon Huntf542d842015-02-11 16:20:33 -0800864 tts.destroyTraffic();
865 tss.destroySelect();
Simon Hunta4242de2015-02-24 17:11:55 -0800866 td3.destroyD3();
Simon Huntf542d842015-02-11 16:20:33 -0800867 tms.destroyModel();
Simon Hunta142dd22015-02-12 22:07:51 -0800868 ts.removeListener(themeListener);
869 themeListener = null;
Simon Hunt3ab20282015-02-26 20:32:19 -0800870
871 // clean up the DOM
872 svg.selectAll('g').remove();
873 svg.selectAll('defs').remove();
874
875 // clean up internal state
876 network.nodes = [];
877 network.links = [];
878 network.lookup = {};
879 network.revLinkToKey = {};
880
881 linkG = linkLabelG = nodeG = portLabelG = null;
882 link = linkLabel = node = null;
883 force = drag = null;
Simon Hunt3a6eec02015-02-09 21:16:43 -0800884 }
885
Simon Hunt737c89f2015-01-28 12:23:19 -0800886 return {
887 initForce: initForce,
Simon Hunt3a6eec02015-02-09 21:16:43 -0800888 newDim: newDim,
889 destroyForce: destroyForce,
Simon Huntac4c6f72015-02-03 19:50:53 -0800890
Simon Hunta4242de2015-02-24 17:11:55 -0800891 updateDeviceColors: td3.updateDeviceColors,
Simon Hunt5724fb42015-02-05 16:59:40 -0800892 toggleHosts: toggleHosts,
Simon Hunt9e2104c2015-02-26 10:48:59 -0800893 togglePorts: tls.togglePorts,
Simon Hunt5724fb42015-02-05 16:59:40 -0800894 toggleOffline: toggleOffline,
895 cycleDeviceLabels: cycleDeviceLabels,
Simon Hunt445e8152015-02-06 13:00:12 -0800896 unpin: unpin,
Simon Hunta142dd22015-02-12 22:07:51 -0800897 showMastership: showMastership,
Simon Hunt86b7c882015-04-02 23:06:08 -0700898 showBadLinks: showBadLinks,
Simon Huntac4c6f72015-02-03 19:50:53 -0800899
900 addDevice: addDevice,
Simon Hunt1894d792015-02-04 17:09:20 -0800901 updateDevice: updateDevice,
902 removeDevice: removeDevice,
903 addHost: addHost,
904 updateHost: updateHost,
905 removeHost: removeHost,
906 addLink: addLink,
907 updateLink: updateLink,
908 removeLink: removeLink
Simon Hunt737c89f2015-01-28 12:23:19 -0800909 };
910 }]);
911}());