blob: bbc697daaebcc68d4688ea2408d69734c84a69f7 [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
395 function toggleHosts() {
396 showHosts = !showHosts;
397 updateHostVisibility();
398 flash.flash('Hosts ' + vis(showHosts));
399 }
400
401 function toggleOffline() {
402 showOffline = !showOffline;
403 updateOfflineVisibility();
404 flash.flash('Offline devices ' + vis(showOffline));
405 }
406
407 function cycleDeviceLabels() {
Simon Hunta4242de2015-02-24 17:11:55 -0800408 td3.incDevLabIndex();
Simon Huntdc6adea2015-02-09 22:29:36 -0800409 tms.findDevices().forEach(function (d) {
Simon Hunta4242de2015-02-24 17:11:55 -0800410 td3.updateDeviceLabel(d);
Simon Hunt1c367112015-02-05 18:02:46 -0800411 });
Simon Hunt5724fb42015-02-05 16:59:40 -0800412 }
413
Simon Hunt445e8152015-02-06 13:00:12 -0800414 function unpin() {
Simon Hunt08f841d02015-02-10 14:39:20 -0800415 var hov = tss.hovered();
416 if (hov) {
417 sendUpdateMeta(hov, true);
418 hov.fixed = false;
419 hov.el.classed('fixed', false);
Simon Hunt445e8152015-02-06 13:00:12 -0800420 fResume();
421 }
422 }
423
Simon Hunta142dd22015-02-12 22:07:51 -0800424 function showMastership(masterId) {
425 if (!masterId) {
426 restoreLayerState();
427 } else {
428 showMastershipFor(masterId);
429 }
430 }
431
432 function restoreLayerState() {
433 // NOTE: this level of indirection required, for when we have
434 // the layer filter functionality re-implemented
435 suppressLayers(false);
436 }
437
438 function showMastershipFor(id) {
439 suppressLayers(true);
440 node.each(function (n) {
441 if (n.master === id) {
442 n.el.classed('suppressed', false);
443 }
444 });
445 }
446
447 function suppressLayers(b) {
448 node.classed('suppressed', b);
449 link.classed('suppressed', b);
450// d3.selectAll('svg .port').classed('inactive', b);
451// d3.selectAll('svg .portText').classed('inactive', b);
452 }
Simon Hunt445e8152015-02-06 13:00:12 -0800453
Simon Hunt86b7c882015-04-02 23:06:08 -0700454 function showBadLinks() {
455 var badLinks = tms.findBadLinks();
456 flash.flash('Bad Links: ' + badLinks.length);
457 $log.debug('Bad Link List (' + badLinks.length + '):');
458 badLinks.forEach(function (d) {
459 $log.debug('bad link: (' + d.bad + ') ' + d.key, d);
460 if (d.el) {
461 d.el.attr('stroke-width', linkScale(2.8))
462 .attr('stroke', 'red');
463 }
464 });
465 // back to normal after 2 seconds...
466 $timeout(updateLinks, 2000);
467 }
468
Simon Hunt5724fb42015-02-05 16:59:40 -0800469 // ==========================================
470
Simon Huntac4c6f72015-02-03 19:50:53 -0800471 function updateNodes() {
Simon Hunt1894d792015-02-04 17:09:20 -0800472 // select all the nodes in the layout:
Simon Huntac4c6f72015-02-03 19:50:53 -0800473 node = nodeG.selectAll('.node')
474 .data(network.nodes, function (d) { return d.id; });
475
Simon Hunt1894d792015-02-04 17:09:20 -0800476 // operate on existing nodes:
Simon Hunta4242de2015-02-24 17:11:55 -0800477 node.filter('.device').each(td3.deviceExisting);
478 node.filter('.host').each(td3.hostExisting);
Simon Huntac4c6f72015-02-03 19:50:53 -0800479
480 // operate on entering nodes:
481 var entering = node.enter()
482 .append('g')
483 .attr({
484 id: function (d) { return sus.safeId(d.id); },
485 class: mkSvgClass,
486 transform: function (d) { return sus.translate(d.x, d.y); },
487 opacity: 0
488 })
489 .call(drag)
Simon Hunt08f841d02015-02-10 14:39:20 -0800490 .on('mouseover', tss.nodeMouseOver)
491 .on('mouseout', tss.nodeMouseOut)
Simon Huntac4c6f72015-02-03 19:50:53 -0800492 .transition()
493 .attr('opacity', 1);
494
Simon Hunt1894d792015-02-04 17:09:20 -0800495 // augment entering nodes:
Simon Hunta4242de2015-02-24 17:11:55 -0800496 entering.filter('.device').each(td3.deviceEnter);
497 entering.filter('.host').each(td3.hostEnter);
Simon Huntac4c6f72015-02-03 19:50:53 -0800498
Simon Hunt51056592015-02-03 21:48:07 -0800499 // operate on both existing and new nodes:
Simon Hunta4242de2015-02-24 17:11:55 -0800500 td3.updateDeviceColors();
Simon Huntac4c6f72015-02-03 19:50:53 -0800501
502 // operate on exiting nodes:
503 // Note that the node is removed after 2 seconds.
504 // Sub element animations should be shorter than 2 seconds.
505 var exiting = node.exit()
506 .transition()
507 .duration(2000)
508 .style('opacity', 0)
509 .remove();
510
Simon Hunt1894d792015-02-04 17:09:20 -0800511 // exiting node specifics:
Simon Hunta4242de2015-02-24 17:11:55 -0800512 exiting.filter('.host').each(td3.hostExit);
513 exiting.filter('.device').each(td3.deviceExit);
Simon Huntac4c6f72015-02-03 19:50:53 -0800514
Simon Hunt51056592015-02-03 21:48:07 -0800515 // finally, resume the force layout
Simon Huntac4c6f72015-02-03 19:50:53 -0800516 fResume();
517 }
518
Simon Hunt51056592015-02-03 21:48:07 -0800519 // ==========================
Simon Hunt1894d792015-02-04 17:09:20 -0800520
521 function updateLinks() {
522 var th = ts.theme();
523
524 link = linkG.selectAll('.link')
525 .data(network.links, function (d) { return d.key; });
526
527 // operate on existing links:
Simon Huntd5264122015-02-25 10:17:43 -0800528 link.each(function (d) {
529 // this is supposed to be an existing link, but we have observed
530 // occasions (where links are deleted and added rapidly?) where
531 // the DOM element has not been defined. So protect against that...
532 if (d.el) {
533 restyleLinkElement(d, true);
534 }
535 });
Simon Hunt1894d792015-02-04 17:09:20 -0800536
537 // operate on entering links:
538 var entering = link.enter()
539 .append('line')
540 .attr({
Simon Huntd5264122015-02-25 10:17:43 -0800541 x1: function (d) { return d.source.x; },
542 y1: function (d) { return d.source.y; },
543 x2: function (d) { return d.target.x; },
544 y2: function (d) { return d.target.y; },
Simon Hunt1894d792015-02-04 17:09:20 -0800545 stroke: linkConfig[th].inColor,
546 'stroke-width': linkConfig.inWidth
547 });
548
549 // augment links
Simon Hunta4242de2015-02-24 17:11:55 -0800550 entering.each(td3.linkEntering);
Simon Hunt1894d792015-02-04 17:09:20 -0800551
552 // operate on both existing and new links:
553 //link.each(...)
554
555 // apply or remove labels
Simon Hunta4242de2015-02-24 17:11:55 -0800556 td3.applyLinkLabels();
Simon Hunt1894d792015-02-04 17:09:20 -0800557
558 // operate on exiting links:
559 link.exit()
560 .attr('stroke-dasharray', '3 3')
Simon Hunt5724fb42015-02-05 16:59:40 -0800561 .attr('stroke', linkConfig[th].outColor)
Simon Hunt1894d792015-02-04 17:09:20 -0800562 .style('opacity', 0.5)
563 .transition()
564 .duration(1500)
565 .attr({
566 'stroke-dasharray': '3 12',
Simon Hunt1894d792015-02-04 17:09:20 -0800567 'stroke-width': linkConfig.outWidth
568 })
569 .style('opacity', 0.0)
570 .remove();
Simon Hunt1894d792015-02-04 17:09:20 -0800571 }
572
Simon Huntac4c6f72015-02-03 19:50:53 -0800573
574 // ==========================
Simon Hunt737c89f2015-01-28 12:23:19 -0800575 // force layout tick function
Simon Hunt737c89f2015-01-28 12:23:19 -0800576
Simon Hunt5724fb42015-02-05 16:59:40 -0800577 function fResume() {
Simon Huntc3c5b672015-02-20 11:32:13 -0800578 if (!tos.isOblique()) {
Simon Hunt5724fb42015-02-05 16:59:40 -0800579 force.resume();
580 }
581 }
582
583 function fStart() {
Simon Huntc3c5b672015-02-20 11:32:13 -0800584 if (!tos.isOblique()) {
Simon Hunt5724fb42015-02-05 16:59:40 -0800585 force.start();
586 }
587 }
588
589 var tickStuff = {
590 nodeAttr: {
591 transform: function (d) { return sus.translate(d.x, d.y); }
592 },
593 linkAttr: {
594 x1: function (d) { return d.source.x; },
595 y1: function (d) { return d.source.y; },
596 x2: function (d) { return d.target.x; },
597 y2: function (d) { return d.target.y; }
598 },
599 linkLabelAttr: {
600 transform: function (d) {
Simon Huntdc6adea2015-02-09 22:29:36 -0800601 var lnk = tms.findLinkById(d.key);
Simon Hunt5724fb42015-02-05 16:59:40 -0800602 if (lnk) {
Simon Hunta4242de2015-02-24 17:11:55 -0800603 return td3.transformLabel({
Simon Hunt5724fb42015-02-05 16:59:40 -0800604 x1: lnk.source.x,
605 y1: lnk.source.y,
606 x2: lnk.target.x,
607 y2: lnk.target.y
608 });
609 }
610 }
611 }
612 };
613
614 function tick() {
Simon Hunt3ab20282015-02-26 20:32:19 -0800615 // guard against null (which can happen when our view pages out)...
616 if (node) node.attr(tickStuff.nodeAttr);
617 if (link) link.attr(tickStuff.linkAttr);
618 if (linkLabel) linkLabel.attr(tickStuff.linkLabelAttr);
Simon Hunt737c89f2015-01-28 12:23:19 -0800619 }
620
621
Simon Huntac4c6f72015-02-03 19:50:53 -0800622 // ==========================
623 // === MOUSE GESTURE HANDLERS
624
Simon Hunt205099e2015-02-07 13:12:01 -0800625 function zoomingOrPanning(ev) {
626 return ev.metaKey || ev.altKey;
Simon Hunt445e8152015-02-06 13:00:12 -0800627 }
628
629 function atDragEnd(d) {
630 // once we've finished moving, pin the node in position
631 d.fixed = true;
632 d3.select(this).classed('fixed', true);
633 sendUpdateMeta(d);
Simon Hunt0c6b2d32015-03-26 17:46:29 -0700634 tss.clickConsumed(true);
Simon Hunt445e8152015-02-06 13:00:12 -0800635 }
636
637 // predicate that indicates when dragging is active
638 function dragEnabled() {
639 var ev = d3.event.sourceEvent;
640 // nodeLock means we aren't allowing nodes to be dragged...
Simon Hunt205099e2015-02-07 13:12:01 -0800641 return !nodeLock && !zoomingOrPanning(ev);
Simon Hunt445e8152015-02-06 13:00:12 -0800642 }
643
644 // predicate that indicates when clicking is active
645 function clickEnabled() {
646 return true;
647 }
Simon Hunt737c89f2015-01-28 12:23:19 -0800648
Simon Huntf542d842015-02-11 16:20:33 -0800649 // ==========================
650 // function entry points for traffic module
651
652 var allTrafficClasses = 'primary secondary animated optical';
653
654 function clearLinkTrafficStyle() {
655 link.style('stroke-width', null)
656 .classed(allTrafficClasses, false);
657 }
658
659 function removeLinkLabels() {
660 network.links.forEach(function (d) {
661 d.label = '';
662 });
663 }
Simon Hunt737c89f2015-01-28 12:23:19 -0800664
Simon Hunta4242de2015-02-24 17:11:55 -0800665 function updateLinkLabelModel() {
666 // create the backing data for showing labels..
667 var data = [];
668 link.each(function (d) {
669 if (d.label) {
670 data.push({
671 id: 'lab-' + d.key,
672 key: d.key,
673 label: d.label,
674 ldata: d
675 });
676 }
677 });
678
679 linkLabel = linkLabelG.selectAll('.linkLabel')
680 .data(data, function (d) { return d.id; });
681 }
682
Simon Hunt737c89f2015-01-28 12:23:19 -0800683 // ==========================
Simon Huntac4c6f72015-02-03 19:50:53 -0800684 // Module definition
Simon Hunt737c89f2015-01-28 12:23:19 -0800685
Simon Huntdc6adea2015-02-09 22:29:36 -0800686 function mkModelApi(uplink) {
687 return {
688 projection: uplink.projection,
689 network: network,
690 restyleLinkElement: restyleLinkElement,
691 removeLinkElement: removeLinkElement
692 };
693 }
694
Simon Hunta4242de2015-02-24 17:11:55 -0800695 function mkD3Api(uplink) {
696 return {
697 node: function () { return node; },
698 link: function () { return link; },
699 linkLabel: function () { return linkLabel; },
700 instVisible: function () { return tis.isVisible(); },
701 posNode: tms.positionNode,
702 showHosts: function () { return showHosts; },
703 restyleLinkElement: restyleLinkElement,
704 updateLinkLabelModel: updateLinkLabelModel
705 }
706 }
707
Simon Hunt08f841d02015-02-10 14:39:20 -0800708 function mkSelectApi(uplink) {
709 return {
710 node: function () { return node; },
711 zoomingOrPanning: zoomingOrPanning,
Simon Hunt0c6b2d32015-03-26 17:46:29 -0700712 updateDeviceColors: td3.updateDeviceColors,
713 deselectLink: tls.deselectLink
Simon Hunt08f841d02015-02-10 14:39:20 -0800714 };
715 }
716
Simon Huntf542d842015-02-11 16:20:33 -0800717 function mkTrafficApi(uplink) {
718 return {
719 clearLinkTrafficStyle: clearLinkTrafficStyle,
720 removeLinkLabels: removeLinkLabels,
721 updateLinks: updateLinks,
722 findLinkById: tms.findLinkById,
723 hovered: tss.hovered,
724 validateSelectionContext: tss.validateSelectionContext,
Simon Hunt237676b52015-03-10 19:04:26 -0700725 selectOrder: tss.selectOrder
Simon Huntf542d842015-02-11 16:20:33 -0800726 }
727 }
728
Simon Huntc3c5b672015-02-20 11:32:13 -0800729 function mkObliqueApi(uplink, fltr) {
Simon Hunt96f88c62015-02-19 17:57:25 -0800730 return {
Simon Huntc3c5b672015-02-20 11:32:13 -0800731 force: function() { return force; },
732 zoomLayer: uplink.zoomLayer,
733 nodeGBBox: function() { return nodeG.node().getBBox(); },
Simon Hunt96f88c62015-02-19 17:57:25 -0800734 node: function () { return node; },
Simon Huntc3c5b672015-02-20 11:32:13 -0800735 link: function () { return link; },
736 linkLabel: function () { return linkLabel; },
737 nodes: function () { return network.nodes; },
738 tickStuff: tickStuff,
739 nodeLock: function (b) {
740 var old = nodeLock;
741 nodeLock = b;
742 return old;
743 },
744 opacifyMap: uplink.opacifyMap,
745 inLayer: fltr.inLayer
Simon Hunt96f88c62015-02-19 17:57:25 -0800746 };
747 }
748
Simon Hunteb0fa052015-02-17 19:20:28 -0800749 function mkFilterApi(uplink) {
750 return {
751 node: function () { return node; },
752 link: function () { return link; }
753 };
754 }
755
Simon Hunt9e2104c2015-02-26 10:48:59 -0800756 function mkLinkApi(svg, uplink) {
Simon Huntfb8ea1f2015-02-24 21:38:09 -0800757 return {
758 svg: svg,
Simon Huntfb8ea1f2015-02-24 21:38:09 -0800759 zoomer: uplink.zoomer(),
760 network: network,
Simon Hunt1a5301e2015-02-25 15:31:25 -0800761 portLabelG: function () { return portLabelG; },
Simon Huntfb8ea1f2015-02-24 21:38:09 -0800762 showHosts: function () { return showHosts; }
763 };
764 }
765
Simon Hunt737c89f2015-01-28 12:23:19 -0800766 angular.module('ovTopo')
767 .factory('TopoForceService',
Simon Hunt86b7c882015-04-02 23:06:08 -0700768 ['$log', '$timeout', 'FnService', 'SvgUtilService', 'IconService',
769 'ThemeService', 'FlashService', 'WebSocketService',
Simon Hunt237676b52015-03-10 19:04:26 -0700770 'TopoInstService', 'TopoModelService',
Simon Hunta4242de2015-02-24 17:11:55 -0800771 'TopoD3Service', 'TopoSelectService', 'TopoTrafficService',
Simon Huntfb8ea1f2015-02-24 21:38:09 -0800772 'TopoObliqueService', 'TopoFilterService', 'TopoLinkService',
Simon Hunt737c89f2015-01-28 12:23:19 -0800773
Simon Hunt86b7c882015-04-02 23:06:08 -0700774 function (_$log_, _$timeout_, _fs_, _sus_, _is_, _ts_, _flash_, _wss_,
Simon Huntfb8ea1f2015-02-24 21:38:09 -0800775 _tis_, _tms_, _td3_, _tss_, _tts_, _tos_, _fltr_, _tls_) {
Simon Hunt737c89f2015-01-28 12:23:19 -0800776 $log = _$log_;
Simon Hunt86b7c882015-04-02 23:06:08 -0700777 $timeout = _$timeout_;
Simon Hunt1894d792015-02-04 17:09:20 -0800778 fs = _fs_;
Simon Hunt737c89f2015-01-28 12:23:19 -0800779 sus = _sus_;
Simon Huntac4c6f72015-02-03 19:50:53 -0800780 is = _is_;
781 ts = _ts_;
Simon Hunt5724fb42015-02-05 16:59:40 -0800782 flash = _flash_;
Simon Hunt237676b52015-03-10 19:04:26 -0700783 wss = _wss_;
Simon Huntac4c6f72015-02-03 19:50:53 -0800784 tis = _tis_;
Simon Hunt3a6eec02015-02-09 21:16:43 -0800785 tms = _tms_;
Simon Hunta4242de2015-02-24 17:11:55 -0800786 td3 = _td3_;
Simon Hunt08f841d02015-02-10 14:39:20 -0800787 tss = _tss_;
Simon Huntf542d842015-02-11 16:20:33 -0800788 tts = _tts_;
Simon Hunt96f88c62015-02-19 17:57:25 -0800789 tos = _tos_;
Simon Hunteb0fa052015-02-17 19:20:28 -0800790 fltr = _fltr_;
Simon Huntfb8ea1f2015-02-24 21:38:09 -0800791 tls = _tls_;
Simon Hunt737c89f2015-01-28 12:23:19 -0800792
Simon Hunt1894d792015-02-04 17:09:20 -0800793 icfg = is.iconConfig();
794
Simon Hunta142dd22015-02-12 22:07:51 -0800795 var themeListener = ts.addListener(function () {
796 updateLinks();
797 updateNodes();
798 });
799
Simon Hunt737c89f2015-01-28 12:23:19 -0800800 // forceG is the SVG group to display the force layout in
Simon Huntdc6adea2015-02-09 22:29:36 -0800801 // uplink is the api from the main topo source file
Simon Hunt3a6eec02015-02-09 21:16:43 -0800802 // dim is the initial dimensions of the SVG as [w,h]
Simon Hunt737c89f2015-01-28 12:23:19 -0800803 // opts are, well, optional :)
Simon Hunt3ab20282015-02-26 20:32:19 -0800804 function initForce(_svg_, forceG, _uplink_, _dim_, opts) {
Simon Hunt1894d792015-02-04 17:09:20 -0800805 uplink = _uplink_;
Simon Hunt3a6eec02015-02-09 21:16:43 -0800806 dim = _dim_;
Simon Hunt3ab20282015-02-26 20:32:19 -0800807 svg = _svg_;
808
809 lu = network.lookup;
810 rlk = network.revLinkToKey;
Simon Hunt3a6eec02015-02-09 21:16:43 -0800811
812 $log.debug('initForce().. dim = ' + dim);
813
Simon Huntdc6adea2015-02-09 22:29:36 -0800814 tms.initModel(mkModelApi(uplink), dim);
Simon Hunta4242de2015-02-24 17:11:55 -0800815 td3.initD3(mkD3Api(uplink));
Simon Hunt08f841d02015-02-10 14:39:20 -0800816 tss.initSelect(mkSelectApi(uplink));
Simon Huntf542d842015-02-11 16:20:33 -0800817 tts.initTraffic(mkTrafficApi(uplink));
Simon Huntc3c5b672015-02-20 11:32:13 -0800818 tos.initOblique(mkObliqueApi(uplink, fltr));
Simon Hunteb0fa052015-02-17 19:20:28 -0800819 fltr.initFilter(mkFilterApi(uplink), d3.select('#mast-right'));
Simon Hunt9e2104c2015-02-26 10:48:59 -0800820 tls.initLink(mkLinkApi(svg, uplink), td3);
Simon Hunta11b4eb2015-01-28 16:20:50 -0800821
Simon Hunt737c89f2015-01-28 12:23:19 -0800822 settings = angular.extend({}, defaultSettings, opts);
823
824 linkG = forceG.append('g').attr('id', 'topo-links');
825 linkLabelG = forceG.append('g').attr('id', 'topo-linkLabels');
826 nodeG = forceG.append('g').attr('id', 'topo-nodes');
Simon Hunt1a5301e2015-02-25 15:31:25 -0800827 portLabelG = forceG.append('g').attr('id', 'topo-portLabels');
Simon Hunt737c89f2015-01-28 12:23:19 -0800828
829 link = linkG.selectAll('.link');
830 linkLabel = linkLabelG.selectAll('.linkLabel');
831 node = nodeG.selectAll('.node');
832
833 force = d3.layout.force()
Simon Hunt3a6eec02015-02-09 21:16:43 -0800834 .size(dim)
Simon Hunt737c89f2015-01-28 12:23:19 -0800835 .nodes(network.nodes)
836 .links(network.links)
837 .gravity(settings.gravity)
838 .friction(settings.friction)
839 .charge(settings.charge._def_)
840 .linkDistance(settings.linkDistance._def_)
841 .linkStrength(settings.linkStrength._def_)
842 .on('tick', tick);
843
844 drag = sus.createDragBehavior(force,
Simon Hunt08f841d02015-02-10 14:39:20 -0800845 tss.selectObject, atDragEnd, dragEnabled, clickEnabled);
Simon Hunt737c89f2015-01-28 12:23:19 -0800846 }
847
Simon Hunt3a6eec02015-02-09 21:16:43 -0800848 function newDim(_dim_) {
849 dim = _dim_;
850 force.size(dim);
851 tms.newDim(dim);
Simon Hunt737c89f2015-01-28 12:23:19 -0800852 }
853
Simon Hunt3a6eec02015-02-09 21:16:43 -0800854 function destroyForce() {
Simon Hunt3ab20282015-02-26 20:32:19 -0800855 force.stop();
856
Simon Huntfb8ea1f2015-02-24 21:38:09 -0800857 tls.destroyLink();
Simon Hunteb0fa052015-02-17 19:20:28 -0800858 fltr.destroyFilter();
Simon Hunt96f88c62015-02-19 17:57:25 -0800859 tos.destroyOblique();
Simon Huntf542d842015-02-11 16:20:33 -0800860 tts.destroyTraffic();
861 tss.destroySelect();
Simon Hunta4242de2015-02-24 17:11:55 -0800862 td3.destroyD3();
Simon Huntf542d842015-02-11 16:20:33 -0800863 tms.destroyModel();
Simon Hunta142dd22015-02-12 22:07:51 -0800864 ts.removeListener(themeListener);
865 themeListener = null;
Simon Hunt3ab20282015-02-26 20:32:19 -0800866
867 // clean up the DOM
868 svg.selectAll('g').remove();
869 svg.selectAll('defs').remove();
870
871 // clean up internal state
872 network.nodes = [];
873 network.links = [];
874 network.lookup = {};
875 network.revLinkToKey = {};
876
877 linkG = linkLabelG = nodeG = portLabelG = null;
878 link = linkLabel = node = null;
879 force = drag = null;
Simon Hunt3a6eec02015-02-09 21:16:43 -0800880 }
881
Simon Hunt737c89f2015-01-28 12:23:19 -0800882 return {
883 initForce: initForce,
Simon Hunt3a6eec02015-02-09 21:16:43 -0800884 newDim: newDim,
885 destroyForce: destroyForce,
Simon Huntac4c6f72015-02-03 19:50:53 -0800886
Simon Hunta4242de2015-02-24 17:11:55 -0800887 updateDeviceColors: td3.updateDeviceColors,
Simon Hunt5724fb42015-02-05 16:59:40 -0800888 toggleHosts: toggleHosts,
Simon Hunt9e2104c2015-02-26 10:48:59 -0800889 togglePorts: tls.togglePorts,
Simon Hunt5724fb42015-02-05 16:59:40 -0800890 toggleOffline: toggleOffline,
891 cycleDeviceLabels: cycleDeviceLabels,
Simon Hunt445e8152015-02-06 13:00:12 -0800892 unpin: unpin,
Simon Hunta142dd22015-02-12 22:07:51 -0800893 showMastership: showMastership,
Simon Hunt86b7c882015-04-02 23:06:08 -0700894 showBadLinks: showBadLinks,
Simon Huntac4c6f72015-02-03 19:50:53 -0800895
896 addDevice: addDevice,
Simon Hunt1894d792015-02-04 17:09:20 -0800897 updateDevice: updateDevice,
898 removeDevice: removeDevice,
899 addHost: addHost,
900 updateHost: updateHost,
901 removeHost: removeHost,
902 addLink: addLink,
903 updateLink: updateLink,
904 removeLink: removeLink
Simon Hunt737c89f2015-01-28 12:23:19 -0800905 };
906 }]);
907}());