|
@@ -7,8 +7,10 @@ import (
|
|
|
|
|
|
var errInvalidArrayLength = PacketDecodingError{"invalid array length"}
|
|
|
var errInvalidByteSliceLength = PacketDecodingError{"invalid byteslice length"}
|
|
|
+var errInvalidByteSliceLengthType = PacketDecodingError{"invalid byteslice length type"}
|
|
|
var errInvalidStringLength = PacketDecodingError{"invalid string length"}
|
|
|
var errInvalidSubsetSize = PacketDecodingError{"invalid subset size"}
|
|
|
+var errVarintOverflow = PacketDecodingError{"varint overflow"}
|
|
|
|
|
|
type realDecoder struct {
|
|
|
raw []byte
|
|
@@ -58,6 +60,20 @@ func (rd *realDecoder) getInt64() (int64, error) {
|
|
|
return tmp, nil
|
|
|
}
|
|
|
|
|
|
+func (rd *realDecoder) getVarint() (int64, error) {
|
|
|
+ tmp, n := binary.Varint(rd.raw[rd.off:])
|
|
|
+ if n == 0 {
|
|
|
+ rd.off = len(rd.raw)
|
|
|
+ return -1, ErrInsufficientData
|
|
|
+ }
|
|
|
+ if n < 0 {
|
|
|
+ rd.off -= n
|
|
|
+ return -1, errVarintOverflow
|
|
|
+ }
|
|
|
+ rd.off += n
|
|
|
+ return tmp, nil
|
|
|
+}
|
|
|
+
|
|
|
func (rd *realDecoder) getArrayLength() (int, error) {
|
|
|
if rd.remaining() < 4 {
|
|
|
rd.off = len(rd.raw)
|
|
@@ -78,28 +94,26 @@ func (rd *realDecoder) getArrayLength() (int, error) {
|
|
|
|
|
|
func (rd *realDecoder) getBytes() ([]byte, error) {
|
|
|
tmp, err := rd.getInt32()
|
|
|
-
|
|
|
if err != nil {
|
|
|
return nil, err
|
|
|
}
|
|
|
+ if tmp == -1 {
|
|
|
+ return nil, nil
|
|
|
+ }
|
|
|
|
|
|
- n := int(tmp)
|
|
|
+ return rd.getRawBytes(int(tmp))
|
|
|
+}
|
|
|
|
|
|
- switch {
|
|
|
- case n < -1:
|
|
|
- return nil, errInvalidByteSliceLength
|
|
|
- case n == -1:
|
|
|
+func (rd *realDecoder) getVarintBytes() ([]byte, error) {
|
|
|
+ tmp, err := rd.getVarint()
|
|
|
+ if err != nil {
|
|
|
+ return nil, err
|
|
|
+ }
|
|
|
+ if tmp == -1 {
|
|
|
return nil, nil
|
|
|
- case n == 0:
|
|
|
- return make([]byte, 0), nil
|
|
|
- case n > rd.remaining():
|
|
|
- rd.off = len(rd.raw)
|
|
|
- return nil, ErrInsufficientData
|
|
|
}
|
|
|
|
|
|
- tmpStr := rd.raw[rd.off : rd.off+n]
|
|
|
- rd.off += n
|
|
|
- return tmpStr, nil
|
|
|
+ return rd.getRawBytes(int(tmp))
|
|
|
}
|
|
|
|
|
|
func (rd *realDecoder) getString() (string, error) {
|
|
@@ -221,8 +235,16 @@ func (rd *realDecoder) remaining() int {
|
|
|
}
|
|
|
|
|
|
func (rd *realDecoder) getSubset(length int) (packetDecoder, error) {
|
|
|
+ buf, err := rd.getRawBytes(length)
|
|
|
+ if err != nil {
|
|
|
+ return nil, err
|
|
|
+ }
|
|
|
+ return &realDecoder{raw: buf}, nil
|
|
|
+}
|
|
|
+
|
|
|
+func (rd *realDecoder) getRawBytes(length int) ([]byte, error) {
|
|
|
if length < 0 {
|
|
|
- return nil, errInvalidSubsetSize
|
|
|
+ return nil, errInvalidByteSliceLength
|
|
|
} else if length > rd.remaining() {
|
|
|
rd.off = len(rd.raw)
|
|
|
return nil, ErrInsufficientData
|
|
@@ -230,7 +252,7 @@ func (rd *realDecoder) getSubset(length int) (packetDecoder, error) {
|
|
|
|
|
|
start := rd.off
|
|
|
rd.off += length
|
|
|
- return &realDecoder{raw: rd.raw[start:rd.off]}, nil
|
|
|
+ return rd.raw[start:rd.off], nil
|
|
|
}
|
|
|
|
|
|
|