forked from avito-tech/smart-redis-replication
-
Notifications
You must be signed in to change notification settings - Fork 0
/
conn.go
178 lines (158 loc) · 3.75 KB
/
conn.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
package replica
import (
"bytes"
"fmt"
"io"
"net"
"strconv"
"sync"
"github.com/avito-tech/smart-redis-replication/replica"
)
// Conn это постоянное соединение с redis сервером
type Conn struct {
sync.Mutex
replication bool
conn io.ReadWriteCloser
}
// NewConnect возвращает новый Conn
func NewConnect(host string, port int, db int) (*Conn, error) {
if host == "" {
return nil, fmt.Errorf("expected host")
}
if port <= 0 {
return nil, fmt.Errorf("expected port > 0")
}
if db < -1 {
return nil, fmt.Errorf("expected db > -2")
}
conn, err := net.Dial("tcp", fmt.Sprintf("%s:%d", host, port))
if err != nil {
return nil, err
}
redisConn, err := NewConn(conn)
if err != nil {
return nil, err
}
if db > -1 {
err = redisConn.Send("SELECT", db)
if err != nil {
err = redisConn.Close()
return nil, err
}
}
return redisConn, nil
}
// NewConn возвращает новый Conn
func NewConn(conn io.ReadWriteCloser) (*Conn, error) {
if conn == nil {
return nil, fmt.Errorf("expected conn io.ReadWriteCloser")
}
return &Conn{
conn: conn,
}, nil
}
func (c *Conn) replicationLock() {
c.Lock()
defer c.Unlock()
c.replication = true
}
// NewReplica возвращает новый Replica, не переводит коннект в режим репликации
func (c *Conn) NewReplica(config replica.Config) (replica.Replica, error) {
c.replicationLock()
return replica.NewReplica(c.conn, config), nil
}
// Send отправляет комманду и не читает ответ
func (c *Conn) Send(commandName string, args ...interface{}) error {
c.Lock()
defer c.Unlock()
if c.replication {
return fmt.Errorf("error send: replication mode is enabled")
}
return c.send(commandName, args...)
}
// Close закрывает соединение
func (c *Conn) Close() error {
err := c.conn.Close()
return err
}
// send отправляет комманду с аргументами в сокет
func (c *Conn) send(commandName string, args ...interface{}) error {
return c.writeCommand(commandName, args...)
}
// writeCommand формирует и записывает комманду непосредственно в сокет
// nolint:gocyclo
func (c *Conn) writeCommand(
commandName string,
args ...interface{},
) (
err error,
) {
err = c.writeLen('*', len(args)+1)
if err != nil {
return err
}
_, err = c.conn.Write([]byte(commandName))
if err != nil {
return err
}
for _, arg := range args {
if err != nil {
break
}
switch arg := arg.(type) {
case string:
err = c.writeString(arg)
case []byte:
err = c.writeBytes(arg)
case int:
err = c.writeInt64(int64(arg))
case int64:
err = c.writeInt64(arg)
case float64:
err = c.writeFloat64(arg)
case bool:
if arg {
err = c.writeString("1")
} else {
err = c.writeString("0")
}
case nil:
err = c.writeString("")
default:
var buf bytes.Buffer
fmt.Fprint(&buf, arg)
err = c.writeBytes(buf.Bytes())
}
}
return err
}
func (c *Conn) writeLen(prefix byte, n int) error {
_, err := c.conn.Write([]byte(fmt.Sprintf("%s%d\r\n", string(prefix), n)))
return err
}
func (c *Conn) writeString(s string) error {
err := c.writeLen('$', len(s))
if err != nil {
return err
}
_, err = c.conn.Write([]byte(fmt.Sprintf("%s\r\n", s)))
return err
}
func (c *Conn) writeInt64(n int64) error {
return c.writeBytes(strconv.AppendInt([]byte{}, n, 10))
}
func (c *Conn) writeFloat64(n float64) error {
return c.writeBytes(strconv.AppendFloat([]byte{}, n, 'g', -1, 64))
}
func (c *Conn) writeBytes(p []byte) error {
err := c.writeLen('$', len(p))
if err != nil {
return err
}
_, err = c.conn.Write(p)
if err != nil {
return err
}
_, err = c.conn.Write([]byte("\r\n"))
return err
}