-
Notifications
You must be signed in to change notification settings - Fork 24
/
install.js
556 lines (466 loc) · 19.4 KB
/
install.js
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
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
makeInstaller = function (options) {
"use strict";
options = options || {};
// These file extensions will be appended to required module identifiers
// if they do not exactly match an installed module.
var defaultExtensions = options.extensions || [".js", ".json"];
// If defined, the options.fallback function will be called when no
// installed module is found for a required module identifier. Often
// options.fallback will be implemented in terms of the native Node
// require function, which has the ability to load binary modules.
var fallback = options.fallback;
// List of fields to look for in package.json files to determine the
// main entry module of the package. The first field listed here whose
// value is a string will be used to resolve the entry module.
var mainFields = options.mainFields ||
// If options.mainFields is absent and options.browser is truthy,
// package resolution will prefer the "browser" field of package.json
// files to the "main" field. Note that this only supports
// string-valued "browser" fields for now, though in the future it
// might make sense to support the object version, a la browserify.
(options.browser ? ["browser", "main"] : ["main"]);
var hasOwn = {}.hasOwnProperty;
function strictHasOwn(obj, key) {
return isObject(obj) && isString(key) && hasOwn.call(obj, key);
}
// Cache for looking up File objects given absolute module identifiers.
// Invariants:
// filesByModuleId[module.id] === fileAppendId(root, module.id)
// filesByModuleId[module.id].module === module
var filesByModuleId = {};
// The file object representing the root directory of the installed
// module tree.
var root = new File("/", new File("/.."));
var rootRequire = makeRequire(root);
// Merges the given tree of directories and module factory functions
// into the tree of installed modules and returns a require function
// that behaves as if called from a module in the root directory.
function install(tree, options) {
if (isObject(tree)) {
fileMergeContents(root, tree, options);
}
return rootRequire;
}
// Replace this function to enable Module.prototype.prefetch.
install.fetch = function (ids) {
throw new Error("fetch not implemented");
};
// This constructor will be used to instantiate the module objects
// passed to module factory functions (i.e. the third argument after
// require and exports), and is exposed as install.Module in case the
// caller of makeInstaller wishes to modify Module.prototype.
function Module(id) {
this.id = id;
// The Node implementation of module.children unfortunately includes
// only those child modules that were imported for the first time by
// this parent module (i.e., child.parent === this).
this.children = [];
// This object is an install.js extension that includes all child
// modules imported by this module, even if this module is not the
// first to import them.
this.childrenById = {};
}
// Used to keep module.prefetch promise resolutions well-ordered.
var lastPrefetchPromise;
// May be shared by multiple sequential calls to module.prefetch.
// Initialized to {} only when necessary.
var missing;
Module.prototype.prefetch = function (id) {
var module = this;
var parentFile = getOwn(filesByModuleId, module.id);
lastPrefetchPromise = lastPrefetchPromise || Promise.resolve();
var previousPromise = lastPrefetchPromise;
function walk(module) {
var file = getOwn(filesByModuleId, module.id);
if (fileIsDynamic(file) && ! file.pending) {
file.pending = true;
missing = missing || {};
// These are the data that will be exposed to the install.fetch
// callback, so it's worth documenting each item with a comment.
missing[module.id] = {
// The CommonJS module object that will be exposed to this
// dynamic module when it is evaluated. Note that install.fetch
// could decide to populate module.exports directly, instead of
// fetching anything. In that case, install.fetch should omit
// this module from the tree that it produces.
module: file.module,
// List of module identifier strings imported by this module.
// Note that the missing object already contains all available
// dependencies (including transitive dependencies), so
// install.fetch should not need to traverse these dependencies
// in most cases; however, they may be useful for other reasons.
// Though the strings are unique, note that two different
// strings could resolve to the same module.
deps: Object.keys(file.deps),
// The options (if any) that were passed as the second argument
// to the install(tree, options) function when this stub was
// first registered. Typically contains options.extensions, but
// could contain any information appropriate for the entire tree
// as originally installed. These options will be automatically
// inherited by the newly fetched modules, so install.fetch
// should not need to modify them.
options: file.options,
// Any stub data included in the array notation from the
// original entry for this dynamic module. Typically contains
// "main" and/or "browser" fields for package.json files, and is
// otherwise undefined.
stub: file.stub
};
each(file.deps, function (parentId, id) {
fileResolve(file, id);
});
each(module.childrenById, walk);
}
}
return lastPrefetchPromise = new Promise(function (resolve) {
var absChildId = module.resolve(id);
each(module.childrenById, walk);
resolve(absChildId);
}).then(function (absChildId) {
// Grab the current missing object and fetch its contents.
var toBeFetched = missing;
missing = null;
function clearPending() {
if (toBeFetched) {
Object.keys(toBeFetched).forEach(function (id) {
getOwn(filesByModuleId, id).pending = false;
});
}
}
return new Promise(function (resolve) {
// The install.fetch function takes an object mapping missing
// dynamic module identifiers to options objects, and should
// return a Promise that resolves to a module tree that can be
// installed. As an optimization, if there were no missing dynamic
// modules, then we can skip calling install.fetch entirely.
resolve(toBeFetched && install.fetch(toBeFetched));
}).then(function (tree) {
function both() {
install(tree);
clearPending();
return absChildId;
}
// Although we want multiple install.fetch calls to run in
// parallel, it is important that the promises returned by
// module.prefetch are resolved in the same order as the original
// calls to module.prefetch, because previous fetches may include
// modules assumed to exist by more recent module.prefetch calls.
// Whether previousPromise was resolved or rejected, carry on with
// the installation regardless.
return previousPromise.then(both, both);
}, function (error) {
// Fixes https://github.com/meteor/meteor/issues/10182.
clearPending();
throw error;
});
});
};
install.Module = Module;
function getOwn(obj, key) {
return strictHasOwn(obj, key) && obj[key];
}
function isObject(value) {
return value !== null && typeof value === "object";
}
function isFunction(value) {
return typeof value === "function";
}
function isString(value) {
return typeof value === "string";
}
function makeMissingError(id) {
return new Error("Cannot find module '" + id + "'");
}
Module.prototype.resolve = function (id) {
var file = fileResolve(filesByModuleId[this.id], id);
if (file) return file.module.id;
var error = makeMissingError(id);
if (fallback && isFunction(fallback.resolve)) {
return fallback.resolve(id, this.id, error);
}
throw error;
};
Module.prototype.require = function require(id) {
var result = fileResolve(filesByModuleId[this.id], id);
if (result) {
return fileEvaluate(result, this);
}
var error = makeMissingError(id);
if (isFunction(fallback)) {
return fallback(
id, // The missing module identifier.
this.id, // ID of the parent module.
error // The error we would have thrown.
);
}
throw error;
};
function makeRequire(file) {
var module = file.module;
function require(id) {
return module.require(id);
}
require.extensions = fileGetExtensions(file).slice(0);
require.resolve = function resolve(id) {
return module.resolve(id);
};
return require;
}
// File objects represent either directories or modules that have been
// installed. When a `File` respresents a directory, its `.contents`
// property is an object containing the names of the files (or
// directories) that it contains. When a `File` represents a module, its
// `.contents` property is a function that can be invoked with the
// appropriate `(require, exports, module)` arguments to evaluate the
// module. If the `.contents` property is a string, that string will be
// resolved as a module identifier, and the exports of the resulting
// module will provide the exports of the original file. The `.parent`
// property of a File is either a directory `File` or `null`. Note that
// a child may claim another `File` as its parent even if the parent
// does not have an entry for that child in its `.contents` object.
// This is important for implementing anonymous files, and preventing
// child modules from using `../relative/identifier` syntax to examine
// unrelated modules.
function File(moduleId, parent) {
var file = this;
// Link to the parent file.
file.parent = parent = parent || null;
// The module object for this File, which will eventually boast an
// .exports property when/if the file is evaluated.
file.module = new Module(moduleId);
filesByModuleId[moduleId] = file;
// The .contents of the file can be either (1) an object, if the file
// represents a directory containing other files; (2) a factory
// function, if the file represents a module that can be imported; (3)
// a string, if the file is an alias for another file; or (4) null, if
// the file's contents are not (yet) available.
file.contents = null;
// Set of module identifiers imported by this module. Note that this
// set is not necessarily complete, so don't rely on it unless you
// know what you're doing.
file.deps = {};
}
function fileEvaluate(file, parentModule) {
var module = file.module;
if (! strictHasOwn(module, "exports")) {
var contents = file.contents;
if (! contents) {
// If this file was installed with array notation, and the array
// contained one or more objects but no functions, then the combined
// properties of the objects are treated as a temporary stub for
// file.module.exports. This is particularly important for partial
// package.json modules, so that the resolution logic can know the
// value of the "main" and/or "browser" fields, at least, even if
// the rest of the package.json file is not (yet) available.
if (file.stub) {
return file.stub;
}
throw makeMissingError(module.id);
}
if (parentModule) {
module.parent = parentModule;
var children = parentModule.children;
if (Array.isArray(children)) {
children.push(module);
}
}
contents(
makeRequire(file),
// If the file had a .stub, reuse the same object for exports.
module.exports = file.stub || {},
module,
file.module.id,
file.parent.module.id
);
module.loaded = true;
}
// The module.runModuleSetters method will be deprecated in favor of
// just module.runSetters: https://github.com/benjamn/reify/pull/160
var runSetters = module.runSetters || module.runModuleSetters;
if (isFunction(runSetters)) {
runSetters.call(module);
}
return module.exports;
}
function fileIsDirectory(file) {
return file && isObject(file.contents);
}
function fileIsDynamic(file) {
return file && file.contents === null;
}
function fileMergeContents(file, contents, options) {
if (Array.isArray(contents)) {
contents.forEach(function (item) {
if (isString(item)) {
file.deps[item] = file.module.id;
} else if (isFunction(item)) {
contents = item;
} else if (isObject(item)) {
file.stub = file.stub || {};
each(item, function (value, key) {
file.stub[key] = value;
});
}
});
if (! isFunction(contents)) {
// If the array did not contain a function, merge nothing.
contents = null;
}
} else if (! isFunction(contents) &&
! isString(contents) &&
! isObject(contents)) {
// If contents is neither an array nor a function nor a string nor
// an object, just give up and merge nothing.
contents = null;
}
if (contents) {
file.contents = file.contents || (isObject(contents) ? {} : contents);
if (isObject(contents) && fileIsDirectory(file)) {
each(contents, function (value, key) {
if (key === "..") {
child = file.parent;
} else {
var child = getOwn(file.contents, key);
if (! child) {
child = file.contents[key] = new File(
file.module.id.replace(/\/*$/, "/") + key,
file
);
child.options = options;
}
}
fileMergeContents(child, value, options);
});
}
}
}
function each(obj, callback, context) {
Object.keys(obj).forEach(function (key) {
callback.call(this, obj[key], key);
}, context);
}
function fileGetExtensions(file) {
return file.options
&& file.options.extensions
|| defaultExtensions;
}
function fileAppendIdPart(file, part, extensions) {
// Always append relative to a directory.
while (file && ! fileIsDirectory(file)) {
file = file.parent;
}
if (! file || ! part || part === ".") {
return file;
}
if (part === "..") {
return file.parent;
}
var exactChild = getOwn(file.contents, part);
// Only consider multiple file extensions if this part is the last
// part of a module identifier and not equal to `.` or `..`, and there
// was no exact match or the exact match was a directory.
if (extensions && (! exactChild || fileIsDirectory(exactChild))) {
for (var e = 0; e < extensions.length; ++e) {
var child = getOwn(file.contents, part + extensions[e]);
if (child && ! fileIsDirectory(child)) {
return child;
}
}
}
return exactChild;
}
function fileAppendId(file, id, extensions) {
var parts = id.split("/");
// Use `Array.prototype.every` to terminate iteration early if
// `fileAppendIdPart` returns a falsy value.
parts.every(function (part, i) {
return file = i < parts.length - 1
? fileAppendIdPart(file, part)
: fileAppendIdPart(file, part, extensions);
});
return file;
}
function recordChild(parentModule, childFile) {
var childModule = childFile && childFile.module;
if (parentModule && childModule) {
parentModule.childrenById[childModule.id] = childModule;
}
}
function fileResolve(file, id, parentModule, seenDirFiles) {
var parentModule = parentModule || file.module;
var extensions = fileGetExtensions(file);
file =
// Absolute module identifiers (i.e. those that begin with a `/`
// character) are interpreted relative to the root directory, which
// is a slight deviation from Node, which has access to the entire
// file system.
id.charAt(0) === "/" ? fileAppendId(root, id, extensions) :
// Relative module identifiers are interpreted relative to the
// current file, naturally.
id.charAt(0) === "." ? fileAppendId(file, id, extensions) :
// Top-level module identifiers are interpreted as referring to
// packages in `node_modules` directories.
nodeModulesLookup(file, id, extensions);
// If the identifier resolves to a directory, we use the same logic as
// Node to find an `index.js` or `package.json` file to evaluate.
while (fileIsDirectory(file)) {
seenDirFiles = seenDirFiles || [];
// If the "main" field of a `package.json` file resolves to a
// directory we've already considered, then we should not attempt to
// read the same `package.json` file again. Using an array as a set
// is acceptable here because the number of directories to consider
// is rarely greater than 1 or 2. Also, using indexOf allows us to
// store File objects instead of strings.
if (seenDirFiles.indexOf(file) < 0) {
seenDirFiles.push(file);
var pkgJsonFile = fileAppendIdPart(file, "package.json");
var pkg = pkgJsonFile && fileEvaluate(pkgJsonFile, parentModule);
var mainFile, resolved = pkg && mainFields.some(function (name) {
var main = pkg[name];
if (isString(main)) {
// The "main" field of package.json does not have to begin
// with ./ to be considered relative, so first we try
// simply appending it to the directory path before
// falling back to a full fileResolve, which might return
// a package from a node_modules directory.
return mainFile = fileAppendId(file, main, extensions) ||
fileResolve(file, main, parentModule, seenDirFiles);
}
});
if (resolved && mainFile) {
file = mainFile;
recordChild(parentModule, pkgJsonFile);
// The fileAppendId call above may have returned a directory,
// so continue the loop to make sure we resolve it to a
// non-directory file.
continue;
}
}
// If we didn't find a `package.json` file, or it didn't have a
// resolvable `.main` property, the only possibility left to
// consider is that this directory contains an `index.js` module.
// This assignment almost always terminates the while loop, because
// there's very little chance `fileIsDirectory(file)` will be true
// for `fileAppendIdPart(file, "index", extensions)`. However, in
// principle it is remotely possible that a file called `index.js`
// could be a directory instead of a file.
file = fileAppendIdPart(file, "index", extensions);
}
if (file && isString(file.contents)) {
file = fileResolve(file, file.contents, parentModule, seenDirFiles);
}
recordChild(parentModule, file);
return file;
};
function nodeModulesLookup(file, id, extensions) {
for (var resolved; file && ! resolved; file = file.parent) {
resolved = fileIsDirectory(file) &&
fileAppendId(file, "node_modules/" + id, extensions);
}
return resolved;
}
return install;
};
if (typeof exports === "object") {
exports.makeInstaller = makeInstaller;
}