-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpromise.go
232 lines (203 loc) · 4.31 KB
/
promise.go
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
package promise
import (
"context"
"fmt"
"sync"
)
// Promise represents the eventual completion (or failure) of an asynchronous operation and its resulting value
type Promise[T any] struct {
value *T
err error
ch chan struct{}
once sync.Once
}
func New[T any](
executor func(resolve func(T), reject func(error)),
) *Promise[T] {
return NewWithPool(executor, defaultPool)
}
func NewWithPool[T any](
executor func(resolve func(T), reject func(error)),
pool Pool,
) *Promise[T] {
if executor == nil {
panic("executor is nil")
}
if pool == nil {
panic("pool is nil")
}
p := &Promise[T]{
value: nil,
err: nil,
ch: make(chan struct{}),
once: sync.Once{},
}
pool.Go(func() {
defer p.handlePanic()
executor(p.resolve, p.reject)
})
return p
}
func Then[A, B any](
p *Promise[A],
ctx context.Context,
resolve func(A) (B, error),
) *Promise[B] {
return ThenWithPool(p, ctx, resolve, defaultPool)
}
func ThenWithPool[A, B any](
p *Promise[A],
ctx context.Context,
resolve func(A) (B, error),
pool Pool,
) *Promise[B] {
return NewWithPool(func(resolveB func(B), reject func(error)) {
result, err := p.Await(ctx)
if err != nil {
reject(err)
return
}
resultB, err := resolve(*result)
if err != nil {
reject(err)
return
}
resolveB(resultB)
}, pool)
}
func Catch[T any](
p *Promise[T],
ctx context.Context,
reject func(err error) error,
) *Promise[T] {
return CatchWithPool(p, ctx, reject, defaultPool)
}
func CatchWithPool[T any](
p *Promise[T],
ctx context.Context,
reject func(err error) error,
pool Pool,
) *Promise[T] {
return NewWithPool(func(resolve func(T), internalReject func(error)) {
result, err := p.Await(ctx)
if err != nil {
internalReject(reject(err))
} else {
resolve(*result)
}
}, pool)
}
func (p *Promise[T]) Await(ctx context.Context) (*T, error) {
select {
case <-ctx.Done():
return nil, ctx.Err()
case <-p.ch:
return p.value, p.err
}
}
func (p *Promise[T]) resolve(value T) {
p.once.Do(func() {
p.value = &value
close(p.ch)
})
}
func (p *Promise[T]) reject(err error) {
p.once.Do(func() {
p.err = err
close(p.ch)
})
}
func (p *Promise[T]) handlePanic() {
err := recover()
if err == nil {
return
}
switch v := err.(type) {
case error:
p.reject(v)
default:
p.reject(fmt.Errorf("%+v", v))
}
}
// All resolves when all promises have resolved, or rejects immediately upon any of the promises rejecting
func All[T any](
ctx context.Context,
promises ...*Promise[T],
) *Promise[[]T] {
return AllWithPool(ctx, defaultPool, promises...)
}
func AllWithPool[T any](
ctx context.Context,
pool Pool,
promises ...*Promise[T],
) *Promise[[]T] {
if len(promises) == 0 {
panic("missing promises")
}
return NewWithPool(func(resolve func([]T), reject func(error)) {
resultsChan := make(chan tuple[T, int], len(promises))
errsChan := make(chan error, len(promises))
for idx, p := range promises {
idx := idx
_ = ThenWithPool(p, ctx, func(data T) (T, error) {
resultsChan <- tuple[T, int]{_1: data, _2: idx}
return data, nil
}, pool)
_ = CatchWithPool(p, ctx, func(err error) error {
errsChan <- err
return err
}, pool)
}
results := make([]T, len(promises))
for idx := 0; idx < len(promises); idx++ {
select {
case result := <-resultsChan:
results[result._2] = result._1
case err := <-errsChan:
reject(err)
return
}
}
resolve(results)
}, pool)
}
// Race resolves or rejects as soon as any one of the promises resolves or rejects
func Race[T any](
ctx context.Context,
promises ...*Promise[T],
) *Promise[T] {
return RaceWithPool(ctx, defaultPool, promises...)
}
func RaceWithPool[T any](
ctx context.Context,
pool Pool,
promises ...*Promise[T],
) *Promise[T] {
if len(promises) == 0 {
panic("missing promises")
}
return NewWithPool(func(resolve func(T), reject func(error)) {
valsChan := make(chan T, len(promises))
errsChan := make(chan error, len(promises))
for _, p := range promises {
_ = ThenWithPool(p, ctx, func(data T) (T, error) {
valsChan <- data
return data, nil
}, pool)
_ = CatchWithPool(p, ctx, func(err error) error {
errsChan <- err
return err
}, pool)
}
select {
case val := <-valsChan:
resolve(val)
case err := <-errsChan:
reject(err)
}
}, pool)
}
type tuple[T1, T2 any] struct {
_1 T1
_2 T2
}