forked from dunglas/mercure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathredis.go
223 lines (186 loc) · 4.53 KB
/
redis.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
package mercure
import (
"encoding/json"
"errors"
"fmt"
"sync"
"github.com/redis/go-redis/v9"
"golang.org/x/net/context"
)
const (
lastEventIDKey = "lastEventID"
publishScript = `
redis.call("SET", KEYS[1], ARGV[1])
redis.call("PUBLISH", ARGV[2], ARGV[3])
return true
`
)
type RedisTransport struct {
sync.RWMutex
logger Logger
client *redis.Client
subscribers *SubscriberList
closed chan any
publishScript *redis.Script
closedOnce sync.Once
redisChannel string
}
func NewRedisTransport(
logger Logger,
address string,
username string,
password string,
subscribersSize int,
redisChannel string,
) (*RedisTransport, error) {
client := redis.NewClient(&redis.Options{
Username: username,
Password: password,
Addr: address,
})
if pong := client.Ping(context.Background()); pong.String() != "ping: PONG" {
return nil, fmt.Errorf("failed to connect to Redis: %w", pong.Err())
}
return NewRedisTransportInstance(logger, client, subscribersSize, redisChannel)
}
func NewRedisTransportInstance(
logger Logger,
client *redis.Client,
subscribersSize int,
redisChannel string,
) (*RedisTransport, error) {
subscriber := client.PSubscribe(context.Background(), redisChannel)
subscribeCtx, subscribeCancel := context.WithCancel(context.Background())
transport := &RedisTransport{
logger: logger,
client: client,
subscribers: NewSubscriberList(subscribersSize),
publishScript: redis.NewScript(publishScript),
closed: make(chan any),
redisChannel: redisChannel,
}
go func() {
select {
case <-transport.closed:
if err := subscriber.Close(); err != nil && !errors.Is(err, redis.ErrClosed) {
logger.Error(err.Error())
}
<-subscribeCtx.Done()
if err := client.Close(); err != nil && !errors.Is(err, redis.ErrClosed) {
logger.Error(err.Error())
}
case <-subscribeCtx.Done():
}
}()
wg := sync.WaitGroup{}
wg.Add(1)
go func() {
defer wg.Done()
transport.subscribe(subscribeCtx, subscribeCancel, subscriber)
}()
return transport, nil
}
func (u Update) MarshalBinary() ([]byte, error) {
bytes, err := json.Marshal(u)
if err != nil {
return nil, fmt.Errorf("unable to marshal: %w", err)
}
return bytes, nil
}
func (t *RedisTransport) Dispatch(update *Update) error {
select {
case <-t.closed:
return ErrClosedTransport
default:
}
AssignUUID(update)
keys := []string{lastEventIDKey}
arguments := []interface{}{update.ID, t.redisChannel, update}
_, err := t.publishScript.Run(context.Background(), t.client, keys, arguments...).Result()
if err != nil {
return fmt.Errorf("redis failed to publish: %w", err)
}
return nil
}
func (t *RedisTransport) AddSubscriber(s *LocalSubscriber) error {
select {
case <-t.closed:
return ErrClosedTransport
default:
}
t.Lock()
t.subscribers.Add(s)
t.Unlock()
if s.RequestLastEventID != "" {
s.HistoryDispatched(EarliestLastEventID)
}
s.Ready()
return nil
}
func (t *RedisTransport) RemoveSubscriber(s *LocalSubscriber) error {
select {
case <-t.closed:
return ErrClosedTransport
default:
}
t.Lock()
defer t.Unlock()
t.subscribers.Remove(s)
return nil
}
func (t *RedisTransport) GetSubscribers() (string, []*Subscriber, error) {
select {
case <-t.closed:
return "", nil, ErrClosedTransport
default:
}
t.RLock()
defer t.RUnlock()
lastEventID, err := t.client.Get(context.Background(), lastEventIDKey).Result()
if err != nil {
return "", nil, fmt.Errorf("redis failed to get last event id: %w", err)
}
return lastEventID, getSubscribers(t.subscribers), nil
}
func (t *RedisTransport) Close() (err error) {
t.closedOnce.Do(func() {
t.Lock()
defer t.Unlock()
t.subscribers.Walk(0, func(s *LocalSubscriber) bool {
s.Disconnect()
return true
})
close(t.closed)
})
return nil
}
func (t *RedisTransport) subscribe(ctx context.Context, cancel context.CancelFunc, subscriber *redis.PubSub) {
for {
message, err := subscriber.ReceiveMessage(ctx)
if err != nil {
if errors.Is(err, redis.ErrClosed) {
cancel()
return
}
t.logger.Error(err.Error())
continue
}
var update Update
if err := json.Unmarshal([]byte(message.Payload), &update); err != nil {
t.logger.Error(err.Error())
continue
}
topics := make([]string, len(update.Topics))
copy(topics, update.Topics)
t.Lock()
for _, subscriber := range t.subscribers.MatchAny(&update) {
update.Topics = topics
subscriber.Dispatch(&update, false)
}
t.Unlock()
}
}
var (
_ Transport = (*RedisTransport)(nil)
_ TransportSubscribers = (*RedisTransport)(nil)
)