-
Notifications
You must be signed in to change notification settings - Fork 338
/
observable.go
493 lines (451 loc) · 14.7 KB
/
observable.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
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
// Package rxgo is the main RxGo package.
package rxgo
import (
"context"
"sync"
"sync/atomic"
"time"
"github.com/cenkalti/backoff/v4"
"github.com/emirpasic/gods/trees/binaryheap"
)
// Observable is the standard interface for Observables.
type Observable interface {
Iterable
All(predicate Predicate, opts ...Option) Single
AverageFloat32(opts ...Option) Single
AverageFloat64(opts ...Option) Single
AverageInt(opts ...Option) Single
AverageInt8(opts ...Option) Single
AverageInt16(opts ...Option) Single
AverageInt32(opts ...Option) Single
AverageInt64(opts ...Option) Single
BackOffRetry(backOffCfg backoff.BackOff, opts ...Option) Observable
BufferWithCount(count int, opts ...Option) Observable
BufferWithTime(timespan Duration, opts ...Option) Observable
BufferWithTimeOrCount(timespan Duration, count int, opts ...Option) Observable
Connect(ctx context.Context) (context.Context, Disposable)
Contains(equal Predicate, opts ...Option) Single
Count(opts ...Option) Single
Debounce(timespan Duration, opts ...Option) Observable
DefaultIfEmpty(defaultValue interface{}, opts ...Option) Observable
Distinct(apply Func, opts ...Option) Observable
DistinctUntilChanged(apply Func, opts ...Option) Observable
DoOnCompleted(completedFunc CompletedFunc, opts ...Option) Disposed
DoOnError(errFunc ErrFunc, opts ...Option) Disposed
DoOnNext(nextFunc NextFunc, opts ...Option) Disposed
ElementAt(index uint, opts ...Option) Single
Error(opts ...Option) error
Errors(opts ...Option) []error
Filter(apply Predicate, opts ...Option) Observable
Find(find Predicate, opts ...Option) OptionalSingle
First(opts ...Option) OptionalSingle
FirstOrDefault(defaultValue interface{}, opts ...Option) Single
FlatMap(apply ItemToObservable, opts ...Option) Observable
ForEach(nextFunc NextFunc, errFunc ErrFunc, completedFunc CompletedFunc, opts ...Option) Disposed
GroupBy(length int, distribution func(Item) int, opts ...Option) Observable
GroupByDynamic(distribution func(Item) string, opts ...Option) Observable
IgnoreElements(opts ...Option) Observable
Join(joiner Func2, right Observable, timeExtractor func(interface{}) time.Time, window Duration, opts ...Option) Observable
Last(opts ...Option) OptionalSingle
LastOrDefault(defaultValue interface{}, opts ...Option) Single
Map(apply Func, opts ...Option) Observable
Marshal(marshaller Marshaller, opts ...Option) Observable
Max(comparator Comparator, opts ...Option) OptionalSingle
Min(comparator Comparator, opts ...Option) OptionalSingle
OnErrorResumeNext(resumeSequence ErrorToObservable, opts ...Option) Observable
OnErrorReturn(resumeFunc ErrorFunc, opts ...Option) Observable
OnErrorReturnItem(resume interface{}, opts ...Option) Observable
Reduce(apply Func2, opts ...Option) OptionalSingle
Repeat(count int64, frequency Duration, opts ...Option) Observable
Retry(count int, shouldRetry func(error) bool, opts ...Option) Observable
Run(opts ...Option) Disposed
Sample(iterable Iterable, opts ...Option) Observable
Scan(apply Func2, opts ...Option) Observable
SequenceEqual(iterable Iterable, opts ...Option) Single
Send(output chan<- Item, opts ...Option)
Serialize(from int, identifier func(interface{}) int, opts ...Option) Observable
Skip(nth uint, opts ...Option) Observable
SkipLast(nth uint, opts ...Option) Observable
SkipWhile(apply Predicate, opts ...Option) Observable
StartWith(iterable Iterable, opts ...Option) Observable
SumFloat32(opts ...Option) OptionalSingle
SumFloat64(opts ...Option) OptionalSingle
SumInt64(opts ...Option) OptionalSingle
Take(nth uint, opts ...Option) Observable
TakeLast(nth uint, opts ...Option) Observable
TakeUntil(apply Predicate, opts ...Option) Observable
TakeWhile(apply Predicate, opts ...Option) Observable
TimeInterval(opts ...Option) Observable
Timestamp(opts ...Option) Observable
ToMap(keySelector Func, opts ...Option) Single
ToMapWithValueSelector(keySelector, valueSelector Func, opts ...Option) Single
ToSlice(initialCapacity int, opts ...Option) ([]interface{}, error)
Unmarshal(unmarshaller Unmarshaller, factory func() interface{}, opts ...Option) Observable
WindowWithCount(count int, opts ...Option) Observable
WindowWithTime(timespan Duration, opts ...Option) Observable
WindowWithTimeOrCount(timespan Duration, count int, opts ...Option) Observable
ZipFromIterable(iterable Iterable, zipper Func2, opts ...Option) Observable
}
// ObservableImpl implements Observable.
type ObservableImpl struct {
parent context.Context
iterable Iterable
}
func defaultErrorFuncOperator(ctx context.Context, item Item, dst chan<- Item, operatorOptions operatorOptions) {
item.SendContext(ctx, dst)
operatorOptions.stop()
}
func customObservableOperator(parent context.Context, f func(ctx context.Context, next chan Item, option Option, opts ...Option), opts ...Option) Observable {
option := parseOptions(opts...)
next := option.buildChannel()
ctx := option.buildContext(parent)
if option.isEagerObservation() {
go f(ctx, next, option, opts...)
return &ObservableImpl{iterable: newChannelIterable(next)}
}
return &ObservableImpl{
iterable: newFactoryIterable(func(propagatedOptions ...Option) <-chan Item {
mergedOptions := append(opts, propagatedOptions...)
go f(ctx, next, option, mergedOptions...)
return next
}),
}
}
type operator interface {
next(ctx context.Context, item Item, dst chan<- Item, operatorOptions operatorOptions)
err(ctx context.Context, item Item, dst chan<- Item, operatorOptions operatorOptions)
end(ctx context.Context, dst chan<- Item)
gatherNext(ctx context.Context, item Item, dst chan<- Item, operatorOptions operatorOptions)
}
func observable(parent context.Context, iterable Iterable, operatorFactory func() operator, forceSeq, bypassGather bool, opts ...Option) Observable {
option := parseOptions(opts...)
parallel, _ := option.getPool()
if option.isEagerObservation() {
next := option.buildChannel()
ctx := option.buildContext(parent)
if forceSeq || !parallel {
runSequential(ctx, next, iterable, operatorFactory, option, opts...)
} else {
runParallel(ctx, next, iterable.Observe(opts...), operatorFactory, bypassGather, option, opts...)
}
return &ObservableImpl{iterable: newChannelIterable(next)}
}
if forceSeq || !parallel {
return &ObservableImpl{
iterable: newFactoryIterable(func(propagatedOptions ...Option) <-chan Item {
mergedOptions := append(opts, propagatedOptions...)
option := parseOptions(mergedOptions...)
next := option.buildChannel()
ctx := option.buildContext(parent)
runSequential(ctx, next, iterable, operatorFactory, option, mergedOptions...)
return next
}),
}
}
if serialized, f := option.isSerialized(); serialized {
firstItemIDCh := make(chan Item, 1)
fromCh := make(chan Item, 1)
obs := &ObservableImpl{
iterable: newFactoryIterable(func(propagatedOptions ...Option) <-chan Item {
mergedOptions := append(opts, propagatedOptions...)
option := parseOptions(mergedOptions...)
next := option.buildChannel()
ctx := option.buildContext(parent)
observe := iterable.Observe(opts...)
go func() {
select {
case <-ctx.Done():
return
case firstItemID := <-firstItemIDCh:
if firstItemID.Error() {
firstItemID.SendContext(ctx, fromCh)
return
}
Of(firstItemID.V.(int)).SendContext(ctx, fromCh)
runParallel(ctx, next, observe, operatorFactory, bypassGather, option, mergedOptions...)
}
}()
runFirstItem(ctx, f, firstItemIDCh, observe, next, operatorFactory, option, mergedOptions...)
return next
}),
}
return obs.serialize(parent, fromCh, f)
}
return &ObservableImpl{
iterable: newFactoryIterable(func(propagatedOptions ...Option) <-chan Item {
mergedOptions := append(opts, propagatedOptions...)
option := parseOptions(mergedOptions...)
next := option.buildChannel()
ctx := option.buildContext(parent)
runParallel(ctx, next, iterable.Observe(mergedOptions...), operatorFactory, bypassGather, option, mergedOptions...)
return next
}),
}
}
func single(parent context.Context, iterable Iterable, operatorFactory func() operator, forceSeq, bypassGather bool, opts ...Option) Single {
option := parseOptions(opts...)
parallel, _ := option.getPool()
next := option.buildChannel()
ctx := option.buildContext(parent)
if option.isEagerObservation() {
if forceSeq || !parallel {
runSequential(ctx, next, iterable, operatorFactory, option, opts...)
} else {
runParallel(ctx, next, iterable.Observe(opts...), operatorFactory, bypassGather, option, opts...)
}
return &SingleImpl{iterable: newChannelIterable(next)}
}
return &SingleImpl{
iterable: newFactoryIterable(func(propagatedOptions ...Option) <-chan Item {
mergedOptions := append(opts, propagatedOptions...)
option = parseOptions(mergedOptions...)
if forceSeq || !parallel {
runSequential(ctx, next, iterable, operatorFactory, option, mergedOptions...)
} else {
runParallel(ctx, next, iterable.Observe(mergedOptions...), operatorFactory, bypassGather, option, mergedOptions...)
}
return next
}),
}
}
func optionalSingle(parent context.Context, iterable Iterable, operatorFactory func() operator, forceSeq, bypassGather bool, opts ...Option) OptionalSingle {
option := parseOptions(opts...)
ctx := option.buildContext(parent)
parallel, _ := option.getPool()
if option.isEagerObservation() {
next := option.buildChannel()
if forceSeq || !parallel {
runSequential(ctx, next, iterable, operatorFactory, option, opts...)
} else {
runParallel(ctx, next, iterable.Observe(opts...), operatorFactory, bypassGather, option, opts...)
}
return &OptionalSingleImpl{iterable: newChannelIterable(next)}
}
return &OptionalSingleImpl{
parent: ctx,
iterable: newFactoryIterable(func(propagatedOptions ...Option) <-chan Item {
mergedOptions := append(opts, propagatedOptions...)
option = parseOptions(mergedOptions...)
next := option.buildChannel()
ctx := option.buildContext(parent)
if forceSeq || !parallel {
runSequential(ctx, next, iterable, operatorFactory, option, mergedOptions...)
} else {
runParallel(ctx, next, iterable.Observe(mergedOptions...), operatorFactory, bypassGather, option, mergedOptions...)
}
return next
}),
}
}
func runSequential(ctx context.Context, next chan Item, iterable Iterable, operatorFactory func() operator, option Option, opts ...Option) {
observe := iterable.Observe(opts...)
go func() {
op := operatorFactory()
stopped := false
operator := operatorOptions{
stop: func() {
if option.getErrorStrategy() == StopOnError {
stopped = true
}
},
resetIterable: func(newIterable Iterable) {
observe = newIterable.Observe(opts...)
},
}
loop:
for !stopped {
select {
case <-ctx.Done():
break loop
case i, ok := <-observe:
if !ok {
break loop
}
if i.Error() {
op.err(ctx, i, next, operator)
} else {
op.next(ctx, i, next, operator)
}
}
}
op.end(ctx, next)
close(next)
}()
}
func runParallel(ctx context.Context, next chan Item, observe <-chan Item, operatorFactory func() operator, bypassGather bool, option Option, opts ...Option) {
wg := sync.WaitGroup{}
_, pool := option.getPool()
wg.Add(pool)
var gather chan Item
if bypassGather {
gather = next
} else {
gather = make(chan Item, 1)
// Gather
go func() {
op := operatorFactory()
stopped := false
operator := operatorOptions{
stop: func() {
if option.getErrorStrategy() == StopOnError {
stopped = true
}
},
resetIterable: func(newIterable Iterable) {
observe = newIterable.Observe(opts...)
},
}
for item := range gather {
if stopped {
break
}
if item.Error() {
op.err(ctx, item, next, operator)
} else {
op.gatherNext(ctx, item, next, operator)
}
}
op.end(ctx, next)
close(next)
}()
}
// Scatter
for i := 0; i < pool; i++ {
go func() {
op := operatorFactory()
stopped := false
operator := operatorOptions{
stop: func() {
if option.getErrorStrategy() == StopOnError {
stopped = true
}
},
resetIterable: func(newIterable Iterable) {
observe = newIterable.Observe(opts...)
},
}
defer wg.Done()
for !stopped {
select {
case <-ctx.Done():
return
case item, ok := <-observe:
if !ok {
if !bypassGather {
Of(op).SendContext(ctx, gather)
}
return
}
if item.Error() {
op.err(ctx, item, gather, operator)
} else {
op.next(ctx, item, gather, operator)
}
}
}
}()
}
go func() {
wg.Wait()
close(gather)
}()
}
func runFirstItem(ctx context.Context, f func(interface{}) int, notif chan Item, observe <-chan Item, next chan Item, operatorFactory func() operator, option Option, opts ...Option) {
go func() {
op := operatorFactory()
stopped := false
operator := operatorOptions{
stop: func() {
if option.getErrorStrategy() == StopOnError {
stopped = true
}
},
resetIterable: func(newIterable Iterable) {
observe = newIterable.Observe(opts...)
},
}
loop:
for !stopped {
select {
case <-ctx.Done():
break loop
case i, ok := <-observe:
if !ok {
break loop
}
if i.Error() {
op.err(ctx, i, next, operator)
i.SendContext(ctx, notif)
} else {
op.next(ctx, i, next, operator)
Of(f(i.V)).SendContext(ctx, notif)
}
}
}
op.end(ctx, next)
}()
}
func (o *ObservableImpl) serialize(parent context.Context, fromCh chan Item, identifier func(interface{}) int, opts ...Option) Observable {
option := parseOptions(opts...)
next := option.buildChannel()
ctx := option.buildContext(parent)
minHeap := binaryheap.NewWith(func(a, b interface{}) int {
return a.(int) - b.(int)
})
items := make(map[int]interface{})
var from int
var counter int64
src := o.Observe(opts...)
go func() {
select {
case <-ctx.Done():
close(next)
return
case item := <-fromCh:
if item.Error() {
item.SendContext(ctx, next)
close(next)
return
}
from = item.V.(int)
counter = int64(from)
go func() {
defer close(next)
for {
select {
case <-ctx.Done():
return
case item, ok := <-src:
if !ok {
return
}
if item.Error() {
next <- item
return
}
id := identifier(item.V)
minHeap.Push(id)
items[id] = item.V
for !minHeap.Empty() {
v, _ := minHeap.Peek()
id := v.(int)
if atomic.LoadInt64(&counter) == int64(id) {
if itemValue, contains := items[id]; contains {
minHeap.Pop()
delete(items, id)
Of(itemValue).SendContext(ctx, next)
counter++
continue
}
}
break
}
}
}
}()
}
}()
return &ObservableImpl{
iterable: newChannelIterable(next),
}
}