blob: 48f06d0915af47a519771fdac64de1ddc339c545 [file] [log] [blame]
Simon Huntd5b96732016-07-08 13:22:27 -07001/*
Steven Burrows57e24e92016-08-04 18:38:24 +01002* Copyright 2016-present 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*/
Simon Huntd5b96732016-07-08 13:22:27 -070016
17/*
18 ONOS GUI -- Topology View Module
19
20 NOTE: currently under development to support Regions.
21 */
22
23(function () {
24 'use strict';
25
26 // references to injected services
Steven Burrows1c5c8612016-10-05 13:45:13 -050027 var $scope, $log, fs, mast, ks,
Steven Burrows0616e802016-10-06 21:45:07 -050028 gs, sus, ps, t2es, t2fs, t2is, t2bcs, t2kcs, t2ms, t2mcs, t2zs;
Simon Huntd5b96732016-07-08 13:22:27 -070029
30 // DOM elements
Steven Burrowsdfa52b02016-09-02 13:50:43 +010031 var ovtopo2, svg, defs, zoomLayer, forceG;
Simon Huntd5b96732016-07-08 13:22:27 -070032
33 // Internal state
Steven Burrowsdfa52b02016-09-02 13:50:43 +010034 var zoomer;
Simon Huntd5b96732016-07-08 13:22:27 -070035
Steven Burrows57e24e92016-08-04 18:38:24 +010036 // --- Glyphs, Icons, and the like -----------------------------------
37
38 function setUpDefs() {
39 defs = svg.append('defs');
40 gs.loadDefs(defs);
41 sus.loadGlowDefs(defs);
42 }
Simon Huntd5b96732016-07-08 13:22:27 -070043
44 // callback invoked when the SVG view has been resized..
45 function svgResized(s) {
Steven Burrows57e24e92016-08-04 18:38:24 +010046 $log.debug('topo2 view resized', s);
Steven Burrowsec1f45c2016-08-08 16:14:41 +010047 t2fs.newDim([s.width, s.height]);
Simon Huntd5b96732016-07-08 13:22:27 -070048 }
49
50 function setUpKeys(overlayKeys) {
51 $log.debug('topo2: set up keys....');
52 }
53
Steven Burrows57e24e92016-08-04 18:38:24 +010054 // --- Pan and Zoom --------------------------------------------------
55
56 // zoom enabled predicate. ev is a D3 source event.
57 function zoomEnabled(ev) {
58 return fs.isMobile() || (ev.metaKey || ev.altKey);
59 }
60
61 function zoomCallback() {
62 var sc = zoomer.scale(),
63 tr = zoomer.translate();
64
Steven Burrowsdfa52b02016-09-02 13:50:43 +010065 ps.setPrefs('topo_zoom', { tx: tr[0], ty: tr[1], sc: sc });
Steven Burrows57e24e92016-08-04 18:38:24 +010066 }
67
68 function setUpZoom() {
69 zoomLayer = svg.append('g').attr('id', 'topo-zoomlayer');
Steven Burrows0616e802016-10-06 21:45:07 -050070
71 zoomer = t2zs.createZoomer({
Steven Burrows57e24e92016-08-04 18:38:24 +010072 svg: svg,
73 zoomLayer: zoomLayer,
74 zoomEnabled: zoomEnabled,
75 zoomCallback: zoomCallback
76 });
77 }
78
Simon Huntd5b96732016-07-08 13:22:27 -070079 // === Controller Definition -----------------------------------------
80
81 angular.module('ovTopo2', ['onosUtil', 'onosSvg', 'onosRemote'])
Steven Burrows57e24e92016-08-04 18:38:24 +010082 .controller('OvTopo2Ctrl',
Simon Huntd5b96732016-07-08 13:22:27 -070083 ['$scope', '$log', '$location',
Steven Burrows1c5c8612016-10-05 13:45:13 -050084 'FnService', 'MastService', 'KeyService',
Simon Huntd5b96732016-07-08 13:22:27 -070085 'GlyphService', 'MapService', 'SvgUtilService', 'FlashService',
86 'WebSocketService', 'PrefsService', 'ThemeService',
Steven Burrows57e24e92016-08-04 18:38:24 +010087 'Topo2EventService', 'Topo2ForceService', 'Topo2InstanceService',
Steven Burrowse3a18842016-09-22 15:33:33 +010088 'Topo2BreadcrumbService', 'Topo2KeyCommandService', 'Topo2MapService',
Steven Burrows1c5c8612016-10-05 13:45:13 -050089 'Topo2MapConfigService', 'Topo2ZoomService',
90 'Topo2SummaryPanelService', 'Topo2DeviceDetailsPanel',
Simon Huntd5b96732016-07-08 13:22:27 -070091
92 function (_$scope_, _$log_, _$loc_,
Steven Burrows1c5c8612016-10-05 13:45:13 -050093 _fs_, _mast_, _ks_,
Steven Burrows57e24e92016-08-04 18:38:24 +010094 _gs_, _ms_, _sus_, _flash_,
95 _wss_, _ps_, _th_,
Steven Burrows5570d1b2016-09-28 14:21:00 -070096 _t2es_, _t2fs_, _t2is_, _t2bcs_, _t2kcs_, _t2ms_, _t2mcs_,
Steven Burrows1c5c8612016-10-05 13:45:13 -050097 _t2zs_, summaryPanel, detailsPanel
Steven Burrows5570d1b2016-09-28 14:21:00 -070098 ) {
Simon Huntd5b96732016-07-08 13:22:27 -070099
100 var params = _$loc_.search(),
Simon Huntd5b96732016-07-08 13:22:27 -0700101 dim,
102 wh,
103 uplink = {
104 // provides function calls back into this space
105 // showNoDevs: showNoDevs,
106 // projection: function () { return projection; },
Steven Burrows9edc7e02016-08-29 11:52:07 +0100107 zoomLayer: function () { return zoomLayer; },
Steven Burrowsdfa52b02016-09-02 13:50:43 +0100108 zoomer: function () { return zoomer; }
Simon Huntd5b96732016-07-08 13:22:27 -0700109 // opacifyMap: opacifyMap,
110 // topoStartDone: topoStartDone
111 };
112
113 $scope = _$scope_;
114 $log = _$log_;
Simon Huntd5b96732016-07-08 13:22:27 -0700115
116 fs = _fs_;
117 mast = _mast_;
118 ks = _ks_;
Simon Huntd5b96732016-07-08 13:22:27 -0700119
120 gs = _gs_;
Simon Huntd5b96732016-07-08 13:22:27 -0700121 sus = _sus_;
Simon Huntd5b96732016-07-08 13:22:27 -0700122
Simon Huntd5b96732016-07-08 13:22:27 -0700123 ps = _ps_;
Steven Burrows57e24e92016-08-04 18:38:24 +0100124
Simon Huntd5b96732016-07-08 13:22:27 -0700125 t2es = _t2es_;
126 t2fs = _t2fs_;
Steven Burrows57e24e92016-08-04 18:38:24 +0100127 t2is = _t2is_;
Steven Burrowsaf3159d2016-08-25 14:54:30 +0100128 t2bcs = _t2bcs_;
Steven Burrows37549ee2016-09-21 14:41:39 +0100129 t2kcs = _t2kcs_;
Steven Burrowse3a18842016-09-22 15:33:33 +0100130 t2ms = _t2ms_;
Steven Burrowse7cc3082016-09-27 11:24:58 -0700131 t2mcs = _t2mcs_;
Steven Burrows0616e802016-10-06 21:45:07 -0500132 t2zs = _t2zs_;
Simon Huntd5b96732016-07-08 13:22:27 -0700133
134 // capture selected intent parameters (if they are set in the
135 // query string) so that the traffic overlay can highlight
136 // the path for that intent
Steven Burrowsdfa52b02016-09-02 13:50:43 +0100137 if (params.intentKey &&
138 params.intentAppId &&
139 params.intentAppName) {
140
Simon Huntd5b96732016-07-08 13:22:27 -0700141 $scope.intentData = {
142 key: params.intentKey,
143 appId: params.intentAppId,
144 appName: params.intentAppName
145 };
146 }
147
148 $scope.notifyResize = function () {
149 svgResized(fs.windowSize(mast.mastHeight()));
150 };
151
152 // Cleanup on destroyed scope..
153 $scope.$on('$destroy', function () {
154 $log.log('OvTopo2Ctrl is saying Buh-Bye!');
155 t2es.stop();
156 ks.unbindKeys();
157 t2fs.destroy();
Steven Burrows7a9d04e2016-09-26 17:05:37 -0700158 t2is.destroy();
Steven Burrows1c5c8612016-10-05 13:45:13 -0500159 summaryPanel.destroy();
160 detailsPanel.destroy();
Simon Huntd5b96732016-07-08 13:22:27 -0700161 });
162
163 // svg layer and initialization of components
164 ovtopo2 = d3.select('#ov-topo2');
165 svg = ovtopo2.select('svg');
166 // set the svg size to match that of the window, less the masthead
167 wh = fs.windowSize(mast.mastHeight());
168 $log.debug('setting topo SVG size to', wh);
169 svg.attr(wh);
170 dim = [wh.width, wh.height];
171
Simon Huntd5b96732016-07-08 13:22:27 -0700172 // set up our keyboard shortcut bindings
173 setUpKeys();
Steven Burrows57e24e92016-08-04 18:38:24 +0100174 setUpZoom();
175 setUpDefs();
Simon Huntd5b96732016-07-08 13:22:27 -0700176
177 // make sure we can respond to topology events from the server
178 t2es.bindHandlers();
179
Steven Burrowse3a18842016-09-22 15:33:33 +0100180 // Add the map SVG Group
Steven Burrows1c5c8612016-10-05 13:45:13 -0500181 t2ms.init(zoomLayer, zoomer).then(
Steven Burrowse3a18842016-09-22 15:33:33 +0100182 function (proj) {
183 var z = ps.getPrefs('topo_zoom', { tx: 0, ty: 0, sc: 1 });
184 zoomer.panZoom([z.tx, z.ty], z.sc);
Steven Burrowse7cc3082016-09-27 11:24:58 -0700185
186 t2mcs.projection(proj);
Steven Burrowse3a18842016-09-22 15:33:33 +0100187 $log.debug('** Zoom restored:', z);
188 $log.debug('** We installed the projection:', proj);
Steven Burrowse7cc3082016-09-27 11:24:58 -0700189
190 // Now the map has load and we have a projection we can
191 // get the info from the server
192 t2es.start();
Steven Burrowse3a18842016-09-22 15:33:33 +0100193 }
194 );
195
Simon Huntd5b96732016-07-08 13:22:27 -0700196 // initialize the force layout, ready to render the topology
Steven Burrows57e24e92016-08-04 18:38:24 +0100197 forceG = zoomLayer.append('g').attr('id', 'topo-force');
Steven Burrowse7cc3082016-09-27 11:24:58 -0700198
Steven Burrows57e24e92016-08-04 18:38:24 +0100199 t2fs.init(svg, forceG, uplink, dim);
Steven Burrowsaf3159d2016-08-25 14:54:30 +0100200 t2bcs.init();
Steven Burrowse3a18842016-09-22 15:33:33 +0100201 t2kcs.init(t2fs);
202
Steven Burrows57e24e92016-08-04 18:38:24 +0100203 t2is.initInst({ showMastership: t2fs.showMastership });
204
Simon Huntd5b96732016-07-08 13:22:27 -0700205 // === ORIGINAL CODE ===
Steven Burrows57e24e92016-08-04 18:38:24 +0100206
Simon Huntd5b96732016-07-08 13:22:27 -0700207 // setUpToolbar();
Simon Huntd5b96732016-07-08 13:22:27 -0700208 // setUpNoDevs();
Simon Huntd5b96732016-07-08 13:22:27 -0700209
Simon Huntd5b96732016-07-08 13:22:27 -0700210 // tes.bindHandlers();
211 // setUpSprites();
212
213 // forceG = zoomLayer.append('g').attr('id', 'topo-force');
214 // tfs.initForce(svg, forceG, uplink, dim);
215 // tis.initInst({ showMastership: tfs.showMastership });
216 // tps.initPanels();
217
218 // restoreConfigFromPrefs();
219 // ttbs.setDefaultOverlay(prefsState.ovidx);
220
221 // $log.debug('registered overlays...', tov.list());
Steven Burrows57e24e92016-08-04 18:38:24 +0100222
Steven Burrows5570d1b2016-09-28 14:21:00 -0700223 summaryPanel.init();
Steven Burrows1c5c8612016-10-05 13:45:13 -0500224 detailsPanel.init();
Steven Burrows5570d1b2016-09-28 14:21:00 -0700225
Simon Huntd5b96732016-07-08 13:22:27 -0700226 $log.log('OvTopo2Ctrl has been created');
227 }]);
Steven Burrowsdfa52b02016-09-02 13:50:43 +0100228})();