forked from dorr-fg/intravenous
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.js
280 lines (231 loc) · 6.05 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
"use strict";
class SingletonLifecycle {
cache = new Map();
container;
parent;
constructor(container, parent) {
Object.assign(this, {
container,
parent,
});
}
get(key) {
if (this.cache.has(key)) {
return this.cache.get(key);
}
// If the singleton wasn't found, maybe it is available in the parent
return this.parent?.get(key);
}
set(key, instance) {
if (!this.cache.has(key)) {
this.cache.set(key, instance);
}
}
}
class UniqueLifecycle {
container;
constructor(container) {
this.container = container;
}
get() {
return null;
}
set() {}
}
const nullableFacility = {
suffixes: ["?"],
beforeResolve(container, key, reg) {
if (reg) {
// We don't want to handle non-null instances
return {
handled: false,
};
} else {
return {
handled: true,
data: null,
};
}
},
};
class FactoryInstance {
container;
key;
constructor(container, key) {
Object.assign(this, {
container: container.create(),
key,
});
}
get(...args) {
return this.container.get(this.key, ...args);
}
use(key, value, lifecycle) {
this.container.register(key, value, lifecycle);
return this;
}
}
class Factory {
container;
key;
constructor(container, key) {
Object.assign(this, {
container,
key,
});
}
get(...args) {
return new FactoryInstance(this.container, this.key).get(...args);
}
use(key, value, lifecycle) {
return new FactoryInstance(this.container, this.key).use(key, value, lifecycle);
}
}
const factoryFacility = {
suffixes: ["Factory", "!"],
resolve(container, key) {
return {
handled: true,
data: new Factory(container, key),
};
},
};
function getFacility(container, key) {
for (const facilityName in container.facilities) {
const facility = container.facilities[facilityName];
for (const suffix of facility.suffixes) {
if (key.includes(suffix, key.length - suffix.length)) {
return {
data: facility,
key: key.slice(0, key.length - suffix.length),
};
}
}
}
return {
data: null,
key,
};
}
function get(container, key, extraInjections) {
let facility = getFacility(container, key);
key = facility.key;
facility = facility.data;
// Try to find the dependency registration in the current container.
// If not found, recursively try the parent container.
let reg;
let currentContainer = container;
while (currentContainer) {
reg = currentContainer.registry.get(key);
if (!reg) {
currentContainer = currentContainer.parent;
} else {
break;
}
}
if (facility && facility.beforeResolve) {
const result = facility.beforeResolve(container, key, reg);
if (result.handled) {
return result.data;
}
}
if (!currentContainer) {
throw new Error(`Unknown dependency: ${ key}`);
}
if (facility && facility.resolve) {
const result = facility.resolve(container, key, reg);
if (result.handled) {
return result.data;
}
}
// Ask the lifecycle if it already has an instance of this dependency
let instance = container.lifecycles[reg.lifecycle].get(key);
if (instance) {
return instance;
}
let returnValue;
// Lifecycle didn't have an instance, so we need to create it.
// If the registered value is a function we use it as a constructor.
// Otherwise, we simply return the registered value.
if (reg.value instanceof Function) {
// The registered value is a constructor, so we need to construct the object and inject all the dependencies.
const injections = reg.value.$inject;
const resolvedInjections = [];
if (Array.isArray(injections)) {
for (const injectionKey of injections) {
resolvedInjections.push(get(container, injectionKey, []));
}
}
for (const extraInjection of extraInjections) {
resolvedInjections.push(extraInjection);
}
// If the callback returns a function, we consider it to be a custom factory.
// This factory is then registered under the same key in the child container.
returnValue = new reg.value(...resolvedInjections);
if (returnValue instanceof Function) {
instance = new FactoryInstance(container, key);
instance.container.register(key, returnValue);
// Copy any static properties owned by the factory
for (const propertyName in returnValue) {
if (Object.prototype.hasOwnProperty.call(returnValue, propertyName)) {
instance[propertyName] = returnValue[propertyName];
}
}
returnValue = undefined;
}
} else {
// The registered value is an existing instance.
instance = reg.value;
}
container.lifecycles[reg.lifecycle].set(reg.key, returnValue ?? instance);
// If the returnValue is set, we should return that instead of the instance.
return returnValue ?? instance;
}
module.exports = class Container {
registry = new Map();
parent;
lifecycles;
options;
facilities = {
nullable: nullableFacility,
factory: factoryFacility,
};
constructor(options, parent) {
Object.assign(this, {
parent,
lifecycles: {
singleton: new SingletonLifecycle(this, parent?.lifecycles.singleton),
unique: new UniqueLifecycle(this),
},
options: options ?? {},
});
this.register("container", this);
}
register(key, value, lifecycle) {
if (getFacility(this, key).data) {
throw new Error(`Cannot register dependency: ${key}`);
}
const registered = this.registry.get(key);
if (!lifecycle && registered) {
registered.value = value;
return;
}
this.registry.set(key, {
key,
container: this,
value,
lifecycle: lifecycle ?? "unique"
});
}
get(key, ...extraInjections) {
let container = this;
let value;
while (container && (value = get(container, key, extraInjections)) === null) {
container = container.parent;
}
return value;
}
create(options = {}) {
return new Container(options, this);
}
};