blob: 25cea72d1ad662f25c16437c0099f9e17b677875 [file] [log] [blame]
Steven Burrows37549ee2016-09-21 14:41:39 +01001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002* Copyright 2016-present Open Networking Foundation
Steven Burrows37549ee2016-09-21 14:41:39 +01003*
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(function () {
18
19 // Injected Services
Simon Hunt47f8fb72017-04-11 13:49:31 -070020 var $log, fs, ks, flash, wss, t2ps, t2bgs, ps, t2is, t2sp, t2vs, t2rs,
Steven Burrows31e00c612018-02-06 10:38:57 +000021 t2fs, t2tbs, t2dp, svg, sus;
Steven Burrows37549ee2016-09-21 14:41:39 +010022
23 // Commmands
Steven Burrowsc8468932017-03-17 16:13:41 +000024 function actionMap() {
25 return {
26 L: [cycleDeviceLabels, 'Cycle device labels'],
27 B: [toggleBackground, 'Toggle background'],
Steven Burrowsb8ebd402017-11-01 15:31:31 +000028 D: [toggleDetails, 'Toggle details panel'],
Steven Burrowsc8468932017-03-17 16:13:41 +000029 I: [toggleInstancePanel, 'Toggle ONOS Instance Panel'],
30 O: [toggleSummary, 'Toggle the Summary Panel'],
31 R: [resetZoom, 'Reset pan / zoom'],
32 P: [togglePorts, 'Toggle Port Highlighting'],
33 E: [equalizeMasters, 'Equalize mastership roles'],
34 X: [resetNodeLocation, 'Reset Node Location'],
35 U: [unpinNode, 'Unpin node (mouse over)'],
Steven Burrowsaea509d2017-04-12 14:17:47 -070036 H: [toggleHosts, 'Toggle host visibility'],
Steven Burrows02e67f42017-04-13 13:59:43 -070037 M: [toggleOfflineDevices, 'Toggle offline visibility'],
Simon Hunt47f8fb72017-04-11 13:49:31 -070038 dot: [toggleToolbar, 'Toggle Toolbar'],
Steven Burrowscc6f6de2017-08-30 12:50:38 +010039 'shift-L': [cycleHostLabels, 'Cycle host labels'],
Steven Burrowsc0efbf02016-11-16 11:30:47 -060040
Steven Burrows31e00c612018-02-06 10:38:57 +000041 // -- instance color palette debug
42 9: function () { sus.cat7().testCard(svg); },
43
Steven Burrowsc8468932017-03-17 16:13:41 +000044 esc: handleEscape,
45
Steven Burrows58bdbdd2018-02-13 12:56:43 +000046 // topology overlay selections
47 F1: function () { t2tbs.fnKey(0); },
48 F2: function () { t2tbs.fnKey(1); },
49 F3: function () { t2tbs.fnKey(2); },
50 F4: function () { t2tbs.fnKey(3); },
51 F5: function () { t2tbs.fnKey(4); },
52
Steven Burrows1c2a9682017-07-14 16:52:46 +010053 _keyListener: t2tbs.keyListener.bind(t2tbs),
Steven Burrowsa58cb822017-11-01 16:15:13 +000054
55 _helpFormat: [
56 ['I', 'O', 'D', 'H', 'M', 'P', 'dash', 'B'],
57 ['X', 'Z', 'N', 'L', 'shift-L', 'U', 'R', 'E', 'dot'],
58 [], // this column reserved for overlay actions
59 ],
Steven Burrows1c2a9682017-07-14 16:52:46 +010060 };
Simon Hunte6f64612017-04-28 00:01:48 -070061 }
Steven Burrows37549ee2016-09-21 14:41:39 +010062
Steven Burrows31e00c612018-02-06 10:38:57 +000063 function init(_t2fs_, _t2tbs_, _svg_) {
Steven Burrows1c5c8612016-10-05 13:45:13 -050064 t2fs = _t2fs_;
Steven Burrowsc8468932017-03-17 16:13:41 +000065 t2tbs = _t2tbs_;
Steven Burrows31e00c612018-02-06 10:38:57 +000066 svg = _svg_;
Steven Burrows37549ee2016-09-21 14:41:39 +010067 bindCommands();
68 }
69
Simon Hunte6f64612017-04-28 00:01:48 -070070 function bindCommands(additional) {
Steven Burrows37549ee2016-09-21 14:41:39 +010071
Simon Hunte6f64612017-04-28 00:01:48 -070072 var am = actionMap(),
73 add = fs.isO(additional);
74
75 if (add) {
76 _.each(add, function (value, key) {
77 // filter out meta properties (e.g. _keyOrder)
Steven Burrows202034f2017-08-11 12:08:01 +010078 if (!(_.startsWith(key, '_'))) {
Simon Hunte6f64612017-04-28 00:01:48 -070079 // don't allow re-definition of existing key bindings
80 if (am[key]) {
81 $log.warn('keybind: ' + key + ' already exists');
82 } else {
83 am[key] = [value.cb, value.tt];
84 }
85 }
86 });
87 }
88
89 ks.keyBindings(am);
Steven Burrows37549ee2016-09-21 14:41:39 +010090
91 ks.gestureNotes([
92 ['click', 'Select the item and show details'],
93 ['shift-click', 'Toggle selection state'],
94 ['drag', 'Reposition (and pin) device / host'],
95 ['cmd-scroll', 'Zoom in / out'],
Steven Burrows1c2a9682017-07-14 16:52:46 +010096 ['cmd-drag', 'Pan'],
Steven Burrows37549ee2016-09-21 14:41:39 +010097 ]);
98 }
99
Steven Burrowsc0efbf02016-11-16 11:30:47 -0600100 function handleEscape() {
Steven Burrows1aa4f582016-12-13 15:05:41 -0500101
102 if (false) {
103 // TODO: Cancel show mastership
104 // TODO: Cancel Active overlay
105
106 } else if (t2rs.deselectAllNodes()) {
107 // else if we have node selections, deselect them all
108 // (work already done)
109 } else if (t2rs.deselectLink()) {
110 // else if we have a link selection, deselect it
111 // (work already done)
Steven Burrowsc0efbf02016-11-16 11:30:47 -0600112 } else if (t2is.isVisible()) {
Steven Burrows1aa4f582016-12-13 15:05:41 -0500113 // If the instance panel is visible, close it
114 t2is.toggle();
115 } else if (t2sp.isVisible()) {
116 // If the summary panel is visible, close it
117 t2sp.toggle();
118 }
Steven Burrowsc0efbf02016-11-16 11:30:47 -0600119 }
120
Steven Burrows01ddf602016-09-28 14:21:00 -0700121 var prefsState = {};
122
123 function updatePrefsState(what, b) {
124 prefsState[what] = b ? 1 : 0;
Simon Hunt95f4b422017-03-03 13:49:05 -0800125 ps.setPrefs('topo2_prefs', prefsState);
Steven Burrows01ddf602016-09-28 14:21:00 -0700126 }
127
Steven Burrows583f4be2016-11-04 14:06:50 +0100128 function deviceLabelFlashMessage(index) {
Steven Burrows583f4be2016-11-04 14:06:50 +0100129 switch (index) {
130 case 0: return 'Hide device labels';
131 case 1: return 'Show friendly device labels';
132 case 2: return 'Show device ID labels';
133 }
134 }
135
Steven Burrowscc6f6de2017-08-30 12:50:38 +0100136 function hostLabelFlashMessage(index) {
137 switch (index) {
138 case 0: return 'Hide host labels';
139 case 1: return 'Show friendly host labels';
140 case 2: return 'Show host IP labels';
141 case 3: return 'Show host MAC Address labels';
142 }
143 }
144
Steven Burrows37549ee2016-09-21 14:41:39 +0100145 function cycleDeviceLabels() {
Steven Burrows583f4be2016-11-04 14:06:50 +0100146 var deviceLabelIndex = t2ps.get('dlbls') + 1,
Steven Burrowsaf96a212016-12-28 12:57:02 +0000147 newDeviceLabelIndex = deviceLabelIndex % 3;
Steven Burrows583f4be2016-11-04 14:06:50 +0100148
149 t2ps.set('dlbls', newDeviceLabelIndex);
Steven Burrows1c5c8612016-10-05 13:45:13 -0500150 t2fs.updateNodes();
Steven Burrows583f4be2016-11-04 14:06:50 +0100151 flash.flash(deviceLabelFlashMessage(newDeviceLabelIndex));
Steven Burrows37549ee2016-09-21 14:41:39 +0100152 }
153
Steven Burrowscc6f6de2017-08-30 12:50:38 +0100154 function cycleHostLabels() {
155 var hostLabelIndex = t2ps.get('hlbls') + 1,
156 newHostLabelIndex = hostLabelIndex % 4;
157
158 t2ps.set('hlbls', newHostLabelIndex);
159 t2fs.updateNodes();
160 flash.flash(hostLabelFlashMessage(newHostLabelIndex));
161 }
162
Steven Burrowsb43c1a92017-03-07 17:13:28 +0000163 function toggleBackground(x) {
164 t2bgs.toggle(x);
Steven Burrowse3a18842016-09-22 15:33:33 +0100165 }
166
Steven Burrowsb8ebd402017-11-01 15:31:31 +0000167 function toggleDetails(x) {
168 t2dp().toggleUseDetailsFlag(x);
169 }
170
Steven Burrows01ddf602016-09-28 14:21:00 -0700171 function toggleInstancePanel(x) {
172 updatePrefsState('insts', t2is.toggle(x));
173 }
174
Steven Burrows5570d1b2016-09-28 14:21:00 -0700175 function toggleSummary() {
176 t2sp.toggle();
177 }
178
Steven Burrows1c5c8612016-10-05 13:45:13 -0500179 function resetZoom() {
Steven Burrows3bbd9af2017-03-16 14:44:14 +0000180 t2bgs.resetZoom();
Steven Burrows1c5c8612016-10-05 13:45:13 -0500181 flash.flash('Pan and zoom reset');
182 }
183
184 function togglePorts(x) {
185 updatePrefsState('porthl', t2vs.togglePortHighlights(x));
186 t2fs.updateLinks();
187 }
188
189 function equalizeMasters() {
190 wss.sendEvent('equalizeMasters');
191 flash.flash('Equalizing master roles');
192 }
193
Steven Burrows892cba62017-03-10 16:31:48 +0000194 function resetNodeLocation() {
195 t2fs.resetNodeLocation();
Steven Burrows1c5c8612016-10-05 13:45:13 -0500196 flash.flash('Reset node locations');
197 }
198
199 function unpinNode() {
200 t2fs.unpin();
201 flash.flash('Unpin node');
202 }
203
Simon Hunt47f8fb72017-04-11 13:49:31 -0700204 function toggleToolbar() {
205 t2tbs.toggle();
206 }
207
Steven Burrows02e67f42017-04-13 13:59:43 -0700208 function actionedFlashed(action, message) {
209 flash.flash(action + ' ' + message);
210 }
211
Steven Burrowsaea509d2017-04-12 14:17:47 -0700212 function toggleHosts() {
Steven Burrows02e67f42017-04-13 13:59:43 -0700213 var on = t2rs.toggleHosts();
Steven Burrows1c2a9682017-07-14 16:52:46 +0100214 actionedFlashed(on ? 'Show': 'Hide', 'Hosts');
Steven Burrows02e67f42017-04-13 13:59:43 -0700215 }
216
217 function toggleOfflineDevices() {
218 var on = t2rs.toggleOfflineDevices();
Steven Burrows1c2a9682017-07-14 16:52:46 +0100219 actionedFlashed(on ? 'Show': 'Hide', 'offline devices');
Steven Burrowsaea509d2017-04-12 14:17:47 -0700220 }
221
Steven Burrowsc8468932017-03-17 16:13:41 +0000222 function notValid(what) {
223 $log.warn('topo.js getActionEntry(): Not a valid ' + what);
224 }
225
226 function getActionEntry(key) {
227 var entry;
228
229 if (!key) {
230 notValid('key');
231 return null;
232 }
233
234 entry = actionMap()[key];
235
236 if (!entry) {
237 notValid('actionMap (' + key + ') entry');
238 return null;
239 }
240 return fs.isA(entry) || [entry, ''];
241 }
242
Steven Burrows37549ee2016-09-21 14:41:39 +0100243 angular.module('ovTopo2')
Steven Burrowsaf96a212016-12-28 12:57:02 +0000244 .factory('Topo2KeyCommandService', [
Simon Hunt47f8fb72017-04-11 13:49:31 -0700245 '$log', 'FnService', 'KeyService', 'FlashService', 'WebSocketService',
246 'Topo2PrefsService', 'Topo2BackgroundService', 'PrefsService',
247 'Topo2InstanceService', 'Topo2SummaryPanelService', 'Topo2ViewService',
Steven Burrows31e00c612018-02-06 10:38:57 +0000248 'Topo2RegionService', 'Topo2DetailsPanelService', 'SvgUtilService',
Simon Hunt47f8fb72017-04-11 13:49:31 -0700249
250 function (_$log_, _fs_, _ks_, _flash_, _wss_, _t2ps_, _t2bgs_, _ps_,
Steven Burrows58bdbdd2018-02-13 12:56:43 +0000251 _t2is_, _t2sp_, _t2vs_, _t2rs_, _t2dp_, _t2tbs_, _sus_) {
Steven Burrows1c5c8612016-10-05 13:45:13 -0500252
Steven Burrowsc8468932017-03-17 16:13:41 +0000253 $log = _$log_;
254 fs = _fs_;
Steven Burrows1c5c8612016-10-05 13:45:13 -0500255 ks = _ks_;
256 flash = _flash_;
257 wss = _wss_;
Steven Burrows37549ee2016-09-21 14:41:39 +0100258 t2ps = _t2ps_;
Steven Burrowsb43c1a92017-03-07 17:13:28 +0000259 t2bgs = _t2bgs_;
Steven Burrows01ddf602016-09-28 14:21:00 -0700260 t2is = _t2is_;
261 ps = _ps_;
Steven Burrows5570d1b2016-09-28 14:21:00 -0700262 t2sp = _t2sp_;
Steven Burrows1c5c8612016-10-05 13:45:13 -0500263 t2vs = _t2vs_;
Steven Burrows1aa4f582016-12-13 15:05:41 -0500264 t2rs = _t2rs_;
Steven Burrowsb8ebd402017-11-01 15:31:31 +0000265 t2dp = _t2dp_;
Steven Burrows31e00c612018-02-06 10:38:57 +0000266 sus = _sus_;
Steven Burrows37549ee2016-09-21 14:41:39 +0100267
268 return {
269 init: init,
Steven Burrowsc8468932017-03-17 16:13:41 +0000270 bindCommands: bindCommands,
Steven Burrows1c2a9682017-07-14 16:52:46 +0100271 getActionEntry: getActionEntry,
Steven Burrows37549ee2016-09-21 14:41:39 +0100272 };
Steven Burrows1c2a9682017-07-14 16:52:46 +0100273 },
Steven Burrows37549ee2016-09-21 14:41:39 +0100274 ]);
275})();