2018-04-06 09:53:10 -07: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
|
|
|
|
*/
|
|
|
|
|
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';
|
2019-09-01 12:26:04 +02:00
|
|
|
import {R3DependencyMetadata, R3FactoryDelegateType, compileFactoryFunction} from './render3/r3_factory';
|
2018-11-10 02:58:33 +01:00
|
|
|
import {mapToMapExpression, typeWithParameters} from './render3/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;
|
|
|
|
type: 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 {
|
2018-07-16 16:36:31 -07:00
|
|
|
let result: {factory: o.Expression, statements: o.Statement[]}|null = null;
|
2018-05-09 08:35:25 -07:00
|
|
|
|
2018-07-16 16:36:31 -07:00
|
|
|
const factoryMeta = {
|
|
|
|
name: meta.name,
|
|
|
|
type: meta.type,
|
2019-08-12 09:26:20 +03:00
|
|
|
typeArgumentCount: meta.typeArgumentCount,
|
2019-09-01 12:26:04 +02:00
|
|
|
deps: [],
|
2018-07-16 16:36:31 -07:00
|
|
|
injectFn: Identifiers.inject,
|
|
|
|
};
|
|
|
|
|
|
|
|
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
|
|
|
|
2018-07-16 16:36:31 -07:00
|
|
|
const useClassOnSelf = meta.useClass.isEquivalent(meta.type);
|
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-09-01 12:26:04 +02:00
|
|
|
result = delegateToFactory(meta.useClass);
|
|
|
|
}
|
|
|
|
} 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: [],
|
|
|
|
factory: o.fn([], [new o.ReturnStatement(meta.useFactory.callFn([]))])
|
|
|
|
};
|
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-09-01 12:26:04 +02:00
|
|
|
result = delegateToFactory(meta.type);
|
2018-04-06 09:53:10 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
const token = meta.type;
|
|
|
|
const providedIn = meta.providedIn;
|
|
|
|
|
2019-05-17 18:49:21 -07:00
|
|
|
const expression = o.importExpr(Identifiers.ɵɵdefineInjectable).callFn([mapToMapExpression(
|
2018-07-16 16:36:31 -07:00
|
|
|
{token, factory: result.factory, providedIn})]);
|
2018-11-10 02:58:33 +01:00
|
|
|
const type = new o.ExpressionType(o.importExpr(
|
|
|
|
Identifiers.InjectableDef, [typeWithParameters(meta.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
|
|
|
|
|
|
|
function delegateToFactory(type: o.Expression) {
|
|
|
|
return {
|
|
|
|
statements: [],
|
2019-10-11 14:18:45 -07:00
|
|
|
// () => meta.type.ɵfac(t)
|
2019-09-01 12:26:04 +02:00
|
|
|
factory: o.fn([new o.FnParam('t', o.DYNAMIC_TYPE)], [new o.ReturnStatement(type.callMethod(
|
2019-10-11 14:18:45 -07:00
|
|
|
'ɵfac', [o.variable('t')]))])
|
2019-09-01 12:26:04 +02:00
|
|
|
};
|
|
|
|
}
|