blob: 5688dc511698ddc8dcbf0e9a388182e6563185c7 [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 },
62
Steven Burrows86af4352016-11-16 18:19:12 -060063 initialize: function () {
64 this.super = this.constructor.__super__;
65 this.super.initialize.apply(this, arguments);
66 },
Steven Burrows86af4352016-11-16 18:19:12 -060067 onChange: function () {
68 // Update class names when the model changes
69 if (this.el) {
70 this.el.attr('class', this.svgClassName());
71 }
72 },
Steven Burrows5fa057e2017-03-15 17:07:56 +000073 showDetails: function() {
74 t2hds.displayPanel(this);
Steven Burrows86af4352016-11-16 18:19:12 -060075 },
Steven Burrowsbeef9352016-10-21 14:09:50 -050076 icon: function () {
77 var type = this.get('type');
Steven Burrows1aa4f582016-12-13 15:05:41 -050078 return remappedDeviceTypes[type] || type || 'm_endstation';
Steven Burrowsbeef9352016-10-21 14:09:50 -050079 },
Steven Burrows583f4be2016-11-04 14:06:50 +010080 label: function () {
81 var labelText = this.get('id'),
82 ips = this.get('ips');
83
84 if (this.labelIndex() === 0) {
85 return '';
86 }
87
88 if (ips && ips.length > 0) {
89 labelText = ips[0];
90 }
91
92 return labelText;
93 },
Steven Burrowsbeef9352016-10-21 14:09:50 -050094 setScale: function () {
95
96 var dim = hostIconDim,
97 multipler = 1;
98
99 if (dim * zs.scale() < hostIconDimMin) {
100 multipler = hostIconDimMin / (dim * zs.scale());
101 } else if (dim * zs.scale() > hostIconDimMax) {
102 multipler = hostIconDimMax / (dim * zs.scale());
103 }
104
105 this.el.select('g').selectAll('*')
106 .style('transform', 'scale(' + multipler + ')');
107 },
108 onEnter: function (el) {
109 var node = d3.select(el),
110 icon = this.icon(),
Steven Burrows583f4be2016-11-04 14:06:50 +0100111 iconDim = hostIconDim,
112 textDy = 5,
113 textDx = (hostIconDim * 2) + 20;
Steven Burrowsbeef9352016-10-21 14:09:50 -0500114
115 this.el = node;
116
117 var g = node.append('g')
118 .attr('class', 'svgIcon hostIcon');
119
120 g.append('circle').attr('r', hostIconDim);
121 g.append('use').attr({
122 'xlink:href': '#' + icon,
123 width: iconDim,
124 height: iconDim,
125 x: -iconDim / 2,
126 y: -iconDim / 2
127 });
128
Steven Burrows583f4be2016-11-04 14:06:50 +0100129 var labelText = this.label();
130
Steven Burrowsbeef9352016-10-21 14:09:50 -0500131 g.append('text')
Steven Burrows583f4be2016-11-04 14:06:50 +0100132 .text(labelText)
Steven Burrowsbeef9352016-10-21 14:09:50 -0500133 .attr('dy', textDy)
Steven Burrows583f4be2016-11-04 14:06:50 +0100134 .attr('dx', textDx)
Steven Burrowsbeef9352016-10-21 14:09:50 -0500135 .attr('text-anchor', 'middle');
136
137 this.setScale();
Steven Burrows86af4352016-11-16 18:19:12 -0600138 this.setUpEvents();
Steven Burrowsbeef9352016-10-21 14:09:50 -0500139 }
Steven Burrowsec1f45c2016-08-08 16:14:41 +0100140 });
Steven Burrows57e24e92016-08-04 18:38:24 +0100141
Steven Burrowsec1f45c2016-08-08 16:14:41 +0100142 return {
143 createHostCollection: createHostCollection
144 };
145 }
146 ]);
Steven Burrows57e24e92016-08-04 18:38:24 +0100147
148})();