-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathvasync.js
More file actions
522 lines (432 loc) · 11.9 KB
/
vasync.js
File metadata and controls
522 lines (432 loc) · 11.9 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
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
/*
* vasync.js: utilities for observable asynchronous control flow
*/
var mod_assert = require('assert');
var mod_events = require('events');
var mod_jsprim = require('jsprim');
var mod_util = require('util');
var mod_verror = require('verror');
/*
* Public interface
*/
exports.parallel = parallel;
exports.forEachParallel = forEachParallel;
exports.pipeline = pipeline;
exports.forEachPipeline = forEachPipeline;
exports.queue = queue;
exports.queuev = queuev;
exports.barrier = barrier;
if (!global.setImmediate) {
global.setImmediate = function (func) {
var args = Array.prototype.slice.call(arguments, 1);
args.unshift(0);
args.unshift(func);
setTimeout.apply(this, args);
};
}
/*
* Given a set of functions that complete asynchronously using the standard
* callback(err, result) pattern, invoke them all and merge the results. See
* README.md for details.
*/
function parallel(args, callback)
{
var funcs, rv, doneOne, i;
mod_assert.equal(typeof (args), 'object', '"args" must be an object');
mod_assert.ok(Array.isArray(args['funcs']),
'"args.funcs" must be specified and must be an array');
mod_assert.equal(typeof (callback), 'function',
'callback argument must be specified and must be a function');
funcs = args['funcs'];
rv = {
'operations': new Array(funcs.length),
'successes': [],
'ndone': 0,
'nerrors': 0
};
if (funcs.length === 0) {
setImmediate(function () { callback(null, rv); });
return (rv);
}
doneOne = function (entry) {
return (function (err, result) {
mod_assert.equal(entry['status'], 'pending');
entry['err'] = err;
entry['result'] = result;
entry['status'] = err ? 'fail' : 'ok';
if (err)
rv['nerrors']++;
else
rv['successes'].push(result);
if (++rv['ndone'] < funcs.length)
return;
var errors = rv['operations'].filter(function (ent) {
return (ent['status'] == 'fail');
}).map(function (ent) { return (ent['err']); });
if (errors.length > 0)
callback(new mod_verror.MultiError(errors), rv);
else
callback(null, rv);
});
};
for (i = 0; i < funcs.length; i++) {
rv['operations'][i] = {
'func': funcs[i],
'funcname': funcs[i].name || '(anon)',
'status': 'pending'
};
funcs[i](doneOne(rv['operations'][i]));
}
return (rv);
}
/*
* Exactly like parallel, except that the input is specified as a single
* function to invoke on N different inputs (rather than N functions). "args"
* must have the following fields:
*
* func asynchronous function to invoke on each input value
*
* inputs array of input values
*/
function forEachParallel(args, callback)
{
var func, funcs;
mod_assert.equal(typeof (args), 'object', '"args" must be an object');
mod_assert.equal(typeof (args['func']), 'function',
'"args.func" must be specified and must be a function');
mod_assert.ok(Array.isArray(args['inputs']),
'"args.inputs" must be specified and must be an array');
func = args['func'];
funcs = args['inputs'].map(function (input) {
return (function (subcallback) {
return (func(input, subcallback));
});
});
return (parallel({ 'funcs': funcs }, callback));
}
/*
* Like parallel, but invokes functions in sequence rather than in parallel
* and aborts if any function exits with failure. Arguments include:
*
* funcs invoke the functions in parallel
*
* arg first argument to each pipeline function
*/
function pipeline(args, callback)
{
var funcs, uarg, rv, next;
mod_assert.equal(typeof (args), 'object', '"args" must be an object');
mod_assert.ok(Array.isArray(args['funcs']),
'"args.funcs" must be specified and must be an array');
funcs = args['funcs'];
uarg = args['arg'];
rv = {
'operations': funcs.map(function (func) {
return ({
'func': func,
'funcname': func.name || '(anon)',
'status': 'waiting'
});
}),
'successes': [],
'ndone': 0,
'nerrors': 0
};
if (funcs.length === 0) {
setImmediate(function () { callback(null, rv); });
return (rv);
}
next = function (err, result) {
if (rv['nerrors'] > 0 ||
rv['ndone'] >= rv['operations'].length) {
throw new mod_verror.VError('pipeline callback ' +
'invoked after the pipeline has already ' +
'completed (%j)', rv);
}
var entry = rv['operations'][rv['ndone']++];
mod_assert.equal(entry['status'], 'pending');
entry['status'] = err ? 'fail' : 'ok';
entry['err'] = err;
entry['result'] = result;
if (err)
rv['nerrors']++;
else
rv['successes'].push(result);
if (err || rv['ndone'] == funcs.length) {
callback(err, rv);
} else {
var nextent = rv['operations'][rv['ndone']];
nextent['status'] = 'pending';
/*
* We invoke the next function on the next tick so that
* the caller (stage N) need not worry about the case
* that the next stage (stage N + 1) runs in its own
* context.
*/
setImmediate(function () {
nextent['func'](uarg, next);
});
}
};
rv['operations'][0]['status'] = 'pending';
funcs[0](uarg, next);
return (rv);
}
/*
* Exactly like pipeline, except that the input is specified as a single
* function to invoke on N different inputs (rather than N functions). "args"
* must have the following fields:
*
* func asynchronous function to invoke on each input value
*
* inputs array of input values
*/
function forEachPipeline(args, callback) {
mod_assert.equal(typeof (args), 'object', '"args" must be an object');
mod_assert.equal(typeof (args['func']), 'function',
'"args.func" must be specified and must be a function');
mod_assert.ok(Array.isArray(args['inputs']),
'"args.inputs" must be specified and must be an array');
mod_assert.equal(typeof (callback), 'function',
'callback argument must be specified and must be a function');
var func = args['func'];
var funcs = args['inputs'].map(function (input) {
return (function (_, subcallback) {
return (func(input, subcallback));
});
});
return (pipeline({'funcs': funcs}, callback));
}
/*
* async-compatible "queue" function.
*/
function queue(worker, concurrency)
{
return (new WorkQueue({
'worker': worker,
'concurrency': concurrency
}));
}
function queuev(args)
{
return (new WorkQueue(args));
}
function WorkQueue(args)
{
mod_assert.ok(args.hasOwnProperty('worker'));
mod_assert.equal(typeof (args['worker']), 'function');
mod_assert.ok(args.hasOwnProperty('concurrency'));
mod_assert.equal(typeof (args['concurrency']), 'number');
mod_assert.equal(Math.floor(args['concurrency']), args['concurrency']);
mod_assert.ok(args['concurrency'] > 0);
mod_events.EventEmitter.call(this);
this.nextid = 0;
this.worker = args['worker'];
this.worker_name = args['worker'].name || 'anon';
this.npending = 0;
this.pending = {};
this.queued = [];
this.closed = false;
this.ended = false;
/* user-settable fields inherited from "async" interface */
this.concurrency = args['concurrency'];
this.saturated = undefined;
this.empty = undefined;
this.drain = undefined;
}
mod_util.inherits(WorkQueue, mod_events.EventEmitter);
WorkQueue.prototype.push = function (tasks, callback)
{
if (!Array.isArray(tasks))
return (this.pushOne(tasks, callback));
var wq = this;
return (tasks.map(function (task) {
return (wq.pushOne(task, callback));
}));
};
WorkQueue.prototype.updateConcurrency = function (concurrency)
{
if (this.closed)
throw new mod_verror.VError(
'update concurrency invoked after queue closed');
this.concurrency = concurrency;
this.dispatchNext();
};
WorkQueue.prototype.close = function ()
{
var wq = this;
if (wq.closed)
return;
wq.closed = true;
/*
* If the queue is already empty, just fire the "end" event on the
* next tick.
*/
if (wq.npending === 0 && wq.queued.length === 0) {
setImmediate(function () {
if (!wq.ended) {
wq.ended = true;
wq.emit('end');
}
});
}
};
/* private */
WorkQueue.prototype.pushOne = function (task, callback)
{
if (this.closed)
throw new mod_verror.VError('push invoked after queue closed');
var id = ++this.nextid;
var entry = { 'id': id, 'task': task, 'callback': callback };
this.queued.push(entry);
this.dispatchNext();
return (id);
};
/* private */
WorkQueue.prototype.dispatchNext = function ()
{
var wq = this;
if (wq.npending === 0 && wq.queued.length === 0) {
if (wq.drain)
wq.drain();
wq.emit('drain');
/*
* The queue is closed; emit the final "end"
* event before we come to rest:
*/
if (wq.closed) {
wq.ended = true;
wq.emit('end');
}
} else if (wq.queued.length > 0) {
while (wq.queued.length > 0 && wq.npending < wq.concurrency) {
var next = wq.queued.shift();
wq.dispatch(next);
if (wq.queued.length === 0) {
if (wq.empty)
wq.empty();
wq.emit('empty');
}
}
}
};
WorkQueue.prototype.dispatch = function (entry)
{
var wq = this;
mod_assert.ok(!this.pending.hasOwnProperty(entry['id']));
mod_assert.ok(this.npending < this.concurrency);
mod_assert.ok(!this.ended);
this.npending++;
this.pending[entry['id']] = entry;
if (this.npending === this.concurrency) {
if (this.saturated)
this.saturated();
this.emit('saturated');
}
/*
* We invoke the worker function on the next tick so that callers can
* always assume that the callback is NOT invoked during the call to
* push() even if the queue is not at capacity. It also avoids O(n)
* stack usage when used with synchronous worker functions.
*/
setImmediate(function () {
wq.worker(entry['task'], function (err) {
--wq.npending;
delete (wq.pending[entry['id']]);
if (entry['callback'])
entry['callback'].apply(null, arguments);
wq.dispatchNext();
});
});
};
WorkQueue.prototype.length = function ()
{
return (this.queued.length);
};
/*
* Barriers coordinate multiple concurrent operations.
*/
function barrier(args)
{
return (new Barrier(args));
}
function Barrier(args)
{
mod_assert.ok(!args || !args['nrecent'] ||
typeof (args['nrecent']) == 'number',
'"nrecent" must have type "number"');
mod_events.EventEmitter.call(this);
var nrecent = args && args['nrecent'] ? args['nrecent'] : 10;
if (nrecent > 0) {
this.nrecent = nrecent;
this.recent = [];
}
this.aborted = {};
this.pending = {};
this.scheduled = false;
}
mod_util.inherits(Barrier, mod_events.EventEmitter);
Barrier.prototype.start = function (name)
{
mod_assert.ok(!this.pending.hasOwnProperty(name),
'operation "' + name + '" is already pending');
if (this.aborted.hasOwnProperty(name))
delete this.aborted[name];
this.pending[name] = Date.now();
};
Barrier.prototype.done = function (name)
{
mod_assert.ok(this.pending.hasOwnProperty(name) ||
this.aborted.hasOwnProperty(name),
'operation "' + name + '" is not pending');
if (this.aborted.hasOwnProperty(name))
return;
if (this.recent) {
this.recent.push({
'name': name,
'start': this.pending[name],
'done': Date.now()
});
if (this.recent.length > this.nrecent)
this.recent.shift();
}
delete (this.pending[name]);
/*
* If we executed at least one operation and we're now empty, we should
* emit "drain". But most code doesn't deal well with events being
* processed while they're executing, so we actually schedule this event
* for the next tick.
*
* We use the "scheduled" flag to avoid emitting multiple "drain" events
* on consecutive ticks if the user starts and ends another task during
* this tick.
*/
if (!mod_jsprim.isEmpty(this.pending) || this.scheduled)
return;
this.scheduled = true;
var self = this;
setImmediate(function () {
self.scheduled = false;
/*
* It's also possible that the user has started another task on
* the previous tick, in which case we really shouldn't emit
* "drain".
*/
if (mod_jsprim.isEmpty(self.pending))
self.emit('drain');
});
};
Barrier.prototype.abort = function (err)
{
var self = this;
var now = Date.now();
Object.keys(this.pending).forEach(function (name) {
self.aborted[name] = now;
});
this.pending = {};
this.scheduled = true;
setImmediate(function () {
self.scheduled = false;
self.emit('drain', err);
});
};