2017-11-20 13:21:17 -05:00
|
|
|
/**
|
|
|
|
* @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 * as o from './output/output_ast';
|
2020-04-08 13:14:18 -04:00
|
|
|
import {error, OutputContext} from './util';
|
2017-11-20 13:21:17 -05:00
|
|
|
|
2018-01-11 18:37:56 -05:00
|
|
|
const CONSTANT_PREFIX = '_c';
|
|
|
|
|
2020-02-16 06:49:23 -05:00
|
|
|
/**
|
|
|
|
* `ConstantPool` tries to reuse literal factories when two or more literals are identical.
|
|
|
|
* We determine whether literals are identical by creating a key out of their AST using the
|
|
|
|
* `KeyVisitor`. This constant is used to replace dynamic expressions which can't be safely
|
|
|
|
* converted into a key. E.g. given an expression `{foo: bar()}`, since we don't know what
|
|
|
|
* the result of `bar` will be, we create a key that looks like `{foo: <unknown>}`. Note
|
|
|
|
* that we use a variable, rather than something like `null` in order to avoid collisions.
|
|
|
|
*/
|
|
|
|
const UNKNOWN_VALUE_KEY = o.variable('<unknown>');
|
|
|
|
|
2020-04-08 13:14:18 -04:00
|
|
|
export const enum DefinitionKind {
|
|
|
|
Injector,
|
|
|
|
Directive,
|
|
|
|
Component,
|
|
|
|
Pipe
|
|
|
|
}
|
2017-11-20 13:21:17 -05:00
|
|
|
|
2018-02-14 20:12:05 -05:00
|
|
|
/**
|
|
|
|
* Context to use when producing a key.
|
|
|
|
*
|
|
|
|
* This ensures we see the constant not the reference variable when producing
|
|
|
|
* a key.
|
|
|
|
*/
|
|
|
|
const KEY_CONTEXT = {};
|
|
|
|
|
2017-11-20 13:21:17 -05:00
|
|
|
/**
|
|
|
|
* A node that is a place-holder that allows the node to be replaced when the actual
|
|
|
|
* node is known.
|
|
|
|
*
|
|
|
|
* This allows the constant pool to change an expression from a direct reference to
|
|
|
|
* a constant to a shared constant. It returns a fix-up node that is later allowed to
|
|
|
|
* change the referenced expression.
|
|
|
|
*/
|
|
|
|
class FixupExpression extends o.Expression {
|
2018-02-14 20:12:05 -05:00
|
|
|
private original: o.Expression;
|
2017-11-20 13:21:17 -05:00
|
|
|
|
2018-06-18 19:38:33 -04:00
|
|
|
// TODO(issue/24571): remove '!'.
|
2020-04-08 13:14:18 -04:00
|
|
|
shared!: boolean;
|
2017-11-20 13:21:17 -05:00
|
|
|
|
2018-02-14 20:12:05 -05:00
|
|
|
constructor(public resolved: o.Expression) {
|
|
|
|
super(resolved.type);
|
|
|
|
this.original = resolved;
|
|
|
|
}
|
|
|
|
|
2017-11-20 13:21:17 -05:00
|
|
|
visitExpression(visitor: o.ExpressionVisitor, context: any): any {
|
2018-02-14 20:12:05 -05:00
|
|
|
if (context === KEY_CONTEXT) {
|
|
|
|
// When producing a key we want to traverse the constant not the
|
|
|
|
// variable used to refer to it.
|
|
|
|
return this.original.visitExpression(visitor, context);
|
|
|
|
} else {
|
|
|
|
return this.resolved.visitExpression(visitor, context);
|
|
|
|
}
|
2017-11-20 13:21:17 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
isEquivalent(e: o.Expression): boolean {
|
|
|
|
return e instanceof FixupExpression && this.resolved.isEquivalent(e.resolved);
|
|
|
|
}
|
|
|
|
|
2020-04-08 13:14:18 -04:00
|
|
|
isConstant() {
|
|
|
|
return true;
|
|
|
|
}
|
2018-02-14 20:12:05 -05:00
|
|
|
|
2017-11-20 13:21:17 -05:00
|
|
|
fixup(expression: o.Expression) {
|
|
|
|
this.resolved = expression;
|
|
|
|
this.shared = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A constant pool allows a code emitter to share constant in an output context.
|
|
|
|
*
|
|
|
|
* The constant pool also supports sharing access to ivy definitions references.
|
|
|
|
*/
|
|
|
|
export class ConstantPool {
|
|
|
|
statements: o.Statement[] = [];
|
|
|
|
private literals = new Map<string, FixupExpression>();
|
2018-02-14 20:12:05 -05:00
|
|
|
private literalFactories = new Map<string, o.Expression>();
|
2017-11-20 13:21:17 -05:00
|
|
|
private injectorDefinitions = new Map<any, FixupExpression>();
|
|
|
|
private directiveDefinitions = new Map<any, FixupExpression>();
|
2018-01-11 18:37:56 -05:00
|
|
|
private componentDefinitions = new Map<any, FixupExpression>();
|
2018-02-05 20:31:12 -05:00
|
|
|
private pipeDefinitions = new Map<any, FixupExpression>();
|
2017-11-20 13:21:17 -05:00
|
|
|
|
|
|
|
private nextNameIndex = 0;
|
|
|
|
|
2018-01-11 18:37:56 -05:00
|
|
|
getConstLiteral(literal: o.Expression, forceShared?: boolean): o.Expression {
|
2018-02-14 20:12:05 -05:00
|
|
|
if (literal instanceof o.LiteralExpr || literal instanceof FixupExpression) {
|
|
|
|
// Do no put simple literals into the constant pool or try to produce a constant for a
|
|
|
|
// reference to a constant.
|
|
|
|
return literal;
|
|
|
|
}
|
2017-11-20 13:21:17 -05:00
|
|
|
const key = this.keyOf(literal);
|
|
|
|
let fixup = this.literals.get(key);
|
2018-01-11 18:37:56 -05:00
|
|
|
let newValue = false;
|
2017-11-20 13:21:17 -05:00
|
|
|
if (!fixup) {
|
|
|
|
fixup = new FixupExpression(literal);
|
|
|
|
this.literals.set(key, fixup);
|
2018-01-11 18:37:56 -05:00
|
|
|
newValue = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((!newValue && !fixup.shared) || (newValue && forceShared)) {
|
2017-11-20 13:21:17 -05:00
|
|
|
// Replace the expression with a variable
|
|
|
|
const name = this.freshName();
|
|
|
|
this.statements.push(
|
|
|
|
o.variable(name).set(literal).toDeclStmt(o.INFERRED_TYPE, [o.StmtModifier.Final]));
|
|
|
|
fixup.fixup(o.variable(name));
|
|
|
|
}
|
2018-01-11 18:37:56 -05:00
|
|
|
|
2017-11-20 13:21:17 -05:00
|
|
|
return fixup;
|
|
|
|
}
|
|
|
|
|
2018-02-05 20:31:12 -05:00
|
|
|
getDefinition(type: any, kind: DefinitionKind, ctx: OutputContext, forceShared: boolean = false):
|
|
|
|
o.Expression {
|
|
|
|
const definitions = this.definitionsOf(kind);
|
|
|
|
let fixup = definitions.get(type);
|
|
|
|
let newValue = false;
|
2017-11-20 13:21:17 -05:00
|
|
|
if (!fixup) {
|
2018-02-05 20:31:12 -05:00
|
|
|
const property = this.propertyNameOf(kind);
|
2017-11-20 13:21:17 -05:00
|
|
|
fixup = new FixupExpression(ctx.importExpr(type).prop(property));
|
2018-02-05 20:31:12 -05:00
|
|
|
definitions.set(type, fixup);
|
|
|
|
newValue = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((!newValue && !fixup.shared) || (newValue && forceShared)) {
|
2017-11-20 13:21:17 -05:00
|
|
|
const name = this.freshName();
|
|
|
|
this.statements.push(
|
|
|
|
o.variable(name).set(fixup.resolved).toDeclStmt(o.INFERRED_TYPE, [o.StmtModifier.Final]));
|
|
|
|
fixup.fixup(o.variable(name));
|
|
|
|
}
|
|
|
|
return fixup;
|
|
|
|
}
|
|
|
|
|
2018-02-14 20:12:05 -05:00
|
|
|
getLiteralFactory(literal: o.LiteralArrayExpr|o.LiteralMapExpr):
|
|
|
|
{literalFactory: o.Expression, literalFactoryArguments: o.Expression[]} {
|
2020-02-16 06:49:23 -05:00
|
|
|
// Create a pure function that builds an array of a mix of constant and variable expressions
|
2018-02-14 20:12:05 -05:00
|
|
|
if (literal instanceof o.LiteralArrayExpr) {
|
2020-02-16 06:49:23 -05:00
|
|
|
const argumentsForKey = literal.entries.map(e => e.isConstant() ? e : UNKNOWN_VALUE_KEY);
|
2018-02-14 20:12:05 -05:00
|
|
|
const key = this.keyOf(o.literalArr(argumentsForKey));
|
|
|
|
return this._getLiteralFactory(key, literal.entries, entries => o.literalArr(entries));
|
|
|
|
} else {
|
|
|
|
const expressionForKey = o.literalMap(
|
|
|
|
literal.entries.map(e => ({
|
|
|
|
key: e.key,
|
2020-02-16 06:49:23 -05:00
|
|
|
value: e.value.isConstant() ? e.value : UNKNOWN_VALUE_KEY,
|
2018-02-14 20:12:05 -05:00
|
|
|
quoted: e.quoted
|
|
|
|
})));
|
|
|
|
const key = this.keyOf(expressionForKey);
|
|
|
|
return this._getLiteralFactory(
|
|
|
|
key, literal.entries.map(e => e.value),
|
|
|
|
entries => o.literalMap(entries.map((value, index) => ({
|
|
|
|
key: literal.entries[index].key,
|
|
|
|
value,
|
|
|
|
quoted: literal.entries[index].quoted
|
|
|
|
}))));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private _getLiteralFactory(
|
|
|
|
key: string, values: o.Expression[], resultMap: (parameters: o.Expression[]) => o.Expression):
|
|
|
|
{literalFactory: o.Expression, literalFactoryArguments: o.Expression[]} {
|
|
|
|
let literalFactory = this.literalFactories.get(key);
|
|
|
|
const literalFactoryArguments = values.filter((e => !e.isConstant()));
|
|
|
|
if (!literalFactory) {
|
|
|
|
const resultExpressions = values.map(
|
|
|
|
(e, index) => e.isConstant() ? this.getConstLiteral(e, true) : o.variable(`a${index}`));
|
|
|
|
const parameters =
|
2020-04-08 13:14:18 -04:00
|
|
|
resultExpressions.filter(isVariable).map(e => new o.FnParam(e.name!, o.DYNAMIC_TYPE));
|
2018-02-14 20:12:05 -05:00
|
|
|
const pureFunctionDeclaration =
|
|
|
|
o.fn(parameters, [new o.ReturnStatement(resultMap(resultExpressions))], o.INFERRED_TYPE);
|
|
|
|
const name = this.freshName();
|
|
|
|
this.statements.push(
|
|
|
|
o.variable(name).set(pureFunctionDeclaration).toDeclStmt(o.INFERRED_TYPE, [
|
|
|
|
o.StmtModifier.Final
|
|
|
|
]));
|
|
|
|
literalFactory = o.variable(name);
|
|
|
|
this.literalFactories.set(key, literalFactory);
|
|
|
|
}
|
|
|
|
return {literalFactory, literalFactoryArguments};
|
|
|
|
}
|
|
|
|
|
2017-11-20 13:21:17 -05:00
|
|
|
/**
|
|
|
|
* Produce a unique name.
|
|
|
|
*
|
|
|
|
* The name might be unique among different prefixes if any of the prefixes end in
|
|
|
|
* a digit so the prefix should be a constant string (not based on user input) and
|
|
|
|
* must not end in a digit.
|
|
|
|
*/
|
2020-04-08 13:14:18 -04:00
|
|
|
uniqueName(prefix: string): string {
|
|
|
|
return `${prefix}${this.nextNameIndex++}`;
|
|
|
|
}
|
2017-11-20 13:21:17 -05:00
|
|
|
|
2018-02-05 20:31:12 -05:00
|
|
|
private definitionsOf(kind: DefinitionKind): Map<any, FixupExpression> {
|
|
|
|
switch (kind) {
|
|
|
|
case DefinitionKind.Component:
|
|
|
|
return this.componentDefinitions;
|
|
|
|
case DefinitionKind.Directive:
|
|
|
|
return this.directiveDefinitions;
|
|
|
|
case DefinitionKind.Injector:
|
|
|
|
return this.injectorDefinitions;
|
|
|
|
case DefinitionKind.Pipe:
|
|
|
|
return this.pipeDefinitions;
|
|
|
|
}
|
|
|
|
error(`Unknown definition kind ${kind}`);
|
|
|
|
return this.componentDefinitions;
|
|
|
|
}
|
|
|
|
|
|
|
|
public propertyNameOf(kind: DefinitionKind): string {
|
|
|
|
switch (kind) {
|
|
|
|
case DefinitionKind.Component:
|
2019-10-10 17:57:15 -04:00
|
|
|
return 'ɵcmp';
|
2018-02-05 20:31:12 -05:00
|
|
|
case DefinitionKind.Directive:
|
2019-10-11 15:28:12 -04:00
|
|
|
return 'ɵdir';
|
2018-02-05 20:31:12 -05:00
|
|
|
case DefinitionKind.Injector:
|
2019-10-14 18:28:01 -04:00
|
|
|
return 'ɵinj';
|
2018-02-05 20:31:12 -05:00
|
|
|
case DefinitionKind.Pipe:
|
2019-10-11 22:19:59 -04:00
|
|
|
return 'ɵpipe';
|
2018-02-05 20:31:12 -05:00
|
|
|
}
|
|
|
|
error(`Unknown definition kind ${kind}`);
|
|
|
|
return '<unknown>';
|
|
|
|
}
|
|
|
|
|
2020-04-08 13:14:18 -04:00
|
|
|
private freshName(): string {
|
|
|
|
return this.uniqueName(CONSTANT_PREFIX);
|
|
|
|
}
|
2017-11-20 13:21:17 -05:00
|
|
|
|
|
|
|
private keyOf(expression: o.Expression) {
|
2018-02-14 20:12:05 -05:00
|
|
|
return expression.visitExpression(new KeyVisitor(), KEY_CONTEXT);
|
2017-11-20 13:21:17 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-22 18:03:06 -04:00
|
|
|
/**
|
|
|
|
* Visitor used to determine if 2 expressions are equivalent and can be shared in the
|
|
|
|
* `ConstantPool`.
|
|
|
|
*
|
|
|
|
* When the id (string) generated by the visitor is equal, expressions are considered equivalent.
|
|
|
|
*/
|
2017-11-20 13:21:17 -05:00
|
|
|
class KeyVisitor implements o.ExpressionVisitor {
|
2018-01-11 18:37:56 -05:00
|
|
|
visitLiteralExpr(ast: o.LiteralExpr): string {
|
|
|
|
return `${typeof ast.value === 'string' ? '"' + ast.value + '"' : ast.value}`;
|
|
|
|
}
|
2018-03-22 18:03:06 -04:00
|
|
|
|
2018-02-14 20:12:05 -05:00
|
|
|
visitLiteralArrayExpr(ast: o.LiteralArrayExpr, context: object): string {
|
|
|
|
return `[${ast.entries.map(entry => entry.visitExpression(this, context)).join(',')}]`;
|
2017-11-20 13:21:17 -05:00
|
|
|
}
|
|
|
|
|
2018-02-14 20:12:05 -05:00
|
|
|
visitLiteralMapExpr(ast: o.LiteralMapExpr, context: object): string {
|
2018-03-22 18:03:06 -04:00
|
|
|
const mapKey = (entry: o.LiteralMapEntry) => {
|
|
|
|
const quote = entry.quoted ? '"' : '';
|
|
|
|
return `${quote}${entry.key}${quote}`;
|
|
|
|
};
|
|
|
|
const mapEntry = (entry: o.LiteralMapEntry) =>
|
|
|
|
`${mapKey(entry)}:${entry.value.visitExpression(this, context)}`;
|
2018-01-11 18:37:56 -05:00
|
|
|
return `{${ast.entries.map(mapEntry).join(',')}`;
|
|
|
|
}
|
|
|
|
|
|
|
|
visitExternalExpr(ast: o.ExternalExpr): string {
|
|
|
|
return ast.value.moduleName ? `EX:${ast.value.moduleName}:${ast.value.name}` :
|
|
|
|
`EX:${ast.value.runtime.name}`;
|
2017-11-20 13:21:17 -05:00
|
|
|
}
|
|
|
|
|
2020-04-08 13:14:18 -04:00
|
|
|
visitReadVarExpr(node: o.ReadVarExpr) {
|
|
|
|
return `VAR:${node.name}`;
|
|
|
|
}
|
2018-05-10 18:58:27 -04:00
|
|
|
|
fix(ivy): use 'typeof' and 'never' for type metadata (#24862)
Previously ngtsc would use a tuple of class types for listing metadata
in .d.ts files. For example, an @NgModule's declarations might be
represented with the type:
[NgIf, NgForOf, NgClass]
If the module had no declarations, an empty tuple [] would be produced.
This has two problems.
1. If the class type has generic type parameters, TypeScript will
complain that they're not provided.
2. The empty tuple type is not actually legal.
This commit addresses both problems.
1. Class types are now represented using the `typeof` operator, so the
above declarations would be represented as:
[typeof NgIf, typeof NgForOf, typeof NgClass].
Since typeof operates on a value, it doesn't require generic type
arguments.
2. Instead of an empty tuple, `never` is used to indicate no metadata.
PR Close #24862
2018-07-17 16:34:20 -04:00
|
|
|
visitTypeofExpr(node: o.TypeofExpr, context: any): string {
|
|
|
|
return `TYPEOF:${node.expr.visitExpression(this, context)}`;
|
|
|
|
}
|
|
|
|
|
2018-04-06 12:53:10 -04:00
|
|
|
visitWrappedNodeExpr = invalid;
|
2017-11-20 13:21:17 -05:00
|
|
|
visitWriteVarExpr = invalid;
|
|
|
|
visitWriteKeyExpr = invalid;
|
|
|
|
visitWritePropExpr = invalid;
|
|
|
|
visitInvokeMethodExpr = invalid;
|
|
|
|
visitInvokeFunctionExpr = invalid;
|
|
|
|
visitInstantiateExpr = invalid;
|
|
|
|
visitConditionalExpr = invalid;
|
|
|
|
visitNotExpr = invalid;
|
|
|
|
visitAssertNotNullExpr = invalid;
|
|
|
|
visitCastExpr = invalid;
|
|
|
|
visitFunctionExpr = invalid;
|
|
|
|
visitBinaryOperatorExpr = invalid;
|
|
|
|
visitReadPropExpr = invalid;
|
|
|
|
visitReadKeyExpr = invalid;
|
|
|
|
visitCommaExpr = invalid;
|
2019-07-30 13:02:17 -04:00
|
|
|
visitLocalizedString = invalid;
|
2017-11-20 13:21:17 -05:00
|
|
|
}
|
|
|
|
|
2020-04-08 13:14:18 -04:00
|
|
|
function invalid<T>(this: o.ExpressionVisitor, arg: o.Expression|o.Statement): never {
|
2017-11-20 13:21:17 -05:00
|
|
|
throw new Error(
|
2018-02-14 13:54:00 -05:00
|
|
|
`Invalid state: Visitor ${this.constructor.name} doesn't handle ${arg.constructor.name}`);
|
2017-11-20 13:21:17 -05:00
|
|
|
}
|
2018-02-14 20:12:05 -05:00
|
|
|
|
|
|
|
function isVariable(e: o.Expression): e is o.ReadVarExpr {
|
|
|
|
return e instanceof o.ReadVarExpr;
|
2019-06-14 03:28:04 -04:00
|
|
|
}
|