assemblerjs 1.1.9 → 1.1.10
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/index11.js +2 -2
- package/dist/index11.mjs +2 -2
- package/dist/index13.js +2 -2
- package/dist/index13.mjs +2 -2
- package/dist/index16.js +1 -1
- package/dist/index16.mjs +1 -1
- package/dist/index17.js +1 -1
- package/dist/index17.mjs +1 -1
- package/dist/index18.js +1 -1
- package/dist/index18.mjs +1 -1
- package/dist/index19.js +1 -1
- package/dist/index19.mjs +1 -1
- package/dist/index2.js +2 -2
- package/dist/index2.mjs +2 -2
- package/dist/index20.js +1 -1
- package/dist/index20.mjs +1 -1
- package/dist/index21.js +1 -1
- package/dist/index21.mjs +1 -1
- package/dist/index22.js +2 -2
- package/dist/index22.mjs +2 -2
- package/dist/index23.js +2 -2
- package/dist/index23.mjs +2 -2
- package/dist/index24.js +2 -2
- package/dist/index24.mjs +2 -2
- package/dist/index25.js +1 -1
- package/dist/index25.mjs +1 -1
- package/dist/index26.js +1 -1
- package/dist/index26.mjs +1 -1
- package/dist/index29.js +15 -38
- package/dist/index29.mjs +12 -37
- package/dist/index3.js +1 -1
- package/dist/index3.mjs +1 -1
- package/dist/index30.js +100 -130
- package/dist/index30.mjs +98 -130
- package/dist/index31.js +123 -36
- package/dist/index31.mjs +123 -36
- package/dist/index32.js +41 -70
- package/dist/index32.mjs +41 -70
- package/dist/index33.js +75 -37
- package/dist/index33.mjs +75 -37
- package/dist/index34.js +39 -29
- package/dist/index34.mjs +39 -29
- package/dist/index35.js +26 -151
- package/dist/index35.mjs +26 -151
- package/dist/index36.js +155 -16
- package/dist/index36.mjs +155 -13
- package/dist/index37.js +18 -103
- package/dist/index37.mjs +18 -101
- package/dist/index38.js +35 -100
- package/dist/index38.mjs +34 -100
- package/dist/index39.js +101 -24
- package/dist/index39.mjs +101 -24
- package/dist/index4.js +6 -6
- package/dist/index4.mjs +6 -6
- package/dist/index40.js +24 -18
- package/dist/index40.mjs +24 -18
- package/dist/index41.js +49 -29
- package/dist/index41.mjs +49 -28
- package/dist/index43.js +29 -49
- package/dist/index43.mjs +28 -49
- package/dist/index44.js +4 -4
- package/dist/index44.mjs +4 -4
- package/dist/index48.js +1 -1
- package/dist/index48.mjs +1 -1
- package/dist/index49.js +2 -2
- package/dist/index49.mjs +2 -2
- package/dist/index50.js +1 -1
- package/dist/index50.mjs +1 -1
- package/package.json +1 -1
package/dist/index31.mjs
CHANGED
|
@@ -1,52 +1,139 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { HookManager } from './index33.mjs';
|
|
2
|
+
import { SingletonStrategy, TransientStrategy } from './index43.mjs';
|
|
3
|
+
import { DebugLogger } from './index36.mjs';
|
|
4
|
+
import { isClass } from '@assemblerjs/core';
|
|
5
|
+
import { resolveInstanceInjectionTuple } from './index42.mjs';
|
|
6
|
+
import { resolveInjectionTuple } from './index41.mjs';
|
|
7
|
+
import { Injectable } from './index44.mjs';
|
|
2
8
|
|
|
3
|
-
function
|
|
4
|
-
|
|
9
|
+
function a(e) {
|
|
10
|
+
if (e === undefined) return 'undefined';
|
|
11
|
+
if (e === null) return 'null';
|
|
12
|
+
if (typeof e === 'function') {
|
|
13
|
+
if (e.name) return e.name;
|
|
14
|
+
if (e.constructor?.name && e.constructor.name !== 'Function') {
|
|
15
|
+
return e.constructor.name;
|
|
16
|
+
}
|
|
17
|
+
return 'AnonymousFunction';
|
|
18
|
+
}
|
|
19
|
+
if (typeof e === 'string') return e;
|
|
20
|
+
if (typeof e === 'symbol') return e.toString();
|
|
21
|
+
if (typeof e === 'number') return String(e);
|
|
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]';
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
return String(e);
|
|
42
|
+
}
|
|
43
|
+
function f(e) {
|
|
44
|
+
if (isClass(e)) {
|
|
45
|
+
const t = e.prototype && Object.getOwnPropertyNames(e.prototype).length > 1;
|
|
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';
|
|
5
53
|
}
|
|
6
|
-
class
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
54
|
+
class InjectableManager {
|
|
55
|
+
setContexts(e, t) {
|
|
56
|
+
this.privateContext = e;
|
|
57
|
+
this.publicContext = t;
|
|
58
|
+
}
|
|
59
|
+
register(i, o = false) {
|
|
60
|
+
const c = DebugLogger.getInstance();
|
|
61
|
+
const a = o === true ? resolveInstanceInjectionTuple(i) : resolveInjectionTuple(i);
|
|
62
|
+
if (this.has(a.identifier)) {
|
|
63
|
+
const e = `An assemblage is already registered with identifier '${a.identifier.name}'.`;
|
|
64
|
+
c.log('error', 'Duplicate registration', {
|
|
65
|
+
identifier: a.identifier.name,
|
|
66
|
+
error: e
|
|
15
67
|
});
|
|
16
|
-
throw new Error(
|
|
68
|
+
throw new Error(e);
|
|
69
|
+
}
|
|
70
|
+
const f = Injectable.of(a, this.privateContext, this.publicContext);
|
|
71
|
+
c.logRegistration(f);
|
|
72
|
+
this.injectables.set(f.identifier, f);
|
|
73
|
+
if (f.concrete) {
|
|
74
|
+
HookManager.callHook(f.concrete, 'onRegister', this.publicContext, f.configuration);
|
|
17
75
|
}
|
|
18
|
-
|
|
19
|
-
return o;
|
|
76
|
+
return f;
|
|
20
77
|
}
|
|
21
78
|
has(e) {
|
|
22
|
-
return this.
|
|
23
|
-
}
|
|
24
|
-
require(
|
|
25
|
-
if (!this.
|
|
26
|
-
const
|
|
27
|
-
const
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
79
|
+
return this.injectables.has(e);
|
|
80
|
+
}
|
|
81
|
+
require(e, t, n) {
|
|
82
|
+
if (!this.injectables.has(e)) {
|
|
83
|
+
const t = this.resolvingStack.has(e);
|
|
84
|
+
const r = t ? 'Circular dependency detected' : 'Dependency not registered';
|
|
85
|
+
const i = a(e);
|
|
86
|
+
const o = f(e);
|
|
87
|
+
const c = t ? `Circular dependency detected: '${i}' is already being resolved.` : `Dependency '${i}' has not been registered (Class/Service not found in current assemblies).`;
|
|
88
|
+
DebugLogger.getInstance().log('error', r, {
|
|
89
|
+
identifier: i,
|
|
90
|
+
caller: n ? a(n) : 'unknown',
|
|
91
|
+
type: o,
|
|
92
|
+
error: c
|
|
32
93
|
});
|
|
33
|
-
throw new Error(
|
|
94
|
+
throw new Error(c);
|
|
95
|
+
}
|
|
96
|
+
const r = this.injectables.get(e);
|
|
97
|
+
this.resolvingStack.add(r.identifier);
|
|
98
|
+
try {
|
|
99
|
+
if (r.isSingleton) {
|
|
100
|
+
return this.singletonStrategy.resolve(r, t);
|
|
101
|
+
} else {
|
|
102
|
+
return this.transientStrategy.resolve(r, t);
|
|
103
|
+
}
|
|
104
|
+
} finally{
|
|
105
|
+
this.resolvingStack.delete(r.identifier);
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
concrete(e) {
|
|
109
|
+
const t = this.injectables.get(e);
|
|
110
|
+
if (t) return t.concrete;
|
|
111
|
+
return;
|
|
112
|
+
}
|
|
113
|
+
tagged(...e) {
|
|
114
|
+
const t = [];
|
|
115
|
+
for (const n of e){
|
|
116
|
+
for (const [e, r] of this.injectables){
|
|
117
|
+
if (r.tags.includes(n)) t.push(r.build());
|
|
118
|
+
}
|
|
34
119
|
}
|
|
35
|
-
return
|
|
120
|
+
return t;
|
|
36
121
|
}
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
122
|
+
dispose() {
|
|
123
|
+
for (const [e, t] of this.injectables){
|
|
124
|
+
t.dispose();
|
|
40
125
|
}
|
|
41
|
-
this.
|
|
126
|
+
this.resolvingStack.clear();
|
|
42
127
|
}
|
|
43
|
-
|
|
44
|
-
return this.
|
|
128
|
+
get size() {
|
|
129
|
+
return this.injectables.size;
|
|
45
130
|
}
|
|
46
131
|
constructor(){
|
|
47
|
-
this.
|
|
48
|
-
this.
|
|
132
|
+
this.injectables = new Map();
|
|
133
|
+
this.resolvingStack = new Set();
|
|
134
|
+
this.singletonStrategy = new SingletonStrategy();
|
|
135
|
+
this.transientStrategy = new TransientStrategy();
|
|
49
136
|
}
|
|
50
137
|
}
|
|
51
138
|
|
|
52
|
-
export {
|
|
139
|
+
export { InjectableManager };
|
package/dist/index32.js
CHANGED
|
@@ -2,84 +2,55 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
4
4
|
|
|
5
|
-
const
|
|
6
|
-
const debugLogger = require('./index35.js');
|
|
5
|
+
const debugLogger = require('./index36.js');
|
|
7
6
|
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
7
|
+
function t(e) {
|
|
8
|
+
return typeof e === 'symbol' ? 'symbol' : 'string';
|
|
9
|
+
}
|
|
10
|
+
class ObjectManager {
|
|
11
|
+
use(r, o) {
|
|
12
|
+
if (this.has(r)) {
|
|
13
|
+
const o = typeof r === 'symbol' ? r.toString() : String(r);
|
|
14
|
+
const s = `Object/value '${o}' is already registered (cannot register twice).`;
|
|
15
|
+
debugLogger.DebugLogger.getInstance().log('error', 'Duplicate object/value registration', {
|
|
16
|
+
identifier: o,
|
|
17
|
+
type: t(r),
|
|
18
|
+
error: s
|
|
19
|
+
});
|
|
20
|
+
throw new Error(s);
|
|
19
21
|
}
|
|
22
|
+
this.objects.set(r, o);
|
|
23
|
+
return o;
|
|
20
24
|
}
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
25
|
+
has(e) {
|
|
26
|
+
return this.objects.has(e);
|
|
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);
|
|
26
38
|
}
|
|
39
|
+
return this.objects.get(r);
|
|
27
40
|
}
|
|
28
|
-
|
|
29
|
-
this.
|
|
41
|
+
addGlobal(e, t) {
|
|
42
|
+
if (this.globals.has(e)) {
|
|
43
|
+
throw new Error(`Global value with key '${e}' has already been registered.`);
|
|
44
|
+
}
|
|
45
|
+
this.globals.set(e, t);
|
|
30
46
|
}
|
|
31
|
-
|
|
32
|
-
return this.
|
|
47
|
+
global(e) {
|
|
48
|
+
return this.globals.get(e);
|
|
33
49
|
}
|
|
34
50
|
constructor(){
|
|
35
|
-
this.
|
|
51
|
+
this.objects = new Map();
|
|
52
|
+
this.globals = new Map();
|
|
36
53
|
}
|
|
37
54
|
}
|
|
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);
|
|
61
|
-
}
|
|
62
|
-
} else {
|
|
63
|
-
if (r) r();
|
|
64
|
-
t();
|
|
65
|
-
}
|
|
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;
|
|
77
|
-
}
|
|
78
|
-
s.bind(e)(n, a);
|
|
79
|
-
if (r) r();
|
|
80
|
-
} else {
|
|
81
|
-
if (r) r();
|
|
82
|
-
}
|
|
83
|
-
};
|
|
84
55
|
|
|
85
|
-
exports.
|
|
56
|
+
exports.ObjectManager = ObjectManager;
|
package/dist/index32.mjs
CHANGED
|
@@ -1,81 +1,52 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { DebugLogger } from './index35.mjs';
|
|
1
|
+
import { DebugLogger } from './index36.mjs';
|
|
3
2
|
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
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);
|
|
15
17
|
}
|
|
18
|
+
this.objects.set(r, o);
|
|
19
|
+
return o;
|
|
16
20
|
}
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
21
|
+
has(e) {
|
|
22
|
+
return this.objects.has(e);
|
|
23
|
+
}
|
|
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);
|
|
22
34
|
}
|
|
35
|
+
return this.objects.get(r);
|
|
23
36
|
}
|
|
24
|
-
|
|
25
|
-
this.
|
|
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);
|
|
26
42
|
}
|
|
27
|
-
|
|
28
|
-
return this.
|
|
43
|
+
global(e) {
|
|
44
|
+
return this.globals.get(e);
|
|
29
45
|
}
|
|
30
46
|
constructor(){
|
|
31
|
-
this.
|
|
47
|
+
this.objects = new Map();
|
|
48
|
+
this.globals = new Map();
|
|
32
49
|
}
|
|
33
50
|
}
|
|
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);
|
|
57
|
-
}
|
|
58
|
-
} else {
|
|
59
|
-
if (r) r();
|
|
60
|
-
t();
|
|
61
|
-
}
|
|
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;
|
|
73
|
-
}
|
|
74
|
-
s.bind(e)(n, a);
|
|
75
|
-
if (r) r();
|
|
76
|
-
} else {
|
|
77
|
-
if (r) r();
|
|
78
|
-
}
|
|
79
|
-
};
|
|
80
51
|
|
|
81
|
-
export {
|
|
52
|
+
export { ObjectManager };
|
package/dist/index33.js
CHANGED
|
@@ -2,46 +2,84 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
4
4
|
|
|
5
|
-
const
|
|
6
|
-
const debugLogger = require('./
|
|
7
|
-
const schema = require('./index37.js');
|
|
5
|
+
const core = require('@assemblerjs/core');
|
|
6
|
+
const debugLogger = require('./index36.js');
|
|
8
7
|
|
|
9
|
-
class
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
8
|
+
class HookManager {
|
|
9
|
+
prepareInitHook(o, t) {
|
|
10
|
+
this.initCache.push({
|
|
11
|
+
instance: o,
|
|
12
|
+
configuration: t
|
|
13
|
+
});
|
|
14
|
+
return this.initCache;
|
|
15
|
+
}
|
|
16
|
+
callInitHooks(o) {
|
|
17
|
+
for (const t of this.initCache){
|
|
18
|
+
HookManager.callHookImmediate(t.instance, 'onInit', o, t.configuration);
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
callInitedHooks(o) {
|
|
22
|
+
for (const t of [
|
|
23
|
+
...this.initCache
|
|
24
|
+
].reverse()){
|
|
25
|
+
HookManager.callHookImmediate(t.instance, 'onInited', o, t.configuration);
|
|
24
26
|
}
|
|
25
|
-
const h = this.assembler.hookManager.getCache().indexOf(l);
|
|
26
|
-
this.assembler.hookManager.getCache().splice(h, 1);
|
|
27
|
-
n.logPhaseStart('hooks:onInit');
|
|
28
|
-
this.assembler.hookManager.callInitHooks(this.assembler.publicContext);
|
|
29
|
-
const c = a ? {
|
|
30
|
-
...r.configuration,
|
|
31
|
-
...a
|
|
32
|
-
} : r.configuration;
|
|
33
|
-
hookManager.HookManager.callHookImmediate(i, 'onInit', this.assembler.publicContext, c);
|
|
34
|
-
n.logPhaseEnd('hooks:onInit');
|
|
35
|
-
n.logPhaseStart('hooks:onInited');
|
|
36
|
-
this.assembler.hookManager.callInitedHooks(this.assembler.publicContext);
|
|
37
|
-
hookManager.HookManager.callHookImmediate(i, 'onInited', this.assembler.publicContext, c);
|
|
38
|
-
n.logPhaseEnd('hooks:onInited');
|
|
39
|
-
this.assembler.hookManager.clearCache();
|
|
40
|
-
return i;
|
|
41
27
|
}
|
|
42
|
-
|
|
43
|
-
this.
|
|
28
|
+
clearCache() {
|
|
29
|
+
this.initCache.length = 0;
|
|
30
|
+
}
|
|
31
|
+
getCache() {
|
|
32
|
+
return this.initCache;
|
|
33
|
+
}
|
|
34
|
+
constructor(){
|
|
35
|
+
this.initCache = [];
|
|
44
36
|
}
|
|
45
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);
|
|
61
|
+
}
|
|
62
|
+
} else {
|
|
63
|
+
if (r) r();
|
|
64
|
+
t();
|
|
65
|
+
}
|
|
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;
|
|
77
|
+
}
|
|
78
|
+
s.bind(e)(n, a);
|
|
79
|
+
if (r) r();
|
|
80
|
+
} else {
|
|
81
|
+
if (r) r();
|
|
82
|
+
}
|
|
83
|
+
};
|
|
46
84
|
|
|
47
|
-
exports.
|
|
85
|
+
exports.HookManager = HookManager;
|
package/dist/index33.mjs
CHANGED
|
@@ -1,43 +1,81 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { DebugLogger } from './
|
|
3
|
-
import { setDefinitionValue } from './index37.mjs';
|
|
1
|
+
import { isAsync } from '@assemblerjs/core';
|
|
2
|
+
import { DebugLogger } from './index36.mjs';
|
|
4
3
|
|
|
5
|
-
class
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
4
|
+
class HookManager {
|
|
5
|
+
prepareInitHook(o, t) {
|
|
6
|
+
this.initCache.push({
|
|
7
|
+
instance: o,
|
|
8
|
+
configuration: t
|
|
9
|
+
});
|
|
10
|
+
return this.initCache;
|
|
11
|
+
}
|
|
12
|
+
callInitHooks(o) {
|
|
13
|
+
for (const t of this.initCache){
|
|
14
|
+
HookManager.callHookImmediate(t.instance, 'onInit', o, t.configuration);
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
callInitedHooks(o) {
|
|
18
|
+
for (const t of [
|
|
19
|
+
...this.initCache
|
|
20
|
+
].reverse()){
|
|
21
|
+
HookManager.callHookImmediate(t.instance, 'onInited', o, t.configuration);
|
|
20
22
|
}
|
|
21
|
-
const h = this.assembler.hookManager.getCache().indexOf(l);
|
|
22
|
-
this.assembler.hookManager.getCache().splice(h, 1);
|
|
23
|
-
n.logPhaseStart('hooks:onInit');
|
|
24
|
-
this.assembler.hookManager.callInitHooks(this.assembler.publicContext);
|
|
25
|
-
const c = a ? {
|
|
26
|
-
...r.configuration,
|
|
27
|
-
...a
|
|
28
|
-
} : r.configuration;
|
|
29
|
-
HookManager.callHookImmediate(i, 'onInit', this.assembler.publicContext, c);
|
|
30
|
-
n.logPhaseEnd('hooks:onInit');
|
|
31
|
-
n.logPhaseStart('hooks:onInited');
|
|
32
|
-
this.assembler.hookManager.callInitedHooks(this.assembler.publicContext);
|
|
33
|
-
HookManager.callHookImmediate(i, 'onInited', this.assembler.publicContext, c);
|
|
34
|
-
n.logPhaseEnd('hooks:onInited');
|
|
35
|
-
this.assembler.hookManager.clearCache();
|
|
36
|
-
return i;
|
|
37
23
|
}
|
|
38
|
-
|
|
39
|
-
this.
|
|
24
|
+
clearCache() {
|
|
25
|
+
this.initCache.length = 0;
|
|
26
|
+
}
|
|
27
|
+
getCache() {
|
|
28
|
+
return this.initCache;
|
|
29
|
+
}
|
|
30
|
+
constructor(){
|
|
31
|
+
this.initCache = [];
|
|
40
32
|
}
|
|
41
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);
|
|
57
|
+
}
|
|
58
|
+
} else {
|
|
59
|
+
if (r) r();
|
|
60
|
+
t();
|
|
61
|
+
}
|
|
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;
|
|
73
|
+
}
|
|
74
|
+
s.bind(e)(n, a);
|
|
75
|
+
if (r) r();
|
|
76
|
+
} else {
|
|
77
|
+
if (r) r();
|
|
78
|
+
}
|
|
79
|
+
};
|
|
42
80
|
|
|
43
|
-
export {
|
|
81
|
+
export { HookManager };
|