@loopback/context 4.0.0-alpha.7 → 4.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (137) hide show
  1. package/LICENSE +25 -0
  2. package/README.md +116 -0
  3. package/dist/binding-config.d.ts +40 -0
  4. package/dist/binding-config.js +33 -0
  5. package/dist/binding-config.js.map +1 -0
  6. package/dist/binding-decorator.d.ts +45 -0
  7. package/dist/binding-decorator.js +118 -0
  8. package/dist/binding-decorator.js.map +1 -0
  9. package/dist/binding-filter.d.ts +108 -0
  10. package/dist/binding-filter.js +162 -0
  11. package/dist/binding-filter.js.map +1 -0
  12. package/dist/binding-inspector.d.ts +150 -0
  13. package/dist/binding-inspector.js +249 -0
  14. package/dist/binding-inspector.js.map +1 -0
  15. package/dist/binding-key.d.ts +66 -0
  16. package/dist/binding-key.js +121 -0
  17. package/dist/binding-key.js.map +1 -0
  18. package/dist/binding-sorter.d.ts +71 -0
  19. package/dist/binding-sorter.js +89 -0
  20. package/dist/binding-sorter.js.map +1 -0
  21. package/dist/binding.d.ts +577 -0
  22. package/dist/binding.js +788 -0
  23. package/dist/binding.js.map +1 -0
  24. package/dist/context-event.d.ts +23 -0
  25. package/dist/context-event.js +7 -0
  26. package/dist/context-event.js.map +1 -0
  27. package/dist/context-observer.d.ts +36 -0
  28. package/dist/context-observer.js +7 -0
  29. package/dist/context-observer.js.map +1 -0
  30. package/dist/context-subscription.d.ts +147 -0
  31. package/dist/context-subscription.js +317 -0
  32. package/dist/context-subscription.js.map +1 -0
  33. package/dist/context-tag-indexer.d.ts +42 -0
  34. package/dist/context-tag-indexer.js +135 -0
  35. package/dist/context-tag-indexer.js.map +1 -0
  36. package/dist/context-view.d.ts +209 -0
  37. package/dist/context-view.js +240 -0
  38. package/dist/context-view.js.map +1 -0
  39. package/dist/context.d.ts +513 -0
  40. package/dist/context.js +717 -0
  41. package/dist/context.js.map +1 -0
  42. package/dist/index.d.ts +52 -0
  43. package/dist/index.js +60 -0
  44. package/dist/index.js.map +1 -0
  45. package/dist/inject-config.d.ts +67 -0
  46. package/dist/inject-config.js +181 -0
  47. package/dist/inject-config.js.map +1 -0
  48. package/dist/inject.d.ts +250 -0
  49. package/dist/inject.js +535 -0
  50. package/dist/inject.js.map +1 -0
  51. package/dist/interception-proxy.d.ts +76 -0
  52. package/dist/interception-proxy.js +67 -0
  53. package/dist/interception-proxy.js.map +1 -0
  54. package/dist/interceptor-chain.d.ts +121 -0
  55. package/dist/interceptor-chain.js +148 -0
  56. package/dist/interceptor-chain.js.map +1 -0
  57. package/dist/interceptor.d.ts +138 -0
  58. package/dist/interceptor.js +299 -0
  59. package/dist/interceptor.js.map +1 -0
  60. package/dist/invocation.d.ts +101 -0
  61. package/dist/invocation.js +163 -0
  62. package/dist/invocation.js.map +1 -0
  63. package/dist/json-types.d.ts +28 -0
  64. package/dist/json-types.js +7 -0
  65. package/dist/json-types.js.map +1 -0
  66. package/dist/keys.d.ts +65 -0
  67. package/dist/keys.js +74 -0
  68. package/dist/keys.js.map +1 -0
  69. package/dist/provider.d.ts +31 -0
  70. package/dist/provider.js +7 -0
  71. package/dist/provider.js.map +1 -0
  72. package/dist/resolution-session.d.ts +180 -0
  73. package/dist/resolution-session.js +274 -0
  74. package/dist/resolution-session.js.map +1 -0
  75. package/dist/resolver.d.ts +46 -0
  76. package/dist/resolver.js +203 -0
  77. package/dist/resolver.js.map +1 -0
  78. package/dist/unique-id.d.ts +14 -0
  79. package/dist/unique-id.js +26 -0
  80. package/dist/unique-id.js.map +1 -0
  81. package/dist/value-promise.d.ts +134 -0
  82. package/dist/value-promise.js +277 -0
  83. package/dist/value-promise.js.map +1 -0
  84. package/package.json +49 -35
  85. package/src/binding-config.ts +73 -0
  86. package/src/binding-decorator.ts +136 -0
  87. package/src/binding-filter.ts +250 -0
  88. package/src/binding-inspector.ts +371 -0
  89. package/src/binding-key.ts +136 -0
  90. package/src/binding-sorter.ts +124 -0
  91. package/src/binding.ts +1107 -0
  92. package/src/context-event.ts +30 -0
  93. package/src/context-observer.ts +50 -0
  94. package/src/context-subscription.ts +402 -0
  95. package/src/context-tag-indexer.ts +147 -0
  96. package/src/context-view.ts +440 -0
  97. package/src/context.ts +1079 -0
  98. package/src/index.ts +58 -0
  99. package/src/inject-config.ts +239 -0
  100. package/src/inject.ts +796 -0
  101. package/src/interception-proxy.ts +127 -0
  102. package/src/interceptor-chain.ts +268 -0
  103. package/src/interceptor.ts +430 -0
  104. package/src/invocation.ts +269 -0
  105. package/src/json-types.ts +35 -0
  106. package/src/keys.ts +85 -0
  107. package/src/provider.ts +37 -0
  108. package/src/resolution-session.ts +414 -0
  109. package/src/resolver.ts +282 -0
  110. package/src/unique-id.ts +24 -0
  111. package/src/value-promise.ts +318 -0
  112. package/index.d.ts +0 -6
  113. package/index.js +0 -9
  114. package/lib/binding.d.ts +0 -75
  115. package/lib/binding.js +0 -102
  116. package/lib/context.d.ts +0 -14
  117. package/lib/context.js +0 -96
  118. package/lib/index.d.ts +0 -5
  119. package/lib/index.js +0 -13
  120. package/lib/inject.d.ts +0 -47
  121. package/lib/inject.js +0 -73
  122. package/lib/isPromise.d.ts +0 -1
  123. package/lib/isPromise.js +0 -14
  124. package/lib/resolver.d.ts +0 -30
  125. package/lib/resolver.js +0 -128
  126. package/lib6/binding.d.ts +0 -75
  127. package/lib6/binding.js +0 -102
  128. package/lib6/context.d.ts +0 -14
  129. package/lib6/context.js +0 -96
  130. package/lib6/index.d.ts +0 -5
  131. package/lib6/index.js +0 -13
  132. package/lib6/inject.d.ts +0 -47
  133. package/lib6/inject.js +0 -73
  134. package/lib6/isPromise.d.ts +0 -1
  135. package/lib6/isPromise.js +0 -14
  136. package/lib6/resolver.d.ts +0 -30
  137. package/lib6/resolver.js +0 -128
package/lib6/binding.js DELETED
@@ -1,102 +0,0 @@
1
- "use strict";
2
- // Copyright IBM Corp. 2013,2017. All Rights Reserved.
3
- // Node module: loopback
4
- // This file is licensed under the MIT License.
5
- // License text available at https://opensource.org/licenses/MIT
6
- Object.defineProperty(exports, "__esModule", { value: true });
7
- const resolver_1 = require("./resolver");
8
- // FIXME(bajtos) The binding class should be parameterized by the value type stored
9
- class Binding {
10
- constructor(_key, isLocked = false) {
11
- this._key = _key;
12
- this.isLocked = isLocked;
13
- }
14
- get key() { return this._key; }
15
- get tagName() { return this._tagName; }
16
- /**
17
- * This is an internal function optimized for performance.
18
- * Users should use `@inject(key)` or `ctx.get(key)` instead.
19
- *
20
- * Get the value bound to this key. Depending on `isSync`, this function returns either:
21
- * - the bound value
22
- * - a promise of the bound value
23
- *
24
- * Consumers wishing to consume sync values directly should use `isPromise`
25
- * to check the type of the returned value to decide how to handle it.
26
- *
27
- * ```
28
- * const result = binding.getValue(ctx);
29
- * if (isPromise(result)) {
30
- * result.then(doSomething)
31
- * } else {
32
- * doSomething(result);
33
- * }
34
- * ```
35
- */
36
- getValue(ctx) {
37
- return Promise.reject(new Error(`No value was configured for binding ${this._key}.`));
38
- }
39
- lock() {
40
- this.isLocked = true;
41
- return this;
42
- }
43
- tag(tagName) {
44
- this._tagName = tagName;
45
- return this;
46
- }
47
- /**
48
- * Bind the key to a constant value.
49
- *
50
- * @param value The bound value.
51
- *
52
- * @example
53
- *
54
- * ```ts
55
- * ctx.bind('appName').to('CodeHub');
56
- * ```
57
- */
58
- to(value) {
59
- this.getValue = () => value;
60
- return this;
61
- }
62
- /**
63
- * Bind the key to a computed (dynamic) value.
64
- *
65
- * @param factoryFn The factory function creating the value.
66
- * Both sync and async functions are supported.
67
- *
68
- * @example
69
- *
70
- * ```ts
71
- * // synchronous
72
- * ctx.bind('now').toDynamicValue(() => Date.now());
73
- *
74
- * // asynchronous
75
- * ctx.bind('something').toDynamicValue(
76
- * async () => Promise.delay(10).then(doSomething)
77
- * );
78
- * ```
79
- */
80
- toDynamicValue(factoryFn) {
81
- // TODO(bajtos) allow factoryFn with @inject arguments
82
- this.getValue = (ctx) => factoryFn();
83
- return this;
84
- }
85
- /**
86
- * Bind the key to an instance of the given class.
87
- *
88
- * @param ctor The class constructor to call. Any constructor
89
- * arguments must be annotated with `@inject` so that
90
- * we can resolve them from the context.
91
- */
92
- toClass(ctor) {
93
- this.getValue = context => resolver_1.instantiateClass(ctor, context);
94
- this.valueConstructor = ctor;
95
- return this;
96
- }
97
- unlock() {
98
- this.isLocked = false;
99
- return this;
100
- }
101
- }
102
- exports.Binding = Binding;
package/lib6/context.d.ts DELETED
@@ -1,14 +0,0 @@
1
- import { Binding, BoundValue } from './binding';
2
- export declare class Context {
3
- private _parent;
4
- private registry;
5
- constructor(_parent?: Context);
6
- bind(key: string): Binding;
7
- contains(key: string): boolean;
8
- find(pattern?: string): Binding[];
9
- findByTag(pattern: string): Binding[];
10
- protected _mergeWithParent(childList: Binding[], parentList?: Binding[]): Binding[];
11
- get(key: string): Promise<BoundValue>;
12
- getSync(key: string): BoundValue;
13
- getBinding(key: string): Binding;
14
- }
package/lib6/context.js DELETED
@@ -1,96 +0,0 @@
1
- "use strict";
2
- // Copyright IBM Corp. 2013,2017. All Rights Reserved.
3
- // Node module: loopback
4
- // This file is licensed under the MIT License.
5
- // License text available at https://opensource.org/licenses/MIT
6
- Object.defineProperty(exports, "__esModule", { value: true });
7
- const binding_1 = require("./binding");
8
- const isPromise_1 = require("./isPromise");
9
- class Context {
10
- constructor(_parent) {
11
- this._parent = _parent;
12
- this.registry = new Map();
13
- }
14
- bind(key) {
15
- const keyExists = this.registry.has(key);
16
- if (keyExists) {
17
- const existingBinding = this.registry.get(key);
18
- const bindingIsLocked = existingBinding && existingBinding.isLocked;
19
- if (bindingIsLocked)
20
- throw new Error(`Cannot rebind key "${key}", associated binding is locked`);
21
- }
22
- const binding = new binding_1.Binding(key);
23
- this.registry.set(key, binding);
24
- return binding;
25
- }
26
- contains(key) {
27
- return this.registry.has(key);
28
- }
29
- find(pattern) {
30
- let bindings = [];
31
- if (pattern) {
32
- // TODO(@superkhau): swap with production grade glob to regex lib
33
- const glob = new RegExp('^' + pattern.split('*').join('.*') + '$');
34
- this.registry.forEach(binding => {
35
- const isMatch = glob.test(binding.key);
36
- if (isMatch)
37
- bindings.push(binding);
38
- });
39
- }
40
- else {
41
- bindings = Array.from(this.registry.values());
42
- }
43
- const parentBindings = this._parent && this._parent.find(pattern);
44
- return this._mergeWithParent(bindings, parentBindings);
45
- }
46
- findByTag(pattern) {
47
- const bindings = [];
48
- // TODO(@superkhau): swap with production grade glob to regex lib
49
- const glob = new RegExp('^' + pattern.split('*').join('.*') + '$');
50
- this.registry.forEach(binding => {
51
- const isMatch = glob.test(binding.tagName);
52
- if (isMatch)
53
- bindings.push(binding);
54
- });
55
- const parentBindings = this._parent && this._parent.findByTag(pattern);
56
- return this._mergeWithParent(bindings, parentBindings);
57
- }
58
- _mergeWithParent(childList, parentList) {
59
- if (!parentList)
60
- return childList;
61
- const additions = parentList.filter(parentBinding => {
62
- // children bindings take precedence
63
- return !childList.some(childBinding => childBinding.key === parentBinding.key);
64
- });
65
- return childList.concat(additions);
66
- }
67
- get(key) {
68
- try {
69
- const binding = this.getBinding(key);
70
- return Promise.resolve(binding.getValue(this));
71
- }
72
- catch (err) {
73
- return Promise.reject(err);
74
- }
75
- }
76
- getSync(key) {
77
- const binding = this.getBinding(key);
78
- const valueOrPromise = binding.getValue(this);
79
- if (isPromise_1.isPromise(valueOrPromise)) {
80
- throw new Error(`Cannot get ${key} synchronously: ` +
81
- `the value requires async computation`);
82
- }
83
- return valueOrPromise;
84
- }
85
- getBinding(key) {
86
- const binding = this.registry.get(key);
87
- if (binding) {
88
- return binding;
89
- }
90
- if (this._parent) {
91
- return this._parent.getBinding(key);
92
- }
93
- throw new Error(`The key ${key} was not bound to any value.`);
94
- }
95
- }
96
- exports.Context = Context;
package/lib6/index.d.ts DELETED
@@ -1,5 +0,0 @@
1
- export { Binding, BoundValue } from './binding';
2
- export { Context } from './context';
3
- export { Constructor } from './resolver';
4
- export { inject } from './inject';
5
- export declare const isPromise: any;
package/lib6/index.js DELETED
@@ -1,13 +0,0 @@
1
- "use strict";
2
- // Copyright IBM Corp. 2017. All Rights Reserved.
3
- // Node module: loopback
4
- // This file is licensed under the MIT License.
5
- // License text available at https://opensource.org/licenses/MIT
6
- Object.defineProperty(exports, "__esModule", { value: true });
7
- var binding_1 = require("./binding");
8
- exports.Binding = binding_1.Binding;
9
- var context_1 = require("./context");
10
- exports.Context = context_1.Context;
11
- var inject_1 = require("./inject");
12
- exports.inject = inject_1.inject;
13
- exports.isPromise = require('is-promise');
package/lib6/inject.d.ts DELETED
@@ -1,47 +0,0 @@
1
- import 'reflect-metadata';
2
- import { BoundValue } from './binding';
3
- export interface Injection {
4
- bindingKey: string;
5
- metadata?: {
6
- [attribute: string]: BoundValue;
7
- };
8
- }
9
- /**
10
- * A decorator to annotate method arguments for automatic injection
11
- * by LoopBack IoC container.
12
- *
13
- * Usage - Typescript:
14
- *
15
- * ```ts
16
- * class InfoController {
17
- * @inject('authentication.user') public userName: string;
18
- *
19
- * constructor(@inject('application.name') public appName: string) {
20
- * }
21
- * // ...
22
- * }
23
- * ```
24
- *
25
- * Usage - JavaScript:
26
- *
27
- * - TODO(bajtos)
28
- *
29
- * @param bindingKey What binding to use in order to resolve the value of the
30
- * decorated constructor parameter or property.
31
- * @param metadata Optional metadata to help the injection
32
- *
33
- */
34
- export declare function inject(bindingKey: string, metadata?: Object): (target: any, propertyKey?: string | symbol | undefined, propertyDescriptorOrParameterIndex?: number | TypedPropertyDescriptor<any> | undefined) => void;
35
- /**
36
- * Return an array of injection objects for constructor parameters
37
- * @param target The target class
38
- */
39
- export declare function describeInjectedArguments(target: Function): Injection[];
40
- /**
41
- * Return a map of injection objects for properties
42
- * @param target The target class. Please note a property decorator function receives
43
- * the target.prototype
44
- */
45
- export declare function describeInjectedProperties(target: Function): {
46
- [p: string]: Injection;
47
- };
package/lib6/inject.js DELETED
@@ -1,73 +0,0 @@
1
- "use strict";
2
- // Copyright IBM Corp. 2013,2017. All Rights Reserved.
3
- // Node module: loopback
4
- // This file is licensed under the MIT License.
5
- // License text available at https://opensource.org/licenses/MIT
6
- Object.defineProperty(exports, "__esModule", { value: true });
7
- require("reflect-metadata");
8
- const REFLECTION_CDI_KEY = 'loopback:inject:constructor';
9
- const REFLECTION_PDI_KEY = 'loopback:inject:properties';
10
- /**
11
- * A decorator to annotate method arguments for automatic injection
12
- * by LoopBack IoC container.
13
- *
14
- * Usage - Typescript:
15
- *
16
- * ```ts
17
- * class InfoController {
18
- * @inject('authentication.user') public userName: string;
19
- *
20
- * constructor(@inject('application.name') public appName: string) {
21
- * }
22
- * // ...
23
- * }
24
- * ```
25
- *
26
- * Usage - JavaScript:
27
- *
28
- * - TODO(bajtos)
29
- *
30
- * @param bindingKey What binding to use in order to resolve the value of the
31
- * decorated constructor parameter or property.
32
- * @param metadata Optional metadata to help the injection
33
- *
34
- */
35
- function inject(bindingKey, metadata) {
36
- // tslint:disable-next-line:no-any
37
- return function markArgumentAsInjected(target, propertyKey, propertyDescriptorOrParameterIndex) {
38
- if (typeof propertyDescriptorOrParameterIndex === 'number') {
39
- // The decorator is applied to a method parameter
40
- // Please note propertyKey is `undefined` for constructor
41
- const injectedArgs = Reflect.getOwnMetadata(REFLECTION_CDI_KEY, target, propertyKey) || [];
42
- injectedArgs[propertyDescriptorOrParameterIndex] = { bindingKey, metadata };
43
- Reflect.defineMetadata(REFLECTION_CDI_KEY, injectedArgs, target, propertyKey);
44
- }
45
- else if (propertyKey) {
46
- // The decorator is applied to a property
47
- const injections = Reflect.getOwnMetadata(REFLECTION_PDI_KEY, target) || {};
48
- injections[propertyKey] = { bindingKey, metadata };
49
- Reflect.defineMetadata(REFLECTION_PDI_KEY, injections, target);
50
- }
51
- else {
52
- throw new Error('@inject can be used on properties or method parameters.');
53
- }
54
- };
55
- }
56
- exports.inject = inject;
57
- /**
58
- * Return an array of injection objects for constructor parameters
59
- * @param target The target class
60
- */
61
- function describeInjectedArguments(target) {
62
- return Reflect.getOwnMetadata(REFLECTION_CDI_KEY, target) || [];
63
- }
64
- exports.describeInjectedArguments = describeInjectedArguments;
65
- /**
66
- * Return a map of injection objects for properties
67
- * @param target The target class. Please note a property decorator function receives
68
- * the target.prototype
69
- */
70
- function describeInjectedProperties(target) {
71
- return Reflect.getOwnMetadata(REFLECTION_PDI_KEY, target.prototype) || {};
72
- }
73
- exports.describeInjectedProperties = describeInjectedProperties;
@@ -1 +0,0 @@
1
- export declare function isPromise<T>(value: T | Promise<T>): value is Promise<T>;
package/lib6/isPromise.js DELETED
@@ -1,14 +0,0 @@
1
- "use strict";
2
- // Copyright IBM Corp. 2013,2017. All Rights Reserved.
3
- // Node module: loopback
4
- // This file is licensed under the MIT License.
5
- // License text available at https://opensource.org/licenses/MIT
6
- Object.defineProperty(exports, "__esModule", { value: true });
7
- function isPromise(value) {
8
- if (!value)
9
- return false;
10
- if (typeof value !== 'object' && typeof value !== 'function')
11
- return false;
12
- return typeof value.then === 'function';
13
- }
14
- exports.isPromise = isPromise;
@@ -1,30 +0,0 @@
1
- import { Context } from './context';
2
- import { BoundValue } from './binding';
3
- export declare type Constructor<T> = new (...args: any[]) => T;
4
- /**
5
- * Create an instance of a class which constructor has arguments
6
- * decorated with `@inject`.
7
- *
8
- * The function returns a class when all dependencies were
9
- * resolved synchronously, or a Promise otherwise.
10
- *
11
- * @param ctor The class constructor to call.
12
- * @param ctx The context containing values for `@inject` resolution
13
- */
14
- export declare function instantiateClass<T>(ctor: Constructor<T>, ctx: Context): T | Promise<T>;
15
- /**
16
- * Given a function with arguments decorated with `@inject`,
17
- * return the list of arguments resolved using the values
18
- * bound in `ctx`.
19
-
20
- * The function returns an argument array when all dependencies were
21
- * resolved synchronously, or a Promise otherwise.
22
- *
23
- * @param fn The function for which the arguments should be resolved.
24
- * @param ctx The context containing values for `@inject` resolution
25
- */
26
- export declare function resolveInjectedArguments(fn: Function, ctx: Context): BoundValue[] | Promise<BoundValue[]>;
27
- export declare type KV = {
28
- [p: string]: BoundValue;
29
- };
30
- export declare function resolveInjectedProperties(fn: Function, ctx: Context): KV | Promise<KV>;
package/lib6/resolver.js DELETED
@@ -1,128 +0,0 @@
1
- "use strict";
2
- // Copyright IBM Corp. 2013,2017. All Rights Reserved.
3
- // Node module: loopback
4
- // This file is licensed under the MIT License.
5
- // License text available at https://opensource.org/licenses/MIT
6
- Object.defineProperty(exports, "__esModule", { value: true });
7
- const isPromise_1 = require("./isPromise");
8
- const inject_1 = require("./inject");
9
- /**
10
- * Create an instance of a class which constructor has arguments
11
- * decorated with `@inject`.
12
- *
13
- * The function returns a class when all dependencies were
14
- * resolved synchronously, or a Promise otherwise.
15
- *
16
- * @param ctor The class constructor to call.
17
- * @param ctx The context containing values for `@inject` resolution
18
- */
19
- function instantiateClass(ctor, ctx) {
20
- const argsOrPromise = resolveInjectedArguments(ctor, ctx);
21
- const propertiesOrPromise = resolveInjectedProperties(ctor, ctx);
22
- let inst;
23
- if (isPromise_1.isPromise(argsOrPromise)) {
24
- // Instantiate the class asynchronously
25
- inst = argsOrPromise.then(args => new ctor(...args));
26
- }
27
- else {
28
- // Instantiate the class synchronously
29
- inst = new ctor(...argsOrPromise);
30
- }
31
- if (isPromise_1.isPromise(propertiesOrPromise)) {
32
- return propertiesOrPromise.then((props) => {
33
- if (isPromise_1.isPromise(inst)) {
34
- // Inject the properties asynchrounously
35
- return inst.then(obj => Object.assign(obj, props));
36
- }
37
- else {
38
- // Inject the properties synchrounously
39
- return Object.assign(inst, props);
40
- }
41
- });
42
- }
43
- else {
44
- if (isPromise_1.isPromise(inst)) {
45
- // Inject the properties asynchrounously
46
- return inst.then(obj => Object.assign(obj, propertiesOrPromise));
47
- }
48
- else {
49
- // Inject the properties synchrounously
50
- return Object.assign(inst, propertiesOrPromise);
51
- }
52
- }
53
- }
54
- exports.instantiateClass = instantiateClass;
55
- /**
56
- * Given a function with arguments decorated with `@inject`,
57
- * return the list of arguments resolved using the values
58
- * bound in `ctx`.
59
-
60
- * The function returns an argument array when all dependencies were
61
- * resolved synchronously, or a Promise otherwise.
62
- *
63
- * @param fn The function for which the arguments should be resolved.
64
- * @param ctx The context containing values for `@inject` resolution
65
- */
66
- function resolveInjectedArguments(fn, ctx) {
67
- // NOTE: the array may be sparse, i.e.
68
- // Object.keys(injectedArgs).length !== injectedArgs.length
69
- // Example value:
70
- // [ , 'key1', , 'key2']
71
- const injectedArgs = inject_1.describeInjectedArguments(fn);
72
- const args = new Array(fn.length);
73
- let asyncResolvers = undefined;
74
- for (let ix = 0; ix < fn.length; ix++) {
75
- const bindingKey = injectedArgs[ix].bindingKey;
76
- if (!bindingKey) {
77
- throw new Error(`Cannot resolve injected arguments for function ${fn.name}: ` +
78
- `The argument ${ix + 1} was not decorated for dependency injection.`);
79
- }
80
- const binding = ctx.getBinding(bindingKey);
81
- const valueOrPromise = binding.getValue(ctx);
82
- if (isPromise_1.isPromise(valueOrPromise)) {
83
- if (!asyncResolvers)
84
- asyncResolvers = [];
85
- asyncResolvers.push(valueOrPromise.then((v) => args[ix] = v));
86
- }
87
- else {
88
- args[ix] = valueOrPromise;
89
- }
90
- }
91
- if (asyncResolvers) {
92
- return Promise.all(asyncResolvers).then(() => args);
93
- }
94
- else {
95
- return args;
96
- }
97
- }
98
- exports.resolveInjectedArguments = resolveInjectedArguments;
99
- function resolveInjectedProperties(fn, ctx) {
100
- const injectedProperties = inject_1.describeInjectedProperties(fn);
101
- const properties = {};
102
- let asyncResolvers = undefined;
103
- const propertyResolver = (p) => ((v) => properties[p] = v);
104
- for (const p in injectedProperties) {
105
- const bindingKey = injectedProperties[p].bindingKey;
106
- if (!bindingKey) {
107
- throw new Error(`Cannot resolve injected property for class ${fn.name}: ` +
108
- `The property ${p} was not decorated for dependency injection.`);
109
- }
110
- const binding = ctx.getBinding(bindingKey);
111
- const valueOrPromise = binding.getValue(ctx);
112
- if (isPromise_1.isPromise(valueOrPromise)) {
113
- if (!asyncResolvers)
114
- asyncResolvers = [];
115
- asyncResolvers.push(valueOrPromise.then(propertyResolver(p)));
116
- }
117
- else {
118
- properties[p] = valueOrPromise;
119
- }
120
- }
121
- if (asyncResolvers) {
122
- return Promise.all(asyncResolvers).then(() => properties);
123
- }
124
- else {
125
- return properties;
126
- }
127
- }
128
- exports.resolveInjectedProperties = resolveInjectedProperties;