assemblerjs 1.1.19 → 1.1.20
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/dist/index13.js +1 -1
- package/dist/index13.mjs +1 -1
- package/dist/index31.js +146 -93
- package/dist/index31.mjs +145 -93
- package/dist/index32.js +45 -23
- package/dist/index32.mjs +45 -23
- package/dist/index33.js +66 -145
- package/dist/index33.mjs +67 -145
- package/dist/index34.js +50 -45
- package/dist/index34.mjs +50 -45
- package/dist/index35.js +28 -76
- package/dist/index35.mjs +28 -76
- package/dist/index36.js +161 -50
- package/dist/index36.mjs +161 -50
- package/dist/index37.js +60 -28
- package/dist/index37.mjs +60 -28
- package/dist/index38.js +32 -158
- package/dist/index38.mjs +31 -158
- package/dist/index39.js +98 -56
- package/dist/index39.mjs +98 -56
- package/dist/index4.js +7 -7
- package/dist/index4.mjs +7 -7
- package/dist/index40.js +24 -36
- package/dist/index40.mjs +24 -35
- package/dist/index45.js +47 -22
- package/dist/index45.mjs +47 -22
- package/dist/index50.js +2 -2
- package/dist/index50.mjs +2 -2
- package/package.json +1 -1
package/dist/index32.mjs
CHANGED
|
@@ -1,30 +1,52 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
import { DebugLogger } from './index36.mjs';
|
|
2
|
+
|
|
3
|
+
function t(e) {
|
|
4
|
+
return typeof e === 'symbol' ? 'symbol' : 'string';
|
|
5
|
+
}
|
|
6
|
+
class ObjectManager {
|
|
7
|
+
use(r, o) {
|
|
8
|
+
if (this.has(r)) {
|
|
9
|
+
const o = typeof r === 'symbol' ? r.toString() : String(r);
|
|
10
|
+
const s = `Object/value '${o}' is already registered (cannot register twice).`;
|
|
11
|
+
DebugLogger.getInstance().log('error', 'Duplicate object/value registration', {
|
|
12
|
+
identifier: o,
|
|
13
|
+
type: t(r),
|
|
14
|
+
error: s
|
|
15
|
+
});
|
|
16
|
+
throw new Error(s);
|
|
6
17
|
}
|
|
7
|
-
|
|
8
|
-
return
|
|
18
|
+
this.objects.set(r, o);
|
|
19
|
+
return o;
|
|
9
20
|
}
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
matches(t) {
|
|
13
|
-
const e = t.target.constructor.name;
|
|
14
|
-
const c = t.methodName;
|
|
15
|
-
return this.classRegex.test(e) && this.methodRegex.test(c);
|
|
21
|
+
has(e) {
|
|
22
|
+
return this.objects.has(e);
|
|
16
23
|
}
|
|
17
|
-
|
|
18
|
-
if (
|
|
19
|
-
|
|
24
|
+
require(r) {
|
|
25
|
+
if (!this.objects.has(r)) {
|
|
26
|
+
const o = typeof r === 'symbol' ? r.toString() : String(r);
|
|
27
|
+
const s = `Object/value '${o}' has not been registered in the object store.`;
|
|
28
|
+
DebugLogger.getInstance().log('error', 'Object/value not found', {
|
|
29
|
+
identifier: o,
|
|
30
|
+
type: t(r),
|
|
31
|
+
error: s
|
|
32
|
+
});
|
|
33
|
+
throw new Error(s);
|
|
20
34
|
}
|
|
21
|
-
|
|
22
|
-
return new RegExp(`^${e}$`);
|
|
35
|
+
return this.objects.get(r);
|
|
23
36
|
}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
37
|
+
addGlobal(e, t) {
|
|
38
|
+
if (this.globals.has(e)) {
|
|
39
|
+
throw new Error(`Global value with key '${e}' has already been registered.`);
|
|
40
|
+
}
|
|
41
|
+
this.globals.set(e, t);
|
|
27
42
|
}
|
|
28
|
-
|
|
43
|
+
global(e) {
|
|
44
|
+
return this.globals.get(e);
|
|
45
|
+
}
|
|
46
|
+
constructor(){
|
|
47
|
+
this.objects = new Map();
|
|
48
|
+
this.globals = new Map();
|
|
49
|
+
}
|
|
50
|
+
}
|
|
29
51
|
|
|
30
|
-
export {
|
|
52
|
+
export { ObjectManager };
|
package/dist/index33.js
CHANGED
|
@@ -2,163 +2,84 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
4
4
|
|
|
5
|
-
const hookManager = require('./index35.js');
|
|
6
|
-
const resolutionStrategies = require('./index44.js');
|
|
7
|
-
const debugLogger = require('./index38.js');
|
|
8
5
|
const core = require('@assemblerjs/core');
|
|
9
|
-
const
|
|
10
|
-
const inject = require('./index42.js');
|
|
11
|
-
const injectable = require('./index45.js');
|
|
6
|
+
const debugLogger = require('./index36.js');
|
|
12
7
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
}
|
|
21
|
-
return 'AnonymousFunction';
|
|
8
|
+
class HookManager {
|
|
9
|
+
prepareInitHook(o, t) {
|
|
10
|
+
this.initCache.push({
|
|
11
|
+
instance: o,
|
|
12
|
+
configuration: t
|
|
13
|
+
});
|
|
14
|
+
return this.initCache;
|
|
22
15
|
}
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
if (typeof e === 'boolean') return String(e);
|
|
27
|
-
if (typeof e === 'object') {
|
|
28
|
-
if (e.name && typeof e.name === 'string') {
|
|
29
|
-
return e.name;
|
|
30
|
-
}
|
|
31
|
-
const t = e.constructor?.name;
|
|
32
|
-
if (t && t !== 'Object') {
|
|
33
|
-
return t;
|
|
34
|
-
}
|
|
35
|
-
try {
|
|
36
|
-
const t = JSON.stringify(e);
|
|
37
|
-
if (t.length > 100) {
|
|
38
|
-
return t.substring(0, 100) + '...';
|
|
39
|
-
}
|
|
40
|
-
return t;
|
|
41
|
-
} catch {
|
|
42
|
-
return '[UnknownObject]';
|
|
16
|
+
callInitHooks(o) {
|
|
17
|
+
for (const t of this.initCache){
|
|
18
|
+
HookManager.callHookImmediate(t.instance, 'onInit', o, t.configuration);
|
|
43
19
|
}
|
|
44
20
|
}
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
return t ? 'class' : 'class';
|
|
51
|
-
}
|
|
52
|
-
if (typeof e === 'function') return 'function';
|
|
53
|
-
if (typeof e === 'string') return 'string';
|
|
54
|
-
if (typeof e === 'symbol') return 'symbol';
|
|
55
|
-
if (typeof e === 'object' && e !== null) return 'object';
|
|
56
|
-
return 'unknown';
|
|
57
|
-
}
|
|
58
|
-
class InjectableManager {
|
|
59
|
-
setContexts(e, t) {
|
|
60
|
-
this.privateContext = e;
|
|
61
|
-
this.publicContext = t;
|
|
62
|
-
}
|
|
63
|
-
register(i, o = false) {
|
|
64
|
-
const a = debugLogger.DebugLogger.getInstance();
|
|
65
|
-
const c = o === true ? use.resolveInstanceInjectionTuple(i) : inject.resolveInjectionTuple(i);
|
|
66
|
-
if (this.has(c.identifier)) {
|
|
67
|
-
const e = `An assemblage is already registered with identifier '${c.identifier.name}'.`;
|
|
68
|
-
a.log('error', 'Duplicate registration', {
|
|
69
|
-
identifier: c.identifier.name,
|
|
70
|
-
error: e
|
|
71
|
-
});
|
|
72
|
-
throw new Error(e);
|
|
73
|
-
}
|
|
74
|
-
const f = injectable.Injectable.of(c, this.privateContext, this.publicContext);
|
|
75
|
-
a.logRegistration(f);
|
|
76
|
-
this.injectables.set(f.identifier, f);
|
|
77
|
-
if (f.concrete) {
|
|
78
|
-
hookManager.HookManager.callHook(f.concrete, 'onRegister', this.publicContext, f.configuration);
|
|
21
|
+
callInitedHooks(o) {
|
|
22
|
+
for (const t of [
|
|
23
|
+
...this.initCache
|
|
24
|
+
].reverse()){
|
|
25
|
+
HookManager.callHookImmediate(t.instance, 'onInited', o, t.configuration);
|
|
79
26
|
}
|
|
80
|
-
return f;
|
|
81
27
|
}
|
|
82
|
-
|
|
83
|
-
|
|
28
|
+
clearCache() {
|
|
29
|
+
this.initCache.length = 0;
|
|
84
30
|
}
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
const r = this.resolvingStack.has(e);
|
|
88
|
-
const i = r ? 'Circular dependency detected' : 'Dependency not registered';
|
|
89
|
-
const o = formatIdentifier(e);
|
|
90
|
-
const a = c(e);
|
|
91
|
-
const f = t?.__paramIndex;
|
|
92
|
-
const u = t?.__paramCount;
|
|
93
|
-
const l = t?.__expectedType;
|
|
94
|
-
const g = r ? `Circular dependency detected: '${o}' is already being resolved.` : `Dependency '${o}' has not been registered (Class/Service not found in current assemblages).`;
|
|
95
|
-
const d = {
|
|
96
|
-
identifier: o,
|
|
97
|
-
caller: n ? formatIdentifier(n) : 'unknown',
|
|
98
|
-
type: a,
|
|
99
|
-
error: g
|
|
100
|
-
};
|
|
101
|
-
if (f !== undefined) {
|
|
102
|
-
d.paramIndex = f;
|
|
103
|
-
}
|
|
104
|
-
if (u !== undefined) {
|
|
105
|
-
d.paramCount = u;
|
|
106
|
-
}
|
|
107
|
-
if (l !== undefined) {
|
|
108
|
-
const e = l?.name || formatIdentifier(l);
|
|
109
|
-
d.expectedType = e;
|
|
110
|
-
}
|
|
111
|
-
debugLogger.DebugLogger.getInstance().log('error', i, d);
|
|
112
|
-
throw new Error(g);
|
|
113
|
-
}
|
|
114
|
-
const r = this.injectables.get(e);
|
|
115
|
-
this.resolvingStack.add(r.identifier);
|
|
116
|
-
try {
|
|
117
|
-
if (r.isSingleton) {
|
|
118
|
-
return this.singletonStrategy.resolve(r, t);
|
|
119
|
-
} else {
|
|
120
|
-
return this.transientStrategy.resolve(r, t);
|
|
121
|
-
}
|
|
122
|
-
} finally{
|
|
123
|
-
this.resolvingStack.delete(r.identifier);
|
|
124
|
-
}
|
|
31
|
+
getCache() {
|
|
32
|
+
return this.initCache;
|
|
125
33
|
}
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
if (t) return t.concrete;
|
|
129
|
-
return;
|
|
34
|
+
constructor(){
|
|
35
|
+
this.initCache = [];
|
|
130
36
|
}
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
37
|
+
}
|
|
38
|
+
HookManager.callHook = (e, i, n, a)=>{
|
|
39
|
+
const c = debugLogger.DebugLogger.getInstance();
|
|
40
|
+
const r = c.logHook(i, e, a);
|
|
41
|
+
return new Promise((t, c)=>{
|
|
42
|
+
const s = e[i];
|
|
43
|
+
if (s) {
|
|
44
|
+
if (core.isAsync(s)) {
|
|
45
|
+
s.bind(e)(n, a).then(()=>{
|
|
46
|
+
if (r) r();
|
|
47
|
+
t();
|
|
48
|
+
}).catch((o)=>{
|
|
49
|
+
if (r) r();
|
|
50
|
+
c(o);
|
|
51
|
+
});
|
|
52
|
+
return;
|
|
53
|
+
}
|
|
54
|
+
try {
|
|
55
|
+
s.bind(e)(n, a);
|
|
56
|
+
if (r) r();
|
|
57
|
+
t();
|
|
58
|
+
} catch (o) {
|
|
59
|
+
if (r) r();
|
|
60
|
+
c(o);
|
|
136
61
|
}
|
|
62
|
+
} else {
|
|
63
|
+
if (r) r();
|
|
64
|
+
t();
|
|
137
65
|
}
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
66
|
+
});
|
|
67
|
+
};
|
|
68
|
+
HookManager.callHookImmediate = (e, i, n, a)=>{
|
|
69
|
+
const c = debugLogger.DebugLogger.getInstance();
|
|
70
|
+
const r = c.logHook(i, e, a);
|
|
71
|
+
const s = e[i];
|
|
72
|
+
if (s) {
|
|
73
|
+
if (core.isAsync(s)) {
|
|
74
|
+
s.bind(e)(n, a).catch(()=>{});
|
|
75
|
+
if (r) r();
|
|
76
|
+
return;
|
|
143
77
|
}
|
|
144
|
-
|
|
78
|
+
s.bind(e)(n, a);
|
|
79
|
+
if (r) r();
|
|
80
|
+
} else {
|
|
81
|
+
if (r) r();
|
|
145
82
|
}
|
|
146
|
-
|
|
147
|
-
return this.injectables.size;
|
|
148
|
-
}
|
|
149
|
-
getRegisteredIdentifiers() {
|
|
150
|
-
return Array.from(this.injectables.keys()).map((e)=>e?.name || String(e));
|
|
151
|
-
}
|
|
152
|
-
getInjectables() {
|
|
153
|
-
return this.injectables;
|
|
154
|
-
}
|
|
155
|
-
constructor(){
|
|
156
|
-
this.injectables = new Map();
|
|
157
|
-
this.resolvingStack = new Set();
|
|
158
|
-
this.singletonStrategy = new resolutionStrategies.SingletonStrategy();
|
|
159
|
-
this.transientStrategy = new resolutionStrategies.TransientStrategy();
|
|
160
|
-
}
|
|
161
|
-
}
|
|
83
|
+
};
|
|
162
84
|
|
|
163
|
-
exports.
|
|
164
|
-
exports.formatIdentifier = formatIdentifier;
|
|
85
|
+
exports.HookManager = HookManager;
|
package/dist/index33.mjs
CHANGED
|
@@ -1,159 +1,81 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import { DebugLogger } from './index38.mjs';
|
|
4
|
-
import { isClass } from '@assemblerjs/core';
|
|
5
|
-
import { resolveInstanceInjectionTuple } from './index43.mjs';
|
|
6
|
-
import { resolveInjectionTuple } from './index42.mjs';
|
|
7
|
-
import { Injectable } from './index45.mjs';
|
|
1
|
+
import { isAsync } from '@assemblerjs/core';
|
|
2
|
+
import { DebugLogger } from './index36.mjs';
|
|
8
3
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
}
|
|
17
|
-
return 'AnonymousFunction';
|
|
4
|
+
class HookManager {
|
|
5
|
+
prepareInitHook(o, t) {
|
|
6
|
+
this.initCache.push({
|
|
7
|
+
instance: o,
|
|
8
|
+
configuration: t
|
|
9
|
+
});
|
|
10
|
+
return this.initCache;
|
|
18
11
|
}
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
if (typeof e === 'boolean') return String(e);
|
|
23
|
-
if (typeof e === 'object') {
|
|
24
|
-
if (e.name && typeof e.name === 'string') {
|
|
25
|
-
return e.name;
|
|
26
|
-
}
|
|
27
|
-
const t = e.constructor?.name;
|
|
28
|
-
if (t && t !== 'Object') {
|
|
29
|
-
return t;
|
|
30
|
-
}
|
|
31
|
-
try {
|
|
32
|
-
const t = JSON.stringify(e);
|
|
33
|
-
if (t.length > 100) {
|
|
34
|
-
return t.substring(0, 100) + '...';
|
|
35
|
-
}
|
|
36
|
-
return t;
|
|
37
|
-
} catch {
|
|
38
|
-
return '[UnknownObject]';
|
|
12
|
+
callInitHooks(o) {
|
|
13
|
+
for (const t of this.initCache){
|
|
14
|
+
HookManager.callHookImmediate(t.instance, 'onInit', o, t.configuration);
|
|
39
15
|
}
|
|
40
16
|
}
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
return t ? 'class' : 'class';
|
|
47
|
-
}
|
|
48
|
-
if (typeof e === 'function') return 'function';
|
|
49
|
-
if (typeof e === 'string') return 'string';
|
|
50
|
-
if (typeof e === 'symbol') return 'symbol';
|
|
51
|
-
if (typeof e === 'object' && e !== null) return 'object';
|
|
52
|
-
return 'unknown';
|
|
53
|
-
}
|
|
54
|
-
class InjectableManager {
|
|
55
|
-
setContexts(e, t) {
|
|
56
|
-
this.privateContext = e;
|
|
57
|
-
this.publicContext = t;
|
|
58
|
-
}
|
|
59
|
-
register(i, o = false) {
|
|
60
|
-
const a = DebugLogger.getInstance();
|
|
61
|
-
const c = o === true ? resolveInstanceInjectionTuple(i) : resolveInjectionTuple(i);
|
|
62
|
-
if (this.has(c.identifier)) {
|
|
63
|
-
const e = `An assemblage is already registered with identifier '${c.identifier.name}'.`;
|
|
64
|
-
a.log('error', 'Duplicate registration', {
|
|
65
|
-
identifier: c.identifier.name,
|
|
66
|
-
error: e
|
|
67
|
-
});
|
|
68
|
-
throw new Error(e);
|
|
69
|
-
}
|
|
70
|
-
const f = Injectable.of(c, this.privateContext, this.publicContext);
|
|
71
|
-
a.logRegistration(f);
|
|
72
|
-
this.injectables.set(f.identifier, f);
|
|
73
|
-
if (f.concrete) {
|
|
74
|
-
HookManager.callHook(f.concrete, 'onRegister', this.publicContext, f.configuration);
|
|
17
|
+
callInitedHooks(o) {
|
|
18
|
+
for (const t of [
|
|
19
|
+
...this.initCache
|
|
20
|
+
].reverse()){
|
|
21
|
+
HookManager.callHookImmediate(t.instance, 'onInited', o, t.configuration);
|
|
75
22
|
}
|
|
76
|
-
return f;
|
|
77
23
|
}
|
|
78
|
-
|
|
79
|
-
|
|
24
|
+
clearCache() {
|
|
25
|
+
this.initCache.length = 0;
|
|
80
26
|
}
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
const r = this.resolvingStack.has(e);
|
|
84
|
-
const i = r ? 'Circular dependency detected' : 'Dependency not registered';
|
|
85
|
-
const o = formatIdentifier(e);
|
|
86
|
-
const a = c(e);
|
|
87
|
-
const f = t?.__paramIndex;
|
|
88
|
-
const u = t?.__paramCount;
|
|
89
|
-
const l = t?.__expectedType;
|
|
90
|
-
const g = r ? `Circular dependency detected: '${o}' is already being resolved.` : `Dependency '${o}' has not been registered (Class/Service not found in current assemblages).`;
|
|
91
|
-
const d = {
|
|
92
|
-
identifier: o,
|
|
93
|
-
caller: n ? formatIdentifier(n) : 'unknown',
|
|
94
|
-
type: a,
|
|
95
|
-
error: g
|
|
96
|
-
};
|
|
97
|
-
if (f !== undefined) {
|
|
98
|
-
d.paramIndex = f;
|
|
99
|
-
}
|
|
100
|
-
if (u !== undefined) {
|
|
101
|
-
d.paramCount = u;
|
|
102
|
-
}
|
|
103
|
-
if (l !== undefined) {
|
|
104
|
-
const e = l?.name || formatIdentifier(l);
|
|
105
|
-
d.expectedType = e;
|
|
106
|
-
}
|
|
107
|
-
DebugLogger.getInstance().log('error', i, d);
|
|
108
|
-
throw new Error(g);
|
|
109
|
-
}
|
|
110
|
-
const r = this.injectables.get(e);
|
|
111
|
-
this.resolvingStack.add(r.identifier);
|
|
112
|
-
try {
|
|
113
|
-
if (r.isSingleton) {
|
|
114
|
-
return this.singletonStrategy.resolve(r, t);
|
|
115
|
-
} else {
|
|
116
|
-
return this.transientStrategy.resolve(r, t);
|
|
117
|
-
}
|
|
118
|
-
} finally{
|
|
119
|
-
this.resolvingStack.delete(r.identifier);
|
|
120
|
-
}
|
|
27
|
+
getCache() {
|
|
28
|
+
return this.initCache;
|
|
121
29
|
}
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
if (t) return t.concrete;
|
|
125
|
-
return;
|
|
30
|
+
constructor(){
|
|
31
|
+
this.initCache = [];
|
|
126
32
|
}
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
33
|
+
}
|
|
34
|
+
HookManager.callHook = (e, i, n, a)=>{
|
|
35
|
+
const c = DebugLogger.getInstance();
|
|
36
|
+
const r = c.logHook(i, e, a);
|
|
37
|
+
return new Promise((t, c)=>{
|
|
38
|
+
const s = e[i];
|
|
39
|
+
if (s) {
|
|
40
|
+
if (isAsync(s)) {
|
|
41
|
+
s.bind(e)(n, a).then(()=>{
|
|
42
|
+
if (r) r();
|
|
43
|
+
t();
|
|
44
|
+
}).catch((o)=>{
|
|
45
|
+
if (r) r();
|
|
46
|
+
c(o);
|
|
47
|
+
});
|
|
48
|
+
return;
|
|
49
|
+
}
|
|
50
|
+
try {
|
|
51
|
+
s.bind(e)(n, a);
|
|
52
|
+
if (r) r();
|
|
53
|
+
t();
|
|
54
|
+
} catch (o) {
|
|
55
|
+
if (r) r();
|
|
56
|
+
c(o);
|
|
132
57
|
}
|
|
58
|
+
} else {
|
|
59
|
+
if (r) r();
|
|
60
|
+
t();
|
|
133
61
|
}
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
62
|
+
});
|
|
63
|
+
};
|
|
64
|
+
HookManager.callHookImmediate = (e, i, n, a)=>{
|
|
65
|
+
const c = DebugLogger.getInstance();
|
|
66
|
+
const r = c.logHook(i, e, a);
|
|
67
|
+
const s = e[i];
|
|
68
|
+
if (s) {
|
|
69
|
+
if (isAsync(s)) {
|
|
70
|
+
s.bind(e)(n, a).catch(()=>{});
|
|
71
|
+
if (r) r();
|
|
72
|
+
return;
|
|
139
73
|
}
|
|
140
|
-
|
|
74
|
+
s.bind(e)(n, a);
|
|
75
|
+
if (r) r();
|
|
76
|
+
} else {
|
|
77
|
+
if (r) r();
|
|
141
78
|
}
|
|
142
|
-
|
|
143
|
-
return this.injectables.size;
|
|
144
|
-
}
|
|
145
|
-
getRegisteredIdentifiers() {
|
|
146
|
-
return Array.from(this.injectables.keys()).map((e)=>e?.name || String(e));
|
|
147
|
-
}
|
|
148
|
-
getInjectables() {
|
|
149
|
-
return this.injectables;
|
|
150
|
-
}
|
|
151
|
-
constructor(){
|
|
152
|
-
this.injectables = new Map();
|
|
153
|
-
this.resolvingStack = new Set();
|
|
154
|
-
this.singletonStrategy = new SingletonStrategy();
|
|
155
|
-
this.transientStrategy = new TransientStrategy();
|
|
156
|
-
}
|
|
157
|
-
}
|
|
79
|
+
};
|
|
158
80
|
|
|
159
|
-
export {
|
|
81
|
+
export { HookManager };
|
package/dist/index34.js
CHANGED
|
@@ -2,55 +2,60 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
4
4
|
|
|
5
|
-
const
|
|
5
|
+
const hookManager = require('./index33.js');
|
|
6
|
+
const debugLogger = require('./index36.js');
|
|
7
|
+
const cycleDetector = require('./index37.js');
|
|
8
|
+
const injectableManager = require('./index31.js');
|
|
9
|
+
const schema = require('./index30.js');
|
|
6
10
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
}
|
|
28
|
-
require(r) {
|
|
29
|
-
if (!this.objects.has(r)) {
|
|
30
|
-
const o = typeof r === 'symbol' ? r.toString() : String(r);
|
|
31
|
-
const s = `Object/value '${o}' has not been registered in the object store.`;
|
|
32
|
-
debugLogger.DebugLogger.getInstance().log('error', 'Object/value not found', {
|
|
33
|
-
identifier: o,
|
|
34
|
-
type: t(r),
|
|
35
|
-
error: s
|
|
36
|
-
});
|
|
37
|
-
throw new Error(s);
|
|
11
|
+
class AssemblerBuilder {
|
|
12
|
+
build(n, r) {
|
|
13
|
+
const i = debugLogger.DebugLogger.getInstance();
|
|
14
|
+
schema.setDefinitionValue('singleton', true, n);
|
|
15
|
+
i.logPhaseStart('registration');
|
|
16
|
+
const l = this.assembler.register([
|
|
17
|
+
n
|
|
18
|
+
]);
|
|
19
|
+
const c = this.assembler.injectableManager.getRegisteredIdentifiers();
|
|
20
|
+
i.logPhaseEnd('registration', undefined, {
|
|
21
|
+
registered: c
|
|
22
|
+
});
|
|
23
|
+
const h = cycleDetector.CycleDetector.getInstance().detect(this.assembler.injectableManager.getInjectables(), (e)=>injectableManager.formatIdentifier(e));
|
|
24
|
+
if (h.length > 0) {
|
|
25
|
+
for (const e of h){
|
|
26
|
+
i.log('error', 'Circular dependency detected', {
|
|
27
|
+
cycle: e.cycle,
|
|
28
|
+
path: e.path
|
|
29
|
+
});
|
|
30
|
+
}
|
|
38
31
|
}
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
32
|
+
i.logPhaseStart('resolution');
|
|
33
|
+
const g = this.assembler.require(l.identifier, r);
|
|
34
|
+
i.logPhaseEnd('resolution');
|
|
35
|
+
const m = this.assembler.hookManager.getCache().find((e)=>e.instance === g);
|
|
36
|
+
if (!m) {
|
|
37
|
+
throw new Error('Root instance not found in assemblages cache.');
|
|
44
38
|
}
|
|
45
|
-
this.
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
39
|
+
const b = this.assembler.hookManager.getCache().indexOf(m);
|
|
40
|
+
this.assembler.hookManager.getCache().splice(b, 1);
|
|
41
|
+
i.logPhaseStart('hooks:onInit');
|
|
42
|
+
this.assembler.hookManager.callInitHooks(this.assembler.publicContext);
|
|
43
|
+
const d = r ? {
|
|
44
|
+
...l.configuration,
|
|
45
|
+
...r
|
|
46
|
+
} : l.configuration;
|
|
47
|
+
hookManager.HookManager.callHookImmediate(g, 'onInit', this.assembler.publicContext, d);
|
|
48
|
+
i.logPhaseEnd('hooks:onInit');
|
|
49
|
+
i.logPhaseStart('hooks:onInited');
|
|
50
|
+
this.assembler.hookManager.callInitedHooks(this.assembler.publicContext);
|
|
51
|
+
hookManager.HookManager.callHookImmediate(g, 'onInited', this.assembler.publicContext, d);
|
|
52
|
+
i.logPhaseEnd('hooks:onInited');
|
|
53
|
+
this.assembler.hookManager.clearCache();
|
|
54
|
+
return g;
|
|
49
55
|
}
|
|
50
|
-
constructor(){
|
|
51
|
-
this.
|
|
52
|
-
this.globals = new Map();
|
|
56
|
+
constructor(e){
|
|
57
|
+
this.assembler = e;
|
|
53
58
|
}
|
|
54
59
|
}
|
|
55
60
|
|
|
56
|
-
exports.
|
|
61
|
+
exports.AssemblerBuilder = AssemblerBuilder;
|