blob: b18ff326df73cc3a7d65a3999011e0202727cc33 [file] [log] [blame]
Simon Huntd5b96732016-07-08 13:22:27 -07001/*
2 * Copyright 2016-present 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 Force Module.
19 Visualization of the topology in an SVG layer, using a D3 Force Layout.
20 */
21
22(function () {
23 'use strict';
24
25 // injected refs
Simon Hunt9edd1722017-03-10 17:43:26 -080026 var $log, $loc, wss;
Steven Burrows57e24e92016-08-04 18:38:24 +010027
Steven Burrowsc515e602017-04-13 11:17:40 -070028 var t2is, t2rs, t2ls, t2vs, t2bcs, t2ss, t2bgs, t2tbs, t2mss;
Steven Burrows1aa4f582016-12-13 15:05:41 -050029 var svg, forceG, uplink, dim, opts, zoomer;
Simon Huntd5b96732016-07-08 13:22:27 -070030
Steven Burrowsdfa52b02016-09-02 13:50:43 +010031 // D3 Selections
32 var node;
33
Simon Huntd5b96732016-07-08 13:22:27 -070034 // ========================== Helper Functions
35
Steven Burrowsbd402842017-03-08 21:30:38 +000036 function init(_svg_, _forceG_, _uplink_, _dim_, _zoomer_, _opts_) {
37
Steven Burrowsec1f45c2016-08-08 16:14:41 +010038 svg = _svg_;
Steven Burrowsec1f45c2016-08-08 16:14:41 +010039 uplink = _uplink_;
40 dim = _dim_;
Steven Burrowsbd402842017-03-08 21:30:38 +000041 zoomer = _zoomer_;
Steven Burrowsdfa52b02016-09-02 13:50:43 +010042 opts = _opts_;
43
Steven Burrowsbd402842017-03-08 21:30:38 +000044
Steven Burrowsb43c1a92017-03-07 17:13:28 +000045 t2bgs.init();
Steven Burrows68d6f952017-03-10 13:53:35 +000046 t2bgs.region = t2rs;
Steven Burrowsbd402842017-03-08 21:30:38 +000047 t2ls.init(svg, uplink, dim, zoomer, opts);
48 t2bcs.addLayout(t2ls);
Steven Burrowsaf96a212016-12-28 12:57:02 +000049 t2ss.init(svg, zoomer);
Steven Burrows5fa057e2017-03-15 17:07:56 +000050 t2ss.region = t2rs;
51 t2rs.layout = t2ls;
Steven Burrowsc515e602017-04-13 11:17:40 -070052 t2mss.region = t2rs;
Steven Burrowsc8468932017-03-17 16:13:41 +000053 t2tbs.init();
Simon Hunt9edd1722017-03-10 17:43:26 -080054 navToBookmarkedRegion($loc.search().regionId);
Simon Huntd5b96732016-07-08 13:22:27 -070055 }
56
57 function destroy() {
Steven Burrowsc8468932017-03-17 16:13:41 +000058 t2tbs.destroy();
Simon Huntd5b96732016-07-08 13:22:27 -070059 $log.debug('Destroy topo force layout');
60 }
61
Simon Hunt9edd1722017-03-10 17:43:26 -080062 function navToBookmarkedRegion(regionId) {
63 $log.debug('navToBookmarkedRegion:', regionId);
64 if (regionId) {
65 wss.sendEvent('topo2navRegion', {
66 rid: regionId
Simon Hunt98189192016-07-29 19:02:27 -070067 });
68
Simon Hunt9edd1722017-03-10 17:43:26 -080069 t2ls.createForceElements();
70 t2ls.transitionDownRegion();
71 }
Simon Hunt98189192016-07-29 19:02:27 -070072 }
73
Simon Huntd5b96732016-07-08 13:22:27 -070074 // ========================== Event Handlers
75
76 function allInstances(data) {
Steven Burrows57e24e92016-08-04 18:38:24 +010077 $log.debug('>> topo2AllInstances event:', data);
Steven Burrows57e24e92016-08-04 18:38:24 +010078 t2is.allInstances(data);
Simon Huntd5b96732016-07-08 13:22:27 -070079 }
80
81 function currentLayout(data) {
Steven Burrows57e24e92016-08-04 18:38:24 +010082 $log.debug('>> topo2CurrentLayout event:', data);
Steven Burrowsb43c1a92017-03-07 17:13:28 +000083 t2rs.clear();
Steven Burrowsaf3159d2016-08-25 14:54:30 +010084 t2bcs.addBreadcrumb(data.crumbs);
Steven Burrowsb43c1a92017-03-07 17:13:28 +000085 t2bgs.addLayout(data);
Simon Huntd5b96732016-07-08 13:22:27 -070086 }
87
88 function currentRegion(data) {
Steven Burrows57e24e92016-08-04 18:38:24 +010089 $log.debug('>> topo2CurrentRegion event:', data);
Steven Burrows68d6f952017-03-10 13:53:35 +000090 t2rs.loaded('regionData', data);
Simon Hunt98189192016-07-29 19:02:27 -070091 }
92
93 function topo2PeerRegions(data) {
Steven Burrowsdfa52b02016-09-02 13:50:43 +010094 $log.debug('>> topo2PeerRegions event:', data);
Steven Burrows68d6f952017-03-10 13:53:35 +000095 t2rs.loaded('peers', data.peers);
Simon Hunt98189192016-07-29 19:02:27 -070096 }
97
Simon Hunt537bc762016-12-20 12:15:13 -080098 function modelEvent(data) {
Steven Burrows6de27f42017-03-30 16:21:27 +010099 // $log.debug('>> topo2UiModelEvent event:', data);
Steven Burrows42eb9e22017-02-06 14:20:24 +0000100
Simon Hunt537bc762016-12-20 12:15:13 -0800101 // TODO: Interpret the event and update our topo model state (if needed)
102 // To Decide: Can we assume that the server will only send events
103 // related to objects that we are currently showing?
104 // (e.g. filtered by subregion contents?)
Steven Burrows42eb9e22017-02-06 14:20:24 +0000105 t2rs.update(data);
Simon Hunt537bc762016-12-20 12:15:13 -0800106 }
107
Steven Burrows57e24e92016-08-04 18:38:24 +0100108 function showMastership(masterId) {
Steven Burrowsdfa52b02016-09-02 13:50:43 +0100109 if (masterId) {
Steven Burrows57e24e92016-08-04 18:38:24 +0100110 showMastershipFor(masterId);
Steven Burrowsdfa52b02016-09-02 13:50:43 +0100111 } else {
112 restoreLayerState();
Steven Burrows57e24e92016-08-04 18:38:24 +0100113 }
114 }
115
116 function restoreLayerState() {
117 // NOTE: this level of indirection required, for when we have
118 // the layer filter functionality re-implemented
119 suppressLayers(false);
120 }
121
122 // ========================== Main Service Definition
123
Steven Burrowsec1f45c2016-08-08 16:14:41 +0100124 function newDim(_dim_) {
125 dim = _dim_;
126 t2vs.newDim(dim);
Steven Burrowsec1f45c2016-08-08 16:14:41 +0100127 }
128
Simon Huntd5b96732016-07-08 13:22:27 -0700129 // ========================== Main Service Definition
130
Steven Burrows1c5c8612016-10-05 13:45:13 -0500131 function update(elements) {
132 angular.forEach(elements, function (el) {
133 el.update();
134 });
135 }
136
Steven Burrows37549ee2016-09-21 14:41:39 +0100137 function updateNodes() {
Steven Burrows1c5c8612016-10-05 13:45:13 -0500138 update(t2rs.regionNodes());
139 }
140
141 function updateLinks() {
142 update(t2rs.regionLinks());
143 }
144
Steven Burrows892cba62017-03-10 16:31:48 +0000145 function resetNodeLocation() {
Steven Burrows1c5c8612016-10-05 13:45:13 -0500146
Steven Burrows892cba62017-03-10 16:31:48 +0000147 var hovered = t2rs.filterRegionNodes(function (model) {
148 return model.get('hovered');
Steven Burrows1c5c8612016-10-05 13:45:13 -0500149 });
150
Steven Burrows892cba62017-03-10 16:31:48 +0000151 angular.forEach(hovered, function (model) {
152 model.resetPosition();
153 });
Steven Burrows1c5c8612016-10-05 13:45:13 -0500154 }
155
156 function unpin() {
Steven Burrowsb11a8b82017-03-10 16:00:31 +0000157
Steven Burrows1c5c8612016-10-05 13:45:13 -0500158 var hovered = t2rs.filterRegionNodes(function (model) {
159 return model.get('hovered');
160 });
161
162 angular.forEach(hovered, function (model) {
Steven Burrowsb11a8b82017-03-10 16:00:31 +0000163 model.fix(false);
Steven Burrows0616e802016-10-06 21:45:07 -0500164 });
Steven Burrowsb11a8b82017-03-10 16:00:31 +0000165
166 t2ls.start();
Steven Burrows37549ee2016-09-21 14:41:39 +0100167 }
168
Simon Huntd5b96732016-07-08 13:22:27 -0700169 angular.module('ovTopo2')
Steven Burrowsaf96a212016-12-28 12:57:02 +0000170 .factory('Topo2ForceService', [
Steven Burrowsf303c1e2017-03-13 12:26:22 +0000171 '$log', '$location', 'WebSocketService', 'Topo2InstanceService',
Steven Burrows1c5c8612016-10-05 13:45:13 -0500172 'Topo2RegionService', 'Topo2LayoutService', 'Topo2ViewService',
Steven Burrowsaf96a212016-12-28 12:57:02 +0000173 'Topo2BreadcrumbService', 'Topo2ZoomService', 'Topo2SelectService',
Steven Burrowsc515e602017-04-13 11:17:40 -0700174 'Topo2BackgroundService', 'Topo2ToolbarService', 'Topo2MastershipService',
Steven Burrowsf303c1e2017-03-13 12:26:22 +0000175 function (_$log_, _$loc_, _wss_, _t2is_, _t2rs_, _t2ls_,
Steven Burrowsc515e602017-04-13 11:17:40 -0700176 _t2vs_, _t2bcs_, zoomService, _t2ss_, _t2bgs_, _t2tbs_, _t2mss_) {
Steven Burrowsec1f45c2016-08-08 16:14:41 +0100177
Simon Huntd5b96732016-07-08 13:22:27 -0700178 $log = _$log_;
Steven Burrowsf303c1e2017-03-13 12:26:22 +0000179 $loc = _$loc_;
Simon Huntd5b96732016-07-08 13:22:27 -0700180 wss = _wss_;
Steven Burrows57e24e92016-08-04 18:38:24 +0100181 t2is = _t2is_;
182 t2rs = _t2rs_;
Steven Burrowsec1f45c2016-08-08 16:14:41 +0100183 t2ls = _t2ls_;
184 t2vs = _t2vs_;
Steven Burrowsaf3159d2016-08-25 14:54:30 +0100185 t2bcs = _t2bcs_;
Steven Burrowsaf96a212016-12-28 12:57:02 +0000186 t2ss = _t2ss_;
Steven Burrowsb43c1a92017-03-07 17:13:28 +0000187 t2bgs = _t2bgs_;
Steven Burrowsc8468932017-03-17 16:13:41 +0000188 t2tbs = _t2tbs_;
Steven Burrowsc515e602017-04-13 11:17:40 -0700189 t2mss = _t2mss_;
Steven Burrows57e24e92016-08-04 18:38:24 +0100190
Steven Burrows0616e802016-10-06 21:45:07 -0500191 var onZoom = function () {
Steven Burrows247ab152017-03-29 13:55:54 +0100192 if (!t2rs.isLoadComplete()) {
193 return;
194 }
195
Steven Burrows0616e802016-10-06 21:45:07 -0500196 var nodes = [].concat(
197 t2rs.regionNodes(),
198 t2rs.regionLinks()
199 );
200
201 angular.forEach(nodes, function (node) {
202 node.setScale();
203 });
204 };
205
206 zoomService.addZoomEventListener(onZoom);
207
Simon Huntd5b96732016-07-08 13:22:27 -0700208 return {
Steven Burrows57e24e92016-08-04 18:38:24 +0100209
Simon Huntd5b96732016-07-08 13:22:27 -0700210 init: init,
Steven Burrowsec1f45c2016-08-08 16:14:41 +0100211 newDim: newDim,
Steven Burrows57e24e92016-08-04 18:38:24 +0100212
Simon Huntd5b96732016-07-08 13:22:27 -0700213 destroy: destroy,
214 topo2AllInstances: allInstances,
215 topo2CurrentLayout: currentLayout,
216 topo2CurrentRegion: currentRegion,
Steven Burrows57e24e92016-08-04 18:38:24 +0100217
Simon Hunt537bc762016-12-20 12:15:13 -0800218 topo2UiModelEvent: modelEvent,
219
Steven Burrows57e24e92016-08-04 18:38:24 +0100220 showMastership: showMastership,
Steven Burrows37549ee2016-09-21 14:41:39 +0100221 topo2PeerRegions: topo2PeerRegions,
222
Steven Burrows1c5c8612016-10-05 13:45:13 -0500223 updateNodes: updateNodes,
224 updateLinks: updateLinks,
Steven Burrows892cba62017-03-10 16:31:48 +0000225 resetNodeLocation: resetNodeLocation,
Steven Burrows1c5c8612016-10-05 13:45:13 -0500226 unpin: unpin
Simon Huntd5b96732016-07-08 13:22:27 -0700227 };
228 }]);
Steven Burrowsdfa52b02016-09-02 13:50:43 +0100229})();