-
Notifications
You must be signed in to change notification settings - Fork 29.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PR-URL: #16874 Reviewed-By: Guy Bedford <[email protected]> Reviewed-By: Bradley Farias <[email protected]>
- Loading branch information
1 parent
35471bc
commit afc87c2
Showing
14 changed files
with
271 additions
and
275 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
'use strict'; | ||
|
||
const { URL } = require('url'); | ||
const CJSmodule = require('module'); | ||
const internalURLModule = require('internal/url'); | ||
const internalFS = require('internal/fs'); | ||
const NativeModule = require('native_module'); | ||
const { extname } = require('path'); | ||
const { realpathSync } = require('fs'); | ||
const preserveSymlinks = !!process.binding('config').preserveSymlinks; | ||
const errors = require('internal/errors'); | ||
const { resolve: moduleWrapResolve } = internalBinding('module_wrap'); | ||
const StringStartsWith = Function.call.bind(String.prototype.startsWith); | ||
|
||
const realpathCache = new Map(); | ||
|
||
function search(target, base) { | ||
if (base === undefined) { | ||
// We cannot search without a base. | ||
throw new errors.Error('ERR_MISSING_MODULE', target); | ||
} | ||
try { | ||
return moduleWrapResolve(target, base); | ||
} catch (e) { | ||
e.stack; // cause V8 to generate stack before rethrow | ||
let error = e; | ||
try { | ||
const questionedBase = new URL(base); | ||
const tmpMod = new CJSmodule(questionedBase.pathname, null); | ||
tmpMod.paths = CJSmodule._nodeModulePaths( | ||
new URL('./', questionedBase).pathname); | ||
const found = CJSmodule._resolveFilename(target, tmpMod); | ||
error = new errors.Error('ERR_MODULE_RESOLUTION_LEGACY', target, | ||
base, found); | ||
} catch (problemChecking) { | ||
// ignore | ||
} | ||
throw error; | ||
} | ||
} | ||
|
||
const extensionFormatMap = { | ||
__proto__: null, | ||
'.mjs': 'esm', | ||
'.json': 'json', | ||
'.node': 'addon', | ||
'.js': 'commonjs' | ||
}; | ||
|
||
function resolve(specifier, parentURL) { | ||
if (NativeModule.nonInternalExists(specifier)) { | ||
return { | ||
url: specifier, | ||
format: 'builtin' | ||
}; | ||
} | ||
|
||
let url; | ||
try { | ||
url = search(specifier, parentURL); | ||
} catch (e) { | ||
if (typeof e.message === 'string' && | ||
StringStartsWith(e.message, 'Cannot find module')) | ||
e.code = 'MODULE_NOT_FOUND'; | ||
throw e; | ||
} | ||
|
||
if (!preserveSymlinks) { | ||
const real = realpathSync(internalURLModule.getPathFromURL(url), { | ||
[internalFS.realpathCacheKey]: realpathCache | ||
}); | ||
const old = url; | ||
url = internalURLModule.getURLFromFilePath(real); | ||
url.search = old.search; | ||
url.hash = old.hash; | ||
} | ||
|
||
const ext = extname(url.pathname); | ||
return { url: `${url}`, format: extensionFormatMap[ext] || ext }; | ||
} | ||
|
||
module.exports = resolve; | ||
// exported for tests | ||
module.exports.search = search; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.