-
Notifications
You must be signed in to change notification settings - Fork 292
/
Copy pathhub.go
62 lines (51 loc) · 831 Bytes
/
hub.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
package main
import (
"context"
"sync"
)
type hub struct {
sync.Mutex
subs map[*subscriber]struct{}
}
func (h *hub) publish(ctx context.Context, msg *message) error {
h.Lock()
for s := range h.subs {
s.publish(ctx, msg)
}
h.Unlock()
return nil
}
func (h *hub) subscribe(ctx context.Context, s *subscriber) error {
h.Lock()
h.subs[s] = struct{}{}
h.Unlock()
go func() {
select {
case <-s.quit:
case <-ctx.Done():
h.Lock()
delete(h.subs, s)
h.Unlock()
}
}()
go s.run(ctx)
return nil
}
func (h *hub) unsubscribe(ctx context.Context, s *subscriber) error {
h.Lock()
delete(h.subs, s)
h.Unlock()
close(s.quit)
return nil
}
func (h *hub) subscribers() int {
h.Lock()
c := len(h.subs)
h.Unlock()
return c
}
func newHub() *hub {
return &hub{
subs: map[*subscriber]struct{}{},
}
}