blob: 7ba58baac205f5c38f89bb91e565f10a6df422bb [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 Hosts Module.
19 Module that holds the hosts for a region
20 */
21
22(function () {
23 'use strict';
24
Steven Burrowsdfa52b02016-09-02 13:50:43 +010025 var Collection, Model;
Steven Burrows57e24e92016-08-04 18:38:24 +010026
Steven Burrowsbeef9352016-10-21 14:09:50 -050027 var hostIconDim = 20,
28 hostIconDimMin = 15,
29 hostIconDimMax = 20,
30 remappedDeviceTypes = {};
31
Steven Burrows57e24e92016-08-04 18:38:24 +010032 function createHostCollection(data, region) {
33
34 var HostCollection = Collection.extend({
35 model: Model
36 });
37
38 var hosts = [];
39 data.forEach(function (hostsLayer) {
40 hostsLayer.forEach(function (host) {
41 hosts.push(host);
42 });
43 });
44
45 return new HostCollection(hosts);
46 }
47
48 angular.module('ovTopo2')
Steven Burrowsdfa52b02016-09-02 13:50:43 +010049 .factory('Topo2HostService', [
Steven Burrowsec1f45c2016-08-08 16:14:41 +010050 'Topo2Collection', 'Topo2NodeModel', 'Topo2ViewService',
Steven Burrowsaf96a212016-12-28 12:57:02 +000051 'IconService', 'Topo2ZoomService', 'Topo2HostsPanelService',
52 function (_c_, NodeModel, _t2vs_, is, zs, t2hds) {
Steven Burrows57e24e92016-08-04 18:38:24 +010053
Steven Burrowsaf96a212016-12-28 12:57:02 +000054 Collection = _c_;
Steven Burrows57e24e92016-08-04 18:38:24 +010055
Steven Burrowsaf96a212016-12-28 12:57:02 +000056 Model = NodeModel.extend({
Steven Burrows5fa057e2017-03-15 17:07:56 +000057
58 nodeType: 'host',
59 events: {
60 'click': 'onClick'
61 },
Steven Burrows86af4352016-11-16 18:19:12 -060062 initialize: function () {
63 this.super = this.constructor.__super__;
64 this.super.initialize.apply(this, arguments);
65 },
Steven Burrows86af4352016-11-16 18:19:12 -060066 onChange: function () {
67 // Update class names when the model changes
68 if (this.el) {
69 this.el.attr('class', this.svgClassName());
70 }
71 },
Steven Burrows5fa057e2017-03-15 17:07:56 +000072 showDetails: function() {
73 t2hds.displayPanel(this);
Steven Burrows86af4352016-11-16 18:19:12 -060074 },
Steven Burrowsbeef9352016-10-21 14:09:50 -050075 icon: function () {
76 var type = this.get('type');
Steven Burrows1aa4f582016-12-13 15:05:41 -050077 return remappedDeviceTypes[type] || type || 'm_endstation';
Steven Burrowsbeef9352016-10-21 14:09:50 -050078 },
Steven Burrows583f4be2016-11-04 14:06:50 +010079 label: function () {
Steven Burrows474a0fd2017-04-12 09:35:55 -070080 return this.get('ips')[0] || 'unknown';
Steven Burrows583f4be2016-11-04 14:06:50 +010081 },
Steven Burrowsbeef9352016-10-21 14:09:50 -050082 setScale: function () {
83
Steven Burrows8909c5c2017-04-10 09:56:52 -070084 if (!this.el) return;
85
Steven Burrowsbeef9352016-10-21 14:09:50 -050086 var dim = hostIconDim,
87 multipler = 1;
88
89 if (dim * zs.scale() < hostIconDimMin) {
90 multipler = hostIconDimMin / (dim * zs.scale());
91 } else if (dim * zs.scale() > hostIconDimMax) {
92 multipler = hostIconDimMax / (dim * zs.scale());
93 }
94
95 this.el.select('g').selectAll('*')
96 .style('transform', 'scale(' + multipler + ')');
97 },
98 onEnter: function (el) {
99 var node = d3.select(el),
100 icon = this.icon(),
Steven Burrows583f4be2016-11-04 14:06:50 +0100101 iconDim = hostIconDim,
102 textDy = 5,
103 textDx = (hostIconDim * 2) + 20;
Steven Burrowsbeef9352016-10-21 14:09:50 -0500104
105 this.el = node;
106
107 var g = node.append('g')
108 .attr('class', 'svgIcon hostIcon');
109
110 g.append('circle').attr('r', hostIconDim);
111 g.append('use').attr({
112 'xlink:href': '#' + icon,
113 width: iconDim,
114 height: iconDim,
115 x: -iconDim / 2,
116 y: -iconDim / 2
117 });
118
Steven Burrows583f4be2016-11-04 14:06:50 +0100119 var labelText = this.label();
120
Steven Burrowsbeef9352016-10-21 14:09:50 -0500121 g.append('text')
Steven Burrows583f4be2016-11-04 14:06:50 +0100122 .text(labelText)
Steven Burrowsbeef9352016-10-21 14:09:50 -0500123 .attr('dy', textDy)
Steven Burrows583f4be2016-11-04 14:06:50 +0100124 .attr('dx', textDx)
Steven Burrowsbeef9352016-10-21 14:09:50 -0500125 .attr('text-anchor', 'middle');
126
127 this.setScale();
Steven Burrows86af4352016-11-16 18:19:12 -0600128 this.setUpEvents();
Steven Burrowsbeef9352016-10-21 14:09:50 -0500129 }
Steven Burrowsec1f45c2016-08-08 16:14:41 +0100130 });
Steven Burrows57e24e92016-08-04 18:38:24 +0100131
Steven Burrowsec1f45c2016-08-08 16:14:41 +0100132 return {
133 createHostCollection: createHostCollection
134 };
135 }
136 ]);
Steven Burrows57e24e92016-08-04 18:38:24 +0100137
138})();