This repository has been archived by the owner on Oct 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 37
/
redis_store.go
380 lines (302 loc) · 8.24 KB
/
redis_store.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
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
package incus
import (
"errors"
"fmt"
"log"
"time"
"github.com/garyburd/redigo/redis"
"github.com/spf13/viper"
)
const ClientsKey = "SocketClients"
const PageKey = "PageClients"
const PresenceKeyPrefix = "ClientPresence"
var timedOut = errors.New("Timed out waiting for Redis")
type RedisCallback (func(redis.Conn) (interface{}, error))
type RedisCommandResult struct {
Error error
Value interface{}
}
type RedisCommand struct {
Callback RedisCallback
Result chan RedisCommandResult
}
type RedisStore struct {
clientsKey string
pageKey string
presenceKeyPrefix string
presenceDuration int64
server string
port int
pool *redisPool
pollingFreq time.Duration
incomingRedisActivityCmds chan RedisCommand
redisPendingQueue *RedisQueue
}
//connection pool implimentation
type redisPool struct {
connections chan redis.Conn
maxIdle int
connFn func() (redis.Conn, error) // function to create new connection.
}
func newRedisStore(redisHost string, redisPort, numberOfActivityConsumers, connPoolSize int, stats RuntimeStats) *RedisStore {
pool := &redisPool{
connections: make(chan redis.Conn, connPoolSize),
maxIdle: connPoolSize,
connFn: func() (redis.Conn, error) {
client, err := redis.Dial("tcp", fmt.Sprintf("%s:%v", redisHost, redisPort))
if err != nil {
log.Printf("Redis connect failed: %s\n", err.Error())
return nil, err
}
return client, nil
},
}
redisPendingQueue := NewRedisQueue(numberOfActivityConsumers, stats, pool)
return &RedisStore{
redisPendingQueue: redisPendingQueue,
clientsKey: ClientsKey,
pageKey: PageKey,
presenceKeyPrefix: PresenceKeyPrefix,
presenceDuration: 60,
server: redisHost,
port: redisPort,
pool: pool,
pollingFreq: time.Millisecond * 100,
}
}
func (this *redisPool) Get() (redis.Conn, bool) {
var conn redis.Conn
select {
case conn = <-this.connections:
default:
conn, err := this.connFn()
if err != nil {
return nil, false
}
return conn, true
}
if err := this.testConn(conn); err != nil {
return this.Get() // if connection is bad, get the next one in line until base case is hit, then create new client
}
return conn, true
}
func (this *redisPool) Close(conn redis.Conn) {
select {
case this.connections <- conn:
return
default:
conn.Close()
}
}
func (this *redisPool) testConn(conn redis.Conn) error {
if _, err := conn.Do("PING"); err != nil {
conn.Close()
return err
}
return nil
}
func (this *RedisStore) GetConn() (redis.Conn, error) {
client, ok := this.pool.Get()
if !ok {
return nil, errors.New("Error while getting redis connection")
}
return client, nil
}
func (this *RedisStore) CloseConn(conn redis.Conn) {
this.pool.Close(conn)
}
func (this *RedisStore) Subscribe(c chan []byte, channel string) (redis.Conn, error) {
conn, err := this.GetConn()
if err != nil {
return nil, err
}
psc := redis.PubSubConn{Conn: conn}
psc.Subscribe(channel)
go func() {
defer conn.Close()
for {
switch v := psc.Receive().(type) {
case redis.Message:
c <- v.Data
case redis.Subscription:
case error:
log.Printf("Error receiving: %s. Reconnecting...", v.Error())
conn, err = this.GetConn()
if err != nil {
log.Println(err)
}
psc = redis.PubSubConn{Conn: conn}
psc.Subscribe(channel)
}
}
}()
return conn, nil
}
func (this *RedisStore) Poll(c chan []byte, queue string) error {
go func() {
consumer, _ := this.GetConn()
defer this.CloseConn(consumer)
var err error
for {
consumer, err = this.GetConn()
if err != nil {
time.Sleep(time.Millisecond * 100)
continue
}
message, err := redis.Bytes(consumer.Do("LPOP", queue))
this.CloseConn(consumer)
if err == nil && len(message) > 0 {
c <- message
} else {
time.Sleep(this.pollingFreq)
}
}
}()
return nil
}
func (this *RedisStore) MarkActive(user, socket_id string, timestamp int64) error {
return this.redisPendingQueue.RunAsyncTimeout(5*time.Second, func(conn redis.Conn) (result interface{}, err error) {
userSortedSetKey := this.presenceKeyPrefix + ":" + user
conn.Send("MULTI")
conn.Send("ZADD", userSortedSetKey, timestamp, socket_id)
conn.Send("EXPIRE", userSortedSetKey, timestamp+this.presenceDuration)
return conn.Do("EXEC")
}).Error
}
func (this *RedisStore) MarkInactive(user, socket_id string) error {
return this.redisPendingQueue.RunAsyncTimeout(5*time.Second, func(conn redis.Conn) (result interface{}, err error) {
userSortedSetKey := this.presenceKeyPrefix + ":" + user
return conn.Do("ZREM", userSortedSetKey, socket_id)
}).Error
}
func (this *RedisStore) QueryIsUserActive(user string, nowTimestamp int64) (bool, error) {
result := this.redisPendingQueue.RunAsyncTimeout(5*time.Second, func(conn redis.Conn) (result interface{}, err error) {
userSortedSetKey := this.presenceKeyPrefix + ":" + user
reply, err := conn.Do("ZRANGEBYSCORE", userSortedSetKey, nowTimestamp-this.presenceDuration, nowTimestamp)
els := reply.([]interface{})
return (len(els) > 0), nil
})
if result.Error != nil {
return false, result.Error
} else {
return result.Value.(bool), nil
}
}
func (this *RedisStore) GetIsLongpollKillswitchActive() (bool, error) {
killswitchKey := viper.Get("longpoll_killswitch")
result := this.redisPendingQueue.RunAsyncTimeout(5*time.Second, func(conn redis.Conn) (result interface{}, err error) {
return conn.Do("TTL", killswitchKey)
})
if result.Error == nil {
if result.Value.(int64) >= -1 {
return true, nil
} else {
return false, nil
}
}
return false, timedOut
}
func (this *RedisStore) ActivateLongpollKillswitch(seconds int64) error {
killswitchKey := viper.Get("longpoll_killswitch")
return this.redisPendingQueue.RunAsyncTimeout(5*time.Second, func(conn redis.Conn) (result interface{}, err error) {
return conn.Do("SETEX", killswitchKey, seconds, "1")
}).Error
}
func (this *RedisStore) DeactivateLongpollKillswitch() error {
killswitchKey := viper.Get("longpoll_killswitch")
return this.redisPendingQueue.RunAsyncTimeout(5*time.Second, func(conn redis.Conn) (result interface{}, err error) {
return conn.Do("DEL", killswitchKey)
}).Error
}
func (this *RedisStore) Publish(channel string, message string) {
publisher, err := this.GetConn()
if err != nil {
return
}
defer this.CloseConn(publisher)
publisher.Do("PUBLISH", channel, message)
}
func (this *RedisStore) Push(queue string, message string) {
client, err := this.GetConn()
if err != nil {
return
}
defer this.CloseConn(client)
client.Do("RPUSH", queue, message)
}
func (this *RedisStore) Save(sock *Socket) error {
client, err := this.GetConn()
if err != nil {
return err
}
defer this.CloseConn(client)
_, err = client.Do("SADD", this.clientsKey, sock.UID)
if err != nil {
return err
}
return nil
}
func (this *RedisStore) Remove(sock *Socket) error {
client, err := this.GetConn()
if err != nil {
return err
}
defer this.CloseConn(client)
_, err = client.Do("SREM", this.clientsKey, sock.UID)
if err != nil {
return err
}
return nil
}
func (this *RedisStore) Clients() ([]string, error) {
client, err := this.GetConn()
if err != nil {
return nil, err
}
defer this.CloseConn(client)
socks, err1 := redis.Strings(client.Do("SMEMBERS", this.clientsKey))
if err1 != nil {
return nil, err1
}
return socks, nil
}
func (this *RedisStore) Count() (int64, error) {
client, err := this.GetConn()
if err != nil {
return 0, err
}
defer this.CloseConn(client)
socks, err1 := redis.Int64(client.Do("SCARD", this.clientsKey))
if err1 != nil {
return 0, err1
}
return socks, nil
}
func (this *RedisStore) SetPage(sock *Socket) error {
client, err := this.GetConn()
if err != nil {
return err
}
defer this.CloseConn(client)
_, err = client.Do("HINCRBY", this.pageKey, sock.Page, 1)
if err != nil {
return err
}
return nil
}
func (this *RedisStore) UnsetPage(sock *Socket) error {
client, err := this.GetConn()
if err != nil {
return err
}
defer this.CloseConn(client)
var i int64
i, err = redis.Int64(client.Do("HINCRBY", this.pageKey, sock.Page, -1))
if err != nil {
return err
}
if i <= 0 {
client.Do("HDEL", this.pageKey, sock.Page)
}
return nil
}