blob: a5127046ed3848eb869279286e3b339e9c4eccbe [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 Huntac4c6f72015-02-03 19:50:53 -080031 var $log, fs, ks, zs, gs, ms, sus, tfs, tis;
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({
45 //O: [toggleSummary, 'Toggle ONOS summary pane'],
46 I: [toggleInstances, 'Toggle ONOS instances pane'],
47 //D: [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 Hunt5724fb42015-02-05 16:59:40 -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 Huntac4c6f72015-02-03 19:50:53 -080088
89 function toggleInstances() {
Simon Hunt5724fb42015-02-05 16:59:40 -080090 tis.toggle();
Simon Huntac4c6f72015-02-03 19:50:53 -080091 tfs.updateDeviceColors();
Simon Hunt6cc53692015-01-07 11:33:45 -080092 }
Simon Huntac4c6f72015-02-03 19:50:53 -080093
Simon Huntcacce342015-01-07 16:13:05 -080094
95 // --- Glyphs, Icons, and the like -----------------------------------
96
Simon Hunt6cc53692015-01-07 11:33:45 -080097 function setUpDefs() {
Simon Huntcacce342015-01-07 16:13:05 -080098 defs = svg.append('defs');
Simon Hunt6cc53692015-01-07 11:33:45 -080099 gs.loadDefs(defs);
100 }
101
102
Simon Huntcacce342015-01-07 16:13:05 -0800103 // --- Pan and Zoom --------------------------------------------------
104
105 // zoom enabled predicate. ev is a D3 source event.
106 function zoomEnabled(ev) {
107 return (ev.metaKey || ev.altKey);
108 }
109
110 function zoomCallback() {
Simon Hunt5724fb42015-02-05 16:59:40 -0800111 var sc = zoomer.scale();
Simon Huntcacce342015-01-07 16:13:05 -0800112
Simon Hunt0541fb82015-01-14 18:59:57 -0800113 // keep the map lines constant width while zooming
Simon Hunt737c89f2015-01-28 12:23:19 -0800114 mapG.style('stroke-width', (2.0 / sc) + 'px');
Simon Huntcacce342015-01-07 16:13:05 -0800115 }
116
117 function setUpZoom() {
Simon Hunta7b6a6b2015-01-13 19:53:09 -0800118 zoomLayer = svg.append('g').attr('id', 'topo-zoomlayer');
Simon Huntcacce342015-01-07 16:13:05 -0800119 zoomer = zs.createZoomer({
120 svg: svg,
121 zoomLayer: zoomLayer,
122 zoomEnabled: zoomEnabled,
123 zoomCallback: zoomCallback
124 });
125 }
126
Simon Hunt5724fb42015-02-05 16:59:40 -0800127 function resetZoom() {
128 zoomer.reset();
129 }
130
Simon Huntcacce342015-01-07 16:13:05 -0800131
Simon Hunt0541fb82015-01-14 18:59:57 -0800132 // callback invoked when the SVG view has been resized..
Simon Hunt3a6eec02015-02-09 21:16:43 -0800133 function svgResized(s) {
134 tfs.newDim([s.width, s.height]);
Simon Hunt0541fb82015-01-14 18:59:57 -0800135 }
136
Simon Hunta7b6a6b2015-01-13 19:53:09 -0800137 // --- Background Map ------------------------------------------------
138
Simon Hunt7c8ab8d2015-02-03 15:05:15 -0800139 function setUpNoDevs() {
140 var g, box;
141 noDevsLayer = svg.append('g').attr({
142 id: 'topo-noDevsLayer',
143 transform: sus.translate(500,500)
144 });
145 // Note, SVG viewbox is '0 0 1000 1000', defined in topo.html.
146 // We are translating this layer to have its origin at the center
147
148 g = noDevsLayer.append('g');
149 gs.addGlyph(g, 'bird', 100).attr('class', 'noDevsBird');
150 g.append('text').text('No devices are connected')
151 .attr({ x: 120, y: 80});
152
153 box = g.node().getBBox();
154 box.x -= box.width/2;
155 box.y -= box.height/2;
156 g.attr('transform', sus.translate(box.x, box.y));
157
158 showNoDevs(true);
159 }
160
161 function showNoDevs(b) {
162 sus.makeVisible(noDevsLayer, b);
163 }
164
Simon Hunt0541fb82015-01-14 18:59:57 -0800165 function showCallibrationPoints() {
Simon Hunt426bd862015-01-14 16:48:41 -0800166 // temp code for calibration
167 var points = [
168 [0, 0], [0, 1000], [1000, 0], [1000, 1000]
169 ];
Simon Hunt737c89f2015-01-28 12:23:19 -0800170 mapG.selectAll('circle')
Simon Hunt426bd862015-01-14 16:48:41 -0800171 .data(points)
172 .enter()
173 .append('circle')
174 .attr('cx', function (d) { return d[0]; })
175 .attr('cy', function (d) { return d[1]; })
176 .attr('r', 5)
177 .style('fill', 'red');
Simon Hunta7b6a6b2015-01-13 19:53:09 -0800178 }
179
Simon Hunt0541fb82015-01-14 18:59:57 -0800180 function setUpMap() {
Simon Hunt737c89f2015-01-28 12:23:19 -0800181 mapG = zoomLayer.append('g').attr('id', 'topo-map');
Simon Huntac4c6f72015-02-03 19:50:53 -0800182
Simon Hunt0541fb82015-01-14 18:59:57 -0800183 //showCallibrationPoints();
Simon Huntac4c6f72015-02-03 19:50:53 -0800184 //return ms.loadMapInto(map, '*continental_us', {mapFillScale:0.5});
185
186 // returns a promise for the projection...
187 return ms.loadMapInto(mapG, '*continental_us');
Simon Hunt0541fb82015-01-14 18:59:57 -0800188 }
189
Simon Hunt737c89f2015-01-28 12:23:19 -0800190
Simon Huntcacce342015-01-07 16:13:05 -0800191 // --- Controller Definition -----------------------------------------
192
Simon Hunt6cc53692015-01-07 11:33:45 -0800193 angular.module('ovTopo', moduleDependencies)
194
195 .controller('OvTopoCtrl', [
Simon Hunt54442fa2015-01-26 14:17:38 -0800196 '$scope', '$log', '$location', '$timeout',
Simon Hunt4b668592015-01-29 17:33:53 -0800197 'FnService', 'MastService', 'KeyService', 'ZoomService',
Simon Hunt7c8ab8d2015-02-03 15:05:15 -0800198 'GlyphService', 'MapService', 'SvgUtilService',
Simon Huntb0ec1e52015-01-28 18:13:49 -0800199 'TopoEventService', 'TopoForceService', 'TopoPanelService',
Simon Hunt4b668592015-01-29 17:33:53 -0800200 'TopoInstService',
Simon Hunt6cc53692015-01-07 11:33:45 -0800201
Simon Hunta11b4eb2015-01-28 16:20:50 -0800202 function ($scope, _$log_, $loc, $timeout, _fs_, mast,
Simon Huntac4c6f72015-02-03 19:50:53 -0800203 _ks_, _zs_, _gs_, _ms_, _sus_, tes, _tfs_, tps, _tis_) {
204 var self = this,
Simon Hunt1894d792015-02-04 17:09:20 -0800205 projection,
Simon Hunt3a6eec02015-02-09 21:16:43 -0800206 dim,
Simon Hunt1894d792015-02-04 17:09:20 -0800207 uplink = {
208 // provides function calls back into this space
209 showNoDevs: showNoDevs,
210 projection: function () { return projection; },
211 sendEvent: tes.sendEvent
Simon Huntac4c6f72015-02-03 19:50:53 -0800212 };
213
Simon Hunt6cc53692015-01-07 11:33:45 -0800214 $log = _$log_;
Simon Hunta11b4eb2015-01-28 16:20:50 -0800215 fs = _fs_;
Simon Hunt6cc53692015-01-07 11:33:45 -0800216 ks = _ks_;
Simon Huntcacce342015-01-07 16:13:05 -0800217 zs = _zs_;
Simon Hunt6cc53692015-01-07 11:33:45 -0800218 gs = _gs_;
Simon Hunt1e8eff42015-01-08 17:19:02 -0800219 ms = _ms_;
Simon Hunt7c8ab8d2015-02-03 15:05:15 -0800220 sus = _sus_;
Simon Hunt737c89f2015-01-28 12:23:19 -0800221 tfs = _tfs_;
Simon Huntac4c6f72015-02-03 19:50:53 -0800222 tis = _tis_;
Simon Huntef31fb22014-12-19 13:16:44 -0800223
Simon Hunt426bd862015-01-14 16:48:41 -0800224 self.notifyResize = function () {
Simon Huntb0ec1e52015-01-28 18:13:49 -0800225 svgResized(fs.windowSize(mast.mastHeight()));
Simon Hunt426bd862015-01-14 16:48:41 -0800226 };
Simon Huntef31fb22014-12-19 13:16:44 -0800227
Simon Hunt54442fa2015-01-26 14:17:38 -0800228 // Cleanup on destroyed scope..
Simon Hunt584122a2015-01-21 15:32:40 -0800229 $scope.$on('$destroy', function () {
230 $log.log('OvTopoCtrl is saying Buh-Bye!');
Simon Huntfd1231a2015-01-26 22:14:51 -0800231 tes.closeSock();
Simon Hunt626d2102015-01-29 11:54:50 -0800232 tps.destroyPanels();
Simon Hunt4b668592015-01-29 17:33:53 -0800233 tis.destroyInst();
Simon Hunt3a6eec02015-02-09 21:16:43 -0800234 tfs.destroyForce();
Simon Hunt584122a2015-01-21 15:32:40 -0800235 });
236
Simon Huntcacce342015-01-07 16:13:05 -0800237 // svg layer and initialization of components
Simon Hunt426bd862015-01-14 16:48:41 -0800238 ovtopo = d3.select('#ov-topo');
239 svg = ovtopo.select('svg');
Simon Hunta11b4eb2015-01-28 16:20:50 -0800240 // set the svg size to match that of the window, less the masthead
241 svg.attr(fs.windowSize(mast.mastHeight()));
Simon Hunt3a6eec02015-02-09 21:16:43 -0800242 dim = [svg.attr('width'), svg.attr('height')];
Simon Hunt426bd862015-01-14 16:48:41 -0800243
Simon Hunt6cc53692015-01-07 11:33:45 -0800244 setUpKeys();
245 setUpDefs();
Simon Huntcacce342015-01-07 16:13:05 -0800246 setUpZoom();
Simon Hunt7c8ab8d2015-02-03 15:05:15 -0800247 setUpNoDevs();
Simon Hunt1894d792015-02-04 17:09:20 -0800248 setUpMap().then(
249 function (proj) {
250 projection = proj;
251 $log.debug('** We installed the projection: ', proj);
252 }
253 );
Simon Huntfd1231a2015-01-26 22:14:51 -0800254
Simon Hunt1894d792015-02-04 17:09:20 -0800255 forceG = zoomLayer.append('g').attr('id', 'topo-force');
Simon Hunt3a6eec02015-02-09 21:16:43 -0800256 tfs.initForce(forceG, uplink, dim);
Simon Hunt4b668592015-01-29 17:33:53 -0800257 tis.initInst();
Simon Hunt626d2102015-01-29 11:54:50 -0800258 tps.initPanels();
Simon Huntfd1231a2015-01-26 22:14:51 -0800259 tes.openSock();
Simon Hunt6cc53692015-01-07 11:33:45 -0800260
261 $log.log('OvTopoCtrl has been created');
Simon Huntef31fb22014-12-19 13:16:44 -0800262 }]);
263}());