-
Notifications
You must be signed in to change notification settings - Fork 12k
/
angular_compiler_plugin.ts
1217 lines (1064 loc) · 44.6 KB
/
angular_compiler_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
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import {
Path,
dirname,
getSystemPath,
logging,
normalize,
resolve,
virtualFs,
} from '@angular-devkit/core';
import { createConsoleLogger } from '@angular-devkit/core/node';
import {
CompilerHost,
CompilerOptions,
DEFAULT_ERROR_CODE,
Diagnostic,
EmitFlags,
Program,
SOURCE,
UNKNOWN_ERROR_CODE,
VERSION,
createCompilerHost,
createProgram,
formatDiagnostics,
readConfiguration,
} from '@angular/compiler-cli';
import { ChildProcess, ForkOptions, fork } from 'child_process';
import * as fs from 'fs';
import * as path from 'path';
import * as ts from 'typescript';
import { Compiler, compilation } from 'webpack';
import { time, timeEnd } from './benchmark';
import { WebpackCompilerHost, workaroundResolve } from './compiler_host';
import { resolveEntryModuleFromMain } from './entry_resolver';
import { DiagnosticMode, gatherDiagnostics, hasErrors } from './gather_diagnostics';
import { TypeScriptPathsPlugin } from './paths-plugin';
import { WebpackResourceLoader } from './resource_loader';
import {
LazyRouteMap,
exportLazyModuleMap,
exportNgFactory,
findResources,
registerLocaleData,
removeDecorators,
replaceBootstrap,
replaceResources,
replaceServerBootstrap,
} from './transformers';
import { collectDeepNodes } from './transformers/ast_helpers';
import {
AUTO_START_ARG,
} from './type_checker';
import {
InitMessage,
LogMessage,
MESSAGE_KIND,
UpdateMessage,
} from './type_checker_messages';
import {
VirtualFileSystemDecorator,
VirtualWatchFileSystemDecorator,
} from './virtual_file_system_decorator';
import {
Callback,
NodeWatchFileSystemInterface,
NormalModuleFactoryRequest,
} from './webpack';
import { WebpackInputHost } from './webpack-input-host';
const treeKill = require('tree-kill');
export interface ContextElementDependency { }
export interface ContextElementDependencyConstructor {
new(modulePath: string, name: string): ContextElementDependency;
}
/**
* Option Constants
*/
export interface AngularCompilerPluginOptions {
sourceMap?: boolean;
tsConfigPath: string;
basePath?: string;
entryModule?: string;
mainPath?: string;
skipCodeGeneration?: boolean;
hostReplacementPaths?: { [path: string]: string } | ((path: string) => string);
forkTypeChecker?: boolean;
i18nInFile?: string;
i18nInFormat?: string;
i18nOutFile?: string;
i18nOutFormat?: string;
locale?: string;
missingTranslation?: string;
platform?: PLATFORM;
nameLazyFiles?: boolean;
logger?: logging.Logger;
directTemplateLoading?: boolean;
// added to the list of lazy routes
additionalLazyModules?: { [module: string]: string };
additionalLazyModuleResources?: string[];
// The ContextElementDependency of correct Webpack compilation.
// This is needed when there are multiple Webpack installs.
contextElementDependencyConstructor?: ContextElementDependencyConstructor;
// Use tsconfig to include path globs.
compilerOptions?: ts.CompilerOptions;
host?: virtualFs.Host<fs.Stats>;
platformTransformers?: ts.TransformerFactory<ts.SourceFile>[];
}
export enum PLATFORM {
Browser,
Server,
}
export class AngularCompilerPlugin {
private _options: AngularCompilerPluginOptions;
// TS compilation.
private _compilerOptions: CompilerOptions;
private _rootNames: string[];
private _program: (ts.Program | Program) | null;
private _compilerHost: WebpackCompilerHost & CompilerHost;
private _moduleResolutionCache: ts.ModuleResolutionCache;
private _resourceLoader?: WebpackResourceLoader;
// Contains `moduleImportPath#exportName` => `fullModulePath`.
private _lazyRoutes: LazyRouteMap = Object.create(null);
private _tsConfigPath: string;
private _entryModule: string | null;
private _mainPath: string | undefined;
private _basePath: string;
private _transformers: ts.TransformerFactory<ts.SourceFile>[] = [];
private _platformTransformers: ts.TransformerFactory<ts.SourceFile>[] | null = null;
private _platform: PLATFORM;
private _JitMode = false;
private _emitSkipped = true;
private _changedFileExtensions = new Set(['ts', 'tsx', 'html', 'css', 'js', 'json']);
// Webpack plugin.
private _firstRun = true;
private _donePromise: Promise<void> | null;
private _normalizedLocale: string | null;
private _warnings: (string | Error)[] = [];
private _errors: (string | Error)[] = [];
private _contextElementDependencyConstructor: ContextElementDependencyConstructor;
// TypeChecker process.
private _forkTypeChecker = true;
private _typeCheckerProcess: ChildProcess | null;
private _forkedTypeCheckerInitialized = false;
// Logging.
private _logger: logging.Logger;
constructor(options: AngularCompilerPluginOptions) {
this._options = Object.assign({}, options);
this._setupOptions(this._options);
}
get options() { return this._options; }
get done() { return this._donePromise; }
get entryModule() {
if (!this._entryModule) {
return null;
}
const splitted = this._entryModule.split(/(#[a-zA-Z_]([\w]+))$/);
const path = splitted[0];
const className = !!splitted[1] ? splitted[1].substring(1) : 'default';
return { path, className };
}
get typeChecker(): ts.TypeChecker | null {
const tsProgram = this._getTsProgram();
return tsProgram ? tsProgram.getTypeChecker() : null;
}
static isSupported() {
return VERSION && parseInt(VERSION.major) >= 5;
}
private _setupOptions(options: AngularCompilerPluginOptions) {
time('AngularCompilerPlugin._setupOptions');
this._logger = options.logger || createConsoleLogger();
// Fill in the missing options.
if (!options.hasOwnProperty('tsConfigPath')) {
throw new Error('Must specify "tsConfigPath" in the configuration of @ngtools/webpack.');
}
// TS represents paths internally with '/' and expects the tsconfig path to be in this format
this._tsConfigPath = options.tsConfigPath.replace(/\\/g, '/');
// 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.basePath !== undefined) {
basePath = path.resolve(process.cwd(), options.basePath);
}
// Parse the tsconfig contents.
const config = readConfiguration(this._tsConfigPath);
if (config.errors && config.errors.length) {
throw new Error(formatDiagnostics(config.errors));
}
this._rootNames = config.rootNames;
this._compilerOptions = { ...config.options, ...options.compilerOptions };
this._basePath = config.options.basePath || basePath || '';
// Overwrite outDir so we can find generated files next to their .ts origin in compilerHost.
this._compilerOptions.outDir = '';
this._compilerOptions.suppressOutputPathCheck = true;
// Default plugin sourceMap to compiler options setting.
if (!options.hasOwnProperty('sourceMap')) {
options.sourceMap = this._compilerOptions.sourceMap || false;
}
// Force the right sourcemap options.
if (options.sourceMap) {
this._compilerOptions.sourceMap = true;
this._compilerOptions.inlineSources = true;
this._compilerOptions.inlineSourceMap = false;
this._compilerOptions.mapRoot = undefined;
// We will set the source to the full path of the file in the loader, so we don't
// need sourceRoot here.
this._compilerOptions.sourceRoot = undefined;
} else {
this._compilerOptions.sourceMap = false;
this._compilerOptions.sourceRoot = undefined;
this._compilerOptions.inlineSources = undefined;
this._compilerOptions.inlineSourceMap = undefined;
this._compilerOptions.mapRoot = undefined;
this._compilerOptions.sourceRoot = undefined;
}
// We want to allow emitting with errors so that imports can be added
// to the webpack dependency tree and rebuilds triggered by file edits.
this._compilerOptions.noEmitOnError = false;
// Set JIT (no code generation) or AOT mode.
if (options.skipCodeGeneration !== undefined) {
this._JitMode = options.skipCodeGeneration;
}
// Process i18n options.
if (options.i18nInFile !== undefined) {
this._compilerOptions.i18nInFile = options.i18nInFile;
}
if (options.i18nInFormat !== undefined) {
this._compilerOptions.i18nInFormat = options.i18nInFormat;
}
if (options.i18nOutFile !== undefined) {
this._compilerOptions.i18nOutFile = options.i18nOutFile;
}
if (options.i18nOutFormat !== undefined) {
this._compilerOptions.i18nOutFormat = options.i18nOutFormat;
}
if (options.locale !== undefined) {
this._compilerOptions.i18nInLocale = options.locale;
this._compilerOptions.i18nOutLocale = options.locale;
this._normalizedLocale = this._validateLocale(options.locale);
}
if (options.missingTranslation !== undefined) {
this._compilerOptions.i18nInMissingTranslations =
options.missingTranslation as 'error' | 'warning' | 'ignore';
}
// Process forked type checker options.
if (options.forkTypeChecker !== undefined) {
this._forkTypeChecker = options.forkTypeChecker;
}
// this._forkTypeChecker = false;
// Add custom platform transformers.
if (options.platformTransformers !== undefined) {
this._platformTransformers = options.platformTransformers;
}
// Default ContextElementDependency to the one we can import from here.
// Failing to use the right ContextElementDependency will throw the error below:
// "No module factory available for dependency type: ContextElementDependency"
// Hoisting together with peer dependencies can make it so the imported
// ContextElementDependency does not come from the same Webpack instance that is used
// in the compilation. In that case, we can pass the right one as an option to the plugin.
this._contextElementDependencyConstructor = options.contextElementDependencyConstructor
|| require('webpack/lib/dependencies/ContextElementDependency');
// Use entryModule if available in options, otherwise resolve it from mainPath after program
// creation.
if (this._options.entryModule) {
this._entryModule = this._options.entryModule;
} else if (this._compilerOptions.entryModule) {
this._entryModule = path.resolve(this._basePath,
this._compilerOptions.entryModule as string); // temporary cast for type issue
}
// Set platform.
this._platform = options.platform || PLATFORM.Browser;
// Make transformers.
this._makeTransformers();
timeEnd('AngularCompilerPlugin._setupOptions');
}
private _getTsProgram() {
if (!this._program) {
return undefined;
}
return this._JitMode ? this._program as ts.Program : (this._program as Program).getTsProgram();
}
updateChangedFileExtensions(extension: string) {
if (extension) {
this._changedFileExtensions.add(extension);
}
}
private _getChangedCompilationFiles() {
return this._compilerHost.getChangedFilePaths()
.filter(k => {
for (const ext of this._changedFileExtensions) {
if (k.endsWith(ext)) {
return true;
}
}
return false;
});
}
private async _createOrUpdateProgram() {
// Get the root files from the ts config.
// When a new root name (like a lazy route) is added, it won't be available from
// following imports on the existing files, so we need to get the new list of root files.
const config = readConfiguration(this._tsConfigPath);
this._rootNames = config.rootNames;
// Update the forked type checker with all changed compilation files.
// This includes templates, that also need to be reloaded on the type checker.
if (this._forkTypeChecker && this._typeCheckerProcess && !this._firstRun) {
this._updateForkedTypeChecker(this._rootNames, this._getChangedCompilationFiles());
}
// Use an identity function as all our paths are absolute already.
this._moduleResolutionCache = ts.createModuleResolutionCache(this._basePath, x => x);
const tsProgram = this._getTsProgram();
const oldFiles = new Set(tsProgram ?
tsProgram.getSourceFiles().map(sf => sf.fileName)
: [],
);
if (this._JitMode) {
// Create the TypeScript program.
time('AngularCompilerPlugin._createOrUpdateProgram.ts.createProgram');
this._program = ts.createProgram(
this._rootNames,
this._compilerOptions,
this._compilerHost,
tsProgram,
);
timeEnd('AngularCompilerPlugin._createOrUpdateProgram.ts.createProgram');
const newFiles = this._program.getSourceFiles().filter(sf => !oldFiles.has(sf.fileName));
for (const newFile of newFiles) {
this._compilerHost.invalidate(newFile.fileName);
}
} else {
time('AngularCompilerPlugin._createOrUpdateProgram.ng.createProgram');
// Create the Angular program.
this._program = createProgram({
rootNames: this._rootNames,
options: this._compilerOptions,
host: this._compilerHost,
oldProgram: this._program as Program,
});
timeEnd('AngularCompilerPlugin._createOrUpdateProgram.ng.createProgram');
time('AngularCompilerPlugin._createOrUpdateProgram.ng.loadNgStructureAsync');
await this._program.loadNgStructureAsync();
timeEnd('AngularCompilerPlugin._createOrUpdateProgram.ng.loadNgStructureAsync');
const newFiles = this._program.getTsProgram()
.getSourceFiles().filter(sf => !oldFiles.has(sf.fileName));
for (const newFile of newFiles) {
this._compilerHost.invalidate(newFile.fileName);
}
}
// If there's still no entryModule try to resolve from mainPath.
if (!this._entryModule && this._mainPath && !this._compilerOptions.enableIvy) {
time('AngularCompilerPlugin._make.resolveEntryModuleFromMain');
this._entryModule = resolveEntryModuleFromMain(
this._mainPath, this._compilerHost, this._getTsProgram() as ts.Program);
if (!this.entryModule) {
this._warnings.push('Lazy routes discovery is not enabled. '
+ 'Because there is neither an entryModule nor a '
+ 'statically analyzable bootstrap code in the main file.',
);
}
timeEnd('AngularCompilerPlugin._make.resolveEntryModuleFromMain');
}
}
private _listLazyRoutesFromProgram(): LazyRouteMap {
let entryRoute: string | undefined;
let ngProgram: Program;
if (this._JitMode) {
if (!this.entryModule) {
return {};
}
time('AngularCompilerPlugin._listLazyRoutesFromProgram.createProgram');
ngProgram = createProgram({
rootNames: this._rootNames,
options: { ...this._compilerOptions, genDir: '', collectAllErrors: true },
host: this._compilerHost,
});
timeEnd('AngularCompilerPlugin._listLazyRoutesFromProgram.createProgram');
entryRoute = this.entryModule.path + '#' + this.entryModule.className;
} else {
ngProgram = this._program as Program;
}
time('AngularCompilerPlugin._listLazyRoutesFromProgram.listLazyRoutes');
// entryRoute will only be defined in JIT.
// In AOT all routes within the program are returned.
const lazyRoutes = ngProgram.listLazyRoutes(entryRoute);
timeEnd('AngularCompilerPlugin._listLazyRoutesFromProgram.listLazyRoutes');
return lazyRoutes.reduce(
(acc, curr) => {
const ref = curr.route;
if (ref in acc && acc[ref] !== curr.referencedModule.filePath) {
throw new Error(
+ `Duplicated path in loadChildren detected: "${ref}" is used in 2 loadChildren, `
+ `but they point to different modules "(${acc[ref]} and `
+ `"${curr.referencedModule.filePath}"). Webpack cannot distinguish on context and `
+ 'would fail to load the proper one.',
);
}
acc[ref] = curr.referencedModule.filePath;
return acc;
},
{} as LazyRouteMap,
);
}
// Process the lazy routes discovered, adding then to _lazyRoutes.
// TODO: find a way to remove lazy routes that don't exist anymore.
// This will require a registry of known references to a lazy route, removing it when no
// module references it anymore.
private _processLazyRoutes(discoveredLazyRoutes: LazyRouteMap) {
Object.keys(discoveredLazyRoutes)
.forEach(lazyRouteKey => {
const [lazyRouteModule, moduleName] = lazyRouteKey.split('#');
if (!lazyRouteModule) {
return;
}
const lazyRouteTSFile = discoveredLazyRoutes[lazyRouteKey].replace(/\\/g, '/');
let modulePath: string, moduleKey: string;
if (this._JitMode) {
modulePath = lazyRouteTSFile;
moduleKey = `${lazyRouteModule}${moduleName ? '#' + moduleName : ''}`;
} else {
modulePath = lazyRouteTSFile.replace(/(\.d)?\.tsx?$/, '');
modulePath += '.ngfactory.js';
const factoryModuleName = moduleName ? `#${moduleName}NgFactory` : '';
moduleKey = `${lazyRouteModule}.ngfactory${factoryModuleName}`;
}
modulePath = workaroundResolve(modulePath);
if (moduleKey in this._lazyRoutes) {
if (this._lazyRoutes[moduleKey] !== modulePath) {
// Found a duplicate, this is an error.
this._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 {
// Found a new route, add it to the map.
this._lazyRoutes[moduleKey] = modulePath;
}
});
}
private _createForkedTypeChecker() {
// Bootstrap type checker is using local CLI.
const g: any = typeof global !== 'undefined' ? global : {}; // tslint:disable-line:no-any
const typeCheckerFile: string = g['_DevKitIsLocal']
? './type_checker_bootstrap.js'
: './type_checker_worker.js';
const debugArgRegex = /--inspect(?:-brk|-port)?|--debug(?:-brk|-port)/;
const execArgv = process.execArgv.filter((arg) => {
// Remove debug args.
// Workaround for https://github.com/nodejs/node/issues/9435
return !debugArgRegex.test(arg);
});
// Signal the process to start listening for messages
// Solves https://github.com/angular/angular-cli/issues/9071
const forkArgs = [AUTO_START_ARG];
const forkOptions: ForkOptions = { execArgv };
this._typeCheckerProcess = fork(
path.resolve(__dirname, typeCheckerFile),
forkArgs,
forkOptions);
// Handle child messages.
this._typeCheckerProcess.on('message', message => {
switch (message.kind) {
case MESSAGE_KIND.Log:
const logMessage = message as LogMessage;
this._logger.log(logMessage.level, `\n${logMessage.message}`);
break;
default:
throw new Error(`TypeChecker: Unexpected message received: ${message}.`);
}
});
// Handle child process exit.
this._typeCheckerProcess.once('exit', (_, signal) => {
this._typeCheckerProcess = null;
// If process exited not because of SIGTERM (see _killForkedTypeChecker), than something
// went wrong and it should fallback to type checking on the main thread.
if (signal !== 'SIGTERM') {
this._forkTypeChecker = false;
const msg = 'AngularCompilerPlugin: Forked Type Checker exited unexpectedly. ' +
'Falling back to type checking on main thread.';
this._warnings.push(msg);
}
});
}
private _killForkedTypeChecker() {
if (this._typeCheckerProcess && this._typeCheckerProcess.pid) {
treeKill(this._typeCheckerProcess.pid, 'SIGTERM');
this._typeCheckerProcess = null;
}
}
private _updateForkedTypeChecker(rootNames: string[], changedCompilationFiles: string[]) {
if (this._typeCheckerProcess) {
if (!this._forkedTypeCheckerInitialized) {
let hostReplacementPaths = {};
if (this._options.hostReplacementPaths
&& typeof this._options.hostReplacementPaths != 'function') {
hostReplacementPaths = this._options.hostReplacementPaths;
}
this._typeCheckerProcess.send(new InitMessage(this._compilerOptions, this._basePath,
this._JitMode, this._rootNames, hostReplacementPaths));
this._forkedTypeCheckerInitialized = true;
}
this._typeCheckerProcess.send(new UpdateMessage(rootNames, changedCompilationFiles));
}
}
// Registration hook for webpack plugin.
// tslint:disable-next-line:no-big-function
apply(compiler: Compiler & { watchMode?: boolean }) {
// cleanup if not watching
compiler.hooks.thisCompilation.tap('angular-compiler', compilation => {
compilation.hooks.finishModules.tap('angular-compiler', () => {
// only present for webpack 4.23.0+, assume true otherwise
const watchMode = compiler.watchMode === undefined ? true : compiler.watchMode;
if (!watchMode) {
this._program = null;
this._transformers = [];
this._resourceLoader = undefined;
}
});
});
// Decorate inputFileSystem to serve contents of CompilerHost.
// Use decorated inputFileSystem in watchFileSystem.
compiler.hooks.environment.tap('angular-compiler', () => {
// The webpack types currently do not include these
const compilerWithFileSystems = compiler as Compiler & {
watchFileSystem: NodeWatchFileSystemInterface,
};
let host: virtualFs.Host<fs.Stats> = this._options.host || new WebpackInputHost(
compilerWithFileSystems.inputFileSystem,
);
let replacements: Map<Path, Path> | ((path: Path) => Path) | undefined;
if (this._options.hostReplacementPaths) {
if (typeof this._options.hostReplacementPaths == 'function') {
const replacementResolver = this._options.hostReplacementPaths;
replacements = path => normalize(replacementResolver(getSystemPath(path)));
host = new class extends virtualFs.ResolverHost<fs.Stats> {
_resolve(path: Path) {
return normalize(replacementResolver(getSystemPath(path)));
}
}(host);
} else {
replacements = new Map();
const aliasHost = new virtualFs.AliasHost(host);
for (const from in this._options.hostReplacementPaths) {
const normalizedFrom = resolve(normalize(this._basePath), normalize(from));
const normalizedWith = resolve(
normalize(this._basePath),
normalize(this._options.hostReplacementPaths[from]),
);
aliasHost.aliases.set(normalizedFrom, normalizedWith);
replacements.set(normalizedFrom, normalizedWith);
}
host = aliasHost;
}
}
// Create the webpack compiler host.
const webpackCompilerHost = new WebpackCompilerHost(
this._compilerOptions,
this._basePath,
host,
true,
this._options.directTemplateLoading,
);
// Create and set a new WebpackResourceLoader in AOT
if (!this._JitMode) {
this._resourceLoader = new WebpackResourceLoader();
webpackCompilerHost.setResourceLoader(this._resourceLoader);
}
// Use the WebpackCompilerHost with a resource loader to create an AngularCompilerHost.
this._compilerHost = createCompilerHost({
options: this._compilerOptions,
tsHost: webpackCompilerHost,
}) as CompilerHost & WebpackCompilerHost;
// Resolve mainPath if provided.
if (this._options.mainPath) {
this._mainPath = this._compilerHost.resolve(this._options.mainPath);
}
const inputDecorator = new VirtualFileSystemDecorator(
compilerWithFileSystems.inputFileSystem,
this._compilerHost,
);
compilerWithFileSystems.inputFileSystem = inputDecorator;
compilerWithFileSystems.watchFileSystem = new VirtualWatchFileSystemDecorator(
inputDecorator,
replacements,
);
});
// Add lazy modules to the context module for @angular/core
compiler.hooks.contextModuleFactory.tap('angular-compiler', cmf => {
const angularCorePackagePath = require.resolve('@angular/core/package.json');
// APFv6 does not have single FESM anymore. Instead of verifying if we're pointing to
// FESMs, we resolve the `@angular/core` path and verify that the path for the
// module starts with it.
// This may be slower but it will be compatible with both APF5, 6 and potential future
// versions (until the dynamic import appears outside of core I suppose).
// We resolve any symbolic links in order to get the real path that would be used in webpack.
const angularCoreResourceRoot = fs.realpathSync(path.dirname(angularCorePackagePath));
cmf.hooks.afterResolve.tapPromise('angular-compiler', async result => {
// Alter only existing request from Angular or one of the additional lazy module resources.
const isLazyModuleResource = (resource: string) =>
resource.startsWith(angularCoreResourceRoot) ||
( this.options.additionalLazyModuleResources &&
this.options.additionalLazyModuleResources.includes(resource));
if (!result || !this.done || !isLazyModuleResource(result.resource)) {
return result;
}
return this.done.then(
() => {
// This folder does not exist, but we need to give webpack a resource.
// TODO: check if we can't just leave it as is (angularCoreModuleDir).
result.resource = path.join(this._basePath, '$$_lazy_route_resource');
// tslint:disable-next-line:no-any
result.dependencies.forEach((d: any) => d.critical = false);
// tslint:disable-next-line:no-any
result.resolveDependencies = (_fs: any, options: any, callback: Callback) => {
const dependencies = Object.keys(this._lazyRoutes)
.map((key) => {
const modulePath = this._lazyRoutes[key];
if (modulePath !== null) {
const name = key.split('#')[0];
return new this._contextElementDependencyConstructor(modulePath, name);
} else {
return null;
}
})
.filter(x => !!x);
if (this._options.nameLazyFiles) {
options.chunkName = '[request]';
}
callback(null, dependencies);
};
return result;
},
() => undefined,
);
});
});
// Create and destroy forked type checker on watch mode.
compiler.hooks.watchRun.tap('angular-compiler', () => {
if (this._forkTypeChecker && !this._typeCheckerProcess) {
this._createForkedTypeChecker();
}
});
compiler.hooks.watchClose.tap('angular-compiler', () => this._killForkedTypeChecker());
// Remake the plugin on each compilation.
compiler.hooks.make.tapPromise(
'angular-compiler',
compilation => this._donePromise = this._make(compilation),
);
compiler.hooks.invalid.tap('angular-compiler', () => this._firstRun = false);
compiler.hooks.afterEmit.tap('angular-compiler', compilation => {
// tslint:disable-next-line:no-any
(compilation as any)._ngToolsWebpackPluginInstance = null;
});
compiler.hooks.done.tap('angular-compiler', () => {
this._donePromise = null;
});
compiler.hooks.afterResolvers.tap('angular-compiler', compiler => {
// tslint:disable-next-line:no-any
(compiler as any).resolverFactory.hooks.resolver
.for('normal')
// tslint:disable-next-line:no-any
.tap('angular-compiler', (resolver: any) => {
new TypeScriptPathsPlugin(this._compilerOptions).apply(resolver);
});
compiler.hooks.normalModuleFactory.tap('angular-compiler', nmf => {
// Virtual file system.
// TODO: consider if it's better to remove this plugin and instead make it wait on the
// VirtualFileSystemDecorator.
// Wait for the plugin to be done when requesting `.ts` files directly (entry points), or
// when the issuer is a `.ts` or `.ngfactory.js` file.
nmf.hooks.beforeResolve.tapPromise(
'angular-compiler',
async (request?: NormalModuleFactoryRequest) => {
if (this.done && request) {
const name = request.request;
const issuer = request.contextInfo.issuer;
if (name.endsWith('.ts') || name.endsWith('.tsx')
|| (issuer && /\.ts|ngfactory\.js$/.test(issuer))) {
try {
await this.done;
} catch { }
}
}
return request;
},
);
});
});
}
private async _make(compilation: compilation.Compilation) {
time('AngularCompilerPlugin._make');
this._emitSkipped = true;
// tslint:disable-next-line:no-any
if ((compilation as any)._ngToolsWebpackPluginInstance) {
throw new Error('An @ngtools/webpack plugin already exist for this compilation.');
}
// Set a private variable for this plugin instance.
// tslint:disable-next-line:no-any
(compilation as any)._ngToolsWebpackPluginInstance = this;
// Update the resource loader with the new webpack compilation.
if (this._resourceLoader) {
this._resourceLoader.update(compilation);
}
try {
await this._update();
this.pushCompilationErrors(compilation);
} catch (err) {
compilation.errors.push(err);
this.pushCompilationErrors(compilation);
}
timeEnd('AngularCompilerPlugin._make');
}
private pushCompilationErrors(compilation: compilation.Compilation) {
compilation.errors.push(...this._errors);
compilation.warnings.push(...this._warnings);
this._errors = [];
this._warnings = [];
}
private _makeTransformers() {
const isAppPath = (fileName: string) =>
!fileName.endsWith('.ngfactory.ts') && !fileName.endsWith('.ngstyle.ts');
const isMainPath = (fileName: string) => fileName === (
this._mainPath ? workaroundResolve(this._mainPath) : this._mainPath
);
const getEntryModule = () => this.entryModule
? { path: workaroundResolve(this.entryModule.path), className: this.entryModule.className }
: this.entryModule;
const getLazyRoutes = () => this._lazyRoutes;
const getTypeChecker = () => (this._getTsProgram() as ts.Program).getTypeChecker();
if (this._JitMode) {
// Replace resources in JIT.
this._transformers.push(replaceResources(isAppPath, getTypeChecker));
} else {
// Remove unneeded angular decorators.
this._transformers.push(removeDecorators(isAppPath, getTypeChecker));
}
if (this._platformTransformers !== null) {
this._transformers.push(...this._platformTransformers);
} else {
if (this._platform === PLATFORM.Browser) {
// If we have a locale, auto import the locale data file.
// This transform must go before replaceBootstrap because it looks for the entry module
// import, which will be replaced.
if (this._normalizedLocale) {
this._transformers.push(registerLocaleData(isAppPath, getEntryModule,
this._normalizedLocale));
}
if (!this._JitMode) {
// Replace bootstrap in browser AOT.
this._transformers.push(replaceBootstrap(isAppPath, getEntryModule, getTypeChecker));
}
} else if (this._platform === PLATFORM.Server) {
this._transformers.push(exportLazyModuleMap(isMainPath, getLazyRoutes));
if (!this._JitMode) {
this._transformers.push(
exportNgFactory(isMainPath, getEntryModule),
replaceServerBootstrap(isMainPath, getEntryModule, getTypeChecker));
}
}
}
}
private async _update() {
time('AngularCompilerPlugin._update');
// We only want to update on TS and template changes, but all kinds of files are on this
// list, like package.json and .ngsummary.json files.
const changedFiles = this._getChangedCompilationFiles();
// If nothing we care about changed and it isn't the first run, don't do anything.
if (changedFiles.length === 0 && !this._firstRun) {
return;
}
// Make a new program and load the Angular structure.
await this._createOrUpdateProgram();
// Find lazy routes
const lazyRouteMap: LazyRouteMap = {
...this._listLazyRoutesFromProgram(),
...this._options.additionalLazyModules,
};
this._processLazyRoutes(lazyRouteMap);
// Emit files.
time('AngularCompilerPlugin._update._emit');
const { emitResult, diagnostics } = this._emit();
timeEnd('AngularCompilerPlugin._update._emit');
// Report diagnostics.
const errors = diagnostics
.filter((diag) => diag.category === ts.DiagnosticCategory.Error);
const warnings = diagnostics
.filter((diag) => diag.category === ts.DiagnosticCategory.Warning);
if (errors.length > 0) {
const message = formatDiagnostics(errors);
this._errors.push(new Error(message));
}
if (warnings.length > 0) {
const message = formatDiagnostics(warnings);
this._warnings.push(message);
}
this._emitSkipped = !emitResult || emitResult.emitSkipped;
// Reset changed files on successful compilation.
if (!this._emitSkipped && this._errors.length === 0) {
this._compilerHost.resetChangedFileTracker();
}
timeEnd('AngularCompilerPlugin._update');
}
writeI18nOutFile() {
function _recursiveMkDir(p: string) {
if (!fs.existsSync(p)) {
_recursiveMkDir(path.dirname(p));
fs.mkdirSync(p);
}
}
// Write the extracted messages to disk.
if (this._compilerOptions.i18nOutFile) {
const i18nOutFilePath = path.resolve(this._basePath, this._compilerOptions.i18nOutFile);
const i18nOutFileContent = this._compilerHost.readFile(i18nOutFilePath);
if (i18nOutFileContent) {
_recursiveMkDir(path.dirname(i18nOutFilePath));
fs.writeFileSync(i18nOutFilePath, i18nOutFileContent);
}
}
}
getCompiledFile(fileName: string) {
const outputFile = fileName.replace(/.tsx?$/, '.js');
let outputText: string;
let sourceMap: string | undefined;
let errorDependencies: string[] = [];
if (this._emitSkipped) {
const text = this._compilerHost.readFile(outputFile);
if (text) {
// If the compilation didn't emit files this time, try to return the cached files from the
// last compilation and let the compilation errors show what's wrong.
outputText = text;
sourceMap = this._compilerHost.readFile(outputFile + '.map');
} else {
// There's nothing we can serve. Return an empty string to prevent lenghty webpack errors,
// add the rebuild warning if it's not there yet.
// We also need to all changed files as dependencies of this file, so that all of them
// will be watched and trigger a rebuild next time.
outputText = '';
errorDependencies = this._getChangedCompilationFiles()
// These paths are used by the loader so we must denormalize them.
.map((p) => this._compilerHost.denormalizePath(p));
}
} else {
// Check if the TS input file and the JS output file exist.
if (((fileName.endsWith('.ts') || fileName.endsWith('.tsx'))
&& !this._compilerHost.fileExists(fileName))
|| !this._compilerHost.fileExists(outputFile, false)) {
let msg = `${fileName} is missing from the TypeScript compilation. `
+ `Please make sure it is in your tsconfig via the 'files' or 'include' property.`;
if (/(\\|\/)node_modules(\\|\/)/.test(fileName)) {
msg += '\nThe missing file seems to be part of a third party library. '
+ 'TS files in published libraries are often a sign of a badly packaged library. '
+ 'Please open an issue in the library repository to alert its author and ask them '
+ 'to package the library using the Angular Package Format (https://goo.gl/jB3GVv).';
}
throw new Error(msg);
}
outputText = this._compilerHost.readFile(outputFile) || '';
sourceMap = this._compilerHost.readFile(outputFile + '.map');
}
return { outputText, sourceMap, errorDependencies };
}
getDependencies(fileName: string): string[] {
const resolvedFileName = this._compilerHost.resolve(fileName);
const sourceFile = this._compilerHost.getSourceFile(resolvedFileName, ts.ScriptTarget.Latest);
if (!sourceFile) {