forked from Terry-Mao/gopush-cluster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
redis.go
237 lines (221 loc) · 6.33 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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
// Copyright © 2014 Terry Mao, LiuDing All rights reserved.
// This file is part of gopush-cluster.
// gopush-cluster is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// gopush-cluster is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with gopush-cluster. If not, see <http://www.gnu.org/licenses/>.
package main
import (
"encoding/json"
"errors"
"fmt"
"github.com/Terry-Mao/gopush-cluster/hash"
"github.com/Terry-Mao/gopush-cluster/rpc"
"github.com/garyburd/redigo/redis"
"github.com/golang/glog"
"time"
)
const (
defaultRedisNode = "node1"
)
var (
RedisNoConnErr = errors.New("can't get a redis conn")
)
// RedisMessage struct encoding the composite info.
type RedisMessage struct {
Msg json.RawMessage `json:"msg"` // message content
GroupId uint `json:"gid"` // group id
Expire int64 `json:"expire"` // expire second
}
// Struct for delele message
type RedisDelMessage struct {
Key string
MIds []int64
}
type RedisStorage struct {
pool map[string]*redis.Pool
ketama *hash.Ketama
delCH chan *RedisDelMessage
}
// NewRedis initialize the redis pool and consistency hash ring.
func NewRedisStorage() *RedisStorage {
redisPool := map[string]*redis.Pool{}
for n, addr := range Conf.RedisSource {
tmp := addr
// WARN: closures use
redisPool[n] = &redis.Pool{
MaxIdle: Conf.RedisMaxIdle,
MaxActive: Conf.RedisMaxActive,
IdleTimeout: Conf.RedisIdleTimeout,
Dial: func() (redis.Conn, error) {
conn, err := redis.Dial("tcp", tmp)
if err != nil {
glog.Errorf("redis.Dial(\"tcp\", \"%s\") error(%v)", tmp, err)
return nil, err
}
return conn, err
},
}
}
s := &RedisStorage{pool: redisPool, ketama: hash.NewKetama(len(redisPool), 255), delCH: make(chan *RedisDelMessage, 10240)}
go s.clean()
return s
}
// Save implements the Storage Save method.
func (s *RedisStorage) Save(key string, msg json.RawMessage, mid int64, gid uint, expire uint) error {
conn := s.getConn(key)
if conn == nil {
return RedisNoConnErr
}
defer conn.Close()
rm := &RedisMessage{Msg: msg, GroupId: gid, Expire: int64(expire) + time.Now().Unix()}
m, err := json.Marshal(rm)
if err != nil {
glog.Errorf("json.Marshal(\"%v\") error(%v)", rm, err)
return err
}
//ZADD
if err := conn.Send("ZADD", key, mid, m); err != nil {
glog.Errorf("conn.Send(\"ZADD\", \"%s\", %d, \"%s\") error(%v)", key, mid, string(m), err)
return err
}
//ZREMRANGEBYRANK
if err := conn.Send("ZREMRANGEBYRANK", key, 0, -1*(Conf.RedisMaxStore+1)); err != nil {
glog.Errorf("conn.Send(\"ZREMRANGEBYRANK\", \"%s\", 0, %d) error(%v)", key, mid, -1*(Conf.RedisMaxStore+1), err)
return err
}
if err := conn.Flush(); err != nil {
glog.Errorf("conn.Flush() error(%v)", err)
return err
}
//ZADD Receive
_, err = conn.Receive()
if err != nil {
glog.Errorf("conn.Receive() error(%v)", err)
return err
}
//ZREMRANGEBYRANK Receive
_, err = conn.Receive()
if err != nil {
glog.Errorf("conn.Receive() error(%v)", err)
return err
}
return nil
}
// Save implements the Storage Get method.
func (s *RedisStorage) Get(key string, mid int64) ([]*rpc.Message, error) {
var (
cmid int64
b []byte
now = time.Now().Unix()
)
conn := s.getConn(key)
if conn == nil {
return nil, RedisNoConnErr
}
defer conn.Close()
values, err := redis.Values(conn.Do("ZRANGEBYSCORE", key, fmt.Sprintf("(%d", mid), "+inf", "WITHSCORES"))
if err != nil {
glog.Errorf("conn.Do(\"ZRANGEBYSCORE\", \"%s\", \"%s\", \"+inf\", \"WITHSCORES\") error(%v)", err)
return nil, err
}
glog.V(1).Infof("values: %v", values)
msgs := []*rpc.Message{}
delMsgs := []int64{}
for len(values) > 0 {
glog.V(2).Infof("redis.Scan: %d", len(values))
values, err = redis.Scan(values, &b, &cmid)
if err != nil {
glog.Errorf("redis.Scan() error(%v)", err)
return nil, err
}
rm := &RedisMessage{}
if err := json.Unmarshal(b, rm); err != nil {
glog.Errorf("json.Unmarshal(\"%s\", rm) error(%v)", string(b), err)
delMsgs = append(delMsgs, cmid)
continue
}
// check expire
if rm.Expire < now {
glog.Warningf("user_key: \"%s\" msg: %d expired", key, cmid)
delMsgs = append(delMsgs, cmid)
continue
}
m := &rpc.Message{MsgId: cmid, Msg: rm.Msg, GroupId: rm.GroupId}
msgs = append(msgs, m)
}
// delete unmarshal failed and expired message
if len(delMsgs) > 0 {
select {
case s.delCH <- &RedisDelMessage{Key: key, MIds: delMsgs}:
default:
glog.Warningf("user_key: \"%s\" send del messages failed, channel full", key)
}
}
return msgs, nil
}
// Del implements the Storage DelKey method.
func (s *RedisStorage) Del(key string) error {
conn := s.getConn(key)
if conn == nil {
return RedisNoConnErr
}
defer conn.Close()
_, err := conn.Do("DEL", key)
if err != nil {
glog.Errorf("conn.Do(\"DEL\", \"%s\") error(%v)", key, err)
return err
}
return nil
}
// DelMulti implements the Storage DelMulti method.
func (s *RedisStorage) clean() {
for {
info := <-s.delCH
conn := s.getConn(info.Key)
if conn == nil {
glog.Warning("get redis connection nil")
continue
}
for _, mid := range info.MIds {
if err := conn.Send("ZREMRANGEBYSCORE", info.Key, mid, mid); err != nil {
glog.Errorf("conn.Send(\"ZREMRANGEBYSCORE\", \"%s\", %d, %d) error(%v)", info.Key, mid, mid, err)
conn.Close()
continue
}
}
if err := conn.Flush(); err != nil {
glog.Errorf("conn.Flush() error(%v)", err)
conn.Close()
continue
}
for _, _ = range info.MIds {
_, err := conn.Receive()
if err != nil {
glog.Errorf("conn.Receive() error(%v)", err)
continue
}
}
conn.Close()
}
}
// getConn get the connection of matching with key using ketama hashing.
func (s *RedisStorage) getConn(key string) redis.Conn {
node := defaultRedisNode
if len(s.pool) > 1 {
node = s.ketama.Node(key)
}
p, ok := s.pool[node]
if !ok {
glog.Warningf("no exists key:\"%s\" in redis pool", key)
return nil
}
glog.V(1).Infof("key:\"%s\", hit node:\"%s\"", key, node)
return p.Get()
}