blob: 6e3dd5fd9a4a8d44a49d5a5421ec4403ca7c2ca4 [file] [log] [blame]
Simon Huntef31fb22014-12-19 13:16:44 -08001/*
Simon Hunt8ead3a22015-01-06 11:00:15 -08002 * Copyright 2014,2015 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 = [
25 'onosUtil',
Simon Hunt1e4a0012015-01-21 11:36:08 -080026 'onosSvg',
27 'onosRemote'
Simon Hunt6cc53692015-01-07 11:33:45 -080028 ];
29
30 // references to injected services etc.
Simon Hunt6036b192015-02-11 11:20:26 -080031 var $log, fs, ks, zs, gs, ms, sus, tes, tfs, tps, tis, tss;
Simon Hunt6cc53692015-01-07 11:33:45 -080032
33 // DOM elements
Simon Hunt7c8ab8d2015-02-03 15:05:15 -080034 var ovtopo, svg, defs, zoomLayer, mapG, forceG, noDevsLayer;
Simon Hunt6cc53692015-01-07 11:33:45 -080035
36 // Internal state
Simon Huntedf5c0e2015-01-29 15:00:53 -080037 var zoomer;
Simon Hunt6cc53692015-01-07 11:33:45 -080038
Simon Huntcacce342015-01-07 16:13:05 -080039 // --- Short Cut Keys ------------------------------------------------
40
Simon Hunt5724fb42015-02-05 16:59:40 -080041 function setUpKeys() {
42 // key bindings need to be made after the services have been injected
43 // thus, deferred to here...
44 ks.keyBindings({
Simon Hunt6036b192015-02-11 11:20:26 -080045 O: [tps.toggleSummary, 'Toggle ONOS summary pane'],
Simon Hunt5724fb42015-02-05 16:59:40 -080046 I: [toggleInstances, 'Toggle ONOS instances pane'],
Simon Hunt6036b192015-02-11 11:20:26 -080047 D: [tss.toggleDetails, 'Disable / enable details pane'],
Simon Huntac4c6f72015-02-03 19:50:53 -080048
Simon Hunt5724fb42015-02-05 16:59:40 -080049 H: [tfs.toggleHosts, 'Toggle host visibility'],
50 M: [tfs.toggleOffline, 'Toggle offline visibility'],
51 //B: [toggleBg, 'Toggle background image'],
52 //P: togglePorts,
Simon Huntac4c6f72015-02-03 19:50:53 -080053
Simon Hunt5724fb42015-02-05 16:59:40 -080054 //X: [toggleNodeLock, 'Lock / unlock node positions'],
55 //Z: [toggleOblique, 'Toggle oblique view (Experimental)'],
56 L: [tfs.cycleDeviceLabels, 'Cycle device labels'],
Simon Hunt445e8152015-02-06 13:00:12 -080057 U: [tfs.unpin, 'Unpin node (hover mouse over)'],
Simon Hunt5724fb42015-02-05 16:59:40 -080058 R: [resetZoom, 'Reset pan / zoom'],
Simon Huntac4c6f72015-02-03 19:50:53 -080059
Simon Hunt5724fb42015-02-05 16:59:40 -080060 //V: [showRelatedIntentsAction, 'Show all related intents'],
61 //rightArrow: [showNextIntentAction, 'Show next related intent'],
62 //leftArrow: [showPrevIntentAction, 'Show previous related intent'],
63 //W: [showSelectedIntentTrafficAction, 'Monitor traffic of selected intent'],
64 //A: [showAllTrafficAction, 'Monitor all traffic'],
65 //F: [showDeviceLinkFlowsAction, 'Show device link flows'],
Simon Huntac4c6f72015-02-03 19:50:53 -080066
Simon Hunt5724fb42015-02-05 16:59:40 -080067 //E: [equalizeMasters, 'Equalize mastership roles'],
Simon Huntac4c6f72015-02-03 19:50:53 -080068
Simon Hunt08f841d02015-02-10 14:39:20 -080069 esc: handleEscape,
Simon Huntac4c6f72015-02-03 19:50:53 -080070
Simon Hunt5724fb42015-02-05 16:59:40 -080071 _helpFormat: [
72 ['O', 'I', 'D', '-', 'H', 'M', 'B', 'P' ],
73 ['X', 'Z', 'L', 'U', 'R' ],
74 ['V', 'rightArrow', 'leftArrow', 'W', 'A', 'F', '-', 'E' ]
75 ]
76 });
Simon Huntac4c6f72015-02-03 19:50:53 -080077
Simon Hunt5724fb42015-02-05 16:59:40 -080078 // TODO: // mouse gestures
79 var gestures = [
80 ['click', 'Select the item and show details'],
81 ['shift-click', 'Toggle selection state'],
82 ['drag', 'Reposition (and pin) device / host'],
83 ['cmd-scroll', 'Zoom in / out'],
84 ['cmd-drag', 'Pan']
85 ];
86 }
Simon Hunt6cc53692015-01-07 11:33:45 -080087
Simon Hunt08f841d02015-02-10 14:39:20 -080088 // --- Keystroke functions -------------------------------------------
Simon Huntac4c6f72015-02-03 19:50:53 -080089
Simon Hunt6036b192015-02-11 11:20:26 -080090 // NOTE: this really belongs in the TopoPanelService -- but how to
91 // cleanly link in the updateDeviceColors() call? To be fixed later.
Simon Huntac4c6f72015-02-03 19:50:53 -080092 function toggleInstances() {
Simon Hunt5724fb42015-02-05 16:59:40 -080093 tis.toggle();
Simon Huntac4c6f72015-02-03 19:50:53 -080094 tfs.updateDeviceColors();
Simon Hunt6cc53692015-01-07 11:33:45 -080095 }
Simon Huntac4c6f72015-02-03 19:50:53 -080096
Simon Hunt08f841d02015-02-10 14:39:20 -080097 function resetZoom() {
98 zoomer.reset();
99 }
100
101 function handleEscape() {
Simon Hunta0eb0a82015-02-11 12:30:06 -0800102 if (false) {
103 // TODO: if an instance is selected, cancel the affinity mapping
104 // tis.cancelAffinity()
Simon Hunt08f841d02015-02-10 14:39:20 -0800105
Simon Hunta0eb0a82015-02-11 12:30:06 -0800106 } else if (tss.haveDetails()) {
107 // else if we have node selections, deselect them all
108 tss.deselectAll();
Simon Hunt08f841d02015-02-10 14:39:20 -0800109
Simon Hunta0eb0a82015-02-11 12:30:06 -0800110 } else if (tis.isVisible()) {
111 // else if the Instance Panel is visible, hide it
112 tis.hide();
113 tfs.updateDeviceColors();
Simon Hunt08f841d02015-02-10 14:39:20 -0800114
Simon Hunta0eb0a82015-02-11 12:30:06 -0800115 } else if (tps.summaryVisible()) {
116 // else if the Summary Panel is visible, hide it
117 tps.hideSummaryPanel();
Simon Hunt08f841d02015-02-10 14:39:20 -0800118
Simon Hunta0eb0a82015-02-11 12:30:06 -0800119 } else {
120 // TODO: set hover mode to hoverModeNone
121 }
Simon Hunt08f841d02015-02-10 14:39:20 -0800122 }
Simon Huntcacce342015-01-07 16:13:05 -0800123
124 // --- Glyphs, Icons, and the like -----------------------------------
125
Simon Hunt6cc53692015-01-07 11:33:45 -0800126 function setUpDefs() {
Simon Huntcacce342015-01-07 16:13:05 -0800127 defs = svg.append('defs');
Simon Hunt6cc53692015-01-07 11:33:45 -0800128 gs.loadDefs(defs);
129 }
130
131
Simon Huntcacce342015-01-07 16:13:05 -0800132 // --- Pan and Zoom --------------------------------------------------
133
134 // zoom enabled predicate. ev is a D3 source event.
135 function zoomEnabled(ev) {
136 return (ev.metaKey || ev.altKey);
137 }
138
139 function zoomCallback() {
Simon Hunt5724fb42015-02-05 16:59:40 -0800140 var sc = zoomer.scale();
Simon Huntcacce342015-01-07 16:13:05 -0800141
Simon Hunt0541fb82015-01-14 18:59:57 -0800142 // keep the map lines constant width while zooming
Simon Hunt737c89f2015-01-28 12:23:19 -0800143 mapG.style('stroke-width', (2.0 / sc) + 'px');
Simon Huntcacce342015-01-07 16:13:05 -0800144 }
145
146 function setUpZoom() {
Simon Hunta7b6a6b2015-01-13 19:53:09 -0800147 zoomLayer = svg.append('g').attr('id', 'topo-zoomlayer');
Simon Huntcacce342015-01-07 16:13:05 -0800148 zoomer = zs.createZoomer({
149 svg: svg,
150 zoomLayer: zoomLayer,
151 zoomEnabled: zoomEnabled,
152 zoomCallback: zoomCallback
153 });
154 }
155
156
Simon Hunt0541fb82015-01-14 18:59:57 -0800157 // callback invoked when the SVG view has been resized..
Simon Hunt3a6eec02015-02-09 21:16:43 -0800158 function svgResized(s) {
159 tfs.newDim([s.width, s.height]);
Simon Hunt0541fb82015-01-14 18:59:57 -0800160 }
161
Simon Hunta7b6a6b2015-01-13 19:53:09 -0800162 // --- Background Map ------------------------------------------------
163
Simon Hunt7c8ab8d2015-02-03 15:05:15 -0800164 function setUpNoDevs() {
165 var g, box;
166 noDevsLayer = svg.append('g').attr({
167 id: 'topo-noDevsLayer',
168 transform: sus.translate(500,500)
169 });
170 // Note, SVG viewbox is '0 0 1000 1000', defined in topo.html.
171 // We are translating this layer to have its origin at the center
172
173 g = noDevsLayer.append('g');
174 gs.addGlyph(g, 'bird', 100).attr('class', 'noDevsBird');
175 g.append('text').text('No devices are connected')
176 .attr({ x: 120, y: 80});
177
178 box = g.node().getBBox();
179 box.x -= box.width/2;
180 box.y -= box.height/2;
181 g.attr('transform', sus.translate(box.x, box.y));
182
183 showNoDevs(true);
184 }
185
186 function showNoDevs(b) {
187 sus.makeVisible(noDevsLayer, b);
188 }
189
Simon Hunt0541fb82015-01-14 18:59:57 -0800190 function showCallibrationPoints() {
Simon Hunt426bd862015-01-14 16:48:41 -0800191 // temp code for calibration
192 var points = [
193 [0, 0], [0, 1000], [1000, 0], [1000, 1000]
194 ];
Simon Hunt737c89f2015-01-28 12:23:19 -0800195 mapG.selectAll('circle')
Simon Hunt426bd862015-01-14 16:48:41 -0800196 .data(points)
197 .enter()
198 .append('circle')
199 .attr('cx', function (d) { return d[0]; })
200 .attr('cy', function (d) { return d[1]; })
201 .attr('r', 5)
202 .style('fill', 'red');
Simon Hunta7b6a6b2015-01-13 19:53:09 -0800203 }
204
Simon Hunt0541fb82015-01-14 18:59:57 -0800205 function setUpMap() {
Simon Hunt737c89f2015-01-28 12:23:19 -0800206 mapG = zoomLayer.append('g').attr('id', 'topo-map');
Simon Huntac4c6f72015-02-03 19:50:53 -0800207
Simon Hunt0541fb82015-01-14 18:59:57 -0800208 //showCallibrationPoints();
Simon Huntac4c6f72015-02-03 19:50:53 -0800209 //return ms.loadMapInto(map, '*continental_us', {mapFillScale:0.5});
210
211 // returns a promise for the projection...
212 return ms.loadMapInto(mapG, '*continental_us');
Simon Hunt0541fb82015-01-14 18:59:57 -0800213 }
214
Simon Hunt737c89f2015-01-28 12:23:19 -0800215
Simon Huntcacce342015-01-07 16:13:05 -0800216 // --- Controller Definition -----------------------------------------
217
Simon Hunt6cc53692015-01-07 11:33:45 -0800218 angular.module('ovTopo', moduleDependencies)
219
220 .controller('OvTopoCtrl', [
Simon Hunt54442fa2015-01-26 14:17:38 -0800221 '$scope', '$log', '$location', '$timeout',
Simon Hunt4b668592015-01-29 17:33:53 -0800222 'FnService', 'MastService', 'KeyService', 'ZoomService',
Simon Hunt7c8ab8d2015-02-03 15:05:15 -0800223 'GlyphService', 'MapService', 'SvgUtilService',
Simon Huntb0ec1e52015-01-28 18:13:49 -0800224 'TopoEventService', 'TopoForceService', 'TopoPanelService',
Simon Hunt6036b192015-02-11 11:20:26 -0800225 'TopoInstService', 'TopoSelectService',
Simon Hunt6cc53692015-01-07 11:33:45 -0800226
Simon Hunta11b4eb2015-01-28 16:20:50 -0800227 function ($scope, _$log_, $loc, $timeout, _fs_, mast,
Simon Hunt6036b192015-02-11 11:20:26 -0800228 _ks_, _zs_, _gs_, _ms_, _sus_,
229 _tes_, _tfs_, _tps_, _tis_, _tss_) {
Simon Huntac4c6f72015-02-03 19:50:53 -0800230 var self = this,
Simon Hunt1894d792015-02-04 17:09:20 -0800231 projection,
Simon Hunt3a6eec02015-02-09 21:16:43 -0800232 dim,
Simon Hunt1894d792015-02-04 17:09:20 -0800233 uplink = {
234 // provides function calls back into this space
235 showNoDevs: showNoDevs,
236 projection: function () { return projection; },
Simon Huntc252aa62015-02-10 16:45:39 -0800237 sendEvent: _tes_.sendEvent
Simon Huntac4c6f72015-02-03 19:50:53 -0800238 };
239
Simon Hunt6cc53692015-01-07 11:33:45 -0800240 $log = _$log_;
Simon Hunta11b4eb2015-01-28 16:20:50 -0800241 fs = _fs_;
Simon Hunt6cc53692015-01-07 11:33:45 -0800242 ks = _ks_;
Simon Huntcacce342015-01-07 16:13:05 -0800243 zs = _zs_;
Simon Hunt6cc53692015-01-07 11:33:45 -0800244 gs = _gs_;
Simon Hunt1e8eff42015-01-08 17:19:02 -0800245 ms = _ms_;
Simon Hunt7c8ab8d2015-02-03 15:05:15 -0800246 sus = _sus_;
Simon Huntc252aa62015-02-10 16:45:39 -0800247 tes = _tes_;
Simon Hunt737c89f2015-01-28 12:23:19 -0800248 tfs = _tfs_;
Simon Huntc252aa62015-02-10 16:45:39 -0800249 tps = _tps_;
Simon Huntac4c6f72015-02-03 19:50:53 -0800250 tis = _tis_;
Simon Hunt6036b192015-02-11 11:20:26 -0800251 tss = _tss_;
Simon Huntef31fb22014-12-19 13:16:44 -0800252
Simon Hunt426bd862015-01-14 16:48:41 -0800253 self.notifyResize = function () {
Simon Huntb0ec1e52015-01-28 18:13:49 -0800254 svgResized(fs.windowSize(mast.mastHeight()));
Simon Hunt426bd862015-01-14 16:48:41 -0800255 };
Simon Huntef31fb22014-12-19 13:16:44 -0800256
Simon Hunt54442fa2015-01-26 14:17:38 -0800257 // Cleanup on destroyed scope..
Simon Hunt584122a2015-01-21 15:32:40 -0800258 $scope.$on('$destroy', function () {
259 $log.log('OvTopoCtrl is saying Buh-Bye!');
Simon Huntfd1231a2015-01-26 22:14:51 -0800260 tes.closeSock();
Simon Hunt626d2102015-01-29 11:54:50 -0800261 tps.destroyPanels();
Simon Hunt4b668592015-01-29 17:33:53 -0800262 tis.destroyInst();
Simon Hunt3a6eec02015-02-09 21:16:43 -0800263 tfs.destroyForce();
Simon Hunt584122a2015-01-21 15:32:40 -0800264 });
265
Simon Huntcacce342015-01-07 16:13:05 -0800266 // svg layer and initialization of components
Simon Hunt426bd862015-01-14 16:48:41 -0800267 ovtopo = d3.select('#ov-topo');
268 svg = ovtopo.select('svg');
Simon Hunta11b4eb2015-01-28 16:20:50 -0800269 // set the svg size to match that of the window, less the masthead
270 svg.attr(fs.windowSize(mast.mastHeight()));
Simon Hunt3a6eec02015-02-09 21:16:43 -0800271 dim = [svg.attr('width'), svg.attr('height')];
Simon Hunt426bd862015-01-14 16:48:41 -0800272
Simon Hunt6cc53692015-01-07 11:33:45 -0800273 setUpKeys();
274 setUpDefs();
Simon Huntcacce342015-01-07 16:13:05 -0800275 setUpZoom();
Simon Hunt7c8ab8d2015-02-03 15:05:15 -0800276 setUpNoDevs();
Simon Hunt1894d792015-02-04 17:09:20 -0800277 setUpMap().then(
278 function (proj) {
279 projection = proj;
280 $log.debug('** We installed the projection: ', proj);
281 }
282 );
Simon Huntfd1231a2015-01-26 22:14:51 -0800283
Simon Hunt1894d792015-02-04 17:09:20 -0800284 forceG = zoomLayer.append('g').attr('id', 'topo-force');
Simon Hunt3a6eec02015-02-09 21:16:43 -0800285 tfs.initForce(forceG, uplink, dim);
Simon Hunt4b668592015-01-29 17:33:53 -0800286 tis.initInst();
Simon Hunt6036b192015-02-11 11:20:26 -0800287 tps.initPanels({ sendEvent: tes.sendEvent });
Simon Huntfd1231a2015-01-26 22:14:51 -0800288 tes.openSock();
Simon Hunt6cc53692015-01-07 11:33:45 -0800289
290 $log.log('OvTopoCtrl has been created');
Simon Huntef31fb22014-12-19 13:16:44 -0800291 }]);
292}());