-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmulticast.go
103 lines (101 loc) · 2.5 KB
/
multicast.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
package rx
import "sync"
// Multicast returns both an Observer and and Observable. The returned Observer is
// used to send items into the Multicast. The returned Observable is used to subscribe
// to the Multicast. The Multicast multicasts items send through the Observer to every
// Subscriber of the Observable.
//
// size size of the item buffer, number of items kept to replay to a new Subscriber.
//
// Backpressure handling depends on the sign of the size argument. For positive size the
// multicast will block when one of the subscribers lets the buffer fill up. For negative
// size the multicast will drop items on the blocking subscriber, allowing the others to
// keep on receiving values. For hot observables dropping is preferred.
func Multicast[T any](size int) (Observer[T], Observable[T]) {
var multicast struct {
sync.Mutex
channels []chan any
}
drop := (size < 0)
if size < 0 {
size = -size
}
observer := func(next T, err error, done bool) {
multicast.Lock()
defer multicast.Unlock()
for _, c := range multicast.channels {
if c != nil {
switch {
case !done:
if drop {
select {
case c <- next:
default:
// dropping
}
} else {
c <- next
}
case err != nil:
if drop {
select {
case c <- err:
default:
// dropping
}
} else {
c <- err
}
close(c)
default:
close(c)
}
}
}
}
observable := func(observe Observer[T], scheduler Scheduler, subscriber Subscriber) {
multicast.Lock()
defer multicast.Unlock()
channel := make(chan any, size)
remove := func() bool {
for i, v := range multicast.channels {
if v == channel {
copy(multicast.channels[i:], multicast.channels[i+1:])
size := len(multicast.channels) - 1
multicast.channels[size] = nil
multicast.channels = multicast.channels[:size]
return true
}
}
return false
}
multicast.channels = append(multicast.channels, channel)
observer := func(next any, err error, done bool) {
switch {
case !done:
switch n := next.(type) {
case error:
if remove() {
var zero T
observe(zero, n, true)
}
case T:
observe(n, nil, false)
}
case err != nil:
if remove() {
var zero T
observe(zero, err, true)
}
default:
if remove() {
var zero T
observe(zero, nil, true)
}
}
}
Recv(channel)(observer, scheduler, subscriber)
subscriber.OnUnsubscribe(func() { remove() })
}
return observer, observable
}