-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
604 lines (577 loc) · 15.4 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
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
//@ts-check
const { performance } = require("perf_hooks")
const crypto = require("crypto")
const { EventEmitter } = require("events")
const AsyncStatus = require("./asyncstatus")
const EXECUTION_ID = "_executionId"
const META_DEPENDENCY = "_meta"
const GLOBAL_DEFAULT_CONTEXT = "_sistemaGlobalDefaultContext"
/**
* Enum for Dependency status
* @readonly
* @enum {string}
*/
const DEPENDENCY_STATUS = {
READY: "ready",
SHUTDOWN: "shutdown",
}
/**
* Enum context events
* @readonly
* @enum {string}
*/
const CONTEXT_EVENTS = {
SUCCESS_RUN: "successRun",
FAIL_RUN: "failRun",
SUCCESS_SHUTDOWN: "successShutdown",
FAIL_SHUTDOWN: "failShutdown",
SUCCESS_RESET: "successReset",
FAIL_RESET: "failReset",
}
/**
* @param {Array<Dependency|ValueDependency>} depsOrValueDeps
* @returns {Array<Dependency>}
*/
function filterDependency(depsOrValueDeps) {
const deps = []
for (const d of depsOrValueDeps) {
if (d instanceof Dependency) {
deps.push(d)
}
}
return deps
}
/**
* @param {string|Dependency|Symbol} d
* @returns {Dependency|ValueDependency}
*/
function getDependencyOrValueDependency(d) {
if (d instanceof Dependency) {
return d
} else if (typeof d === "string" || typeof d === "symbol") {
return new ValueDependency(d)
} else {
throw new Error("A function can depend on a dependency or a string/symbol")
}
}
/**
* ValueDependency is a fake dependency that is expressed as "string"
* it throws an error when executed because it should always be passed
* as parameter
* @package
*/
class ValueDependency {
/**
* @param {string|Symbol} name
*/
constructor(name) {
this.id = name
}
/**
* @package
*/
getValue() {
throw new Error(`Missing argument: ${this.id}`)
}
/**
* @return {Array<Dependency|ValueDependency>} name
*/
deps() {
return []
}
}
/**
* this wraps a function adding extra features:
* - dependencies that needs to be executed before in order to execute the function
* - a way to shut down this function: disable its execution and ensure is no longer running
*/
class Dependency {
/**
* Create a dependency object
* @param {string | undefined} [name] - A description of the dependency
*/
constructor(name) {
/**
* @type {Array<Dependency|ValueDependency>}
*/
this.edgesAndValues = []
this.inverseEdges = new Set()
this.id = this
this.name = name
this._func = (/** @type {any} */ ..._args) => {}
this.contextItems = new Set()
this.startedFunctions = new Set()
this.status = new AsyncStatus(DEPENDENCY_STATUS.READY)
}
/**
* Invoked during the execution to get the list of dependencies
* @package
* @return {Array<Dependency|ValueDependency>}
*/
deps() {
return this.edgesAndValues
}
/**
* Executes the function wrapping it in a promise
* @package
* @param {any[]} args
* @return {Promise<any>}
*/
async getValue(...args) {
const status = await this.status.get()
if (status === DEPENDENCY_STATUS.SHUTDOWN) {
return Promise.reject(new Error("The dependency is now shutdown"))
}
const outputPromise = Promise.resolve().then(() => this._func(...args))
this.startedFunctions.add(outputPromise)
return outputPromise
.then((value) => {
this.startedFunctions.delete(outputPromise)
return value
})
.catch((err) => {
this.startedFunctions.delete(outputPromise)
throw err
})
}
/**
* Returns type and description of the dependency
* @return {string}
*/
toString() {
return `${this.constructor.name} ${this.name}`
}
/**
* Returns all dependencies, except the parameters
* @return {Array<Dependency>}
*/
getEdges() {
return filterDependency(this.edgesAndValues)
}
/**
* It returns a list with the dependencies connected
* @return {Array<Dependency>}
*/
getAdjacencyList() {
return getAdjacencyList(this)
}
/**
* Returns all dependents
* @return {Array<Dependency>}
*/
getInverseEdges() {
return Array.from(this.inverseEdges)
}
/**
* Run a graph of dependencies in the correct order
* The dependencies are executed at most once
* @param {Object} [params]
* @param {Context} [context]
* @return {Promise<any>}
*/
run(params, context) {
return run(this, params, context)
}
/**
* Dependencies can be listed here
* A string will be used as parameter that
* MUST be passed in the run method
* @param {(Dependency|string|Symbol)[]} deps
* @return {this}
*/
dependsOn(...deps) {
this.edgesAndValues = deps.map(getDependencyOrValueDependency)
this.getEdges().forEach((d) => {
d.inverseEdges.add(this)
})
return this
}
/**
* Add function that provides the dependency
* @param {(...args: any[]) => any} func
* @return {this}
*/
provides(func) {
this._func = func
return this
}
/**
* Shutdown or reset
* @package
* @param {string} newStatus
* @return {Promise<boolean>}
*/
async _shutdownOrReset(newStatus) {
const currentStatus = await this.status.get()
if (newStatus === DEPENDENCY_STATUS.SHUTDOWN) {
if (currentStatus === DEPENDENCY_STATUS.SHUTDOWN) {
return Promise.resolve(false)
}
// cannot shutdown if some context is still using this dependency
if (this.contextItems.size !== 0) {
return Promise.resolve(false)
}
}
return this.status.change(
newStatus,
Promise.allSettled(this.startedFunctions).then(() => true)
)
}
/**
* @package
* It shuts down the dependency and returns true if shutdown is executed
* @return {Promise<boolean>}
*/
async _shutdown() {
return this._shutdownOrReset(DEPENDENCY_STATUS.SHUTDOWN)
}
/**
* It reset the dependency
* @return {Promise<boolean>}
*/
async reset() {
return this._shutdownOrReset(DEPENDENCY_STATUS.READY)
}
}
/**
* This dependency is returned by a function, but its results is memoized and reused.
* For example a connection to a database.
*/
class ResourceDependency extends Dependency {
/**
* Create a ResourceDependency object
* @param {string | undefined} [name] - A description of the dependency
*/
constructor(name) {
super(name)
this.memo = undefined
this.stopFunc = () => {}
}
/**
* Execute a dependency and memoizes it
* @package
* @param {any[]} args
* @return {Promise<any>}
*/
async getValue(...args) {
if (this.memo != null) {
return this.memo
}
const p = super.getValue(...args).catch((err) => {
this.memo = undefined
throw err
})
this.memo = p
return p
}
/**
* Add a function that is used to shutdown the dependency
* @param {() => any|Promise<any>} func
* @return {this}
*/
disposes(func) {
this.stopFunc = func
return this
}
/**
* Shutdown or reset
* @param {string} newStatus
* @return {Promise<boolean>}
*/
async _shutdownOrReset(newStatus) {
const currentStatus = await this.status.get()
if (newStatus === DEPENDENCY_STATUS.SHUTDOWN) {
if (currentStatus === DEPENDENCY_STATUS.SHUTDOWN) {
return Promise.resolve(false)
}
// cannot shutdown if some context is still using this dependency
if (this.contextItems.size !== 0) {
return Promise.resolve(false)
}
}
// cannot shutdown/reset if this ResourceDependency never started
if (this.memo == null) {
return this.status.change(newStatus, Promise.resolve(false))
}
this.memo = undefined
return this.status.change(
newStatus,
Promise.allSettled(this.startedFunctions)
.then(() => this.stopFunc())
.then(() => true)
)
}
}
/**
* Utility function to convert parameters in a Map
* @param {Object<string, any>|Map<string|Dependency, any>|Iterable<[string|Dependency, any]>} obj
*/
function paramsToMap(obj) {
if (obj instanceof Map) {
return obj // warning: if it is a Map is intentionally mutated!
}
if (Array.isArray(obj)) {
return new Map(obj) // I consider obj to be an array of key value pairs
}
if (typeof obj === "object") {
return new Map(Object.entries(obj))
}
throw new Error(
"Must be either a Map, an array of key/value pairs or an object"
)
}
/**
* A context is used to keep track of executed dependencies
* so that can be shutdown all at once. It also helps observability
* allowing to keep track of execution and failures
*/
class Context extends EventEmitter {
/**
* @param {string | undefined} [name] - A description of the context
*/
constructor(name) {
super()
this.name = name
this.startedDependencies = new Set()
}
/**
* It returns a list with the dependencies connected
* @return {Array<Dependency>}
*/
getAdjacencyList() {
return getAdjacencyList(Array.from(this.startedDependencies))
}
/**
* @package
* @param {Dependency} dep
*/
add(dep) {
this.startedDependencies.add(dep)
dep.contextItems.add(this)
}
/**
* @package
* @param {Dependency} dep
*/
remove(dep) {
this.startedDependencies.delete(dep)
dep.contextItems.delete(this)
}
/**
* You can check if a dependency is part of this context
* @param {Dependency} dep
*/
has(dep) {
return this.startedDependencies.has(dep)
}
/**
* Returns the number of dependencies that are part of this context
* @return {number}
*/
size() {
return this.startedDependencies.size
}
/**
* @package
* @return {Dependency}
*/
getFirst() {
return Array.from(this.startedDependencies)[0]
}
/**
* @package
* @param {(arg0: Dependency) => Promise<any>} func
* @return {Promise<void>}
*/
_execInverse(func) {
if (this.size() === 0) {
return Promise.resolve()
}
const runFuncOnDep = async (/** @type {Dependency} */ d) => {
if (!this.has(d)) {
return
}
this.remove(d)
await Promise.all(d.getInverseEdges().map(runFuncOnDep))
return func(d)
}
return runFuncOnDep(this.getFirst()).then(() => this._execInverse(func))
}
/**
* Shuts down all dependencies that are part of this context in the inverse topological order
* @return {Promise<void>}
*/
shutdown() {
const id = crypto.randomUUID()
return this._execInverse((d) => {
const timeStart = performance.now()
const shutdownPromise = d._shutdown()
shutdownPromise
.then((/** @type {boolean} */ hasShutdown) => {
const info = {
timeStart,
timeEnd: performance.now(),
context: this,
dependency: d,
[EXECUTION_ID]: id,
}
hasShutdown && this.emit(CONTEXT_EVENTS.SUCCESS_SHUTDOWN, info)
})
.catch((/** @type {Error} */ error) => {
const info = {
timeStart,
timeEnd: performance.now(),
context: this,
dependency: d,
error,
[EXECUTION_ID]: id,
}
this.emit(CONTEXT_EVENTS.FAIL_SHUTDOWN, info)
})
return shutdownPromise
})
}
/**
* reset dependencies that are part of this context in the inverse topological order
* @return {Promise<void>}
*/
reset() {
const id = crypto.randomUUID()
return this._execInverse((d) => {
const timeStart = performance.now()
const resetPromise = d.reset()
resetPromise
.then((/** @type {boolean} */ hasReset) => {
const info = {
timeStart,
timeEnd: performance.now(),
context: this,
dependency: d,
[EXECUTION_ID]: id,
}
hasReset && this.emit(CONTEXT_EVENTS.SUCCESS_RESET, info)
})
.catch((/** @type {Error} */ error) => {
const info = {
timeStart,
timeEnd: performance.now(),
context: this,
dependency: d,
error,
[EXECUTION_ID]: id,
}
this.emit(CONTEXT_EVENTS.FAIL_RESET, info)
})
return resetPromise
})
}
}
// this is necessary to ensure the default context is a real singleton
// some background info:
// node doc (https://nodejs.org/api/modules.html#modules_module_caching_caveats)
// states that a
// @ts-ignore
global[GLOBAL_DEFAULT_CONTEXT] =
// @ts-ignore
global[GLOBAL_DEFAULT_CONTEXT] != null
? // @ts-ignore
global[GLOBAL_DEFAULT_CONTEXT]
: new Context("Default Context")
// @ts-ignore
const defaultContext = global[GLOBAL_DEFAULT_CONTEXT]
/**
* It runs one or more dependencies
* All the dependencies are executed only once and in the correct order
* @param {Dependency|string|Symbol|Array<Dependency|string|Symbol>} dep - one or more dependencies
* @param {Object|Map<string|Dependency|Symbol, any>|Array<[string|Dependency|Symbol, any]>} [params] - parameters. This can also be used to mock a dependency (using a Map)
* @param {Context | undefined} [context] - Optional context
* @return {Promise<any>}
*/
function run(dep, params = {}, context = defaultContext) {
const _cache = paramsToMap(params)
const id = _cache.get(EXECUTION_ID) ?? crypto.randomUUID()
_cache.set(EXECUTION_ID, id)
/** @type Array<any> */
const timings = []
const meta = { timings }
_cache.set(META_DEPENDENCY, meta)
const getPromiseFromDep = (/** @type {Dependency|ValueDependency} */ dep) => {
if (dep instanceof Dependency) {
context.add(dep)
}
return Promise.resolve().then(() => {
if (!_cache.has(dep.id)) {
/** @type number */
let timeStart
const valuePromise = getPromisesFromDeps(dep.deps()).then((deps) => {
timeStart = performance.now()
return dep.getValue(...deps)
})
valuePromise
.then(() => {
const info = {
timeStart,
timeEnd: performance.now(),
context,
dependency: dep,
[EXECUTION_ID]: id,
}
meta.timings.push(info)
context.emit(CONTEXT_EVENTS.SUCCESS_RUN, info)
})
.catch((error) => {
const info = {
timeStart,
timeEnd: performance.now(),
context,
dependency: dep,
error,
[EXECUTION_ID]: id,
}
// no point, the timings won't return
// timings.push(info)
context.emit(CONTEXT_EVENTS.FAIL_RUN, info)
})
_cache.set(dep.id, valuePromise)
}
return _cache.get(dep.id)
})
}
const getPromisesFromDeps = (
/** @type {(Dependency | ValueDependency)[]} */ deps
) => Promise.all(deps.map(getPromiseFromDep))
return Array.isArray(dep)
? getPromisesFromDeps(dep.map(getDependencyOrValueDependency))
: getPromiseFromDep(getDependencyOrValueDependency(dep))
}
/**
* It returns a list with the dependencies connected
* @param {Dependency|Array<Dependency>} dep - one or more dependencies
* @return {Array<Dependency>}
*/
function getAdjacencyList(dep) {
const depsQueue = Array.isArray(dep) ? dep : [dep]
const adjSet = new Set()
while (depsQueue.length > 0) {
const dep = depsQueue.pop()
if (dep == null) break // this is mostly to refine the type
adjSet.add(dep)
for (const d of dep.getEdges()) {
if (!adjSet.has(d)) {
depsQueue.push(d)
}
}
}
return Array.from(adjSet)
}
module.exports = {
Dependency,
ResourceDependency,
Context,
run,
CONTEXT_EVENTS,
META_DEPENDENCY,
EXECUTION_ID,
getAdjacencyList,
defaultContext,
}