index.js
10.5 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
'use strict';
function Kareem() {
this._pres = {};
this._posts = {};
}
Kareem.prototype.execPre = function(name, context, args, callback) {
if (arguments.length === 3) {
callback = args;
args = [];
}
var pres = get(this._pres, name, []);
var numPres = pres.length;
var numAsyncPres = pres.numAsync || 0;
var currentPre = 0;
var asyncPresLeft = numAsyncPres;
var done = false;
var $args = args;
if (!numPres) {
return process.nextTick(function() {
callback(null);
});
}
var next = function() {
if (currentPre >= numPres) {
return;
}
var pre = pres[currentPre];
if (pre.isAsync) {
var args = [
decorateNextFn(_next),
decorateNextFn(function(error) {
if (error) {
if (done) {
return;
}
done = true;
return callback(error);
}
if (--asyncPresLeft === 0 && currentPre >= numPres) {
return callback(null);
}
})
];
callMiddlewareFunction(pre.fn, context, args, args[0]);
} else if (pre.fn.length > 0) {
var args = [decorateNextFn(_next)];
var _args = arguments.length >= 2 ? arguments : [null].concat($args);
for (var i = 1; i < _args.length; ++i) {
args.push(_args[i]);
}
callMiddlewareFunction(pre.fn, context, args, args[0]);
} else {
let error = null;
let maybePromise = null;
try {
maybePromise = pre.fn.call(context);
} catch (err) {
error = err;
}
if (isPromise(maybePromise)) {
maybePromise.then(() => _next(), err => _next(err));
} else {
if (++currentPre >= numPres) {
if (asyncPresLeft > 0) {
// Leave parallel hooks to run
return;
} else {
return process.nextTick(function() {
callback(error);
});
}
}
next(error);
}
}
};
next.apply(null, [null].concat(args));
function _next(error) {
if (error) {
if (done) {
return;
}
done = true;
return callback(error);
}
if (++currentPre >= numPres) {
if (asyncPresLeft > 0) {
// Leave parallel hooks to run
return;
} else {
return callback(null);
}
}
next.apply(context, arguments);
}
};
Kareem.prototype.execPreSync = function(name, context, args) {
var pres = get(this._pres, name, []);
var numPres = pres.length;
for (var i = 0; i < numPres; ++i) {
pres[i].fn.apply(context, args || []);
}
};
Kareem.prototype.execPost = function(name, context, args, options, callback) {
if (arguments.length < 5) {
callback = options;
options = null;
}
var posts = get(this._posts, name, []);
var numPosts = posts.length;
var currentPost = 0;
var firstError = null;
if (options && options.error) {
firstError = options.error;
}
if (!numPosts) {
return process.nextTick(function() {
callback.apply(null, [firstError].concat(args));
});
}
var next = function() {
var post = posts[currentPost];
var numArgs = 0;
var argLength = args.length;
var newArgs = [];
for (var i = 0; i < argLength; ++i) {
numArgs += args[i] && args[i]._kareemIgnore ? 0 : 1;
if (!args[i] || !args[i]._kareemIgnore) {
newArgs.push(args[i]);
}
}
if (firstError) {
if (post.length === numArgs + 2) {
var _cb = decorateNextFn(function(error) {
if (error) {
firstError = error;
}
if (++currentPost >= numPosts) {
return callback.call(null, firstError);
}
next();
});
callMiddlewareFunction(post, context,
[firstError].concat(newArgs).concat([_cb]), _cb);
} else {
if (++currentPost >= numPosts) {
return callback.call(null, firstError);
}
next();
}
} else {
const _cb = decorateNextFn(function(error) {
if (error) {
firstError = error;
return next();
}
if (++currentPost >= numPosts) {
return callback.apply(null, [null].concat(args));
}
next();
});
if (post.length === numArgs + 2) {
// Skip error handlers if no error
if (++currentPost >= numPosts) {
return callback.apply(null, [null].concat(args));
}
return next();
}
if (post.length === numArgs + 1) {
callMiddlewareFunction(post, context, newArgs.concat([_cb]), _cb);
} else {
let error;
let maybePromise;
try {
maybePromise = post.apply(context, newArgs);
} catch (err) {
error = err;
firstError = err;
}
if (isPromise(maybePromise)) {
return maybePromise.then(() => _cb(), err => _cb(err));
}
if (++currentPost >= numPosts) {
return callback.apply(null, [error].concat(args));
}
next(error);
}
}
};
next();
};
Kareem.prototype.execPostSync = function(name, context, args) {
var posts = get(this._posts, name, []);
var numPosts = posts.length;
for (var i = 0; i < numPosts; ++i) {
posts[i].apply(context, args || []);
}
};
Kareem.prototype.createWrapperSync = function(name, fn) {
var kareem = this;
return function syncWrapper() {
kareem.execPreSync(name, this, arguments);
var toReturn = fn.apply(this, arguments);
kareem.execPostSync(name, this, [toReturn]);
return toReturn;
};
}
function _handleWrapError(instance, error, name, context, args, options, callback) {
if (options.useErrorHandlers) {
var _options = { error: error };
return instance.execPost(name, context, args, _options, function(error) {
return typeof callback === 'function' && callback(error);
});
} else {
return typeof callback === 'function' ?
callback(error) :
undefined;
}
}
Kareem.prototype.wrap = function(name, fn, context, args, options) {
var lastArg = (args.length > 0 ? args[args.length - 1] : null);
var argsWithoutCb = typeof lastArg === 'function' ?
args.slice(0, args.length - 1) :
args;
var _this = this;
options = options || {};
this.execPre(name, context, args, function(error) {
if (error) {
var numCallbackParams = options.numCallbackParams || 0;
var errorArgs = options.contextParameter ? [context] : [];
for (var i = errorArgs.length; i < numCallbackParams; ++i) {
errorArgs.push(null);
}
return _handleWrapError(_this, error, name, context, errorArgs,
options, lastArg);
}
var end = (typeof lastArg === 'function' ? args.length - 1 : args.length);
fn.apply(context, args.slice(0, end).concat(_cb));
function _cb() {
var args = arguments;
var argsWithoutError = Array.prototype.slice.call(arguments, 1);
if (options.nullResultByDefault && argsWithoutError.length === 0) {
argsWithoutError.push(null);
}
if (arguments[0]) {
// Assume error
return _handleWrapError(_this, arguments[0], name, context,
argsWithoutError, options, lastArg);
} else {
_this.execPost(name, context, argsWithoutError, function() {
if (arguments[0]) {
return typeof lastArg === 'function' ?
lastArg(arguments[0]) :
undefined;
}
return typeof lastArg === 'function' ?
lastArg.apply(context, arguments) :
undefined;
});
}
}
});
};
Kareem.prototype.createWrapper = function(name, fn, context, options) {
var _this = this;
if (this._pres[name] == null && this._posts[name] == null) {
// Fast path: if there's no hooks for this function, just return the function
return fn;
}
return function() {
var _context = context || this;
var args = Array.prototype.slice.call(arguments);
_this.wrap(name, fn, _context, args, options);
};
};
Kareem.prototype.pre = function(name, isAsync, fn, error, unshift) {
if (typeof arguments[1] !== 'boolean') {
error = fn;
fn = isAsync;
isAsync = false;
}
this._pres[name] = get(this._pres, name, []);
const pres = this._pres[name];
if (isAsync) {
pres.numAsync = pres.numAsync || 0;
++pres.numAsync;
}
if (unshift) {
pres.unshift({ fn: fn, isAsync: isAsync });
} else {
pres.push({ fn: fn, isAsync: isAsync });
}
return this;
};
Kareem.prototype.post = function(name, fn, unshift) {
this._posts[name] = get(this._posts, name, []);
if (unshift) {
this._posts[name].unshift(fn);
} else {
this._posts[name].push(fn);
}
return this;
};
Kareem.prototype.clone = function() {
const n = new Kareem();
for (let key of Object.keys(this._pres)) {
n._pres[key] = this._pres[key].slice();
n._pres[key].numAsync = this._pres[key].numAsync;
}
for (let key of Object.keys(this._posts)) {
n._posts[key] = this._posts[key].slice();
}
return n;
};
Kareem.prototype.merge = function(other) {
var ret = this.clone();
for (let key of Object.keys(other._pres)) {
const sourcePres = get(ret._pres, key, []);
const deduplicated = other._pres[key].
// Deduplicate based on `fn`
filter(p => sourcePres.map(_p => _p.fn).indexOf(p.fn) === -1);
ret._pres[key] = sourcePres.concat(deduplicated);
ret._pres[key].numAsync = get(ret._pres[key], 'numAsync', 0);
ret._pres[key].numAsync += deduplicated.filter(p => p.isAsync).length;
}
for (let key of Object.keys(other._posts)) {
const sourcePosts = get(ret._posts, key, []);
const deduplicated = other._posts[key].
filter(p => sourcePosts.indexOf(p) === -1);
ret._posts[key] = sourcePosts.concat(deduplicated);
}
return ret;
};
function get(obj, key, def) {
if (obj[key] != null) {
return obj[key];
}
return def;
}
function callMiddlewareFunction(fn, context, args, next) {
let maybePromise;
try {
maybePromise = fn.apply(context, args);
} catch (error) {
return next(error);
}
if (isPromise(maybePromise)) {
maybePromise.then(() => next(), err => next(err));
}
}
function isPromise(v) {
return v != null && typeof v.then === 'function';
}
function decorateNextFn(fn) {
var called = false;
var _this = this;
return function() {
// Ensure this function can only be called once
if (called) {
return;
}
called = true;
// Make sure to clear the stack so try/catch doesn't catch errors
// in subsequent middleware
return process.nextTick(() => fn.apply(_this, arguments));
};
}
module.exports = Kareem;