blob: e504a8ccd87db25e0e1f63fd8c4711d3bb921c1e [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 Hunt205099e2015-02-07 13:12:01 -0800120 // search through array to find (the first occurrence of) item,
121 // returning its index if found; otherwise returning -1.
122 function inArray(item, array) {
123 var i;
124 if (isA(array)) {
125 for (i=0; i<array.length; i++) {
126 if (array[i] === item) {
127 return i;
128 }
129 }
130 }
131 return -1;
132 }
133
134 // remove (the first occurrence of) the specified item from the given
135 // array, if any. Return true if the removal was made; false otherwise.
136 function removeFromArray(item, array) {
137 var found = false,
138 i = inArray(item, array);
139 if (i >= 0) {
140 array.splice(i, 1);
141 found = true;
142 }
143 return found;
144 }
145
Bri Prebilic Cole19a32dd2015-03-26 18:00:03 -0700146 function isEmptyObject(obj) {
147 var key;
148 for (key in obj) {
149 return false;
150 }
151 return true;
152 }
153
Simon Hunt27a5cc82015-02-19 14:49:55 -0800154 // return the given string with the first character capitalized.
155 function cap(s) {
156 return s.replace(/^[a-z]/, function (m) {
157 return m.toUpperCase();
158 });
159 }
160
Simon Huntdc6362a2014-12-18 19:55:23 -0800161 angular.module('onosUtil')
Simon Hunta11b4eb2015-01-28 16:20:50 -0800162 .factory('FnService', ['$window', function (_$window_) {
163 $window = _$window_;
164
Simon Huntdc6362a2014-12-18 19:55:23 -0800165 return {
166 isF: isF,
167 isA: isA,
168 isS: isS,
169 isO: isO,
Simon Hunt51fc40b2015-01-06 13:56:12 -0800170 contains: contains,
Simon Hunta11b4eb2015-01-28 16:20:50 -0800171 areFunctions: areFunctions,
Simon Hunt48e61672015-01-30 14:48:25 -0800172 areFunctionsNonStrict: areFunctionsNonStrict,
173 windowSize: windowSize,
Simon Hunt205099e2015-02-07 13:12:01 -0800174 find: find,
175 inArray: inArray,
Simon Hunt27a5cc82015-02-19 14:49:55 -0800176 removeFromArray: removeFromArray,
Bri Prebilic Cole19a32dd2015-03-26 18:00:03 -0700177 isEmptyObject: isEmptyObject,
Simon Hunt27a5cc82015-02-19 14:49:55 -0800178 cap: cap
Simon Huntdc6362a2014-12-18 19:55:23 -0800179 };
Simon Hunt1eecfa22014-12-16 14:46:29 -0800180 }]);
181
Simon Huntdc6362a2014-12-18 19:55:23 -0800182}());