-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfubus.js
93 lines (80 loc) · 2.42 KB
/
fubus.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
/**
* Fubus service class.
* Provides mock implementation of OpenWRT
* ubus service.
*/
(function(module){
var utils = require("./utils");
/**
* Constructor for Mock ubus service.
*/
function fubus(opts) {
if (!opts){
opts = {
log: global.log
};
}
this._log = opts.log;
if (!this._log){
this._log = {
"debug": console.log
}
}
this._handlerObjects = {};
this._handleUbusCall = this.handleUbusCall;
var self = this;
this.handleUbusCall = function(){
return self._handleUbusCall.apply(self, arguments);
}
}
/**
* Register handler object.
* @param name Referenced name.
* @param handlerObject Handler object providing service methods.
*/
fubus.prototype.registerHandlerObject = function(name, handlerObject){
this._handlerObjects[name] = handlerObject;
}
/**
* Handle call to ubus from JSON-RPC / jrpc2 library.
* @returns {Promise} Resolves to service result.
*/
fubus.prototype.handleUbusCall = function() {
var self = this;
var ubusParams = utils.parseUbusParameters(arguments);
var callPromise = new Promise(function(resolve, reject){
var callPromiseInternal = new Promise(function(resolve, reject){
var handlerObject = self._handlerObjects[ubusParams.object];
if (!handlerObject)
{
reject();
return ;
}
handlerMethod = handlerObject[ubusParams.method];
if (!handlerMethod)
{
reject();
return ;
}
handlerMethod(ubusParams).then(function(callResult){
resolve(callResult);
}).catch(function() {
reject();
});
});
callPromiseInternal.then(function(callResult){
self._log.debug({result: callResult, params: ubusParams}, "Handled call on fubus.");
resolve(callResult);
return ;
}).catch(function(){
resolve([6]);
return ;
})
});
return callPromise;
}
/**
* Module exports.
*/
module.exports = fubus;
})(module);