blob: f009e2f6e5411f197697ab167d13afc1a45fa9c6 [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
Bri Prebilic Coled8745462015-06-01 16:08:57 -070026 var $log, fs, tbs, ps, 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 },
Bri Prebilic Cole812f6c02015-03-24 17:10:33 -070044 B: { id: 'bkgrnd-tog', gid: 'map', isel: true },
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,
71 bg: 1,
72 spr: 0,
73 toolbar: 1
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 }
Bri Prebilic Cole812f6c02015-03-24 17:10:33 -0700145 function addSecondRow() {
Bri Prebilic Cole7c980512015-03-25 12:31:29 -0700146 //addToggle('X');
Bri Prebilic Cole812f6c02015-03-24 17:10:33 -0700147 addToggle('Z');
Bri Prebilic Coleb5f2b152015-04-07 14:58:09 -0700148 addButton('N');
Bri Prebilic Cole812f6c02015-03-24 17:10:33 -0700149 addButton('L');
150 addButton('R');
151 }
152 function addThirdRow() {
153 addButton('V');
154 addButton('leftArrow');
155 addButton('rightArrow');
156 addButton('W');
157 addButton('A');
158 addButton('F');
159 toolbar.addSeparator();
160 addButton('E');
161 }
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -0700162
Bri Prebilic Cole04b41402015-03-18 17:25:34 -0700163 function createToolbar() {
Simon Hunt09060142015-03-18 20:23:32 -0700164 initKeyData();
Bri Prebilic Coled6219052015-03-19 14:34:02 -0700165 toolbar = tbs.createToolbar(name);
Bri Prebilic Cole04b41402015-03-18 17:25:34 -0700166 addFirstRow();
Bri Prebilic Cole812f6c02015-03-24 17:10:33 -0700167 toolbar.addRow();
168 addSecondRow();
169 toolbar.addRow();
170 addThirdRow();
Simon Huntfcbde892015-04-16 12:05:28 -0700171 if (cachedState.toolbar) {
172 toolbar.show();
173 } else {
174 toolbar.hide();
175 }
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -0700176 }
177
Bri Prebilic Coled6219052015-03-19 14:34:02 -0700178 function destroyToolbar() {
179 tbs.destroyToolbar(name);
180 }
181
Simon Hunt09060142015-03-18 20:23:32 -0700182 // allows us to ensure the button states track key strokes
183 function keyListener(key) {
184 var v = keyData.get(key);
185
186 if (v) {
187 // we have a valid button mapping
188 if (v.tog) {
189 // it's a toggle button
190 v.tog.toggleNoCb();
191 }
192 }
193 }
194
Simon Hunt90dcc3e2015-03-25 15:01:27 -0700195 function toggleToolbar() {
196 toolbar.toggle();
197 }
198
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -0700199 angular.module('ovTopo')
Simon Huntc7ae7952015-04-08 18:59:27 -0700200 .factory('TopoToolbarService',
Bri Prebilic Coled8745462015-06-01 16:08:57 -0700201 ['$log', 'FnService', 'ToolbarService', 'PrefsService',
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -0700202
Bri Prebilic Coled8745462015-06-01 16:08:57 -0700203 function (_$log_, _fs_, _tbs_, _ps_) {
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -0700204 $log = _$log_;
Bri Prebilic Coled8745462015-06-01 16:08:57 -0700205 fs = _fs_;
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -0700206 tbs = _tbs_;
Simon Huntc7ae7952015-04-08 18:59:27 -0700207 ps = _ps_;
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -0700208
209 return {
210 init: init,
Simon Hunt09060142015-03-18 20:23:32 -0700211 createToolbar: createToolbar,
Bri Prebilic Coled6219052015-03-19 14:34:02 -0700212 destroyToolbar: destroyToolbar,
Simon Hunt90dcc3e2015-03-25 15:01:27 -0700213 keyListener: keyListener,
214 toggleToolbar: toggleToolbar
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -0700215 };
216 }]);
217}());