redis/parser.go

237 lines
4.9 KiB
Go
Raw Normal View History

package redis
import (
"errors"
"fmt"
"strconv"
"github.com/vmihailenco/bufio"
)
//------------------------------------------------------------------------------
2012-08-25 17:34:13 +04:00
// Represents Redis nil reply.
var Nil = errors.New("(nil)")
//------------------------------------------------------------------------------
var (
errReaderTooSmall = errors.New("redis: reader is too small")
errValNotSet = errors.New("redis: value is not set")
)
//------------------------------------------------------------------------------
2012-08-26 13:18:42 +04:00
type parserError struct {
err error
}
func (e *parserError) Error() string {
return e.err.Error()
}
//------------------------------------------------------------------------------
2012-08-17 22:36:48 +04:00
func appendReq(buf []byte, args []string) []byte {
buf = append(buf, '*')
buf = strconv.AppendUint(buf, uint64(len(args)), 10)
buf = append(buf, '\r', '\n')
for _, arg := range args {
buf = append(buf, '$')
buf = strconv.AppendUint(buf, uint64(len(arg)), 10)
buf = append(buf, '\r', '\n')
buf = append(buf, []byte(arg)...)
buf = append(buf, '\r', '\n')
}
return buf
}
//------------------------------------------------------------------------------
2012-08-17 22:36:48 +04:00
type reader interface {
ReadLine() ([]byte, bool, error)
2012-08-13 15:45:32 +04:00
Read([]byte) (int, error)
ReadN(n int) ([]byte, error)
2012-08-17 22:36:48 +04:00
Buffered() int
}
2012-08-17 22:36:48 +04:00
func readLine(rd reader) ([]byte, error) {
line, isPrefix, err := rd.ReadLine()
if err != nil {
return line, err
}
if isPrefix {
return line, errReaderTooSmall
}
return line, nil
}
func readN(rd reader, n int) ([]byte, error) {
buf, err := rd.ReadN(n)
if err == bufio.ErrBufferFull {
newBuf := make([]byte, n)
r := copy(newBuf, buf)
buf = newBuf
for r < n {
n, err := rd.Read(buf[r:])
if err != nil {
return nil, err
}
r += n
}
} else if err != nil {
return nil, err
}
return buf, nil
}
//------------------------------------------------------------------------------
func ParseReq(rd reader) ([]string, error) {
line, err := readLine(rd)
if err != nil {
return nil, err
}
if line[0] != '*' {
return []string{string(line)}, nil
}
numReplies, err := strconv.ParseInt(string(line[1:]), 10, 64)
if err != nil {
return nil, err
}
args := make([]string, 0, numReplies)
for i := int64(0); i < numReplies; i++ {
line, err = readLine(rd)
if err != nil {
return nil, err
}
if line[0] != '$' {
return nil, fmt.Errorf("Expected '$', but got %q", line)
}
argLen, err := strconv.ParseInt(string(line[1:]), 10, 32)
if err != nil {
return nil, err
}
arg, err := readN(rd, int(argLen)+2)
if err != nil {
return nil, err
}
args = append(args, string(arg[:argLen]))
}
return args, nil
}
//------------------------------------------------------------------------------
2012-08-20 14:42:33 +04:00
const (
ifaceSlice = iota
stringSlice
boolSlice
)
2012-08-17 22:36:48 +04:00
func parseReply(rd reader) (interface{}, error) {
2012-08-20 14:42:33 +04:00
return _parseReply(rd, ifaceSlice)
}
func parseStringSliceReply(rd reader) (interface{}, error) {
return _parseReply(rd, stringSlice)
}
2012-08-20 14:42:33 +04:00
func parseBoolSliceReply(rd reader) (interface{}, error) {
return _parseReply(rd, boolSlice)
2012-08-17 22:36:48 +04:00
}
2012-08-20 14:42:33 +04:00
func _parseReply(rd reader, multiBulkType int) (interface{}, error) {
line, err := readLine(rd)
if err != nil {
2012-08-26 13:18:42 +04:00
return 0, &parserError{err}
}
switch line[0] {
case '-':
return nil, errors.New(string(line[1:]))
case '+':
return string(line[1:]), nil
case ':':
2012-08-26 13:18:42 +04:00
v, err := strconv.ParseInt(string(line[1:]), 10, 64)
if err != nil {
return 0, &parserError{err}
}
return v, nil
case '$':
if len(line) == 3 && line[1] == '-' && line[2] == '1' {
return "", Nil
}
replyLenInt32, err := strconv.ParseInt(string(line[1:]), 10, 32)
if err != nil {
2012-08-26 13:18:42 +04:00
return "", &parserError{err}
}
replyLen := int(replyLenInt32) + 2
line, err = readN(rd, replyLen)
if err != nil {
2012-08-26 13:18:42 +04:00
return "", &parserError{err}
}
return string(line[:len(line)-2]), nil
case '*':
if len(line) == 3 && line[1] == '-' && line[2] == '1' {
return nil, Nil
}
2012-08-26 13:18:42 +04:00
numReplies, err := strconv.ParseInt(string(line[1:]), 10, 64)
if err != nil {
return nil, &parserError{err}
}
2012-08-20 14:42:33 +04:00
switch multiBulkType {
case stringSlice:
vals := make([]string, 0, numReplies)
2012-08-17 22:36:48 +04:00
for i := int64(0); i < numReplies; i++ {
v, err := parseReply(rd)
2012-08-20 14:42:33 +04:00
if err != nil {
2012-08-17 22:36:48 +04:00
return nil, err
} else {
2012-08-20 14:42:33 +04:00
vals = append(vals, v.(string))
2012-08-17 22:36:48 +04:00
}
}
2012-08-17 22:36:48 +04:00
return vals, nil
2012-08-20 14:42:33 +04:00
case boolSlice:
vals := make([]bool, 0, numReplies)
2012-08-17 22:36:48 +04:00
for i := int64(0); i < numReplies; i++ {
v, err := parseReply(rd)
if err != nil {
return nil, err
} else {
2012-08-20 14:42:33 +04:00
vals = append(vals, v.(int64) == 1)
}
}
return vals, nil
default:
vals := make([]interface{}, 0, numReplies)
for i := int64(0); i < numReplies; i++ {
v, err := parseReply(rd)
if err == Nil {
vals = append(vals, nil)
} else if err != nil {
return nil, err
} else {
vals = append(vals, v)
2012-08-17 22:36:48 +04:00
}
}
return vals, nil
}
default:
2012-08-26 13:18:42 +04:00
return nil, &parserError{fmt.Errorf("redis: can't parse %q", line)}
}
panic("not reachable")
}