webpack/lib/Watching.js

291 lines
7.3 KiB
JavaScript
Raw Normal View History

2017-12-31 23:19:18 +08:00
/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
2018-07-30 23:08:51 +08:00
2017-12-31 23:19:18 +08:00
"use strict";
const Stats = require("./Stats");
2018-12-10 18:34:59 +08:00
/** @typedef {import("../declarations/WebpackOptions").WatchOptions} WatchOptions */
/** @typedef {import("./Compilation")} Compilation */
/** @typedef {import("./Compiler")} Compiler */
2018-12-10 18:34:59 +08:00
/** @typedef {import("./Stats")} Stats */
/**
* @template T
* @callback Callback
* @param {Error=} err
* @param {T=} result
*/
2017-12-31 23:19:18 +08:00
class Watching {
/**
* @param {Compiler} compiler the compiler
2018-12-10 18:34:59 +08:00
* @param {WatchOptions} watchOptions options
* @param {Callback<Stats>} handler completion handler
*/
2017-12-31 23:19:18 +08:00
constructor(compiler, watchOptions, handler) {
this.startTime = null;
this.invalid = false;
this.handler = handler;
2018-12-10 18:34:59 +08:00
/** @type {Callback<void>[]} */
2017-12-31 23:19:18 +08:00
this.callbacks = [];
this.closed = false;
this.suspended = false;
2018-02-25 09:00:20 +08:00
if (typeof watchOptions === "number") {
2017-12-31 23:19:18 +08:00
this.watchOptions = {
aggregateTimeout: watchOptions
};
2018-02-25 09:00:20 +08:00
} else if (watchOptions && typeof watchOptions === "object") {
this.watchOptions = { ...watchOptions };
2017-12-31 23:19:18 +08:00
} else {
this.watchOptions = {};
}
2018-02-25 09:00:20 +08:00
this.watchOptions.aggregateTimeout =
this.watchOptions.aggregateTimeout || 200;
2017-12-31 23:19:18 +08:00
this.compiler = compiler;
this.running = true;
this.watcher = undefined;
this.pausedWatcher = undefined;
this._done = this._done.bind(this);
2017-12-31 23:19:18 +08:00
this.compiler.readRecords(err => {
2018-02-25 09:00:20 +08:00
if (err) return this._done(err);
2017-12-31 23:19:18 +08:00
this._go();
});
}
_go() {
this.startTime = Date.now();
this.running = true;
this.invalid = false;
this.compiler.cache.endIdle(err => {
2018-02-25 09:00:20 +08:00
if (err) return this._done(err);
this.compiler.hooks.watchRun.callAsync(this.compiler, err => {
2018-02-25 09:00:20 +08:00
if (err) return this._done(err);
const onCompiled = (err, compilation) => {
2018-02-25 09:00:20 +08:00
if (err) return this._done(err);
if (this.invalid) return this._done();
2017-12-31 23:19:18 +08:00
if (this.compiler.hooks.shouldEmit.call(compilation) === false) {
return this._done(null, compilation);
}
process.nextTick(() => {
2019-07-26 19:44:28 +08:00
const logger = compilation.getLogger("webpack.Compiler");
2019-07-26 17:09:14 +08:00
logger.time("emitAssets");
this.compiler.emitAssets(compilation, err => {
2019-07-26 17:09:14 +08:00
logger.timeEnd("emitAssets");
if (err) return this._done(err);
if (this.invalid) return this._done();
2017-12-31 23:19:18 +08:00
2019-07-26 17:09:14 +08:00
logger.time("emitRecords");
this.compiler.emitRecords(err => {
2019-07-26 17:09:14 +08:00
logger.timeEnd("emitRecords");
if (err) return this._done(err);
2018-01-25 20:56:50 +08:00
if (compilation.hooks.needAdditionalPass.call()) {
compilation.needAdditionalPass = true;
const stats = new Stats(compilation);
stats.startTime = this.startTime;
stats.endTime = Date.now();
2019-07-26 17:09:14 +08:00
logger.time("done hook");
this.compiler.hooks.done.callAsync(stats, err => {
2019-07-26 17:09:14 +08:00
logger.timeend("done hook");
if (err) return this._done(err);
this.compiler.hooks.additionalPass.callAsync(err => {
if (err) return this._done(err);
this.compiler.compile(onCompiled);
});
});
return;
}
return this._done(null, compilation);
});
});
2017-12-31 23:19:18 +08:00
});
};
this.compiler.compile(onCompiled);
});
2017-12-31 23:19:18 +08:00
});
}
2018-12-10 18:34:59 +08:00
/**
* @param {Compilation} compilation the compilation
* @returns {Stats} the compilation stats
*/
2017-12-31 23:19:18 +08:00
_getStats(compilation) {
const stats = new Stats(compilation);
stats.startTime = this.startTime;
stats.endTime = Date.now();
return stats;
}
2018-12-10 18:34:59 +08:00
/**
* @param {Error=} err an optional error
* @param {Compilation=} compilation the compilation
* @returns {void}
*/
2017-12-31 23:19:18 +08:00
_done(err, compilation) {
this.running = false;
2018-02-25 09:00:20 +08:00
if (this.invalid) return this._go();
2017-12-31 23:19:18 +08:00
const stats = compilation ? this._getStats(compilation) : null;
2018-02-25 09:00:20 +08:00
if (err) {
2017-12-31 23:19:18 +08:00
this.compiler.hooks.failed.call(err);
this.compiler.cache.beginIdle();
2017-12-31 23:19:18 +08:00
this.handler(err, stats);
return;
}
2019-07-26 17:09:14 +08:00
const logger = compilation.getLogger("webpack.Watching");
logger.time("done hook");
2018-01-25 20:56:50 +08:00
this.compiler.hooks.done.callAsync(stats, () => {
2019-07-26 17:09:14 +08:00
logger.timeEnd("done hook");
logger.time("beginIdle");
this.compiler.cache.beginIdle();
2019-07-26 17:09:14 +08:00
logger.timeEnd("beginIdle");
2018-01-25 20:56:50 +08:00
this.handler(null, stats);
process.nextTick(() => {
if (!this.closed) {
this.watch(
compilation.fileDependencies,
compilation.contextDependencies,
compilation.missingDependencies
);
}
});
2018-02-25 09:00:20 +08:00
for (const cb of this.callbacks) cb();
2018-01-25 20:56:50 +08:00
this.callbacks.length = 0;
this.compiler.hooks.afterDone.call(stats);
2018-01-25 20:56:50 +08:00
});
2017-12-31 23:19:18 +08:00
}
/**
* @param {Iterable<string>} files watched files
* @param {Iterable<string>} dirs watched directories
* @param {Iterable<string>} missing watched existance entries
* @returns {void}
*/
2017-12-31 23:19:18 +08:00
watch(files, dirs, missing) {
this.pausedWatcher = null;
2018-02-25 09:00:20 +08:00
this.watcher = this.compiler.watchFileSystem.watch(
files,
dirs,
missing,
this.startTime,
this.watchOptions,
(
err,
fileTimeInfoEntries,
contextTimeInfoEntries,
changedFiles,
removedFiles
) => {
2018-02-25 09:00:20 +08:00
this.pausedWatcher = this.watcher;
this.watcher = null;
if (err) {
this.compiler.modifiedFiles = undefined;
this.compiler.removedFiles = undefined;
this.compiler.fileTimestamps = undefined;
this.compiler.contextTimestamps = undefined;
return this.handler(err);
}
this.compiler.fileTimestamps = fileTimeInfoEntries;
this.compiler.contextTimestamps = contextTimeInfoEntries;
this.compiler.removedFiles = removedFiles;
this.compiler.modifiedFiles = changedFiles;
if (!this.suspended) {
this._invalidate();
}
2018-02-25 09:00:20 +08:00
},
(fileName, changeTime) => {
this.compiler.hooks.invalid.call(fileName, changeTime);
}
);
2017-12-31 23:19:18 +08:00
}
2018-12-10 18:34:59 +08:00
/**
* @param {Callback<void>=} callback signals when the build is invalidated
* @returns {void}
*/
2017-12-31 23:19:18 +08:00
invalidate(callback) {
2018-02-25 09:00:20 +08:00
if (callback) {
2017-12-31 23:19:18 +08:00
this.callbacks.push(callback);
}
2018-02-25 09:00:20 +08:00
if (this.watcher) {
this.compiler.modifiedFiles = this.watcher.aggregatedChanges;
this.compiler.removedFiles = this.watcher.aggregatedRemovals;
this.compiler.fileTimestamps = this.watcher.getFileTimeInfoEntries();
this.compiler.contextTimestamps = this.watcher.getContextTimeInfoEntries();
}
2018-12-10 18:34:59 +08:00
this._invalidate();
}
_invalidate() {
2018-02-25 09:00:20 +08:00
if (this.watcher) {
2017-12-31 23:19:18 +08:00
this.pausedWatcher = this.watcher;
this.watcher.pause();
this.watcher = null;
}
2019-06-03 23:49:22 +08:00
2018-02-25 09:00:20 +08:00
if (this.running) {
2017-12-31 23:19:18 +08:00
this.invalid = true;
} else {
this._go();
}
}
suspend() {
this.suspended = true;
2019-06-03 23:49:22 +08:00
this.invalid = false;
}
resume() {
if (this.suspended) {
this.suspended = false;
this._invalidate();
}
}
2018-12-10 18:34:59 +08:00
/**
* @param {Callback<void>} callback signals when the watcher is closed
* @returns {void}
*/
2017-12-31 23:19:18 +08:00
close(callback) {
const finalCallback = () => {
this.compiler.running = false;
this.compiler.watchMode = false;
this.compiler.modifiedFiles = undefined;
this.compiler.removedFiles = undefined;
2018-09-28 03:28:07 +08:00
this.compiler.fileTimestamps = undefined;
this.compiler.contextTimestamps = undefined;
this.compiler.cache.shutdown(err => {
this.compiler.hooks.watchClose.call();
if (callback !== undefined) callback(err);
});
};
2017-12-31 23:19:18 +08:00
this.closed = true;
2018-02-25 09:00:20 +08:00
if (this.watcher) {
2017-12-31 23:19:18 +08:00
this.watcher.close();
this.watcher = null;
}
2018-02-25 09:00:20 +08:00
if (this.pausedWatcher) {
2017-12-31 23:19:18 +08:00
this.pausedWatcher.close();
this.pausedWatcher = null;
}
2018-02-25 09:00:20 +08:00
if (this.running) {
2017-12-31 23:19:18 +08:00
this.invalid = true;
this._done = finalCallback;
2017-12-31 23:19:18 +08:00
} else {
finalCallback();
2017-12-31 23:19:18 +08:00
}
}
}
module.exports = Watching;