blob: fa3b36e5a8b906330d6636dbeb2dfb4c2c2914dc [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 Burrowsdfa52b02016-09-02 13:50:43 +010027 var $scope, $log, fs, mast, ks, zs,
Steven Burrows37549ee2016-09-21 14:41:39 +010028 gs, sus, ps, t2es, t2fs, t2is, t2bcs, t2kcs;
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 // keep the map lines constant width while zooming
Steven Burrowsdfa52b02016-09-02 13:50:43 +010068 // mapG.style('stroke-width', (2.0 / sc) + 'px');
Steven Burrows57e24e92016-08-04 18:38:24 +010069 }
70
71 function setUpZoom() {
72 zoomLayer = svg.append('g').attr('id', 'topo-zoomlayer');
73 zoomer = zs.createZoomer({
74 svg: svg,
75 zoomLayer: zoomLayer,
76 zoomEnabled: zoomEnabled,
77 zoomCallback: zoomCallback
78 });
79 }
80
Simon Huntd5b96732016-07-08 13:22:27 -070081 // === Controller Definition -----------------------------------------
82
83 angular.module('ovTopo2', ['onosUtil', 'onosSvg', 'onosRemote'])
Steven Burrows57e24e92016-08-04 18:38:24 +010084 .controller('OvTopo2Ctrl',
Simon Huntd5b96732016-07-08 13:22:27 -070085 ['$scope', '$log', '$location',
86 'FnService', 'MastService', 'KeyService', 'ZoomService',
87 'GlyphService', 'MapService', 'SvgUtilService', 'FlashService',
88 'WebSocketService', 'PrefsService', 'ThemeService',
Steven Burrows57e24e92016-08-04 18:38:24 +010089 'Topo2EventService', 'Topo2ForceService', 'Topo2InstanceService',
Steven Burrows37549ee2016-09-21 14:41:39 +010090 'Topo2BreadcrumbService', 'Topo2KeyCommandService',
Simon Huntd5b96732016-07-08 13:22:27 -070091
92 function (_$scope_, _$log_, _$loc_,
Steven Burrows57e24e92016-08-04 18:38:24 +010093 _fs_, _mast_, _ks_, _zs_,
94 _gs_, _ms_, _sus_, _flash_,
95 _wss_, _ps_, _th_,
Steven Burrows37549ee2016-09-21 14:41:39 +010096 _t2es_, _t2fs_, _t2is_, _t2bcs_, _t2kcs_) {
Simon Huntd5b96732016-07-08 13:22:27 -070097
98 var params = _$loc_.search(),
Simon Huntd5b96732016-07-08 13:22:27 -070099 dim,
100 wh,
101 uplink = {
102 // provides function calls back into this space
103 // showNoDevs: showNoDevs,
104 // projection: function () { return projection; },
Steven Burrows9edc7e02016-08-29 11:52:07 +0100105 zoomLayer: function () { return zoomLayer; },
Steven Burrowsdfa52b02016-09-02 13:50:43 +0100106 zoomer: function () { return zoomer; }
Simon Huntd5b96732016-07-08 13:22:27 -0700107 // opacifyMap: opacifyMap,
108 // topoStartDone: topoStartDone
109 };
110
111 $scope = _$scope_;
112 $log = _$log_;
Simon Huntd5b96732016-07-08 13:22:27 -0700113
114 fs = _fs_;
115 mast = _mast_;
116 ks = _ks_;
117 zs = _zs_;
118
119 gs = _gs_;
Simon Huntd5b96732016-07-08 13:22:27 -0700120 sus = _sus_;
Simon Huntd5b96732016-07-08 13:22:27 -0700121
Simon Huntd5b96732016-07-08 13:22:27 -0700122 ps = _ps_;
Steven Burrows57e24e92016-08-04 18:38:24 +0100123
Simon Huntd5b96732016-07-08 13:22:27 -0700124 t2es = _t2es_;
125 t2fs = _t2fs_;
Steven Burrows57e24e92016-08-04 18:38:24 +0100126 t2is = _t2is_;
Steven Burrowsaf3159d2016-08-25 14:54:30 +0100127 t2bcs = _t2bcs_;
Steven Burrows37549ee2016-09-21 14:41:39 +0100128 t2kcs = _t2kcs_;
129
130 t2kcs.init(t2fs);
Simon Huntd5b96732016-07-08 13:22:27 -0700131
132 // capture selected intent parameters (if they are set in the
133 // query string) so that the traffic overlay can highlight
134 // the path for that intent
Steven Burrowsdfa52b02016-09-02 13:50:43 +0100135 if (params.intentKey &&
136 params.intentAppId &&
137 params.intentAppName) {
138
Simon Huntd5b96732016-07-08 13:22:27 -0700139 $scope.intentData = {
140 key: params.intentKey,
141 appId: params.intentAppId,
142 appName: params.intentAppName
143 };
144 }
145
146 $scope.notifyResize = function () {
147 svgResized(fs.windowSize(mast.mastHeight()));
148 };
149
150 // Cleanup on destroyed scope..
151 $scope.$on('$destroy', function () {
152 $log.log('OvTopo2Ctrl is saying Buh-Bye!');
153 t2es.stop();
154 ks.unbindKeys();
155 t2fs.destroy();
156 });
157
158 // svg layer and initialization of components
159 ovtopo2 = d3.select('#ov-topo2');
160 svg = ovtopo2.select('svg');
161 // set the svg size to match that of the window, less the masthead
162 wh = fs.windowSize(mast.mastHeight());
163 $log.debug('setting topo SVG size to', wh);
164 svg.attr(wh);
165 dim = [wh.width, wh.height];
166
Simon Huntd5b96732016-07-08 13:22:27 -0700167 // set up our keyboard shortcut bindings
168 setUpKeys();
Steven Burrows57e24e92016-08-04 18:38:24 +0100169 setUpZoom();
170 setUpDefs();
Simon Huntd5b96732016-07-08 13:22:27 -0700171
172 // make sure we can respond to topology events from the server
173 t2es.bindHandlers();
174
175 // initialize the force layout, ready to render the topology
Steven Burrows57e24e92016-08-04 18:38:24 +0100176 forceG = zoomLayer.append('g').attr('id', 'topo-force');
177 t2fs.init(svg, forceG, uplink, dim);
Steven Burrowsaf3159d2016-08-25 14:54:30 +0100178 t2bcs.init();
Simon Huntd5b96732016-07-08 13:22:27 -0700179
Simon Huntd5b96732016-07-08 13:22:27 -0700180 // =-=-=-=-=-=-=-=-
181 // TODO: in future, we will load background map data
Steven Burrows57e24e92016-08-04 18:38:24 +0100182 // asynchronously (hence the promise) and then chain off
Simon Huntd5b96732016-07-08 13:22:27 -0700183 // there to send the topo2start event to the server.
184 // For now, we'll send the event inline...
185 t2es.start();
186
Steven Burrows57e24e92016-08-04 18:38:24 +0100187 t2is.initInst({ showMastership: t2fs.showMastership });
188
Simon Huntd5b96732016-07-08 13:22:27 -0700189 // === ORIGINAL CODE ===
Steven Burrows57e24e92016-08-04 18:38:24 +0100190
Simon Huntd5b96732016-07-08 13:22:27 -0700191 // setUpKeys();
192 // setUpToolbar();
193 // setUpDefs();
194 // setUpZoom();
195 // setUpNoDevs();
196 /*
197 setUpMap().then(
198 function (proj) {
199 var z = ps.getPrefs('topo_zoom', { tx:0, ty:0, sc:1 });
200 zoomer.panZoom([z.tx, z.ty], z.sc);
201 $log.debug('** Zoom restored:', z);
202
203 projection = proj;
204 $log.debug('** We installed the projection:', proj);
205 flash.enable(false);
206 toggleMap(prefsState.bg);
207 flash.enable(true);
208 mapShader(true);
209
210 // now we have the map projection, we are ready for
211 // the server to send us device/host data...
212 tes.start();
213 // need to do the following so we immediately get
214 // the summary panel data back from the server
215 restoreSummaryFromPrefs();
216 }
217 );
218 */
219 // tes.bindHandlers();
220 // setUpSprites();
221
222 // forceG = zoomLayer.append('g').attr('id', 'topo-force');
223 // tfs.initForce(svg, forceG, uplink, dim);
224 // tis.initInst({ showMastership: tfs.showMastership });
225 // tps.initPanels();
226
227 // restoreConfigFromPrefs();
228 // ttbs.setDefaultOverlay(prefsState.ovidx);
229
230 // $log.debug('registered overlays...', tov.list());
Steven Burrows57e24e92016-08-04 18:38:24 +0100231
Simon Huntd5b96732016-07-08 13:22:27 -0700232 $log.log('OvTopo2Ctrl has been created');
233 }]);
Steven Burrowsdfa52b02016-09-02 13:50:43 +0100234})();