-
Notifications
You must be signed in to change notification settings - Fork 12k
/
Copy pathplugin.ts
427 lines (375 loc) · 15.2 KB
/
plugin.ts
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
import * as fs from 'fs';
import * as path from 'path';
import * as ts from 'typescript';
import {__NGTOOLS_PRIVATE_API_2} from '@angular/compiler-cli';
import {AngularCompilerOptions} from '@angular/tsc-wrapped';
const ContextElementDependency = require('webpack/lib/dependencies/ContextElementDependency');
import {WebpackResourceLoader} from './resource_loader';
import {WebpackCompilerHost} from './compiler_host';
import {resolveEntryModuleFromMain} from './entry_resolver';
import {Tapable} from './webpack';
import {PathsPlugin} from './paths-plugin';
import {findLazyRoutes, LazyRouteMap} from './lazy_routes';
/**
* Option Constants
*/
export interface AotPluginOptions {
tsConfigPath: string;
basePath?: string;
entryModule?: string;
mainPath?: string;
typeChecking?: boolean;
skipCodeGeneration?: boolean;
i18nFile?: string;
i18nFormat?: string;
locale?: string;
// Use tsconfig to include path globs.
exclude?: string | string[];
}
export class AotPlugin implements Tapable {
private _compilerOptions: ts.CompilerOptions;
private _angularCompilerOptions: AngularCompilerOptions;
private _program: ts.Program;
private _rootFilePath: string[];
private _compilerHost: WebpackCompilerHost;
private _resourceLoader: WebpackResourceLoader;
private _lazyRoutes: LazyRouteMap = Object.create(null);
private _tsConfigPath: string;
private _entryModule: string;
private _donePromise: Promise<void>;
private _compiler: any = null;
private _compilation: any = null;
private _typeCheck = true;
private _skipCodeGeneration = false;
private _basePath: string;
private _genDir: string;
private _i18nFile: string;
private _i18nFormat: string;
private _locale: string;
private _diagnoseFiles: { [path: string]: boolean } = {};
private _firstRun = true;
constructor(options: AotPluginOptions) {
this._setupOptions(options);
}
get basePath() { return this._basePath; }
get compilation() { return this._compilation; }
get compilerHost() { return this._compilerHost; }
get compilerOptions() { return this._compilerOptions; }
get done() { return this._donePromise; }
get entryModule() {
const splitted = this._entryModule.split('#');
const path = splitted[0];
const className = splitted[1] || 'default';
return {path, className};
}
get genDir() { return this._genDir; }
get program() { return this._program; }
get skipCodeGeneration() { return this._skipCodeGeneration; }
get typeCheck() { return this._typeCheck; }
get i18nFile() { return this._i18nFile; }
get i18nFormat() { return this._i18nFormat; }
get locale() { return this._locale; }
get firstRun() { return this._firstRun; }
private _setupOptions(options: AotPluginOptions) {
// Fill in the missing options.
if (!options.hasOwnProperty('tsConfigPath')) {
throw new Error('Must specify "tsConfigPath" in the configuration of @ngtools/webpack.');
}
this._tsConfigPath = options.tsConfigPath;
// Check the base path.
const maybeBasePath = path.resolve(process.cwd(), this._tsConfigPath);
let basePath = maybeBasePath;
if (fs.statSync(maybeBasePath).isFile()) {
basePath = path.dirname(basePath);
}
if (options.hasOwnProperty('basePath')) {
basePath = path.resolve(process.cwd(), options.basePath);
}
let tsConfigJson: any = null;
try {
tsConfigJson = JSON.parse(fs.readFileSync(this._tsConfigPath, 'utf8'));
} catch (err) {
throw new Error(`An error happened while parsing ${this._tsConfigPath} JSON: ${err}.`);
}
const tsConfig = ts.parseJsonConfigFileContent(
tsConfigJson, ts.sys, basePath, null, this._tsConfigPath);
let fileNames = tsConfig.fileNames;
if (options.hasOwnProperty('exclude')) {
let exclude: string[] = typeof options.exclude == 'string'
? [options.exclude as string] : (options.exclude as string[]);
exclude.forEach((pattern: string) => {
const basePathPattern = '(' + basePath.replace(/\\/g, '/')
.replace(/[\-\[\]\/{}()+?.\\^$|*]/g, '\\$&') + ')?';
pattern = pattern
// Replace windows path separators with forward slashes.
.replace(/\\/g, '/')
// Escape characters that are used normally in regexes, except stars.
.replace(/[\-\[\]{}()+?.\\^$|]/g, '\\$&')
// Two stars replacement.
.replace(/\*\*/g, '(?:.*)')
// One star replacement.
.replace(/\*/g, '(?:[^/]*)')
// Escape characters from the basePath and make sure it's forward slashes.
.replace(/^/, basePathPattern);
const re = new RegExp('^' + pattern + '$');
fileNames = fileNames.filter(x => !x.replace(/\\/g, '/').match(re));
});
} else {
fileNames = fileNames.filter(fileName => !/\.spec\.ts$/.test(fileName));
}
this._rootFilePath = fileNames;
// Check the genDir. We generate a default gendir that's under basepath; it will generate
// a `node_modules` directory and because of that we don't want TypeScript resolution to
// resolve to that directory but the real `node_modules`.
let genDir = path.join(basePath, '$$_gendir');
this._compilerOptions = tsConfig.options;
this._angularCompilerOptions = Object.assign(
{ genDir },
this._compilerOptions,
tsConfig.raw['angularCompilerOptions'],
{ basePath }
);
if (this._angularCompilerOptions.hasOwnProperty('genDir')) {
genDir = path.resolve(basePath, this._angularCompilerOptions.genDir);
this._angularCompilerOptions.genDir = genDir;
}
this._basePath = basePath;
this._genDir = genDir;
if (options.hasOwnProperty('typeChecking')) {
this._typeCheck = options.typeChecking;
}
if (options.hasOwnProperty('skipCodeGeneration')) {
this._skipCodeGeneration = options.skipCodeGeneration;
}
this._compilerHost = new WebpackCompilerHost(this._compilerOptions, this._basePath);
this._program = ts.createProgram(
this._rootFilePath, this._compilerOptions, this._compilerHost);
// We enable caching of the filesystem in compilerHost _after_ the program has been created,
// because we don't want SourceFile instances to be cached past this point.
this._compilerHost.enableCaching();
if (options.entryModule) {
this._entryModule = options.entryModule;
} else if ((tsConfig.raw['angularCompilerOptions'] as any)
&& (tsConfig.raw['angularCompilerOptions'] as any).entryModule) {
this._entryModule = path.resolve(this._basePath,
(tsConfig.raw['angularCompilerOptions'] as any).entryModule);
}
// still no _entryModule? => try to resolve from mainPath
if (!this._entryModule && options.mainPath) {
this._entryModule = resolveEntryModuleFromMain(options.mainPath, this._compilerHost,
this._program);
}
if (options.hasOwnProperty('i18nFile')) {
this._i18nFile = options.i18nFile;
}
if (options.hasOwnProperty('i18nFormat')) {
this._i18nFormat = options.i18nFormat;
}
if (options.hasOwnProperty('locale')) {
this._locale = options.locale;
}
}
private _findLazyRoutesInAst(): LazyRouteMap {
const result: LazyRouteMap = Object.create(null);
const changedFilePaths = this._compilerHost.getChangedFilePaths();
for (const filePath of changedFilePaths) {
const fileLazyRoutes = findLazyRoutes(filePath, this._program, this._compilerHost);
for (const routeKey of Object.keys(fileLazyRoutes)) {
const route = fileLazyRoutes[routeKey];
if (routeKey in this._lazyRoutes) {
if (route === null) {
this._lazyRoutes[routeKey] = null;
} else if (this._lazyRoutes[routeKey] !== route) {
this._compilation.warnings.push(
new Error(`Duplicated path in loadChildren detected during a rebuild. `
+ `We will take the latest version detected and override it to save rebuild time. `
+ `You should perform a full build to validate that your routes don't overlap.`)
);
}
} else {
result[routeKey] = route;
}
}
}
return result;
}
// registration hook for webpack plugin
apply(compiler: any) {
this._compiler = compiler;
compiler.plugin('invalid', (fileName: string) => {
// Turn this off as soon as a file becomes invalid and we're about to start a rebuild.
this._firstRun = false;
this._diagnoseFiles = {};
this._compilerHost.invalidate(fileName);
});
// Add lazy modules to the context module for @angular/core/src/linker
compiler.plugin('context-module-factory', (cmf: any) => {
cmf.plugin('after-resolve', (result: any, callback: (err?: any, request?: any) => void) => {
if (!result) {
return callback();
}
// alter only request from @angular/core/src/linker
if (!result.resource.endsWith(path.join('@angular/core/src/linker'))) {
return callback(null, result);
}
this.done.then(() => {
result.resource = this.skipCodeGeneration ? this.basePath : this.genDir;
result.recursive = true;
result.dependencies.forEach((d: any) => d.critical = false);
result.resolveDependencies = (p1: any, p2: any, p3: any, p4: RegExp, cb: any ) => {
const dependencies = Object.keys(this._lazyRoutes)
.map((key) => {
const value = this._lazyRoutes[key];
if (value !== null) {
return new ContextElementDependency(value, key);
} else {
return null;
}
})
.filter(x => !!x);
cb(null, dependencies);
};
return callback(null, result);
}, () => callback(null))
.catch(err => callback(err));
});
});
compiler.plugin('make', (compilation: any, cb: any) => this._make(compilation, cb));
compiler.plugin('after-emit', (compilation: any, cb: any) => {
this._donePromise = null;
this._compilation = null;
compilation._ngToolsWebpackPluginInstance = null;
cb();
});
compiler.plugin('after-resolvers', (compiler: any) => {
// Virtual file system.
compiler.resolvers.normal.plugin('before-resolve', (request: any, cb: () => void) => {
if (request.request.match(/\.ts$/)) {
this.done.then(() => cb(), () => cb());
} else {
cb();
}
});
compiler.resolvers.normal.apply(new PathsPlugin({
tsConfigPath: this._tsConfigPath,
compilerOptions: this._compilerOptions,
compilerHost: this._compilerHost
}));
});
}
diagnose(fileName: string) {
if (this._diagnoseFiles[fileName]) {
return;
}
this._diagnoseFiles[fileName] = true;
const sourceFile = this._program.getSourceFile(fileName);
if (!sourceFile) {
return;
}
const diagnostics: ts.Diagnostic[] = []
.concat(
this._program.getCompilerOptions().declaration
? this._program.getDeclarationDiagnostics(sourceFile) : [],
this._program.getSyntacticDiagnostics(sourceFile),
this._program.getSemanticDiagnostics(sourceFile)
);
if (diagnostics.length > 0) {
const message = diagnostics
.map(diagnostic => {
const {line, character} = diagnostic.file.getLineAndCharacterOfPosition(diagnostic.start);
const message = ts.flattenDiagnosticMessageText(diagnostic.messageText, '\n');
return `${diagnostic.file.fileName} (${line + 1},${character + 1}): ${message})`;
})
.join('\n');
this._compilation.errors.push(message);
}
}
private _make(compilation: any, cb: (err?: any, request?: any) => void) {
this._compilation = compilation;
if (this._compilation._ngToolsWebpackPluginInstance) {
return cb(new Error('An @ngtools/webpack plugin already exist for this compilation.'));
}
this._compilation._ngToolsWebpackPluginInstance = this;
this._resourceLoader = new WebpackResourceLoader(compilation);
this._donePromise = Promise.resolve()
.then(() => {
if (this._skipCodeGeneration) {
return;
}
// Create the Code Generator.
return __NGTOOLS_PRIVATE_API_2.codeGen({
basePath: this._basePath,
compilerOptions: this._compilerOptions,
program: this._program,
host: this._compilerHost,
angularCompilerOptions: this._angularCompilerOptions,
i18nFile: this.i18nFile,
i18nFormat: this.i18nFormat,
locale: this.locale,
readResource: (path: string) => this._resourceLoader.get(path)
});
})
.then(() => {
// Create a new Program, based on the old one. This will trigger a resolution of all
// transitive modules, which include files that might just have been generated.
// This needs to happen after the code generator has been created for generated files
// to be properly resolved.
this._program = ts.createProgram(
this._rootFilePath, this._compilerOptions, this._compilerHost, this._program);
})
.then(() => {
if (this._typeCheck) {
const diagnostics = this._program.getGlobalDiagnostics();
if (diagnostics.length > 0) {
const message = diagnostics
.map(diagnostic => {
const {line, character} = diagnostic.file.getLineAndCharacterOfPosition(
diagnostic.start);
const message = ts.flattenDiagnosticMessageText(diagnostic.messageText, '\n');
return `${diagnostic.file.fileName} (${line + 1},${character + 1}): ${message})`;
})
.join('\n');
throw new Error(message);
}
}
})
.then(() => {
// Populate the file system cache with the virtual module.
this._compilerHost.populateWebpackResolver(this._compiler.resolvers.normal);
})
.then(() => {
// We need to run the `listLazyRoutes` the first time because it also navigates libraries
// and other things that we might miss using the findLazyRoutesInAst.
let discoveredLazyRoutes: LazyRouteMap = this.firstRun ?
__NGTOOLS_PRIVATE_API_2.listLazyRoutes({
program: this._program,
host: this._compilerHost,
angularCompilerOptions: this._angularCompilerOptions,
entryModule: this._entryModule
})
: this._findLazyRoutesInAst();
// Process the lazy routes discovered.
Object.keys(discoveredLazyRoutes)
.forEach(k => {
const lazyRoute = discoveredLazyRoutes[k];
k = k.split('#')[0];
if (lazyRoute === null) {
return;
}
if (this.skipCodeGeneration) {
this._lazyRoutes[k] = lazyRoute;
} else {
const lr = path.relative(this.basePath, lazyRoute.replace(/\.ts$/, '.ngfactory.ts'));
this._lazyRoutes[k + '.ngfactory'] = path.join(this.genDir, lr);
}
});
})
.then(() => {
this._compilerHost.resetChangedFileTracker();
cb();
}, (err: any) => {
compilation.errors.push(err);
cb();
});
}
}