-
Notifications
You must be signed in to change notification settings - Fork 342
Expand file tree
/
Copy pathiterable_channel.go
More file actions
110 lines (95 loc) · 2.1 KB
/
Copy pathiterable_channel.go
File metadata and controls
110 lines (95 loc) · 2.1 KB
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
package rxgo
import (
"context"
"sync"
)
type subscription struct {
ctx context.Context
ch chan Item
}
type channelIterable struct {
next <-chan Item
opts []Option
nextSubscriberID uint64
subscribers map[uint64]*subscription
mutex sync.RWMutex
producerAlreadyCreated bool
}
func newChannelIterable(next <-chan Item, opts ...Option) Iterable {
return &channelIterable{
next: next,
subscribers: make(map[uint64]*subscription),
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 := i.createSubscription(option)
return ch
}
func (i *channelIterable) createSubscription(option Option) chan Item {
ch := option.buildChannel()
sctx := option.buildContext(emptyContext)
i.mutex.Lock()
sid := i.nextSubscriberID
i.nextSubscriberID++
i.subscribers[sid] = &subscription{
ctx: sctx,
ch: 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.ch)
}
i.mutex.RUnlock()
}()
for {
select {
case <-ctx.Done():
return
case item, ok := <-i.next:
if !ok {
return
}
toBeCleaned := make([]uint64, 0)
i.mutex.RLock()
for sid, subscriber := range i.subscribers {
select {
case <-subscriber.ctx.Done():
toBeCleaned = append(toBeCleaned, sid)
case subscriber.ch <- item:
}
}
i.mutex.RUnlock()
i.removeSubscriptions(toBeCleaned)
}
}
}
func (i *channelIterable) removeSubscriptions(sids []uint64) {
i.mutex.Lock()
defer i.mutex.Unlock()
for _, sid := range sids {
delete(i.subscribers, sid)
}
}