-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathswitchall.go
56 lines (54 loc) · 1.32 KB
/
switchall.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
package rx
import (
"sync"
"sync/atomic"
)
func SwitchAll[T any](observable Observable[Observable[T]]) Observable[T] {
return func(observe Observer[T], scheduler Scheduler, subscriber Subscriber) {
var switches struct {
sync.Mutex
done bool
count int32
subscriber Subscriber
}
observer := func(next T, err error, done bool) {
switches.Lock()
defer switches.Unlock()
if !switches.done {
switch {
case !done:
observe(next, nil, false)
case err != nil:
switches.done = true
var zero T
observe(zero, err, true)
default:
if atomic.AddInt32(&switches.count, -1) == 0 {
var zero T
observe(zero, nil, true)
}
}
}
}
switcher := func(next Observable[T], err error, done bool) {
if !done {
switch {
case atomic.CompareAndSwapInt32(&switches.count, 2, 3):
switches.Lock()
defer switches.Unlock()
switches.subscriber.Unsubscribe()
atomic.StoreInt32(&switches.count, 2)
fallthrough
case atomic.CompareAndSwapInt32(&switches.count, 1, 2):
switches.subscriber = subscriber.Add()
next.AutoUnsubscribe()(observer, scheduler, switches.subscriber)
}
} else {
var zero T
observer(zero, err, true)
}
}
switches.count += 1
observable.AutoUnsubscribe()(switcher, scheduler, subscriber)
}
}