blob: 110160c1f5f24a8e940dd6f2024b52e107bf9070 [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 Huntc7ae7952015-04-08 18:59:27 -070026 var $log, 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 }
Simon Hunt09060142015-03-18 20:23:32 -0700127 function addToggle(key) {
128 var v = keyData.get(key);
129 v.tog = toolbar.addToggle(v.id, v.gid, v.isel, v.cb, v.tt);
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -0700130 }
131
Bri Prebilic Cole04b41402015-03-18 17:25:34 -0700132 function addFirstRow() {
Simon Hunt09060142015-03-18 20:23:32 -0700133 addToggle('I');
Simon Huntda2f3cc2015-03-19 15:11:57 -0700134 addToggle('O');
Simon Hunt09060142015-03-18 20:23:32 -0700135 addToggle('D');
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -0700136 toolbar.addSeparator();
137
Simon Hunt09060142015-03-18 20:23:32 -0700138 addToggle('H');
139 addToggle('M');
140 addToggle('P');
141 addToggle('B');
Simon Hunt2052e5d2015-04-13 17:40:44 -0700142 addToggle('S');
Bri Prebilic Cole04b41402015-03-18 17:25:34 -0700143 }
Bri Prebilic Cole812f6c02015-03-24 17:10:33 -0700144 function addSecondRow() {
Bri Prebilic Cole7c980512015-03-25 12:31:29 -0700145 //addToggle('X');
Bri Prebilic Cole812f6c02015-03-24 17:10:33 -0700146 addToggle('Z');
Bri Prebilic Coleb5f2b152015-04-07 14:58:09 -0700147 addButton('N');
Bri Prebilic Cole812f6c02015-03-24 17:10:33 -0700148 addButton('L');
149 addButton('R');
150 }
151 function addThirdRow() {
152 addButton('V');
153 addButton('leftArrow');
154 addButton('rightArrow');
155 addButton('W');
156 addButton('A');
157 addButton('F');
158 toolbar.addSeparator();
159 addButton('E');
160 }
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -0700161
Bri Prebilic Cole04b41402015-03-18 17:25:34 -0700162 function createToolbar() {
Simon Hunt09060142015-03-18 20:23:32 -0700163 initKeyData();
Bri Prebilic Coled6219052015-03-19 14:34:02 -0700164 toolbar = tbs.createToolbar(name);
Bri Prebilic Cole04b41402015-03-18 17:25:34 -0700165 addFirstRow();
Bri Prebilic Cole812f6c02015-03-24 17:10:33 -0700166 toolbar.addRow();
167 addSecondRow();
168 toolbar.addRow();
169 addThirdRow();
Simon Huntfcbde892015-04-16 12:05:28 -0700170 if (cachedState.toolbar) {
171 toolbar.show();
172 } else {
173 toolbar.hide();
174 }
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -0700175 }
176
Bri Prebilic Coled6219052015-03-19 14:34:02 -0700177 function destroyToolbar() {
178 tbs.destroyToolbar(name);
179 }
180
Simon Hunt09060142015-03-18 20:23:32 -0700181 // allows us to ensure the button states track key strokes
182 function keyListener(key) {
183 var v = keyData.get(key);
184
185 if (v) {
186 // we have a valid button mapping
187 if (v.tog) {
188 // it's a toggle button
189 v.tog.toggleNoCb();
190 }
191 }
192 }
193
Simon Hunt90dcc3e2015-03-25 15:01:27 -0700194 function toggleToolbar() {
195 toolbar.toggle();
196 }
197
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -0700198 angular.module('ovTopo')
Simon Huntc7ae7952015-04-08 18:59:27 -0700199 .factory('TopoToolbarService',
200 ['$log', 'ToolbarService', 'PrefsService',
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -0700201
Simon Huntc7ae7952015-04-08 18:59:27 -0700202 function (_$log_, _tbs_, _ps_) {
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -0700203 $log = _$log_;
204 tbs = _tbs_;
Simon Huntc7ae7952015-04-08 18:59:27 -0700205 ps = _ps_;
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -0700206
207 return {
208 init: init,
Simon Hunt09060142015-03-18 20:23:32 -0700209 createToolbar: createToolbar,
Bri Prebilic Coled6219052015-03-19 14:34:02 -0700210 destroyToolbar: destroyToolbar,
Simon Hunt90dcc3e2015-03-25 15:01:27 -0700211 keyListener: keyListener,
212 toggleToolbar: toggleToolbar
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -0700213 };
214 }]);
215}());