-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsubscriber.go
80 lines (68 loc) · 1.73 KB
/
subscriber.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
package rx
import (
"sync"
"sync/atomic"
)
// Subscriber is a Subscribable that allows construction of a Subscriber tree.
type Subscriber interface {
// A Subscriber is a Subscribable
Subscribable
// Add will create and return a new child Subscriber setup in such a way that
// calling Unsubscribe on the parent will also call Unsubscribe on the child.
// Calling the Unsubscribe method on the child will NOT propagate to the
// parent!
Add() Subscriber
// OnUnsubscribe will add the given callback function to the Subscriber.
// The callback will be called when either the Unsubscribe of the parent
// or of the Subscriber itself is called. If the subscription was already
// canceled, then the callback function will just be called immediately.
OnUnsubscribe(callback func())
}
const (
subscribed = iota
unsubscribed
)
type subscriber struct {
state int32
sync.Mutex
callbacks []func()
}
func (s *subscriber) Subscribed() bool {
return atomic.LoadInt32(&s.state) == subscribed
}
func (s *subscriber) Unsubscribe() {
if atomic.CompareAndSwapInt32(&s.state, subscribed, unsubscribed) {
s.Lock()
for _, cb := range s.callbacks {
cb()
}
s.callbacks = nil
s.Unlock()
}
}
func (s *subscriber) Canceled() bool {
return atomic.LoadInt32(&s.state) != subscribed
}
func (s *subscriber) Add() Subscriber {
child := &subscriber{}
s.Lock()
if atomic.LoadInt32(&s.state) != subscribed {
child.Unsubscribe()
} else {
s.callbacks = append(s.callbacks, child.Unsubscribe)
}
s.Unlock()
return child
}
func (s *subscriber) OnUnsubscribe(callback func()) {
if callback == nil {
return
}
s.Lock()
if atomic.LoadInt32(&s.state) == subscribed {
s.callbacks = append(s.callbacks, callback)
} else {
callback()
}
s.Unlock()
}