Compiler.js 34 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163
  1. /*
  2. MIT License http://www.opensource.org/licenses/mit-license.php
  3. Author Tobias Koppers @sokra
  4. */
  5. "use strict";
  6. const parseJson = require("json-parse-better-errors");
  7. const asyncLib = require("neo-async");
  8. const {
  9. SyncHook,
  10. SyncBailHook,
  11. AsyncParallelHook,
  12. AsyncSeriesHook
  13. } = require("tapable");
  14. const { SizeOnlySource } = require("webpack-sources");
  15. const webpack = require("./");
  16. const Cache = require("./Cache");
  17. const CacheFacade = require("./CacheFacade");
  18. const ChunkGraph = require("./ChunkGraph");
  19. const Compilation = require("./Compilation");
  20. const ConcurrentCompilationError = require("./ConcurrentCompilationError");
  21. const ContextModuleFactory = require("./ContextModuleFactory");
  22. const ModuleGraph = require("./ModuleGraph");
  23. const NormalModuleFactory = require("./NormalModuleFactory");
  24. const RequestShortener = require("./RequestShortener");
  25. const ResolverFactory = require("./ResolverFactory");
  26. const Stats = require("./Stats");
  27. const Watching = require("./Watching");
  28. const WebpackError = require("./WebpackError");
  29. const { Logger } = require("./logging/Logger");
  30. const { join, dirname, mkdirp } = require("./util/fs");
  31. const { makePathsRelative } = require("./util/identifier");
  32. const { isSourceEqual } = require("./util/source");
  33. /** @typedef {import("webpack-sources").Source} Source */
  34. /** @typedef {import("../declarations/WebpackOptions").EntryNormalized} Entry */
  35. /** @typedef {import("../declarations/WebpackOptions").OutputNormalized} OutputOptions */
  36. /** @typedef {import("../declarations/WebpackOptions").WatchOptions} WatchOptions */
  37. /** @typedef {import("../declarations/WebpackOptions").WebpackOptionsNormalized} WebpackOptions */
  38. /** @typedef {import("../declarations/WebpackOptions").WebpackPluginInstance} WebpackPluginInstance */
  39. /** @typedef {import("./Chunk")} Chunk */
  40. /** @typedef {import("./Dependency")} Dependency */
  41. /** @typedef {import("./FileSystemInfo").FileSystemInfoEntry} FileSystemInfoEntry */
  42. /** @typedef {import("./Module")} Module */
  43. /** @typedef {import("./util/WeakTupleMap")} WeakTupleMap */
  44. /** @typedef {import("./util/fs").InputFileSystem} InputFileSystem */
  45. /** @typedef {import("./util/fs").IntermediateFileSystem} IntermediateFileSystem */
  46. /** @typedef {import("./util/fs").OutputFileSystem} OutputFileSystem */
  47. /** @typedef {import("./util/fs").WatchFileSystem} WatchFileSystem */
  48. /**
  49. * @typedef {Object} CompilationParams
  50. * @property {NormalModuleFactory} normalModuleFactory
  51. * @property {ContextModuleFactory} contextModuleFactory
  52. */
  53. /**
  54. * @template T
  55. * @callback Callback
  56. * @param {Error=} err
  57. * @param {T=} result
  58. */
  59. /**
  60. * @callback RunAsChildCallback
  61. * @param {Error=} err
  62. * @param {Chunk[]=} entries
  63. * @param {Compilation=} compilation
  64. */
  65. /**
  66. * @typedef {Object} AssetEmittedInfo
  67. * @property {Buffer} content
  68. * @property {Source} source
  69. * @property {Compilation} compilation
  70. * @property {string} outputPath
  71. * @property {string} targetPath
  72. */
  73. /**
  74. * @param {string[]} array an array
  75. * @returns {boolean} true, if the array is sorted
  76. */
  77. const isSorted = array => {
  78. for (let i = 1; i < array.length; i++) {
  79. if (array[i - 1] > array[i]) return false;
  80. }
  81. return true;
  82. };
  83. /**
  84. * @param {Object} obj an object
  85. * @param {string[]} keys the keys of the object
  86. * @returns {Object} the object with properties sorted by property name
  87. */
  88. const sortObject = (obj, keys) => {
  89. const o = {};
  90. for (const k of keys.sort()) {
  91. o[k] = obj[k];
  92. }
  93. return o;
  94. };
  95. /**
  96. * @param {string} filename filename
  97. * @param {string | string[] | undefined} hashes list of hashes
  98. * @returns {boolean} true, if the filename contains any hash
  99. */
  100. const includesHash = (filename, hashes) => {
  101. if (!hashes) return false;
  102. if (Array.isArray(hashes)) {
  103. return hashes.some(hash => filename.includes(hash));
  104. } else {
  105. return filename.includes(hashes);
  106. }
  107. };
  108. class Compiler {
  109. /**
  110. * @param {string} context the compilation path
  111. * @param {WebpackOptions} options options
  112. */
  113. constructor(context, options = /** @type {WebpackOptions} */ ({})) {
  114. this.hooks = Object.freeze({
  115. /** @type {SyncHook<[]>} */
  116. initialize: new SyncHook([]),
  117. /** @type {SyncBailHook<[Compilation], boolean>} */
  118. shouldEmit: new SyncBailHook(["compilation"]),
  119. /** @type {AsyncSeriesHook<[Stats]>} */
  120. done: new AsyncSeriesHook(["stats"]),
  121. /** @type {SyncHook<[Stats]>} */
  122. afterDone: new SyncHook(["stats"]),
  123. /** @type {AsyncSeriesHook<[]>} */
  124. additionalPass: new AsyncSeriesHook([]),
  125. /** @type {AsyncSeriesHook<[Compiler]>} */
  126. beforeRun: new AsyncSeriesHook(["compiler"]),
  127. /** @type {AsyncSeriesHook<[Compiler]>} */
  128. run: new AsyncSeriesHook(["compiler"]),
  129. /** @type {AsyncSeriesHook<[Compilation]>} */
  130. emit: new AsyncSeriesHook(["compilation"]),
  131. /** @type {AsyncSeriesHook<[string, AssetEmittedInfo]>} */
  132. assetEmitted: new AsyncSeriesHook(["file", "info"]),
  133. /** @type {AsyncSeriesHook<[Compilation]>} */
  134. afterEmit: new AsyncSeriesHook(["compilation"]),
  135. /** @type {SyncHook<[Compilation, CompilationParams]>} */
  136. thisCompilation: new SyncHook(["compilation", "params"]),
  137. /** @type {SyncHook<[Compilation, CompilationParams]>} */
  138. compilation: new SyncHook(["compilation", "params"]),
  139. /** @type {SyncHook<[NormalModuleFactory]>} */
  140. normalModuleFactory: new SyncHook(["normalModuleFactory"]),
  141. /** @type {SyncHook<[ContextModuleFactory]>} */
  142. contextModuleFactory: new SyncHook(["contextModuleFactory"]),
  143. /** @type {AsyncSeriesHook<[CompilationParams]>} */
  144. beforeCompile: new AsyncSeriesHook(["params"]),
  145. /** @type {SyncHook<[CompilationParams]>} */
  146. compile: new SyncHook(["params"]),
  147. /** @type {AsyncParallelHook<[Compilation]>} */
  148. make: new AsyncParallelHook(["compilation"]),
  149. /** @type {AsyncParallelHook<[Compilation]>} */
  150. finishMake: new AsyncSeriesHook(["compilation"]),
  151. /** @type {AsyncSeriesHook<[Compilation]>} */
  152. afterCompile: new AsyncSeriesHook(["compilation"]),
  153. /** @type {AsyncSeriesHook<[Compiler]>} */
  154. watchRun: new AsyncSeriesHook(["compiler"]),
  155. /** @type {SyncHook<[Error]>} */
  156. failed: new SyncHook(["error"]),
  157. /** @type {SyncHook<[string | null, number]>} */
  158. invalid: new SyncHook(["filename", "changeTime"]),
  159. /** @type {SyncHook<[]>} */
  160. watchClose: new SyncHook([]),
  161. /** @type {AsyncSeriesHook<[]>} */
  162. shutdown: new AsyncSeriesHook([]),
  163. /** @type {SyncBailHook<[string, string, any[]], true>} */
  164. infrastructureLog: new SyncBailHook(["origin", "type", "args"]),
  165. // TODO the following hooks are weirdly located here
  166. // TODO move them for webpack 5
  167. /** @type {SyncHook<[]>} */
  168. environment: new SyncHook([]),
  169. /** @type {SyncHook<[]>} */
  170. afterEnvironment: new SyncHook([]),
  171. /** @type {SyncHook<[Compiler]>} */
  172. afterPlugins: new SyncHook(["compiler"]),
  173. /** @type {SyncHook<[Compiler]>} */
  174. afterResolvers: new SyncHook(["compiler"]),
  175. /** @type {SyncBailHook<[string, Entry], boolean>} */
  176. entryOption: new SyncBailHook(["context", "entry"])
  177. });
  178. this.webpack = webpack;
  179. /** @type {string=} */
  180. this.name = undefined;
  181. /** @type {Compilation=} */
  182. this.parentCompilation = undefined;
  183. /** @type {Compiler} */
  184. this.root = this;
  185. /** @type {string} */
  186. this.outputPath = "";
  187. /** @type {Watching} */
  188. this.watching = undefined;
  189. /** @type {OutputFileSystem} */
  190. this.outputFileSystem = null;
  191. /** @type {IntermediateFileSystem} */
  192. this.intermediateFileSystem = null;
  193. /** @type {InputFileSystem} */
  194. this.inputFileSystem = null;
  195. /** @type {WatchFileSystem} */
  196. this.watchFileSystem = null;
  197. /** @type {string|null} */
  198. this.recordsInputPath = null;
  199. /** @type {string|null} */
  200. this.recordsOutputPath = null;
  201. this.records = {};
  202. /** @type {Set<string | RegExp>} */
  203. this.managedPaths = new Set();
  204. /** @type {Set<string | RegExp>} */
  205. this.immutablePaths = new Set();
  206. /** @type {ReadonlySet<string>} */
  207. this.modifiedFiles = undefined;
  208. /** @type {ReadonlySet<string>} */
  209. this.removedFiles = undefined;
  210. /** @type {ReadonlyMap<string, FileSystemInfoEntry | "ignore" | null>} */
  211. this.fileTimestamps = undefined;
  212. /** @type {ReadonlyMap<string, FileSystemInfoEntry | "ignore" | null>} */
  213. this.contextTimestamps = undefined;
  214. /** @type {number} */
  215. this.fsStartTime = undefined;
  216. /** @type {ResolverFactory} */
  217. this.resolverFactory = new ResolverFactory();
  218. this.infrastructureLogger = undefined;
  219. this.options = options;
  220. this.context = context;
  221. this.requestShortener = new RequestShortener(context, this.root);
  222. this.cache = new Cache();
  223. /** @type {Map<Module, { buildInfo: object, references: WeakMap<Dependency, Module>, memCache: WeakTupleMap }> | undefined} */
  224. this.moduleMemCaches = undefined;
  225. this.compilerPath = "";
  226. /** @type {boolean} */
  227. this.running = false;
  228. /** @type {boolean} */
  229. this.idle = false;
  230. /** @type {boolean} */
  231. this.watchMode = false;
  232. this._backCompat = this.options.experiments.backCompat !== false;
  233. /** @type {Compilation} */
  234. this._lastCompilation = undefined;
  235. /** @type {NormalModuleFactory} */
  236. this._lastNormalModuleFactory = undefined;
  237. /** @private @type {WeakMap<Source, { sizeOnlySource: SizeOnlySource, writtenTo: Map<string, number> }>} */
  238. this._assetEmittingSourceCache = new WeakMap();
  239. /** @private @type {Map<string, number>} */
  240. this._assetEmittingWrittenFiles = new Map();
  241. /** @private @type {Set<string>} */
  242. this._assetEmittingPreviousFiles = new Set();
  243. }
  244. /**
  245. * @param {string} name cache name
  246. * @returns {CacheFacade} the cache facade instance
  247. */
  248. getCache(name) {
  249. return new CacheFacade(
  250. this.cache,
  251. `${this.compilerPath}${name}`,
  252. this.options.output.hashFunction
  253. );
  254. }
  255. /**
  256. * @param {string | (function(): string)} name name of the logger, or function called once to get the logger name
  257. * @returns {Logger} a logger with that name
  258. */
  259. getInfrastructureLogger(name) {
  260. if (!name) {
  261. throw new TypeError(
  262. "Compiler.getInfrastructureLogger(name) called without a name"
  263. );
  264. }
  265. return new Logger(
  266. (type, args) => {
  267. if (typeof name === "function") {
  268. name = name();
  269. if (!name) {
  270. throw new TypeError(
  271. "Compiler.getInfrastructureLogger(name) called with a function not returning a name"
  272. );
  273. }
  274. }
  275. if (this.hooks.infrastructureLog.call(name, type, args) === undefined) {
  276. if (this.infrastructureLogger !== undefined) {
  277. this.infrastructureLogger(name, type, args);
  278. }
  279. }
  280. },
  281. childName => {
  282. if (typeof name === "function") {
  283. if (typeof childName === "function") {
  284. return this.getInfrastructureLogger(() => {
  285. if (typeof name === "function") {
  286. name = name();
  287. if (!name) {
  288. throw new TypeError(
  289. "Compiler.getInfrastructureLogger(name) called with a function not returning a name"
  290. );
  291. }
  292. }
  293. if (typeof childName === "function") {
  294. childName = childName();
  295. if (!childName) {
  296. throw new TypeError(
  297. "Logger.getChildLogger(name) called with a function not returning a name"
  298. );
  299. }
  300. }
  301. return `${name}/${childName}`;
  302. });
  303. } else {
  304. return this.getInfrastructureLogger(() => {
  305. if (typeof name === "function") {
  306. name = name();
  307. if (!name) {
  308. throw new TypeError(
  309. "Compiler.getInfrastructureLogger(name) called with a function not returning a name"
  310. );
  311. }
  312. }
  313. return `${name}/${childName}`;
  314. });
  315. }
  316. } else {
  317. if (typeof childName === "function") {
  318. return this.getInfrastructureLogger(() => {
  319. if (typeof childName === "function") {
  320. childName = childName();
  321. if (!childName) {
  322. throw new TypeError(
  323. "Logger.getChildLogger(name) called with a function not returning a name"
  324. );
  325. }
  326. }
  327. return `${name}/${childName}`;
  328. });
  329. } else {
  330. return this.getInfrastructureLogger(`${name}/${childName}`);
  331. }
  332. }
  333. }
  334. );
  335. }
  336. // TODO webpack 6: solve this in a better way
  337. // e.g. move compilation specific info from Modules into ModuleGraph
  338. _cleanupLastCompilation() {
  339. if (this._lastCompilation !== undefined) {
  340. for (const module of this._lastCompilation.modules) {
  341. ChunkGraph.clearChunkGraphForModule(module);
  342. ModuleGraph.clearModuleGraphForModule(module);
  343. module.cleanupForCache();
  344. }
  345. for (const chunk of this._lastCompilation.chunks) {
  346. ChunkGraph.clearChunkGraphForChunk(chunk);
  347. }
  348. this._lastCompilation = undefined;
  349. }
  350. }
  351. // TODO webpack 6: solve this in a better way
  352. _cleanupLastNormalModuleFactory() {
  353. if (this._lastNormalModuleFactory !== undefined) {
  354. this._lastNormalModuleFactory.cleanupForCache();
  355. this._lastNormalModuleFactory = undefined;
  356. }
  357. }
  358. /**
  359. * @param {WatchOptions} watchOptions the watcher's options
  360. * @param {Callback<Stats>} handler signals when the call finishes
  361. * @returns {Watching} a compiler watcher
  362. */
  363. watch(watchOptions, handler) {
  364. if (this.running) {
  365. return handler(new ConcurrentCompilationError());
  366. }
  367. this.running = true;
  368. this.watchMode = true;
  369. this.watching = new Watching(this, watchOptions, handler);
  370. return this.watching;
  371. }
  372. /**
  373. * @param {Callback<Stats>} callback signals when the call finishes
  374. * @returns {void}
  375. */
  376. run(callback) {
  377. if (this.running) {
  378. return callback(new ConcurrentCompilationError());
  379. }
  380. let logger;
  381. const finalCallback = (err, stats) => {
  382. if (logger) logger.time("beginIdle");
  383. this.idle = true;
  384. this.cache.beginIdle();
  385. this.idle = true;
  386. if (logger) logger.timeEnd("beginIdle");
  387. this.running = false;
  388. if (err) {
  389. this.hooks.failed.call(err);
  390. }
  391. if (callback !== undefined) callback(err, stats);
  392. this.hooks.afterDone.call(stats);
  393. };
  394. const startTime = Date.now();
  395. this.running = true;
  396. const onCompiled = (err, compilation) => {
  397. if (err) return finalCallback(err);
  398. if (this.hooks.shouldEmit.call(compilation) === false) {
  399. compilation.startTime = startTime;
  400. compilation.endTime = Date.now();
  401. const stats = new Stats(compilation);
  402. this.hooks.done.callAsync(stats, err => {
  403. if (err) return finalCallback(err);
  404. return finalCallback(null, stats);
  405. });
  406. return;
  407. }
  408. process.nextTick(() => {
  409. logger = compilation.getLogger("webpack.Compiler");
  410. logger.time("emitAssets");
  411. this.emitAssets(compilation, err => {
  412. logger.timeEnd("emitAssets");
  413. if (err) return finalCallback(err);
  414. if (compilation.hooks.needAdditionalPass.call()) {
  415. compilation.needAdditionalPass = true;
  416. compilation.startTime = startTime;
  417. compilation.endTime = Date.now();
  418. logger.time("done hook");
  419. const stats = new Stats(compilation);
  420. this.hooks.done.callAsync(stats, err => {
  421. logger.timeEnd("done hook");
  422. if (err) return finalCallback(err);
  423. this.hooks.additionalPass.callAsync(err => {
  424. if (err) return finalCallback(err);
  425. this.compile(onCompiled);
  426. });
  427. });
  428. return;
  429. }
  430. logger.time("emitRecords");
  431. this.emitRecords(err => {
  432. logger.timeEnd("emitRecords");
  433. if (err) return finalCallback(err);
  434. compilation.startTime = startTime;
  435. compilation.endTime = Date.now();
  436. logger.time("done hook");
  437. const stats = new Stats(compilation);
  438. this.hooks.done.callAsync(stats, err => {
  439. logger.timeEnd("done hook");
  440. if (err) return finalCallback(err);
  441. this.cache.storeBuildDependencies(
  442. compilation.buildDependencies,
  443. err => {
  444. if (err) return finalCallback(err);
  445. return finalCallback(null, stats);
  446. }
  447. );
  448. });
  449. });
  450. });
  451. });
  452. };
  453. const run = () => {
  454. this.hooks.beforeRun.callAsync(this, err => {
  455. if (err) return finalCallback(err);
  456. this.hooks.run.callAsync(this, err => {
  457. if (err) return finalCallback(err);
  458. this.readRecords(err => {
  459. if (err) return finalCallback(err);
  460. this.compile(onCompiled);
  461. });
  462. });
  463. });
  464. };
  465. if (this.idle) {
  466. this.cache.endIdle(err => {
  467. if (err) return finalCallback(err);
  468. this.idle = false;
  469. run();
  470. });
  471. } else {
  472. run();
  473. }
  474. }
  475. /**
  476. * @param {RunAsChildCallback} callback signals when the call finishes
  477. * @returns {void}
  478. */
  479. runAsChild(callback) {
  480. const startTime = Date.now();
  481. this.compile((err, compilation) => {
  482. if (err) return callback(err);
  483. this.parentCompilation.children.push(compilation);
  484. for (const { name, source, info } of compilation.getAssets()) {
  485. this.parentCompilation.emitAsset(name, source, info);
  486. }
  487. const entries = [];
  488. for (const ep of compilation.entrypoints.values()) {
  489. entries.push(...ep.chunks);
  490. }
  491. compilation.startTime = startTime;
  492. compilation.endTime = Date.now();
  493. return callback(null, entries, compilation);
  494. });
  495. }
  496. purgeInputFileSystem() {
  497. if (this.inputFileSystem && this.inputFileSystem.purge) {
  498. this.inputFileSystem.purge();
  499. }
  500. }
  501. /**
  502. * @param {Compilation} compilation the compilation
  503. * @param {Callback<void>} callback signals when the assets are emitted
  504. * @returns {void}
  505. */
  506. emitAssets(compilation, callback) {
  507. let outputPath;
  508. const emitFiles = err => {
  509. if (err) return callback(err);
  510. const assets = compilation.getAssets();
  511. compilation.assets = { ...compilation.assets };
  512. /** @type {Map<string, { path: string, source: Source, size: number, waiting: { cacheEntry: any, file: string }[] }>} */
  513. const caseInsensitiveMap = new Map();
  514. /** @type {Set<string>} */
  515. const allTargetPaths = new Set();
  516. asyncLib.forEachLimit(
  517. assets,
  518. 15,
  519. ({ name: file, source, info }, callback) => {
  520. let targetFile = file;
  521. let immutable = info.immutable;
  522. const queryStringIdx = targetFile.indexOf("?");
  523. if (queryStringIdx >= 0) {
  524. targetFile = targetFile.substr(0, queryStringIdx);
  525. // We may remove the hash, which is in the query string
  526. // So we recheck if the file is immutable
  527. // This doesn't cover all cases, but immutable is only a performance optimization anyway
  528. immutable =
  529. immutable &&
  530. (includesHash(targetFile, info.contenthash) ||
  531. includesHash(targetFile, info.chunkhash) ||
  532. includesHash(targetFile, info.modulehash) ||
  533. includesHash(targetFile, info.fullhash));
  534. }
  535. const writeOut = err => {
  536. if (err) return callback(err);
  537. const targetPath = join(
  538. this.outputFileSystem,
  539. outputPath,
  540. targetFile
  541. );
  542. allTargetPaths.add(targetPath);
  543. // check if the target file has already been written by this Compiler
  544. const targetFileGeneration =
  545. this._assetEmittingWrittenFiles.get(targetPath);
  546. // create an cache entry for this Source if not already existing
  547. let cacheEntry = this._assetEmittingSourceCache.get(source);
  548. if (cacheEntry === undefined) {
  549. cacheEntry = {
  550. sizeOnlySource: undefined,
  551. writtenTo: new Map()
  552. };
  553. this._assetEmittingSourceCache.set(source, cacheEntry);
  554. }
  555. let similarEntry;
  556. const checkSimilarFile = () => {
  557. const caseInsensitiveTargetPath = targetPath.toLowerCase();
  558. similarEntry = caseInsensitiveMap.get(caseInsensitiveTargetPath);
  559. if (similarEntry !== undefined) {
  560. const { path: other, source: otherSource } = similarEntry;
  561. if (isSourceEqual(otherSource, source)) {
  562. // Size may or may not be available at this point.
  563. // If it's not available add to "waiting" list and it will be updated once available
  564. if (similarEntry.size !== undefined) {
  565. updateWithReplacementSource(similarEntry.size);
  566. } else {
  567. if (!similarEntry.waiting) similarEntry.waiting = [];
  568. similarEntry.waiting.push({ file, cacheEntry });
  569. }
  570. alreadyWritten();
  571. } else {
  572. const err =
  573. new WebpackError(`Prevent writing to file that only differs in casing or query string from already written file.
  574. This will lead to a race-condition and corrupted files on case-insensitive file systems.
  575. ${targetPath}
  576. ${other}`);
  577. err.file = file;
  578. callback(err);
  579. }
  580. return true;
  581. } else {
  582. caseInsensitiveMap.set(
  583. caseInsensitiveTargetPath,
  584. (similarEntry = {
  585. path: targetPath,
  586. source,
  587. size: undefined,
  588. waiting: undefined
  589. })
  590. );
  591. return false;
  592. }
  593. };
  594. /**
  595. * get the binary (Buffer) content from the Source
  596. * @returns {Buffer} content for the source
  597. */
  598. const getContent = () => {
  599. if (typeof source.buffer === "function") {
  600. return source.buffer();
  601. } else {
  602. const bufferOrString = source.source();
  603. if (Buffer.isBuffer(bufferOrString)) {
  604. return bufferOrString;
  605. } else {
  606. return Buffer.from(bufferOrString, "utf8");
  607. }
  608. }
  609. };
  610. const alreadyWritten = () => {
  611. // cache the information that the Source has been already been written to that location
  612. if (targetFileGeneration === undefined) {
  613. const newGeneration = 1;
  614. this._assetEmittingWrittenFiles.set(targetPath, newGeneration);
  615. cacheEntry.writtenTo.set(targetPath, newGeneration);
  616. } else {
  617. cacheEntry.writtenTo.set(targetPath, targetFileGeneration);
  618. }
  619. callback();
  620. };
  621. /**
  622. * Write the file to output file system
  623. * @param {Buffer} content content to be written
  624. * @returns {void}
  625. */
  626. const doWrite = content => {
  627. this.outputFileSystem.writeFile(targetPath, content, err => {
  628. if (err) return callback(err);
  629. // information marker that the asset has been emitted
  630. compilation.emittedAssets.add(file);
  631. // cache the information that the Source has been written to that location
  632. const newGeneration =
  633. targetFileGeneration === undefined
  634. ? 1
  635. : targetFileGeneration + 1;
  636. cacheEntry.writtenTo.set(targetPath, newGeneration);
  637. this._assetEmittingWrittenFiles.set(targetPath, newGeneration);
  638. this.hooks.assetEmitted.callAsync(
  639. file,
  640. {
  641. content,
  642. source,
  643. outputPath,
  644. compilation,
  645. targetPath
  646. },
  647. callback
  648. );
  649. });
  650. };
  651. const updateWithReplacementSource = size => {
  652. updateFileWithReplacementSource(file, cacheEntry, size);
  653. similarEntry.size = size;
  654. if (similarEntry.waiting !== undefined) {
  655. for (const { file, cacheEntry } of similarEntry.waiting) {
  656. updateFileWithReplacementSource(file, cacheEntry, size);
  657. }
  658. }
  659. };
  660. const updateFileWithReplacementSource = (
  661. file,
  662. cacheEntry,
  663. size
  664. ) => {
  665. // Create a replacement resource which only allows to ask for size
  666. // This allows to GC all memory allocated by the Source
  667. // (expect when the Source is stored in any other cache)
  668. if (!cacheEntry.sizeOnlySource) {
  669. cacheEntry.sizeOnlySource = new SizeOnlySource(size);
  670. }
  671. compilation.updateAsset(file, cacheEntry.sizeOnlySource, {
  672. size
  673. });
  674. };
  675. const processExistingFile = stats => {
  676. // skip emitting if it's already there and an immutable file
  677. if (immutable) {
  678. updateWithReplacementSource(stats.size);
  679. return alreadyWritten();
  680. }
  681. const content = getContent();
  682. updateWithReplacementSource(content.length);
  683. // if it exists and content on disk matches content
  684. // skip writing the same content again
  685. // (to keep mtime and don't trigger watchers)
  686. // for a fast negative match file size is compared first
  687. if (content.length === stats.size) {
  688. compilation.comparedForEmitAssets.add(file);
  689. return this.outputFileSystem.readFile(
  690. targetPath,
  691. (err, existingContent) => {
  692. if (
  693. err ||
  694. !content.equals(/** @type {Buffer} */ (existingContent))
  695. ) {
  696. return doWrite(content);
  697. } else {
  698. return alreadyWritten();
  699. }
  700. }
  701. );
  702. }
  703. return doWrite(content);
  704. };
  705. const processMissingFile = () => {
  706. const content = getContent();
  707. updateWithReplacementSource(content.length);
  708. return doWrite(content);
  709. };
  710. // if the target file has already been written
  711. if (targetFileGeneration !== undefined) {
  712. // check if the Source has been written to this target file
  713. const writtenGeneration = cacheEntry.writtenTo.get(targetPath);
  714. if (writtenGeneration === targetFileGeneration) {
  715. // if yes, we may skip writing the file
  716. // if it's already there
  717. // (we assume one doesn't modify files while the Compiler is running, other then removing them)
  718. if (this._assetEmittingPreviousFiles.has(targetPath)) {
  719. // We assume that assets from the last compilation say intact on disk (they are not removed)
  720. compilation.updateAsset(file, cacheEntry.sizeOnlySource, {
  721. size: cacheEntry.sizeOnlySource.size()
  722. });
  723. return callback();
  724. } else {
  725. // Settings immutable will make it accept file content without comparing when file exist
  726. immutable = true;
  727. }
  728. } else if (!immutable) {
  729. if (checkSimilarFile()) return;
  730. // We wrote to this file before which has very likely a different content
  731. // skip comparing and assume content is different for performance
  732. // This case happens often during watch mode.
  733. return processMissingFile();
  734. }
  735. }
  736. if (checkSimilarFile()) return;
  737. if (this.options.output.compareBeforeEmit) {
  738. this.outputFileSystem.stat(targetPath, (err, stats) => {
  739. const exists = !err && stats.isFile();
  740. if (exists) {
  741. processExistingFile(stats);
  742. } else {
  743. processMissingFile();
  744. }
  745. });
  746. } else {
  747. processMissingFile();
  748. }
  749. };
  750. if (targetFile.match(/\/|\\/)) {
  751. const fs = this.outputFileSystem;
  752. const dir = dirname(fs, join(fs, outputPath, targetFile));
  753. mkdirp(fs, dir, writeOut);
  754. } else {
  755. writeOut();
  756. }
  757. },
  758. err => {
  759. // Clear map to free up memory
  760. caseInsensitiveMap.clear();
  761. if (err) {
  762. this._assetEmittingPreviousFiles.clear();
  763. return callback(err);
  764. }
  765. this._assetEmittingPreviousFiles = allTargetPaths;
  766. this.hooks.afterEmit.callAsync(compilation, err => {
  767. if (err) return callback(err);
  768. return callback();
  769. });
  770. }
  771. );
  772. };
  773. this.hooks.emit.callAsync(compilation, err => {
  774. if (err) return callback(err);
  775. outputPath = compilation.getPath(this.outputPath, {});
  776. mkdirp(this.outputFileSystem, outputPath, emitFiles);
  777. });
  778. }
  779. /**
  780. * @param {Callback<void>} callback signals when the call finishes
  781. * @returns {void}
  782. */
  783. emitRecords(callback) {
  784. if (!this.recordsOutputPath) return callback();
  785. const writeFile = () => {
  786. this.outputFileSystem.writeFile(
  787. this.recordsOutputPath,
  788. JSON.stringify(
  789. this.records,
  790. (n, value) => {
  791. if (
  792. typeof value === "object" &&
  793. value !== null &&
  794. !Array.isArray(value)
  795. ) {
  796. const keys = Object.keys(value);
  797. if (!isSorted(keys)) {
  798. return sortObject(value, keys);
  799. }
  800. }
  801. return value;
  802. },
  803. 2
  804. ),
  805. callback
  806. );
  807. };
  808. const recordsOutputPathDirectory = dirname(
  809. this.outputFileSystem,
  810. this.recordsOutputPath
  811. );
  812. if (!recordsOutputPathDirectory) {
  813. return writeFile();
  814. }
  815. mkdirp(this.outputFileSystem, recordsOutputPathDirectory, err => {
  816. if (err) return callback(err);
  817. writeFile();
  818. });
  819. }
  820. /**
  821. * @param {Callback<void>} callback signals when the call finishes
  822. * @returns {void}
  823. */
  824. readRecords(callback) {
  825. if (!this.recordsInputPath) {
  826. this.records = {};
  827. return callback();
  828. }
  829. this.inputFileSystem.stat(this.recordsInputPath, err => {
  830. // It doesn't exist
  831. // We can ignore this.
  832. if (err) return callback();
  833. this.inputFileSystem.readFile(this.recordsInputPath, (err, content) => {
  834. if (err) return callback(err);
  835. try {
  836. this.records = parseJson(content.toString("utf-8"));
  837. } catch (e) {
  838. e.message = "Cannot parse records: " + e.message;
  839. return callback(e);
  840. }
  841. return callback();
  842. });
  843. });
  844. }
  845. /**
  846. * @param {Compilation} compilation the compilation
  847. * @param {string} compilerName the compiler's name
  848. * @param {number} compilerIndex the compiler's index
  849. * @param {OutputOptions=} outputOptions the output options
  850. * @param {WebpackPluginInstance[]=} plugins the plugins to apply
  851. * @returns {Compiler} a child compiler
  852. */
  853. createChildCompiler(
  854. compilation,
  855. compilerName,
  856. compilerIndex,
  857. outputOptions,
  858. plugins
  859. ) {
  860. const childCompiler = new Compiler(this.context, {
  861. ...this.options,
  862. output: {
  863. ...this.options.output,
  864. ...outputOptions
  865. }
  866. });
  867. childCompiler.name = compilerName;
  868. childCompiler.outputPath = this.outputPath;
  869. childCompiler.inputFileSystem = this.inputFileSystem;
  870. childCompiler.outputFileSystem = null;
  871. childCompiler.resolverFactory = this.resolverFactory;
  872. childCompiler.modifiedFiles = this.modifiedFiles;
  873. childCompiler.removedFiles = this.removedFiles;
  874. childCompiler.fileTimestamps = this.fileTimestamps;
  875. childCompiler.contextTimestamps = this.contextTimestamps;
  876. childCompiler.fsStartTime = this.fsStartTime;
  877. childCompiler.cache = this.cache;
  878. childCompiler.compilerPath = `${this.compilerPath}${compilerName}|${compilerIndex}|`;
  879. childCompiler._backCompat = this._backCompat;
  880. const relativeCompilerName = makePathsRelative(
  881. this.context,
  882. compilerName,
  883. this.root
  884. );
  885. if (!this.records[relativeCompilerName]) {
  886. this.records[relativeCompilerName] = [];
  887. }
  888. if (this.records[relativeCompilerName][compilerIndex]) {
  889. childCompiler.records = this.records[relativeCompilerName][compilerIndex];
  890. } else {
  891. this.records[relativeCompilerName].push((childCompiler.records = {}));
  892. }
  893. childCompiler.parentCompilation = compilation;
  894. childCompiler.root = this.root;
  895. if (Array.isArray(plugins)) {
  896. for (const plugin of plugins) {
  897. plugin.apply(childCompiler);
  898. }
  899. }
  900. for (const name in this.hooks) {
  901. if (
  902. ![
  903. "make",
  904. "compile",
  905. "emit",
  906. "afterEmit",
  907. "invalid",
  908. "done",
  909. "thisCompilation"
  910. ].includes(name)
  911. ) {
  912. if (childCompiler.hooks[name]) {
  913. childCompiler.hooks[name].taps = this.hooks[name].taps.slice();
  914. }
  915. }
  916. }
  917. compilation.hooks.childCompiler.call(
  918. childCompiler,
  919. compilerName,
  920. compilerIndex
  921. );
  922. return childCompiler;
  923. }
  924. isChild() {
  925. return !!this.parentCompilation;
  926. }
  927. createCompilation(params) {
  928. this._cleanupLastCompilation();
  929. return (this._lastCompilation = new Compilation(this, params));
  930. }
  931. /**
  932. * @param {CompilationParams} params the compilation parameters
  933. * @returns {Compilation} the created compilation
  934. */
  935. newCompilation(params) {
  936. const compilation = this.createCompilation(params);
  937. compilation.name = this.name;
  938. compilation.records = this.records;
  939. this.hooks.thisCompilation.call(compilation, params);
  940. this.hooks.compilation.call(compilation, params);
  941. return compilation;
  942. }
  943. createNormalModuleFactory() {
  944. this._cleanupLastNormalModuleFactory();
  945. const normalModuleFactory = new NormalModuleFactory({
  946. context: this.options.context,
  947. fs: this.inputFileSystem,
  948. resolverFactory: this.resolverFactory,
  949. options: this.options.module,
  950. associatedObjectForCache: this.root,
  951. layers: this.options.experiments.layers
  952. });
  953. this._lastNormalModuleFactory = normalModuleFactory;
  954. this.hooks.normalModuleFactory.call(normalModuleFactory);
  955. return normalModuleFactory;
  956. }
  957. createContextModuleFactory() {
  958. const contextModuleFactory = new ContextModuleFactory(this.resolverFactory);
  959. this.hooks.contextModuleFactory.call(contextModuleFactory);
  960. return contextModuleFactory;
  961. }
  962. newCompilationParams() {
  963. const params = {
  964. normalModuleFactory: this.createNormalModuleFactory(),
  965. contextModuleFactory: this.createContextModuleFactory()
  966. };
  967. return params;
  968. }
  969. /**
  970. * @param {Callback<Compilation>} callback signals when the compilation finishes
  971. * @returns {void}
  972. */
  973. compile(callback) {
  974. const params = this.newCompilationParams();
  975. this.hooks.beforeCompile.callAsync(params, err => {
  976. if (err) return callback(err);
  977. this.hooks.compile.call(params);
  978. const compilation = this.newCompilation(params);
  979. const logger = compilation.getLogger("webpack.Compiler");
  980. logger.time("make hook");
  981. this.hooks.make.callAsync(compilation, err => {
  982. logger.timeEnd("make hook");
  983. if (err) return callback(err);
  984. logger.time("finish make hook");
  985. this.hooks.finishMake.callAsync(compilation, err => {
  986. logger.timeEnd("finish make hook");
  987. if (err) return callback(err);
  988. process.nextTick(() => {
  989. logger.time("finish compilation");
  990. compilation.finish(err => {
  991. logger.timeEnd("finish compilation");
  992. if (err) return callback(err);
  993. logger.time("seal compilation");
  994. compilation.seal(err => {
  995. logger.timeEnd("seal compilation");
  996. if (err) return callback(err);
  997. logger.time("afterCompile hook");
  998. this.hooks.afterCompile.callAsync(compilation, err => {
  999. logger.timeEnd("afterCompile hook");
  1000. if (err) return callback(err);
  1001. return callback(null, compilation);
  1002. });
  1003. });
  1004. });
  1005. });
  1006. });
  1007. });
  1008. });
  1009. }
  1010. /**
  1011. * @param {Callback<void>} callback signals when the compiler closes
  1012. * @returns {void}
  1013. */
  1014. close(callback) {
  1015. if (this.watching) {
  1016. // When there is still an active watching, close this first
  1017. this.watching.close(err => {
  1018. this.close(callback);
  1019. });
  1020. return;
  1021. }
  1022. this.hooks.shutdown.callAsync(err => {
  1023. if (err) return callback(err);
  1024. // Get rid of reference to last compilation to avoid leaking memory
  1025. // We can't run this._cleanupLastCompilation() as the Stats to this compilation
  1026. // might be still in use. We try to get rid of the reference to the cache instead.
  1027. this._lastCompilation = undefined;
  1028. this._lastNormalModuleFactory = undefined;
  1029. this.cache.shutdown(callback);
  1030. });
  1031. }
  1032. }
  1033. module.exports = Compiler;