blob: d8dbc208bca0f4962a26e04bc08fa1ccbb1fa5bb [file] [log] [blame]
Simon Huntf0eb2172016-01-26 18:54:21 -08001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2016-present Open Networking Foundation
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',
Viswanath KSP0cf084b2016-11-19 18:17:55 +053038 'jweeidkpizn',
Viswanath KSP539427f2016-12-21 19:08:08 +053039 'fmfv',
Thomas Vachuska9e4bf032017-08-01 10:05:09 -070040 'hwdoc',
41 'acxefcsdgt',
Steven Burrows1c2a9682017-07-14 16:52:46 +010042 'pmmn',
Thomas Vachuska9ad62602018-04-04 18:09:20 -070043 'ugaryc',
Thomas Vachuska25ffa032018-08-08 17:27:33 -070044 'xcedrcxekzg',
45 'qit'
Simon Huntb8d37982016-08-22 21:29:55 -070046 // Add more beans...
Simon Huntf4ef6dd2016-02-03 17:05:14 -080047 ];
48
49 function pickBean() {
50 return beans[Math.floor(Math.random() * beans.length)] + '.foo';
51 }
52
Simon Huntf0eb2172016-01-26 18:54:21 -080053 function computeTransform(x) {
54 var m = x.split(':'),
55 h = Number(m[0]),
56 d = m[1],
57 n = d.length,
58 w = [],
59 i;
60
61 for (i = 0; i<n; i+=2)
Steven Burrows1c2a9682017-07-14 16:52:46 +010062 { w.push(fcc(Number(d.slice(i, i+2)))); }
Simon Huntf0eb2172016-01-26 18:54:21 -080063
64 return fs.eecode(h, w.join(''));
65 }
66
67 function genMap(data) {
68 var map = {};
69
70 data.forEach(function (x) {
71 var r = computeTransform(x);
Simon Huntf4ef6dd2016-02-03 17:05:14 -080072 map[r.e] = r.o.toLowerCase() + '.foo';
Simon Huntf0eb2172016-01-26 18:54:21 -080073 });
74 return map;
75 }
76
Simon Huntf4ef6dd2016-02-03 17:05:14 -080077 function cluck(foo) {
78 var f = fs.isF(foo),
79 s = fs.isS(foo);
Simon Huntf0eb2172016-01-26 18:54:21 -080080
Simon Huntf4ef6dd2016-02-03 17:05:14 -080081 $log.debug('>>> CLUCK! <<<', foo);
82
83 if (s === 'fgfb.foo') {
84 s = pickBean();
85 $log.debug('bean picked:', s);
Simon Huntf0eb2172016-01-26 18:54:21 -080086 }
Simon Huntf4ef6dd2016-02-03 17:05:14 -080087
88 if (s && fs.endsWith(s, '.foo')) {
89 flash.tempDiv().append('img').attr('src', 'raw/'+s);
90 }
91
92 f && f();
93 }
94
95 angular.module('onosUtil')
96 .factory('EeService', ['$log', 'FnService', 'FlashService',
97 function (_$log_, _fs_, _flash_) {
98 $log = _$log_;
99 fs = _fs_;
100 flash = _flash_;
101
102 return {
103 genMap: genMap,
Steven Burrows1c2a9682017-07-14 16:52:46 +0100104 cluck: cluck,
105 };
Simon Huntf4ef6dd2016-02-03 17:05:14 -0800106 }]);
Simon Huntf0eb2172016-01-26 18:54:21 -0800107}());