forked from rethinkdb/rethinkdb-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconnection_helper.go
91 lines (72 loc) · 2.29 KB
/
connection_helper.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
package gorethink
import (
"bufio"
"encoding/binary"
"fmt"
"io"
p "github.com/dancannon/gorethink/ql2"
)
// Write 'data' to conn
func (c *Connection) writeData(data []byte) error {
_, err := c.conn.Write(data[:])
if err != nil {
return RqlConnectionError{err.Error()}
}
return nil
}
func (c *Connection) writeHandshakeReq() error {
pos := 0
dataLen := 4 + 4 + len(c.opts.AuthKey) + 4
data := c.buf.takeSmallBuffer(dataLen)
if data == nil {
return RqlDriverError{ErrBusyBuffer.Error()}
}
// Send the protocol version to the server as a 4-byte little-endian-encoded integer
binary.LittleEndian.PutUint32(data[pos:], uint32(p.VersionDummy_V0_3))
pos += 4
// Send the length of the auth key to the server as a 4-byte little-endian-encoded integer
binary.LittleEndian.PutUint32(data[pos:], uint32(len(c.opts.AuthKey)))
pos += 4
// Send the auth key as an ASCII string
if len(c.opts.AuthKey) > 0 {
pos += copy(data[pos:], c.opts.AuthKey)
}
// Send the protocol type as a 4-byte little-endian-encoded integer
binary.LittleEndian.PutUint32(data[pos:], uint32(p.VersionDummy_JSON))
pos += 4
return c.writeData(data)
}
func (c *Connection) readHandshakeSuccess() error {
reader := bufio.NewReader(c.conn)
line, err := reader.ReadBytes('\x00')
if err != nil {
if err == io.EOF {
return fmt.Errorf("Unexpected EOF: %s", string(line))
}
return RqlConnectionError{err.Error()}
}
// convert to string and remove trailing NUL byte
response := string(line[:len(line)-1])
if response != "SUCCESS" {
// we failed authorization or something else terrible happened
return RqlDriverError{fmt.Sprintf("Server dropped connection with message: \"%s\"", response)}
}
return nil
}
func (c *Connection) writeQuery(token int64, q []byte) error {
pos := 0
dataLen := 8 + 4 + len(q)
data := c.buf.takeBuffer(dataLen)
if data == nil {
return RqlDriverError{ErrBusyBuffer.Error()}
}
// Send the protocol version to the server as a 4-byte little-endian-encoded integer
binary.LittleEndian.PutUint64(data[pos:], uint64(token))
pos += 8
// Send the length of the auth key to the server as a 4-byte little-endian-encoded integer
binary.LittleEndian.PutUint32(data[pos:], uint32(len(q)))
pos += 4
// Send the auth key as an ASCII string
pos += copy(data[pos:], q)
return c.writeData(data)
}