index.js
11.2 KB
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
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
//filter will reemit the data if cb(err,pass) pass is truthy
// reduce is more tricky
// maybe we want to group the reductions or emit progress updates occasionally
// the most basic reduce just emits one 'data' event after it has recieved 'end'
var Stream = require('stream').Stream
, es = exports
es.Stream = Stream //re-export Stream from core
// writable stream, collects all events into an array
// and calls back when 'end' occurs
// mainly I'm using this to test the other functions
es.writeArray = function (done) {
if ('function' !== typeof done)
throw new Error('function writeArray (done): done must be function')
var a = new Stream ()
, array = []
a.write = function (l) {
array.push(l)
}
a.end = function () {
done(null, array)
}
a.writable = true
a.readable = false
return a
}
//return a Stream that reads the properties of an object
//respecting pause() and resume()
es.readArray = function (array) {
var stream = new Stream()
, i = 0
, paused = false
stream.readable = true
stream.writable = false
if(!Array.isArray(array))
throw new Error('event-stream.read expects an array')
stream.resume = function () {
paused = false
var l = array.length
while(i < l && !paused) {
stream.emit('data', array[i++])
}
if(i == l)
stream.emit('end'), stream.readible = false
}
process.nextTick(stream.resume)
stream.pause = function () {
paused = true
}
return stream
}
//
// readable (asyncFunction)
// return a stream that calls an async function while the stream is not paused.
//
// the function must take: (count, callback) {...
//
es.readable = function (func, continueOnError) {
var stream = new Stream()
, i = 0
, paused = false
, ended = false
, reading = false
stream.readable = true
stream.writable = false
if('function' !== typeof func)
throw new Error('event-stream.readable expects async function')
stream.on('end', function () { ended = true })
function get (err, data) {
if(err) {
stream.emit('error', err)
if(!continueOnError) stream.emit('end')
} else if (arguments.length > 1)
stream.emit('data', data)
process.nextTick(function () {
if(ended || paused || reading) return
try {
reading = true
func.call(stream, i++, function () {
reading = false
get.apply(null, arguments)
})
} catch (err) {
stream.emit('error', err)
}
})
}
stream.resume = function () {
paused = false
get()
}
process.nextTick(get)
stream.pause = function () {
paused = true
}
return stream
}
//create an event stream and apply function to each .write
//emitting each response as data
//unless it's an empty callback
es.map = function (mapper) {
var stream = new Stream()
, inputs = 0
, outputs = 0
, ended = false
, paused = false
stream.writable = true
stream.readable = true
stream.write = function () {
inputs ++
var args = [].slice.call(arguments)
, r
, inNext = false
function next (err) {
inNext = true
outputs ++
var args = [].slice.call(arguments)
if(err) {
args.unshift('error')
return inNext = false, stream.emit.apply(stream, args)
}
args.shift() //drop err
if (args.length){
args.unshift('data')
r = stream.emit.apply(stream, args)
}
if(inputs == outputs) {
if(paused) stream.emit('drain') //written all the incoming events
paused = false
if(ended)
stream.end()
}
inNext = false
}
args.push(next)
try {
//catch sync errors and handle them like async errors
var written = mapper.apply(null,args)
if(written === false) paused = true
return written
} catch (err) {
//if the callback has been called syncronously, and the error
//has occured in an listener, throw it again.
if(inNext)
throw err
next(err)
return true
}
}
stream.end = function () {
var args = [].slice.call(arguments)
//if end was called with args, write it,
ended = true //write will emit 'end' if ended is true
if(args.length)
return stream.write.apply(emitter, args)
else if (inputs == outputs) //wait for processing
stream.emit('end')
}
return stream
}
//
// map sync
//
es.mapSync = function (sync) {
return es.map(function () {
var args = [].slice.call(arguments)
, callback = args.pop()
callback(null, sync.apply(null, args))
})
}
//
// log just print out what is coming through the stream, for debugging
//
es.log = function (name) {
return es.map(function () {
var args = [].slice.call(arguments)
var cb = args.pop()
if(name) args.slice().unshift(name)
console.error.apply(null, args)
args.unshift(null)
cb.apply(null, args)
})
}
//
// combine multiple streams together so that they act as a single stream
//
es.pipe = es.connect = function () {
var streams = [].slice.call(arguments)
, first = streams[0]
, last = streams[streams.length - 1]
, thepipe = es.duplex(first, last)
if(streams.length == 1)
return streams[0]
else if (!streams.length)
throw new Error('connect called with empty args')
//pipe all the streams together
function recurse (streams) {
if(streams.length < 2)
return
streams[0].pipe(streams[1])
recurse(streams.slice(1))
}
recurse(streams)
function onerror () {
var args = [].slice.call(arguments)
args.unshift('error')
thepipe.emit.apply(thepipe, args)
}
streams.forEach(function (stream) {
stream.on('error', onerror)
})
return thepipe
}
//
// child -- pipe through a child process
//
es.child = function (child) {
return es.duplex(child.stdin, child.stdout)
}
//
// duplex -- pipe into one stream and out another
//
es.duplex = function (writer, reader) {
var thepipe = new Stream()
thepipe.__defineGetter__('writable', function () { return writer.writable })
thepipe.__defineGetter__('readable', function () { return reader.readable })
;['write', 'end', 'close'].forEach(function (func) {
thepipe[func] = function () {
return writer[func].apply(writer, arguments)
}
})
;['resume', 'pause'].forEach(function (func) {
thepipe[func] = function () {
thepipe.emit(func)
if(reader[func])
return reader[func].apply(reader, arguments)
else
reader.emit(func)
}
})
;['data', 'close'].forEach(function (event) {
reader.on(event, function () {
var args = [].slice.call(arguments)
args.unshift(event)
thepipe.emit.apply(thepipe, args)
})
})
//only emit end once
var ended = false
reader.on('end', function () {
if(ended) return
ended = true
var args = [].slice.call(arguments)
args.unshift('end')
thepipe.emit.apply(thepipe, args)
})
return thepipe
}
es.split = function (matcher) {
var stream = new Stream()
, soFar = ''
if (!matcher)
matcher = '\n'
stream.writable = true
stream.write = function (buffer) {
buffer = buffer.toString()
var l = buffer.length
, i = 0
while (i < l) {
var c = buffer[i].toString()
soFar += c
if (c == matcher) {
var n = soFar;
soFar = ''
this.emit('data', n)
}
i++
}
}
stream.end = function () {
stream.emit('data', soFar)
stream.emit('end')
}
return stream
}
//
// gate
//
// while the gate is shut(), buffer incoming.
//
// if gate is open() stream like normal.
//
// currently, when opened, this will emit all data unless it is shut again
// if downstream pauses it will still write, i'd like to make it respect pause,
// but i'll need a test case first.
es.gate = function (shut) {
var stream = new Stream()
, queue = []
, ended = false
shut = (shut === false ? false : true) //default to shut
// console.error('SHUT?', shut)
stream.writable = true
stream.readable = true
stream.isShut = function () { return shut }
stream.shut = function () { shut = true }
stream.open = function () { shut = false; maybe() }
function maybe () {
// console.error('maybe', queue.length, shut)
while(queue.length && !shut) {
var args = queue.shift()
args.unshift('data')
stream.emit.apply(stream, args)
}
stream.emit('drain')
if(ended && !shut)
stream.emit('end')
}
stream.write = function () {
var args = [].slice.call(arguments)
queue.push(args)
// console.error(queue)
if (shut) return false //pause up stream pipes
maybe()
}
stream.end = function () {
ended = true
if (!queue.length)
stream.emit('end')
}
return stream
}
//
// parse
//
es.parse = function () {
return es.mapSync(function (e){
return JSON.parse(e.toString())
})
}
//
// stringify
//
es.stringify = function () {
return es.mapSync(function (e){
return JSON.stringify(e) + '\n'
})
}
//
// helper to make your module into a unix pipe
// simply add
//
// if(!module.parent)
// require('event-stream').pipable(asyncFunctionOrStreams)
//
// asyncFunctionOrStreams may be one or more Streams or if it is a function,
// it will be automatically wrapped in es.map
//
// then pipe stuff into from the command line!
//
// curl registry.npmjs.org/event-stream | node hello-pipeable.js | grep whatever
//
// etc!
//
// also, start pipeable running as a server!
//
// > node hello-pipeable.js --port 44444
//
var setup = function (args) {
return args.map(function (f) {
var x = f()
if('function' === typeof x)
return es.map(x)
return x
})
}
es.pipeable = function () {
var opts = require('optimist').argv
var args = [].slice.call(arguments)
if(opts.h || opts.help) {
var name = process.argv[1]
console.error([
'Usage:',
'',
'node ' + name + ' [options]',
' --port PORT turn this stream into a server',
' --host HOST host of server (localhost is default)',
' --protocol protocol http|net will require(protocol).createServer(...',
' --help display this message',
'',
' if --port is not set, will stream input from stdin',
'',
'also, pipe from or to files:',
'',
' node '+name+ ' < file #pipe from file into this stream',
' node '+name+ ' < infile > outfile #pipe from file into this stream',
'',
].join('\n'))
} else if (!opts.port) {
var streams = setup(args)
streams.unshift(es.split())
//streams.unshift()
streams.push(process.stdout)
var c = es.connect.apply(null, streams)
process.openStdin().pipe(c) //there
return c
} else {
opts.host = opts.host || 'localhost'
opts.protocol = opts.protocol || 'http'
var protocol = require(opts.protocol)
var server = protocol.createServer(function (instream, outstream) {
var streams = setup(args)
streams.unshift(es.split())
streams.unshift(instream)
streams.push(outstream || instream)
es.pipe.apply(null, streams)
})
server.listen(opts.port, opts.host)
console.error(process.argv[1] +' is listening for "' + opts.protocol + '" on ' + opts.host + ':' + opts.port)
}
}