blob: 19c2012d6a227f82bce40967af7fd26748fc3fb3 [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
25 var Collection, Model;
26
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')
44 .factory('Topo2HostService',
45 ['Topo2Collection', 'Topo2Model',
46
47 function (_Collection_, _Model_) {
48
49 Collection = _Collection_;
50 Model = _Model_.extend();
51
52 return {
53 createHostCollection: createHostCollection
54 };
55 }
56 ]);
57
58})();