-
Notifications
You must be signed in to change notification settings - Fork 0
/
topic.go
96 lines (74 loc) · 1.35 KB
/
topic.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
package varto
import (
"fmt"
"sync"
)
type Topic interface {
Subscribe(Connection)
Unsubscribe(Connection)
IsEmpty() bool
Publish([]byte)
}
type topic struct {
sync.RWMutex
name string
connections map[string]Connection
Channel chan []byte
}
func NewTopic(name string) Topic {
t := &topic{
name: name,
connections: make(map[string]Connection),
Channel: make(chan []byte, 100),
}
go t.listen()
return t
}
func (t *topic) Subscribe(conn Connection) {
t.Lock()
defer t.Unlock()
t.connections[conn.GetId()] = conn
}
func (t *topic) Unsubscribe(conn Connection) {
t.Lock()
defer t.Unlock()
delete(t.connections, conn.GetId())
}
func (t *topic) IsEmpty() bool {
t.RLock()
defer t.RUnlock()
return len(t.connections) == 0
}
func (t *topic) Publish(data []byte) {
t.Channel <- data
}
func (t *topic) listen() {
for data := range t.Channel {
if err := t.publish(data); err != nil {
fmt.Println(err)
}
}
}
func (t *topic) publish(data []byte) error {
t.RLock()
connections := t.connections
t.RUnlock()
wg := sync.WaitGroup{}
chErr := make(chan error)
for _, conn := range connections {
wg.Add(1)
go func(c Connection) {
defer wg.Done()
if err := c.Write(data); err != nil {
chErr <- err
}
}(conn)
}
wg.Wait()
select {
case err := <-chErr:
return err
default:
}
return nil
}