blob: 14ca96ff64163689c3d33cfb24604dda881ff0ba [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');
Simon Huntcacce342015-01-07 16:13:05 -0800265 }
266
267 function setUpZoom() {
Simon Hunta7b6a6b2015-01-13 19:53:09 -0800268 zoomLayer = svg.append('g').attr('id', 'topo-zoomlayer');
Simon Huntcacce342015-01-07 16:13:05 -0800269 zoomer = zs.createZoomer({
270 svg: svg,
271 zoomLayer: zoomLayer,
272 zoomEnabled: zoomEnabled,
273 zoomCallback: zoomCallback
274 });
275 }
276
277
Simon Hunt0541fb82015-01-14 18:59:57 -0800278 // callback invoked when the SVG view has been resized..
Simon Hunt3a6eec02015-02-09 21:16:43 -0800279 function svgResized(s) {
280 tfs.newDim([s.width, s.height]);
Simon Hunt0541fb82015-01-14 18:59:57 -0800281 }
282
Simon Hunta7b6a6b2015-01-13 19:53:09 -0800283 // --- Background Map ------------------------------------------------
284
Simon Hunt7c8ab8d2015-02-03 15:05:15 -0800285 function setUpNoDevs() {
286 var g, box;
287 noDevsLayer = svg.append('g').attr({
288 id: 'topo-noDevsLayer',
289 transform: sus.translate(500,500)
290 });
291 // Note, SVG viewbox is '0 0 1000 1000', defined in topo.html.
292 // We are translating this layer to have its origin at the center
293
294 g = noDevsLayer.append('g');
295 gs.addGlyph(g, 'bird', 100).attr('class', 'noDevsBird');
296 g.append('text').text('No devices are connected')
297 .attr({ x: 120, y: 80});
298
299 box = g.node().getBBox();
300 box.x -= box.width/2;
301 box.y -= box.height/2;
302 g.attr('transform', sus.translate(box.x, box.y));
303
304 showNoDevs(true);
305 }
306
307 function showNoDevs(b) {
Simon Hunt18bf9822015-02-12 17:35:45 -0800308 sus.visible(noDevsLayer, b);
Simon Hunt7c8ab8d2015-02-03 15:05:15 -0800309 }
310
Simon Hunt2362b072015-06-11 20:08:22 -0700311
312 var countryFilters = {
Simon Hunt2362b072015-06-11 20:08:22 -0700313 s_america: function (c) {
314 return c.properties.continent === 'South America';
315 },
316
Simon Huntac099e82015-12-03 09:17:47 -0800317 ns_america: function (c) {
318 return c.properties.custom === 'US-cont' ||
319 c.properties.subregion === 'Central America' ||
Simon Huntd4712622015-12-02 11:19:50 -0800320 c.properties.continent === 'South America';
321 },
322
Simon Hunt2362b072015-06-11 20:08:22 -0700323 japan: function (c) {
324 return c.properties.geounit === 'Japan';
325 },
326
327 europe: function (c) {
328 return c.properties.continent === 'Europe';
329 },
330
331 italy: function (c) {
332 return c.properties.geounit === 'Italy';
333 },
334
335 uk: function (c) {
336 // technically, Ireland is not part of the United Kingdom,
337 // but the map looks weird without it showing.
338 return c.properties.adm0_a3 === 'GBR' ||
339 c.properties.adm0_a3 === 'IRL';
Simon Hunt1178d5b2015-09-02 17:02:37 -0700340 },
341
342 s_korea: function (c) {
343 return c.properties.adm0_a3 === 'KOR';
344 },
345
346 australia: function (c) {
347 return c.properties.adm0_a3 === 'AUS';
Simon Hunt2362b072015-06-11 20:08:22 -0700348 }
349 };
350
Simon Hunta34fcb52016-02-25 16:27:32 -0800351 var tintOn = 0,
352 shadeFlip = 0,
353 shadePalette = {
354 light: {
355 sea: 'aliceblue',
356 land: 'white',
357 outline: '#ddd'
358 },
359 dark: {
360 sea: '#001830',
361 land: '#232331',
362 outline: '#3a3a3a'
363 }
364 };
365
366 function shading() {
367 return tintOn ? {
368 palette: shadePalette[th.theme()],
369 flip: shadeFlip
370 } : '';
371 }
Simon Hunt2362b072015-06-11 20:08:22 -0700372
Thomas Vachuska26be4f32016-03-31 01:10:27 -0700373 function setMap(map) {
374 ps.setPrefs('topo_mapid', map);
Simon Hunt90053ed2016-04-06 12:49:02 -0700375 setUpMap();
Thomas Vachuska26be4f32016-03-31 01:10:27 -0700376 opacifyMap(true);
377 }
378
379 function currentMap() {
380 return ps.getPrefs(
381 'topo_mapid',
Steven Burrows3a9a6442016-05-05 15:31:16 +0100382 {
383 mapid: 'usa',
384 mapscale: 1,
385 mapfilepath: '*continental_us',
386 tint: 'off'
387 },
Thomas Vachuska26be4f32016-03-31 01:10:27 -0700388 $loc.search()
389 );
390 }
391
Simon Hunt90053ed2016-04-06 12:49:02 -0700392 function setUpMap() {
Thomas Vachuska26be4f32016-03-31 01:10:27 -0700393 var prefs = currentMap(),
Simon Hunt8a119b02016-03-29 16:00:32 -0700394 mapId = prefs.mapid,
Steven Burrows3a9a6442016-05-05 15:31:16 +0100395 mapFilePath = prefs.mapfilepath,
Simon Hunt8a119b02016-03-29 16:00:32 -0700396 mapScale = prefs.mapscale,
397 tint = prefs.tint,
Simon Hunt2362b072015-06-11 20:08:22 -0700398 promise,
Simon Huntfacad992016-02-25 09:58:33 -0800399 cfilter;
Simon Hunt2362b072015-06-11 20:08:22 -0700400
Simon Hunta34fcb52016-02-25 16:27:32 -0800401 tintOn = tint === 'on' ? 1 : 0;
402
Simon Hunt18491362016-03-04 11:09:42 -0800403 $log.debug('setUpMap() mapId:', mapId, ', mapScale:', mapScale,
404 ', tint:', tint);
405
Thomas Vachuska26be4f32016-03-31 01:10:27 -0700406 mapG = d3.select('#topo-map');
407 if (mapG.empty()) {
408 mapG = zoomLayer.append('g').attr('id', 'topo-map');
409 } else {
410 mapG.each(function(d,i) {
411 d3.selectAll(this.childNodes).remove();
412 });
413 }
Steven Burrows3a9a6442016-05-05 15:31:16 +0100414
415 if (mapFilePath === '*countries') {
416
Simon Hunt90053ed2016-04-06 12:49:02 -0700417 cfilter = countryFilters[mapId] || countryFilters.uk;
Steven Burrows3a9a6442016-05-05 15:31:16 +0100418
Simon Hunta34fcb52016-02-25 16:27:32 -0800419 promise = ms.loadMapRegionInto(mapG, {
420 countryFilter: cfilter,
421 adjustScale: mapScale,
422 shading: shading()
423 });
Steven Burrows3a9a6442016-05-05 15:31:16 +0100424 } else {
425
426 promise = ms.loadMapInto(mapG, mapFilePath, mapId, {
427 adjustScale: mapScale,
428 shading: shading()
429 });
Simon Hunt2362b072015-06-11 20:08:22 -0700430 }
Steven Burrows3a9a6442016-05-05 15:31:16 +0100431
Simon Hunt8a119b02016-03-29 16:00:32 -0700432 ps.setPrefs('topo_mapid', prefs);
Simon Hunt2362b072015-06-11 20:08:22 -0700433 return promise;
Simon Hunt0541fb82015-01-14 18:59:57 -0800434 }
435
Simon Huntf51bf462016-06-29 16:22:57 -0700436 function mapReshader() {
437 $log.debug('... Re-shading map ...')
438 ms.reshade(shading());
439 }
440
Simon Hunta34fcb52016-02-25 16:27:32 -0800441 // set up theme listener to re-shade the map when required.
442 function mapShader(on) {
443 if (on) {
Simon Huntf51bf462016-06-29 16:22:57 -0700444 th.addListener(mapReshader);
Simon Hunta34fcb52016-02-25 16:27:32 -0800445 } else {
Simon Huntf51bf462016-06-29 16:22:57 -0700446 th.removeListener(mapReshader);
Simon Hunta34fcb52016-02-25 16:27:32 -0800447 }
448 }
449
Simon Huntc3c5b672015-02-20 11:32:13 -0800450 function opacifyMap(b) {
451 mapG.transition()
452 .duration(1000)
453 .attr('opacity', b ? 1 : 0);
454 }
Simon Hunt737c89f2015-01-28 12:23:19 -0800455
Simon Hunt90053ed2016-04-06 12:49:02 -0700456 function setUpSprites() {
Simon Hunt8a119b02016-03-29 16:00:32 -0700457 var prefs = ps.getPrefs('topo_sprites', { sprites: '' }, $loc.search()),
458 sprId = prefs.sprites;
Simon Huntf9fc0e72015-04-16 15:10:57 -0700459
460 spriteG = zoomLayer.append ('g').attr('id', 'topo-sprites');
461 if (sprId) {
Simon Hunt8a119b02016-03-29 16:00:32 -0700462 ps.setPrefs('topo_sprites', prefs);
Simon Huntf9fc0e72015-04-16 15:10:57 -0700463 tspr.loadSprites(spriteG, defs, sprId);
464 }
465 }
Simon Hunt9c1c45e2015-04-10 13:38:27 -0700466
Simon Huntc7ae7952015-04-08 18:59:27 -0700467 // --- User Preferemces ----------------------------------------------
Simon Hunt36a58c62015-04-08 11:00:07 -0700468
Simon Huntc7ae7952015-04-08 18:59:27 -0700469 var prefsState = {};
Simon Hunt36a58c62015-04-08 11:00:07 -0700470
Simon Huntc7ae7952015-04-08 18:59:27 -0700471 function updatePrefsState(what, b) {
472 prefsState[what] = b ? 1 : 0;
473 ps.setPrefs('topo_prefs', prefsState);
Simon Hunt36a58c62015-04-08 11:00:07 -0700474 }
475
Simon Hunt36a58c62015-04-08 11:00:07 -0700476
Simon Huntc7ae7952015-04-08 18:59:27 -0700477 function restoreConfigFromPrefs() {
478 // NOTE: toolbar will have set this for us..
Thomas Vachuska0af26912016-03-21 21:37:30 -0700479 prefsState = ps.asNumbers(ps.getPrefs('topo_prefs', ttbs.defaultPrefs));
Simon Hunt36a58c62015-04-08 11:00:07 -0700480
Simon Hunte1ce4292015-06-12 13:07:02 -0700481 $log.debug('TOPO- Prefs State:', prefsState);
Simon Huntc7ae7952015-04-08 18:59:27 -0700482
Simon Huntf41f3092015-04-16 10:33:26 -0700483 flash.enable(false);
Simon Huntc7ae7952015-04-08 18:59:27 -0700484 toggleInstances(prefsState.insts);
Simon Huntee7a3ce2015-04-09 13:28:37 -0700485 toggleSummary(prefsState.summary);
Simon Hunt239e5882015-04-23 15:07:04 -0700486 toggleUseDetailsFlag(prefsState.detail);
Bri Prebilic Cole9b80ca02015-08-03 11:26:54 -0700487 toggleHosts(prefsState.hosts);
488 toggleOffline(prefsState.offdev);
489 togglePorts(prefsState.porthl);
490 toggleMap(prefsState.bg);
Simon Huntf9fc0e72015-04-16 15:10:57 -0700491 toggleSprites(prefsState.spr);
Thomas Vachuska0af26912016-03-21 21:37:30 -0700492 t3s.setDevLabIndex(prefsState.dlbls);
Simon Huntf41f3092015-04-16 10:33:26 -0700493 flash.enable(true);
Simon Hunt36a58c62015-04-08 11:00:07 -0700494 }
495
496
Simon Hunte1ce4292015-06-12 13:07:02 -0700497 // somewhat hackish, because summary update cannot happen until we
498 // have opened the websocket to the server; hence this extra function
499 // invoked after tes.start()
500 function restoreSummaryFromPrefs() {
Thomas Vachuska0af26912016-03-21 21:37:30 -0700501 prefsState = ps.asNumbers(ps.getPrefs('topo_prefs', ttbs.defaultPrefs));
Simon Hunte1ce4292015-06-12 13:07:02 -0700502 $log.debug('TOPO- Prefs SUMMARY State:', prefsState.summary);
503
504 flash.enable(false);
505 toggleSummary(prefsState.summary);
506 flash.enable(true);
507 }
508
Simon Hunt4a6b54b2015-10-27 22:08:25 -0700509 function topoStartDone() {
510 var d = $scope.intentData;
Simon Hunt7faabd52016-08-18 16:16:19 -0700511 // give a small delay before attempting to reselect node(s) and stuff
512 // since they have to be re-added to the DOM first...
513 $timeout(function () {
514 tss.reselect();
515 if (d) {
516 tts.selectIntent(d);
517 }
518 }, 200);
Simon Hunt4a6b54b2015-10-27 22:08:25 -0700519 }
Simon Hunte1ce4292015-06-12 13:07:02 -0700520
Simon Huntcacce342015-01-07 16:13:05 -0800521 // --- Controller Definition -----------------------------------------
522
Simon Hunt6cc53692015-01-07 11:33:45 -0800523 angular.module('ovTopo', moduleDependencies)
Simon Hunt237676b52015-03-10 19:04:26 -0700524 .controller('OvTopoCtrl', ['$scope', '$log', '$location', '$timeout',
Simon Hunt36a58c62015-04-08 11:00:07 -0700525 '$cookies', 'FnService', 'MastService', 'KeyService', 'ZoomService',
Simon Hunt0e48c292015-02-19 16:11:37 -0800526 'GlyphService', 'MapService', 'SvgUtilService', 'FlashService',
Simon Hunta34fcb52016-02-25 16:27:32 -0800527 'WebSocketService', 'PrefsService', 'ThemeService',
Thomas Vachuska0af26912016-03-21 21:37:30 -0700528 'TopoDialogService', 'TopoD3Service',
Simon Huntb0ec1e52015-01-28 18:13:49 -0800529 'TopoEventService', 'TopoForceService', 'TopoPanelService',
Simon Hunt0c6b2d32015-03-26 17:46:29 -0700530 'TopoInstService', 'TopoSelectService', 'TopoLinkService',
Bri Prebilic Coleb5f2b152015-04-07 14:58:09 -0700531 'TopoTrafficService', 'TopoObliqueService', 'TopoFilterService',
Thomas Vachuska26be4f32016-03-31 01:10:27 -0700532 'TopoToolbarService', 'TopoMapService', 'TopoSpriteService',
533 'TooltipService', 'TopoOverlayService',
Simon Hunt6cc53692015-01-07 11:33:45 -0800534
Simon Hunt7faabd52016-08-18 16:16:19 -0700535 function (_$scope_, _$log_, _$loc_, _$timeout_, _$cookies_, _fs_, mast, _ks_,
Simon Hunta34fcb52016-02-25 16:27:32 -0800536 _zs_, _gs_, _ms_, _sus_, _flash_, _wss_, _ps_, _th_,
Thomas Vachuska0af26912016-03-21 21:37:30 -0700537 _tds_, _t3s_, _tes_,
Simon Hunta211f7f2015-11-09 12:48:23 -0800538 _tfs_, _tps_, _tis_, _tss_, _tls_, _tts_, _tos_, _fltr_,
Thomas Vachuska26be4f32016-03-31 01:10:27 -0700539 _ttbs_, _tms_, _tspr_, _ttip_, _tov_) {
540 var params = _$loc_.search(),
Simon Hunt4a6b54b2015-10-27 22:08:25 -0700541 projection,
Simon Hunt3a6eec02015-02-09 21:16:43 -0800542 dim,
Simon Hunt1894d792015-02-04 17:09:20 -0800543 uplink = {
544 // provides function calls back into this space
545 showNoDevs: showNoDevs,
546 projection: function () { return projection; },
Simon Huntc3c5b672015-02-20 11:32:13 -0800547 zoomLayer: function () { return zoomLayer; },
Simon Huntfb8ea1f2015-02-24 21:38:09 -0800548 zoomer: function () { return zoomer; },
Simon Hunt4a6b54b2015-10-27 22:08:25 -0700549 opacifyMap: opacifyMap,
550 topoStartDone: topoStartDone
Simon Huntac4c6f72015-02-03 19:50:53 -0800551 };
552
Bri Prebilic Cole068814d2015-05-14 16:06:38 -0700553 $scope = _$scope_;
Simon Hunt6cc53692015-01-07 11:33:45 -0800554 $log = _$log_;
Thomas Vachuska26be4f32016-03-31 01:10:27 -0700555 $loc = _$loc_;
Simon Hunt7faabd52016-08-18 16:16:19 -0700556 $timeout = _$timeout_;
Simon Hunt36a58c62015-04-08 11:00:07 -0700557 $cookies = _$cookies_;
Simon Hunta11b4eb2015-01-28 16:20:50 -0800558 fs = _fs_;
Simon Hunt6cc53692015-01-07 11:33:45 -0800559 ks = _ks_;
Simon Huntcacce342015-01-07 16:13:05 -0800560 zs = _zs_;
Simon Hunt6cc53692015-01-07 11:33:45 -0800561 gs = _gs_;
Simon Hunt1e8eff42015-01-08 17:19:02 -0800562 ms = _ms_;
Simon Hunt7c8ab8d2015-02-03 15:05:15 -0800563 sus = _sus_;
Simon Hunt0e48c292015-02-19 16:11:37 -0800564 flash = _flash_;
Simon Hunt237676b52015-03-10 19:04:26 -0700565 wss = _wss_;
Simon Huntc7ae7952015-04-08 18:59:27 -0700566 ps = _ps_;
Simon Hunta34fcb52016-02-25 16:27:32 -0800567 th = _th_;
Simon Hunta211f7f2015-11-09 12:48:23 -0800568 tds = _tds_;
Thomas Vachuska0af26912016-03-21 21:37:30 -0700569 t3s = _t3s_;
Simon Huntc252aa62015-02-10 16:45:39 -0800570 tes = _tes_;
Simon Hunt737c89f2015-01-28 12:23:19 -0800571 tfs = _tfs_;
Simon Hunt96f88c62015-02-19 17:57:25 -0800572 // TODO: consider funnelling actions through TopoForceService...
573 // rather than injecting references to these 'sub-modules',
574 // just so we can invoke functions on them.
Simon Huntc252aa62015-02-10 16:45:39 -0800575 tps = _tps_;
Simon Huntac4c6f72015-02-03 19:50:53 -0800576 tis = _tis_;
Thomas Vachuska26be4f32016-03-31 01:10:27 -0700577 tms = _tms_;
Simon Hunt6036b192015-02-11 11:20:26 -0800578 tss = _tss_;
Simon Hunt0c6b2d32015-03-26 17:46:29 -0700579 tls = _tls_;
Simon Huntf542d842015-02-11 16:20:33 -0800580 tts = _tts_;
Simon Hunt96f88c62015-02-19 17:57:25 -0800581 tos = _tos_;
Bri Prebilic Coleb5f2b152015-04-07 14:58:09 -0700582 fltr = _fltr_;
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -0700583 ttbs = _ttbs_;
Simon Hunta4281242016-02-26 20:18:45 -0800584 tspr = _tspr_;
Bri Prebilic Cole8f07f0d2015-04-23 13:28:43 -0700585 ttip = _ttip_;
Simon Hunt72e44bf2015-07-21 21:34:20 -0700586 tov = _tov_;
Simon Huntef31fb22014-12-19 13:16:44 -0800587
Thomas Vachuska26be4f32016-03-31 01:10:27 -0700588 tms.start({
589 toggleMap: toggleMap,
590 currentMap: currentMap,
591 setMap: setMap
592 });
593
Viswanath KSP0f297702016-08-13 18:02:43 +0530594 if (params.key && params.appId && params.appName) {
Simon Hunt4a6b54b2015-10-27 22:08:25 -0700595 $scope.intentData = {
Viswanath KSP0f297702016-08-13 18:02:43 +0530596 key: params.key,
597 appId: params.appId,
598 appName: params.appName
Simon Hunt4a6b54b2015-10-27 22:08:25 -0700599 };
600 }
601
Bri Prebilic Cole068814d2015-05-14 16:06:38 -0700602 $scope.notifyResize = function () {
Simon Huntb0ec1e52015-01-28 18:13:49 -0800603 svgResized(fs.windowSize(mast.mastHeight()));
Simon Hunt426bd862015-01-14 16:48:41 -0800604 };
Simon Huntef31fb22014-12-19 13:16:44 -0800605
Simon Hunt54442fa2015-01-26 14:17:38 -0800606 // Cleanup on destroyed scope..
Simon Hunt584122a2015-01-21 15:32:40 -0800607 $scope.$on('$destroy', function () {
608 $log.log('OvTopoCtrl is saying Buh-Bye!');
Thomas Vachuska329af532015-03-10 02:08:33 -0700609 tes.stop();
Thomas Vachuska26be4f32016-03-31 01:10:27 -0700610 tms.stop();
Bri Prebilic Cole9dcaea52015-07-21 14:39:48 -0700611 ks.unbindKeys();
Simon Hunt626d2102015-01-29 11:54:50 -0800612 tps.destroyPanels();
Simon Hunta211f7f2015-11-09 12:48:23 -0800613 tds.closeDialog();
Simon Hunt4b668592015-01-29 17:33:53 -0800614 tis.destroyInst();
Simon Hunt3a6eec02015-02-09 21:16:43 -0800615 tfs.destroyForce();
Bri Prebilic Coled6219052015-03-19 14:34:02 -0700616 ttbs.destroyToolbar();
Simon Hunta34fcb52016-02-25 16:27:32 -0800617 mapShader(false);
Simon Hunt584122a2015-01-21 15:32:40 -0800618 });
619
Simon Huntcacce342015-01-07 16:13:05 -0800620 // svg layer and initialization of components
Simon Hunt426bd862015-01-14 16:48:41 -0800621 ovtopo = d3.select('#ov-topo');
622 svg = ovtopo.select('svg');
Simon Hunta11b4eb2015-01-28 16:20:50 -0800623 // set the svg size to match that of the window, less the masthead
624 svg.attr(fs.windowSize(mast.mastHeight()));
Simon Hunt3a6eec02015-02-09 21:16:43 -0800625 dim = [svg.attr('width'), svg.attr('height')];
Simon Hunt426bd862015-01-14 16:48:41 -0800626
Simon Hunt6cc53692015-01-07 11:33:45 -0800627 setUpKeys();
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -0700628 setUpToolbar();
Simon Hunt6cc53692015-01-07 11:33:45 -0800629 setUpDefs();
Simon Huntcacce342015-01-07 16:13:05 -0800630 setUpZoom();
Simon Hunt7c8ab8d2015-02-03 15:05:15 -0800631 setUpNoDevs();
Simon Hunt90053ed2016-04-06 12:49:02 -0700632 setUpMap().then(
Simon Hunt1894d792015-02-04 17:09:20 -0800633 function (proj) {
Thomas Vachuska0af26912016-03-21 21:37:30 -0700634 var z = ps.getPrefs('topo_zoom', { tx:0, ty:0, sc:1 });
Simon Huntbb5e0d82015-04-16 14:25:46 -0700635 zoomer.panZoom([z.tx, z.ty], z.sc);
636 $log.debug('** Zoom restored:', z);
637
Simon Hunt1894d792015-02-04 17:09:20 -0800638 projection = proj;
Simon Huntbb5e0d82015-04-16 14:25:46 -0700639 $log.debug('** We installed the projection:', proj);
Simon Huntf41f3092015-04-16 10:33:26 -0700640 flash.enable(false);
Simon Huntc7ae7952015-04-08 18:59:27 -0700641 toggleMap(prefsState.bg);
Simon Huntf41f3092015-04-16 10:33:26 -0700642 flash.enable(true);
Simon Hunta34fcb52016-02-25 16:27:32 -0800643 mapShader(true);
Simon Hunte1ce4292015-06-12 13:07:02 -0700644
645 // now we have the map projection, we are ready for
646 // the server to send us device/host data...
647 tes.start();
648 // need to do the following so we immediately get
649 // the summary panel data back from the server
650 restoreSummaryFromPrefs();
Simon Hunt1894d792015-02-04 17:09:20 -0800651 }
652 );
Simon Hunta4281242016-02-26 20:18:45 -0800653 tes.bindHandlers();
Simon Hunt90053ed2016-04-06 12:49:02 -0700654 setUpSprites();
Simon Huntfd1231a2015-01-26 22:14:51 -0800655
Simon Hunt1894d792015-02-04 17:09:20 -0800656 forceG = zoomLayer.append('g').attr('id', 'topo-force');
Simon Huntfb8ea1f2015-02-24 21:38:09 -0800657 tfs.initForce(svg, forceG, uplink, dim);
Simon Hunta142dd22015-02-12 22:07:51 -0800658 tis.initInst({ showMastership: tfs.showMastership });
Simon Hunt237676b52015-03-10 19:04:26 -0700659 tps.initPanels();
Simon Hunt6cc53692015-01-07 11:33:45 -0800660
Simon Huntc7ae7952015-04-08 18:59:27 -0700661 restoreConfigFromPrefs();
Simon Hunt5ab45e12016-07-07 15:29:52 -0700662 ttbs.setDefaultOverlay(prefsState.ovidx);
Simon Hunt36a58c62015-04-08 11:00:07 -0700663
Simon Hunt72e44bf2015-07-21 21:34:20 -0700664 $log.debug('registered overlays...', tov.list());
Simon Hunt6cc53692015-01-07 11:33:45 -0800665 $log.log('OvTopoCtrl has been created');
Simon Huntef31fb22014-12-19 13:16:44 -0800666 }]);
667}());