blob: 690c8b2631bd090852631a5b714de037efc0f1f0 [file] [log] [blame]
Simon Hunt1eecfa22014-12-16 14:46:29 -08001/*
Simon Hunt8ead3a22015-01-06 11:00:15 -08002 * Copyright 2014,2015 Open Networking Laboratory
Simon Hunt1eecfa22014-12-16 14:46:29 -08003 *
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/*
Simon Huntdc6362a2014-12-18 19:55:23 -080018 ONOS GUI -- Util -- General Purpose Functions
Simon Hunt1eecfa22014-12-16 14:46:29 -080019 */
Simon Huntdc6362a2014-12-18 19:55:23 -080020(function () {
Simon Hunt1eecfa22014-12-16 14:46:29 -080021 'use strict';
22
Simon Hunta11b4eb2015-01-28 16:20:50 -080023 var $window;
24
Simon Hunt59df0b22014-12-17 10:32:25 -080025 function isF(f) {
Simon Hunt404f6b22015-01-21 14:00:56 -080026 return typeof f === 'function' ? f : null;
Simon Hunt59df0b22014-12-17 10:32:25 -080027 }
28
29 function isA(a) {
Simon Hunt404f6b22015-01-21 14:00:56 -080030 // NOTE: Array.isArray() is part of EMCAScript 5.1
31 return Array.isArray(a) ? a : null;
Simon Hunt59df0b22014-12-17 10:32:25 -080032 }
33
34 function isS(s) {
35 return typeof s === 'string' ? s : null;
36 }
37
38 function isO(o) {
Simon Hunt404f6b22015-01-21 14:00:56 -080039 return (o && typeof o === 'object' && o.constructor === Object) ? o : null;
Simon Hunt59df0b22014-12-17 10:32:25 -080040 }
41
42 function contains(a, x) {
43 return isA(a) && a.indexOf(x) > -1;
44 }
45
Simon Hunt51fc40b2015-01-06 13:56:12 -080046 // Returns true if all names in the array are defined as functions
47 // on the given api object; false otherwise.
Simon Hunt48e61672015-01-30 14:48:25 -080048 // Also returns false if there are properties on the api that are NOT
49 // listed in the array of names.
Simon Hunt51fc40b2015-01-06 13:56:12 -080050 function areFunctions(api, fnNames) {
Simon Hunt48e61672015-01-30 14:48:25 -080051 var fnLookup = {},
52 extraFound = false;
53
54 if (!isA(fnNames)) {
55 return false;
56 }
57 var n = fnNames.length,
58 i, name;
59 for (i=0; i<n; i++) {
60 name = fnNames[i];
61 if (!isF(api[name])) {
62 return false;
63 }
64 fnLookup[name] = true;
65 }
66
67 // check for properties on the API that are not listed in the array,
68 angular.forEach(api, function (value, key) {
69 if (!fnLookup[key]) {
70 extraFound = true;
71 }
72 });
73 return !extraFound;
74 }
75
76 // Returns true if all names in the array are defined as functions
77 // on the given api object; false otherwise. This is a non-strict version
78 // that does not care about other properties on the api.
79 function areFunctionsNonStrict(api, fnNames) {
Simon Hunt51fc40b2015-01-06 13:56:12 -080080 if (!isA(fnNames)) {
81 return false;
82 }
83 var n = fnNames.length,
84 i, name;
85 for (i=0; i<n; i++) {
86 name = fnNames[i];
87 if (!isF(api[name])) {
88 return false;
89 }
90 }
91 return true;
92 }
93
Simon Hunta11b4eb2015-01-28 16:20:50 -080094 // Returns width and height of window inner dimensions.
95 // offH, offW : offset width/height are subtracted, if present
96 function windowSize(offH, offW) {
97 var oh = offH || 0,
98 ow = offW || 0;
99 return {
100 height: $window.innerHeight - oh,
101 width: $window.innerWidth - ow
102 };
103 }
104
Simon Hunt48e61672015-01-30 14:48:25 -0800105 // search through an array of objects, looking for the one with the
106 // tagged property matching the given key. tag defaults to 'id'.
107 // returns the index of the matching object, or -1 for no match.
108 function find(key, array, tag) {
109 var _tag = tag || 'id',
110 idx, n, d;
111 for (idx = 0, n = array.length; idx < n; idx++) {
112 d = array[idx];
113 if (d[_tag] === key) {
114 return idx;
115 }
116 }
117 return -1;
118 }
119
Simon Huntdc6362a2014-12-18 19:55:23 -0800120 angular.module('onosUtil')
Simon Hunta11b4eb2015-01-28 16:20:50 -0800121 .factory('FnService', ['$window', function (_$window_) {
122 $window = _$window_;
123
Simon Huntdc6362a2014-12-18 19:55:23 -0800124 return {
125 isF: isF,
126 isA: isA,
127 isS: isS,
128 isO: isO,
Simon Hunt51fc40b2015-01-06 13:56:12 -0800129 contains: contains,
Simon Hunta11b4eb2015-01-28 16:20:50 -0800130 areFunctions: areFunctions,
Simon Hunt48e61672015-01-30 14:48:25 -0800131 areFunctionsNonStrict: areFunctionsNonStrict,
132 windowSize: windowSize,
133 find: find
Simon Huntdc6362a2014-12-18 19:55:23 -0800134 };
Simon Hunt1eecfa22014-12-16 14:46:29 -0800135 }]);
136
Simon Huntdc6362a2014-12-18 19:55:23 -0800137}());