blob: 342e108f46dc5e2c9fb409f7abaee94146702be9 [file] [log] [blame]
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -07001/*
2 * Copyright 2015 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 */
16
17/*
18 ONOS GUI -- Topology Toolbar Module.
Simon Hunt09060142015-03-18 20:23:32 -070019 Functions for creating and interacting with the toolbar.
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -070020 */
21
22(function () {
Bri Prebilic Cole54d09382015-03-19 18:40:27 -070023 'use strict';
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -070024
25 // injected references
Simon Hunt72e44bf2015-07-21 21:34:20 -070026 var $log, fs, tbs, ps, tov, api;
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -070027
Simon Hunt09060142015-03-18 20:23:32 -070028 // internal state
Simon Huntfcbde892015-04-16 12:05:28 -070029 var toolbar, keyData, cachedState;
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -070030
Bri Prebilic Coled6219052015-03-19 14:34:02 -070031 // constants
Simon Huntc7ae7952015-04-08 18:59:27 -070032 var name = 'topo-tbar',
33 cooktag = 'topo_prefs';
Bri Prebilic Coled6219052015-03-19 14:34:02 -070034
Simon Hunt09060142015-03-18 20:23:32 -070035 // key to button mapping data
36 var k2b = {
Bri Prebilic Coledeca6e92015-03-19 12:03:14 -070037 O: { id: 'summary-tog', gid: 'summary', isel: true},
Simon Hunt09060142015-03-18 20:23:32 -070038 I: { id: 'instance-tog', gid: 'uiAttached', isel: true },
Bri Prebilic Coledeca6e92015-03-19 12:03:14 -070039 D: { id: 'details-tog', gid: 'details', isel: true },
Simon Hunt09060142015-03-18 20:23:32 -070040
41 H: { id: 'hosts-tog', gid: 'endstation', isel: false },
42 M: { id: 'offline-tog', gid: 'switch', isel: true },
Bri Prebilic Coledeca6e92015-03-19 12:03:14 -070043 P: { id: 'ports-tog', gid: 'ports', isel: true },
Simon Huntd0fe66c2015-06-10 10:16:36 -070044 B: { id: 'bkgrnd-tog', gid: 'map', isel: false },
Simon Hunt2052e5d2015-04-13 17:40:44 -070045 S: { id: 'sprite-tog', gid: 'cloud', isel: false },
Bri Prebilic Cole812f6c02015-03-24 17:10:33 -070046
47 //X: { id: 'nodelock-tog', gid: 'lock', isel: false },
48 Z: { id: 'oblique-tog', gid: 'oblique', isel: false },
Bri Prebilic Coleb5f2b152015-04-07 14:58:09 -070049 N: { id: 'filters-btn', gid: 'filters' },
Bri Prebilic Cole812f6c02015-03-24 17:10:33 -070050 L: { id: 'cycleLabels-btn', gid: 'cycleLabels' },
51 R: { id: 'resetZoom-btn', gid: 'resetZoom' },
52
Bri Prebilic Cole7c980512015-03-25 12:31:29 -070053 V: { id: 'relatedIntents-btn', gid: 'relatedIntents' },
Bri Prebilic Cole812f6c02015-03-24 17:10:33 -070054 leftArrow: { id: 'prevIntent-btn', gid: 'prevIntent' },
55 rightArrow: { id: 'nextIntent-btn', gid: 'nextIntent' },
56 W: { id: 'intentTraffic-btn', gid: 'intentTraffic' },
57 A: { id: 'allTraffic-btn', gid: 'allTraffic' },
58 F: { id: 'flows-btn', gid: 'flows' },
59
60 E: { id: 'eqMaster-btn', gid: 'eqMaster' }
Simon Hunt09060142015-03-18 20:23:32 -070061 };
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -070062
Simon Huntc7ae7952015-04-08 18:59:27 -070063 // initial toggle state: default settings and tag to key mapping
64 var defaultPrefsState = {
Simon Huntc7ae7952015-04-08 18:59:27 -070065 summary: 1,
Simon Huntfcbde892015-04-16 12:05:28 -070066 insts: 1,
Simon Huntc7ae7952015-04-08 18:59:27 -070067 detail: 1,
Simon Huntfcbde892015-04-16 12:05:28 -070068 hosts: 0,
69 offdev: 1,
70 porthl: 1,
Simon Huntd0fe66c2015-06-10 10:16:36 -070071 bg: 0,
Simon Huntfcbde892015-04-16 12:05:28 -070072 spr: 0,
Simon Huntd0fe66c2015-06-10 10:16:36 -070073 toolbar: 0
Simon Huntc7ae7952015-04-08 18:59:27 -070074 },
75 prefsMap = {
Simon Huntc7ae7952015-04-08 18:59:27 -070076 summary: 'O',
Simon Huntfcbde892015-04-16 12:05:28 -070077 insts: 'I',
78 detail: 'D',
79 hosts: 'H',
80 offdev: 'M',
81 porthl: 'P',
82 bg: 'B',
83 spr: 'S'
84 // NOTE: toolbar state is handled separately
Simon Huntc7ae7952015-04-08 18:59:27 -070085 };
86
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -070087 function init(_api_) {
88 api = _api_;
Simon Huntc7ae7952015-04-08 18:59:27 -070089
90 // retrieve initial toggle button settings from user prefs
91 setInitToggleState();
92 }
93
94 function topoDefPrefs() {
95 return angular.extend({}, defaultPrefsState);
96 }
97
98 function setInitToggleState() {
Simon Huntfcbde892015-04-16 12:05:28 -070099 cachedState = ps.asNumbers(ps.getPrefs(cooktag));
100 $log.debug('TOOLBAR---- read prefs state:', cachedState);
Simon Huntc7ae7952015-04-08 18:59:27 -0700101
Simon Huntfcbde892015-04-16 12:05:28 -0700102 if (!cachedState) {
103 cachedState = topoDefPrefs();
104 ps.setPrefs(cooktag, cachedState);
105 $log.debug('TOOLBAR---- Set default prefs state:', cachedState);
Simon Huntc7ae7952015-04-08 18:59:27 -0700106 }
107
108 angular.forEach(prefsMap, function (v, k) {
Simon Huntfcbde892015-04-16 12:05:28 -0700109 var cfg = k2b[v];
110 cfg && (cfg.isel = !!cachedState[k]);
Simon Huntc7ae7952015-04-08 18:59:27 -0700111 });
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -0700112 }
113
Simon Hunt09060142015-03-18 20:23:32 -0700114 function initKeyData() {
115 keyData = d3.map(k2b);
116 keyData.forEach(function(key, value) {
117 var data = api.getActionEntry(key);
Simon Hunt90dcc3e2015-03-25 15:01:27 -0700118 value.cb = data[0]; // on-click callback
119 value.tt = data[1] + ' (' + key + ')'; // tooltip
Simon Hunt09060142015-03-18 20:23:32 -0700120 });
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -0700121 }
122
Bri Prebilic Cole812f6c02015-03-24 17:10:33 -0700123 function addButton(key) {
124 var v = keyData.get(key);
125 v.btn = toolbar.addButton(v.id, v.gid, v.cb, v.tt);
126 }
Bri Prebilic Coled8745462015-06-01 16:08:57 -0700127 function addToggle(key, suppressIfMobile) {
Simon Hunt09060142015-03-18 20:23:32 -0700128 var v = keyData.get(key);
Bri Prebilic Coled8745462015-06-01 16:08:57 -0700129 if (suppressIfMobile && fs.isMobile()) { return; }
Simon Hunt09060142015-03-18 20:23:32 -0700130 v.tog = toolbar.addToggle(v.id, v.gid, v.isel, v.cb, v.tt);
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -0700131 }
132
Bri Prebilic Cole04b41402015-03-18 17:25:34 -0700133 function addFirstRow() {
Simon Hunt09060142015-03-18 20:23:32 -0700134 addToggle('I');
Simon Huntda2f3cc2015-03-19 15:11:57 -0700135 addToggle('O');
Simon Hunt09060142015-03-18 20:23:32 -0700136 addToggle('D');
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -0700137 toolbar.addSeparator();
138
Simon Hunt09060142015-03-18 20:23:32 -0700139 addToggle('H');
140 addToggle('M');
Bri Prebilic Coled8745462015-06-01 16:08:57 -0700141 addToggle('P', true);
Simon Hunt09060142015-03-18 20:23:32 -0700142 addToggle('B');
Bri Prebilic Coled8745462015-06-01 16:08:57 -0700143 addToggle('S', true);
Bri Prebilic Cole04b41402015-03-18 17:25:34 -0700144 }
Simon Hunt72e44bf2015-07-21 21:34:20 -0700145
Bri Prebilic Cole812f6c02015-03-24 17:10:33 -0700146 function addSecondRow() {
Bri Prebilic Cole7c980512015-03-25 12:31:29 -0700147 //addToggle('X');
Bri Prebilic Cole812f6c02015-03-24 17:10:33 -0700148 addToggle('Z');
Bri Prebilic Coleb5f2b152015-04-07 14:58:09 -0700149 addButton('N');
Bri Prebilic Cole812f6c02015-03-24 17:10:33 -0700150 addButton('L');
151 addButton('R');
Simon Hunt72e44bf2015-07-21 21:34:20 -0700152 toolbar.addSeparator();
153 addButton('E');
Bri Prebilic Cole812f6c02015-03-24 17:10:33 -0700154 }
Simon Hunt72e44bf2015-07-21 21:34:20 -0700155
156 function setOverlay(overlayId) {
157 if (!overlayId) {
158 $log.debug('CLEAR overlay');
159 } else {
160 $log.debug('SET overlay', overlayId);
161 }
162 }
163
164 function addOverlays() {
165 toolbar.addSeparator();
166
167 // generate radio button set for overlays; start with 'none'
168 var rset = [{
169 gid: 'unknown',
170 tooltip: 'No Overlay',
171 cb: function () { setOverlay(); }
172 }];
173
174 tov.list().forEach(function (key) {
175 var ov = tov.overlay(key);
176 rset.push({
177 gid: ov._glyphId,
178 tooltip: (ov.tooltip || '(no tooltip)'),
179 cb: function () {
180 setOverlay(ov.overlayId);
181 }
182 });
183 });
184
185 toolbar.addRadioSet('topo-overlays', rset);
186 }
187
188 // TODO: 3rd row needs to be swapped in/out based on selected overlay
Bri Prebilic Cole812f6c02015-03-24 17:10:33 -0700189 function addThirdRow() {
190 addButton('V');
191 addButton('leftArrow');
192 addButton('rightArrow');
193 addButton('W');
194 addButton('A');
195 addButton('F');
Bri Prebilic Cole812f6c02015-03-24 17:10:33 -0700196 }
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -0700197
Bri Prebilic Cole04b41402015-03-18 17:25:34 -0700198 function createToolbar() {
Simon Hunt09060142015-03-18 20:23:32 -0700199 initKeyData();
Bri Prebilic Coled6219052015-03-19 14:34:02 -0700200 toolbar = tbs.createToolbar(name);
Bri Prebilic Cole04b41402015-03-18 17:25:34 -0700201 addFirstRow();
Bri Prebilic Cole812f6c02015-03-24 17:10:33 -0700202 toolbar.addRow();
203 addSecondRow();
Simon Hunt72e44bf2015-07-21 21:34:20 -0700204 addOverlays();
Bri Prebilic Cole812f6c02015-03-24 17:10:33 -0700205 toolbar.addRow();
206 addThirdRow();
Simon Hunt72e44bf2015-07-21 21:34:20 -0700207
Simon Huntfcbde892015-04-16 12:05:28 -0700208 if (cachedState.toolbar) {
209 toolbar.show();
210 } else {
211 toolbar.hide();
212 }
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -0700213 }
214
Bri Prebilic Coled6219052015-03-19 14:34:02 -0700215 function destroyToolbar() {
216 tbs.destroyToolbar(name);
217 }
218
Simon Hunt09060142015-03-18 20:23:32 -0700219 // allows us to ensure the button states track key strokes
220 function keyListener(key) {
221 var v = keyData.get(key);
222
223 if (v) {
224 // we have a valid button mapping
225 if (v.tog) {
226 // it's a toggle button
227 v.tog.toggleNoCb();
228 }
229 }
230 }
231
Simon Hunt90dcc3e2015-03-25 15:01:27 -0700232 function toggleToolbar() {
233 toolbar.toggle();
234 }
235
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -0700236 angular.module('ovTopo')
Simon Huntc7ae7952015-04-08 18:59:27 -0700237 .factory('TopoToolbarService',
Bri Prebilic Coled8745462015-06-01 16:08:57 -0700238 ['$log', 'FnService', 'ToolbarService', 'PrefsService',
Simon Hunt72e44bf2015-07-21 21:34:20 -0700239 'TopoOverlayService',
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -0700240
Simon Hunt72e44bf2015-07-21 21:34:20 -0700241 function (_$log_, _fs_, _tbs_, _ps_, _tov_) {
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -0700242 $log = _$log_;
Bri Prebilic Coled8745462015-06-01 16:08:57 -0700243 fs = _fs_;
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -0700244 tbs = _tbs_;
Simon Huntc7ae7952015-04-08 18:59:27 -0700245 ps = _ps_;
Simon Hunt72e44bf2015-07-21 21:34:20 -0700246 tov = _tov_;
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -0700247
248 return {
249 init: init,
Simon Hunt09060142015-03-18 20:23:32 -0700250 createToolbar: createToolbar,
Bri Prebilic Coled6219052015-03-19 14:34:02 -0700251 destroyToolbar: destroyToolbar,
Simon Hunt90dcc3e2015-03-25 15:01:27 -0700252 keyListener: keyListener,
253 toggleToolbar: toggleToolbar
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -0700254 };
255 }]);
256}());