blob: feef3b565a766db591853ee4990cb3e3a3d238c5 [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 Burrows1c2a9682017-07-14 16:52:46 +010046 _keyListener: t2tbs.keyListener.bind(t2tbs),
Steven Burrowsa58cb822017-11-01 16:15:13 +000047
48 _helpFormat: [
49 ['I', 'O', 'D', 'H', 'M', 'P', 'dash', 'B'],
50 ['X', 'Z', 'N', 'L', 'shift-L', 'U', 'R', 'E', 'dot'],
51 [], // this column reserved for overlay actions
52 ],
Steven Burrows1c2a9682017-07-14 16:52:46 +010053 };
Simon Hunte6f64612017-04-28 00:01:48 -070054 }
Steven Burrows37549ee2016-09-21 14:41:39 +010055
Steven Burrows31e00c612018-02-06 10:38:57 +000056 function init(_t2fs_, _t2tbs_, _svg_) {
Steven Burrows1c5c8612016-10-05 13:45:13 -050057 t2fs = _t2fs_;
Steven Burrowsc8468932017-03-17 16:13:41 +000058 t2tbs = _t2tbs_;
Steven Burrows31e00c612018-02-06 10:38:57 +000059 svg = _svg_;
Steven Burrows37549ee2016-09-21 14:41:39 +010060 bindCommands();
61 }
62
Simon Hunte6f64612017-04-28 00:01:48 -070063 function bindCommands(additional) {
Steven Burrows37549ee2016-09-21 14:41:39 +010064
Simon Hunte6f64612017-04-28 00:01:48 -070065 var am = actionMap(),
66 add = fs.isO(additional);
67
68 if (add) {
69 _.each(add, function (value, key) {
70 // filter out meta properties (e.g. _keyOrder)
Steven Burrows202034f2017-08-11 12:08:01 +010071 if (!(_.startsWith(key, '_'))) {
Simon Hunte6f64612017-04-28 00:01:48 -070072 // don't allow re-definition of existing key bindings
73 if (am[key]) {
74 $log.warn('keybind: ' + key + ' already exists');
75 } else {
76 am[key] = [value.cb, value.tt];
77 }
78 }
79 });
80 }
81
82 ks.keyBindings(am);
Steven Burrows37549ee2016-09-21 14:41:39 +010083
84 ks.gestureNotes([
85 ['click', 'Select the item and show details'],
86 ['shift-click', 'Toggle selection state'],
87 ['drag', 'Reposition (and pin) device / host'],
88 ['cmd-scroll', 'Zoom in / out'],
Steven Burrows1c2a9682017-07-14 16:52:46 +010089 ['cmd-drag', 'Pan'],
Steven Burrows37549ee2016-09-21 14:41:39 +010090 ]);
91 }
92
Steven Burrowsc0efbf02016-11-16 11:30:47 -060093 function handleEscape() {
Steven Burrows1aa4f582016-12-13 15:05:41 -050094
95 if (false) {
96 // TODO: Cancel show mastership
97 // TODO: Cancel Active overlay
98
99 } else if (t2rs.deselectAllNodes()) {
100 // else if we have node selections, deselect them all
101 // (work already done)
102 } else if (t2rs.deselectLink()) {
103 // else if we have a link selection, deselect it
104 // (work already done)
Steven Burrowsc0efbf02016-11-16 11:30:47 -0600105 } else if (t2is.isVisible()) {
Steven Burrows1aa4f582016-12-13 15:05:41 -0500106 // If the instance panel is visible, close it
107 t2is.toggle();
108 } else if (t2sp.isVisible()) {
109 // If the summary panel is visible, close it
110 t2sp.toggle();
111 }
Steven Burrowsc0efbf02016-11-16 11:30:47 -0600112 }
113
Steven Burrows01ddf602016-09-28 14:21:00 -0700114 var prefsState = {};
115
116 function updatePrefsState(what, b) {
117 prefsState[what] = b ? 1 : 0;
Simon Hunt95f4b422017-03-03 13:49:05 -0800118 ps.setPrefs('topo2_prefs', prefsState);
Steven Burrows01ddf602016-09-28 14:21:00 -0700119 }
120
Steven Burrows583f4be2016-11-04 14:06:50 +0100121 function deviceLabelFlashMessage(index) {
Steven Burrows583f4be2016-11-04 14:06:50 +0100122 switch (index) {
123 case 0: return 'Hide device labels';
124 case 1: return 'Show friendly device labels';
125 case 2: return 'Show device ID labels';
126 }
127 }
128
Steven Burrowscc6f6de2017-08-30 12:50:38 +0100129 function hostLabelFlashMessage(index) {
130 switch (index) {
131 case 0: return 'Hide host labels';
132 case 1: return 'Show friendly host labels';
133 case 2: return 'Show host IP labels';
134 case 3: return 'Show host MAC Address labels';
135 }
136 }
137
Steven Burrows37549ee2016-09-21 14:41:39 +0100138 function cycleDeviceLabels() {
Steven Burrows583f4be2016-11-04 14:06:50 +0100139 var deviceLabelIndex = t2ps.get('dlbls') + 1,
Steven Burrowsaf96a212016-12-28 12:57:02 +0000140 newDeviceLabelIndex = deviceLabelIndex % 3;
Steven Burrows583f4be2016-11-04 14:06:50 +0100141
142 t2ps.set('dlbls', newDeviceLabelIndex);
Steven Burrows1c5c8612016-10-05 13:45:13 -0500143 t2fs.updateNodes();
Steven Burrows583f4be2016-11-04 14:06:50 +0100144 flash.flash(deviceLabelFlashMessage(newDeviceLabelIndex));
Steven Burrows37549ee2016-09-21 14:41:39 +0100145 }
146
Steven Burrowscc6f6de2017-08-30 12:50:38 +0100147 function cycleHostLabels() {
148 var hostLabelIndex = t2ps.get('hlbls') + 1,
149 newHostLabelIndex = hostLabelIndex % 4;
150
151 t2ps.set('hlbls', newHostLabelIndex);
152 t2fs.updateNodes();
153 flash.flash(hostLabelFlashMessage(newHostLabelIndex));
154 }
155
Steven Burrowsb43c1a92017-03-07 17:13:28 +0000156 function toggleBackground(x) {
157 t2bgs.toggle(x);
Steven Burrowse3a18842016-09-22 15:33:33 +0100158 }
159
Steven Burrowsb8ebd402017-11-01 15:31:31 +0000160 function toggleDetails(x) {
161 t2dp().toggleUseDetailsFlag(x);
162 }
163
Steven Burrows01ddf602016-09-28 14:21:00 -0700164 function toggleInstancePanel(x) {
165 updatePrefsState('insts', t2is.toggle(x));
166 }
167
Steven Burrows5570d1b2016-09-28 14:21:00 -0700168 function toggleSummary() {
169 t2sp.toggle();
170 }
171
Steven Burrows1c5c8612016-10-05 13:45:13 -0500172 function resetZoom() {
Steven Burrows3bbd9af2017-03-16 14:44:14 +0000173 t2bgs.resetZoom();
Steven Burrows1c5c8612016-10-05 13:45:13 -0500174 flash.flash('Pan and zoom reset');
175 }
176
177 function togglePorts(x) {
178 updatePrefsState('porthl', t2vs.togglePortHighlights(x));
179 t2fs.updateLinks();
180 }
181
182 function equalizeMasters() {
183 wss.sendEvent('equalizeMasters');
184 flash.flash('Equalizing master roles');
185 }
186
Steven Burrows892cba62017-03-10 16:31:48 +0000187 function resetNodeLocation() {
188 t2fs.resetNodeLocation();
Steven Burrows1c5c8612016-10-05 13:45:13 -0500189 flash.flash('Reset node locations');
190 }
191
192 function unpinNode() {
193 t2fs.unpin();
194 flash.flash('Unpin node');
195 }
196
Simon Hunt47f8fb72017-04-11 13:49:31 -0700197 function toggleToolbar() {
198 t2tbs.toggle();
199 }
200
Steven Burrows02e67f42017-04-13 13:59:43 -0700201 function actionedFlashed(action, message) {
202 flash.flash(action + ' ' + message);
203 }
204
Steven Burrowsaea509d2017-04-12 14:17:47 -0700205 function toggleHosts() {
Steven Burrows02e67f42017-04-13 13:59:43 -0700206 var on = t2rs.toggleHosts();
Steven Burrows1c2a9682017-07-14 16:52:46 +0100207 actionedFlashed(on ? 'Show': 'Hide', 'Hosts');
Steven Burrows02e67f42017-04-13 13:59:43 -0700208 }
209
210 function toggleOfflineDevices() {
211 var on = t2rs.toggleOfflineDevices();
Steven Burrows1c2a9682017-07-14 16:52:46 +0100212 actionedFlashed(on ? 'Show': 'Hide', 'offline devices');
Steven Burrowsaea509d2017-04-12 14:17:47 -0700213 }
214
Steven Burrowsc8468932017-03-17 16:13:41 +0000215 function notValid(what) {
216 $log.warn('topo.js getActionEntry(): Not a valid ' + what);
217 }
218
219 function getActionEntry(key) {
220 var entry;
221
222 if (!key) {
223 notValid('key');
224 return null;
225 }
226
227 entry = actionMap()[key];
228
229 if (!entry) {
230 notValid('actionMap (' + key + ') entry');
231 return null;
232 }
233 return fs.isA(entry) || [entry, ''];
234 }
235
Steven Burrows37549ee2016-09-21 14:41:39 +0100236 angular.module('ovTopo2')
Steven Burrowsaf96a212016-12-28 12:57:02 +0000237 .factory('Topo2KeyCommandService', [
Simon Hunt47f8fb72017-04-11 13:49:31 -0700238 '$log', 'FnService', 'KeyService', 'FlashService', 'WebSocketService',
239 'Topo2PrefsService', 'Topo2BackgroundService', 'PrefsService',
240 'Topo2InstanceService', 'Topo2SummaryPanelService', 'Topo2ViewService',
Steven Burrows31e00c612018-02-06 10:38:57 +0000241 'Topo2RegionService', 'Topo2DetailsPanelService', 'SvgUtilService',
Simon Hunt47f8fb72017-04-11 13:49:31 -0700242
243 function (_$log_, _fs_, _ks_, _flash_, _wss_, _t2ps_, _t2bgs_, _ps_,
Steven Burrows31e00c612018-02-06 10:38:57 +0000244 _t2is_, _t2sp_, _t2vs_, _t2rs_, _t2dp_, _sus_) {
Steven Burrows1c5c8612016-10-05 13:45:13 -0500245
Steven Burrowsc8468932017-03-17 16:13:41 +0000246 $log = _$log_;
247 fs = _fs_;
Steven Burrows1c5c8612016-10-05 13:45:13 -0500248 ks = _ks_;
249 flash = _flash_;
250 wss = _wss_;
Steven Burrows37549ee2016-09-21 14:41:39 +0100251 t2ps = _t2ps_;
Steven Burrowsb43c1a92017-03-07 17:13:28 +0000252 t2bgs = _t2bgs_;
Steven Burrows01ddf602016-09-28 14:21:00 -0700253 t2is = _t2is_;
254 ps = _ps_;
Steven Burrows5570d1b2016-09-28 14:21:00 -0700255 t2sp = _t2sp_;
Steven Burrows1c5c8612016-10-05 13:45:13 -0500256 t2vs = _t2vs_;
Steven Burrows1aa4f582016-12-13 15:05:41 -0500257 t2rs = _t2rs_;
Steven Burrowsb8ebd402017-11-01 15:31:31 +0000258 t2dp = _t2dp_;
Steven Burrows31e00c612018-02-06 10:38:57 +0000259 sus = _sus_;
Steven Burrows37549ee2016-09-21 14:41:39 +0100260
261 return {
262 init: init,
Steven Burrowsc8468932017-03-17 16:13:41 +0000263 bindCommands: bindCommands,
Steven Burrows1c2a9682017-07-14 16:52:46 +0100264 getActionEntry: getActionEntry,
Steven Burrows37549ee2016-09-21 14:41:39 +0100265 };
Steven Burrows1c2a9682017-07-14 16:52:46 +0100266 },
Steven Burrows37549ee2016-09-21 14:41:39 +0100267 ]);
268})();