blob: d67fcff6066f0ee421f33f09497d035709b74416 [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
27 function createHostCollection(data, region) {
28
29 var HostCollection = Collection.extend({
30 model: Model
31 });
32
33 var hosts = [];
34 data.forEach(function (hostsLayer) {
35 hostsLayer.forEach(function (host) {
36 hosts.push(host);
37 });
38 });
39
40 return new HostCollection(hosts);
41 }
42
43 angular.module('ovTopo2')
Steven Burrowsdfa52b02016-09-02 13:50:43 +010044 .factory('Topo2HostService', [
Steven Burrowsec1f45c2016-08-08 16:14:41 +010045 'Topo2Collection', 'Topo2NodeModel', 'Topo2ViewService',
46 function (_Collection_, _NodeModel_, classnames, _t2vs_) {
Steven Burrows57e24e92016-08-04 18:38:24 +010047
Steven Burrowsec1f45c2016-08-08 16:14:41 +010048 Collection = _Collection_;
Steven Burrows57e24e92016-08-04 18:38:24 +010049
Steven Burrowsec1f45c2016-08-08 16:14:41 +010050 Model = _NodeModel_.extend({
51 nodeType: 'host'
52 });
Steven Burrows57e24e92016-08-04 18:38:24 +010053
Steven Burrowsec1f45c2016-08-08 16:14:41 +010054 return {
55 createHostCollection: createHostCollection
56 };
57 }
58 ]);
Steven Burrows57e24e92016-08-04 18:38:24 +010059
60})();