caching-compiler

v2.0.0-alpha300.17Published 6 months ago

caching-compiler

Source code of released version | Source code of development version


Caching superclasses for Plugin.registerCompiler. CachingCompiler and MultiFileCachingCompiler are classes designed to be used with Plugin.registerCompiler. They implement in-memory and on-disk caches for the files that they process.

CachingCompiler is for compilers whose files can be processed independently of each other (ie, editing one such file only requires that file to be rebuilt). MultiFileCachingCompiler is for compilers whose files can depend on each other, such as CSS preprocessors with @import directives.

You should subclass CachingCompiler and define the following methods: getCacheKey, compileOneFile, addCompileResult, and compileResultSize.

CompileResult

The data that is cached for each file is of a type that is (implicitly) defined by your subclass. caching-compiler refers to this type as CompileResult, but this isn't a single type: it's up to your subclass to decide what type of data this is. You should document what your subclass's CompileResult type is.

Example usage

Your subclass's compiler should call the superclass compiler specifying the compiler name (used to generate environment variables for debugging and tweaking in-memory cache size) and the default cache size.

By default, CachingCompiler processes each file in "parallel". That is, if it needs to yield to read from the disk cache, or if getCacheKey, compileOneFile, or addCompileResult yields, it will start processing the next few files. To set how many files can be processed in parallel (including setting it to 1 if your subclass doesn't support any parallelism), pass the maxParallelism option to the superclass constructor.

For example (using ES2015 via the ecmascript package):

1// CompileResult is a {source, sourceMap} object.
2class AwesomeCompiler extends CachingCompiler {
3  constructor() {
4    super({
5      compilerName: 'awesome',
6      defaultCacheSize: 1024*1024*10,
7    });
8  }
9  getCacheKey(inputFile) {
10    return inputFile.getSourceHash();
11  }
12  compileResultSize(compileResult) {
13    return compileResult.source.length + compileResult.sourceMap.length;
14  }
15  compileOneFile(inputFile) {
16    return Awesomifier.compile(inputFile.getContentsAsString());
17  }
18  addCompileResult(inputFile, compileResult) {
19    inputFile.addJavaScript({
20      path: inputFile.getPathInPackage() + '.js',
21      sourcePath: inputFile.getPathInPackage(),
22      data: compileResult.source,
23      sourceMap: compileResult.sourceMap,
24    });
25  }
26}
27Plugin.registerCompile({
28  extensions: ['awesome'],
29}, () => new AwesomeCompiler());