assemblerjs 1.1.18 → 1.1.19
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 -151
- package/dist/index30.mjs +98 -150
- package/dist/index31.js +99 -44
- package/dist/index31.mjs +99 -44
- package/dist/index32.js +23 -74
- package/dist/index32.mjs +23 -74
- package/dist/index33.js +154 -51
- package/dist/index33.mjs +153 -51
- package/dist/index34.js +47 -28
- package/dist/index34.mjs +47 -28
- package/dist/index35.js +65 -152
- package/dist/index35.mjs +65 -152
- package/dist/index36.js +50 -58
- package/dist/index36.mjs +50 -58
- package/dist/index37.js +32 -18
- package/dist/index37.mjs +32 -15
- package/dist/index38.js +158 -99
- package/dist/index38.mjs +158 -97
- package/dist/index39.js +57 -16
- package/dist/index39.mjs +57 -16
- package/dist/index4.js +7 -7
- package/dist/index4.mjs +7 -7
- package/dist/index40.js +35 -100
- package/dist/index40.mjs +34 -100
- package/dist/index41.js +18 -24
- package/dist/index41.mjs +18 -24
- package/dist/index42.js +49 -29
- package/dist/index42.mjs +49 -28
- package/dist/index44.js +29 -49
- package/dist/index44.mjs +28 -49
- package/dist/index45.js +4 -4
- package/dist/index45.mjs +4 -4
- package/dist/index49.js +1 -1
- package/dist/index49.mjs +1 -1
- package/dist/index50.js +2 -2
- package/dist/index50.mjs +2 -2
- package/dist/index51.js +1 -1
- package/dist/index51.mjs +1 -1
- package/package.json +1 -1
package/dist/index30.js
CHANGED
|
@@ -2,163 +2,112 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
4
4
|
|
|
5
|
-
const
|
|
6
|
-
const
|
|
7
|
-
const
|
|
8
|
-
const core = require('@assemblerjs/core');
|
|
9
|
-
const use = require('./index43.js');
|
|
10
|
-
const inject = require('./index44.js');
|
|
11
|
-
const injectable = require('./index45.js');
|
|
5
|
+
const constants = require('./index28.js');
|
|
6
|
+
const reflection = require('./index29.js');
|
|
7
|
+
const helpers = require('./index3.js');
|
|
12
8
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
9
|
+
const n = {
|
|
10
|
+
singleton: {
|
|
11
|
+
test: (r)=>typeof r === 'boolean' || typeof r === 'undefined',
|
|
12
|
+
throw: ()=>{
|
|
13
|
+
throw new Error(`'singleton' property must be of type 'boolean' or 'undefined'.`);
|
|
14
|
+
},
|
|
15
|
+
transform: (r)=>{
|
|
16
|
+
return typeof r === 'undefined' ? true : r ? true : false;
|
|
20
17
|
}
|
|
21
|
-
|
|
18
|
+
},
|
|
19
|
+
events: {
|
|
20
|
+
test: (r)=>typeof r === 'undefined' || Array.isArray(r) && r.every((r)=>typeof r === 'string'),
|
|
21
|
+
throw: ()=>{
|
|
22
|
+
throw new Error(`'events' property must be an array of strings or 'undefined'.`);
|
|
23
|
+
},
|
|
24
|
+
transform: (r)=>r
|
|
25
|
+
},
|
|
26
|
+
inject: {
|
|
27
|
+
test: (r)=>typeof r === 'undefined' || Array.isArray(r) && r.every((r)=>Array.isArray(r) && r.length >= 1 && r.length <= 3),
|
|
28
|
+
throw: ()=>{
|
|
29
|
+
throw new Error(`'inject' property must be an array of tuples of length 1, 2 or 3.`);
|
|
30
|
+
},
|
|
31
|
+
transform: (r)=>r
|
|
32
|
+
},
|
|
33
|
+
use: {
|
|
34
|
+
test: (r)=>typeof r === 'undefined' || Array.isArray(r) && r.every((r)=>{
|
|
35
|
+
if (!Array.isArray(r) || r.length !== 2) {
|
|
36
|
+
return false;
|
|
37
|
+
}
|
|
38
|
+
const e = r[1];
|
|
39
|
+
return typeof e !== 'undefined';
|
|
40
|
+
}),
|
|
41
|
+
throw: ()=>{
|
|
42
|
+
throw new Error(`'use' property must be an array of tuples of length 2 with [identifier, instance | factory].`);
|
|
43
|
+
},
|
|
44
|
+
transform: (r)=>r
|
|
45
|
+
},
|
|
46
|
+
engage: {
|
|
47
|
+
test: (r)=>typeof r === 'undefined' || Array.isArray(r) && r.every((r)=>Array.isArray(r) && r.length >= 1 && r.length <= 3),
|
|
48
|
+
throw: ()=>{
|
|
49
|
+
throw new Error(`'engage' property must be an array of tuples of length 1, 2 or 3.`);
|
|
50
|
+
},
|
|
51
|
+
transform: (r)=>r
|
|
52
|
+
},
|
|
53
|
+
tags: {
|
|
54
|
+
test: (r)=>typeof r === 'undefined' || typeof r === 'string' || Array.isArray(r) && r.every((r)=>typeof r === 'string'),
|
|
55
|
+
throw: ()=>{
|
|
56
|
+
throw new Error(`'tags' property must be a string or an array of strings.`);
|
|
57
|
+
},
|
|
58
|
+
transform: (r)=>typeof r === 'string' ? [
|
|
59
|
+
r
|
|
60
|
+
] : r
|
|
61
|
+
},
|
|
62
|
+
metadata: {
|
|
63
|
+
test: (r)=>(typeof r === 'object' || typeof r === 'undefined') && !Array.isArray(r),
|
|
64
|
+
throw: ()=>{
|
|
65
|
+
throw new Error(`'metadata' property must be of type 'object' or 'undefined'.`);
|
|
66
|
+
},
|
|
67
|
+
transform: (r)=>r
|
|
68
|
+
},
|
|
69
|
+
global: {
|
|
70
|
+
test: (r)=>(typeof r === 'object' || typeof r === 'undefined') && !Array.isArray(r),
|
|
71
|
+
throw: ()=>{
|
|
72
|
+
throw new Error(`'global' property must be of type 'object' or 'undefined'.`);
|
|
73
|
+
},
|
|
74
|
+
transform: (r)=>r
|
|
22
75
|
}
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
76
|
+
};
|
|
77
|
+
const validateDefinition = (r)=>{
|
|
78
|
+
const e = {
|
|
79
|
+
...r
|
|
80
|
+
};
|
|
81
|
+
for(const r in e){
|
|
82
|
+
if (!Object.keys(n).includes(r)) {
|
|
83
|
+
throw new Error(`Property '${r}' is not a valid assemblage definition property.`);
|
|
30
84
|
}
|
|
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]';
|
|
43
|
-
}
|
|
44
|
-
}
|
|
45
|
-
return String(e);
|
|
46
|
-
}
|
|
47
|
-
function c(e) {
|
|
48
|
-
if (core.isClass(e)) {
|
|
49
|
-
const t = e.prototype && Object.getOwnPropertyNames(e.prototype).length > 1;
|
|
50
|
-
return t ? 'class' : 'class';
|
|
51
85
|
}
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
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);
|
|
79
|
-
}
|
|
80
|
-
return f;
|
|
81
|
-
}
|
|
82
|
-
has(e) {
|
|
83
|
-
return this.injectables.has(e);
|
|
84
|
-
}
|
|
85
|
-
require(e, t, n) {
|
|
86
|
-
if (!this.injectables.has(e)) {
|
|
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);
|
|
86
|
+
for(const r in n){
|
|
87
|
+
const t = n[r].test;
|
|
88
|
+
const o = n[r].throw;
|
|
89
|
+
const s = n[r].transform;
|
|
90
|
+
if (!t(e[r])) {
|
|
91
|
+
o();
|
|
124
92
|
}
|
|
93
|
+
e[r] = s(e[r]);
|
|
125
94
|
}
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
tagged(...e) {
|
|
132
|
-
const t = [];
|
|
133
|
-
for (const n of e){
|
|
134
|
-
for (const [e, r] of this.injectables){
|
|
135
|
-
if (r.tags.includes(n)) t.push(r.build());
|
|
136
|
-
}
|
|
137
|
-
}
|
|
138
|
-
return t;
|
|
139
|
-
}
|
|
140
|
-
dispose() {
|
|
141
|
-
for (const [e, t] of this.injectables){
|
|
142
|
-
t.dispose();
|
|
143
|
-
}
|
|
144
|
-
this.resolvingStack.clear();
|
|
145
|
-
}
|
|
146
|
-
get size() {
|
|
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();
|
|
95
|
+
return e;
|
|
96
|
+
};
|
|
97
|
+
const getDefinition = (e)=>{
|
|
98
|
+
if (!helpers.isAssemblage(e)) {
|
|
99
|
+
throw new Error(`Class '${e.name}' is not an assemblage or transversal.`);
|
|
160
100
|
}
|
|
161
|
-
|
|
101
|
+
return reflection.getOwnCustomMetadata(constants.ReflectValue.AssemblageDefinition, e);
|
|
102
|
+
};
|
|
103
|
+
const setDefinitionValue = (t, o, n)=>{
|
|
104
|
+
const s = getDefinition(n);
|
|
105
|
+
s[t] = o;
|
|
106
|
+
const a = validateDefinition(s);
|
|
107
|
+
reflection.defineCustomMetadata(constants.ReflectValue.AssemblageDefinition, a, n);
|
|
108
|
+
return a;
|
|
109
|
+
};
|
|
162
110
|
|
|
163
|
-
exports.
|
|
164
|
-
exports.
|
|
111
|
+
exports.getDefinition = getDefinition;
|
|
112
|
+
exports.setDefinitionValue = setDefinitionValue;
|
|
113
|
+
exports.validateDefinition = validateDefinition;
|
package/dist/index30.mjs
CHANGED
|
@@ -1,159 +1,107 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import { isClass } from '@assemblerjs/core';
|
|
5
|
-
import { resolveInstanceInjectionTuple } from './index43.mjs';
|
|
6
|
-
import { resolveInjectionTuple } from './index44.mjs';
|
|
7
|
-
import { Injectable } from './index45.mjs';
|
|
1
|
+
import { ReflectValue } from './index28.mjs';
|
|
2
|
+
import { getOwnCustomMetadata, defineCustomMetadata } from './index29.mjs';
|
|
3
|
+
import { isAssemblage } from './index3.mjs';
|
|
8
4
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
5
|
+
const n = {
|
|
6
|
+
singleton: {
|
|
7
|
+
test: (r)=>typeof r === 'boolean' || typeof r === 'undefined',
|
|
8
|
+
throw: ()=>{
|
|
9
|
+
throw new Error(`'singleton' property must be of type 'boolean' or 'undefined'.`);
|
|
10
|
+
},
|
|
11
|
+
transform: (r)=>{
|
|
12
|
+
return typeof r === 'undefined' ? true : r ? true : false;
|
|
16
13
|
}
|
|
17
|
-
|
|
14
|
+
},
|
|
15
|
+
events: {
|
|
16
|
+
test: (r)=>typeof r === 'undefined' || Array.isArray(r) && r.every((r)=>typeof r === 'string'),
|
|
17
|
+
throw: ()=>{
|
|
18
|
+
throw new Error(`'events' property must be an array of strings or 'undefined'.`);
|
|
19
|
+
},
|
|
20
|
+
transform: (r)=>r
|
|
21
|
+
},
|
|
22
|
+
inject: {
|
|
23
|
+
test: (r)=>typeof r === 'undefined' || Array.isArray(r) && r.every((r)=>Array.isArray(r) && r.length >= 1 && r.length <= 3),
|
|
24
|
+
throw: ()=>{
|
|
25
|
+
throw new Error(`'inject' property must be an array of tuples of length 1, 2 or 3.`);
|
|
26
|
+
},
|
|
27
|
+
transform: (r)=>r
|
|
28
|
+
},
|
|
29
|
+
use: {
|
|
30
|
+
test: (r)=>typeof r === 'undefined' || Array.isArray(r) && r.every((r)=>{
|
|
31
|
+
if (!Array.isArray(r) || r.length !== 2) {
|
|
32
|
+
return false;
|
|
33
|
+
}
|
|
34
|
+
const e = r[1];
|
|
35
|
+
return typeof e !== 'undefined';
|
|
36
|
+
}),
|
|
37
|
+
throw: ()=>{
|
|
38
|
+
throw new Error(`'use' property must be an array of tuples of length 2 with [identifier, instance | factory].`);
|
|
39
|
+
},
|
|
40
|
+
transform: (r)=>r
|
|
41
|
+
},
|
|
42
|
+
engage: {
|
|
43
|
+
test: (r)=>typeof r === 'undefined' || Array.isArray(r) && r.every((r)=>Array.isArray(r) && r.length >= 1 && r.length <= 3),
|
|
44
|
+
throw: ()=>{
|
|
45
|
+
throw new Error(`'engage' property must be an array of tuples of length 1, 2 or 3.`);
|
|
46
|
+
},
|
|
47
|
+
transform: (r)=>r
|
|
48
|
+
},
|
|
49
|
+
tags: {
|
|
50
|
+
test: (r)=>typeof r === 'undefined' || typeof r === 'string' || Array.isArray(r) && r.every((r)=>typeof r === 'string'),
|
|
51
|
+
throw: ()=>{
|
|
52
|
+
throw new Error(`'tags' property must be a string or an array of strings.`);
|
|
53
|
+
},
|
|
54
|
+
transform: (r)=>typeof r === 'string' ? [
|
|
55
|
+
r
|
|
56
|
+
] : r
|
|
57
|
+
},
|
|
58
|
+
metadata: {
|
|
59
|
+
test: (r)=>(typeof r === 'object' || typeof r === 'undefined') && !Array.isArray(r),
|
|
60
|
+
throw: ()=>{
|
|
61
|
+
throw new Error(`'metadata' property must be of type 'object' or 'undefined'.`);
|
|
62
|
+
},
|
|
63
|
+
transform: (r)=>r
|
|
64
|
+
},
|
|
65
|
+
global: {
|
|
66
|
+
test: (r)=>(typeof r === 'object' || typeof r === 'undefined') && !Array.isArray(r),
|
|
67
|
+
throw: ()=>{
|
|
68
|
+
throw new Error(`'global' property must be of type 'object' or 'undefined'.`);
|
|
69
|
+
},
|
|
70
|
+
transform: (r)=>r
|
|
18
71
|
}
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
72
|
+
};
|
|
73
|
+
const validateDefinition = (r)=>{
|
|
74
|
+
const e = {
|
|
75
|
+
...r
|
|
76
|
+
};
|
|
77
|
+
for(const r in e){
|
|
78
|
+
if (!Object.keys(n).includes(r)) {
|
|
79
|
+
throw new Error(`Property '${r}' is not a valid assemblage definition property.`);
|
|
26
80
|
}
|
|
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 c(e) {
|
|
44
|
-
if (isClass(e)) {
|
|
45
|
-
const t = e.prototype && Object.getOwnPropertyNames(e.prototype).length > 1;
|
|
46
|
-
return t ? 'class' : 'class';
|
|
47
81
|
}
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
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);
|
|
75
|
-
}
|
|
76
|
-
return f;
|
|
77
|
-
}
|
|
78
|
-
has(e) {
|
|
79
|
-
return this.injectables.has(e);
|
|
80
|
-
}
|
|
81
|
-
require(e, t, n) {
|
|
82
|
-
if (!this.injectables.has(e)) {
|
|
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);
|
|
82
|
+
for(const r in n){
|
|
83
|
+
const t = n[r].test;
|
|
84
|
+
const o = n[r].throw;
|
|
85
|
+
const s = n[r].transform;
|
|
86
|
+
if (!t(e[r])) {
|
|
87
|
+
o();
|
|
120
88
|
}
|
|
89
|
+
e[r] = s(e[r]);
|
|
121
90
|
}
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
tagged(...e) {
|
|
128
|
-
const t = [];
|
|
129
|
-
for (const n of e){
|
|
130
|
-
for (const [e, r] of this.injectables){
|
|
131
|
-
if (r.tags.includes(n)) t.push(r.build());
|
|
132
|
-
}
|
|
133
|
-
}
|
|
134
|
-
return t;
|
|
135
|
-
}
|
|
136
|
-
dispose() {
|
|
137
|
-
for (const [e, t] of this.injectables){
|
|
138
|
-
t.dispose();
|
|
139
|
-
}
|
|
140
|
-
this.resolvingStack.clear();
|
|
141
|
-
}
|
|
142
|
-
get size() {
|
|
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();
|
|
91
|
+
return e;
|
|
92
|
+
};
|
|
93
|
+
const getDefinition = (e)=>{
|
|
94
|
+
if (!isAssemblage(e)) {
|
|
95
|
+
throw new Error(`Class '${e.name}' is not an assemblage or transversal.`);
|
|
156
96
|
}
|
|
157
|
-
|
|
97
|
+
return getOwnCustomMetadata(ReflectValue.AssemblageDefinition, e);
|
|
98
|
+
};
|
|
99
|
+
const setDefinitionValue = (t, o, n)=>{
|
|
100
|
+
const s = getDefinition(n);
|
|
101
|
+
s[t] = o;
|
|
102
|
+
const a = validateDefinition(s);
|
|
103
|
+
defineCustomMetadata(ReflectValue.AssemblageDefinition, a, n);
|
|
104
|
+
return a;
|
|
105
|
+
};
|
|
158
106
|
|
|
159
|
-
export {
|
|
107
|
+
export { getDefinition, setDefinitionValue, validateDefinition };
|
package/dist/index31.js
CHANGED
|
@@ -2,55 +2,110 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
4
4
|
|
|
5
|
-
const
|
|
5
|
+
const transversalManager = require('./index13.js');
|
|
6
|
+
const affect = require('./index12.js');
|
|
6
7
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
const
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
8
|
+
class TransversalWeaver {
|
|
9
|
+
static weave(n, r, o) {
|
|
10
|
+
const c = transversalManager.TransversalManager.getInstance(o);
|
|
11
|
+
const s = c.getAspectsForTarget(r);
|
|
12
|
+
const a = Object.getPrototypeOf(n);
|
|
13
|
+
const f = Object.getOwnPropertyNames(a).some((t)=>{
|
|
14
|
+
if (t === 'constructor') return false;
|
|
15
|
+
const n = Object.getOwnPropertyDescriptor(a, t);
|
|
16
|
+
if (!n) return false;
|
|
17
|
+
const r = n.value && typeof n.value === 'function';
|
|
18
|
+
const o = n.get && typeof n.get === 'function';
|
|
19
|
+
if (!r && !o) return false;
|
|
20
|
+
const c = affect.getAffectedMethods(a, t);
|
|
21
|
+
return c.length > 0;
|
|
22
|
+
});
|
|
23
|
+
if (s.length === 0 && !f) {
|
|
24
|
+
return n;
|
|
21
25
|
}
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
26
|
+
return new Proxy(n, {
|
|
27
|
+
get (t, e, n) {
|
|
28
|
+
const r = Reflect.get(t, e, n);
|
|
29
|
+
if (typeof r !== 'function') {
|
|
30
|
+
return r;
|
|
31
|
+
}
|
|
32
|
+
return function(...n) {
|
|
33
|
+
const o = String(e);
|
|
34
|
+
const a = {
|
|
35
|
+
target: t,
|
|
36
|
+
methodName: o,
|
|
37
|
+
args: n
|
|
38
|
+
};
|
|
39
|
+
const f = c.getAdvicesForJoinPoint(a, s, t, e);
|
|
40
|
+
return TransversalWeaver.executeAdviceChain(f, r, t, n, a);
|
|
41
|
+
};
|
|
42
|
+
}
|
|
43
|
+
});
|
|
27
44
|
}
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
45
|
+
static executeAdviceChain(t, e, n, r, o) {
|
|
46
|
+
const c = t.filter((t)=>t.type === 'before');
|
|
47
|
+
const s = t.filter((t)=>t.type === 'around');
|
|
48
|
+
const a = t.filter((t)=>t.type === 'after');
|
|
49
|
+
try {
|
|
50
|
+
for (const t of c){
|
|
51
|
+
const e = {
|
|
52
|
+
...o,
|
|
53
|
+
config: t.config
|
|
54
|
+
};
|
|
55
|
+
t.method.call(t.transversalInstance, e);
|
|
56
|
+
}
|
|
57
|
+
let t;
|
|
58
|
+
if (s.length > 0) {
|
|
59
|
+
t = this.buildAroundChain(s, e, n, r, o);
|
|
60
|
+
} else {
|
|
61
|
+
t = e.apply(n, r);
|
|
62
|
+
}
|
|
63
|
+
if (t instanceof Promise) {
|
|
64
|
+
return t.then((t)=>{
|
|
65
|
+
for (const e of a){
|
|
66
|
+
const n = {
|
|
67
|
+
...o,
|
|
68
|
+
result: t
|
|
69
|
+
};
|
|
70
|
+
e.method.call(e.transversalInstance, n);
|
|
71
|
+
}
|
|
72
|
+
return t;
|
|
73
|
+
}).catch((t)=>{
|
|
74
|
+
o.error = t;
|
|
75
|
+
throw t;
|
|
76
|
+
});
|
|
77
|
+
}
|
|
78
|
+
for (const e of a){
|
|
79
|
+
const n = {
|
|
80
|
+
...o,
|
|
81
|
+
result: t,
|
|
82
|
+
config: e.config
|
|
83
|
+
};
|
|
84
|
+
e.method.call(e.transversalInstance, n);
|
|
85
|
+
}
|
|
86
|
+
return t;
|
|
87
|
+
} catch (t) {
|
|
88
|
+
o.error = t;
|
|
89
|
+
throw t;
|
|
38
90
|
}
|
|
39
|
-
return this.objects.get(r);
|
|
40
|
-
}
|
|
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);
|
|
46
|
-
}
|
|
47
|
-
global(e) {
|
|
48
|
-
return this.globals.get(e);
|
|
49
91
|
}
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
92
|
+
static buildAroundChain(t, e, n, r, o) {
|
|
93
|
+
let c = 0;
|
|
94
|
+
const s = ()=>{
|
|
95
|
+
if (c < t.length) {
|
|
96
|
+
const e = t[c++];
|
|
97
|
+
const n = {
|
|
98
|
+
...o,
|
|
99
|
+
proceed: s,
|
|
100
|
+
config: e.config
|
|
101
|
+
};
|
|
102
|
+
return e.method.call(e.transversalInstance, n);
|
|
103
|
+
} else {
|
|
104
|
+
return e.apply(n, r);
|
|
105
|
+
}
|
|
106
|
+
};
|
|
107
|
+
return s();
|
|
53
108
|
}
|
|
54
109
|
}
|
|
55
110
|
|
|
56
|
-
exports.
|
|
111
|
+
exports.TransversalWeaver = TransversalWeaver;
|