-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
364 lines (307 loc) · 7.48 KB
/
Copy pathindex.js
File metadata and controls
364 lines (307 loc) · 7.48 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
'use strict';
var Module = require('module');
var hooks = Object.create(null);
var interceptors = [];
var moduleInterceptors = {};
/**
* The `barney` module itself.
* @typedef {object} barney
*/
/**
* A module interceptor function. It accepts the same params as the original
* loader function.
* @see https://github.com/joyent/node/blob/master/lib/module.js#L275
* @typedef {function(request, parent, isMain)} Interceptor
*/
/**
* Original loader
* @private
*/
var originalLoadMethod = Module._load;
/**
* Hooked loader.
*
* @see https://github.com/joyent/node/blob/master/lib/module.js#L275
* @param request
* @param parent
* @param isMain
* @returns {*}
* @private
*/
function hookedLoadMethod(request/*, parent, isMain*/) {
var args = arguments;
var resolved = resolve(request);
return intercept(interceptors, args) ||
intercept(moduleInterceptors[resolved], args) ||
hooks[resolved] ||
originalLoadMethod.apply(Module, args);
}
/**
* A generic method for adding hooks and interceptors:
*
* Adds a generic interceptor that will be triggered in every call to
* `require()`.
*
* @param {Interceptor} module
* @returns {barney}
*
* @throws {TypeError} If an invalid interceptor is provided.
*
* @returns {barney} Returns the `barney` module itself.
*
*
* @also
*
*
* Adds a hook to a specific module.
*
* @param {string} module
* @param {*} value
*
* @throws {TypeError} If an invalid module name is provided.
*
* @returns {barney} Returns the `barney` module itself.
*
*
* @also
*
*
* Adds an interceptor to a specific module.
*
* @param {string} module
* @param {Interceptor} value
* @param {boolean} cache Cache must be **EXPLICITLY** set to `false`.
*
* @throws {TypeError} If an invalid module name is provided.
* @throws {TypeError} if an invalid interceptor is provided.
*
* @returns {barney} Returns the `barney` module itself.
*/
exports.use = function (module, value, cache) {
console.warn(
'barney.use() is deprecated. ' +
'Use .hook() and .intercept() instead.'
);
if (typeof module === 'function') {
value = module;
module = null;
}
if (arguments.length < 3) {
cache = true;
}
if (module) {
if (typeof value === 'function' && !cache) {
exports.intercept(module, value);
} else {
exports.hook(module, value);
}
} else {
exports.intercept(value);
}
return exports;
};
/**
* Hooks into the `require()` function.
* @returns {barney} Returns the `barney` module itself.
*
* @also
*
* Adds a hook to the given module.
*
* @param {string} module
* @param {*} value The value to be returned when `require`-ing the module.
* Beware that returning a falsy value will cause the hook to be ignored.
*
* @returns {barney} Returns the `barney` module itself.
*/
exports.hook = function (module, value) {
if (!arguments.length) {
// Hook into `require()`
Module._load = hookedLoadMethod;
} else {
if (typeof module !== 'string') {
throw new TypeError('Invalid module');
}
hooks[resolve(module)] = value;
}
return exports;
};
/**
* Adds a generic interceptor (called by every call to `require()`).
*
* @param {Interceptor} interceptor
* @param {number} [index] Index at which the interceptor should be added.
*
* @throws {TypeError} If an invalid interceptor is provided
*
* @returns {barney}
*
*
* @also
*
*
* Adds an interceptor for a specific module.
*
* @param {string} module
* @param {Interceptor} interceptor
* @param {number} [index] Index at which the interceptor should be added.
*
* @throws {TypeError} If an invalid module is provided.
* @throws {TypeError} If an invalid interceptor is provided.
*
* @returns {barney}
*/
exports.intercept = function (module, interceptor, index) {
if (arguments.length < 3 && typeof module === 'function') {
index = interceptor;
interceptor = module;
module = null;
}
if (typeof interceptor !== 'function') {
throw new TypeError('Invalid interceptor');
}
if (module) {
addModuleInterceptor(module, interceptor, index);
} else {
addInterceptor(interceptor, index);
}
return exports;
};
/**
* Removes all hooks and interceptors.
* @returns {barney}
*
* @also
*
* Removes all hooks and interceptors for a specific module.
*
* @param {string} module
* @returns {barney}
*/
exports.reset = function (module) {
var resolved;
if (module) {
resolved = resolve(module);
delete hooks[resolved];
delete moduleInterceptors[resolved];
} else {
hooks = {};
interceptors = [];
moduleInterceptors = {};
}
return exports;
};
/**
* Deactivates the barney module. This does **not** remove hooks nor
* interceptors, it just restores the original loader function.
* @see {@link .reset}
* @see {@link .hook}
* @returns {barney}
*/
exports.restore = function () {
Module._load = originalLoadMethod;
return exports;
};
/**
* @alias .restore
*/
exports.unhook = exports.restore;
/**
* Removes the cached module value from node's cache.
* @param module
* @returns {barney}
*/
exports.unload = function (module) {
delete require.cache[resolve(module)];
return exports;
};
/**
* Checks if barney is active.
* @returns {boolean}
*/
exports.isActive = function () {
return Module._load === hookedLoadMethod;
};
/**
* Throws a `module not found` error. Just a helper for simulating missing
* modules, e.g.:
*
* barney.intercept('foo', barney.notFound);
*
* @throws {Error} A `MODULE_NOT_FOUND` error.
*
* @also
*
* If called with a single argument, adds an interceptor to the given module
* which will throw a `MODULE_NOT_FOUND` error like the one thrown by the
* original `require()`.
*
* @params {string} module The missing module.
* @returns {barney} The barney module itself.
*/
exports.notFound = function (module) {
if (arguments.length === 1 && typeof module === 'string') {
exports.intercept(module, exports.notFound);
return exports;
}
var err = new Error('Module not found');
err.code = 'MODULE_NOT_FOUND';
throw err;
};
exports.require = function (request) {
return originalLoadMethod.call(Module, request, module.parent, false);
};
exports.skip = exports.require;
exports.hook();
// HELPERS /////////////////////////////////////////////////////////////////////
/** @private */
function addModuleInterceptor(module, interceptor, index) {
var resolved = resolve(module);
var interceptors = moduleInterceptors[resolved];
if (!interceptors) {
interceptors = moduleInterceptors[resolved] = [];
}
addInterceptor(interceptors, interceptor, index);
}
/** @private */
function addInterceptor(list, interceptor, index) {
if (typeof list === 'function') {
index = interceptor;
interceptor = list;
list = null;
}
list = list || interceptors;
if (list.indexOf(interceptor) === -1) {
if (index || index === 0) {
list.splice(index, 0, interceptor);
} else {
list.push(interceptor);
}
}
}
/** @private */
function intercept(list, args) {
var i, len, val;
if (list) {
len = list.length;
for (i = 0; i < len; i += 1) {
val = list[i].apply(null, args);
if (val) { return val; }
}
}
}
/** @private */
function resolve(module) {
try {
return require.resolve(module);
} catch (err) {
// As long as `module` is a string, this should be the only
// error thrown by `require.resolve()`
/* istanbul ignore else */
if (err.code === 'MODULE_NOT_FOUND') {
return module;
} else {
throw err;
}
}
}