2017-12-01 14:23:03 -08: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
|
|
|
|
*/
|
|
|
|
|
2017-12-20 10:47:22 -08:00
|
|
|
// We are temporarily importing the existing viewEngine_from core so we can be sure we are
|
2017-12-13 14:28:36 -08:00
|
|
|
// correctly implementing its interfaces for backwards compatibility.
|
2018-07-27 09:56:35 -07:00
|
|
|
|
2018-08-29 16:34:44 -07:00
|
|
|
import {getInjectableDef, getInjectorDef} from '../di/defs';
|
2018-07-27 09:56:35 -07:00
|
|
|
import {InjectionToken} from '../di/injection_token';
|
2018-07-29 14:35:05 -07:00
|
|
|
import {InjectFlags, Injector, NullInjector, inject, setCurrentInjector} from '../di/injector';
|
2018-08-16 17:43:29 +02:00
|
|
|
import {Renderer2} from '../render';
|
2017-12-20 10:47:22 -08:00
|
|
|
import {Type} from '../type';
|
|
|
|
|
2018-09-28 21:26:45 -07:00
|
|
|
import {assertDefined} from './assert';
|
2018-08-29 16:34:44 -07:00
|
|
|
import {getComponentDef, getDirectiveDef, getPipeDef} from './definition';
|
2018-09-21 18:38:13 -07:00
|
|
|
import {NG_ELEMENT_ID} from './fields';
|
2018-09-28 21:26:45 -07:00
|
|
|
import {_getViewData, assertPreviousIsParent, getPreviousOrParentTNode, resolveDirective, setEnvironment} from './instructions';
|
|
|
|
import {DirectiveDefInternal} from './interfaces/definition';
|
2018-01-09 18:38:17 -08:00
|
|
|
import {LInjector} from './interfaces/injector';
|
2018-09-28 21:26:45 -07:00
|
|
|
import {AttributeMarker, TContainerNode, TElementContainerNode, TElementNode, TNode, TNodeFlags, TNodeType} from './interfaces/node';
|
|
|
|
import {isProceduralRenderer} from './interfaces/renderer';
|
|
|
|
import {DECLARATION_VIEW, DIRECTIVES, HOST_NODE, INJECTOR, LViewData, RENDERER, TVIEW, TView} from './interfaces/view';
|
|
|
|
import {assertNodeOfPossibleTypes} from './node_assert';
|
2017-12-15 14:59:17 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The number of slots in each bloom filter (used by DI). The larger this number, the fewer
|
|
|
|
* directives that will share slots, and thus, the fewer false positives when checking for
|
|
|
|
* the existence of a directive.
|
|
|
|
*/
|
2018-03-14 13:29:48 -07:00
|
|
|
const BLOOM_SIZE = 256;
|
2018-07-27 12:44:58 -07:00
|
|
|
const BLOOM_MASK = BLOOM_SIZE - 1;
|
2017-12-15 14:59:17 +01:00
|
|
|
|
|
|
|
/** Counter used to generate unique IDs for directives. */
|
|
|
|
let nextNgElementId = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Registers this directive as present in its node's injector by flipping the directive's
|
|
|
|
* corresponding bit in the injector's bloom filter.
|
|
|
|
*
|
|
|
|
* @param injector The node injector in which the directive should be registered
|
|
|
|
* @param type The directive to register
|
|
|
|
*/
|
2018-01-08 20:17:13 -08:00
|
|
|
export function bloomAdd(injector: LInjector, type: Type<any>): void {
|
2018-07-27 12:44:58 -07:00
|
|
|
let id: number|undefined = (type as any)[NG_ELEMENT_ID];
|
2017-12-15 14:59:17 +01:00
|
|
|
|
|
|
|
// Set a unique ID on the directive type, so if something tries to inject the directive,
|
|
|
|
// we can easily retrieve the ID and hash it into the bloom bit that should be checked.
|
|
|
|
if (id == null) {
|
|
|
|
id = (type as any)[NG_ELEMENT_ID] = nextNgElementId++;
|
|
|
|
}
|
|
|
|
|
2018-03-14 13:29:48 -07:00
|
|
|
// We only have BLOOM_SIZE (256) slots in our bloom filter (8 buckets * 32 bits each),
|
|
|
|
// so all unique IDs must be modulo-ed into a number from 0 - 255 to fit into the filter.
|
2018-07-27 12:44:58 -07:00
|
|
|
const bloomBit = id & BLOOM_MASK;
|
2017-12-15 14:59:17 +01:00
|
|
|
|
|
|
|
// Create a mask that targets the specific bit associated with the directive.
|
|
|
|
// JS bit operations are 32 bits, so this will be a number between 2^0 and 2^31, corresponding
|
|
|
|
// to bit positions 0 - 31 in a 32 bit integer.
|
|
|
|
const mask = 1 << bloomBit;
|
|
|
|
|
|
|
|
// Use the raw bloomBit number to determine which bloom filter bucket we should check
|
2018-03-14 13:29:48 -07:00
|
|
|
// e.g: bf0 = [0 - 31], bf1 = [32 - 63], bf2 = [64 - 95], bf3 = [96 - 127], etc
|
2018-07-27 12:44:58 -07:00
|
|
|
const b7 = bloomBit & 0x80;
|
|
|
|
const b6 = bloomBit & 0x40;
|
|
|
|
const b5 = bloomBit & 0x20;
|
|
|
|
|
|
|
|
if (b7) {
|
|
|
|
b6 ? (b5 ? (injector.bf7 |= mask) : (injector.bf6 |= mask)) :
|
2018-07-27 13:51:19 -07:00
|
|
|
(b5 ? (injector.bf5 |= mask) : (injector.bf4 |= mask));
|
2017-12-15 14:59:17 +01:00
|
|
|
} else {
|
2018-07-27 12:44:58 -07:00
|
|
|
b6 ? (b5 ? (injector.bf3 |= mask) : (injector.bf2 |= mask)) :
|
2018-07-27 13:51:19 -07:00
|
|
|
(b5 ? (injector.bf1 |= mask) : (injector.bf0 |= mask));
|
2017-12-15 14:59:17 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-17 09:45:40 -08:00
|
|
|
export function getOrCreateNodeInjector(): LInjector {
|
|
|
|
ngDevMode && assertPreviousIsParent();
|
2018-07-26 17:22:41 +02:00
|
|
|
return getOrCreateNodeInjectorForNode(
|
2018-09-17 14:32:45 -07:00
|
|
|
getPreviousOrParentTNode() as TElementNode | TElementContainerNode | TContainerNode,
|
|
|
|
_getViewData());
|
2018-01-17 09:45:40 -08:00
|
|
|
}
|
|
|
|
|
2017-12-15 14:59:17 +01:00
|
|
|
/**
|
|
|
|
* Creates (or gets an existing) injector for a given element or container.
|
|
|
|
*
|
2018-09-17 14:32:45 -07:00
|
|
|
* @param tNode for which an injector should be retrieved / created.
|
|
|
|
* @param hostView View where the node is stored
|
2017-12-19 15:01:05 -08:00
|
|
|
* @returns Node injector
|
2017-12-15 14:59:17 +01:00
|
|
|
*/
|
2018-07-26 17:22:41 +02:00
|
|
|
export function getOrCreateNodeInjectorForNode(
|
2018-09-17 14:32:45 -07:00
|
|
|
tNode: TElementNode | TContainerNode | TElementContainerNode, hostView: LViewData): LInjector {
|
2018-09-28 21:26:45 -07:00
|
|
|
const injector = getInjector(tNode, hostView);
|
|
|
|
if (injector) return injector;
|
|
|
|
|
|
|
|
const tView = hostView[TVIEW];
|
|
|
|
if (tView.firstTemplatePass) {
|
|
|
|
// TODO(kara): Store node injector with host bindings for that node (see VIEW_DATA.md)
|
|
|
|
tNode.injectorIndex = hostView.length;
|
|
|
|
tView.blueprint.push(null);
|
|
|
|
tView.hostBindingStartIndex++;
|
2017-12-15 14:59:17 +01:00
|
|
|
}
|
2018-09-28 21:26:45 -07:00
|
|
|
|
|
|
|
const parentInjector = getParentInjector(tNode, hostView);
|
|
|
|
return hostView[tNode.injectorIndex] = {
|
2017-12-15 14:59:17 +01:00
|
|
|
parent: parentInjector,
|
2018-09-13 16:07:23 -07:00
|
|
|
tNode: tNode,
|
2018-09-17 14:32:45 -07:00
|
|
|
view: hostView,
|
2017-12-15 14:59:17 +01:00
|
|
|
bf0: 0,
|
|
|
|
bf1: 0,
|
|
|
|
bf2: 0,
|
|
|
|
bf3: 0,
|
2018-03-14 13:29:48 -07:00
|
|
|
bf4: 0,
|
|
|
|
bf5: 0,
|
|
|
|
bf6: 0,
|
|
|
|
bf7: 0,
|
2017-12-15 14:59:17 +01:00
|
|
|
cbf0: parentInjector == null ? 0 : parentInjector.cbf0 | parentInjector.bf0,
|
|
|
|
cbf1: parentInjector == null ? 0 : parentInjector.cbf1 | parentInjector.bf1,
|
|
|
|
cbf2: parentInjector == null ? 0 : parentInjector.cbf2 | parentInjector.bf2,
|
|
|
|
cbf3: parentInjector == null ? 0 : parentInjector.cbf3 | parentInjector.bf3,
|
2018-03-14 13:29:48 -07:00
|
|
|
cbf4: parentInjector == null ? 0 : parentInjector.cbf4 | parentInjector.bf4,
|
|
|
|
cbf5: parentInjector == null ? 0 : parentInjector.cbf5 | parentInjector.bf5,
|
|
|
|
cbf6: parentInjector == null ? 0 : parentInjector.cbf6 | parentInjector.bf6,
|
|
|
|
cbf7: parentInjector == null ? 0 : parentInjector.cbf7 | parentInjector.bf7,
|
2017-12-15 14:59:17 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-09-28 21:26:45 -07:00
|
|
|
export function getInjector(tNode: TNode, view: LViewData): LInjector|null {
|
|
|
|
// If the injector index is the same as its parent's injector index, then the index has been
|
|
|
|
// copied down from the parent node. No injector has been created yet on this node.
|
|
|
|
if (tNode.injectorIndex === -1 ||
|
|
|
|
tNode.parent && tNode.parent.injectorIndex === tNode.injectorIndex) {
|
|
|
|
return null;
|
|
|
|
} else {
|
|
|
|
return view[tNode.injectorIndex];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export function getParentInjector(tNode: TNode, view: LViewData): LInjector {
|
|
|
|
if (tNode.parent && tNode.parent.injectorIndex !== -1) {
|
|
|
|
return view[tNode.parent.injectorIndex];
|
|
|
|
}
|
|
|
|
|
|
|
|
// For most cases, the parent injector index can be found on the host node (e.g. for component
|
|
|
|
// or container), so this loop will be skipped, but we must keep the loop here to support
|
|
|
|
// the rarer case of deeply nested <ng-template> tags.
|
|
|
|
let hostTNode = view[HOST_NODE];
|
|
|
|
while (hostTNode && hostTNode.injectorIndex === -1) {
|
|
|
|
view = view[DECLARATION_VIEW] !;
|
|
|
|
hostTNode = view[HOST_NODE] !;
|
|
|
|
}
|
|
|
|
return hostTNode ? view[DECLARATION_VIEW] ![hostTNode.injectorIndex] : null;
|
|
|
|
}
|
2017-12-01 14:23:03 -08:00
|
|
|
|
2017-12-15 14:59:17 +01:00
|
|
|
/**
|
|
|
|
* Makes a directive public to the DI system by adding it to an injector's bloom filter.
|
|
|
|
*
|
|
|
|
* @param di The node injector in which a directive will be added
|
|
|
|
* @param def The definition of the directive to be made public
|
|
|
|
*/
|
2018-05-31 15:50:02 -07:00
|
|
|
export function diPublicInInjector(di: LInjector, def: DirectiveDefInternal<any>): void {
|
2017-12-15 14:59:17 +01:00
|
|
|
bloomAdd(di, def.type);
|
|
|
|
}
|
|
|
|
|
2018-01-17 09:45:40 -08:00
|
|
|
/**
|
|
|
|
* Makes a directive public to the DI system by adding it to an injector's bloom filter.
|
|
|
|
*
|
|
|
|
* @param def The definition of the directive to be made public
|
|
|
|
*/
|
2018-05-31 15:50:02 -07:00
|
|
|
export function diPublic(def: DirectiveDefInternal<any>): void {
|
2018-01-17 09:45:40 -08:00
|
|
|
diPublicInInjector(getOrCreateNodeInjector(), def);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-07-27 09:47:34 -07:00
|
|
|
* Returns the value associated to the given token from the injectors.
|
2018-01-17 09:45:40 -08:00
|
|
|
*
|
2018-07-27 09:47:34 -07:00
|
|
|
* `directiveInject` is intended to be used for directive, component and pipe factories.
|
|
|
|
* All other injection use `inject` which does not walk the node injector tree.
|
2018-01-17 09:45:40 -08:00
|
|
|
*
|
|
|
|
* Usage example (in factory function):
|
|
|
|
*
|
|
|
|
* class SomeDirective {
|
|
|
|
* constructor(directive: DirectiveA) {}
|
|
|
|
*
|
|
|
|
* static ngDirectiveDef = defineDirective({
|
|
|
|
* type: SomeDirective,
|
2018-03-04 20:21:23 -08:00
|
|
|
* factory: () => new SomeDirective(directiveInject(DirectiveA))
|
2018-01-17 09:45:40 -08:00
|
|
|
* });
|
|
|
|
* }
|
|
|
|
*
|
2018-07-27 09:47:34 -07:00
|
|
|
* @param token the type or token to inject
|
|
|
|
* @param flags Injection flags
|
|
|
|
* @returns the value from the injector or `null` when not found
|
2018-01-17 09:45:40 -08:00
|
|
|
*/
|
2018-07-27 09:56:35 -07:00
|
|
|
export function directiveInject<T>(token: Type<T>| InjectionToken<T>): T;
|
|
|
|
export function directiveInject<T>(token: Type<T>| InjectionToken<T>, flags: InjectFlags): T;
|
|
|
|
export function directiveInject<T>(
|
|
|
|
token: Type<T>| InjectionToken<T>, flags = InjectFlags.Default): T|null {
|
2018-04-12 15:54:16 -07:00
|
|
|
return getOrCreateInjectable<T>(getOrCreateNodeInjector(), token, flags);
|
2018-01-17 09:45:40 -08:00
|
|
|
}
|
|
|
|
|
2018-08-16 17:43:29 +02:00
|
|
|
export function injectRenderer2(): Renderer2 {
|
|
|
|
return getOrCreateRenderer2(getOrCreateNodeInjector());
|
|
|
|
}
|
2018-02-28 22:18:34 -08:00
|
|
|
/**
|
|
|
|
* Inject static attribute value into directive constructor.
|
|
|
|
*
|
|
|
|
* This method is used with `factory` functions which are generated as part of
|
|
|
|
* `defineDirective` or `defineComponent`. The method retrieves the static value
|
|
|
|
* of an attribute. (Dynamic attributes are not supported since they are not resolved
|
|
|
|
* at the time of injection and can change over time.)
|
|
|
|
*
|
|
|
|
* # Example
|
|
|
|
* Given:
|
|
|
|
* ```
|
|
|
|
* @Component(...)
|
|
|
|
* class MyComponent {
|
|
|
|
* constructor(@Attribute('title') title: string) { ... }
|
|
|
|
* }
|
|
|
|
* ```
|
|
|
|
* When instantiated with
|
|
|
|
* ```
|
|
|
|
* <my-component title="Hello"></my-component>
|
|
|
|
* ```
|
|
|
|
*
|
|
|
|
* Then factory method generated is:
|
|
|
|
* ```
|
|
|
|
* MyComponent.ngComponentDef = defineComponent({
|
|
|
|
* factory: () => new MyComponent(injectAttribute('title'))
|
|
|
|
* ...
|
|
|
|
* })
|
|
|
|
* ```
|
|
|
|
*
|
|
|
|
* @experimental
|
|
|
|
*/
|
2018-05-04 15:58:42 +02:00
|
|
|
export function injectAttribute(attrNameToInject: string): string|undefined {
|
2018-09-05 16:15:37 -07:00
|
|
|
const tNode = getPreviousOrParentTNode();
|
2018-08-28 14:13:32 +02:00
|
|
|
ngDevMode && assertNodeOfPossibleTypes(
|
2018-09-05 16:15:37 -07:00
|
|
|
tNode, TNodeType.Container, TNodeType.Element, TNodeType.ElementContainer);
|
2018-08-28 14:13:32 +02:00
|
|
|
ngDevMode && assertDefined(tNode, 'expecting tNode');
|
|
|
|
const attrs = tNode.attrs;
|
2018-02-28 22:18:34 -08:00
|
|
|
if (attrs) {
|
|
|
|
for (let i = 0; i < attrs.length; i = i + 2) {
|
2018-06-06 13:38:20 -07:00
|
|
|
const attrName = attrs[i];
|
2018-06-08 15:25:39 -07:00
|
|
|
if (attrName === AttributeMarker.SelectOnly) break;
|
2018-05-04 15:58:42 +02:00
|
|
|
if (attrName == attrNameToInject) {
|
|
|
|
return attrs[i + 1] as string;
|
2018-02-28 22:18:34 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return undefined;
|
|
|
|
}
|
|
|
|
|
2018-08-16 17:43:29 +02:00
|
|
|
function getOrCreateRenderer2(di: LInjector): Renderer2 {
|
2018-09-17 14:32:45 -07:00
|
|
|
const renderer = di.view[RENDERER];
|
2018-08-16 17:43:29 +02:00
|
|
|
if (isProceduralRenderer(renderer)) {
|
|
|
|
return renderer as Renderer2;
|
|
|
|
} else {
|
|
|
|
throw new Error('Cannot inject Renderer2 when the application uses Renderer3!');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-13 14:28:36 -08:00
|
|
|
/**
|
2018-07-27 09:47:34 -07:00
|
|
|
* Returns the value associated to the given token from the injectors.
|
2017-12-13 14:28:36 -08:00
|
|
|
*
|
2018-07-27 09:47:34 -07:00
|
|
|
* Look for the injector providing the token by walking up the node injector tree and then
|
|
|
|
* the module injector tree.
|
2017-12-13 14:28:36 -08:00
|
|
|
*
|
2018-07-27 09:47:34 -07:00
|
|
|
* @param nodeInjector Node injector where the search should start
|
|
|
|
* @param token The token to look for
|
|
|
|
* @param flags Injection flags
|
|
|
|
* @returns the value from the injector or `null` when not found
|
2017-12-13 14:28:36 -08:00
|
|
|
*/
|
2018-04-23 18:24:40 -07:00
|
|
|
export function getOrCreateInjectable<T>(
|
2018-07-27 09:56:35 -07:00
|
|
|
nodeInjector: LInjector, token: Type<T>| InjectionToken<T>,
|
|
|
|
flags: InjectFlags = InjectFlags.Default): T|null {
|
2018-09-21 18:38:13 -07:00
|
|
|
const bloomHash = bloomHashBitOrFactory(token);
|
|
|
|
// If the ID stored here is a function, this is a special object like ElementRef or TemplateRef
|
|
|
|
// so just call the factory function to create it.
|
|
|
|
if (typeof bloomHash === 'function') return bloomHash();
|
2017-12-13 16:32:21 -08:00
|
|
|
|
|
|
|
// If the token has a bloom hash, then it is a directive that is public to the injection system
|
2018-07-27 09:56:35 -07:00
|
|
|
// (diPublic) otherwise fall back to the module injector.
|
2018-09-21 18:38:13 -07:00
|
|
|
if (bloomHash != null) {
|
2018-07-27 09:56:35 -07:00
|
|
|
let injector: LInjector|null = nodeInjector;
|
2017-12-13 16:32:21 -08:00
|
|
|
|
2017-12-01 14:23:03 -08:00
|
|
|
while (injector) {
|
2017-12-13 16:32:21 -08:00
|
|
|
// Get the closest potential matching injector (upwards in the injector tree) that
|
|
|
|
// *potentially* has the token.
|
2018-04-23 18:24:40 -07:00
|
|
|
injector = bloomFindPossibleInjector(injector, bloomHash, flags);
|
2017-12-13 16:32:21 -08:00
|
|
|
|
|
|
|
// If no injector is found, we *know* that there is no ancestor injector that contains the
|
|
|
|
// token, so we abort.
|
2017-12-14 15:03:46 -08:00
|
|
|
if (!injector) {
|
|
|
|
break;
|
|
|
|
}
|
2017-12-13 16:32:21 -08:00
|
|
|
|
|
|
|
// At this point, we have an injector which *may* contain the token, so we step through the
|
|
|
|
// directives associated with the injector's corresponding node to get the directive instance.
|
2018-09-13 16:07:23 -07:00
|
|
|
const tNode = injector.tNode;
|
2018-09-17 14:32:45 -07:00
|
|
|
const injectorView = injector.view;
|
2018-09-13 16:07:23 -07:00
|
|
|
const nodeFlags = tNode.flags;
|
2018-04-23 18:24:40 -07:00
|
|
|
const count = nodeFlags & TNodeFlags.DirectiveCountMask;
|
2017-12-13 16:32:21 -08:00
|
|
|
|
2018-04-12 14:52:00 -07:00
|
|
|
if (count !== 0) {
|
2018-04-23 18:24:40 -07:00
|
|
|
const start = nodeFlags >> TNodeFlags.DirectiveStartingIndexShift;
|
2018-04-12 14:52:00 -07:00
|
|
|
const end = start + count;
|
2018-09-17 14:32:45 -07:00
|
|
|
const defs = injectorView[TVIEW].directives !;
|
2018-04-12 14:52:00 -07:00
|
|
|
|
|
|
|
for (let i = start; i < end; i++) {
|
2017-12-13 16:32:21 -08:00
|
|
|
// Get the definition for the directive at this index and, if it is injectable (diPublic),
|
|
|
|
// and matches the given token, return the directive instance.
|
2018-05-31 15:50:02 -07:00
|
|
|
const directiveDef = defs[i] as DirectiveDefInternal<any>;
|
2018-04-12 14:52:00 -07:00
|
|
|
if (directiveDef.type === token && directiveDef.diPublic) {
|
2018-09-17 14:32:45 -07:00
|
|
|
return injectorView[DIRECTIVES] ![i];
|
2017-12-01 14:23:03 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-12-13 16:32:21 -08:00
|
|
|
|
2018-04-04 21:21:12 -07:00
|
|
|
// If we *didn't* find the directive for the token and we are searching the current node's
|
|
|
|
// injector, it's possible the directive is on this node and hasn't been created yet.
|
|
|
|
let instance: T|null;
|
2018-07-27 09:56:35 -07:00
|
|
|
if (injector === nodeInjector &&
|
2018-09-17 14:32:45 -07:00
|
|
|
(instance = searchMatchesQueuedForCreation<T>(token, injectorView[TVIEW]))) {
|
2018-04-04 21:21:12 -07:00
|
|
|
return instance;
|
|
|
|
}
|
|
|
|
|
2018-04-23 18:24:40 -07:00
|
|
|
// The def wasn't found anywhere on this node, so it was a false positive.
|
|
|
|
// If flags permit, traverse up the tree and continue searching.
|
|
|
|
if (flags & InjectFlags.Self || flags & InjectFlags.Host && !sameHostView(injector)) {
|
|
|
|
injector = null;
|
|
|
|
} else {
|
|
|
|
injector = injector.parent;
|
|
|
|
}
|
2017-12-01 14:23:03 -08:00
|
|
|
}
|
|
|
|
}
|
2017-12-13 16:32:21 -08:00
|
|
|
|
2018-09-17 14:32:45 -07:00
|
|
|
const moduleInjector = nodeInjector.view[INJECTOR];
|
2018-07-27 09:56:35 -07:00
|
|
|
const formerInjector = setCurrentInjector(moduleInjector);
|
|
|
|
try {
|
|
|
|
return inject(token, flags);
|
|
|
|
} finally {
|
|
|
|
setCurrentInjector(formerInjector);
|
|
|
|
}
|
2017-12-01 14:23:03 -08:00
|
|
|
}
|
|
|
|
|
2018-09-17 14:32:45 -07:00
|
|
|
function searchMatchesQueuedForCreation<T>(token: any, hostTView: TView): T|null {
|
|
|
|
const matches = hostTView.currentMatches;
|
2018-04-04 21:21:12 -07:00
|
|
|
if (matches) {
|
|
|
|
for (let i = 0; i < matches.length; i += 2) {
|
2018-05-31 15:50:02 -07:00
|
|
|
const def = matches[i] as DirectiveDefInternal<any>;
|
2018-04-04 21:21:12 -07:00
|
|
|
if (def.type === token) {
|
2018-09-17 14:32:45 -07:00
|
|
|
return resolveDirective(def, i + 1, matches, hostTView);
|
2018-04-04 21:21:12 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2017-12-13 14:28:36 -08:00
|
|
|
/**
|
2018-07-27 09:47:34 -07:00
|
|
|
* Returns the bit in an injector's bloom filter that should be used to determine whether or not
|
|
|
|
* the directive might be provided by the injector.
|
2017-12-13 14:28:36 -08:00
|
|
|
*
|
2018-07-27 09:47:34 -07:00
|
|
|
* When a directive is public, it is added to the bloom filter and given a unique ID that can be
|
|
|
|
* retrieved on the Type. When the directive isn't public or the token is not a directive `null`
|
|
|
|
* is returned as the node injector can not possibly provide that token.
|
2017-12-13 14:28:36 -08:00
|
|
|
*
|
2018-07-27 09:47:34 -07:00
|
|
|
* @param token the injection token
|
|
|
|
* @returns the matching bit to check in the bloom filter or `null` if the token is not known.
|
2017-12-13 14:28:36 -08:00
|
|
|
*/
|
2018-09-21 18:38:13 -07:00
|
|
|
function bloomHashBitOrFactory(token: Type<any>| InjectionToken<any>): number|Function|undefined {
|
|
|
|
const tokenId: number|undefined = (token as any)[NG_ELEMENT_ID] || null;
|
|
|
|
return typeof tokenId === 'number' ? tokenId & BLOOM_MASK : tokenId;
|
2017-12-01 14:23:03 -08:00
|
|
|
}
|
|
|
|
|
2017-12-13 14:28:36 -08:00
|
|
|
/**
|
|
|
|
* Finds the closest injector that might have a certain directive.
|
|
|
|
*
|
|
|
|
* Each directive corresponds to a bit in an injector's bloom filter. Given the bloom bit to
|
2017-12-13 16:32:21 -08:00
|
|
|
* check and a starting injector, this function traverses up injectors until it finds an
|
2017-12-13 14:28:36 -08:00
|
|
|
* injector that contains a 1 for that bit in its bloom filter. A 1 indicates that the
|
|
|
|
* injector may have that directive. It only *may* have the directive because directives begin
|
|
|
|
* to share bloom filter bits after the BLOOM_SIZE is reached, and it could correspond to a
|
|
|
|
* different directive sharing the bit.
|
|
|
|
*
|
|
|
|
* Note: We can skip checking further injectors up the tree if an injector's cbf structure
|
|
|
|
* has a 0 for that bloom bit. Since cbf contains the merged value of all the parent
|
|
|
|
* injectors, a 0 in the bloom bit indicates that the parents definitely do not contain
|
|
|
|
* the directive and do not need to be checked.
|
|
|
|
*
|
2017-12-15 14:59:17 +01:00
|
|
|
* @param injector The starting node injector to check
|
2017-12-13 14:28:36 -08:00
|
|
|
* @param bloomBit The bit to check in each injector's bloom filter
|
2018-04-23 18:24:40 -07:00
|
|
|
* @param flags The injection flags for this injection site (e.g. Optional or SkipSelf)
|
2017-12-13 14:28:36 -08:00
|
|
|
* @returns An injector that might have the directive
|
|
|
|
*/
|
2018-04-23 18:24:40 -07:00
|
|
|
export function bloomFindPossibleInjector(
|
|
|
|
startInjector: LInjector, bloomBit: number, flags: InjectFlags): LInjector|null {
|
2017-12-13 16:32:21 -08:00
|
|
|
// Create a mask that targets the specific bit associated with the directive we're looking for.
|
2017-12-14 15:50:01 -08:00
|
|
|
// JS bit operations are 32 bits, so this will be a number between 2^0 and 2^31, corresponding
|
|
|
|
// to bit positions 0 - 31 in a 32 bit integer.
|
2017-12-01 14:23:03 -08:00
|
|
|
const mask = 1 << bloomBit;
|
2018-07-27 12:44:58 -07:00
|
|
|
const b7 = bloomBit & 0x80;
|
|
|
|
const b6 = bloomBit & 0x40;
|
|
|
|
const b5 = bloomBit & 0x20;
|
2017-12-13 16:32:21 -08:00
|
|
|
|
|
|
|
// Traverse up the injector tree until we find a potential match or until we know there *isn't* a
|
|
|
|
// match.
|
2018-04-23 18:24:40 -07:00
|
|
|
let injector: LInjector|null =
|
2018-07-27 12:44:58 -07:00
|
|
|
flags & InjectFlags.SkipSelf ? startInjector.parent : startInjector;
|
|
|
|
|
2017-12-13 16:32:21 -08:00
|
|
|
while (injector) {
|
2018-03-14 13:29:48 -07:00
|
|
|
// Our bloom filter size is 256 bits, which is eight 32-bit bloom filter buckets:
|
|
|
|
// bf0 = [0 - 31], bf1 = [32 - 63], bf2 = [64 - 95], bf3 = [96 - 127], etc.
|
2017-12-13 16:32:21 -08:00
|
|
|
// Get the bloom filter value from the appropriate bucket based on the directive's bloomBit.
|
2018-03-14 13:29:48 -07:00
|
|
|
let value: number;
|
2018-07-27 12:44:58 -07:00
|
|
|
|
|
|
|
if (b7) {
|
|
|
|
value = b6 ? (b5 ? injector.bf7 : injector.bf6) : (b5 ? injector.bf5 : injector.bf4);
|
2018-03-14 13:29:48 -07:00
|
|
|
} else {
|
2018-07-27 12:44:58 -07:00
|
|
|
value = b6 ? (b5 ? injector.bf3 : injector.bf2) : (b5 ? injector.bf1 : injector.bf0);
|
2018-03-14 13:29:48 -07:00
|
|
|
}
|
2017-12-13 16:32:21 -08:00
|
|
|
|
|
|
|
// If the bloom filter value has the bit corresponding to the directive's bloomBit flipped on,
|
|
|
|
// this injector is a potential match.
|
2018-07-27 12:44:58 -07:00
|
|
|
if (value & mask) {
|
2017-12-13 16:32:21 -08:00
|
|
|
return injector;
|
2018-07-27 12:44:58 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
if (flags & InjectFlags.Self || flags & InjectFlags.Host && !sameHostView(injector)) {
|
2018-04-23 18:24:40 -07:00
|
|
|
return null;
|
2017-12-01 14:23:03 -08:00
|
|
|
}
|
2017-12-13 16:32:21 -08:00
|
|
|
|
|
|
|
// If the current injector does not have the directive, check the bloom filters for the ancestor
|
2018-03-14 13:29:48 -07:00
|
|
|
// injectors (cbf0 - cbf7). These filters capture *all* ancestor injectors.
|
2018-07-27 12:44:58 -07:00
|
|
|
if (b7) {
|
|
|
|
value = b6 ? (b5 ? injector.cbf7 : injector.cbf6) : (b5 ? injector.cbf5 : injector.cbf4);
|
2018-03-14 13:29:48 -07:00
|
|
|
} else {
|
2018-07-27 12:44:58 -07:00
|
|
|
value = b6 ? (b5 ? injector.cbf3 : injector.cbf2) : (b5 ? injector.cbf1 : injector.cbf0);
|
2018-03-14 13:29:48 -07:00
|
|
|
}
|
2017-12-13 16:32:21 -08:00
|
|
|
|
|
|
|
// If the ancestor bloom filter value has the bit corresponding to the directive, traverse up to
|
|
|
|
// find the specific injector. If the ancestor bloom filter does not have the bit, we can abort.
|
2018-07-27 12:44:58 -07:00
|
|
|
if (value & mask) {
|
|
|
|
injector = injector.parent;
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
2017-12-01 14:23:03 -08:00
|
|
|
}
|
2018-07-27 12:44:58 -07:00
|
|
|
|
2017-12-01 14:23:03 -08:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2018-04-23 18:24:40 -07:00
|
|
|
/**
|
|
|
|
* Checks whether the current injector and its parent are in the same host view.
|
|
|
|
*
|
|
|
|
* This is necessary to support @Host() decorators. If @Host() is set, we should stop searching once
|
|
|
|
* the injector and its parent view don't match because it means we'd cross the view boundary.
|
|
|
|
*/
|
|
|
|
function sameHostView(injector: LInjector): boolean {
|
2018-09-17 14:32:45 -07:00
|
|
|
return !!injector.parent && injector.parent.view === injector.view;
|
2018-04-23 18:24:40 -07:00
|
|
|
}
|
|
|
|
|
2018-08-06 14:09:38 -07:00
|
|
|
export class NodeInjector implements Injector {
|
2018-07-25 18:11:39 +02:00
|
|
|
constructor(private _lInjector: LInjector) {}
|
|
|
|
|
|
|
|
get(token: any): any {
|
2018-08-16 17:43:29 +02:00
|
|
|
if (token === Renderer2) {
|
|
|
|
return getOrCreateRenderer2(this._lInjector);
|
|
|
|
}
|
2018-07-25 18:11:39 +02:00
|
|
|
|
2018-09-21 18:38:13 -07:00
|
|
|
setEnvironment(this._lInjector.tNode, this._lInjector.view);
|
2018-07-25 18:11:39 +02:00
|
|
|
return getOrCreateInjectable(this._lInjector, token);
|
|
|
|
}
|
|
|
|
}
|
2018-07-16 16:36:31 -07:00
|
|
|
export function getFactoryOf<T>(type: Type<any>): ((type?: Type<T>) => T)|null {
|
|
|
|
const typeAny = type as any;
|
2018-08-29 16:34:44 -07:00
|
|
|
const def = getComponentDef<T>(typeAny) || getDirectiveDef<T>(typeAny) ||
|
|
|
|
getPipeDef<T>(typeAny) || getInjectableDef<T>(typeAny) || getInjectorDef<T>(typeAny);
|
|
|
|
if (!def || def.factory === undefined) {
|
2018-07-16 16:36:31 -07:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
return def.factory;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function getInheritedFactory<T>(type: Type<any>): (type: Type<T>) => T {
|
|
|
|
const proto = Object.getPrototypeOf(type.prototype).constructor as Type<any>;
|
|
|
|
const factory = getFactoryOf<T>(proto);
|
2018-08-10 11:15:59 +01:00
|
|
|
if (factory !== null) {
|
|
|
|
return factory;
|
|
|
|
} else {
|
|
|
|
// There is no factory defined. Either this was improper usage of inheritance
|
|
|
|
// (no Angular decorator on the superclass) or there is no constructor at all
|
|
|
|
// in the inheritance chain. Since the two cases cannot be distinguished, the
|
|
|
|
// latter has to be assumed.
|
|
|
|
return (t) => new t();
|
2018-07-16 16:36:31 -07:00
|
|
|
}
|
|
|
|
}
|