-
Notifications
You must be signed in to change notification settings - Fork 338
/
iterable_channel.go
77 lines (67 loc) · 1.41 KB
/
iterable_channel.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
package rxgo
import (
"context"
"sync"
)
type channelIterable struct {
next <-chan Item
opts []Option
subscribers []chan Item
mutex sync.RWMutex
producerAlreadyCreated bool
}
func newChannelIterable(next <-chan Item, opts ...Option) Iterable {
return &channelIterable{
next: next,
subscribers: make([]chan Item, 0),
opts: opts,
}
}
func (i *channelIterable) Observe(opts ...Option) <-chan Item {
mergedOptions := append(i.opts, opts...)
option := parseOptions(mergedOptions...)
if !option.isConnectable() {
return i.next
}
if option.isConnectOperation() {
i.connect(option.buildContext(emptyContext))
return nil
}
ch := option.buildChannel()
i.mutex.Lock()
i.subscribers = append(i.subscribers, ch)
i.mutex.Unlock()
return ch
}
func (i *channelIterable) connect(ctx context.Context) {
i.mutex.Lock()
if !i.producerAlreadyCreated {
go i.produce(ctx)
i.producerAlreadyCreated = true
}
i.mutex.Unlock()
}
func (i *channelIterable) produce(ctx context.Context) {
defer func() {
i.mutex.RLock()
for _, subscriber := range i.subscribers {
close(subscriber)
}
i.mutex.RUnlock()
}()
for {
select {
case <-ctx.Done():
return
case item, ok := <-i.next:
if !ok {
return
}
i.mutex.RLock()
for _, subscriber := range i.subscribers {
subscriber <- item
}
i.mutex.RUnlock()
}
}
}