-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathbundle.js
456 lines (415 loc) · 13.5 KB
/
bundle.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
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
/* eslint no-shadow: 0 */
/**
* @import {
* StaticModuleType,
* PrecompiledStaticModuleInterface
* } from 'ses'
* @import {
* ArchiveOptions,
* CompartmentDescriptor,
* CompartmentSources,
* MaybeReadPowers,
* ReadFn,
* ReadPowers,
* Sources,
* WriteFn,
* } from './types.js'
*/
/**
* @typedef {object} BundlerKit
* @property {() => string} getFunctor Produces a JavaScript string consisting of
* a function expression followed by a comma delimiter that will be evaluated in
* a lexical scope with no free variables except the globals.
* In the generated bundle runtime, the function will receive an environment
* record: a record mapping every name of the corresponding module's internal
* namespace to a "cell" it can use to get, set, or observe the linked
* variable.
* @property {() => string} getCells Produces a JavaScript string consisting of
* a JavaScript object and a trailing comma.
* The string is evaluated in a lexical context with a `cell` maker, the `cells`
* array of every module's internal environment record.
* @property {() => string} getFunctorCall Produces a JavaScript string may
* be a statement that calls this module's functor with the calling convention
* appropriate for its language, injecting whatever cells it needs to link to
* other module namespaces.
* @property {() => string} getReexportsWiring Produces a JavaScript string
* that may include statements that bind the cells reexported by this module.
*/
/**
* @template {unknown} SpecificModuleSource
* @typedef {object} BundleModule
* @property {string} key
* @property {string} compartmentName
* @property {string} moduleSpecifier
* @property {string} parser
* @property {StaticModuleType & SpecificModuleSource} record
* @property {Record<string, string>} resolvedImports
* @property {Record<string, number>} indexedImports
* @property {Uint8Array} bytes
* @property {number} index
* @property {BundlerKit} bundlerKit
*/
/**
* @template {unknown} SpecificModuleSource
* @callback GetBundlerKit
* @param {BundleModule<SpecificModuleSource>} module
* @returns {BundlerKit}
*/
/**
* @template {unknown} SpecificModuleSource
* @typedef {object} BundlerSupport
* @property {string} runtime
* @property {GetBundlerKit<SpecificModuleSource>} getBundlerKit
*/
import { resolve } from './node-module-specifier.js';
import { compartmentMapForNodeModules } from './node-modules.js';
import { search } from './search.js';
import { link } from './link.js';
import { unpackReadPowers } from './powers.js';
import { makeImportHookMaker } from './import-hook.js';
import { defaultParserForLanguage } from './archive-parsers.js';
import { parseLocatedJson } from './json.js';
import mjsSupport from './bundle-mjs.js';
import cjsSupport from './bundle-cjs.js';
import jsonSupport from './bundle-json.js';
const textEncoder = new TextEncoder();
const { quote: q } = assert;
/**
* @param {Record<string, CompartmentDescriptor>} compartmentDescriptors
* @param {Record<string, CompartmentSources>} compartmentSources
* @param {string} entryCompartmentName
* @param {string} entryModuleSpecifier
*/
const sortedModules = (
compartmentDescriptors,
compartmentSources,
entryCompartmentName,
entryModuleSpecifier,
) => {
/** @type {BundleModule<unknown>[]} */
const modules = [];
/** @type {Map<string, string>} aliaes */
const aliases = new Map();
/** @type {Set<string>} seen */
const seen = new Set();
/**
* @param {string} compartmentName
* @param {string} moduleSpecifier
*/
const recur = (compartmentName, moduleSpecifier) => {
const key = `${compartmentName}#${moduleSpecifier}`;
if (seen.has(key)) {
return key;
}
seen.add(key);
const source = compartmentSources[compartmentName][moduleSpecifier];
if (source !== undefined) {
const { record, parser, deferredError, bytes } = source;
assert(
bytes !== undefined,
`No bytes for ${moduleSpecifier} in ${compartmentName}`,
);
assert(
parser !== undefined,
`No parser for ${moduleSpecifier} in ${compartmentName}`,
);
if (deferredError) {
throw Error(
`Cannot bundle: encountered deferredError ${deferredError}`,
);
}
if (record) {
const { imports = [], reexports = [] } =
/** @type {PrecompiledStaticModuleInterface} */ (record);
const resolvedImports = Object.create(null);
for (const importSpecifier of [...imports, ...reexports]) {
// If we ever support another module resolution algorithm, that
// should be indicated in the compartment descriptor by name and the
// corresponding behavior selected here.
const resolvedSpecifier = resolve(importSpecifier, moduleSpecifier);
resolvedImports[importSpecifier] = recur(
compartmentName,
resolvedSpecifier,
);
}
modules.push({
key,
compartmentName,
moduleSpecifier,
parser,
record,
resolvedImports,
bytes,
// @ts-expect-error
index: undefined,
// @ts-expect-error
bundlerKit: null,
});
return key;
}
} else {
const descriptor =
compartmentDescriptors[compartmentName].modules[moduleSpecifier];
if (descriptor) {
const {
compartment: aliasCompartmentName,
module: aliasModuleSpecifier,
} = descriptor;
if (
aliasCompartmentName !== undefined &&
aliasModuleSpecifier !== undefined
) {
const aliasKey = recur(aliasCompartmentName, aliasModuleSpecifier);
aliases.set(key, aliasKey);
return aliasKey;
}
}
}
throw Error(
`Cannot bundle: cannot follow module import ${moduleSpecifier} in compartment ${compartmentName}`,
);
};
recur(entryCompartmentName, entryModuleSpecifier);
return { modules, aliases };
};
/** @type {Record<string, BundlerSupport<unknown>>} */
const bundlerSupportForLanguage = {
'pre-mjs-json': mjsSupport,
'pre-cjs-json': cjsSupport,
json: jsonSupport,
};
/** @param {string} language */
const getRuntime = language =>
bundlerSupportForLanguage[language]
? bundlerSupportForLanguage[language].runtime
: `/*unknown language:${language}*/`;
/** @param {BundleModule<unknown>} module */
const getBundlerKitForModule = module => {
const language = module.parser;
assert(language !== undefined);
if (bundlerSupportForLanguage[language] === undefined) {
const warning = `/*unknown language:${language}*/`;
// each item is a function to avoid creating more in-memory copies of the source text etc.
/** @type {BundlerKit} */
return {
getFunctor: () => `(()=>{${warning}}),`,
getCells: () => `{${warning}},`,
getFunctorCall: () => warning,
getReexportsWiring: () => '',
};
}
const { getBundlerKit } = bundlerSupportForLanguage[language];
return getBundlerKit(module);
};
/**
* @param {ReadFn | ReadPowers | MaybeReadPowers} readPowers
* @param {string} moduleLocation
* @param {ArchiveOptions} [options]
* @returns {Promise<string>}
*/
export const makeBundle = async (readPowers, moduleLocation, options) => {
const { read } = unpackReadPowers(readPowers);
const {
moduleTransforms,
dev,
tags: tagsOption,
conditions: conditionsOption = tagsOption,
searchSuffixes,
commonDependencies,
sourceMapHook = undefined,
parserForLanguage: parserForLanguageOption = {},
languageForExtension: languageForExtensionOption = {},
commonjsLanguageForExtension: commonjsLanguageForExtensionOption = {},
moduleLanguageForExtension: moduleLanguageForExtensionOption = {},
workspaceLanguageForExtension: workspaceLanguageForExtensionOption = {},
workspaceCommonjsLanguageForExtension:
workspaceCommonjsLanguageForExtensionOption = {},
workspaceModuleLanguageForExtension:
workspaceModuleLanguageForExtensionOption = {},
} = options || {};
const conditions = new Set(conditionsOption);
const parserForLanguage = Object.freeze(
Object.assign(
Object.create(null),
defaultParserForLanguage,
parserForLanguageOption,
),
);
const languageForExtension = Object.freeze(
Object.assign(Object.create(null), languageForExtensionOption),
);
const commonjsLanguageForExtension = Object.freeze(
Object.assign(Object.create(null), commonjsLanguageForExtensionOption),
);
const moduleLanguageForExtension = Object.freeze(
Object.assign(Object.create(null), moduleLanguageForExtensionOption),
);
const workspaceLanguageForExtension = Object.freeze(
Object.assign(Object.create(null), workspaceLanguageForExtensionOption),
);
const workspaceCommonjsLanguageForExtension = Object.freeze(
Object.assign(
Object.create(null),
workspaceCommonjsLanguageForExtensionOption,
),
);
const workspaceModuleLanguageForExtension = Object.freeze(
Object.assign(
Object.create(null),
workspaceModuleLanguageForExtensionOption,
),
);
const {
packageLocation,
packageDescriptorText,
packageDescriptorLocation,
moduleSpecifier,
} = await search(readPowers, moduleLocation);
const packageDescriptor = parseLocatedJson(
packageDescriptorText,
packageDescriptorLocation,
);
const compartmentMap = await compartmentMapForNodeModules(
read,
packageLocation,
conditions,
packageDescriptor,
moduleSpecifier,
{
dev,
commonDependencies,
languageForExtension,
commonjsLanguageForExtension,
moduleLanguageForExtension,
workspaceLanguageForExtension,
workspaceCommonjsLanguageForExtension,
workspaceModuleLanguageForExtension,
},
);
const {
compartments,
entry: { compartment: entryCompartmentName, module: entryModuleSpecifier },
} = compartmentMap;
/** @type {Sources} */
const sources = Object.create(null);
const makeImportHook = makeImportHookMaker(read, packageLocation, {
sources,
compartmentDescriptors: compartments,
searchSuffixes,
entryCompartmentName,
entryModuleSpecifier,
sourceMapHook,
});
// Induce importHook to record all the necessary modules to import the given module specifier.
const { compartment } = link(compartmentMap, {
resolve,
makeImportHook,
moduleTransforms,
parserForLanguage,
});
await compartment.load(entryModuleSpecifier);
const { modules, aliases } = sortedModules(
compartmentMap.compartments,
sources,
entryCompartmentName,
entryModuleSpecifier,
);
// Create an index of modules so we can resolve import specifiers to the
// index of the corresponding functor.
const modulesByKey = Object.create(null);
for (let index = 0; index < modules.length; index += 1) {
const module = modules[index];
module.index = index;
modulesByKey[module.key] = module;
}
const parsersInUse = new Set();
for (const module of modules) {
module.indexedImports = Object.fromEntries(
Object.entries(module.resolvedImports).map(([importSpecifier, key]) => {
// UNTIL https://github.com/endojs/endo/issues/1514
// Prefer: key = aliases.get(key) ?? key;
const alias = aliases.get(key);
if (alias != null) {
key = alias;
}
const module = modulesByKey[key];
if (module === undefined) {
throw new Error(
`Unable to locate module for key ${q(key)} import specifier ${q(
importSpecifier,
)} in ${q(module.moduleSpecifier)} of compartment ${q(
module.compartmentName,
)}`,
);
}
const { index } = module;
return [importSpecifier, index];
}),
);
parsersInUse.add(module.parser);
module.bundlerKit = getBundlerKitForModule(module);
}
const bundle = `\
'use strict';
(functors => {
const cell = (name, value = undefined) => {
const observers = [];
return Object.freeze({
get: Object.freeze(() => {
return value;
}),
set: Object.freeze((newValue) => {
value = newValue;
for (const observe of observers) {
observe(value);
}
}),
observe: Object.freeze((observe) => {
observers.push(observe);
observe(value);
}),
enumerable: true,
});
};
const cells = [
${''.concat(...modules.map(m => m.bundlerKit.getCells()))}\
];
${''.concat(...modules.map(m => m.bundlerKit.getReexportsWiring()))}\
const namespaces = cells.map(cells => Object.freeze(Object.create(null, {
...cells,
// Make this appear like an ESM module namespace object.
[Symbol.toStringTag]: {
value: 'Module',
writable: false,
enumerable: false,
configurable: false,
},
})));
for (let index = 0; index < namespaces.length; index += 1) {
cells[index]['*'] = cell('*', namespaces[index]);
}
${''.concat(...Array.from(parsersInUse).map(parser => getRuntime(parser)))}
${''.concat(...modules.map(m => m.bundlerKit.getFunctorCall()))}\
return cells[cells.length - 1]['*'].get();
})([${''.concat(...modules.map(m => m.bundlerKit.getFunctor()))}]);
`;
return bundle;
};
/**
* @param {WriteFn} write
* @param {ReadFn} read
* @param {string} bundleLocation
* @param {string} moduleLocation
* @param {ArchiveOptions} [options]
*/
export const writeBundle = async (
write,
read,
bundleLocation,
moduleLocation,
options,
) => {
const bundleString = await makeBundle(read, moduleLocation, options);
const bundleBytes = textEncoder.encode(bundleString);
await write(bundleLocation, bundleBytes);
};