-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
77 lines (65 loc) · 1.74 KB
/
index.ts
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
import { tsConstructorType } from "@babel/types"
interface BarrierInterface {
wait(): Promise<void>
}
type QueueEntry = {
dequeue(): void
}
type Queue = Array<QueueEntry>
class N_Barrier implements BarrierInterface {
private bound: number
private reached: number
private queue: Queue
constructor(n) {
this.bound = n
this.reached = 0
this.queue = []
}
async wait(){
this.reached++
if (this.reached >= this.bound) {
this.queue.forEach(entry => entry.dequeue())
return Promise.resolve()
}
const entry = <QueueEntry>{ dequeue: null}
this.queue.push(entry)
return new Promise<void>(resolve => {
entry.dequeue = () => resolve()
})
}
}
class P_Barrier implements BarrierInterface {
private fullfiled: boolean
private queue: Array<QueueEntry>
constructor(asyncProcesses) {
this.fullfiled = false
this.queue = []
Promise.all(asyncProcesses).then(() => {
this.fullfiled = true
this.queue.forEach(entry => entry.dequeue())
})
}
async wait(): Promise<void> {
if (this.fullfiled) {
return Promise.resolve()
}
const entry = <QueueEntry>{ dequeue: null}
this.queue.push(entry)
return new Promise<void>(resolve => {
entry.dequeue = () => resolve()
})
}
}
function nBarrier(n: number): N_Barrier {
if (typeof n === 'number') {
return new N_Barrier(n)
}
throw new Error(`Expected number, got '${typeof n}'.`);
}
function pBarrier(...asyncProcesses: Promise<void>[]): P_Barrier {
if (typeof asyncProcesses === 'object' && asyncProcesses instanceof Array) {
return new P_Barrier(asyncProcesses)
}
throw new Error(`Expected array of Promises instead got '${typeof asyncProcesses}'.`);
}
export = { nBarrier, pBarrier }