blob: a27a6f5164f86c0f5c73076bfe83970da748d1dc [file] [log] [blame]
Simon Hunt08f841d02015-02-10 14:39:20 -08001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
Simon Hunt08f841d02015-02-10 14:39:20 -08003 *
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 Selection Module.
19 Defines behavior when selecting nodes.
20 */
21
22(function () {
23 'use strict';
24
25 // injected refs
Simon Huntfb940112015-07-29 18:36:35 -070026 var $log, fs, wss, tov, tps, tts, ns;
Simon Hunt08f841d02015-02-10 14:39:20 -080027
28 // api to topoForce
29 var api;
30 /*
31 node() // get ref to D3 selection of nodes
32 zoomingOrPanning( ev )
33 updateDeviceColors( [dev] )
Simon Hunt0c6b2d32015-03-26 17:46:29 -070034 deselectLink()
Simon Hunt08f841d02015-02-10 14:39:20 -080035 */
36
37 // internal state
Steven Burrows041c1aa2016-04-12 15:45:05 +010038 var hovered, selections, selectOrder, consumeClick;
39
40 function setInitialState () {
41 hovered = null; // the node over which the mouse is hovering
42 selections = {}; // currently selected nodes (by id)
43 selectOrder = []; // the order in which we made selections
Simon Hunt0c6b2d32015-03-26 17:46:29 -070044 consumeClick = false; // used to coordinate with SVG click handler
Steven Burrows041c1aa2016-04-12 15:45:05 +010045 }
Simon Hunt08f841d02015-02-10 14:39:20 -080046
47 // ==========================
48
49 function nSel() {
50 return selectOrder.length;
51 }
52 function getSel(idx) {
53 return selections[selectOrder[idx]];
54 }
55 function allSelectionsClass(cls) {
56 for (var i=0, n=nSel(); i<n; i++) {
57 if (getSel(i).obj.class !== cls) {
58 return false;
59 }
60 }
61 return true;
62 }
63
64 // ==========================
65
66 function nodeMouseOver(m) {
67 if (!m.dragStarted) {
Simon Hunt08f841d02015-02-10 14:39:20 -080068 if (hovered != m) {
69 hovered = m;
Simon Hunt584e92d2015-08-24 11:27:22 -070070 tov.hooks.mouseOver({
71 id: m.id,
72 class: m.class,
73 type: m.type
74 });
Simon Hunt08f841d02015-02-10 14:39:20 -080075 }
76 }
77 }
78
79 function nodeMouseOut(m) {
80 if (!m.dragStarted) {
81 if (hovered) {
82 hovered = null;
Simon Hunt584e92d2015-08-24 11:27:22 -070083 tov.hooks.mouseOut();
Simon Hunt08f841d02015-02-10 14:39:20 -080084 }
Simon Hunt08f841d02015-02-10 14:39:20 -080085 }
86 }
87
88 // ==========================
89
90 function selectObject(obj) {
91 var el = this,
Simon Hunt5aac2fc2015-06-09 12:34:07 -070092 nodeEv = el && el.tagName === 'g',
93 ev = d3.event.sourceEvent || {},
Simon Hunt08f841d02015-02-10 14:39:20 -080094 n;
95
96 if (api.zoomingOrPanning(ev)) {
97 return;
98 }
99
Simon Hunt5aac2fc2015-06-09 12:34:07 -0700100 if (nodeEv) {
Simon Hunt08f841d02015-02-10 14:39:20 -0800101 n = d3.select(el);
102 } else {
103 api.node().each(function (d) {
104 if (d == obj) {
105 n = d3.select(el = this);
106 }
107 });
108 }
109 if (!n) return;
110
Simon Hunt5aac2fc2015-06-09 12:34:07 -0700111 if (nodeEv) {
112 consumeClick = true;
113 }
Simon Hunt0c6b2d32015-03-26 17:46:29 -0700114 api.deselectLink();
115
Simon Hunt08f841d02015-02-10 14:39:20 -0800116 if (ev.shiftKey && n.classed('selected')) {
117 deselectObject(obj.id);
118 updateDetail();
119 return;
120 }
121
122 if (!ev.shiftKey) {
Simon Hunta17fa672015-08-19 18:42:22 -0700123 deselectAll(true);
Simon Hunt08f841d02015-02-10 14:39:20 -0800124 }
125
126 selections[obj.id] = { obj: obj, el: el };
127 selectOrder.push(obj.id);
128
129 n.classed('selected', true);
130 api.updateDeviceColors(obj);
131 updateDetail();
Simon Hunt08f841d02015-02-10 14:39:20 -0800132 }
133
134 function deselectObject(id) {
135 var obj = selections[id];
136 if (obj) {
137 d3.select(obj.el).classed('selected', false);
138 delete selections[id];
139 fs.removeFromArray(id, selectOrder);
140 api.updateDeviceColors(obj.obj);
141 }
Simon Hunt08f841d02015-02-10 14:39:20 -0800142 }
143
Simon Hunta17fa672015-08-19 18:42:22 -0700144 function deselectAll(skipUpdate) {
Simon Hunt0c6b2d32015-03-26 17:46:29 -0700145 var something = (selectOrder.length > 0);
146
Simon Hunt08f841d02015-02-10 14:39:20 -0800147 // deselect all nodes in the network...
148 api.node().classed('selected', false);
149 selections = {};
150 selectOrder = [];
151 api.updateDeviceColors();
Simon Hunta17fa672015-08-19 18:42:22 -0700152 if (!skipUpdate) {
153 updateDetail();
154 }
Simon Hunt0c6b2d32015-03-26 17:46:29 -0700155
156 // return true if something was selected
157 return something;
Simon Hunt08f841d02015-02-10 14:39:20 -0800158 }
159
160 // === -----------------------------------------------------
161
Simon Hunt8d22c4b2015-08-06 16:24:43 -0700162 function requestDetails(data) {
Simon Hunt237676b52015-03-10 19:04:26 -0700163 wss.sendEvent('requestDetails', {
Simon Hunt08f841d02015-02-10 14:39:20 -0800164 id: data.id,
165 class: data.class
166 });
167 }
168
169 // === -----------------------------------------------------
170
171 function updateDetail() {
172 var nSel = selectOrder.length;
173 if (!nSel) {
174 emptySelect();
175 } else if (nSel === 1) {
176 singleSelect();
177 } else {
178 multiSelect();
179 }
180 }
181
182 function emptySelect() {
Simon Hunt8d22c4b2015-08-06 16:24:43 -0700183 tov.hooks.emptySelect();
Simon Hunt0c6b2d32015-03-26 17:46:29 -0700184 tps.displayNothing();
Simon Hunt08f841d02015-02-10 14:39:20 -0800185 }
186
187 function singleSelect() {
Simon Hunt8d22c4b2015-08-06 16:24:43 -0700188 var data = getSel(0).obj;
189 requestDetails(data);
190 // NOTE: detail panel is shown as a response to receiving
191 // a 'showDetails' event from the server. See 'showDetails'
192 // callback function below...
Simon Hunt08f841d02015-02-10 14:39:20 -0800193 }
194
195 function multiSelect() {
Simon Hunt08f841d02015-02-10 14:39:20 -0800196 // display the selected nodes in the detail panel
197 tps.displayMulti(selectOrder);
Simon Hunt8d22c4b2015-08-06 16:24:43 -0700198 addHostSelectionActions();
199 tov.hooks.multiSelect(selectOrder);
Simon Hunt0c6b2d32015-03-26 17:46:29 -0700200 tps.displaySomething();
Simon Hunt08f841d02015-02-10 14:39:20 -0800201 }
202
Simon Hunt8d22c4b2015-08-06 16:24:43 -0700203 function addHostSelectionActions() {
204 if (allSelectionsClass('host')) {
205 if (nSel() === 2) {
206 tps.addAction({
207 id: 'host-flow-btn',
208 gid: 'endstation',
209 cb: tts.addHostIntent,
210 tt: 'Create Host-to-Host Flow'
211 });
212 } else if (nSel() >= 2) {
213 tps.addAction({
214 id: 'mult-src-flow-btn',
215 gid: 'flows',
216 cb: tts.addMultiSourceIntent,
217 tt: 'Create Multi-Source Flow'
218 });
219 }
220 }
221 }
222
Simon Hunt08f841d02015-02-10 14:39:20 -0800223
224 // === -----------------------------------------------------
225 // Event Handlers
226
Simon Hunt8d22c4b2015-08-06 16:24:43 -0700227 // display the data for the single selected node
Simon Hunt08f841d02015-02-10 14:39:20 -0800228 function showDetails(data) {
Simon Hunt3a0598f2015-08-04 19:59:04 -0700229 var buttons = fs.isA(data.buttons) || [];
Simon Hunt08f841d02015-02-10 14:39:20 -0800230 tps.displaySingle(data);
Simon Hunt8d22c4b2015-08-06 16:24:43 -0700231 tov.installButtons(buttons, data, data.props['URI']);
232 tov.hooks.singleSelect(data);
Simon Hunt0c6b2d32015-03-26 17:46:29 -0700233 tps.displaySomething();
Simon Hunt6036b192015-02-11 11:20:26 -0800234 }
235
Simon Huntd2862c32015-08-24 17:41:51 -0700236 // returns true if one or more nodes are selected.
Simon Hunt8d22c4b2015-08-06 16:24:43 -0700237 function somethingSelected() {
Simon Huntd2862c32015-08-24 17:41:51 -0700238 return nSel();
Simon Hunt08f841d02015-02-10 14:39:20 -0800239 }
Simon Hunt08f841d02015-02-10 14:39:20 -0800240
Simon Hunt0c6b2d32015-03-26 17:46:29 -0700241 function clickConsumed(x) {
242 var cc = consumeClick;
243 consumeClick = !!x;
244 return cc;
245 }
246
Simon Hunt8d558082015-10-29 21:32:50 -0700247 // returns a selection context, providing info about what is selected
248 function selectionContext() {
249 var devices = [],
250 hosts = [],
251 types = {};
252
253 angular.forEach(selections, function (d) {
254 var o = d.obj,
255 c = o.class;
256
257 if (c === 'device') {
258 devices.push(o.id);
259 types[o.id] = o.type;
260 }
261 if (c === 'host') {
262 hosts.push(o.id);
263 types[o.id] = o.type;
264 }
265 });
266
267 return {
268 devices: devices,
269 hosts: hosts,
270 types: types
271 };
272 }
273
Simon Hunt08f841d02015-02-10 14:39:20 -0800274 // === -----------------------------------------------------
275 // === MODULE DEFINITION ===
276
277 angular.module('ovTopo')
Simon Hunt75ec9692015-02-11 16:40:36 -0800278 .factory('TopoSelectService',
Simon Huntfb940112015-07-29 18:36:35 -0700279 ['$log', 'FnService', 'WebSocketService', 'TopoOverlayService',
Bri Prebilic Cole8f07f0d2015-04-23 13:28:43 -0700280 'TopoPanelService', 'TopoTrafficService', 'NavService',
Simon Hunt08f841d02015-02-10 14:39:20 -0800281
Simon Huntfb940112015-07-29 18:36:35 -0700282 function (_$log_, _fs_, _wss_, _tov_, _tps_, _tts_, _ns_) {
Simon Hunt6036b192015-02-11 11:20:26 -0800283 $log = _$log_;
284 fs = _fs_;
Simon Hunt237676b52015-03-10 19:04:26 -0700285 wss = _wss_;
Simon Huntfb940112015-07-29 18:36:35 -0700286 tov = _tov_;
Simon Hunt6036b192015-02-11 11:20:26 -0800287 tps = _tps_;
Simon Huntf542d842015-02-11 16:20:33 -0800288 tts = _tts_;
Bri Prebilic Cole8f07f0d2015-04-23 13:28:43 -0700289 ns = _ns_;
Simon Hunt08f841d02015-02-10 14:39:20 -0800290
Simon Hunt6036b192015-02-11 11:20:26 -0800291 function initSelect(_api_) {
292 api = _api_;
Steven Burrows041c1aa2016-04-12 15:45:05 +0100293 setInitialState();
Simon Hunt6036b192015-02-11 11:20:26 -0800294 }
Simon Hunt08f841d02015-02-10 14:39:20 -0800295
Simon Hunt6036b192015-02-11 11:20:26 -0800296 function destroySelect() { }
Simon Hunt08f841d02015-02-10 14:39:20 -0800297
Simon Hunt6036b192015-02-11 11:20:26 -0800298 return {
299 initSelect: initSelect,
300 destroySelect: destroySelect,
Simon Hunt08f841d02015-02-10 14:39:20 -0800301
Simon Hunt6036b192015-02-11 11:20:26 -0800302 showDetails: showDetails,
Simon Hunt08f841d02015-02-10 14:39:20 -0800303
Simon Hunt6036b192015-02-11 11:20:26 -0800304 nodeMouseOver: nodeMouseOver,
305 nodeMouseOut: nodeMouseOut,
306 selectObject: selectObject,
307 deselectObject: deselectObject,
308 deselectAll: deselectAll,
Simon Hunt8d22c4b2015-08-06 16:24:43 -0700309 updateDetail: updateDetail,
Simon Huntf542d842015-02-11 16:20:33 -0800310
Simon Hunta0eb0a82015-02-11 12:30:06 -0800311 hovered: function () { return hovered; },
Simon Huntf542d842015-02-11 16:20:33 -0800312 selectOrder: function () { return selectOrder; },
Simon Hunt8d22c4b2015-08-06 16:24:43 -0700313 somethingSelected: somethingSelected,
Simon Hunt0c6b2d32015-03-26 17:46:29 -0700314
Simon Hunt8d558082015-10-29 21:32:50 -0700315 clickConsumed: clickConsumed,
316 selectionContext: selectionContext
Simon Hunt6036b192015-02-11 11:20:26 -0800317 };
318 }]);
Simon Hunt08f841d02015-02-10 14:39:20 -0800319}());