@tachybase/di 1.3.43
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.
- package/LICENSE +201 -0
- package/lib/container-instance.class.d.ts +111 -0
- package/lib/container-instance.class.js +343 -0
- package/lib/container-registry.class.d.ts +51 -0
- package/lib/container-registry.class.js +95 -0
- package/lib/decorators/inject-many.decorator.d.ts +8 -0
- package/lib/decorators/inject-many.decorator.js +56 -0
- package/lib/decorators/inject.decorator.d.ts +9 -0
- package/lib/decorators/inject.decorator.js +56 -0
- package/lib/decorators/service.decorator.d.ts +6 -0
- package/lib/decorators/service.decorator.js +49 -0
- package/lib/decorators.d.ts +16 -0
- package/lib/decorators.js +86 -0
- package/lib/empty.const.d.ts +6 -0
- package/lib/empty.const.js +27 -0
- package/lib/error/cannot-inject-value.error.d.ts +11 -0
- package/lib/error/cannot-inject-value.error.js +40 -0
- package/lib/error/cannot-instantiate-value.error.d.ts +11 -0
- package/lib/error/cannot-instantiate-value.error.js +49 -0
- package/lib/error/service-not-found.error.d.ts +11 -0
- package/lib/error/service-not-found.error.js +49 -0
- package/lib/index.d.ts +15 -0
- package/lib/index.js +50 -0
- package/lib/interfaces/container-options.interface.d.ts +45 -0
- package/lib/interfaces/container-options.interface.js +15 -0
- package/lib/interfaces/handler.interface.d.ts +27 -0
- package/lib/interfaces/handler.interface.js +15 -0
- package/lib/interfaces/service-metadata.interface.d.ts +53 -0
- package/lib/interfaces/service-metadata.interface.js +15 -0
- package/lib/interfaces/service-options.interface.d.ts +6 -0
- package/lib/interfaces/service-options.interface.js +15 -0
- package/lib/token.class.d.ts +11 -0
- package/lib/token.class.js +37 -0
- package/lib/types/abstract-constructable.type.d.ts +9 -0
- package/lib/types/abstract-constructable.type.js +15 -0
- package/lib/types/container-identifier.type.d.ts +4 -0
- package/lib/types/container-identifier.type.js +15 -0
- package/lib/types/container-scope.type.d.ts +1 -0
- package/lib/types/container-scope.type.js +15 -0
- package/lib/types/service-identifier.type.d.ts +8 -0
- package/lib/types/service-identifier.type.js +15 -0
- package/lib/utils/resolve-to-type-wrapper.util.d.ts +15 -0
- package/lib/utils/resolve-to-type-wrapper.util.js +39 -0
- package/package.json +11 -0
- package/src/container-instance.class.ts +487 -0
- package/src/container-registry.class.ts +92 -0
- package/src/decorators/inject-many.decorator.ts +48 -0
- package/src/decorators/inject.decorator.ts +46 -0
- package/src/decorators/service.decorator.ts +34 -0
- package/src/decorators.ts +70 -0
- package/src/empty.const.ts +6 -0
- package/src/error/cannot-inject-value.error.ts +22 -0
- package/src/error/cannot-instantiate-value.error.ts +34 -0
- package/src/error/service-not-found.error.ts +33 -0
- package/src/index.ts +21 -0
- package/src/interfaces/container-options.interface.ts +48 -0
- package/src/interfaces/handler.interface.ts +32 -0
- package/src/interfaces/service-metadata.interface.ts +62 -0
- package/src/interfaces/service-options.interface.ts +10 -0
- package/src/token.class.ts +11 -0
- package/src/types/abstract-constructable.type.ts +7 -0
- package/src/types/container-identifier.type.ts +4 -0
- package/src/types/container-scope.type.ts +1 -0
- package/src/types/service-identifier.type.ts +15 -0
- package/src/utils/resolve-to-type-wrapper.util.ts +44 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright [2023-2025] [Tego team]
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
import { Handler } from './interfaces/handler.interface';
|
|
2
|
+
import { ServiceOptions } from './interfaces/service-options.interface';
|
|
3
|
+
import { ContainerIdentifier } from './types/container-identifier.type';
|
|
4
|
+
import { ServiceIdentifier } from './types/service-identifier.type';
|
|
5
|
+
/**
|
|
6
|
+
* TypeDI can have multiple containers.
|
|
7
|
+
* One container is ContainerInstance.
|
|
8
|
+
*/
|
|
9
|
+
export declare class ContainerInstance {
|
|
10
|
+
/** Container instance id. */
|
|
11
|
+
readonly id: ContainerIdentifier;
|
|
12
|
+
/** Metadata for all registered services in this container. */
|
|
13
|
+
private metadataMap;
|
|
14
|
+
/**
|
|
15
|
+
* Services registered with 'multiple: true' are saved as simple services
|
|
16
|
+
* with a generated token and the mapping between the original ID and the
|
|
17
|
+
* generated one is stored here. This is handled like this to allow simplifying
|
|
18
|
+
* the inner workings of the service instance.
|
|
19
|
+
*/
|
|
20
|
+
private multiServiceIds;
|
|
21
|
+
/**
|
|
22
|
+
* All registered handlers. The @Inject() decorator uses handlers internally to mark a property for injection.
|
|
23
|
+
**/
|
|
24
|
+
private readonly handlers;
|
|
25
|
+
/**
|
|
26
|
+
* The default global container. By default services are registered into this
|
|
27
|
+
* container when registered via `Container.set()` or `@Service` decorator.
|
|
28
|
+
*/
|
|
29
|
+
private static _default;
|
|
30
|
+
static get default(): ContainerInstance;
|
|
31
|
+
/**
|
|
32
|
+
* Indicates if the container has been disposed or not.
|
|
33
|
+
* Any function call should fail when called after being disposed.
|
|
34
|
+
*
|
|
35
|
+
* NOTE: Currently not in used
|
|
36
|
+
*/
|
|
37
|
+
private disposed;
|
|
38
|
+
constructor(id: ContainerIdentifier);
|
|
39
|
+
/**
|
|
40
|
+
* Checks if the service with given name or type is registered service container.
|
|
41
|
+
* Optionally, parameters can be passed in case if instance is initialized in the container for the first time.
|
|
42
|
+
*/
|
|
43
|
+
has<T = unknown>(identifier: ServiceIdentifier<T>): boolean;
|
|
44
|
+
/**
|
|
45
|
+
* Retrieves the service with given name or type from the service container.
|
|
46
|
+
* Optionally, parameters can be passed in case if instance is initialized in the container for the first time.
|
|
47
|
+
*/
|
|
48
|
+
get<T = unknown>(identifier: ServiceIdentifier<T>): T;
|
|
49
|
+
/**
|
|
50
|
+
* Gets all instances registered in the container of the given service identifier.
|
|
51
|
+
* Used when service defined with multiple: true flag.
|
|
52
|
+
*/
|
|
53
|
+
getMany<T = unknown>(identifier: ServiceIdentifier<T>): T[];
|
|
54
|
+
/**
|
|
55
|
+
* Sets a value for the given type or service name in the container.
|
|
56
|
+
*/
|
|
57
|
+
set<T = unknown>(serviceOptions: ServiceOptions<T>): this;
|
|
58
|
+
/**
|
|
59
|
+
* Removes services with a given service identifiers.
|
|
60
|
+
*/
|
|
61
|
+
remove(identifierOrIdentifierArray: ServiceIdentifier | ServiceIdentifier[]): this;
|
|
62
|
+
/**
|
|
63
|
+
* Gets a separate container instance for the given instance id.
|
|
64
|
+
*/
|
|
65
|
+
of(containerId?: ContainerIdentifier): ContainerInstance;
|
|
66
|
+
/**
|
|
67
|
+
* Registers a new handler.
|
|
68
|
+
*/
|
|
69
|
+
registerHandler(handler: Handler): ContainerInstance;
|
|
70
|
+
/**
|
|
71
|
+
* Helper method that imports given services.
|
|
72
|
+
*/
|
|
73
|
+
import(services: Function[]): ContainerInstance;
|
|
74
|
+
/**
|
|
75
|
+
* Completely resets the container by removing all previously registered services from it.
|
|
76
|
+
*/
|
|
77
|
+
reset(options?: {
|
|
78
|
+
strategy: 'resetValue' | 'resetServices';
|
|
79
|
+
}): this;
|
|
80
|
+
dispose(): Promise<void>;
|
|
81
|
+
private throwIfDisposed;
|
|
82
|
+
/**
|
|
83
|
+
* Gets the value belonging to passed in `ServiceMetadata` instance.
|
|
84
|
+
*
|
|
85
|
+
* - if `serviceMetadata.value` is already set it is immediately returned
|
|
86
|
+
* - otherwise the requested type is resolved to the value saved to `serviceMetadata.value` and returned
|
|
87
|
+
*/
|
|
88
|
+
private getServiceValue;
|
|
89
|
+
/**
|
|
90
|
+
* Initializes all parameter types for a given target service class.
|
|
91
|
+
*/
|
|
92
|
+
private initializeParams;
|
|
93
|
+
/**
|
|
94
|
+
* Checks if given parameter type is primitive type or not.
|
|
95
|
+
*/
|
|
96
|
+
private isPrimitiveParamType;
|
|
97
|
+
/**
|
|
98
|
+
* Applies all registered handlers on a given target class.
|
|
99
|
+
*/
|
|
100
|
+
private applyPropertyHandlers;
|
|
101
|
+
/**
|
|
102
|
+
* Checks if the given service metadata contains a destroyable service instance and destroys it in place. If the service
|
|
103
|
+
* contains a callable function named `destroy` it is called but not awaited and the return value is ignored..
|
|
104
|
+
*
|
|
105
|
+
* @param serviceMetadata the service metadata containing the instance to destroy
|
|
106
|
+
* @param force when true the service will be always destroyed even if it's cannot be re-created
|
|
107
|
+
*/
|
|
108
|
+
private disposeServiceInstance;
|
|
109
|
+
}
|
|
110
|
+
/** We export the default container under the Container alias. */
|
|
111
|
+
export declare const Container: ContainerInstance;
|
|
@@ -0,0 +1,343 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
+
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
6
|
+
var __export = (target, all) => {
|
|
7
|
+
for (var name in all)
|
|
8
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
+
};
|
|
10
|
+
var __copyProps = (to, from, except, desc) => {
|
|
11
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
+
for (let key of __getOwnPropNames(from))
|
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
+
}
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
+
var container_instance_class_exports = {};
|
|
20
|
+
__export(container_instance_class_exports, {
|
|
21
|
+
Container: () => Container,
|
|
22
|
+
ContainerInstance: () => ContainerInstance
|
|
23
|
+
});
|
|
24
|
+
module.exports = __toCommonJS(container_instance_class_exports);
|
|
25
|
+
var import_container_registry = require("./container-registry.class");
|
|
26
|
+
var import_empty = require("./empty.const");
|
|
27
|
+
var import_cannot_instantiate_value = require("./error/cannot-instantiate-value.error");
|
|
28
|
+
var import_service_not_found = require("./error/service-not-found.error");
|
|
29
|
+
var import_token = require("./token.class");
|
|
30
|
+
const _ContainerInstance = class _ContainerInstance {
|
|
31
|
+
constructor(id) {
|
|
32
|
+
/** Metadata for all registered services in this container. */
|
|
33
|
+
this.metadataMap = /* @__PURE__ */ new Map();
|
|
34
|
+
/**
|
|
35
|
+
* Services registered with 'multiple: true' are saved as simple services
|
|
36
|
+
* with a generated token and the mapping between the original ID and the
|
|
37
|
+
* generated one is stored here. This is handled like this to allow simplifying
|
|
38
|
+
* the inner workings of the service instance.
|
|
39
|
+
*/
|
|
40
|
+
this.multiServiceIds = /* @__PURE__ */ new Map();
|
|
41
|
+
/**
|
|
42
|
+
* All registered handlers. The @Inject() decorator uses handlers internally to mark a property for injection.
|
|
43
|
+
**/
|
|
44
|
+
this.handlers = [];
|
|
45
|
+
/**
|
|
46
|
+
* Indicates if the container has been disposed or not.
|
|
47
|
+
* Any function call should fail when called after being disposed.
|
|
48
|
+
*
|
|
49
|
+
* NOTE: Currently not in used
|
|
50
|
+
*/
|
|
51
|
+
this.disposed = false;
|
|
52
|
+
this.id = id;
|
|
53
|
+
if (id !== "default") {
|
|
54
|
+
import_container_registry.ContainerRegistry.registerContainer(this);
|
|
55
|
+
this.handlers = _ContainerInstance.default.handlers || [];
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
static get default() {
|
|
59
|
+
if (!this._default) {
|
|
60
|
+
this._default = new _ContainerInstance("default");
|
|
61
|
+
import_container_registry.ContainerRegistry.registerContainer(this._default);
|
|
62
|
+
}
|
|
63
|
+
return this._default;
|
|
64
|
+
}
|
|
65
|
+
/**
|
|
66
|
+
* Checks if the service with given name or type is registered service container.
|
|
67
|
+
* Optionally, parameters can be passed in case if instance is initialized in the container for the first time.
|
|
68
|
+
*/
|
|
69
|
+
has(identifier) {
|
|
70
|
+
this.throwIfDisposed();
|
|
71
|
+
return !!this.metadataMap.has(identifier) || !!this.multiServiceIds.has(identifier);
|
|
72
|
+
}
|
|
73
|
+
/**
|
|
74
|
+
* Retrieves the service with given name or type from the service container.
|
|
75
|
+
* Optionally, parameters can be passed in case if instance is initialized in the container for the first time.
|
|
76
|
+
*/
|
|
77
|
+
get(identifier) {
|
|
78
|
+
this.throwIfDisposed();
|
|
79
|
+
const global = _ContainerInstance.default.metadataMap.get(identifier);
|
|
80
|
+
const local = this.metadataMap.get(identifier);
|
|
81
|
+
const metadata = (global == null ? void 0 : global.scope) === "singleton" ? global : local;
|
|
82
|
+
if (metadata && metadata.multiple === true) {
|
|
83
|
+
throw new Error(`Cannot resolve multiple values for ${identifier.toString()} service!`);
|
|
84
|
+
}
|
|
85
|
+
if (metadata) {
|
|
86
|
+
return this.getServiceValue(metadata);
|
|
87
|
+
}
|
|
88
|
+
if (global && this !== _ContainerInstance.default) {
|
|
89
|
+
const clonedService = { ...global };
|
|
90
|
+
clonedService.value = import_empty.EMPTY_VALUE;
|
|
91
|
+
this.set(clonedService);
|
|
92
|
+
const value = this.getServiceValue(clonedService);
|
|
93
|
+
this.set({ ...clonedService, value });
|
|
94
|
+
return value;
|
|
95
|
+
}
|
|
96
|
+
throw new import_service_not_found.ServiceNotFoundError(identifier);
|
|
97
|
+
}
|
|
98
|
+
/**
|
|
99
|
+
* Gets all instances registered in the container of the given service identifier.
|
|
100
|
+
* Used when service defined with multiple: true flag.
|
|
101
|
+
*/
|
|
102
|
+
getMany(identifier) {
|
|
103
|
+
this.throwIfDisposed();
|
|
104
|
+
const globalIdMap = _ContainerInstance.default.multiServiceIds.get(identifier);
|
|
105
|
+
const localIdMap = this.multiServiceIds.get(identifier);
|
|
106
|
+
if ((globalIdMap == null ? void 0 : globalIdMap.scope) === "singleton") {
|
|
107
|
+
return globalIdMap.tokens.map((generatedId) => _ContainerInstance.default.get(generatedId));
|
|
108
|
+
}
|
|
109
|
+
if (localIdMap) {
|
|
110
|
+
return localIdMap.tokens.map((generatedId) => this.get(generatedId));
|
|
111
|
+
}
|
|
112
|
+
throw new import_service_not_found.ServiceNotFoundError(identifier);
|
|
113
|
+
}
|
|
114
|
+
/**
|
|
115
|
+
* Sets a value for the given type or service name in the container.
|
|
116
|
+
*/
|
|
117
|
+
set(serviceOptions) {
|
|
118
|
+
this.throwIfDisposed();
|
|
119
|
+
if (serviceOptions.scope === "singleton" && _ContainerInstance.default !== this) {
|
|
120
|
+
_ContainerInstance.default.set(serviceOptions);
|
|
121
|
+
return this;
|
|
122
|
+
}
|
|
123
|
+
const newMetadata = {
|
|
124
|
+
/**
|
|
125
|
+
* Typescript cannot understand that if ID doesn't exists then type must exists based on the
|
|
126
|
+
* typing so we need to explicitly cast this to a `ServiceIdentifier`
|
|
127
|
+
*/
|
|
128
|
+
id: serviceOptions.id || serviceOptions.type,
|
|
129
|
+
type: serviceOptions.type || null,
|
|
130
|
+
factory: serviceOptions.factory,
|
|
131
|
+
value: serviceOptions.value || import_empty.EMPTY_VALUE,
|
|
132
|
+
multiple: serviceOptions.multiple || false,
|
|
133
|
+
eager: serviceOptions.eager || false,
|
|
134
|
+
scope: serviceOptions.scope || "container",
|
|
135
|
+
/** We allow overriding the above options via the received config object. */
|
|
136
|
+
...serviceOptions,
|
|
137
|
+
referencedBy: (/* @__PURE__ */ new Map()).set(this.id, this)
|
|
138
|
+
};
|
|
139
|
+
if (serviceOptions.multiple) {
|
|
140
|
+
const maskedToken = new import_token.Token(`MultiMaskToken-${newMetadata.id.toString()}`);
|
|
141
|
+
const existingMultiGroup = this.multiServiceIds.get(newMetadata.id);
|
|
142
|
+
if (existingMultiGroup) {
|
|
143
|
+
existingMultiGroup.tokens.push(maskedToken);
|
|
144
|
+
} else {
|
|
145
|
+
this.multiServiceIds.set(newMetadata.id, { scope: newMetadata.scope, tokens: [maskedToken] });
|
|
146
|
+
}
|
|
147
|
+
newMetadata.id = maskedToken;
|
|
148
|
+
newMetadata.multiple = false;
|
|
149
|
+
}
|
|
150
|
+
const existingMetadata = this.metadataMap.get(newMetadata.id);
|
|
151
|
+
if (existingMetadata) {
|
|
152
|
+
Object.assign(existingMetadata, newMetadata);
|
|
153
|
+
} else {
|
|
154
|
+
this.metadataMap.set(newMetadata.id, newMetadata);
|
|
155
|
+
}
|
|
156
|
+
if (newMetadata.eager && newMetadata.scope !== "transient") {
|
|
157
|
+
this.get(newMetadata.id);
|
|
158
|
+
}
|
|
159
|
+
return this;
|
|
160
|
+
}
|
|
161
|
+
/**
|
|
162
|
+
* Removes services with a given service identifiers.
|
|
163
|
+
*/
|
|
164
|
+
remove(identifierOrIdentifierArray) {
|
|
165
|
+
this.throwIfDisposed();
|
|
166
|
+
if (Array.isArray(identifierOrIdentifierArray)) {
|
|
167
|
+
identifierOrIdentifierArray.forEach((id) => this.remove(id));
|
|
168
|
+
} else {
|
|
169
|
+
const serviceMetadata = this.metadataMap.get(identifierOrIdentifierArray);
|
|
170
|
+
if (serviceMetadata) {
|
|
171
|
+
this.disposeServiceInstance(serviceMetadata);
|
|
172
|
+
this.metadataMap.delete(identifierOrIdentifierArray);
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
return this;
|
|
176
|
+
}
|
|
177
|
+
/**
|
|
178
|
+
* Gets a separate container instance for the given instance id.
|
|
179
|
+
*/
|
|
180
|
+
of(containerId = "default") {
|
|
181
|
+
this.throwIfDisposed();
|
|
182
|
+
if (containerId === "default") {
|
|
183
|
+
return _ContainerInstance.default;
|
|
184
|
+
}
|
|
185
|
+
let container;
|
|
186
|
+
if (import_container_registry.ContainerRegistry.hasContainer(containerId)) {
|
|
187
|
+
container = import_container_registry.ContainerRegistry.getContainer(containerId);
|
|
188
|
+
} else {
|
|
189
|
+
container = new _ContainerInstance(containerId);
|
|
190
|
+
}
|
|
191
|
+
return container;
|
|
192
|
+
}
|
|
193
|
+
/**
|
|
194
|
+
* Registers a new handler.
|
|
195
|
+
*/
|
|
196
|
+
registerHandler(handler) {
|
|
197
|
+
this.handlers.push(handler);
|
|
198
|
+
return this;
|
|
199
|
+
}
|
|
200
|
+
/**
|
|
201
|
+
* Helper method that imports given services.
|
|
202
|
+
*/
|
|
203
|
+
import(services) {
|
|
204
|
+
this.throwIfDisposed();
|
|
205
|
+
return this;
|
|
206
|
+
}
|
|
207
|
+
/**
|
|
208
|
+
* Completely resets the container by removing all previously registered services from it.
|
|
209
|
+
*/
|
|
210
|
+
reset(options = { strategy: "resetValue" }) {
|
|
211
|
+
this.throwIfDisposed();
|
|
212
|
+
switch (options.strategy) {
|
|
213
|
+
case "resetValue":
|
|
214
|
+
this.metadataMap.forEach((service) => this.disposeServiceInstance(service));
|
|
215
|
+
break;
|
|
216
|
+
case "resetServices":
|
|
217
|
+
this.metadataMap.forEach((service) => this.disposeServiceInstance(service));
|
|
218
|
+
this.metadataMap.clear();
|
|
219
|
+
this.multiServiceIds.clear();
|
|
220
|
+
break;
|
|
221
|
+
default:
|
|
222
|
+
throw new Error("Received invalid reset strategy.");
|
|
223
|
+
}
|
|
224
|
+
return this;
|
|
225
|
+
}
|
|
226
|
+
async dispose() {
|
|
227
|
+
this.reset({ strategy: "resetServices" });
|
|
228
|
+
this.disposed = true;
|
|
229
|
+
await Promise.resolve();
|
|
230
|
+
}
|
|
231
|
+
throwIfDisposed() {
|
|
232
|
+
if (this.disposed) {
|
|
233
|
+
throw new Error("Cannot use container after it has been disposed.");
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
/**
|
|
237
|
+
* Gets the value belonging to passed in `ServiceMetadata` instance.
|
|
238
|
+
*
|
|
239
|
+
* - if `serviceMetadata.value` is already set it is immediately returned
|
|
240
|
+
* - otherwise the requested type is resolved to the value saved to `serviceMetadata.value` and returned
|
|
241
|
+
*/
|
|
242
|
+
getServiceValue(serviceMetadata) {
|
|
243
|
+
let value = import_empty.EMPTY_VALUE;
|
|
244
|
+
if (serviceMetadata.value !== import_empty.EMPTY_VALUE) {
|
|
245
|
+
return serviceMetadata.value;
|
|
246
|
+
}
|
|
247
|
+
if (!serviceMetadata.factory && typeof serviceMetadata.type === "undefined") {
|
|
248
|
+
throw new import_cannot_instantiate_value.CannotInstantiateValueError(serviceMetadata.id);
|
|
249
|
+
}
|
|
250
|
+
if (serviceMetadata.factory) {
|
|
251
|
+
if (serviceMetadata.factory instanceof Array) {
|
|
252
|
+
let factoryInstance;
|
|
253
|
+
try {
|
|
254
|
+
factoryInstance = this.get(serviceMetadata.factory[0]);
|
|
255
|
+
} catch (error) {
|
|
256
|
+
if (error instanceof import_service_not_found.ServiceNotFoundError) {
|
|
257
|
+
factoryInstance = new serviceMetadata.factory[0]();
|
|
258
|
+
} else {
|
|
259
|
+
throw error;
|
|
260
|
+
}
|
|
261
|
+
}
|
|
262
|
+
value = factoryInstance[serviceMetadata.factory[1]](this, serviceMetadata.id);
|
|
263
|
+
} else {
|
|
264
|
+
value = serviceMetadata.factory(this, serviceMetadata.id);
|
|
265
|
+
}
|
|
266
|
+
} else if (typeof serviceMetadata.type === "function") {
|
|
267
|
+
value = new serviceMetadata.type();
|
|
268
|
+
}
|
|
269
|
+
if (serviceMetadata.scope !== "transient" && value !== import_empty.EMPTY_VALUE) {
|
|
270
|
+
serviceMetadata.value = value;
|
|
271
|
+
}
|
|
272
|
+
if (value === import_empty.EMPTY_VALUE) {
|
|
273
|
+
throw new import_cannot_instantiate_value.CannotInstantiateValueError(serviceMetadata.id);
|
|
274
|
+
}
|
|
275
|
+
if (serviceMetadata.type) {
|
|
276
|
+
this.applyPropertyHandlers(serviceMetadata.type, value);
|
|
277
|
+
}
|
|
278
|
+
return value;
|
|
279
|
+
}
|
|
280
|
+
/**
|
|
281
|
+
* Initializes all parameter types for a given target service class.
|
|
282
|
+
*/
|
|
283
|
+
initializeParams(target, paramTypes) {
|
|
284
|
+
return paramTypes.map((paramType, index) => {
|
|
285
|
+
const paramHandler = this.handlers.find((handler) => {
|
|
286
|
+
return handler.object === target && handler.index === index;
|
|
287
|
+
}) || this.handlers.find((handler) => {
|
|
288
|
+
return handler.object === Object.getPrototypeOf(target) && handler.index === index;
|
|
289
|
+
});
|
|
290
|
+
if (paramHandler) return paramHandler.value(this);
|
|
291
|
+
if (paramType && paramType.name && !this.isPrimitiveParamType(paramType.name)) {
|
|
292
|
+
return this.get(paramType);
|
|
293
|
+
}
|
|
294
|
+
return void 0;
|
|
295
|
+
});
|
|
296
|
+
}
|
|
297
|
+
/**
|
|
298
|
+
* Checks if given parameter type is primitive type or not.
|
|
299
|
+
*/
|
|
300
|
+
isPrimitiveParamType(paramTypeName) {
|
|
301
|
+
return ["string", "boolean", "number", "object"].includes(paramTypeName.toLowerCase());
|
|
302
|
+
}
|
|
303
|
+
/**
|
|
304
|
+
* Applies all registered handlers on a given target class.
|
|
305
|
+
*/
|
|
306
|
+
applyPropertyHandlers(target, instance) {
|
|
307
|
+
this.handlers.forEach((handler) => {
|
|
308
|
+
if (typeof handler.index === "number") return;
|
|
309
|
+
if (handler.object !== target && !(target.prototype instanceof handler.object)) return;
|
|
310
|
+
if (handler.propertyName) {
|
|
311
|
+
instance[handler.propertyName] = handler.value(this);
|
|
312
|
+
}
|
|
313
|
+
});
|
|
314
|
+
}
|
|
315
|
+
/**
|
|
316
|
+
* Checks if the given service metadata contains a destroyable service instance and destroys it in place. If the service
|
|
317
|
+
* contains a callable function named `destroy` it is called but not awaited and the return value is ignored..
|
|
318
|
+
*
|
|
319
|
+
* @param serviceMetadata the service metadata containing the instance to destroy
|
|
320
|
+
* @param force when true the service will be always destroyed even if it's cannot be re-created
|
|
321
|
+
*/
|
|
322
|
+
disposeServiceInstance(serviceMetadata, force = false) {
|
|
323
|
+
this.throwIfDisposed();
|
|
324
|
+
const shouldResetValue = force || !!serviceMetadata.type || !!serviceMetadata.factory;
|
|
325
|
+
if (shouldResetValue) {
|
|
326
|
+
if (typeof (serviceMetadata == null ? void 0 : serviceMetadata.value)["dispose"] === "function") {
|
|
327
|
+
try {
|
|
328
|
+
serviceMetadata.value.dispose();
|
|
329
|
+
} catch (error) {
|
|
330
|
+
}
|
|
331
|
+
}
|
|
332
|
+
serviceMetadata.value = import_empty.EMPTY_VALUE;
|
|
333
|
+
}
|
|
334
|
+
}
|
|
335
|
+
};
|
|
336
|
+
__name(_ContainerInstance, "ContainerInstance");
|
|
337
|
+
let ContainerInstance = _ContainerInstance;
|
|
338
|
+
const Container = ContainerInstance.default;
|
|
339
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
340
|
+
0 && (module.exports = {
|
|
341
|
+
Container,
|
|
342
|
+
ContainerInstance
|
|
343
|
+
});
|