Skip to content

Commit 2c689f3

Browse files
committed
lib,src: iterate module requests of a module wrap in JS
Avoid repetitively calling into JS callback from C++ in `ModuleWrap::Link`. This removes the convoluted callback style of the internal `ModuleWrap` link step.
1 parent f8e325e commit 2c689f3

File tree

7 files changed

+244
-223
lines changed

7 files changed

+244
-223
lines changed

lib/internal/modules/esm/module_job.js

+52-30
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
'use strict';
22

33
const {
4+
Array,
45
ArrayPrototypeJoin,
5-
ArrayPrototypePush,
66
ArrayPrototypeSome,
77
FunctionPrototype,
88
ObjectSetPrototypeOf,
@@ -83,30 +83,8 @@ class ModuleJob extends ModuleJobBase {
8383
this.modulePromise = PromiseResolve(this.modulePromise);
8484
}
8585

86-
// Wait for the ModuleWrap instance being linked with all dependencies.
87-
const link = async () => {
88-
this.module = await this.modulePromise;
89-
assert(this.module instanceof ModuleWrap);
90-
91-
// Explicitly keeping track of dependency jobs is needed in order
92-
// to flatten out the dependency graph below in `_instantiate()`,
93-
// so that circular dependencies can't cause a deadlock by two of
94-
// these `link` callbacks depending on each other.
95-
const dependencyJobs = [];
96-
const promises = this.module.link(async (specifier, attributes) => {
97-
const job = await this.loader.getModuleJob(specifier, url, attributes);
98-
ArrayPrototypePush(dependencyJobs, job);
99-
return job.modulePromise;
100-
});
101-
102-
if (promises !== undefined) {
103-
await SafePromiseAllReturnVoid(promises);
104-
}
105-
106-
return SafePromiseAllReturnArrayLike(dependencyJobs);
107-
};
10886
// Promise for the list of all dependencyJobs.
109-
this.linked = link();
87+
this.linked = this._link();
11088
// This promise is awaited later anyway, so silence
11189
// 'unhandled rejection' warnings.
11290
PromisePrototypeThen(this.linked, undefined, noop);
@@ -116,6 +94,48 @@ class ModuleJob extends ModuleJobBase {
11694
this.instantiated = undefined;
11795
}
11896

97+
/**
98+
* Iterates the module requests and links with the loader.
99+
* @returns {Promise<ModuleJob[]>} Dependency module jobs.
100+
*/
101+
async _link() {
102+
this.module = await this.modulePromise;
103+
assert(this.module instanceof ModuleWrap);
104+
105+
const moduleRequests = this.module.getModuleRequests();
106+
// Explicitly keeping track of dependency jobs is needed in order
107+
// to flatten out the dependency graph below in `_instantiate()`,
108+
// so that circular dependencies can't cause a deadlock by two of
109+
// these `link` callbacks depending on each other.
110+
// Create an ArrayLike to avoid calling into userspace with `.then`
111+
// when returned from the async function.
112+
const dependencyJobs = Array(moduleRequests.length);
113+
ObjectSetPrototypeOf(dependencyJobs, null);
114+
115+
// Specifiers should be aligned with the moduleRequests array in order.
116+
const specifiers = Array(moduleRequests.length);
117+
const modulePromises = Array(moduleRequests.length);
118+
// Iterate with index to avoid calling into userspace with `Symbol.iterator`.
119+
for (let idx = 0; idx < moduleRequests.length; idx++) {
120+
const { specifier, attributes } = moduleRequests[idx];
121+
122+
const dependencyJobPromise = this.loader.getModuleJob(
123+
specifier, this.url, attributes,
124+
);
125+
const modulePromise = PromisePrototypeThen(dependencyJobPromise, (job) => {
126+
dependencyJobs[idx] = job;
127+
return job.modulePromise;
128+
});
129+
modulePromises[idx] = modulePromise;
130+
specifiers[idx] = specifier;
131+
}
132+
133+
const modules = await SafePromiseAllReturnArrayLike(modulePromises);
134+
this.module.link(specifiers, modules);
135+
136+
return dependencyJobs;
137+
}
138+
119139
instantiate() {
120140
if (this.instantiated === undefined) {
121141
this.instantiated = this._instantiate();
@@ -268,15 +288,17 @@ class ModuleJobSync extends ModuleJobBase {
268288
constructor(loader, url, importAttributes, moduleWrap, isMain, inspectBrk) {
269289
super(loader, url, importAttributes, moduleWrap, isMain, inspectBrk, true);
270290
assert(this.module instanceof ModuleWrap);
271-
const moduleRequests = this.module.getModuleRequestsSync();
291+
const moduleRequests = this.module.getModuleRequests();
292+
// Specifiers should be aligned with the moduleRequests array in order.
293+
const specifiers = Array(moduleRequests.length);
294+
const modules = Array(moduleRequests.length);
272295
for (let i = 0; i < moduleRequests.length; ++i) {
273-
const { 0: specifier, 1: attributes } = moduleRequests[i];
296+
const { specifier, attributes } = moduleRequests[i];
274297
const wrap = this.loader.getModuleWrapForRequire(specifier, url, attributes);
275-
const isLast = (i === moduleRequests.length - 1);
276-
// TODO(joyeecheung): make the resolution callback deal with both promisified
277-
// an raw module wraps, then we don't need to wrap it with a promise here.
278-
this.module.cacheResolvedWrapsSync(specifier, PromiseResolve(wrap), isLast);
298+
specifiers[i] = specifier;
299+
modules[i] = wrap;
279300
}
301+
this.module.link(specifiers, modules);
280302
}
281303

282304
async run() {

lib/internal/vm/module.js

+57-35
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,21 @@
22

33
const assert = require('internal/assert');
44
const {
5+
Array,
56
ArrayIsArray,
67
ArrayPrototypeForEach,
78
ArrayPrototypeIndexOf,
9+
ArrayPrototypeMap,
810
ArrayPrototypeSome,
911
ObjectDefineProperty,
1012
ObjectFreeze,
1113
ObjectGetPrototypeOf,
1214
ObjectPrototypeHasOwnProperty,
1315
ObjectSetPrototypeOf,
16+
PromiseResolve,
17+
PromisePrototypeThen,
1418
ReflectApply,
15-
SafePromiseAllReturnVoid,
19+
SafePromiseAllReturnArrayLike,
1620
Symbol,
1721
SymbolToStringTag,
1822
TypeError,
@@ -294,44 +298,62 @@ class SourceTextModule extends Module {
294298
importModuleDynamically,
295299
});
296300

297-
this[kLink] = async (linker) => {
298-
this.#statusOverride = 'linking';
301+
this[kDependencySpecifiers] = undefined;
302+
}
299303

300-
const promises = this[kWrap].link(async (identifier, attributes) => {
301-
const module = await linker(identifier, this, { attributes, assert: attributes });
302-
if (!isModule(module)) {
303-
throw new ERR_VM_MODULE_NOT_MODULE();
304-
}
305-
if (module.context !== this.context) {
306-
throw new ERR_VM_MODULE_DIFFERENT_CONTEXT();
307-
}
308-
if (module.status === 'errored') {
309-
throw new ERR_VM_MODULE_LINK_FAILURE(`request for '${identifier}' resolved to an errored module`, module.error);
310-
}
311-
if (module.status === 'unlinked') {
312-
await module[kLink](linker);
313-
}
314-
return module[kWrap];
304+
async [kLink](linker) {
305+
this.#statusOverride = 'linking';
306+
307+
const moduleRequests = this[kWrap].getModuleRequests();
308+
// Iterates the module requests and links with the linker.
309+
// Specifiers should be aligned with the moduleRequests array in order.
310+
const specifiers = Array(moduleRequests.length);
311+
const modulePromises = Array(moduleRequests.length);
312+
// Iterates with index to avoid calling into userspace with `Symbol.iterator`.
313+
for (let idx = 0; idx < moduleRequests.length; idx++) {
314+
const { specifier, attributes } = moduleRequests[idx];
315+
316+
const linkerResult = linker(specifier, this, {
317+
attributes,
318+
assert: attributes,
315319
});
320+
const modulePromise = PromisePrototypeThen(
321+
PromiseResolve(linkerResult), async (module) => {
322+
if (!isModule(module)) {
323+
throw new ERR_VM_MODULE_NOT_MODULE();
324+
}
325+
if (module.context !== this.context) {
326+
throw new ERR_VM_MODULE_DIFFERENT_CONTEXT();
327+
}
328+
if (module.status === 'errored') {
329+
throw new ERR_VM_MODULE_LINK_FAILURE(`request for '${specifier}' resolved to an errored module`, module.error);
330+
}
331+
if (module.status === 'unlinked') {
332+
await module[kLink](linker);
333+
}
334+
return module[kWrap];
335+
});
336+
modulePromises[idx] = modulePromise;
337+
specifiers[idx] = specifier;
338+
}
316339

317-
try {
318-
if (promises !== undefined) {
319-
await SafePromiseAllReturnVoid(promises);
320-
}
321-
} catch (e) {
322-
this.#error = e;
323-
throw e;
324-
} finally {
325-
this.#statusOverride = undefined;
326-
}
327-
};
328-
329-
this[kDependencySpecifiers] = undefined;
340+
try {
341+
const modules = await SafePromiseAllReturnArrayLike(modulePromises);
342+
this[kWrap].link(specifiers, modules);
343+
} catch (e) {
344+
this.#error = e;
345+
throw e;
346+
} finally {
347+
this.#statusOverride = undefined;
348+
}
330349
}
331350

332351
get dependencySpecifiers() {
333352
validateInternalField(this, kDependencySpecifiers, 'SourceTextModule');
334-
this[kDependencySpecifiers] ??= ObjectFreeze(this[kWrap].getStaticDependencySpecifiers());
353+
// TODO(legendecas): add a new getter to expose the import attributes as the value type
354+
// of [[RequestedModules]] is changed in https://tc39.es/proposal-import-attributes/#table-cyclic-module-fields.
355+
this[kDependencySpecifiers] ??= ObjectFreeze(
356+
ArrayPrototypeMap(this[kWrap].getModuleRequests(), (request) => request.specifier));
335357
return this[kDependencySpecifiers];
336358
}
337359

@@ -393,10 +415,10 @@ class SyntheticModule extends Module {
393415
context,
394416
identifier,
395417
});
418+
}
396419

397-
this[kLink] = () => this[kWrap].link(() => {
398-
assert.fail('link callback should not be called');
399-
});
420+
[kLink]() {
421+
/** nothing to do for synthetic modules */
400422
}
401423

402424
setExport(name, value) {

src/env_properties.h

+3
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@
7474
V(args_string, "args") \
7575
V(asn1curve_string, "asn1Curve") \
7676
V(async_ids_stack_string, "async_ids_stack") \
77+
V(attributes_string, "attributes") \
7778
V(base_string, "base") \
7879
V(bits_string, "bits") \
7980
V(block_list_string, "blockList") \
@@ -307,6 +308,7 @@
307308
V(sni_context_string, "sni_context") \
308309
V(source_string, "source") \
309310
V(source_map_url_string, "sourceMapURL") \
311+
V(specifier_string, "specifier") \
310312
V(stack_string, "stack") \
311313
V(standard_name_string, "standardName") \
312314
V(start_time_string, "startTime") \
@@ -384,6 +386,7 @@
384386
V(js_transferable_constructor_template, v8::FunctionTemplate) \
385387
V(libuv_stream_wrap_ctor_template, v8::FunctionTemplate) \
386388
V(message_port_constructor_template, v8::FunctionTemplate) \
389+
V(module_wrap_constructor_template, v8::FunctionTemplate) \
387390
V(microtask_queue_ctor_template, v8::FunctionTemplate) \
388391
V(pipe_constructor_template, v8::FunctionTemplate) \
389392
V(promise_wrap_template, v8::ObjectTemplate) \

0 commit comments

Comments
 (0)