blob: a0d2dc4419ffc4b5cb93791415fd3e1f3445f689 [file] [log] [blame]
Simon Huntf0eb2172016-01-26 18:54:21 -08001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2016-present Open Networking Laboratory
Simon Huntf0eb2172016-01-26 18:54:21 -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/*
18 ONOS GUI -- Util -- EE functions
19 */
20(function () {
21 'use strict';
22
23 // injected services
Simon Huntf4ef6dd2016-02-03 17:05:14 -080024 var $log, fs, flash;
Simon Huntf0eb2172016-01-26 18:54:21 -080025
26 // function references
27 var fcc = String.fromCharCode;
28
Simon Huntf4ef6dd2016-02-03 17:05:14 -080029 // magic beans
30 var beans = [
Simon Huntc4f320a2016-02-09 18:25:33 -080031 'umpxwnwcw',
32 'eufdvexoc',
33 'egpdytgv',
34 'xcjvte',
35 'bgvest',
36 'sevlr',
Simon Huntb8d37982016-08-22 21:29:55 -070037 'ias',
38 'jweeidkpizn'
39 // Add more beans...
Simon Huntf4ef6dd2016-02-03 17:05:14 -080040 ];
41
42 function pickBean() {
43 return beans[Math.floor(Math.random() * beans.length)] + '.foo';
44 }
45
Simon Huntf0eb2172016-01-26 18:54:21 -080046 function computeTransform(x) {
47 var m = x.split(':'),
48 h = Number(m[0]),
49 d = m[1],
50 n = d.length,
51 w = [],
52 i;
53
54 for (i = 0; i<n; i+=2)
55 w.push(fcc(Number(d.slice(i, i+2))));
56
57 return fs.eecode(h, w.join(''));
58 }
59
60 function genMap(data) {
61 var map = {};
62
63 data.forEach(function (x) {
64 var r = computeTransform(x);
Simon Huntf4ef6dd2016-02-03 17:05:14 -080065 map[r.e] = r.o.toLowerCase() + '.foo';
Simon Huntf0eb2172016-01-26 18:54:21 -080066 });
67 return map;
68 }
69
Simon Huntf4ef6dd2016-02-03 17:05:14 -080070 function cluck(foo) {
71 var f = fs.isF(foo),
72 s = fs.isS(foo);
Simon Huntf0eb2172016-01-26 18:54:21 -080073
Simon Huntf4ef6dd2016-02-03 17:05:14 -080074 $log.debug('>>> CLUCK! <<<', foo);
75
76 if (s === 'fgfb.foo') {
77 s = pickBean();
78 $log.debug('bean picked:', s);
Simon Huntf0eb2172016-01-26 18:54:21 -080079 }
Simon Huntf4ef6dd2016-02-03 17:05:14 -080080
81 if (s && fs.endsWith(s, '.foo')) {
82 flash.tempDiv().append('img').attr('src', 'raw/'+s);
83 }
84
85 f && f();
86 }
87
88 angular.module('onosUtil')
89 .factory('EeService', ['$log', 'FnService', 'FlashService',
90 function (_$log_, _fs_, _flash_) {
91 $log = _$log_;
92 fs = _fs_;
93 flash = _flash_;
94
95 return {
96 genMap: genMap,
97 cluck: cluck
98 }
99 }]);
Simon Huntf0eb2172016-01-26 18:54:21 -0800100}());