mirror of https://github.com/webpack/webpack.git
				
				
				
			
		
			
				
	
	
		
			153 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
			
		
		
	
	
			153 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
| /*
 | |
| 	MIT License http://www.opensource.org/licenses/mit-license.php
 | |
| 	Author Tobias Koppers @sokra
 | |
| */
 | |
| 
 | |
| "use strict";
 | |
| 
 | |
| const Cache = require("../Cache");
 | |
| 
 | |
| /** @typedef {import("../Compiler")} Compiler */
 | |
| 
 | |
| const BUILD_DEPENDENCIES_KEY = Symbol();
 | |
| 
 | |
| class IdleFileCachePlugin {
 | |
| 	/**
 | |
| 	 * @param {TODO} strategy cache strategy
 | |
| 	 * @param {number} idleTimeout timeout
 | |
| 	 * @param {number} idleTimeoutForInitialStore initial timeout
 | |
| 	 */
 | |
| 	constructor(strategy, idleTimeout, idleTimeoutForInitialStore) {
 | |
| 		this.strategy = strategy;
 | |
| 		this.idleTimeout = idleTimeout;
 | |
| 		this.idleTimeoutForInitialStore = idleTimeoutForInitialStore;
 | |
| 	}
 | |
| 
 | |
| 	/**
 | |
| 	 * @param {Compiler} compiler Webpack compiler
 | |
| 	 * @returns {void}
 | |
| 	 */
 | |
| 	apply(compiler) {
 | |
| 		const strategy = this.strategy;
 | |
| 		const idleTimeout = this.idleTimeout;
 | |
| 		const idleTimeoutForInitialStore = Math.min(
 | |
| 			idleTimeout,
 | |
| 			this.idleTimeoutForInitialStore
 | |
| 		);
 | |
| 
 | |
| 		const resolvedPromise = Promise.resolve();
 | |
| 
 | |
| 		/** @type {Map<string | typeof BUILD_DEPENDENCIES_KEY, () => Promise>} */
 | |
| 		const pendingIdleTasks = new Map();
 | |
| 
 | |
| 		compiler.cache.hooks.store.tap(
 | |
| 			{ name: "IdleFileCachePlugin", stage: Cache.STAGE_DISK },
 | |
| 			(identifier, etag, data) => {
 | |
| 				pendingIdleTasks.set(identifier, () =>
 | |
| 					strategy.store(identifier, etag, data)
 | |
| 				);
 | |
| 			}
 | |
| 		);
 | |
| 
 | |
| 		compiler.cache.hooks.get.tapPromise(
 | |
| 			{ name: "IdleFileCachePlugin", stage: Cache.STAGE_DISK },
 | |
| 			(identifier, etag, gotHandlers) => {
 | |
| 				return strategy.restore(identifier, etag).then(cacheEntry => {
 | |
| 					if (cacheEntry === undefined) {
 | |
| 						gotHandlers.push((result, callback) => {
 | |
| 							if (result !== undefined) {
 | |
| 								pendingIdleTasks.set(identifier, () =>
 | |
| 									strategy.store(identifier, etag, result)
 | |
| 								);
 | |
| 							}
 | |
| 							callback();
 | |
| 						});
 | |
| 					} else {
 | |
| 						return cacheEntry;
 | |
| 					}
 | |
| 				});
 | |
| 			}
 | |
| 		);
 | |
| 
 | |
| 		compiler.cache.hooks.storeBuildDependencies.tap(
 | |
| 			{ name: "IdleFile", stage: Cache.STAGE_DISK },
 | |
| 			dependencies => {
 | |
| 				pendingIdleTasks.set(BUILD_DEPENDENCIES_KEY, () =>
 | |
| 					strategy.storeBuildDependencies(dependencies)
 | |
| 				);
 | |
| 			}
 | |
| 		);
 | |
| 
 | |
| 		compiler.cache.hooks.shutdown.tapPromise(
 | |
| 			{ name: "IdleFileCachePlugin", stage: Cache.STAGE_DISK },
 | |
| 			() => {
 | |
| 				if (idleTimer) {
 | |
| 					clearTimeout(idleTimer);
 | |
| 					idleTimer = undefined;
 | |
| 				}
 | |
| 				isIdle = false;
 | |
| 				const promises = Array.from(pendingIdleTasks.values()).map(fn => fn());
 | |
| 				pendingIdleTasks.clear();
 | |
| 				if (currentIdlePromise !== undefined) promises.push(currentIdlePromise);
 | |
| 				let promise = Promise.all(promises);
 | |
| 				return promise.then(() => strategy.afterAllStored());
 | |
| 			}
 | |
| 		);
 | |
| 
 | |
| 		let currentIdlePromise;
 | |
| 		let isIdle = false;
 | |
| 		let isInitialStore = true;
 | |
| 		const processIdleTasks = () => {
 | |
| 			if (isIdle) {
 | |
| 				if (pendingIdleTasks.size > 0) {
 | |
| 					const promises = [];
 | |
| 					const maxTime = Date.now() + 100;
 | |
| 					let maxCount = 100;
 | |
| 					for (const [filename, factory] of pendingIdleTasks) {
 | |
| 						pendingIdleTasks.delete(filename);
 | |
| 						promises.push(factory());
 | |
| 						if (maxCount-- <= 0 || Date.now() > maxTime) break;
 | |
| 					}
 | |
| 					currentIdlePromise = Promise.all(promises).then(() => {
 | |
| 						currentIdlePromise = undefined;
 | |
| 					});
 | |
| 					currentIdlePromise.then(() => {
 | |
| 						// Allow to exit the process inbetween
 | |
| 						setTimeout(processIdleTasks, 0).unref();
 | |
| 					});
 | |
| 					return;
 | |
| 				}
 | |
| 				currentIdlePromise = strategy.afterAllStored();
 | |
| 				isInitialStore = false;
 | |
| 			}
 | |
| 		};
 | |
| 		let idleTimer = undefined;
 | |
| 		compiler.cache.hooks.beginIdle.tap(
 | |
| 			{ name: "IdleFileCachePlugin", stage: Cache.STAGE_DISK },
 | |
| 			() => {
 | |
| 				idleTimer = setTimeout(
 | |
| 					() => {
 | |
| 						idleTimer = undefined;
 | |
| 						isIdle = true;
 | |
| 						resolvedPromise.then(processIdleTasks);
 | |
| 					},
 | |
| 					isInitialStore ? idleTimeoutForInitialStore : idleTimeout
 | |
| 				);
 | |
| 				idleTimer.unref();
 | |
| 			}
 | |
| 		);
 | |
| 		compiler.cache.hooks.endIdle.tap(
 | |
| 			{ name: "IdleFileCachePlugin", stage: Cache.STAGE_DISK },
 | |
| 			() => {
 | |
| 				if (idleTimer) {
 | |
| 					clearTimeout(idleTimer);
 | |
| 					idleTimer = undefined;
 | |
| 				}
 | |
| 				isIdle = false;
 | |
| 			}
 | |
| 		);
 | |
| 	}
 | |
| }
 | |
| 
 | |
| module.exports = IdleFileCachePlugin;
 |