blob: be8d03cbd29640c12de4abfbae1376c92b8d0498 [file] [log] [blame]
Steven Burrows57e24e92016-08-04 18:38:24 +01001/*
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 Links Module.
19 Module that holds the links for a region
20 */
21
22(function () {
23 'use strict';
24
Steven Burrows86af4352016-11-16 18:19:12 -060025 var $log, Collection, Model, ts, sus, t2zs, t2vs, t2lps, fn;
Steven Burrows9edc7e02016-08-29 11:52:07 +010026
27 var linkLabelOffset = '0.35em';
Steven Burrows57e24e92016-08-04 18:38:24 +010028
Steven Burrowsec1f45c2016-08-08 16:14:41 +010029 var widthRatio = 1.4,
30 linkScale = d3.scale.linear()
31 .domain([1, 12])
32 .range([widthRatio, 12 * widthRatio])
33 .clamp(true),
Steven Burrows583f4be2016-11-04 14:06:50 +010034 allLinkTypes = 'direct optical tunnel UiDeviceLink',
35 allLinkSubTypes = 'not-permitted',
Steven Burrowsa3fca812016-10-14 15:11:04 -050036 labelDim = 30;
Steven Burrowsec1f45c2016-08-08 16:14:41 +010037
38 // configuration
39 var linkConfig = {
40 light: {
41 baseColor: '#939598',
42 inColor: '#66f',
43 outColor: '#f00'
44 },
45 dark: {
46 // TODO : theme
47 baseColor: '#939598',
48 inColor: '#66f',
49 outColor: '#f00'
50 },
51 inWidth: 12,
52 outWidth: 10
53 };
54
Steven Burrowsec1f45c2016-08-08 16:14:41 +010055 function createLink() {
56
57 var linkPoints = this.linkEndPoints(this.get('epA'), this.get('epB'));
Steven Burrowsec1f45c2016-08-08 16:14:41 +010058
59 var attrs = angular.extend({}, linkPoints, {
60 key: this.get('id'),
61 class: 'link',
Steven Burrowsec1f45c2016-08-08 16:14:41 +010062 position: {
63 x1: 0,
64 y1: 0,
65 x2: 0,
66 y2: 0
67 }
68 // functions to aggregate dual link state
Steven Burrows9edc7e02016-08-29 11:52:07 +010069 // extra: link.extra
Steven Burrowsec1f45c2016-08-08 16:14:41 +010070 });
71
72 this.set(attrs);
73 }
74
Steven Burrows9edc7e02016-08-29 11:52:07 +010075 function rectAroundText(el) {
76 var text = el.select('text'),
77 box = text.node().getBBox();
78
79 // translate the bbox so that it is centered on [x,y]
80 box.x = -box.width / 2;
81 box.y = -box.height / 2;
82
83 // add padding
84 box.x -= 4;
85 box.width += 8;
86 return box;
87 }
88
Steven Burrowsdfa52b02016-09-02 13:50:43 +010089 function isLinkOnline(node) {
90 return (node.get('nodeType') === 'region') ? true : node.get('online');
91 }
92
Steven Burrowsec1f45c2016-08-08 16:14:41 +010093 function linkEndPoints(srcId, dstId) {
94
Steven Burrowsaf96a212016-12-28 12:57:02 +000095 var findNodeById = this.region.model.findNodeById.bind(this.region),
96 allNodes = this.region.model.nodes(),
97 sourceNode = findNodeById(this, srcId),
98 targetNode = findNodeById(this, dstId);
Steven Burrowsec1f45c2016-08-08 16:14:41 +010099
Steven Burrows6deb4ce2016-08-26 16:06:23 +0100100 if (!sourceNode || !targetNode) {
Steven Burrows8f45ce22016-10-27 20:04:14 -0500101 $log.error('Node(s) not on map for link:' + srcId + '~' + dstId);
Steven Burrowsdfa52b02016-09-02 13:50:43 +0100102 // logicError('Node(s) not on map for link:\n' + sMiss + dMiss);
Steven Burrows6deb4ce2016-08-26 16:06:23 +0100103 return null;
104 }
Steven Burrowsec1f45c2016-08-08 16:14:41 +0100105
Steven Burrowsa3fca812016-10-14 15:11:04 -0500106 this.source = allNodes.indexOf(sourceNode);
107 this.target = allNodes.indexOf(targetNode);
108 this.sourceNode = sourceNode;
109 this.targetNode = targetNode;
Steven Burrowsec1f45c2016-08-08 16:14:41 +0100110
111 return {
112 source: sourceNode,
113 target: targetNode
114 };
115 }
116
117 function createLinkCollection(data, _region) {
118
119 var LinkModel = Model.extend({
120 region: _region,
121 createLink: createLink,
122 linkEndPoints: linkEndPoints,
123 type: function () {
124 return this.get('type');
125 },
Steven Burrows86af4352016-11-16 18:19:12 -0600126 svgClassName: function () {
127 return fn.classNames('link',
128 this.nodeType,
129 this.get('type'),
130 {
131 enhanced: this.get('enhanced'),
132 selected: this.get('selected')
133 }
134 );
135 },
Steven Burrowsec1f45c2016-08-08 16:14:41 +0100136 expected: function () {
Steven Burrows9edc7e02016-08-29 11:52:07 +0100137 // TODO: original code is: (s && s.expected) && (t && t.expected);
Steven Burrowsec1f45c2016-08-08 16:14:41 +0100138 return true;
139 },
140 online: function () {
Steven Burrows9edc7e02016-08-29 11:52:07 +0100141
Steven Burrowsdfa52b02016-09-02 13:50:43 +0100142 var source = this.get('source'),
143 target = this.get('target'),
144 sourceOnline = isLinkOnline(source),
145 targetOnline = isLinkOnline(target);
146
147 return (sourceOnline) && (targetOnline);
Steven Burrowsec1f45c2016-08-08 16:14:41 +0100148 },
Steven Burrows86af4352016-11-16 18:19:12 -0600149 onChange: function () {
150 // Update class names when the model changes
151 if (this.el) {
152 this.el.attr('class', this.svgClassName());
153 }
154 },
Steven Burrows9edc7e02016-08-29 11:52:07 +0100155 enhance: function () {
156 var data = [],
157 point;
158
Steven Burrows1c5c8612016-10-05 13:45:13 -0500159 if (showPort()) {
Steven Burrowsaf96a212016-12-28 12:57:02 +0000160 this.set('enhanced', true);
Steven Burrows1c5c8612016-10-05 13:45:13 -0500161 point = this.locatePortLabel();
Steven Burrowsdfa52b02016-09-02 13:50:43 +0100162 angular.extend(point, {
Simon Hunt95f4b422017-03-03 13:49:05 -0800163 id: 'topo2-port-tgt',
Steven Burrows1c5c8612016-10-05 13:45:13 -0500164 num: this.get('portB')
Steven Burrowsdfa52b02016-09-02 13:50:43 +0100165 });
166 data.push(point);
Steven Burrows1c5c8612016-10-05 13:45:13 -0500167
168 if (this.get('portA')) {
169 point = this.locatePortLabel(1);
170 angular.extend(point, {
Simon Hunt95f4b422017-03-03 13:49:05 -0800171 id: 'topo2-port-src',
Steven Burrows1c5c8612016-10-05 13:45:13 -0500172 num: this.get('portA')
173 });
174 data.push(point);
175 }
176
Simon Hunt95f4b422017-03-03 13:49:05 -0800177 var entering = d3.select('#topo2-portLabels')
Steven Burrows1c5c8612016-10-05 13:45:13 -0500178 .selectAll('.portLabel')
Steven Burrowsa3fca812016-10-14 15:11:04 -0500179 .data(data)
180 .enter().append('g')
Steven Burrows1c5c8612016-10-05 13:45:13 -0500181 .classed('portLabel', true)
Steven Burrowsaf96a212016-12-28 12:57:02 +0000182 .attr('id', function (d) { return d.id; });
Steven Burrows1c5c8612016-10-05 13:45:13 -0500183
184 entering.each(function (d) {
185 var el = d3.select(this),
186 rect = el.append('rect'),
187 text = el.append('text').text(d.num);
188
189 var rectSize = rectAroundText(el);
190
191 rect.attr(rectSize)
192 .attr('rx', 2)
193 .attr('ry', 2);
194
195 text.attr('dy', linkLabelOffset)
196 .attr('text-anchor', 'middle');
197
198 el.attr('transform', sus.translate(d.x, d.y));
Steven Burrowsa3fca812016-10-14 15:11:04 -0500199
Steven Burrows1c5c8612016-10-05 13:45:13 -0500200 });
Steven Burrowsa3fca812016-10-14 15:11:04 -0500201
202 this.setScale();
Steven Burrowsdfa52b02016-09-02 13:50:43 +0100203 }
Steven Burrows9edc7e02016-08-29 11:52:07 +0100204 },
205 unenhance: function () {
Steven Burrows86af4352016-11-16 18:19:12 -0600206 this.set('enhanced', false);
Simon Hunt95f4b422017-03-03 13:49:05 -0800207 d3.select('#topo2-portLabels').selectAll('.portLabel').remove();
Steven Burrows9edc7e02016-08-29 11:52:07 +0100208 },
Steven Burrows1aa4f582016-12-13 15:05:41 -0500209 getSelected: function () {
210 return this.collection.filter(function (m) {
211 return m.get('selected');
212 });
213 },
Steven Burrows86af4352016-11-16 18:19:12 -0600214 select: function () {
Steven Burrows1aa4f582016-12-13 15:05:41 -0500215
Steven Burrows86af4352016-11-16 18:19:12 -0600216 // TODO: if single selection clear selected devices, hosts, sub-regions
217 var s = Boolean(this.get('selected'));
218 // Clear all selected Items
219 _.each(this.collection.models, function (m) {
220 m.set('selected', false);
221 });
222
223 this.set('selected', !s);
Steven Burrows1aa4f582016-12-13 15:05:41 -0500224 this.showDetails();
Steven Burrows86af4352016-11-16 18:19:12 -0600225
Steven Burrows1aa4f582016-12-13 15:05:41 -0500226 return this.getSelected();
227 },
228 deselect: function () {
229 this.set('selected', false);
230 this.set('enhanced', false);
Steven Burrows86af4352016-11-16 18:19:12 -0600231 },
232 showDetails: function () {
Steven Burrows1aa4f582016-12-13 15:05:41 -0500233 var selected = this.getSelected();
Steven Burrows86af4352016-11-16 18:19:12 -0600234
235 if (selected) {
236 t2lps.displayLink(this);
237 } else {
238 t2lps.hide();
239 }
240 },
Steven Burrowsdfa52b02016-09-02 13:50:43 +0100241 locatePortLabel: function (src) {
Steven Burrowsa3fca812016-10-14 15:11:04 -0500242
243 var offset = 32 / (labelDim * t2zs.scale()),
244 sourceX = this.get('position').x1,
245 sourceY = this.get('position').y1,
246 targetX = this.get('position').x2,
247 targetY = this.get('position').y2,
248 nearX = src ? sourceX : targetX,
249 nearY = src ? sourceY : targetY,
250 farX = src ? targetX : sourceX,
251 farY = src ? targetY : sourceY;
Steven Burrows9edc7e02016-08-29 11:52:07 +0100252
Steven Burrowsdfa52b02016-09-02 13:50:43 +0100253 function dist(x, y) {
254 return Math.sqrt(x * x + y * y);
255 }
Steven Burrows9edc7e02016-08-29 11:52:07 +0100256
257 var dx = farX - nearX,
258 dy = farY - nearY,
Steven Burrowsa3fca812016-10-14 15:11:04 -0500259 k = (32 * offset) / dist(dx, dy);
Steven Burrows9edc7e02016-08-29 11:52:07 +0100260
Steven Burrowsdfa52b02016-09-02 13:50:43 +0100261 return { x: k * dx + nearX, y: k * dy + nearY };
Steven Burrows9edc7e02016-08-29 11:52:07 +0100262 },
Steven Burrowsec1f45c2016-08-08 16:14:41 +0100263 restyleLinkElement: function (immediate) {
264 // this fn's job is to look at raw links and decide what svg classes
265 // need to be applied to the line element in the DOM
266 var th = ts.theme(),
267 el = this.el,
268 type = this.get('type'),
Steven Burrowsec1f45c2016-08-08 16:14:41 +0100269 online = this.online(),
Steven Burrows583f4be2016-11-04 14:06:50 +0100270 modeCls = this.expected() ? '-inactive' : 'not-permitted',
Steven Burrowsec1f45c2016-08-08 16:14:41 +0100271 delay = immediate ? 0 : 1000;
272
Steven Burrowsec1f45c2016-08-08 16:14:41 +0100273 // NOTE: understand why el is sometimes undefined on addLink events...
274 // Investigated:
275 // el is undefined when it's a reverse link that is being added.
276 // updateLinks (which sets ldata.el) isn't called before this is called.
277 // Calling _updateLinks in addLinkUpdate fixes it, but there might be
278 // a more efficient way to fix it.
279 if (el && !el.empty()) {
280 el.classed('link', true);
281 el.classed(allLinkSubTypes, false);
282 el.classed(modeCls, !online);
283 el.classed(allLinkTypes, false);
284 if (type) {
285 el.classed(type, true);
286 }
287 el.transition()
288 .duration(delay)
Steven Burrowsec1f45c2016-08-08 16:14:41 +0100289 .attr('stroke', linkConfig[th].baseColor);
Steven Burrowsa3fca812016-10-14 15:11:04 -0500290
291 this.setScale();
Steven Burrowsec1f45c2016-08-08 16:14:41 +0100292 }
293 },
Steven Burrowsec1f45c2016-08-08 16:14:41 +0100294 onEnter: function (el) {
Steven Burrowsdfa52b02016-09-02 13:50:43 +0100295 var link = d3.select(el);
Steven Burrows9edc7e02016-08-29 11:52:07 +0100296
Steven Burrowsec1f45c2016-08-08 16:14:41 +0100297 this.el = link;
Steven Burrowsec1f45c2016-08-08 16:14:41 +0100298 this.restyleLinkElement();
299
300 if (this.get('type') === 'hostLink') {
Steven Burrowsdfa52b02016-09-02 13:50:43 +0100301 // sus.visible(link, api.showHosts());
Steven Burrowsec1f45c2016-08-08 16:14:41 +0100302 }
Steven Burrows0616e802016-10-06 21:45:07 -0500303 },
304 setScale: function () {
Steven Burrowsa3fca812016-10-14 15:11:04 -0500305 var width = linkScale(widthRatio) / t2zs.scale();
Steven Burrows0616e802016-10-06 21:45:07 -0500306 this.el.style('stroke-width', width + 'px');
Steven Burrowsa3fca812016-10-14 15:11:04 -0500307
308 var labelScale = labelDim / (labelDim * t2zs.scale());
309
Simon Hunt95f4b422017-03-03 13:49:05 -0800310 d3.select('#topo2-portLabels')
Steven Burrowsa3fca812016-10-14 15:11:04 -0500311 .selectAll('.portLabel')
312 .selectAll('*')
313 .style('transform', 'scale(' + labelScale + ')');
314
Steven Burrows1c5c8612016-10-05 13:45:13 -0500315 },
316 update: function () {
Steven Burrows86af4352016-11-16 18:19:12 -0600317 if (this.get('enhanced')) {
Steven Burrows1c5c8612016-10-05 13:45:13 -0500318 this.enhance();
319 }
Steven Burrowsb15a3942017-01-17 17:25:04 +0000320 },
321 remove: function () {
322
323 var width = linkScale(widthRatio) / t2zs.scale();
324
325 this.el.transition()
326 .duration(300)
327 .attr('stroke', '#ff0000')
328 .style('stroke-width', width * 4)
329 .transition()
330 .delay(1000)
331 .style('opacity', 0);
Steven Burrowsec1f45c2016-08-08 16:14:41 +0100332 }
333 });
Steven Burrows57e24e92016-08-04 18:38:24 +0100334
335 var LinkCollection = Collection.extend({
Steven Burrowsdfa52b02016-09-02 13:50:43 +0100336 model: LinkModel
Steven Burrows57e24e92016-08-04 18:38:24 +0100337 });
338
339 return new LinkCollection(data);
340 }
341
Steven Burrows1c5c8612016-10-05 13:45:13 -0500342 function showPort() {
343 return t2vs.getPortHighlighting();
344 }
345
Steven Burrows57e24e92016-08-04 18:38:24 +0100346 angular.module('ovTopo2')
Steven Burrowsaf96a212016-12-28 12:57:02 +0000347 .factory('Topo2LinkService', [
348 '$log', 'Topo2Collection', 'Topo2Model',
Steven Burrows0616e802016-10-06 21:45:07 -0500349 'ThemeService', 'SvgUtilService', 'Topo2ZoomService',
Steven Burrows86af4352016-11-16 18:19:12 -0600350 'Topo2ViewService', 'Topo2LinkPanelService', 'FnService',
Steven Burrowsaf96a212016-12-28 12:57:02 +0000351 function (_$log_, _c_, _Model_, _ts_, _sus_,
352 _t2zs_, _t2vs_, _t2lps_, _fn_) {
Steven Burrows57e24e92016-08-04 18:38:24 +0100353
Steven Burrowsaf96a212016-12-28 12:57:02 +0000354 $log = _$log_;
355 ts = _ts_;
356 sus = _sus_;
357 t2zs = _t2zs_;
358 t2vs = _t2vs_;
359 Collection = _c_;
360 Model = _Model_;
361 t2lps = _t2lps_;
362 fn = _fn_;
Steven Burrows57e24e92016-08-04 18:38:24 +0100363
Steven Burrowsaf96a212016-12-28 12:57:02 +0000364 return {
365 createLinkCollection: createLinkCollection
366 };
367 }
368 ]);
Steven Burrows57e24e92016-08-04 18:38:24 +0100369})();