-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathmachine.go
256 lines (229 loc) · 6.17 KB
/
machine.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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
package machine
import (
"context"
"fmt"
"math/rand"
"strings"
"sync"
)
// Handler is a first class that is executed against the inbound message in a subscription.
// Return false to indicate that the subscription should end
type MessageHandlerFunc func(ctx context.Context, msg Message) (bool, error)
// Filter is a first class function to filter out messages before they reach a subscriptions primary Handler
// Return true to indicate that a message passes the filter
type MessageFilterFunc func(ctx context.Context, msg Message) (bool, error)
// Func is a first class function that is asynchronously executed.
type Func func(ctx context.Context) error
// Machine is an interface for highly asynchronous Go applications
type Machine interface {
// Publish synchronously publishes the Message
Publish(ctx context.Context, msg Message)
// Subscribe synchronously subscribes to messages on a given channel, executing the given HandlerFunc UNTIL the context cancels OR false is returned by the HandlerFunc.
// Glob matching IS supported for subscribing to multiple channels at once.
Subscribe(ctx context.Context, channel string, handler MessageHandlerFunc, options ...SubscriptionOpt) error
// Go asynchronously executes the given Func
Go(ctx context.Context, fn Func)
// Current returns the number of active jobs that are running concurrently
Current() int
// Wait blocks until all active async functions(Go) exit
Wait() error
// Close blocks until all active routine's exit(calls Wait) then closes all active subscriptions
Close()
}
// SubscriptionOptions holds config options for a subscription
type SubscriptionOptions struct {
filter MessageFilterFunc
subscriptionID string
}
// SubscriptionOpt configures a subscription
type SubscriptionOpt func(options *SubscriptionOptions)
// WithFilter is a subscription option that filters messages
func WithFilter(filter MessageFilterFunc) SubscriptionOpt {
return func(options *SubscriptionOptions) {
options.filter = filter
}
}
// WithSubscriptionID is a subscription option that sets the subscription id - if multiple consumers have the same subscritpion id,
// a message will be broadcasted to just one of the consumers
func WithSubscriptionID(id string) SubscriptionOpt {
return func(options *SubscriptionOptions) {
options.subscriptionID = id
}
}
type machine struct {
max int
subscriptions *sync.Map
current chan struct{}
errChan chan error
wg sync.WaitGroup
}
// Options holds config options for a machine instance
type Options struct {
maxRoutines int
}
// Opt configures a machine instance
type Opt func(o *Options)
// WithThrottledRoutines throttles the max number of active routine's spawned by the Machine.
func WithThrottledRoutines(max int) Opt {
return func(o *Options) {
o.maxRoutines = max
}
}
// New creates a new Machine instance with the given options(if present)
func New(opts ...Opt) Machine {
options := &Options{}
for _, o := range opts {
o(options)
}
if options.maxRoutines <= 0 {
options.maxRoutines = 1000
}
return &machine{
max: options.maxRoutines,
current: make(chan struct{}, options.maxRoutines),
subscriptions: &sync.Map{},
errChan: make(chan error, 100),
wg: sync.WaitGroup{},
}
}
func (m *machine) Current() int {
return len(m.current)
}
func (m *machine) Go(ctx context.Context, fn Func) {
if ctx.Err() != nil {
return
}
m.wg.Add(1)
go func() {
defer func() {
m.wg.Done()
// remove element from "current" channel
<-m.current
}()
ctx, cancel := context.WithCancel(ctx)
defer cancel()
select {
// return context error if context is closed before slot becomes available
case <-ctx.Done():
return
case m.current <- struct{}{}: // add element to current channel
}
if err := fn(ctx); err != nil {
m.errChan <- err
}
}()
}
type Message struct {
Channel string
Body interface{}
}
func (p *machine) Subscribe(ctx context.Context, channel string, handler MessageHandlerFunc, options ...SubscriptionOpt) error {
opts := &SubscriptionOptions{}
for _, o := range options {
o(opts)
}
var subID string
if opts.subscriptionID != "" {
subID = opts.subscriptionID
}
ctx, cancel := context.WithCancel(ctx)
defer cancel()
ch, closer := p.setupSubscription(channel, subID)
defer closer()
for {
select {
case <-ctx.Done():
return nil
case msg := <-ch:
if opts.filter != nil {
shouldHandle, err := opts.filter(ctx, msg)
if err != nil {
return err
}
if !shouldHandle {
continue
}
}
contin, err := handler(ctx, msg)
if err != nil {
return err
}
if !contin {
return nil
}
}
}
}
func (p *machine) Publish(ctx context.Context, msg Message) {
p.subscriptions.Range(func(key, value any) bool {
split := strings.Split(key.(string), "|||")
if globMatch(split[0], msg.Channel) {
if ctx.Err() != nil {
return false
}
value.(chan Message) <- msg
}
return true
})
return
}
func (m *machine) Wait() error {
m.wg.Wait()
select {
case err := <-m.errChan:
return err
default:
return nil
}
}
func (p *machine) Close() {
p.wg.Wait()
p.subscriptions.Range(func(key, value any) bool {
p.subscriptions.Delete(key)
return true
})
close(p.errChan)
}
func (p *machine) setupSubscription(channel, subId string) (chan Message, func()) {
if subId == "" {
subId = fmt.Sprintf("%v", rand.Int())
}
ch := make(chan Message, 1)
key := fmt.Sprintf("%s|||%s", channel, subId)
p.subscriptions.Store(key, ch)
return ch, func() {
p.subscriptions.Delete(key)
close(ch)
}
}
func globMatch(pattern string, subj string) bool {
const matchAll = "*"
if pattern == subj {
return true
}
if pattern == matchAll {
return true
}
parts := strings.Split(pattern, matchAll)
if len(parts) == 1 {
return subj == pattern
}
leadingGlob := strings.HasPrefix(pattern, matchAll)
trailingGlob := strings.HasSuffix(pattern, matchAll)
end := len(parts) - 1
for i := 0; i < end; i++ {
idx := strings.Index(subj, parts[i])
switch i {
case 0:
if !leadingGlob && idx != 0 {
return false
}
default:
if idx < 0 {
return false
}
}
subj = subj[idx+len(parts[i]):]
}
return trailingGlob || strings.HasSuffix(subj, parts[end])
}