Skip to content

Commit 1fe39f0

Browse files
committed
module: disable cjs snapshotting into esm loader
PR-URL: #34467 Reviewed-By: Bradley Farias <[email protected]> Reviewed-By: Geoffrey Booth <[email protected]>
1 parent 15333ad commit 1fe39f0

File tree

4 files changed

+19
-55
lines changed

4 files changed

+19
-55
lines changed

lib/internal/modules/cjs/loader.js

+2-30
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ const {
3232
ArrayPrototypeJoin,
3333
Error,
3434
JSONParse,
35-
Map,
3635
Number,
3736
ObjectCreate,
3837
ObjectDefineProperty,
@@ -113,8 +112,6 @@ const {
113112
} = require('internal/util/types');
114113

115114
const asyncESM = require('internal/process/esm_loader');
116-
const ModuleJob = require('internal/modules/esm/module_job');
117-
const { ModuleWrap, kInstantiated } = internalBinding('module_wrap');
118115
const {
119116
encodedSepRegEx,
120117
packageInternalResolve
@@ -374,7 +371,7 @@ function tryPackage(requestPath, exts, isMain, originalPath) {
374371
// In order to minimize unnecessary lstat() calls,
375372
// this cache is a list of known-real paths.
376373
// Set to an empty Map to reset.
377-
const realpathCache = new Map();
374+
const realpathCache = new SafeMap();
378375

379376
// Check if the file exists and is not a directory
380377
// if using --preserve-symlinks and isMain is false,
@@ -1118,31 +1115,6 @@ Module.prototype.load = function(filename) {
11181115
}
11191116
Module._extensions[extension](this, filename);
11201117
this.loaded = true;
1121-
1122-
const ESMLoader = asyncESM.ESMLoader;
1123-
const url = `${pathToFileURL(filename)}`;
1124-
const module = ESMLoader.moduleMap.get(url);
1125-
// Create module entry at load time to snapshot exports correctly
1126-
const exports = this.exports;
1127-
// Called from cjs translator
1128-
if (module !== undefined && module.module !== undefined) {
1129-
if (module.module.getStatus() >= kInstantiated)
1130-
module.module.setExport('default', exports);
1131-
} else {
1132-
// Preemptively cache
1133-
// We use a function to defer promise creation for async hooks.
1134-
ESMLoader.moduleMap.set(
1135-
url,
1136-
// Module job creation will start promises.
1137-
// We make it a function to lazily trigger those promises
1138-
// for async hooks compatibility.
1139-
() => new ModuleJob(ESMLoader, url, () =>
1140-
new ModuleWrap(url, undefined, ['default'], function() {
1141-
this.setExport('default', exports);
1142-
})
1143-
, false /* isMain */, false /* inspectBrk */)
1144-
);
1145-
}
11461118
};
11471119

11481120

@@ -1262,7 +1234,7 @@ Module.prototype._compile = function(content, filename) {
12621234
const exports = this.exports;
12631235
const thisValue = exports;
12641236
const module = this;
1265-
if (requireDepth === 0) statCache = new Map();
1237+
if (requireDepth === 0) statCache = new SafeMap();
12661238
if (inspectorWrapper) {
12671239
result = inspectorWrapper(compiledWrapper, thisValue, exports,
12681240
require, module, filename, dirname);

lib/internal/modules/esm/loader.js

+1-5
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@ require('internal/modules/cjs/loader');
55

66
const {
77
FunctionPrototypeBind,
8-
ObjectSetPrototypeOf,
9-
SafeMap,
8+
ObjectSetPrototypeOf
109
} = primordials;
1110

1211
const {
@@ -46,9 +45,6 @@ class Loader {
4645
// Registry of loaded modules, akin to `require.cache`
4746
this.moduleMap = new ModuleMap();
4847

49-
// Map of already-loaded CJS modules to use
50-
this.cjsCache = new SafeMap();
51-
5248
// This hook is called before the first root module is imported. It's a
5349
// function that returns a piece of code that runs as a sloppy-mode script.
5450
// The script may evaluate to a function that can be called with a

lib/internal/modules/esm/translators.js

+15-19
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ const {
1111
StringPrototypeReplace,
1212
} = primordials;
1313

14+
const assert = require('internal/assert');
15+
1416
let _TYPES = null;
1517
function lazyTypes() {
1618
if (_TYPES !== null) return _TYPES;
@@ -132,27 +134,21 @@ const isWindows = process.platform === 'win32';
132134
const winSepRegEx = /\//g;
133135
translators.set('commonjs', function commonjsStrategy(url, isMain) {
134136
debug(`Translating CJSModule ${url}`);
135-
const pathname = internalURLModule.fileURLToPath(new URL(url));
136-
const cached = this.cjsCache.get(url);
137-
if (cached) {
138-
this.cjsCache.delete(url);
139-
return cached;
140-
}
141-
const module = CJSModule._cache[
142-
isWindows ? StringPrototypeReplace(pathname, winSepRegEx, '\\') : pathname
143-
];
144-
if (module && module.loaded) {
145-
const exports = module.exports;
146-
return new ModuleWrap(url, undefined, ['default'], function() {
147-
this.setExport('default', exports);
148-
});
149-
}
137+
let filename = internalURLModule.fileURLToPath(new URL(url));
138+
if (isWindows)
139+
filename = StringPrototypeReplace(filename, winSepRegEx, '\\');
150140
return new ModuleWrap(url, undefined, ['default'], function() {
151141
debug(`Loading CJSModule ${url}`);
152-
// We don't care about the return val of _load here because Module#load
153-
// will handle it for us by checking the loader registry and filling the
154-
// exports like above
155-
CJSModule._load(pathname, undefined, isMain);
142+
let module = CJSModule._cache[filename];
143+
if (!module || !module.loaded) {
144+
module = new CJSModule(filename);
145+
module.filename = filename;
146+
module.paths = CJSModule._nodeModulePaths(module.path);
147+
CJSModule._cache[filename] = module;
148+
module.load(filename);
149+
assert(module && module.loaded);
150+
}
151+
this.setExport('default', module.exports);
156152
});
157153
});
158154

test/es-module/test-esm-snapshot.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ import '../fixtures/es-modules/esm-snapshot-mutator.js';
33
import one from '../fixtures/es-modules/esm-snapshot.js';
44
import assert from 'assert';
55

6-
assert.strictEqual(one, 1);
6+
assert.strictEqual(one, 2);

0 commit comments

Comments
 (0)