-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
/
PackagerRunner.js
485 lines (428 loc) Β· 12.8 KB
/
PackagerRunner.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
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
// @flow
import type {
Blob,
FilePath,
BundleResult,
Bundle as BundleType,
BundleGraph as BundleGraphType,
Stats,
} from '@parcel/types';
import type SourceMap from '@parcel/source-map';
import type WorkerFarm from '@parcel/workers';
import type {Bundle as InternalBundle, ParcelOptions} from './types';
import type ParcelConfig from './ParcelConfig';
import type InternalBundleGraph from './BundleGraph';
import type {FileSystem, FileOptions} from '@parcel/fs';
import {md5FromObject, md5FromString, blobToStream} from '@parcel/utils';
import {PluginLogger} from '@parcel/logger';
import ThrowableDiagnostic, {errorToDiagnostic} from '@parcel/diagnostic';
import {Readable} from 'stream';
import nullthrows from 'nullthrows';
import path from 'path';
import url from 'url';
import {NamedBundle, bundleToInternalBundle} from './public/Bundle';
import {report} from './ReporterRunner';
import BundleGraph, {
bundleGraphToInternalBundleGraph,
} from './public/BundleGraph';
import PluginOptions from './public/PluginOptions';
import {PARCEL_VERSION} from './constants';
type Opts = {|
config: ParcelConfig,
farm?: WorkerFarm,
options: ParcelOptions,
|};
export default class PackagerRunner {
config: ParcelConfig;
options: ParcelOptions;
farm: ?WorkerFarm;
pluginOptions: PluginOptions;
distDir: FilePath;
distExists: Set<FilePath>;
writeBundleFromWorker: ({|
bundle: InternalBundle,
bundleGraphReference: number,
config: ParcelConfig,
cacheKey: string,
options: ParcelOptions,
|}) => Promise<Stats>;
constructor({config, farm, options}: Opts) {
this.config = config;
this.options = options;
this.pluginOptions = new PluginOptions(this.options);
this.farm = farm;
this.writeBundleFromWorker = farm
? farm.createHandle('runPackage')
: () => {
throw new Error(
'Cannot call PackagerRunner.writeBundleFromWorker() in a worker',
);
};
}
async writeBundles(bundleGraph: InternalBundleGraph) {
let farm = nullthrows(this.farm);
let {ref, dispose} = await farm.createSharedReference(bundleGraph);
let promises = [];
for (let bundle of bundleGraph.getBundles()) {
// skip inline bundles, they will be processed via the parent bundle
if (bundle.isInline) {
continue;
}
promises.push(
this.writeBundle(bundle, bundleGraph, ref).then(stats => {
bundle.stats = stats;
}),
);
}
await Promise.all(promises);
await dispose();
}
async writeBundle(
bundle: InternalBundle,
bundleGraph: InternalBundleGraph,
bundleGraphReference: number,
) {
let start = Date.now();
let cacheKey = await this.getCacheKey(bundle, bundleGraph);
let {size} =
(await this.writeBundleFromCache({bundle, bundleGraph, cacheKey})) ||
(await this.writeBundleFromWorker({
bundle,
cacheKey,
bundleGraphReference,
options: this.options,
config: this.config,
}));
return {
time: Date.now() - start,
size,
};
}
async writeBundleFromCache({
bundle,
bundleGraph,
cacheKey,
}: {|
bundle: InternalBundle,
bundleGraph: InternalBundleGraph,
cacheKey: string,
|}) {
if (this.options.disableCache) {
return;
}
let cacheResult = await this.readFromCache(cacheKey);
if (cacheResult == null) {
return;
}
let {contents, map} = cacheResult;
let {size} = await this.writeToDist({
bundle,
bundleGraph,
contents,
map,
});
return {size};
}
async packageAndWriteBundle(
bundle: InternalBundle,
bundleGraph: InternalBundleGraph,
cacheKey: string,
) {
let start = Date.now();
let {contents, map} = await this.getBundleResult(
bundle,
bundleGraph,
cacheKey,
);
let {size} = await this.writeToDist({
bundle,
bundleGraph,
contents,
map,
});
return {
time: Date.now() - start,
size,
};
}
async getBundleResult(
bundle: InternalBundle,
bundleGraph: InternalBundleGraph,
cacheKey: ?string,
): Promise<{|contents: Blob, map: ?(Readable | string)|}> {
let result;
if (!cacheKey && !this.options.disableCache) {
cacheKey = await this.getCacheKey(bundle, bundleGraph);
let cacheResult = await this.readFromCache(cacheKey);
if (cacheResult) {
// NOTE: Returning a new object for flow
return {
contents: cacheResult.contents,
map: cacheResult.map,
};
}
}
let packaged = await this.package(bundle, bundleGraph);
let res = await this.optimize(
bundle,
bundleGraph,
packaged.contents,
packaged.map,
);
let map = res.map ? await this.generateSourceMap(bundle, res.map) : null;
result = {
contents: res.contents,
map,
};
if (cacheKey != null) {
await this.writeToCache(cacheKey, result.contents, map);
if (result.contents instanceof Readable) {
return {
contents: this.options.cache.getStream(getContentKey(cacheKey)),
map: result.map,
};
}
}
return result;
}
async package(
internalBundle: InternalBundle,
bundleGraph: InternalBundleGraph,
): Promise<BundleResult> {
let bundle = new NamedBundle(internalBundle, bundleGraph, this.options);
report({
type: 'buildProgress',
phase: 'packaging',
bundle,
});
let packager = await this.config.getPackager(bundle.filePath);
try {
return await packager.plugin.package({
bundle,
bundleGraph: new BundleGraph(bundleGraph, this.options),
getSourceMapReference: map => {
return bundle.isInline ||
(bundle.target.sourceMap && bundle.target.sourceMap.inline)
? this.generateSourceMap(bundleToInternalBundle(bundle), map)
: path.basename(bundle.filePath) + '.map';
},
options: this.pluginOptions,
logger: new PluginLogger({origin: packager.name}),
getInlineBundleContents: (
bundle: BundleType,
bundleGraph: BundleGraphType,
) => {
if (!bundle.isInline) {
throw new Error(
'Bundle is not inline and unable to retrieve contents',
);
}
return this.getBundleResult(
bundleToInternalBundle(bundle),
bundleGraphToInternalBundleGraph(bundleGraph),
);
},
});
} catch (e) {
throw new ThrowableDiagnostic({
diagnostic: errorToDiagnostic(e, packager.name),
});
}
}
async optimize(
internalBundle: InternalBundle,
bundleGraph: InternalBundleGraph,
contents: Blob,
map?: ?SourceMap,
): Promise<BundleResult> {
let bundle = new NamedBundle(internalBundle, bundleGraph, this.options);
let optimizers = await this.config.getOptimizers(
bundle.filePath,
internalBundle.pipeline,
);
if (!optimizers.length) {
return {contents, map};
}
report({
type: 'buildProgress',
phase: 'optimizing',
bundle,
});
let optimized = {contents, map};
for (let optimizer of optimizers) {
try {
optimized = await optimizer.plugin.optimize({
bundle,
contents: optimized.contents,
map: optimized.map,
options: this.pluginOptions,
logger: new PluginLogger({origin: optimizer.name}),
});
} catch (e) {
throw new ThrowableDiagnostic({
diagnostic: errorToDiagnostic(e, optimizer.name),
});
}
}
return optimized;
}
generateSourceMap(bundle: InternalBundle, map: SourceMap): Promise<string> {
// sourceRoot should be a relative path between outDir and rootDir for node.js targets
let filePath = nullthrows(bundle.filePath);
let sourceRoot: string = path.relative(
path.dirname(filePath),
this.options.projectRoot,
);
let inlineSources = false;
if (bundle.target) {
if (
bundle.target.sourceMap &&
bundle.target.sourceMap.sourceRoot !== undefined
) {
sourceRoot = bundle.target.sourceMap.sourceRoot;
} else if (
bundle.target.env.context === 'browser' &&
this.options.mode !== 'production'
) {
sourceRoot = '/__parcel_source_root';
}
if (
bundle.target.sourceMap &&
bundle.target.sourceMap.inlineSources !== undefined
) {
inlineSources = bundle.target.sourceMap.inlineSources;
} else if (bundle.target.env.context !== 'node') {
// inlining should only happen in production for browser targets by default
inlineSources = this.options.mode === 'production';
}
}
let mapFilename = filePath + '.map';
return map.stringify({
file: path.basename(mapFilename),
fs: this.options.inputFS,
rootDir: this.options.projectRoot,
sourceRoot: !inlineSources
? url.format(url.parse(sourceRoot + '/'))
: undefined,
inlineSources,
inlineMap:
bundle.isInline ||
(bundle.target.sourceMap && bundle.target.sourceMap.inline),
});
}
getCacheKey(
bundle: InternalBundle,
bundleGraph: InternalBundleGraph,
): string {
let filePath = nullthrows(bundle.filePath);
// TODO: include packagers and optimizers used in inline bundles as well
let packager = this.config.getPackagerName(filePath);
let optimizers = this.config.getOptimizerNames(filePath);
let deps = Promise.all(
[packager, ...optimizers].map(async pkg => {
let {pkg: resolvedPkg} = await this.options.packageManager.resolve(
`${pkg}/package.json`,
`${this.config.filePath}/index`,
);
let version = nullthrows(resolvedPkg).version;
return [pkg, version];
}),
);
// TODO: add third party configs to the cache key
let {minify, scopeHoist, sourceMaps} = this.options;
return md5FromObject({
parcelVersion: PARCEL_VERSION,
deps,
opts: {minify, scopeHoist, sourceMaps},
hash: bundleGraph.getHash(bundle),
});
}
async readFromCache(
cacheKey: string,
): Promise<?{|
contents: Readable,
map: ?Readable,
|}> {
let contentKey = getContentKey(cacheKey);
let mapKey = getMapKey(cacheKey);
let contentExists = await this.options.cache.blobExists(contentKey);
if (!contentExists) {
return null;
}
let mapExists = await this.options.cache.blobExists(mapKey);
return {
contents: this.options.cache.getStream(contentKey),
map: mapExists ? this.options.cache.getStream(mapKey) : null,
};
}
async writeToDist({
bundle,
bundleGraph,
contents,
map,
}: {|
bundle: InternalBundle,
bundleGraph: InternalBundleGraph,
contents: Blob,
map: ?(Readable | string),
|}) {
let {inputFS, outputFS} = this.options;
let filePath = nullthrows(bundle.filePath);
let dir = path.dirname(filePath);
await outputFS.mkdirp(dir); // ? Got rid of dist exists, is this an expensive operation
// Use the file mode from the entry asset as the file mode for the bundle.
// Don't do this for browser builds, as the executable bit in particular is unnecessary.
let publicBundle = new NamedBundle(bundle, bundleGraph, this.options);
let writeOptions = publicBundle.env.isBrowser()
? undefined
: {
mode: (
await inputFS.stat(nullthrows(publicBundle.getMainEntry()).filePath)
).mode,
};
let size;
if (contents instanceof Readable) {
size = await writeFileStream(outputFS, filePath, contents, writeOptions);
} else {
await outputFS.writeFile(filePath, contents, writeOptions);
size = contents.length;
}
if (map != null) {
if (map instanceof Readable) {
await writeFileStream(outputFS, filePath + '.map', map);
} else {
await outputFS.writeFile(filePath + '.map', map);
}
}
return {size};
}
async writeToCache(cacheKey: string, contents: Blob, map: ?Blob) {
let contentKey = getContentKey(cacheKey);
await this.options.cache.setStream(contentKey, blobToStream(contents));
if (map != null) {
let mapKey = getMapKey(cacheKey);
await this.options.cache.setStream(mapKey, blobToStream(map));
}
}
}
function writeFileStream(
fs: FileSystem,
filePath: FilePath,
stream: Readable,
options: ?FileOptions,
): Promise<number> {
return new Promise((resolve, reject) => {
let fsStream = fs.createWriteStream(filePath, options);
stream
.pipe(fsStream)
// $FlowFixMe
.on('finish', () => resolve(fsStream.bytesWritten))
.on('error', reject);
});
}
function getContentKey(cacheKey: string) {
return md5FromString(`${cacheKey}:content`);
}
function getMapKey(cacheKey: string) {
return md5FromString(`${cacheKey}:map`);
}