forked from angular/angular
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjit_compiler_facade.ts
More file actions
1045 lines (965 loc) Β· 34.4 KB
/
jit_compiler_facade.ts
File metadata and controls
1045 lines (965 loc) Β· 34.4 KB
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 LLC 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.dev/license
*/
import {
CompilerFacade,
CoreEnvironment,
ExportedCompilerFacade,
LegacyInputPartialMapping,
OpaqueValue,
R3ComponentMetadataFacade,
R3DeclareComponentFacade,
R3DeclareDependencyMetadataFacade,
R3DeclareDirectiveDependencyFacade,
R3DeclareDirectiveFacade,
R3DeclareFactoryFacade,
R3DeclareInjectableFacade,
R3DeclareInjectorFacade,
R3DeclareNgModuleFacade,
R3DeclarePipeDependencyFacade,
R3DeclarePipeFacade,
R3DeclareQueryMetadataFacade,
R3DependencyMetadataFacade,
R3DirectiveMetadataFacade,
R3FactoryDefMetadataFacade,
R3InjectableMetadataFacade,
R3InjectorMetadataFacade,
R3NgModuleMetadataFacade,
R3PipeMetadataFacade,
R3QueryMetadataFacade,
R3TemplateDependencyFacade,
} from './compiler_facade_interface';
import {ConstantPool} from './constant_pool';
import {
ChangeDetectionStrategy,
HostBinding,
HostListener,
Input,
Output,
ViewEncapsulation,
} from './core';
import {compileInjectable} from './injectable_compiler_2';
import {DEFAULT_INTERPOLATION_CONFIG, InterpolationConfig} from './ml_parser/defaults';
import {
DeclareVarStmt,
Expression,
literal,
LiteralExpr,
Statement,
StmtModifier,
WrappedNodeExpr,
} from './output/output_ast';
import {JitEvaluator} from './output/output_jit';
import {ParseError, ParseSourceSpan, r3JitTypeSourceSpan} from './parse_util';
import {DeferredBlock} from './render3/r3_ast';
import {compileFactoryFunction, FactoryTarget, R3DependencyMetadata} from './render3/r3_factory';
import {compileInjector, R3InjectorMetadata} from './render3/r3_injector_compiler';
import {R3JitReflector} from './render3/r3_jit';
import {
compileNgModule,
compileNgModuleDeclarationExpression,
R3NgModuleMetadata,
R3NgModuleMetadataKind,
R3SelectorScopeMode,
} from './render3/r3_module_compiler';
import {compilePipeFromMetadata, R3PipeMetadata} from './render3/r3_pipe_compiler';
import {
createMayBeForwardRefExpression,
ForwardRefHandling,
getSafePropertyAccessString,
MaybeForwardRefExpression,
wrapReference,
} from './render3/util';
import {
DeclarationListEmitMode,
DeferBlockDepsEmitMode,
R3ComponentDeferMetadata,
R3ComponentMetadata,
R3DirectiveDependencyMetadata,
R3DirectiveMetadata,
R3HostDirectiveMetadata,
R3HostMetadata,
R3InputMetadata,
R3PipeDependencyMetadata,
R3QueryMetadata,
R3TemplateDependency,
R3TemplateDependencyKind,
R3TemplateDependencyMetadata,
} from './render3/view/api';
import {
compileComponentFromMetadata,
compileDirectiveFromMetadata,
ParsedHostBindings,
parseHostBindings,
verifyHostBindings,
} from './render3/view/compiler';
import type {BoundTarget} from './render3/view/t2_api';
import {R3TargetBinder} from './render3/view/t2_binder';
import {makeBindingParser, parseTemplate} from './render3/view/template';
import {ResourceLoader} from './resource_loader';
import {DomElementSchemaRegistry} from './schema/dom_element_schema_registry';
import {SelectorMatcher} from './selector';
export class CompilerFacadeImpl implements CompilerFacade {
FactoryTarget = FactoryTarget;
ResourceLoader = ResourceLoader;
private elementSchemaRegistry = new DomElementSchemaRegistry();
constructor(private jitEvaluator = new JitEvaluator()) {}
compilePipe(
angularCoreEnv: CoreEnvironment,
sourceMapUrl: string,
facade: R3PipeMetadataFacade,
): any {
const metadata: R3PipeMetadata = {
name: facade.name,
type: wrapReference(facade.type),
typeArgumentCount: 0,
deps: null,
pipeName: facade.pipeName,
pure: facade.pure,
isStandalone: facade.isStandalone,
};
const res = compilePipeFromMetadata(metadata);
return this.jitExpression(res.expression, angularCoreEnv, sourceMapUrl, []);
}
compilePipeDeclaration(
angularCoreEnv: CoreEnvironment,
sourceMapUrl: string,
declaration: R3DeclarePipeFacade,
): any {
const meta = convertDeclarePipeFacadeToMetadata(declaration);
const res = compilePipeFromMetadata(meta);
return this.jitExpression(res.expression, angularCoreEnv, sourceMapUrl, []);
}
compileInjectable(
angularCoreEnv: CoreEnvironment,
sourceMapUrl: string,
facade: R3InjectableMetadataFacade,
): any {
const {expression, statements} = compileInjectable(
{
name: facade.name,
type: wrapReference(facade.type),
typeArgumentCount: facade.typeArgumentCount,
providedIn: computeProvidedIn(facade.providedIn),
useClass: convertToProviderExpression(facade, 'useClass'),
useFactory: wrapExpression(facade, 'useFactory'),
useValue: convertToProviderExpression(facade, 'useValue'),
useExisting: convertToProviderExpression(facade, 'useExisting'),
deps: facade.deps?.map(convertR3DependencyMetadata),
},
/* resolveForwardRefs */ true,
);
return this.jitExpression(expression, angularCoreEnv, sourceMapUrl, statements);
}
compileInjectableDeclaration(
angularCoreEnv: CoreEnvironment,
sourceMapUrl: string,
facade: R3DeclareInjectableFacade,
): any {
const {expression, statements} = compileInjectable(
{
name: facade.type.name,
type: wrapReference(facade.type),
typeArgumentCount: 0,
providedIn: computeProvidedIn(facade.providedIn),
useClass: convertToProviderExpression(facade, 'useClass'),
useFactory: wrapExpression(facade, 'useFactory'),
useValue: convertToProviderExpression(facade, 'useValue'),
useExisting: convertToProviderExpression(facade, 'useExisting'),
deps: facade.deps?.map(convertR3DeclareDependencyMetadata),
},
/* resolveForwardRefs */ true,
);
return this.jitExpression(expression, angularCoreEnv, sourceMapUrl, statements);
}
compileInjector(
angularCoreEnv: CoreEnvironment,
sourceMapUrl: string,
facade: R3InjectorMetadataFacade,
): any {
const meta: R3InjectorMetadata = {
name: facade.name,
type: wrapReference(facade.type),
providers:
facade.providers && facade.providers.length > 0
? new WrappedNodeExpr(facade.providers)
: null,
imports: facade.imports.map((i) => new WrappedNodeExpr(i)),
};
const res = compileInjector(meta);
return this.jitExpression(res.expression, angularCoreEnv, sourceMapUrl, []);
}
compileInjectorDeclaration(
angularCoreEnv: CoreEnvironment,
sourceMapUrl: string,
declaration: R3DeclareInjectorFacade,
): any {
const meta = convertDeclareInjectorFacadeToMetadata(declaration);
const res = compileInjector(meta);
return this.jitExpression(res.expression, angularCoreEnv, sourceMapUrl, []);
}
compileNgModule(
angularCoreEnv: CoreEnvironment,
sourceMapUrl: string,
facade: R3NgModuleMetadataFacade,
): any {
const meta: R3NgModuleMetadata = {
kind: R3NgModuleMetadataKind.Global,
type: wrapReference(facade.type),
bootstrap: facade.bootstrap.map(wrapReference),
declarations: facade.declarations.map(wrapReference),
publicDeclarationTypes: null, // only needed for types in AOT
imports: facade.imports.map(wrapReference),
includeImportTypes: true,
exports: facade.exports.map(wrapReference),
selectorScopeMode: R3SelectorScopeMode.Inline,
containsForwardDecls: false,
schemas: facade.schemas ? facade.schemas.map(wrapReference) : null,
id: facade.id ? new WrappedNodeExpr(facade.id) : null,
};
const res = compileNgModule(meta);
return this.jitExpression(res.expression, angularCoreEnv, sourceMapUrl, []);
}
compileNgModuleDeclaration(
angularCoreEnv: CoreEnvironment,
sourceMapUrl: string,
declaration: R3DeclareNgModuleFacade,
): any {
const expression = compileNgModuleDeclarationExpression(declaration);
return this.jitExpression(expression, angularCoreEnv, sourceMapUrl, []);
}
compileDirective(
angularCoreEnv: CoreEnvironment,
sourceMapUrl: string,
facade: R3DirectiveMetadataFacade,
): any {
const meta: R3DirectiveMetadata = convertDirectiveFacadeToMetadata(facade);
return this.compileDirectiveFromMeta(angularCoreEnv, sourceMapUrl, meta);
}
compileDirectiveDeclaration(
angularCoreEnv: CoreEnvironment,
sourceMapUrl: string,
declaration: R3DeclareDirectiveFacade,
): any {
const typeSourceSpan = this.createParseSourceSpan(
'Directive',
declaration.type.name,
sourceMapUrl,
);
const meta = convertDeclareDirectiveFacadeToMetadata(declaration, typeSourceSpan);
return this.compileDirectiveFromMeta(angularCoreEnv, sourceMapUrl, meta);
}
private compileDirectiveFromMeta(
angularCoreEnv: CoreEnvironment,
sourceMapUrl: string,
meta: R3DirectiveMetadata,
): any {
const constantPool = new ConstantPool();
const bindingParser = makeBindingParser();
const res = compileDirectiveFromMetadata(meta, constantPool, bindingParser);
return this.jitExpression(
res.expression,
angularCoreEnv,
sourceMapUrl,
constantPool.statements,
);
}
compileComponent(
angularCoreEnv: CoreEnvironment,
sourceMapUrl: string,
facade: R3ComponentMetadataFacade,
): any {
// Parse the template and check for errors.
const {template, interpolation, defer} = parseJitTemplate(
facade.template,
facade.name,
sourceMapUrl,
facade.preserveWhitespaces,
facade.interpolation,
undefined,
);
// Compile the component metadata, including template, into an expression.
const meta: R3ComponentMetadata<R3TemplateDependency> = {
...facade,
...convertDirectiveFacadeToMetadata(facade),
selector: facade.selector || this.elementSchemaRegistry.getDefaultComponentElementName(),
template,
declarations: facade.declarations.map(convertDeclarationFacadeToMetadata),
declarationListEmitMode: DeclarationListEmitMode.Direct,
defer,
styles: [...facade.styles, ...template.styles],
encapsulation: facade.encapsulation,
interpolation,
changeDetection: facade.changeDetection ?? null,
animations: facade.animations != null ? new WrappedNodeExpr(facade.animations) : null,
viewProviders:
facade.viewProviders != null ? new WrappedNodeExpr(facade.viewProviders) : null,
relativeContextFilePath: '',
i18nUseExternalIds: true,
};
const jitExpressionSourceMap = `ng:///${facade.name}.js`;
return this.compileComponentFromMeta(angularCoreEnv, jitExpressionSourceMap, meta);
}
compileComponentDeclaration(
angularCoreEnv: CoreEnvironment,
sourceMapUrl: string,
declaration: R3DeclareComponentFacade,
): any {
const typeSourceSpan = this.createParseSourceSpan(
'Component',
declaration.type.name,
sourceMapUrl,
);
const meta = convertDeclareComponentFacadeToMetadata(declaration, typeSourceSpan, sourceMapUrl);
return this.compileComponentFromMeta(angularCoreEnv, sourceMapUrl, meta);
}
private compileComponentFromMeta(
angularCoreEnv: CoreEnvironment,
sourceMapUrl: string,
meta: R3ComponentMetadata<R3TemplateDependency>,
): any {
const constantPool = new ConstantPool();
const bindingParser = makeBindingParser(meta.interpolation);
const res = compileComponentFromMetadata(meta, constantPool, bindingParser);
return this.jitExpression(
res.expression,
angularCoreEnv,
sourceMapUrl,
constantPool.statements,
);
}
compileFactory(
angularCoreEnv: CoreEnvironment,
sourceMapUrl: string,
meta: R3FactoryDefMetadataFacade,
) {
const factoryRes = compileFactoryFunction({
name: meta.name,
type: wrapReference(meta.type),
typeArgumentCount: meta.typeArgumentCount,
deps: convertR3DependencyMetadataArray(meta.deps),
target: meta.target,
});
return this.jitExpression(
factoryRes.expression,
angularCoreEnv,
sourceMapUrl,
factoryRes.statements,
);
}
compileFactoryDeclaration(
angularCoreEnv: CoreEnvironment,
sourceMapUrl: string,
meta: R3DeclareFactoryFacade,
) {
const factoryRes = compileFactoryFunction({
name: meta.type.name,
type: wrapReference(meta.type),
typeArgumentCount: 0,
deps: Array.isArray(meta.deps)
? meta.deps.map(convertR3DeclareDependencyMetadata)
: meta.deps,
target: meta.target,
});
return this.jitExpression(
factoryRes.expression,
angularCoreEnv,
sourceMapUrl,
factoryRes.statements,
);
}
createParseSourceSpan(kind: string, typeName: string, sourceUrl: string): ParseSourceSpan {
return r3JitTypeSourceSpan(kind, typeName, sourceUrl);
}
/**
* JIT compiles an expression and returns the result of executing that expression.
*
* @param def the definition which will be compiled and executed to get the value to patch
* @param context an object map of @angular/core symbol names to symbols which will be available
* in the context of the compiled expression
* @param sourceUrl a URL to use for the source map of the compiled expression
* @param preStatements a collection of statements that should be evaluated before the expression.
*/
private jitExpression(
def: Expression,
context: {[key: string]: any},
sourceUrl: string,
preStatements: Statement[],
): any {
// The ConstantPool may contain Statements which declare variables used in the final expression.
// Therefore, its statements need to precede the actual JIT operation. The final statement is a
// declaration of $def which is set to the expression being compiled.
const statements: Statement[] = [
...preStatements,
new DeclareVarStmt('$def', def, undefined, StmtModifier.Exported),
];
const res = this.jitEvaluator.evaluateStatements(
sourceUrl,
statements,
new R3JitReflector(context),
/* enableSourceMaps */ true,
);
return res['$def'];
}
}
function convertToR3QueryMetadata(facade: R3QueryMetadataFacade): R3QueryMetadata {
return {
...facade,
isSignal: facade.isSignal,
predicate: convertQueryPredicate(facade.predicate),
read: facade.read ? new WrappedNodeExpr(facade.read) : null,
static: facade.static,
emitDistinctChangesOnly: facade.emitDistinctChangesOnly,
};
}
function convertQueryDeclarationToMetadata(
declaration: R3DeclareQueryMetadataFacade,
): R3QueryMetadata {
return {
propertyName: declaration.propertyName,
first: declaration.first ?? false,
predicate: convertQueryPredicate(declaration.predicate),
descendants: declaration.descendants ?? false,
read: declaration.read ? new WrappedNodeExpr(declaration.read) : null,
static: declaration.static ?? false,
emitDistinctChangesOnly: declaration.emitDistinctChangesOnly ?? true,
isSignal: !!declaration.isSignal,
};
}
function convertQueryPredicate(
predicate: OpaqueValue | string[],
): MaybeForwardRefExpression | string[] {
return Array.isArray(predicate)
? // The predicate is an array of strings so pass it through.
predicate
: // The predicate is a type - assume that we will need to unwrap any `forwardRef()` calls.
createMayBeForwardRefExpression(new WrappedNodeExpr(predicate), ForwardRefHandling.Wrapped);
}
function convertDirectiveFacadeToMetadata(facade: R3DirectiveMetadataFacade): R3DirectiveMetadata {
const inputsFromMetadata = parseInputsArray(facade.inputs || []);
const outputsFromMetadata = parseMappingStringArray(facade.outputs || []);
const propMetadata = facade.propMetadata;
const inputsFromType: Record<string, R3InputMetadata> = {};
const outputsFromType: Record<string, string> = {};
for (const field in propMetadata) {
if (propMetadata.hasOwnProperty(field)) {
propMetadata[field].forEach((ann) => {
if (isInput(ann)) {
inputsFromType[field] = {
bindingPropertyName: ann.alias || field,
classPropertyName: field,
required: ann.required || false,
// For JIT, decorators are used to declare signal inputs. That is because of
// a technical limitation where it's not possible to statically reflect class
// members of a directive/component at runtime before instantiating the class.
isSignal: !!ann.isSignal,
transformFunction: ann.transform != null ? new WrappedNodeExpr(ann.transform) : null,
};
} else if (isOutput(ann)) {
outputsFromType[field] = ann.alias || field;
}
});
}
}
const hostDirectives = facade.hostDirectives?.length
? facade.hostDirectives.map((hostDirective) => {
return typeof hostDirective === 'function'
? {
directive: wrapReference(hostDirective),
inputs: null,
outputs: null,
isForwardReference: false,
}
: {
directive: wrapReference(hostDirective.directive),
isForwardReference: false,
inputs: hostDirective.inputs ? parseMappingStringArray(hostDirective.inputs) : null,
outputs: hostDirective.outputs
? parseMappingStringArray(hostDirective.outputs)
: null,
};
})
: null;
return {
...facade,
typeArgumentCount: 0,
typeSourceSpan: facade.typeSourceSpan,
type: wrapReference(facade.type),
deps: null,
host: {
...extractHostBindings(facade.propMetadata, facade.typeSourceSpan, facade.host),
},
inputs: {...inputsFromMetadata, ...inputsFromType},
outputs: {...outputsFromMetadata, ...outputsFromType},
queries: facade.queries.map(convertToR3QueryMetadata),
providers: facade.providers != null ? new WrappedNodeExpr(facade.providers) : null,
viewQueries: facade.viewQueries.map(convertToR3QueryMetadata),
fullInheritance: false,
hostDirectives,
};
}
function convertDeclareDirectiveFacadeToMetadata(
declaration: R3DeclareDirectiveFacade,
typeSourceSpan: ParseSourceSpan,
): R3DirectiveMetadata {
const hostDirectives = declaration.hostDirectives?.length
? declaration.hostDirectives.map((dir) => ({
directive: wrapReference(dir.directive),
isForwardReference: false,
inputs: dir.inputs ? getHostDirectiveBindingMapping(dir.inputs) : null,
outputs: dir.outputs ? getHostDirectiveBindingMapping(dir.outputs) : null,
}))
: null;
return {
name: declaration.type.name,
type: wrapReference(declaration.type),
typeSourceSpan,
selector: declaration.selector ?? null,
inputs: declaration.inputs ? inputsPartialMetadataToInputMetadata(declaration.inputs) : {},
outputs: declaration.outputs ?? {},
host: convertHostDeclarationToMetadata(declaration.host),
queries: (declaration.queries ?? []).map(convertQueryDeclarationToMetadata),
viewQueries: (declaration.viewQueries ?? []).map(convertQueryDeclarationToMetadata),
providers:
declaration.providers !== undefined ? new WrappedNodeExpr(declaration.providers) : null,
exportAs: declaration.exportAs ?? null,
usesInheritance: declaration.usesInheritance ?? false,
lifecycle: {usesOnChanges: declaration.usesOnChanges ?? false},
deps: null,
typeArgumentCount: 0,
fullInheritance: false,
isStandalone: declaration.isStandalone ?? false,
isSignal: declaration.isSignal ?? false,
hostDirectives,
};
}
function convertHostDeclarationToMetadata(
host: R3DeclareDirectiveFacade['host'] = {},
): R3HostMetadata {
return {
attributes: convertOpaqueValuesToExpressions(host.attributes ?? {}),
listeners: host.listeners ?? {},
properties: host.properties ?? {},
specialAttributes: {
classAttr: host.classAttribute,
styleAttr: host.styleAttribute,
},
};
}
/**
* Parses a host directive mapping where each odd array key is the name of an input/output
* and each even key is its public name, e.g. `['one', 'oneAlias', 'two', 'two']`.
*/
function getHostDirectiveBindingMapping(array: string[]) {
let result: {[publicName: string]: string} | null = null;
for (let i = 1; i < array.length; i += 2) {
result = result || {};
result[array[i - 1]] = array[i];
}
return result;
}
function convertOpaqueValuesToExpressions(obj: {[key: string]: OpaqueValue}): {
[key: string]: WrappedNodeExpr<unknown>;
} {
const result: {[key: string]: WrappedNodeExpr<unknown>} = {};
for (const key of Object.keys(obj)) {
result[key] = new WrappedNodeExpr(obj[key]);
}
return result;
}
function convertDeclareComponentFacadeToMetadata(
decl: R3DeclareComponentFacade,
typeSourceSpan: ParseSourceSpan,
sourceMapUrl: string,
): R3ComponentMetadata<R3TemplateDependencyMetadata> {
const {template, interpolation, defer} = parseJitTemplate(
decl.template,
decl.type.name,
sourceMapUrl,
decl.preserveWhitespaces ?? false,
decl.interpolation,
decl.deferBlockDependencies,
);
const declarations: R3TemplateDependencyMetadata[] = [];
if (decl.dependencies) {
for (const innerDep of decl.dependencies) {
switch (innerDep.kind) {
case 'directive':
case 'component':
declarations.push(convertDirectiveDeclarationToMetadata(innerDep));
break;
case 'pipe':
declarations.push(convertPipeDeclarationToMetadata(innerDep));
break;
}
}
} else if (decl.components || decl.directives || decl.pipes) {
// Existing declarations on NPM may not be using the new `dependencies` merged field, and may
// have separate fields for dependencies instead. Unify them for JIT compilation.
decl.components &&
declarations.push(
...decl.components.map((dir) =>
convertDirectiveDeclarationToMetadata(dir, /* isComponent */ true),
),
);
decl.directives &&
declarations.push(
...decl.directives.map((dir) => convertDirectiveDeclarationToMetadata(dir)),
);
decl.pipes && declarations.push(...convertPipeMapToMetadata(decl.pipes));
}
return {
...convertDeclareDirectiveFacadeToMetadata(decl, typeSourceSpan),
template,
styles: decl.styles ?? [],
declarations,
viewProviders:
decl.viewProviders !== undefined ? new WrappedNodeExpr(decl.viewProviders) : null,
animations: decl.animations !== undefined ? new WrappedNodeExpr(decl.animations) : null,
defer,
changeDetection: decl.changeDetection ?? ChangeDetectionStrategy.Default,
encapsulation: decl.encapsulation ?? ViewEncapsulation.Emulated,
interpolation,
declarationListEmitMode: DeclarationListEmitMode.ClosureResolved,
relativeContextFilePath: '',
i18nUseExternalIds: true,
};
}
function convertDeclarationFacadeToMetadata(
declaration: R3TemplateDependencyFacade,
): R3TemplateDependency {
return {
...declaration,
type: new WrappedNodeExpr(declaration.type),
};
}
function convertDirectiveDeclarationToMetadata(
declaration: R3DeclareDirectiveDependencyFacade,
isComponent: true | null = null,
): R3DirectiveDependencyMetadata {
return {
kind: R3TemplateDependencyKind.Directive,
isComponent: isComponent || declaration.kind === 'component',
selector: declaration.selector,
type: new WrappedNodeExpr(declaration.type),
inputs: declaration.inputs ?? [],
outputs: declaration.outputs ?? [],
exportAs: declaration.exportAs ?? null,
};
}
function convertPipeMapToMetadata(
pipes: R3DeclareComponentFacade['pipes'],
): R3PipeDependencyMetadata[] {
if (!pipes) {
return [];
}
return Object.keys(pipes).map((name) => {
return {
kind: R3TemplateDependencyKind.Pipe,
name,
type: new WrappedNodeExpr(pipes[name]),
};
});
}
function convertPipeDeclarationToMetadata(
pipe: R3DeclarePipeDependencyFacade,
): R3PipeDependencyMetadata {
return {
kind: R3TemplateDependencyKind.Pipe,
name: pipe.name,
type: new WrappedNodeExpr(pipe.type),
};
}
function parseJitTemplate(
template: string,
typeName: string,
sourceMapUrl: string,
preserveWhitespaces: boolean,
interpolation: [string, string] | undefined,
deferBlockDependencies: (() => Promise<unknown> | null)[] | undefined,
) {
const interpolationConfig = interpolation
? InterpolationConfig.fromArray(interpolation)
: DEFAULT_INTERPOLATION_CONFIG;
// Parse the template and check for errors.
const parsed = parseTemplate(template, sourceMapUrl, {
preserveWhitespaces,
interpolationConfig,
});
if (parsed.errors !== null) {
const errors = parsed.errors.map((err) => err.toString()).join(', ');
throw new Error(`Errors during JIT compilation of template for ${typeName}: ${errors}`);
}
const binder = new R3TargetBinder(new SelectorMatcher());
const boundTarget = binder.bind({template: parsed.nodes});
return {
template: parsed,
interpolation: interpolationConfig,
defer: createR3ComponentDeferMetadata(boundTarget, deferBlockDependencies),
};
}
/**
* Convert the expression, if present to an `R3ProviderExpression`.
*
* In JIT mode we do not want the compiler to wrap the expression in a `forwardRef()` call because,
* if it is referencing a type that has not yet been defined, it will have already been wrapped in
* a `forwardRef()` - either by the application developer or during partial-compilation. Thus we can
* use `ForwardRefHandling.None`.
*/
function convertToProviderExpression(
obj: any,
property: string,
): MaybeForwardRefExpression | undefined {
if (obj.hasOwnProperty(property)) {
return createMayBeForwardRefExpression(
new WrappedNodeExpr(obj[property]),
ForwardRefHandling.None,
);
} else {
return undefined;
}
}
function wrapExpression(obj: any, property: string): WrappedNodeExpr<any> | undefined {
if (obj.hasOwnProperty(property)) {
return new WrappedNodeExpr(obj[property]);
} else {
return undefined;
}
}
function computeProvidedIn(
providedIn: Function | string | null | undefined,
): MaybeForwardRefExpression {
const expression =
typeof providedIn === 'function'
? new WrappedNodeExpr(providedIn)
: new LiteralExpr(providedIn ?? null);
// See `convertToProviderExpression()` for why this uses `ForwardRefHandling.None`.
return createMayBeForwardRefExpression(expression, ForwardRefHandling.None);
}
function convertR3DependencyMetadataArray(
facades: R3DependencyMetadataFacade[] | null | undefined,
): R3DependencyMetadata[] | null {
return facades == null ? null : facades.map(convertR3DependencyMetadata);
}
function convertR3DependencyMetadata(facade: R3DependencyMetadataFacade): R3DependencyMetadata {
const isAttributeDep = facade.attribute != null; // both `null` and `undefined`
const rawToken = facade.token === null ? null : new WrappedNodeExpr(facade.token);
// In JIT mode, if the dep is an `@Attribute()` then we use the attribute name given in
// `attribute` rather than the `token`.
const token = isAttributeDep ? new WrappedNodeExpr(facade.attribute) : rawToken;
return createR3DependencyMetadata(
token,
isAttributeDep,
facade.host,
facade.optional,
facade.self,
facade.skipSelf,
);
}
function convertR3DeclareDependencyMetadata(
facade: R3DeclareDependencyMetadataFacade,
): R3DependencyMetadata {
const isAttributeDep = facade.attribute ?? false;
const token = facade.token === null ? null : new WrappedNodeExpr(facade.token);
return createR3DependencyMetadata(
token,
isAttributeDep,
facade.host ?? false,
facade.optional ?? false,
facade.self ?? false,
facade.skipSelf ?? false,
);
}
function createR3DependencyMetadata(
token: WrappedNodeExpr<unknown> | null,
isAttributeDep: boolean,
host: boolean,
optional: boolean,
self: boolean,
skipSelf: boolean,
): R3DependencyMetadata {
// If the dep is an `@Attribute()` the `attributeNameType` ought to be the `unknown` type.
// But types are not available at runtime so we just use a literal `"<unknown>"` string as a dummy
// marker.
const attributeNameType = isAttributeDep ? literal('unknown') : null;
return {token, attributeNameType, host, optional, self, skipSelf};
}
function createR3ComponentDeferMetadata(
boundTarget: BoundTarget<any>,
deferBlockDependencies: (() => Promise<unknown> | null)[] | undefined,
): R3ComponentDeferMetadata {
const deferredBlocks = boundTarget.getDeferBlocks();
const blocks = new Map<DeferredBlock, Expression | null>();
for (let i = 0; i < deferredBlocks.length; i++) {
const dependencyFn = deferBlockDependencies?.[i];
blocks.set(deferredBlocks[i], dependencyFn ? new WrappedNodeExpr(dependencyFn) : null);
}
return {mode: DeferBlockDepsEmitMode.PerBlock, blocks};
}
function extractHostBindings(
propMetadata: {[key: string]: any[]},
sourceSpan: ParseSourceSpan,
host?: {[key: string]: string},
): ParsedHostBindings {
// First parse the declarations from the metadata.
const bindings = parseHostBindings(host || {});
// After that check host bindings for errors
const errors = verifyHostBindings(bindings, sourceSpan);
if (errors.length) {
throw new Error(errors.map((error: ParseError) => error.msg).join('\n'));
}
// Next, loop over the properties of the object, looking for @HostBinding and @HostListener.
for (const field in propMetadata) {
if (propMetadata.hasOwnProperty(field)) {
propMetadata[field].forEach((ann) => {
if (isHostBinding(ann)) {
// Since this is a decorator, we know that the value is a class member. Always access it
// through `this` so that further down the line it can't be confused for a literal value
// (e.g. if there's a property called `true`).
bindings.properties[ann.hostPropertyName || field] = getSafePropertyAccessString(
'this',
field,
);
} else if (isHostListener(ann)) {
bindings.listeners[ann.eventName || field] = `${field}(${(ann.args || []).join(',')})`;
}
});
}
}
return bindings;
}
function isHostBinding(value: any): value is HostBinding {
return value.ngMetadataName === 'HostBinding';
}
function isHostListener(value: any): value is HostListener {
return value.ngMetadataName === 'HostListener';
}
function isInput(value: any): value is Input {
return value.ngMetadataName === 'Input';
}
function isOutput(value: any): value is Output {
return value.ngMetadataName === 'Output';
}
function inputsPartialMetadataToInputMetadata(
inputs: NonNullable<R3DeclareDirectiveFacade['inputs']>,
) {
return Object.keys(inputs).reduce<Record<string, R3InputMetadata>>(
(result, minifiedClassName) => {
const value = inputs[minifiedClassName];
// Handle legacy partial input output.
if (typeof value === 'string' || Array.isArray(value)) {
result[minifiedClassName] = parseLegacyInputPartialOutput(value);
} else {
result[minifiedClassName] = {
bindingPropertyName: value.publicName,
classPropertyName: minifiedClassName,
transformFunction:
value.transformFunction !== null ? new WrappedNodeExpr(value.transformFunction) : null,
required: value.isRequired,
isSignal: value.isSignal,
};
}
return result;
},
{},
);
}
/**
* Parses the legacy input partial output. For more details see `partial/directive.ts`.
* TODO(legacy-partial-output-inputs): Remove in v18.
*/
function parseLegacyInputPartialOutput(value: LegacyInputPartialMapping): R3InputMetadata {
if (typeof value === 'string') {
return {
bindingPropertyName: value,
classPropertyName: value,
transformFunction: null,
required: false,
// legacy partial output does not capture signal inputs.
isSignal: false,
};
}
return {
bindingPropertyName: value[0],
classPropertyName: value[1],
transformFunction: value[2] ? new WrappedNodeExpr(value[2]) : null,
required: false,
// legacy partial output does not capture signal inputs.
isSignal: false,
};
}
function parseInputsArray(
values: (string | {name: string; alias?: string; required?: boolean; transform?: Function})[],
) {
return values.reduce<Record<string, R3InputMetadata>>((results, value) => {
if (typeof value === 'string') {
const [bindingPropertyName, classPropertyName] = parseMappingString(value);
results[classPropertyName] = {
bindingPropertyName,
classPropertyName,
required: false,
// Signal inputs not supported for the inputs array.
isSignal: false,
transformFunction: null,
};
} else {
results[value.name] = {
bindingPropertyName: value.alias || value.name,
classPropertyName: value.name,
required: value.required || false,
// Signal inputs not supported for the inputs array.
isSignal: false,
transformFunction: value.transform != null ? new WrappedNodeExpr(value.transform) : null,
};
}
return results;
}, {});
}
function parseMappingStringArray(values: string[]): Record<string, string> {
return values.reduce<Record<string, string>>((results, value) => {
const [alias, fieldName] = parseMappingString(value);