-
Notifications
You must be signed in to change notification settings - Fork 59
/
index.js
288 lines (230 loc) · 5.95 KB
/
index.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
'use strict';
var net = require('net');
var idGenerator = function(a){
return a ? (a ^ Math.random() * 16 >> a / 4).toString(16) : ([1e7] + -1e3 + -4e3 + -8e3 + -1e11).
replace(/[018]/g, idGenerator);
};
var log = {
e: function(){
var args = new Array(arguments.length);
for(var ai = 0, al = arguments.length; ai < al; ++ai){
args[ai] = arguments[ai];
}
console.log(args);
}
};
var descrCmd = '__D';
var resultCmd = '__R';
var errorCmd = '__E';
var newLineCode = '\n'.charCodeAt(0);
exports = module.exports = LightRPC;
function LightRPC(wrapper, logger){
if(!(this instanceof LightRPC)) {
return new LightRPC(wrapper, logger);
}
log = logger || log;
this.wrapper = wrapper;
this.description = {};
this.callbacks = {};
for(var p in wrapper){
this.description[p] = {};
}
this.descrStr = command(descrCmd, this.description);
return this;
}
LightRPC.prototype.connect = function(port, host, callback){
if(!callback){
callback = host;
host = 'localhost';
}
var connection = net.createConnection(port, host);
var self = this;
connection.setKeepAlive(true);
connection.on('connect', function(){
connection.write(command(descrCmd));
});
var commandsCallback = function(cmd){
if(cmd.command === resultCmd){
if(self.callbacks[cmd.data.id]){
self.callbacks[cmd.data.id].apply(this, cmd.data.args);
delete self.callbacks[cmd.data.id];
}
}
else if(cmd.command === errorCmd){
if(self.callbacks[cmd.data.id]){
self.callbacks[cmd.data.id].call(this, cmd.data.err);
delete self.callbacks[cmd.data.id];
}
}
else if(cmd.command === descrCmd){
var remoteObj = {};
for(var p in cmd.data){
remoteObj[p] = getRemoteCallFunction(p, self.callbacks, connection);
}
callback(remoteObj, connection);
}
};
var lengthObj = {
bufferBytes: undefined,
getLength: true,
length: -1
};
connection.on('data', getOnDataFn(commandsCallback, lengthObj));
connection.on('error', function(err){
log.e('CONNECTION_DAMN_ERROR', err);
});
connection.on('timeout', function(){
log.e('RPC connection timeout');
});
connection.on('end', function(){
log.e('RPC connection other side send end event');
});
};
LightRPC.prototype.listen = function(port){
this.getServer();
this.server.listen(port);
};
LightRPC.prototype.getServer = function(){
var self = this;
var server = net.createServer(function(c) {
var commandsCallback = function(cmd){
if(cmd.command === descrCmd){
c.write(self.descrStr);
}
else if(!self.wrapper[cmd.command]){
c.write(command('error', {code: 'UNKNOWN_COMMAND'}));
}
else {
var args = cmd.data.args;
args.push(getSendCommandBackFunction(c, cmd.data.id));
try{
self.wrapper[cmd.command].apply({}, args);
}
catch(err){
log.e(err);
var resultCommand = command(errorCmd, {id: cmd.data.id, err: err});
c.write(resultCommand);
}
}
};
var lengthObj = {
bufferBytes: undefined,
getLength: true,
length: -1
};
c.on('data', getOnDataFn(commandsCallback, lengthObj));
c.on('error', function(exception){
log.e(exception);
});
});
this.server = server;
return server;
};
LightRPC.prototype.close = function(){
this.server.close();
};
LightRPC.connect = function(){
var rpc = new LightRPC();
return rpc.connect.apply(rpc, arguments);
};
function command(name, data){
var cmd = {
command: name,
data: data
};
var cmdStr = JSON.stringify(cmd);
return Buffer.byteLength(cmdStr) + '\n' + cmdStr;
}
function getOnDataFn(commandsCallback, lengthObj){
return function(data){
if(lengthObj.bufferBytes && lengthObj.bufferBytes.length > 0){
var tmpBuff = new Buffer(lengthObj.bufferBytes.length + data.length);
lengthObj.bufferBytes.copy(tmpBuff, 0);
data.copy(tmpBuff, lengthObj.bufferBytes.length);
lengthObj.bufferBytes = tmpBuff;
} else {
lengthObj.bufferBytes = data;
}
var commands = getComands.call(lengthObj);
commands.forEach(commandsCallback);
};
}
function getRemoteCallFunction(cmdName, callbacks, connection){
return function(){
var id = idGenerator();
if(typeof arguments[arguments.length - 1] === 'function'){
callbacks[id] = arguments[arguments.length - 1];
}
var args = [];
for(var ai = 0, al = arguments.length; ai < al; ++ai){
if(typeof arguments[ai] !== 'function'){
args.push(arguments[ai]);
}
}
var newCmd = command(cmdName, {id: id, args: args});
connection.write(newCmd);
};
}
function getSendCommandBackFunction(connection, cmdId){
return function(){
var innerArgs = [];
for(var ai = 0, al = arguments.length; ai < al; ++ai){
if(typeof arguments[ai] !== 'function'){
innerArgs.push(arguments[ai]);
}
}
var resultCommand = command(resultCmd, {id: cmdId, args: innerArgs});
connection.write(resultCommand);
};
}
function getComands(){
var commands = [];
var i = -1;
var parseCommands = function(){
if(this.getLength === true){
i = getNewlineIndex(this.bufferBytes);
if(i > -1){
this.length = Number(this.bufferBytes.slice(0, i).toString());
this.getLength = false;
// (i + 1) for \n symbol
this.bufferBytes = clearBuffer(this.bufferBytes, i + 1);
}
}
if(this.bufferBytes && this.bufferBytes.length >= this.length){
var cmd = this.bufferBytes.slice(0, this.length).toString();
this.getLength = true;
try{
var parsedCmd = JSON.parse(cmd);
}
catch(e){
log.e('ERROR PARSE');
log.e(cmd);
log.e(this.length, this.bufferBytes.toString());
return;
}
commands.push(parsedCmd);
this.bufferBytes = clearBuffer(this.bufferBytes, this.length);
if(this.bufferBytes && this.bufferBytes.length > 0){
parseCommands.call(this);
}
}
};
parseCommands.call(this);
return commands;
}
function getNewlineIndex(buffer){
if(buffer){
for(var i = 0, l = buffer.length; i < l; ++i){
if(buffer[i] === newLineCode){
return i;
}
}
}
return -1;
}
function clearBuffer(buffer, length){
if(buffer.length > length){
return buffer.slice(length);
}
return undefined;
}