This repository has been archived by the owner on Jun 3, 2018. It is now read-only.
forked from andy-portmen/native-client
-
Notifications
You must be signed in to change notification settings - Fork 11
/
messaging.js
128 lines (99 loc) · 3.42 KB
/
messaging.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
// chrome-native-messaging module
//
// Defines three Transform streams:
//
// - Input - transform native messages to JavaScript objects
// - Output - transform JavaScript objects to native messages
// - Transform - transform message objects to reply objects
// - Debug - transform JavaScript objects to lines of JSON (for debugging, obviously)
var stream = require('stream');
var util = require('util');
function Input() {
stream.Transform.call(this);
// Transform bytes...
this._writableState.objectMode = false;
// ...into objects.
this._readableState.objectMode = true;
// Unparsed data.
this.buf = new Buffer(0);
// Parsed length.
this.len = null;
}
util.inherits(Input, stream.Transform);
Input.prototype._transform = function(chunk, encoding, done) {
// Save this chunk.
this.buf = Buffer.concat([ this.buf, chunk ]);
var self = this;
function parseBuf() {
// Do we have a length yet?
if (typeof self.len !== 'number') {
// Nope. Do we have enough bytes for the length?
if (self.buf.length >= 4) {
// Yep. Parse the bytes.
self.len = self.buf.readUInt32LE(0);
// Remove the length bytes from the buffer.
self.buf = self.buf.slice(4);
}
}
// Do we have a length yet? (We may have just parsed it.)
if (typeof self.len === 'number') {
// Yep. Do we have enough bytes for the message?
if (self.buf.length >= self.len) {
// Yep. Slice off the bytes we need.
var message = self.buf.slice(0, self.len);
// Remove the bytes for the message from the buffer.
self.buf = self.buf.slice(self.len);
// Clear the length so we know we need to parse it again.
self.len = null;
// Parse the message bytes.
var obj = JSON.parse(message.toString());
// Enqueue it for reading.
self.push(obj);
// We could have more messages in the buffer so check again.
parseBuf();
}
}
}
// Check for a parsable buffer (both length and message).
parseBuf();
// We're done.
done();
};
function Output() {
stream.Transform.call(this);
this._writableState.objectMode = true;
this._readableState.objectMode = false;
}
util.inherits(Output, stream.Transform);
Output.prototype._transform = function(chunk, encoding, done) {
var len = new Buffer(4);
var buf = new Buffer(JSON.stringify(chunk));
len.writeUInt32LE(buf.length, 0);
this.push(len);
this.push(buf);
done();
};
function Transform(handler) {
stream.Transform.call(this);
this._writableState.objectMode = true;
this._readableState.objectMode = true;
this.handler = handler;
}
util.inherits(Transform, stream.Transform);
Transform.prototype._transform = function(msg, encoding, done) {
this.handler(msg, this.push.bind(this), done);
};
function Debug() {
stream.Transform.call(this);
this._writableState.objectMode = true;
this._readableState.objectMode = false;
}
util.inherits(Debug, stream.Transform);
Debug.prototype._transform = function(chunk, encoding, done) {
this.push(JSON.stringify(chunk) + '\n');
done();
};
exports.Input = Input;
exports.Output = Output;
exports.Transform = Transform;
exports.Debug = Debug;