-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodule-cache.js
395 lines (338 loc) · 11.2 KB
/
module-cache.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
const Module = require('module');
const path = require('path');
const semver = require('semver');
// Extend semver.Range to memoize matched versions for speed
class Range extends semver.Range {
constructor() {
super(...arguments);
this.matchedVersions = new Set();
this.unmatchedVersions = new Set();
}
test(version) {
if (this.matchedVersions.has(version)) return true;
if (this.unmatchedVersions.has(version)) return false;
const matches = super.test(...arguments);
if (matches) {
this.matchedVersions.add(version);
} else {
this.unmatchedVersions.add(version);
}
return matches;
}
}
let nativeModules = null;
const cache = {
builtins: {},
debug: false,
dependencies: {},
extensions: {},
folders: {},
ranges: {},
registered: false,
resourcePath: null,
resourcePathWithTrailingSlash: null
};
// isAbsolute is inlined from fs-plus so that fs-plus itself can be required
// from this cache.
let isAbsolute;
if (process.platform === 'win32') {
isAbsolute = pathToCheck =>
pathToCheck &&
(pathToCheck[1] === ':' ||
(pathToCheck[0] === '\\' && pathToCheck[1] === '\\'));
} else {
isAbsolute = pathToCheck => pathToCheck && pathToCheck[0] === '/';
}
const isCorePath = pathToCheck =>
pathToCheck.startsWith(cache.resourcePathWithTrailingSlash);
function loadDependencies(modulePath, rootPath, rootMetadata, moduleCache) {
const fs = require('fs-plus');
for (let childPath of fs.listSync(path.join(modulePath, 'node_modules'))) {
if (path.basename(childPath) === '.bin') continue;
if (
rootPath === modulePath &&
(rootMetadata.packageDependencies &&
rootMetadata.packageDependencies.hasOwnProperty(
path.basename(childPath)
))
) {
continue;
}
const childMetadataPath = path.join(childPath, 'package.json');
if (!fs.isFileSync(childMetadataPath)) continue;
const childMetadata = JSON.parse(fs.readFileSync(childMetadataPath));
if (childMetadata && childMetadata.version) {
var mainPath;
try {
mainPath = require.resolve(childPath);
} catch (error) {
mainPath = null;
}
if (mainPath) {
moduleCache.dependencies.push({
name: childMetadata.name,
version: childMetadata.version,
path: path.relative(rootPath, mainPath)
});
}
loadDependencies(childPath, rootPath, rootMetadata, moduleCache);
}
}
}
function loadFolderCompatibility(
modulePath,
rootPath,
rootMetadata,
moduleCache
) {
const fs = require('fs-plus');
const metadataPath = path.join(modulePath, 'package.json');
if (!fs.isFileSync(metadataPath)) return;
const metadata = JSON.parse(fs.readFileSync(metadataPath));
const dependencies = metadata.dependencies || {};
for (let name in dependencies) {
if (!semver.validRange(dependencies[name])) {
delete dependencies[name];
}
}
const onDirectory = childPath => path.basename(childPath) !== 'node_modules';
const extensions = ['.js', '.coffee', '.json', '.node'];
let paths = {};
function onFile(childPath) {
const needle = path.extname(childPath);
if (extensions.includes(needle)) {
const relativePath = path.relative(rootPath, path.dirname(childPath));
paths[relativePath] = true;
}
}
fs.traverseTreeSync(modulePath, onFile, onDirectory);
paths = Object.keys(paths);
if (paths.length > 0 && Object.keys(dependencies).length > 0) {
moduleCache.folders.push({ paths, dependencies });
}
for (let childPath of fs.listSync(path.join(modulePath, 'node_modules'))) {
if (path.basename(childPath) === '.bin') continue;
if (
rootPath === modulePath &&
(rootMetadata.packageDependencies &&
rootMetadata.packageDependencies.hasOwnProperty(
path.basename(childPath)
))
) {
continue;
}
loadFolderCompatibility(childPath, rootPath, rootMetadata, moduleCache);
}
}
function loadExtensions(modulePath, rootPath, rootMetadata, moduleCache) {
const fs = require('fs-plus');
const extensions = ['.js', '.coffee', '.json', '.node'];
const nodeModulesPath = path.join(rootPath, 'node_modules');
function onFile(filePath) {
filePath = path.relative(rootPath, filePath);
const segments = filePath.split(path.sep);
if (segments.includes('test')) return;
if (segments.includes('tests')) return;
if (segments.includes('spec')) return;
if (segments.includes('specs')) return;
if (
segments.length > 1 &&
!['exports', 'lib', 'node_modules', 'src', 'static', 'vendor'].includes(
segments[0]
)
)
return;
const extension = path.extname(filePath);
if (extensions.includes(extension)) {
if (moduleCache.extensions[extension] == null) {
moduleCache.extensions[extension] = [];
}
moduleCache.extensions[extension].push(filePath);
}
}
function onDirectory(childPath) {
// Don't include extensions from bundled packages
// These are generated and stored in the package's own metadata cache
if (rootMetadata.name === 'atom') {
const parentPath = path.dirname(childPath);
if (parentPath === nodeModulesPath) {
const packageName = path.basename(childPath);
if (
rootMetadata.packageDependencies &&
rootMetadata.packageDependencies.hasOwnProperty(packageName)
)
return false;
}
}
return true;
}
fs.traverseTreeSync(rootPath, onFile, onDirectory);
}
function satisfies(version, rawRange) {
let parsedRange;
if (!(parsedRange = cache.ranges[rawRange])) {
parsedRange = new Range(rawRange);
cache.ranges[rawRange] = parsedRange;
}
return parsedRange.test(version);
}
function resolveFilePath(relativePath, parentModule) {
if (!relativePath) return;
if (!(parentModule && parentModule.filename)) return;
if (relativePath[0] !== '.' && !isAbsolute(relativePath)) return;
const resolvedPath = path.resolve(
path.dirname(parentModule.filename),
relativePath
);
if (!isCorePath(resolvedPath)) return;
let extension = path.extname(resolvedPath);
if (extension) {
if (
cache.extensions[extension] &&
cache.extensions[extension].has(resolvedPath)
)
return resolvedPath;
} else {
for (extension in cache.extensions) {
const paths = cache.extensions[extension];
const resolvedPathWithExtension = `${resolvedPath}${extension}`;
if (paths.has(resolvedPathWithExtension)) {
return resolvedPathWithExtension;
}
}
}
}
function resolveModulePath(relativePath, parentModule) {
if (!relativePath) return;
if (!(parentModule && parentModule.filename)) return;
if (!nativeModules) nativeModules = process.binding('natives');
if (nativeModules.hasOwnProperty(relativePath)) return;
if (relativePath[0] === '.') return;
if (isAbsolute(relativePath)) return;
const folderPath = path.dirname(parentModule.filename);
const range =
cache.folders[folderPath] && cache.folders[folderPath][relativePath];
if (!range) {
const builtinPath = cache.builtins[relativePath];
if (builtinPath) {
return builtinPath;
} else {
return;
}
}
const candidates = cache.dependencies[relativePath];
if (candidates == null) return;
for (let version in candidates) {
const resolvedPath = candidates[version];
if (Module._cache[resolvedPath] || isCorePath(resolvedPath)) {
if (satisfies(version, range)) return resolvedPath;
}
}
}
function registerBuiltins(devMode) {
if (
devMode ||
!cache.resourcePath.startsWith(`${process.resourcesPath}${path.sep}`)
) {
const fs = require('fs-plus');
const atomJsPath = path.join(cache.resourcePath, 'exports', 'atom.js');
if (fs.isFileSync(atomJsPath)) {
cache.builtins.atom = atomJsPath;
}
}
if (cache.builtins.atom == null) {
cache.builtins.atom = path.join(cache.resourcePath, 'exports', 'atom.js');
}
const electronAsarRoot = path.join(process.resourcesPath, 'electron.asar');
const commonRoot = path.join(electronAsarRoot, 'common', 'api');
const commonBuiltins = [
'callbacks-registry',
'clipboard',
'crash-reporter',
'shell'
];
for (const builtin of commonBuiltins) {
cache.builtins[builtin] = path.join(commonRoot, `${builtin}.js`);
}
const rendererRoot = path.join(electronAsarRoot, 'renderer', 'api');
const rendererBuiltins = ['ipc-renderer', 'remote', 'screen'];
for (const builtin of rendererBuiltins) {
cache.builtins[builtin] = path.join(rendererRoot, `${builtin}.js`);
}
}
exports.create = function(modulePath) {
const fs = require('fs-plus');
modulePath = fs.realpathSync(modulePath);
const metadataPath = path.join(modulePath, 'package.json');
const metadata = JSON.parse(fs.readFileSync(metadataPath));
const moduleCache = {
version: 1,
dependencies: [],
extensions: {},
folders: []
};
loadDependencies(modulePath, modulePath, metadata, moduleCache);
loadFolderCompatibility(modulePath, modulePath, metadata, moduleCache);
loadExtensions(modulePath, modulePath, metadata, moduleCache);
metadata._atomModuleCache = moduleCache;
fs.writeFileSync(metadataPath, JSON.stringify(metadata, null, 2));
};
exports.register = function({ resourcePath, devMode } = {}) {
if (cache.registered) return;
const originalResolveFilename = Module._resolveFilename;
Module._resolveFilename = function(relativePath, parentModule) {
let resolvedPath = resolveModulePath(relativePath, parentModule);
if (!resolvedPath) {
resolvedPath = resolveFilePath(relativePath, parentModule);
}
return resolvedPath || originalResolveFilename(relativePath, parentModule);
};
cache.registered = true;
cache.resourcePath = resourcePath;
cache.resourcePathWithTrailingSlash = `${resourcePath}${path.sep}`;
registerBuiltins(devMode);
};
exports.add = function(directoryPath, metadata) {
// path.join isn't used in this function for speed since path.join calls
// path.normalize and all the paths are already normalized here.
if (metadata == null) {
try {
metadata = require(`${directoryPath}${path.sep}package.json`);
} catch (error) {
return;
}
}
const cacheToAdd = metadata && metadata._atomModuleCache;
if (!cacheToAdd) return;
for (const dependency of cacheToAdd.dependencies || []) {
if (!cache.dependencies[dependency.name]) {
cache.dependencies[dependency.name] = {};
}
if (!cache.dependencies[dependency.name][dependency.version]) {
cache.dependencies[dependency.name][
dependency.version
] = `${directoryPath}${path.sep}${dependency.path}`;
}
}
for (const entry of cacheToAdd.folders || []) {
for (const folderPath of entry.paths) {
if (folderPath) {
cache.folders[`${directoryPath}${path.sep}${folderPath}`] =
entry.dependencies;
} else {
cache.folders[directoryPath] = entry.dependencies;
}
}
}
for (const extension in cacheToAdd.extensions) {
const paths = cacheToAdd.extensions[extension];
if (!cache.extensions[extension]) {
cache.extensions[extension] = new Set();
}
for (let filePath of paths) {
cache.extensions[extension].add(`${directoryPath}${path.sep}${filePath}`);
}
}
};
exports.cache = cache;
exports.Range = Range;