forked from CyCoreSystems/ari
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bus.go
165 lines (132 loc) · 3.16 KB
/
bus.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
package stdbus
import (
"sync"
"github.com/CyCoreSystems/ari/v5"
)
// subscriptionEventBufferSize defines the number of events that each
// subscription will queue before accepting more events.
var subscriptionEventBufferSize = 100
// bus is an event bus for ARI events. It receives and
// redistributes events based on a subscription
// model.
type bus struct {
subs []*subscription // The list of subscriptions
rwMux sync.RWMutex
closed bool
}
// New creates and returns the event bus.
func New() ari.Bus {
b := &bus{
subs: []*subscription{},
}
return b
}
// Close closes out all subscriptions in the bus.
func (b *bus) Close() {
if b.closed {
return
}
b.closed = true
for _, s := range b.subs {
s.Cancel()
}
}
// Send sends the message to the bus
func (b *bus) Send(e ari.Event) {
var matched bool
b.rwMux.RLock()
// Disseminate the message to the subscribers
for _, s := range b.subs {
matched = false
for _, k := range e.Keys() {
if matched {
break
}
if s.key.Match(k) {
matched = true
for _, topic := range s.events {
if topic == e.GetType() || topic == ari.Events.All {
select {
case s.C <- e:
default: // never block
}
}
}
}
}
}
b.rwMux.RUnlock()
}
// Subscribe returns a subscription to the given list
// of event types
func (b *bus) Subscribe(key *ari.Key, eTypes ...string) ari.Subscription {
s := newSubscription(b, key, eTypes...)
b.add(s)
return s
}
// add appends a new subscription to the bus
func (b *bus) add(s *subscription) {
b.rwMux.Lock()
b.subs = append(b.subs, s)
b.rwMux.Unlock()
}
// remove deletes the given subscription from the bus
func (b *bus) remove(s *subscription) {
b.rwMux.Lock()
for i, si := range b.subs {
if s == si {
// Subs are pointers, so we have to explicitly remove them
// to prevent memory leaks
b.subs[i] = b.subs[len(b.subs)-1] // replace the current with the end
b.subs[len(b.subs)-1] = nil // remove the end
b.subs = b.subs[:len(b.subs)-1] // lop off the end
break
}
}
b.rwMux.Unlock()
}
// A Subscription is a wrapped channel for receiving
// events from the ARI event bus.
type subscription struct {
key *ari.Key
b *bus // reference to the event bus
events []string // list of events to listen for
mu sync.Mutex
closed bool // channel closure protection flag
C chan ari.Event // channel for sending events to the subscriber
}
// newSubscription creates a new, unattached subscription
func newSubscription(b *bus, key *ari.Key, eTypes ...string) *subscription {
return &subscription{
key: key,
b: b,
events: eTypes,
C: make(chan ari.Event, subscriptionEventBufferSize),
}
}
// Events returns the events channel
func (s *subscription) Events() <-chan ari.Event {
return s.C
}
// Cancel cancels the subscription and removes it from
// the event bus.
func (s *subscription) Cancel() {
if s == nil {
return
}
s.mu.Lock()
if s.closed {
s.mu.Unlock()
return
}
s.closed = true
s.mu.Unlock()
// Remove the subscription from the bus
if s.b != nil {
s.b.remove(s)
}
// Close the subscription's deliver channel
if s.C != nil {
close(s.C)
}
}