-
Notifications
You must be signed in to change notification settings - Fork 113
/
stub.go
231 lines (196 loc) · 5.07 KB
/
stub.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
package radix
import (
"bufio"
"bytes"
"net"
"sync"
"time"
"errors"
"github.com/mediocregopher/radix/v3/resp"
"github.com/mediocregopher/radix/v3/resp/resp2"
)
type bufferAddr struct {
network, addr string
}
func (sa bufferAddr) Network() string {
return sa.network
}
func (sa bufferAddr) String() string {
return sa.addr
}
type buffer struct {
net.Conn // always nil
remoteAddr bufferAddr
bufL *sync.Cond
buf *bytes.Buffer
bufbr *bufio.Reader
closed bool
readDeadline time.Time
}
func newBuffer(remoteNetwork, remoteAddr string) *buffer {
buf := new(bytes.Buffer)
return &buffer{
remoteAddr: bufferAddr{network: remoteNetwork, addr: remoteAddr},
bufL: sync.NewCond(new(sync.Mutex)),
buf: buf,
bufbr: bufio.NewReader(buf),
}
}
func (b *buffer) Encode(m resp.Marshaler) error {
b.bufL.L.Lock()
var err error
if b.closed {
err = b.err("write", errClosed)
} else {
err = m.MarshalRESP(b.buf)
}
b.bufL.L.Unlock()
if err != nil {
return err
}
b.bufL.Broadcast()
return nil
}
func (b *buffer) Decode(u resp.Unmarshaler) error {
b.bufL.L.Lock()
defer b.bufL.L.Unlock()
var timeoutCh chan struct{}
if b.readDeadline.IsZero() {
// no readDeadline, timeoutCh will never be written to
} else if now := time.Now(); b.readDeadline.Before(now) {
return b.err("read", new(timeoutError))
} else {
timeoutCh = make(chan struct{}, 2)
sleep := b.readDeadline.Sub(now)
go func() {
time.Sleep(sleep)
timeoutCh <- struct{}{}
b.bufL.Broadcast()
}()
}
for b.buf.Len() == 0 && b.bufbr.Buffered() == 0 {
if b.closed {
return b.err("read", errClosed)
}
select {
case <-timeoutCh:
return b.err("read", new(timeoutError))
default:
}
// we have to periodically wakeup to double-check the timeoutCh, if
// there is one
if timeoutCh != nil {
go func() {
time.Sleep(1 * time.Second)
b.bufL.Broadcast()
}()
}
b.bufL.Wait()
}
return u.UnmarshalRESP(b.bufbr)
}
func (b *buffer) Close() error {
b.bufL.L.Lock()
defer b.bufL.L.Unlock()
if b.closed {
return b.err("close", errClosed)
}
b.closed = true
b.bufL.Broadcast()
return nil
}
func (b *buffer) RemoteAddr() net.Addr {
return b.remoteAddr
}
func (b *buffer) SetDeadline(t time.Time) error {
return b.SetReadDeadline(t)
}
func (b *buffer) SetReadDeadline(t time.Time) error {
b.bufL.L.Lock()
defer b.bufL.L.Unlock()
if b.closed {
return b.err("set", errClosed)
}
b.readDeadline = t
return nil
}
func (b *buffer) err(op string, err error) error {
return &net.OpError{
Op: op,
Net: "tcp",
Source: nil,
Addr: b.remoteAddr,
Err: err,
}
}
var errClosed = errors.New("use of closed network connection")
type timeoutError struct{}
func (e *timeoutError) Error() string { return "i/o timeout" }
func (e *timeoutError) Timeout() bool { return true }
func (e *timeoutError) Temporary() bool { return true }
////////////////////////////////////////////////////////////////////////////////
type stub struct {
*buffer
fn func([]string) interface{}
}
// Stub returns a (fake) Conn which pretends it is a Conn to a real redis
// instance, but is instead using the given callback to service requests. It is
// primarily useful for writing tests.
//
// When Encode is called the given value is marshalled into bytes then
// unmarshalled into a []string, which is passed to the callback. The return
// from the callback is then marshalled and buffered interanlly, and will be
// unmarshalled in the next call to Decode.
//
// remoteNetwork and remoteAddr can be empty, but if given will be used as the
// return from the RemoteAddr method.
//
// If the internal buffer is empty then Decode will block until Encode is called
// in a separate go-routine. The SetDeadline and SetReadDeadline methods can be
// used as usual to limit how long Decode blocks. All other inherited net.Conn
// methods will panic.
func Stub(remoteNetwork, remoteAddr string, fn func([]string) interface{}) Conn {
return &stub{
buffer: newBuffer(remoteNetwork, remoteAddr),
fn: fn,
}
}
func (s *stub) Do(a Action) error {
return a.Run(s)
}
func (s *stub) Encode(m resp.Marshaler) error {
// first marshal into a RawMessage
buf := new(bytes.Buffer)
if err := m.MarshalRESP(buf); err != nil {
return err
}
br := bufio.NewReader(buf)
var rm resp2.RawMessage
for {
if buf.Len() == 0 && br.Buffered() == 0 {
break
} else if err := rm.UnmarshalRESP(br); err != nil {
return err
}
// unmarshal that into a string slice
var ss []string
if err := rm.UnmarshalInto(resp2.Any{I: &ss}); err != nil {
return err
}
// get return from callback. Results implementing resp.Marshaler are
// assumed to be wanting to be written in all cases, otherwise if the
// result is an error it is assumed to want to be returned directly.
ret := s.fn(ss)
if m, ok := ret.(resp.Marshaler); ok {
return s.buffer.Encode(m)
} else if err, _ := ret.(error); err != nil {
return err
} else if err = s.buffer.Encode(resp2.Any{I: ret}); err != nil {
return err
}
}
return nil
}
func (s *stub) NetConn() net.Conn {
return s.buffer
}