-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstream.js
302 lines (249 loc) · 9.33 KB
/
stream.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
289
290
291
292
293
294
295
296
297
298
299
300
301
302
// L7mp: A programmable L7 meta-proxy
//
// Copyright 2019 by its authors.
// Some rights reserved. See AUTHORS.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the 'Software'), to
// deal in the Software without restriction, including without limitation the
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
// sell copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
// ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
'use strict';
const log = require('npmlog');
const util = require('util');
const stream_pipe = require('stream').prototype.pipe;
const { Duplex, PassThrough } = require('stream');
const duplex3 = require("duplexer2");
const miss = require('mississippi');
const eventDebug = require('event-debug');
class DatagramStream extends Duplex {
constructor(socket, options){
super({
...options,
autoDestroy: false,
emitClose: false,
// objectMode: false,
objectMode: true,
// readableObjectMode: false,
// writableObjectMode: false
});
this.drops = 0;
// check if socket is properly connected
try {
this.remote = socket.remoteAddress();
} catch(e) {
throw 'DatagramStream: Cannot create a stream for an unconnected '+
'socket: '+ e;
}
// event handlers
// datagram streams have no flow control: if we cannot push msg we
// must drop it
socket.on('message', (msg, rinfo) => {
// msg.rinfo = rinfo;
log.silly('DatagramStream.onmessage:',
`rinfo: ${dumper(rinfo)}: ${msg}`);
if(!this.push(msg))
log.verbose('DatagramStream.onmessage: Dropping message:',
`rinfo: ${dumper(rinfo)}: ${msg}`);
});
socket.once('listening', () => {
this.emit('listening');
});
// we cannot get 'connect' anymore, socket is already
// connected
socket.on('error', (e) => {
log.silly('DatagramStream.onerror:',
e.message || dumper(e));
this.emit('error', e);
});
socket.on('close', () => {
log.silly('DatagramStream.onclose: Closing connection to',
`${this.remote.address}:${this.remote.port}`);
this.emit('close');
});
this.socket = socket;
}
_read() {
// empty
};
_write(message, encoding, callback) {
// if (typeof message === "string")
// message = Buffer.from(message, encoding);
// if(!Buffer.isBuffer(message))
// message = new Buffer(message);
if (! (message instanceof Buffer) )
message = Buffer.from(message, encoding);
log.silly('DatagramStream._write:', `${this.remote.address}:`+
`${this.remote.port}:`,`${message}`);
this.socket.send(message, 0, message.length);
callback();
};
// net.socket has destroy/end, dgram.socket has close... why???
destroy(){ this.end(); }
end(msg){
log.silly('DatagramStream.end:', `Ending connection to`,
`${this.remote.address}:${this.remote.port}`);
if(msg)this.socket.send(msg, 0, msg.length);
setImmediate( () => {
// this.socket.emit('end');
try{this.socket.close()}catch(e){
// log.silly(dumper(e, 6));
log.silly('DatagramStream.end: Cannot end stream (probably harmless)', e.message);
};
});
}
};
// port1
// +--------+
// --------> input ------------+ port2
// | | | +--------+
// <-------- output <----+------------- input <---------
// +--------+ | | | |
// | +-----> output--------->
// | | +--------+
// | |
// +---|-----V----+
// | input output |port3
// +---A-----|----+
// | |
// | |
// | V
class BroadcastStream {
constructor(){
this.ports = [];
return this;
}
// key is a transparent id
add(key) {
log.silly(`BroadcastStream.add: adding key: "${key}"`);
let input = new PassThrough({objectMode: true});
// eventDebug(input, `${key}: input`);
let output = new MergeStream();
// eventDebug(output, `${key}: output`);
// propagate errors from input/output to port
let port = duplex3({readableObjectMode: true, writableObjectMode: true,
bubbleErrors: true}, input, output);
// eventDebug(output, `${key}: port`);
this.ports.push( {port: port, input: input, output: output, key: key} );
port.once('end', () => {
log.silly(`BroadcastStream.end on port ${key}`);
this.remove(key);
});
port.once('error', (e) => {
log.silly(`BroadcastStream.error on port ${key}:`, e.message);
this.emit('end');
});
// input
this.ports.forEach( (p) => {
if(p.key !== key){
input.pipe(p.output); // will call merge.add
// miss.pipe(input, p.output); // will call merge.add
}
});
// output
this.ports.forEach( (p) => {
if(p.key !== key){
p.input.pipe(output); // will call merge.add
// miss.pipe(p.input, output); // will call merge.add
}
});
return port;
}
isEmpty(){
return this.ports.length == 0;
}
remove(k) {
log.silly(`BroadcastStream.remove: removing key: "${k}"`);
let i = this.ports.findIndex( ({key}) => key === k );
if(i >= 0){
let port = this.ports[i];
let input = port.input;
let output = port.output;
// input
this.ports.forEach( (p) => {
if(p.key !== k){
input.unpipe(p.output);
}
});
// output
this.ports.forEach( (p) => {
if(p.key !== k){
p.input.unpipe(output);
}
});
// if(port.output.readable) { port.output.end() };
// port.output.end();
this.ports.splice(i, 1);
}
}
};
// left right
// +---+
// W -+---+> R upper
// | |
// R <+---+- W lower
// +---+
class DuplexPassthrough {
constructor(upperOptions, lowerOptions){
this.upper = new PassThrough(upperOptions);
this.lower = new PassThrough(lowerOptions);
this.left = duplex3(this.upper, this.lower);
this.right = duplex3(this.lower, this.upper);
}
upper() { return this.upper; }
lower() { return this.lower; }
left() { return this.left; }
right() { return this.right; }
destroy(e) { this.upper.destroy(e); this.lower.destroy(e); };
end(d,e,c) { this.upper.end(d,e,c); this.lower.end(d,e,c); };
};
// adopted from merge-streams:
// change: do not end the merge stream when the last writer goes away,
// we want to keep it around so that later we can add new writers
var MergeStream = function (/*streams...*/) {
var sources = []
var output = new PassThrough({objectMode: true});
output.setMaxListeners(0);
output.add = add;
output.isEmpty = isEmpty;
output.on('unpipe', remove);
Array.prototype.slice.call(arguments).forEach(add);
return output;
function add (source) {
log.silly('MergeStream.add');
if (Array.isArray(source)) {
source.forEach(add);
return this;
}
sources.push(source);
source.once('end', remove.bind(null, source));
source.once('error', output.emit.bind(output, 'error'));
source.pipe(output, {end: false});
return this;
}
function isEmpty () {
return sources.length == 0;
}
function remove (source) {
log.silly('MergeStream.remove');
sources = sources.filter(function (it) { return it !== source });
// if (!sources.length && output.readable) { output.end() }
}
}
// module.exports.socket2dgramstream = socket2dgramstream;
// module.exports.Status = Status;
module.exports.DatagramStream = DatagramStream;
module.exports.BroadcastStream = BroadcastStream;
module.exports.DuplexPassthrough = DuplexPassthrough;
module.exports.MergeStream = MergeStream;