-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstream.js
More file actions
58 lines (47 loc) · 1.39 KB
/
stream.js
File metadata and controls
58 lines (47 loc) · 1.39 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
var through2 = require('through2');
module.exports = function (config, handler, flush) {
if (typeof config === 'function') {
flush = handler;
handler = config;
config = {};
}
// default to a pass through stream
if (typeof handler !== 'function') {
handler = function (a) { this.push(a); };
}
var ms = (config && config.timeout) || 30000;
// if a handler leaves off the done callback, we will call it for them
var async = handler.length >= 2;
var str = through2({ objectMode: true }, function (obj, enc, _cb) {
var timeout;
var done = function (err, obj) {
if (async) {
clearTimeout(timeout);
}
if (err) {
str.emit('error', err);
}
if (obj) {
str.push(obj);
}
_cb();
};
if (async) {
timeout = setTimeout(function () {
str.emit('error', new Error('Failed to call done in a stream handler before ' + ms + 'ms timeout.'));
}, ms);
handler.call(str, obj, done);
} else {
handler.call(str, obj);
done();
}
}, function (done) {
if (flush) {
flush.call(this, done);
}
if (!flush || flush.length === 0) {
done();
}
});
return str;
};