blob: 8acebccccafa88d441fb444f48e245fe090adb42 [file] [log] [blame]
Simon Huntef31fb22014-12-19 13:16:44 -08001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2014-present Open Networking Laboratory
Simon Huntef31fb22014-12-19 13:16:44 -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/*
18 ONOS GUI -- Topology View Module
Simon Huntef31fb22014-12-19 13:16:44 -080019 */
20
21(function () {
22 'use strict';
Simon Hunt6cc53692015-01-07 11:33:45 -080023
24 var moduleDependencies = [
Simon Hunt36a58c62015-04-08 11:00:07 -070025 'ngCookies',
Simon Hunt6cc53692015-01-07 11:33:45 -080026 'onosUtil',
Simon Hunt1e4a0012015-01-21 11:36:08 -080027 'onosSvg',
28 'onosRemote'
Simon Hunt6cc53692015-01-07 11:33:45 -080029 ];
30
Simon Hunta4281242016-02-26 20:18:45 -080031 // references to injected services
Simon Hunt7faabd52016-08-18 16:16:19 -070032 var $scope, $log, $loc, $timeout, $cookies,
33 fs, ks, zs, gs, ms, sus, flash, wss, ps, th, tds, t3s, tes, tfs, tps,
34 tis, tms, tss, tls, tts, tos, fltr, ttbs, tspr, ttip, tov;
Simon Hunt6cc53692015-01-07 11:33:45 -080035
36 // DOM elements
Simon Hunt2052e5d2015-04-13 17:40:44 -070037 var ovtopo, svg, defs, zoomLayer, mapG, spriteG, forceG, noDevsLayer;
Simon Hunt6cc53692015-01-07 11:33:45 -080038
39 // Internal state
Simon Huntf51bf462016-06-29 16:22:57 -070040 var zoomer, actionMap;
Simon Hunt6cc53692015-01-07 11:33:45 -080041
Simon Huntcacce342015-01-07 16:13:05 -080042 // --- Short Cut Keys ------------------------------------------------
43
Simon Hunt8d22c4b2015-08-06 16:24:43 -070044 function setUpKeys(overlayKeys) {
Simon Hunt5724fb42015-02-05 16:59:40 -080045 // key bindings need to be made after the services have been injected
46 // thus, deferred to here...
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -070047 actionMap = {
Simon Hunt36a58c62015-04-08 11:00:07 -070048 I: [toggleInstances, 'Toggle ONOS instances panel'],
Simon Huntee7a3ce2015-04-09 13:28:37 -070049 O: [toggleSummary, 'Toggle ONOS summary panel'],
Simon Hunt239e5882015-04-23 15:07:04 -070050 D: [toggleUseDetailsFlag, 'Disable / enable details panel'],
Simon Huntac4c6f72015-02-03 19:50:53 -080051
Simon Huntfcbde892015-04-16 12:05:28 -070052 H: [toggleHosts, 'Toggle host visibility'],
53 M: [toggleOffline, 'Toggle offline visibility'],
54 P: [togglePorts, 'Toggle Port Highlighting'],
Simon Hunt86b7c882015-04-02 23:06:08 -070055 dash: [tfs.showBadLinks, 'Show bad links'],
Thomas Vachuska26be4f32016-03-31 01:10:27 -070056 B: [toggleMap, 'Toggle background geo map'],
57 G: [openMapSelection, 'Select background geo map'],
Simon Hunt2052e5d2015-04-13 17:40:44 -070058 S: [toggleSprites, 'Toggle sprite layer'],
Simon Huntac4c6f72015-02-03 19:50:53 -080059
Simon Huntfd7106c2016-02-09 15:05:26 -080060 X: [tfs.resetAllLocations, 'Reset node locations'],
Simon Hunt96f88c62015-02-19 17:57:25 -080061 Z: [tos.toggleOblique, 'Toggle oblique view (Experimental)'],
Bri Prebilic Coleb5f2b152015-04-07 14:58:09 -070062 N: [fltr.clickAction, 'Cycle node layers'],
Simon Hunt5724fb42015-02-05 16:59:40 -080063 L: [tfs.cycleDeviceLabels, 'Cycle device labels'],
Simon Hunt445e8152015-02-06 13:00:12 -080064 U: [tfs.unpin, 'Unpin node (hover mouse over)'],
Simon Hunt5724fb42015-02-05 16:59:40 -080065 R: [resetZoom, 'Reset pan / zoom'],
Simon Hunt90dcc3e2015-03-25 15:01:27 -070066 dot: [ttbs.toggleToolbar, 'Toggle Toolbar'],
Simon Huntac4c6f72015-02-03 19:50:53 -080067
Simon Hunt0e48c292015-02-19 16:11:37 -080068 E: [equalizeMasters, 'Equalize mastership roles'],
Simon Huntac4c6f72015-02-03 19:50:53 -080069
Simon Hunta9761342016-06-10 18:02:53 -070070 //-- instance color palette debug
71 // 9: function () { sus.cat7().testCard(svg); },
72
Simon Hunt5b024d72016-01-29 11:02:43 -080073 // topology overlay selections
74 F1: function () { ttbs.fnkey(0); },
75 F2: function () { ttbs.fnkey(1); },
76 F3: function () { ttbs.fnkey(2); },
77 F4: function () { ttbs.fnkey(3); },
78 F5: function () { ttbs.fnkey(4); },
79
Simon Hunt08f841d02015-02-10 14:39:20 -080080 esc: handleEscape,
Simon Huntac4c6f72015-02-03 19:50:53 -080081
Simon Hunt09060142015-03-18 20:23:32 -070082 _keyListener: ttbs.keyListener,
83
Simon Hunt5724fb42015-02-05 16:59:40 -080084 _helpFormat: [
Thomas Vachuska26be4f32016-03-31 01:10:27 -070085 ['I', 'O', 'D', 'H', 'M', 'P', 'dash', 'B', 'G', 'S' ],
Simon Hunt8d22c4b2015-08-06 16:24:43 -070086 ['X', 'Z', 'N', 'L', 'U', 'R', '-', 'E', '-', 'dot'],
87 [] // this column reserved for overlay actions
Simon Hunt5724fb42015-02-05 16:59:40 -080088 ]
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -070089 };
90
Simon Hunt8d22c4b2015-08-06 16:24:43 -070091 if (fs.isO(overlayKeys)) {
92 mergeKeys(overlayKeys);
93 }
94
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -070095 ks.keyBindings(actionMap);
Simon Huntac4c6f72015-02-03 19:50:53 -080096
Simon Hunt639dc662015-02-18 14:19:20 -080097 ks.gestureNotes([
Simon Hunt5724fb42015-02-05 16:59:40 -080098 ['click', 'Select the item and show details'],
99 ['shift-click', 'Toggle selection state'],
100 ['drag', 'Reposition (and pin) device / host'],
101 ['cmd-scroll', 'Zoom in / out'],
102 ['cmd-drag', 'Pan']
Simon Hunt639dc662015-02-18 14:19:20 -0800103 ]);
Simon Hunt5724fb42015-02-05 16:59:40 -0800104 }
Simon Hunt6cc53692015-01-07 11:33:45 -0800105
Simon Hunt8d22c4b2015-08-06 16:24:43 -0700106 // when a topology overlay is activated, we need to bind their keystrokes
107 // and include them in the quick-help panel
108 function mergeKeys(extra) {
109 var _hf = actionMap._helpFormat[2];
Simon Hunt71892222015-09-29 13:39:40 -0700110
111 ks.checkNotGlobal(extra);
112
Simon Hunt8d22c4b2015-08-06 16:24:43 -0700113 extra._keyOrder.forEach(function (k) {
114 var d = extra[k],
115 cb = d && d.cb,
116 tt = d && d.tt;
117 // NOTE: ignore keys that are already defined
118 if (d && !actionMap[k]) {
119 actionMap[k] = [cb, tt];
120 _hf.push(k);
121 }
122 });
123 }
124
Simon Hunt08f841d02015-02-10 14:39:20 -0800125 // --- Keystroke functions -------------------------------------------
Simon Huntac4c6f72015-02-03 19:50:53 -0800126
Simon Hunt36a58c62015-04-08 11:00:07 -0700127 function toggleInstances(x) {
Simon Huntee7a3ce2015-04-09 13:28:37 -0700128 updatePrefsState('insts', tis.toggle(x));
Simon Huntac4c6f72015-02-03 19:50:53 -0800129 tfs.updateDeviceColors();
Simon Hunt6cc53692015-01-07 11:33:45 -0800130 }
Simon Huntac4c6f72015-02-03 19:50:53 -0800131
Simon Huntee7a3ce2015-04-09 13:28:37 -0700132 function toggleSummary(x) {
133 updatePrefsState('summary', tps.toggleSummary(x));
Simon Hunt18bf9822015-02-12 17:35:45 -0800134 }
135
Simon Hunt239e5882015-04-23 15:07:04 -0700136 function toggleUseDetailsFlag(x) {
137 updatePrefsState('detail', tps.toggleUseDetailsFlag(x));
Simon Huntee7a3ce2015-04-09 13:28:37 -0700138 }
139
Simon Huntfcbde892015-04-16 12:05:28 -0700140 function toggleHosts(x) {
141 updatePrefsState('hosts', tfs.toggleHosts(x));
142 }
143
144 function toggleOffline(x) {
145 updatePrefsState('offdev', tfs.toggleOffline(x));
146 }
147
148 function togglePorts(x) {
149 updatePrefsState('porthl', tfs.togglePorts(x));
150 }
151
152 function _togSvgLayer(x, G, tag, what) {
153 var on = (x === 'keyev') ? !sus.visible(G) : !!x,
Simon Huntee7a3ce2015-04-09 13:28:37 -0700154 verb = on ? 'Show' : 'Hide';
Simon Huntfcbde892015-04-16 12:05:28 -0700155 sus.visible(G, on);
156 updatePrefsState(tag, on);
157 flash.flash(verb + ' ' + what);
158 }
159
160 function toggleMap(x) {
161 _togSvgLayer(x, mapG, 'bg', 'background map');
Simon Huntee7a3ce2015-04-09 13:28:37 -0700162 }
Simon Hunt36a58c62015-04-08 11:00:07 -0700163
Thomas Vachuska26be4f32016-03-31 01:10:27 -0700164 function openMapSelection() {
165 tms.openMapSelection();
166 }
167
Simon Hunt2052e5d2015-04-13 17:40:44 -0700168 function toggleSprites(x) {
Simon Huntfcbde892015-04-16 12:05:28 -0700169 _togSvgLayer(x, spriteG, 'spr', 'sprite layer');
Simon Hunt2052e5d2015-04-13 17:40:44 -0700170 }
171
Simon Hunt08f841d02015-02-10 14:39:20 -0800172 function resetZoom() {
173 zoomer.reset();
Bri Prebilic Cole9cf1a8d2015-04-21 13:15:29 -0700174 flash.flash('Pan and zoom reset');
Simon Hunt08f841d02015-02-10 14:39:20 -0800175 }
176
Simon Hunt0e48c292015-02-19 16:11:37 -0800177 function equalizeMasters() {
Simon Hunt237676b52015-03-10 19:04:26 -0700178 wss.sendEvent('equalizeMasters');
Simon Hunt0e48c292015-02-19 16:11:37 -0800179 flash.flash('Equalizing master roles');
180 }
181
Simon Hunt08f841d02015-02-10 14:39:20 -0800182 function handleEscape() {
Simon Hunta142dd22015-02-12 22:07:51 -0800183 if (tis.showMaster()) {
184 // if an instance is selected, cancel the affinity mapping
185 tis.cancelAffinity()
Simon Hunt08f841d02015-02-10 14:39:20 -0800186
Simon Hunt8d22c4b2015-08-06 16:24:43 -0700187 } else if (tov.hooks.escape()) {
188 // else if the overlay consumed the ESC event...
189 // (work already done)
190
Simon Hunt0c6b2d32015-03-26 17:46:29 -0700191 } else if (tss.deselectAll()) {
Simon Hunta0eb0a82015-02-11 12:30:06 -0800192 // else if we have node selections, deselect them all
Simon Hunt0c6b2d32015-03-26 17:46:29 -0700193 // (work already done)
194
Prince Pereira46c82d42016-09-19 13:30:50 +0530195 } else if (tls.deselectAllLinks()) {
Simon Hunt0c6b2d32015-03-26 17:46:29 -0700196 // else if we have a link selected, deselect it
197 // (work already done)
Simon Hunt08f841d02015-02-10 14:39:20 -0800198
Simon Hunta0eb0a82015-02-11 12:30:06 -0800199 } else if (tis.isVisible()) {
200 // else if the Instance Panel is visible, hide it
201 tis.hide();
202 tfs.updateDeviceColors();
Simon Hunt08f841d02015-02-10 14:39:20 -0800203
Simon Hunta0eb0a82015-02-11 12:30:06 -0800204 } else if (tps.summaryVisible()) {
205 // else if the Summary Panel is visible, hide it
Simon Hunt356da762016-05-27 11:54:02 -0700206 tps.hideSummary();
Simon Hunta0eb0a82015-02-11 12:30:06 -0800207 }
Simon Hunt08f841d02015-02-10 14:39:20 -0800208 }
Simon Huntcacce342015-01-07 16:13:05 -0800209
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -0700210 // --- Toolbar Functions ---------------------------------------------
211
Bri Prebilic Cole2efc7152015-04-29 15:47:06 -0700212 function notValid(what) {
Simon Hunt8d22c4b2015-08-06 16:24:43 -0700213 $log.warn('topo.js getActionEntry(): Not a valid ' + what);
Bri Prebilic Cole2efc7152015-04-29 15:47:06 -0700214 }
Simon Hunt8d22c4b2015-08-06 16:24:43 -0700215
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -0700216 function getActionEntry(key) {
Bri Prebilic Cole2efc7152015-04-29 15:47:06 -0700217 var entry;
218
219 if (!key) {
220 notValid('key');
221 return null;
222 }
223
224 entry = actionMap[key];
225
226 if (!entry) {
227 notValid('actionMap entry');
228 return null;
229 }
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -0700230 return fs.isA(entry) || [entry, ''];
231 }
232
233 function setUpToolbar() {
234 ttbs.init({
Simon Hunt8d22c4b2015-08-06 16:24:43 -0700235 getActionEntry: getActionEntry,
236 setUpKeys: setUpKeys
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -0700237 });
238 ttbs.createToolbar();
239 }
240
Simon Huntcacce342015-01-07 16:13:05 -0800241 // --- Glyphs, Icons, and the like -----------------------------------
242
Simon Hunt6cc53692015-01-07 11:33:45 -0800243 function setUpDefs() {
Simon Huntcacce342015-01-07 16:13:05 -0800244 defs = svg.append('defs');
Simon Hunt6cc53692015-01-07 11:33:45 -0800245 gs.loadDefs(defs);
Simon Hunt0ee28682015-02-12 20:48:11 -0800246 sus.loadGlowDefs(defs);
Simon Hunt6cc53692015-01-07 11:33:45 -0800247 }
248
249
Simon Huntcacce342015-01-07 16:13:05 -0800250 // --- Pan and Zoom --------------------------------------------------
251
252 // zoom enabled predicate. ev is a D3 source event.
253 function zoomEnabled(ev) {
Simon Huntd552ee92015-04-02 17:06:35 -0700254 return fs.isMobile() || (ev.metaKey || ev.altKey);
Simon Huntcacce342015-01-07 16:13:05 -0800255 }
256
257 function zoomCallback() {
Simon Huntbb5e0d82015-04-16 14:25:46 -0700258 var sc = zoomer.scale(),
259 tr = zoomer.translate();
260
261 ps.setPrefs('topo_zoom', {tx:tr[0], ty:tr[1], sc:sc});
Simon Huntcacce342015-01-07 16:13:05 -0800262
Simon Hunt0541fb82015-01-14 18:59:57 -0800263 // keep the map lines constant width while zooming
Simon Hunt737c89f2015-01-28 12:23:19 -0800264 mapG.style('stroke-width', (2.0 / sc) + 'px');
Steven Burrowsf17f0ab2017-04-11 11:03:58 -0700265
266 tfs.setNodeScale(sc);
Simon Huntcacce342015-01-07 16:13:05 -0800267 }
268
269 function setUpZoom() {
Simon Hunta7b6a6b2015-01-13 19:53:09 -0800270 zoomLayer = svg.append('g').attr('id', 'topo-zoomlayer');
Simon Huntcacce342015-01-07 16:13:05 -0800271 zoomer = zs.createZoomer({
272 svg: svg,
273 zoomLayer: zoomLayer,
274 zoomEnabled: zoomEnabled,
275 zoomCallback: zoomCallback
276 });
277 }
278
279
Simon Hunt0541fb82015-01-14 18:59:57 -0800280 // callback invoked when the SVG view has been resized..
Simon Hunt3a6eec02015-02-09 21:16:43 -0800281 function svgResized(s) {
282 tfs.newDim([s.width, s.height]);
Simon Hunt0541fb82015-01-14 18:59:57 -0800283 }
284
Simon Hunta7b6a6b2015-01-13 19:53:09 -0800285 // --- Background Map ------------------------------------------------
286
Simon Hunt7c8ab8d2015-02-03 15:05:15 -0800287 function setUpNoDevs() {
288 var g, box;
289 noDevsLayer = svg.append('g').attr({
290 id: 'topo-noDevsLayer',
291 transform: sus.translate(500,500)
292 });
293 // Note, SVG viewbox is '0 0 1000 1000', defined in topo.html.
294 // We are translating this layer to have its origin at the center
295
296 g = noDevsLayer.append('g');
297 gs.addGlyph(g, 'bird', 100).attr('class', 'noDevsBird');
298 g.append('text').text('No devices are connected')
299 .attr({ x: 120, y: 80});
300
301 box = g.node().getBBox();
302 box.x -= box.width/2;
303 box.y -= box.height/2;
304 g.attr('transform', sus.translate(box.x, box.y));
305
306 showNoDevs(true);
307 }
308
309 function showNoDevs(b) {
Simon Hunt18bf9822015-02-12 17:35:45 -0800310 sus.visible(noDevsLayer, b);
Simon Hunt7c8ab8d2015-02-03 15:05:15 -0800311 }
312
Simon Hunt2362b072015-06-11 20:08:22 -0700313
314 var countryFilters = {
Simon Hunt2362b072015-06-11 20:08:22 -0700315 s_america: function (c) {
316 return c.properties.continent === 'South America';
317 },
318
Simon Huntac099e82015-12-03 09:17:47 -0800319 ns_america: function (c) {
320 return c.properties.custom === 'US-cont' ||
321 c.properties.subregion === 'Central America' ||
Simon Huntd4712622015-12-02 11:19:50 -0800322 c.properties.continent === 'South America';
323 },
324
Simon Hunt2362b072015-06-11 20:08:22 -0700325 japan: function (c) {
326 return c.properties.geounit === 'Japan';
327 },
328
329 europe: function (c) {
330 return c.properties.continent === 'Europe';
331 },
332
333 italy: function (c) {
334 return c.properties.geounit === 'Italy';
335 },
336
337 uk: function (c) {
338 // technically, Ireland is not part of the United Kingdom,
339 // but the map looks weird without it showing.
340 return c.properties.adm0_a3 === 'GBR' ||
341 c.properties.adm0_a3 === 'IRL';
Simon Hunt1178d5b2015-09-02 17:02:37 -0700342 },
343
344 s_korea: function (c) {
345 return c.properties.adm0_a3 === 'KOR';
346 },
347
348 australia: function (c) {
349 return c.properties.adm0_a3 === 'AUS';
Simon Hunt2362b072015-06-11 20:08:22 -0700350 }
351 };
352
Simon Hunta34fcb52016-02-25 16:27:32 -0800353 var tintOn = 0,
354 shadeFlip = 0,
355 shadePalette = {
356 light: {
357 sea: 'aliceblue',
358 land: 'white',
359 outline: '#ddd'
360 },
361 dark: {
362 sea: '#001830',
363 land: '#232331',
364 outline: '#3a3a3a'
365 }
366 };
367
368 function shading() {
369 return tintOn ? {
370 palette: shadePalette[th.theme()],
371 flip: shadeFlip
372 } : '';
373 }
Simon Hunt2362b072015-06-11 20:08:22 -0700374
Thomas Vachuska26be4f32016-03-31 01:10:27 -0700375 function setMap(map) {
376 ps.setPrefs('topo_mapid', map);
Simon Hunt90053ed2016-04-06 12:49:02 -0700377 setUpMap();
Thomas Vachuska26be4f32016-03-31 01:10:27 -0700378 opacifyMap(true);
379 }
380
381 function currentMap() {
382 return ps.getPrefs(
383 'topo_mapid',
Steven Burrows3a9a6442016-05-05 15:31:16 +0100384 {
385 mapid: 'usa',
386 mapscale: 1,
387 mapfilepath: '*continental_us',
388 tint: 'off'
389 },
Thomas Vachuska26be4f32016-03-31 01:10:27 -0700390 $loc.search()
391 );
392 }
393
Simon Hunt90053ed2016-04-06 12:49:02 -0700394 function setUpMap() {
Thomas Vachuska26be4f32016-03-31 01:10:27 -0700395 var prefs = currentMap(),
Simon Hunt8a119b02016-03-29 16:00:32 -0700396 mapId = prefs.mapid,
Steven Burrows3a9a6442016-05-05 15:31:16 +0100397 mapFilePath = prefs.mapfilepath,
Simon Hunt8a119b02016-03-29 16:00:32 -0700398 mapScale = prefs.mapscale,
399 tint = prefs.tint,
Simon Hunt2362b072015-06-11 20:08:22 -0700400 promise,
Simon Huntfacad992016-02-25 09:58:33 -0800401 cfilter;
Simon Hunt2362b072015-06-11 20:08:22 -0700402
Simon Hunta34fcb52016-02-25 16:27:32 -0800403 tintOn = tint === 'on' ? 1 : 0;
404
Simon Hunt18491362016-03-04 11:09:42 -0800405 $log.debug('setUpMap() mapId:', mapId, ', mapScale:', mapScale,
406 ', tint:', tint);
407
Thomas Vachuska26be4f32016-03-31 01:10:27 -0700408 mapG = d3.select('#topo-map');
409 if (mapG.empty()) {
410 mapG = zoomLayer.append('g').attr('id', 'topo-map');
411 } else {
412 mapG.each(function(d,i) {
413 d3.selectAll(this.childNodes).remove();
414 });
415 }
Steven Burrows3a9a6442016-05-05 15:31:16 +0100416
417 if (mapFilePath === '*countries') {
418
Simon Hunt90053ed2016-04-06 12:49:02 -0700419 cfilter = countryFilters[mapId] || countryFilters.uk;
Steven Burrows3a9a6442016-05-05 15:31:16 +0100420
Simon Hunta34fcb52016-02-25 16:27:32 -0800421 promise = ms.loadMapRegionInto(mapG, {
422 countryFilter: cfilter,
423 adjustScale: mapScale,
424 shading: shading()
425 });
Steven Burrows3a9a6442016-05-05 15:31:16 +0100426 } else {
427
428 promise = ms.loadMapInto(mapG, mapFilePath, mapId, {
429 adjustScale: mapScale,
430 shading: shading()
431 });
Simon Hunt2362b072015-06-11 20:08:22 -0700432 }
Steven Burrows3a9a6442016-05-05 15:31:16 +0100433
Simon Hunt8a119b02016-03-29 16:00:32 -0700434 ps.setPrefs('topo_mapid', prefs);
Simon Hunt2362b072015-06-11 20:08:22 -0700435 return promise;
Simon Hunt0541fb82015-01-14 18:59:57 -0800436 }
437
Simon Huntf51bf462016-06-29 16:22:57 -0700438 function mapReshader() {
439 $log.debug('... Re-shading map ...')
440 ms.reshade(shading());
441 }
442
Simon Hunta34fcb52016-02-25 16:27:32 -0800443 // set up theme listener to re-shade the map when required.
444 function mapShader(on) {
445 if (on) {
Simon Huntf51bf462016-06-29 16:22:57 -0700446 th.addListener(mapReshader);
Simon Hunta34fcb52016-02-25 16:27:32 -0800447 } else {
Simon Huntf51bf462016-06-29 16:22:57 -0700448 th.removeListener(mapReshader);
Simon Hunta34fcb52016-02-25 16:27:32 -0800449 }
450 }
451
Simon Huntc3c5b672015-02-20 11:32:13 -0800452 function opacifyMap(b) {
453 mapG.transition()
454 .duration(1000)
455 .attr('opacity', b ? 1 : 0);
456 }
Simon Hunt737c89f2015-01-28 12:23:19 -0800457
Simon Hunt90053ed2016-04-06 12:49:02 -0700458 function setUpSprites() {
Simon Hunt8a119b02016-03-29 16:00:32 -0700459 var prefs = ps.getPrefs('topo_sprites', { sprites: '' }, $loc.search()),
460 sprId = prefs.sprites;
Simon Huntf9fc0e72015-04-16 15:10:57 -0700461
462 spriteG = zoomLayer.append ('g').attr('id', 'topo-sprites');
463 if (sprId) {
Simon Hunt8a119b02016-03-29 16:00:32 -0700464 ps.setPrefs('topo_sprites', prefs);
Simon Huntf9fc0e72015-04-16 15:10:57 -0700465 tspr.loadSprites(spriteG, defs, sprId);
466 }
467 }
Simon Hunt9c1c45e2015-04-10 13:38:27 -0700468
Simon Huntc7ae7952015-04-08 18:59:27 -0700469 // --- User Preferemces ----------------------------------------------
Simon Hunt36a58c62015-04-08 11:00:07 -0700470
Simon Huntc7ae7952015-04-08 18:59:27 -0700471 var prefsState = {};
Simon Hunt36a58c62015-04-08 11:00:07 -0700472
Simon Huntc7ae7952015-04-08 18:59:27 -0700473 function updatePrefsState(what, b) {
474 prefsState[what] = b ? 1 : 0;
475 ps.setPrefs('topo_prefs', prefsState);
Simon Hunt36a58c62015-04-08 11:00:07 -0700476 }
477
Simon Hunt36a58c62015-04-08 11:00:07 -0700478
Simon Huntc7ae7952015-04-08 18:59:27 -0700479 function restoreConfigFromPrefs() {
480 // NOTE: toolbar will have set this for us..
Simon Huntfc5c5842017-02-01 23:32:18 -0800481 prefsState = ps.asNumbers(
482 ps.getPrefs('topo_prefs', ttbs.defaultPrefs), ['ovid'], true
483 );
Simon Hunt36a58c62015-04-08 11:00:07 -0700484
Simon Hunte1ce4292015-06-12 13:07:02 -0700485 $log.debug('TOPO- Prefs State:', prefsState);
Simon Huntc7ae7952015-04-08 18:59:27 -0700486
Simon Huntf41f3092015-04-16 10:33:26 -0700487 flash.enable(false);
Simon Huntc7ae7952015-04-08 18:59:27 -0700488 toggleInstances(prefsState.insts);
Simon Huntee7a3ce2015-04-09 13:28:37 -0700489 toggleSummary(prefsState.summary);
Simon Hunt239e5882015-04-23 15:07:04 -0700490 toggleUseDetailsFlag(prefsState.detail);
Bri Prebilic Cole9b80ca02015-08-03 11:26:54 -0700491 toggleHosts(prefsState.hosts);
492 toggleOffline(prefsState.offdev);
493 togglePorts(prefsState.porthl);
494 toggleMap(prefsState.bg);
Simon Huntf9fc0e72015-04-16 15:10:57 -0700495 toggleSprites(prefsState.spr);
Thomas Vachuska0af26912016-03-21 21:37:30 -0700496 t3s.setDevLabIndex(prefsState.dlbls);
Simon Huntf41f3092015-04-16 10:33:26 -0700497 flash.enable(true);
Simon Hunt36a58c62015-04-08 11:00:07 -0700498 }
499
500
Simon Hunte1ce4292015-06-12 13:07:02 -0700501 // somewhat hackish, because summary update cannot happen until we
502 // have opened the websocket to the server; hence this extra function
503 // invoked after tes.start()
504 function restoreSummaryFromPrefs() {
Simon Huntfc5c5842017-02-01 23:32:18 -0800505 prefsState = ps.asNumbers(
506 ps.getPrefs('topo_prefs', ttbs.defaultPrefs), ['ovid'], true
507 );
Simon Hunte1ce4292015-06-12 13:07:02 -0700508 $log.debug('TOPO- Prefs SUMMARY State:', prefsState.summary);
509
510 flash.enable(false);
511 toggleSummary(prefsState.summary);
512 flash.enable(true);
513 }
514
Simon Hunt8419efd2017-01-12 12:36:28 -0800515 // initial set of topo events received, now do post-processing
Simon Hunt4a6b54b2015-10-27 22:08:25 -0700516 function topoStartDone() {
Simon Hunt8419efd2017-01-12 12:36:28 -0800517 // give a small delay before attempting to reselect node(s) and
518 // highlight elements, since they have to be re-added to the DOM first...
Simon Hunt7faabd52016-08-18 16:16:19 -0700519 $timeout(function () {
Simon Hunt8419efd2017-01-12 12:36:28 -0800520 $log.debug('^^ topo.topoStartDone() ^^');
521
522 // reselect the previous selection...
Simon Hunt7faabd52016-08-18 16:16:19 -0700523 tss.reselect();
Simon Hunt8419efd2017-01-12 12:36:28 -0800524
525 // if an intent should be shown, invoke the appropriate callback
526 if ($scope.intentData) {
Simon Hunt8419efd2017-01-12 12:36:28 -0800527 tov.hooks.showIntent($scope.intentData);
Simon Hunt7faabd52016-08-18 16:16:19 -0700528 }
Simon Hunt8419efd2017-01-12 12:36:28 -0800529
Simon Hunt7faabd52016-08-18 16:16:19 -0700530 }, 200);
Simon Hunt4a6b54b2015-10-27 22:08:25 -0700531 }
Simon Hunte1ce4292015-06-12 13:07:02 -0700532
Simon Huntcacce342015-01-07 16:13:05 -0800533 // --- Controller Definition -----------------------------------------
534
Simon Hunt6cc53692015-01-07 11:33:45 -0800535 angular.module('ovTopo', moduleDependencies)
Simon Hunt237676b52015-03-10 19:04:26 -0700536 .controller('OvTopoCtrl', ['$scope', '$log', '$location', '$timeout',
Simon Hunt36a58c62015-04-08 11:00:07 -0700537 '$cookies', 'FnService', 'MastService', 'KeyService', 'ZoomService',
Simon Hunt0e48c292015-02-19 16:11:37 -0800538 'GlyphService', 'MapService', 'SvgUtilService', 'FlashService',
Simon Hunta34fcb52016-02-25 16:27:32 -0800539 'WebSocketService', 'PrefsService', 'ThemeService',
Thomas Vachuska0af26912016-03-21 21:37:30 -0700540 'TopoDialogService', 'TopoD3Service',
Simon Huntb0ec1e52015-01-28 18:13:49 -0800541 'TopoEventService', 'TopoForceService', 'TopoPanelService',
Simon Hunt0c6b2d32015-03-26 17:46:29 -0700542 'TopoInstService', 'TopoSelectService', 'TopoLinkService',
Bri Prebilic Coleb5f2b152015-04-07 14:58:09 -0700543 'TopoTrafficService', 'TopoObliqueService', 'TopoFilterService',
Thomas Vachuska26be4f32016-03-31 01:10:27 -0700544 'TopoToolbarService', 'TopoMapService', 'TopoSpriteService',
545 'TooltipService', 'TopoOverlayService',
Simon Hunt6cc53692015-01-07 11:33:45 -0800546
Simon Hunt7faabd52016-08-18 16:16:19 -0700547 function (_$scope_, _$log_, _$loc_, _$timeout_, _$cookies_, _fs_, mast, _ks_,
Simon Hunta34fcb52016-02-25 16:27:32 -0800548 _zs_, _gs_, _ms_, _sus_, _flash_, _wss_, _ps_, _th_,
Thomas Vachuska0af26912016-03-21 21:37:30 -0700549 _tds_, _t3s_, _tes_,
Simon Hunta211f7f2015-11-09 12:48:23 -0800550 _tfs_, _tps_, _tis_, _tss_, _tls_, _tts_, _tos_, _fltr_,
Thomas Vachuska26be4f32016-03-31 01:10:27 -0700551 _ttbs_, _tms_, _tspr_, _ttip_, _tov_) {
Simon Huntfc5c5842017-02-01 23:32:18 -0800552
Thomas Vachuska26be4f32016-03-31 01:10:27 -0700553 var params = _$loc_.search(),
Simon Huntfc5c5842017-02-01 23:32:18 -0800554 selOverlay = params.overlayId,
Simon Hunt4a6b54b2015-10-27 22:08:25 -0700555 projection,
Simon Hunt3a6eec02015-02-09 21:16:43 -0800556 dim,
Simon Hunt1894d792015-02-04 17:09:20 -0800557 uplink = {
558 // provides function calls back into this space
559 showNoDevs: showNoDevs,
560 projection: function () { return projection; },
Simon Huntc3c5b672015-02-20 11:32:13 -0800561 zoomLayer: function () { return zoomLayer; },
Simon Huntfb8ea1f2015-02-24 21:38:09 -0800562 zoomer: function () { return zoomer; },
Simon Hunt4a6b54b2015-10-27 22:08:25 -0700563 opacifyMap: opacifyMap,
564 topoStartDone: topoStartDone
Simon Huntac4c6f72015-02-03 19:50:53 -0800565 };
566
Bri Prebilic Cole068814d2015-05-14 16:06:38 -0700567 $scope = _$scope_;
Simon Hunt6cc53692015-01-07 11:33:45 -0800568 $log = _$log_;
Thomas Vachuska26be4f32016-03-31 01:10:27 -0700569 $loc = _$loc_;
Simon Hunt7faabd52016-08-18 16:16:19 -0700570 $timeout = _$timeout_;
Simon Hunt36a58c62015-04-08 11:00:07 -0700571 $cookies = _$cookies_;
Simon Hunta11b4eb2015-01-28 16:20:50 -0800572 fs = _fs_;
Simon Hunt6cc53692015-01-07 11:33:45 -0800573 ks = _ks_;
Simon Huntcacce342015-01-07 16:13:05 -0800574 zs = _zs_;
Simon Hunt6cc53692015-01-07 11:33:45 -0800575 gs = _gs_;
Simon Hunt1e8eff42015-01-08 17:19:02 -0800576 ms = _ms_;
Simon Hunt7c8ab8d2015-02-03 15:05:15 -0800577 sus = _sus_;
Simon Hunt0e48c292015-02-19 16:11:37 -0800578 flash = _flash_;
Simon Hunt237676b52015-03-10 19:04:26 -0700579 wss = _wss_;
Simon Huntc7ae7952015-04-08 18:59:27 -0700580 ps = _ps_;
Simon Hunta34fcb52016-02-25 16:27:32 -0800581 th = _th_;
Simon Hunta211f7f2015-11-09 12:48:23 -0800582 tds = _tds_;
Thomas Vachuska0af26912016-03-21 21:37:30 -0700583 t3s = _t3s_;
Simon Huntc252aa62015-02-10 16:45:39 -0800584 tes = _tes_;
Simon Hunt737c89f2015-01-28 12:23:19 -0800585 tfs = _tfs_;
Simon Hunt96f88c62015-02-19 17:57:25 -0800586 // TODO: consider funnelling actions through TopoForceService...
587 // rather than injecting references to these 'sub-modules',
588 // just so we can invoke functions on them.
Simon Huntc252aa62015-02-10 16:45:39 -0800589 tps = _tps_;
Simon Huntac4c6f72015-02-03 19:50:53 -0800590 tis = _tis_;
Thomas Vachuska26be4f32016-03-31 01:10:27 -0700591 tms = _tms_;
Simon Hunt6036b192015-02-11 11:20:26 -0800592 tss = _tss_;
Simon Hunt0c6b2d32015-03-26 17:46:29 -0700593 tls = _tls_;
Simon Huntf542d842015-02-11 16:20:33 -0800594 tts = _tts_;
Simon Hunt96f88c62015-02-19 17:57:25 -0800595 tos = _tos_;
Bri Prebilic Coleb5f2b152015-04-07 14:58:09 -0700596 fltr = _fltr_;
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -0700597 ttbs = _ttbs_;
Simon Hunta4281242016-02-26 20:18:45 -0800598 tspr = _tspr_;
Bri Prebilic Cole8f07f0d2015-04-23 13:28:43 -0700599 ttip = _ttip_;
Simon Hunt72e44bf2015-07-21 21:34:20 -0700600 tov = _tov_;
Simon Huntef31fb22014-12-19 13:16:44 -0800601
Thomas Vachuska26be4f32016-03-31 01:10:27 -0700602 tms.start({
603 toggleMap: toggleMap,
604 currentMap: currentMap,
605 setMap: setMap
606 });
607
Simon Hunt441c9ae2017-02-03 18:22:31 -0800608 // pull intent data from the query string...
Viswanath KSP0f297702016-08-13 18:02:43 +0530609 if (params.key && params.appId && params.appName) {
Simon Hunt4a6b54b2015-10-27 22:08:25 -0700610 $scope.intentData = {
Viswanath KSP0f297702016-08-13 18:02:43 +0530611 key: params.key,
612 appId: params.appId,
Simon Hunt441c9ae2017-02-03 18:22:31 -0800613 appName: params.appName,
614 intentType: params.intentType
Simon Hunt4a6b54b2015-10-27 22:08:25 -0700615 };
616 }
617
Bri Prebilic Cole068814d2015-05-14 16:06:38 -0700618 $scope.notifyResize = function () {
Simon Huntb0ec1e52015-01-28 18:13:49 -0800619 svgResized(fs.windowSize(mast.mastHeight()));
Simon Hunt426bd862015-01-14 16:48:41 -0800620 };
Simon Huntef31fb22014-12-19 13:16:44 -0800621
Simon Hunt54442fa2015-01-26 14:17:38 -0800622 // Cleanup on destroyed scope..
Simon Hunt584122a2015-01-21 15:32:40 -0800623 $scope.$on('$destroy', function () {
624 $log.log('OvTopoCtrl is saying Buh-Bye!');
Thomas Vachuska329af532015-03-10 02:08:33 -0700625 tes.stop();
Thomas Vachuska26be4f32016-03-31 01:10:27 -0700626 tms.stop();
Bri Prebilic Cole9dcaea52015-07-21 14:39:48 -0700627 ks.unbindKeys();
Simon Hunt626d2102015-01-29 11:54:50 -0800628 tps.destroyPanels();
Simon Hunta211f7f2015-11-09 12:48:23 -0800629 tds.closeDialog();
Simon Hunt4b668592015-01-29 17:33:53 -0800630 tis.destroyInst();
Simon Hunt3a6eec02015-02-09 21:16:43 -0800631 tfs.destroyForce();
Bri Prebilic Coled6219052015-03-19 14:34:02 -0700632 ttbs.destroyToolbar();
Simon Hunta34fcb52016-02-25 16:27:32 -0800633 mapShader(false);
Simon Hunt584122a2015-01-21 15:32:40 -0800634 });
635
Simon Huntcacce342015-01-07 16:13:05 -0800636 // svg layer and initialization of components
Simon Hunt426bd862015-01-14 16:48:41 -0800637 ovtopo = d3.select('#ov-topo');
638 svg = ovtopo.select('svg');
Simon Hunta11b4eb2015-01-28 16:20:50 -0800639 // set the svg size to match that of the window, less the masthead
640 svg.attr(fs.windowSize(mast.mastHeight()));
Simon Hunt3a6eec02015-02-09 21:16:43 -0800641 dim = [svg.attr('width'), svg.attr('height')];
Simon Hunt426bd862015-01-14 16:48:41 -0800642
Simon Hunt6cc53692015-01-07 11:33:45 -0800643 setUpKeys();
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -0700644 setUpToolbar();
Simon Hunt6cc53692015-01-07 11:33:45 -0800645 setUpDefs();
Simon Huntcacce342015-01-07 16:13:05 -0800646 setUpZoom();
Simon Hunt7c8ab8d2015-02-03 15:05:15 -0800647 setUpNoDevs();
Simon Hunt90053ed2016-04-06 12:49:02 -0700648 setUpMap().then(
Simon Hunt1894d792015-02-04 17:09:20 -0800649 function (proj) {
Thomas Vachuska0af26912016-03-21 21:37:30 -0700650 var z = ps.getPrefs('topo_zoom', { tx:0, ty:0, sc:1 });
Simon Huntbb5e0d82015-04-16 14:25:46 -0700651 zoomer.panZoom([z.tx, z.ty], z.sc);
652 $log.debug('** Zoom restored:', z);
653
Simon Hunt1894d792015-02-04 17:09:20 -0800654 projection = proj;
Simon Huntbb5e0d82015-04-16 14:25:46 -0700655 $log.debug('** We installed the projection:', proj);
Simon Huntf41f3092015-04-16 10:33:26 -0700656 flash.enable(false);
Simon Huntc7ae7952015-04-08 18:59:27 -0700657 toggleMap(prefsState.bg);
Simon Huntf41f3092015-04-16 10:33:26 -0700658 flash.enable(true);
Simon Hunta34fcb52016-02-25 16:27:32 -0800659 mapShader(true);
Simon Hunte1ce4292015-06-12 13:07:02 -0700660
661 // now we have the map projection, we are ready for
662 // the server to send us device/host data...
663 tes.start();
664 // need to do the following so we immediately get
665 // the summary panel data back from the server
666 restoreSummaryFromPrefs();
Simon Hunt1894d792015-02-04 17:09:20 -0800667 }
668 );
Simon Hunta4281242016-02-26 20:18:45 -0800669 tes.bindHandlers();
Simon Hunt90053ed2016-04-06 12:49:02 -0700670 setUpSprites();
Simon Huntfd1231a2015-01-26 22:14:51 -0800671
Simon Hunt1894d792015-02-04 17:09:20 -0800672 forceG = zoomLayer.append('g').attr('id', 'topo-force');
Simon Huntfb8ea1f2015-02-24 21:38:09 -0800673 tfs.initForce(svg, forceG, uplink, dim);
Simon Hunta142dd22015-02-12 22:07:51 -0800674 tis.initInst({ showMastership: tfs.showMastership });
Simon Hunt237676b52015-03-10 19:04:26 -0700675 tps.initPanels();
Simon Hunt6cc53692015-01-07 11:33:45 -0800676
Simon Huntc7ae7952015-04-08 18:59:27 -0700677 restoreConfigFromPrefs();
Simon Huntfc5c5842017-02-01 23:32:18 -0800678
679 ttbs.selectOverlay(selOverlay || prefsState.ovid);
Simon Hunt36a58c62015-04-08 11:00:07 -0700680
Simon Hunt72e44bf2015-07-21 21:34:20 -0700681 $log.debug('registered overlays...', tov.list());
Simon Hunt6cc53692015-01-07 11:33:45 -0800682 $log.log('OvTopoCtrl has been created');
Simon Huntef31fb22014-12-19 13:16:44 -0800683 }]);
684}());