2018-04-06 09:53:10 -07:00
|
|
|
/**
|
|
|
|
* @license
|
2020-05-19 12:08:49 -07:00
|
|
|
* Copyright Google LLC All Rights Reserved.
|
2018-04-06 09:53:10 -07:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2018-05-09 08:35:25 -07:00
|
|
|
import {Identifiers} from './identifiers';
|
2018-04-06 09:53:10 -07:00
|
|
|
import * as o from './output/output_ast';
|
2020-04-08 10:14:18 -07:00
|
|
|
import {compileFactoryFunction, R3DependencyMetadata, R3FactoryDelegateType, R3FactoryMetadata, R3FactoryTarget} from './render3/r3_factory';
|
2021-03-10 13:28:04 +00:00
|
|
|
import {R3Reference, typeWithParameters} from './render3/util';
|
|
|
|
import {DefinitionMap} from './render3/view/util';
|
2018-04-06 09:53:10 -07:00
|
|
|
|
|
|
|
export interface InjectableDef {
|
|
|
|
expression: o.Expression;
|
|
|
|
type: o.Type;
|
2018-07-16 16:36:31 -07:00
|
|
|
statements: o.Statement[];
|
2018-04-06 09:53:10 -07:00
|
|
|
}
|
|
|
|
|
2018-05-09 08:35:25 -07:00
|
|
|
export interface R3InjectableMetadata {
|
2018-04-06 09:53:10 -07:00
|
|
|
name: string;
|
2019-12-18 14:03:05 +00:00
|
|
|
type: R3Reference;
|
refactor(ivy): split `type` into `type`, `internalType` and `adjacentType` (#33533)
When compiling an Angular decorator (e.g. Directive), @angular/compiler
generates an 'expression' to be added as a static definition field
on the class, a 'type' which will be added for that field to the .d.ts
file, and a statement adjacent to the class that calls `setClassMetadata()`.
Previously, the same WrappedNodeExpr of the class' ts.Identifier was used
within each of this situations.
In the ngtsc case, this is proper. In the ngcc case, if the class being
compiled is within an ES5 IIFE, the outer name of the class may have
changed. Thus, the class has both an inner and outer name. The outer name
should continue to be used elsewhere in the compiler and in 'type'.
The 'expression' will live within the IIFE, the `internalType` should be used.
The adjacent statement will also live within the IIFE, the `adjacentType` should be used.
This commit introduces `ReflectionHost.getInternalNameOfClass()` and
`ReflectionHost.getAdjacentNameOfClass()`, which the compiler can use to
query for the correct name to use.
PR Close #33533
2019-11-01 16:55:09 +00:00
|
|
|
internalType: o.Expression;
|
2018-11-10 02:58:33 +01:00
|
|
|
typeArgumentCount: number;
|
2018-04-06 09:53:10 -07:00
|
|
|
providedIn: o.Expression;
|
|
|
|
useClass?: o.Expression;
|
2018-05-09 08:35:25 -07:00
|
|
|
useFactory?: o.Expression;
|
2018-04-06 09:53:10 -07:00
|
|
|
useExisting?: o.Expression;
|
|
|
|
useValue?: o.Expression;
|
2018-07-16 16:36:31 -07:00
|
|
|
userDeps?: R3DependencyMetadata[];
|
2018-04-06 09:53:10 -07:00
|
|
|
}
|
|
|
|
|
2018-05-09 08:35:25 -07:00
|
|
|
export function compileInjectable(meta: R3InjectableMetadata): InjectableDef {
|
2021-03-10 15:24:11 +00:00
|
|
|
let result: {expression: o.Expression, statements: o.Statement[]}|null = null;
|
2018-05-09 08:35:25 -07:00
|
|
|
|
refactor(ivy): split `type` into `type`, `internalType` and `adjacentType` (#33533)
When compiling an Angular decorator (e.g. Directive), @angular/compiler
generates an 'expression' to be added as a static definition field
on the class, a 'type' which will be added for that field to the .d.ts
file, and a statement adjacent to the class that calls `setClassMetadata()`.
Previously, the same WrappedNodeExpr of the class' ts.Identifier was used
within each of this situations.
In the ngtsc case, this is proper. In the ngcc case, if the class being
compiled is within an ES5 IIFE, the outer name of the class may have
changed. Thus, the class has both an inner and outer name. The outer name
should continue to be used elsewhere in the compiler and in 'type'.
The 'expression' will live within the IIFE, the `internalType` should be used.
The adjacent statement will also live within the IIFE, the `adjacentType` should be used.
This commit introduces `ReflectionHost.getInternalNameOfClass()` and
`ReflectionHost.getAdjacentNameOfClass()`, which the compiler can use to
query for the correct name to use.
PR Close #33533
2019-11-01 16:55:09 +00:00
|
|
|
const factoryMeta: R3FactoryMetadata = {
|
2018-07-16 16:36:31 -07:00
|
|
|
name: meta.name,
|
|
|
|
type: meta.type,
|
refactor(ivy): split `type` into `type`, `internalType` and `adjacentType` (#33533)
When compiling an Angular decorator (e.g. Directive), @angular/compiler
generates an 'expression' to be added as a static definition field
on the class, a 'type' which will be added for that field to the .d.ts
file, and a statement adjacent to the class that calls `setClassMetadata()`.
Previously, the same WrappedNodeExpr of the class' ts.Identifier was used
within each of this situations.
In the ngtsc case, this is proper. In the ngcc case, if the class being
compiled is within an ES5 IIFE, the outer name of the class may have
changed. Thus, the class has both an inner and outer name. The outer name
should continue to be used elsewhere in the compiler and in 'type'.
The 'expression' will live within the IIFE, the `internalType` should be used.
The adjacent statement will also live within the IIFE, the `adjacentType` should be used.
This commit introduces `ReflectionHost.getInternalNameOfClass()` and
`ReflectionHost.getAdjacentNameOfClass()`, which the compiler can use to
query for the correct name to use.
PR Close #33533
2019-11-01 16:55:09 +00:00
|
|
|
internalType: meta.internalType,
|
2019-08-12 09:26:20 +03:00
|
|
|
typeArgumentCount: meta.typeArgumentCount,
|
2019-09-01 12:26:04 +02:00
|
|
|
deps: [],
|
2019-10-03 21:54:49 +02:00
|
|
|
target: R3FactoryTarget.Injectable,
|
2018-07-16 16:36:31 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
if (meta.useClass !== undefined) {
|
|
|
|
// meta.useClass has two modes of operation. Either deps are specified, in which case `new` is
|
|
|
|
// used to instantiate the class with dependencies injected, or deps are not specified and
|
|
|
|
// the factory of the class is used to instantiate it.
|
|
|
|
//
|
feat(ivy): compile @Injectable on classes not meant for DI (#28523)
In the past, @Injectable had no side effects and existing Angular code is
therefore littered with @Injectable usage on classes which are not intended
to be injected.
A common example is:
@Injectable()
class Foo {
constructor(private notInjectable: string) {}
}
and somewhere else:
providers: [{provide: Foo, useFactory: ...})
Here, there is no need for Foo to be injectable - indeed, it's impossible
for the DI system to create an instance of it, as it has a non-injectable
constructor. The provider configures a factory for the DI system to be
able to create instances of Foo.
Adding @Injectable in Ivy signifies that the class's own constructor, and
not a provider, determines how the class will be created.
This commit adds logic to compile classes which are marked with @Injectable
but are otherwise not injectable, and create an ngInjectableDef field with
a factory function that throws an error. This way, existing code in the wild
continues to compile, but if someone attempts to use the injectable it will
fail with a useful error message.
In the case where strictInjectionParameters is set to true, a compile-time
error is thrown instead of the runtime error, as ngtsc has enough
information to determine when injection couldn't possibly be valid.
PR Close #28523
2019-01-31 14:23:54 -08:00
|
|
|
// A special case exists for useClass: Type where Type is the injectable type itself and no
|
|
|
|
// deps are specified, in which case 'useClass' is effectively ignored.
|
2018-05-09 08:35:25 -07:00
|
|
|
|
refactor(ivy): split `type` into `type`, `internalType` and `adjacentType` (#33533)
When compiling an Angular decorator (e.g. Directive), @angular/compiler
generates an 'expression' to be added as a static definition field
on the class, a 'type' which will be added for that field to the .d.ts
file, and a statement adjacent to the class that calls `setClassMetadata()`.
Previously, the same WrappedNodeExpr of the class' ts.Identifier was used
within each of this situations.
In the ngtsc case, this is proper. In the ngcc case, if the class being
compiled is within an ES5 IIFE, the outer name of the class may have
changed. Thus, the class has both an inner and outer name. The outer name
should continue to be used elsewhere in the compiler and in 'type'.
The 'expression' will live within the IIFE, the `internalType` should be used.
The adjacent statement will also live within the IIFE, the `adjacentType` should be used.
This commit introduces `ReflectionHost.getInternalNameOfClass()` and
`ReflectionHost.getAdjacentNameOfClass()`, which the compiler can use to
query for the correct name to use.
PR Close #33533
2019-11-01 16:55:09 +00:00
|
|
|
const useClassOnSelf = meta.useClass.isEquivalent(meta.internalType);
|
feat(ivy): compile @Injectable on classes not meant for DI (#28523)
In the past, @Injectable had no side effects and existing Angular code is
therefore littered with @Injectable usage on classes which are not intended
to be injected.
A common example is:
@Injectable()
class Foo {
constructor(private notInjectable: string) {}
}
and somewhere else:
providers: [{provide: Foo, useFactory: ...})
Here, there is no need for Foo to be injectable - indeed, it's impossible
for the DI system to create an instance of it, as it has a non-injectable
constructor. The provider configures a factory for the DI system to be
able to create instances of Foo.
Adding @Injectable in Ivy signifies that the class's own constructor, and
not a provider, determines how the class will be created.
This commit adds logic to compile classes which are marked with @Injectable
but are otherwise not injectable, and create an ngInjectableDef field with
a factory function that throws an error. This way, existing code in the wild
continues to compile, but if someone attempts to use the injectable it will
fail with a useful error message.
In the case where strictInjectionParameters is set to true, a compile-time
error is thrown instead of the runtime error, as ngtsc has enough
information to determine when injection couldn't possibly be valid.
PR Close #28523
2019-01-31 14:23:54 -08:00
|
|
|
let deps: R3DependencyMetadata[]|undefined = undefined;
|
|
|
|
if (meta.userDeps !== undefined) {
|
|
|
|
deps = meta.userDeps;
|
|
|
|
}
|
2018-05-09 08:35:25 -07:00
|
|
|
|
2018-07-16 16:36:31 -07:00
|
|
|
if (deps !== undefined) {
|
|
|
|
// factory: () => new meta.useClass(...deps)
|
|
|
|
result = compileFactoryFunction({
|
|
|
|
...factoryMeta,
|
|
|
|
delegate: meta.useClass,
|
|
|
|
delegateDeps: deps,
|
|
|
|
delegateType: R3FactoryDelegateType.Class,
|
2018-05-09 08:35:25 -07:00
|
|
|
});
|
feat(ivy): compile @Injectable on classes not meant for DI (#28523)
In the past, @Injectable had no side effects and existing Angular code is
therefore littered with @Injectable usage on classes which are not intended
to be injected.
A common example is:
@Injectable()
class Foo {
constructor(private notInjectable: string) {}
}
and somewhere else:
providers: [{provide: Foo, useFactory: ...})
Here, there is no need for Foo to be injectable - indeed, it's impossible
for the DI system to create an instance of it, as it has a non-injectable
constructor. The provider configures a factory for the DI system to be
able to create instances of Foo.
Adding @Injectable in Ivy signifies that the class's own constructor, and
not a provider, determines how the class will be created.
This commit adds logic to compile classes which are marked with @Injectable
but are otherwise not injectable, and create an ngInjectableDef field with
a factory function that throws an error. This way, existing code in the wild
continues to compile, but if someone attempts to use the injectable it will
fail with a useful error message.
In the case where strictInjectionParameters is set to true, a compile-time
error is thrown instead of the runtime error, as ngtsc has enough
information to determine when injection couldn't possibly be valid.
PR Close #28523
2019-01-31 14:23:54 -08:00
|
|
|
} else if (useClassOnSelf) {
|
|
|
|
result = compileFactoryFunction(factoryMeta);
|
2018-05-09 08:35:25 -07:00
|
|
|
} else {
|
2019-11-27 15:52:34 -08:00
|
|
|
result = delegateToFactory(
|
2019-12-18 14:03:05 +00:00
|
|
|
meta.type.value as o.WrappedNodeExpr<any>, meta.useClass as o.WrappedNodeExpr<any>);
|
2019-09-01 12:26:04 +02:00
|
|
|
}
|
|
|
|
} else if (meta.useFactory !== undefined) {
|
|
|
|
if (meta.userDeps !== undefined) {
|
2018-07-16 16:36:31 -07:00
|
|
|
result = compileFactoryFunction({
|
|
|
|
...factoryMeta,
|
2019-09-01 12:26:04 +02:00
|
|
|
delegate: meta.useFactory,
|
|
|
|
delegateDeps: meta.userDeps || [],
|
|
|
|
delegateType: R3FactoryDelegateType.Function,
|
2018-07-16 16:36:31 -07:00
|
|
|
});
|
2019-09-01 12:26:04 +02:00
|
|
|
} else {
|
|
|
|
result = {
|
|
|
|
statements: [],
|
2021-03-10 15:24:11 +00:00
|
|
|
expression: o.fn([], [new o.ReturnStatement(meta.useFactory.callFn([]))])
|
2019-09-01 12:26:04 +02:00
|
|
|
};
|
2018-05-09 08:35:25 -07:00
|
|
|
}
|
2018-04-06 09:53:10 -07:00
|
|
|
} else if (meta.useValue !== undefined) {
|
2018-05-09 08:35:25 -07:00
|
|
|
// Note: it's safe to use `meta.useValue` instead of the `USE_VALUE in meta` check used for
|
|
|
|
// client code because meta.useValue is an Expression which will be defined even if the actual
|
|
|
|
// value is undefined.
|
2018-07-16 16:36:31 -07:00
|
|
|
result = compileFactoryFunction({
|
|
|
|
...factoryMeta,
|
|
|
|
expression: meta.useValue,
|
|
|
|
});
|
2018-04-06 09:53:10 -07:00
|
|
|
} else if (meta.useExisting !== undefined) {
|
2018-05-09 08:35:25 -07:00
|
|
|
// useExisting is an `inject` call on the existing token.
|
2018-07-16 16:36:31 -07:00
|
|
|
result = compileFactoryFunction({
|
|
|
|
...factoryMeta,
|
|
|
|
expression: o.importExpr(Identifiers.inject).callFn([meta.useExisting]),
|
2018-05-09 08:35:25 -07:00
|
|
|
});
|
2018-07-16 16:36:31 -07:00
|
|
|
} else {
|
2019-11-27 15:52:34 -08:00
|
|
|
result = delegateToFactory(
|
2019-12-18 14:03:05 +00:00
|
|
|
meta.type.value as o.WrappedNodeExpr<any>, meta.internalType as o.WrappedNodeExpr<any>);
|
2018-04-06 09:53:10 -07:00
|
|
|
}
|
|
|
|
|
refactor(ivy): split `type` into `type`, `internalType` and `adjacentType` (#33533)
When compiling an Angular decorator (e.g. Directive), @angular/compiler
generates an 'expression' to be added as a static definition field
on the class, a 'type' which will be added for that field to the .d.ts
file, and a statement adjacent to the class that calls `setClassMetadata()`.
Previously, the same WrappedNodeExpr of the class' ts.Identifier was used
within each of this situations.
In the ngtsc case, this is proper. In the ngcc case, if the class being
compiled is within an ES5 IIFE, the outer name of the class may have
changed. Thus, the class has both an inner and outer name. The outer name
should continue to be used elsewhere in the compiler and in 'type'.
The 'expression' will live within the IIFE, the `internalType` should be used.
The adjacent statement will also live within the IIFE, the `adjacentType` should be used.
This commit introduces `ReflectionHost.getInternalNameOfClass()` and
`ReflectionHost.getAdjacentNameOfClass()`, which the compiler can use to
query for the correct name to use.
PR Close #33533
2019-11-01 16:55:09 +00:00
|
|
|
const token = meta.internalType;
|
2018-04-06 09:53:10 -07:00
|
|
|
|
2021-03-10 13:28:04 +00:00
|
|
|
const injectableProps =
|
|
|
|
new DefinitionMap<{token: o.Expression, factory: o.Expression, providedIn: o.Expression}>();
|
|
|
|
injectableProps.set('token', token);
|
2021-03-10 15:24:11 +00:00
|
|
|
injectableProps.set('factory', result.expression);
|
2019-11-27 16:25:47 -08:00
|
|
|
|
|
|
|
// Only generate providedIn property if it has a non-null value
|
|
|
|
if ((meta.providedIn as o.LiteralExpr).value !== null) {
|
2021-03-10 13:28:04 +00:00
|
|
|
injectableProps.set('providedIn', meta.providedIn);
|
2019-11-27 16:25:47 -08:00
|
|
|
}
|
|
|
|
|
2021-03-05 16:25:04 -08:00
|
|
|
const expression = o.importExpr(Identifiers.ɵɵdefineInjectable)
|
2021-03-10 13:28:04 +00:00
|
|
|
.callFn([injectableProps.toLiteralMap()], undefined, true);
|
2018-11-10 02:58:33 +01:00
|
|
|
const type = new o.ExpressionType(o.importExpr(
|
2019-12-18 14:03:05 +00:00
|
|
|
Identifiers.InjectableDef, [typeWithParameters(meta.type.type, meta.typeArgumentCount)]));
|
2018-04-06 09:53:10 -07:00
|
|
|
|
|
|
|
return {
|
2018-07-16 16:36:31 -07:00
|
|
|
expression,
|
|
|
|
type,
|
|
|
|
statements: result.statements,
|
2018-04-06 09:53:10 -07:00
|
|
|
};
|
|
|
|
}
|
2019-09-01 12:26:04 +02:00
|
|
|
|
2019-11-27 15:52:34 -08:00
|
|
|
function delegateToFactory(type: o.WrappedNodeExpr<any>, internalType: o.WrappedNodeExpr<any>) {
|
2019-09-01 12:26:04 +02:00
|
|
|
return {
|
|
|
|
statements: [],
|
2019-11-27 15:52:34 -08:00
|
|
|
// If types are the same, we can generate `factory: type.ɵfac`
|
|
|
|
// If types are different, we have to generate a wrapper function to ensure
|
|
|
|
// the internal type has been resolved (`factory: function(t) { return type.ɵfac(t); }`)
|
2021-03-10 15:24:11 +00:00
|
|
|
expression: type.node === internalType.node ?
|
2019-11-27 15:52:34 -08:00
|
|
|
internalType.prop('ɵfac') :
|
|
|
|
o.fn([new o.FnParam('t', o.DYNAMIC_TYPE)], [new o.ReturnStatement(internalType.callMethod(
|
|
|
|
'ɵfac', [o.variable('t')]))])
|
2019-09-01 12:26:04 +02:00
|
|
|
};
|
|
|
|
}
|