mirror of
https://github.com/nodejs/node.git
synced 2025-05-05 22:50:18 +00:00

This checks if any require calls have happened to the same file during the file read. If that was the case, it'll return the same module instead of creating a new instance. PR-URL: https://github.com/nodejs/node/pull/27674 Reviewed-By: Guy Bedford <guybedford@gmail.com>
180 lines
5.8 KiB
JavaScript
180 lines
5.8 KiB
JavaScript
'use strict';
|
|
|
|
/* global WebAssembly */
|
|
|
|
const {
|
|
JSON,
|
|
Object,
|
|
SafeMap,
|
|
StringPrototype
|
|
} = primordials;
|
|
|
|
const { NativeModule } = require('internal/bootstrap/loaders');
|
|
const {
|
|
stripBOM
|
|
} = require('internal/modules/cjs/helpers');
|
|
const CJSModule = require('internal/modules/cjs/loader').Module;
|
|
const internalURLModule = require('internal/url');
|
|
const createDynamicModule = require(
|
|
'internal/modules/esm/create_dynamic_module');
|
|
const fs = require('fs');
|
|
const { fileURLToPath, URL } = require('url');
|
|
const { debuglog } = require('internal/util/debuglog');
|
|
const { promisify } = require('internal/util');
|
|
const esmLoader = require('internal/process/esm_loader');
|
|
const {
|
|
ERR_UNKNOWN_BUILTIN_MODULE
|
|
} = require('internal/errors').codes;
|
|
const readFileAsync = promisify(fs.readFile);
|
|
const JsonParse = JSON.parse;
|
|
|
|
const debug = debuglog('esm');
|
|
|
|
const translators = new SafeMap();
|
|
exports.translators = translators;
|
|
|
|
function initializeImportMeta(meta, { url }) {
|
|
meta.url = url;
|
|
}
|
|
|
|
async function importModuleDynamically(specifier, { url }) {
|
|
const loader = await esmLoader.loaderPromise;
|
|
return loader.import(specifier, url);
|
|
}
|
|
|
|
// Strategy for loading a standard JavaScript module
|
|
translators.set('module', async function moduleStrategy(url) {
|
|
const source = `${await readFileAsync(new URL(url))}`;
|
|
debug(`Translating StandardModule ${url}`);
|
|
const { ModuleWrap, callbackMap } = internalBinding('module_wrap');
|
|
const module = new ModuleWrap(source, url);
|
|
callbackMap.set(module, {
|
|
initializeImportMeta,
|
|
importModuleDynamically,
|
|
});
|
|
return {
|
|
module,
|
|
reflect: undefined,
|
|
};
|
|
});
|
|
|
|
// Strategy for loading a node-style CommonJS module
|
|
const isWindows = process.platform === 'win32';
|
|
const winSepRegEx = /\//g;
|
|
translators.set('commonjs', async function commonjsStrategy(url, isMain) {
|
|
debug(`Translating CJSModule ${url}`);
|
|
const pathname = internalURLModule.fileURLToPath(new URL(url));
|
|
const cached = this.cjsCache.get(url);
|
|
if (cached) {
|
|
this.cjsCache.delete(url);
|
|
return cached;
|
|
}
|
|
const module = CJSModule._cache[
|
|
isWindows ? StringPrototype.replace(pathname, winSepRegEx, '\\') : pathname
|
|
];
|
|
if (module && module.loaded) {
|
|
const exports = module.exports;
|
|
return createDynamicModule([], ['default'], url, (reflect) => {
|
|
reflect.exports.default.set(exports);
|
|
});
|
|
}
|
|
return createDynamicModule([], ['default'], url, () => {
|
|
debug(`Loading CJSModule ${url}`);
|
|
// We don't care about the return val of _load here because Module#load
|
|
// will handle it for us by checking the loader registry and filling the
|
|
// exports like above
|
|
CJSModule._load(pathname, undefined, isMain);
|
|
});
|
|
});
|
|
|
|
// Strategy for loading a node builtin CommonJS module that isn't
|
|
// through normal resolution
|
|
translators.set('builtin', async function builtinStrategy(url) {
|
|
debug(`Translating BuiltinModule ${url}`);
|
|
// Slice 'node:' scheme
|
|
const id = url.slice(5);
|
|
const module = NativeModule.map.get(id);
|
|
if (!module) {
|
|
throw new ERR_UNKNOWN_BUILTIN_MODULE(id);
|
|
}
|
|
module.compileForPublicLoader(true);
|
|
return createDynamicModule(
|
|
[], [...module.exportKeys, 'default'], url, (reflect) => {
|
|
debug(`Loading BuiltinModule ${url}`);
|
|
module.reflect = reflect;
|
|
for (const key of module.exportKeys)
|
|
reflect.exports[key].set(module.exports[key]);
|
|
reflect.exports.default.set(module.exports);
|
|
});
|
|
});
|
|
|
|
// Strategy for loading a JSON file
|
|
translators.set('json', async function jsonStrategy(url) {
|
|
debug(`Translating JSONModule ${url}`);
|
|
debug(`Loading JSONModule ${url}`);
|
|
const pathname = fileURLToPath(url);
|
|
const modulePath = isWindows ?
|
|
StringPrototype.replace(pathname, winSepRegEx, '\\') : pathname;
|
|
let module = CJSModule._cache[modulePath];
|
|
if (module && module.loaded) {
|
|
const exports = module.exports;
|
|
return createDynamicModule([], ['default'], url, (reflect) => {
|
|
reflect.exports.default.set(exports);
|
|
});
|
|
}
|
|
const content = await readFileAsync(pathname, 'utf-8');
|
|
// A require call could have been called on the same file during loading and
|
|
// that resolves synchronously. To make sure we always return the identical
|
|
// export, we have to check again if the module already exists or not.
|
|
module = CJSModule._cache[modulePath];
|
|
if (module && module.loaded) {
|
|
const exports = module.exports;
|
|
return createDynamicModule(['default'], url, (reflect) => {
|
|
reflect.exports.default.set(exports);
|
|
});
|
|
}
|
|
try {
|
|
const exports = JsonParse(stripBOM(content));
|
|
module = {
|
|
exports,
|
|
loaded: true
|
|
};
|
|
} catch (err) {
|
|
// TODO (BridgeAR): We could add a NodeCore error that wraps the JSON
|
|
// parse error instead of just manipulating the original error message.
|
|
// That would allow to add further properties and maybe additional
|
|
// debugging information.
|
|
err.message = pathname + ': ' + err.message;
|
|
throw err;
|
|
}
|
|
CJSModule._cache[modulePath] = module;
|
|
return createDynamicModule([], ['default'], url, (reflect) => {
|
|
debug(`Parsing JSONModule ${url}`);
|
|
reflect.exports.default.set(module.exports);
|
|
});
|
|
});
|
|
|
|
// Strategy for loading a wasm module
|
|
translators.set('wasm', async function(url) {
|
|
const pathname = fileURLToPath(url);
|
|
const buffer = await readFileAsync(pathname);
|
|
debug(`Translating WASMModule ${url}`);
|
|
let compiled;
|
|
try {
|
|
compiled = await WebAssembly.compile(buffer);
|
|
} catch (err) {
|
|
err.message = pathname + ': ' + err.message;
|
|
throw err;
|
|
}
|
|
|
|
const imports =
|
|
WebAssembly.Module.imports(compiled).map(({ module }) => module);
|
|
const exports = WebAssembly.Module.exports(compiled).map(({ name }) => name);
|
|
|
|
return createDynamicModule(imports, exports, url, (reflect) => {
|
|
const { exports } = new WebAssembly.Instance(compiled, reflect.imports);
|
|
for (const expt of Object.keys(exports))
|
|
reflect.exports[expt].set(exports[expt]);
|
|
});
|
|
});
|