-
Notifications
You must be signed in to change notification settings - Fork 4
/
smallbuf.go
69 lines (58 loc) · 1007 Bytes
/
smallbuf.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
package tarantool
import (
"errors"
"io"
)
type smallBuf struct {
b []byte
p int
}
func (s *smallBuf) Read(d []byte) (l int, err error) {
l = len(s.b) - s.p
if l == 0 && len(d) > 0 {
return 0, io.EOF
}
if l > len(d) {
l = len(d)
}
copy(d, s.b[s.p:])
s.p += l
return l, nil
}
func (s *smallBuf) ReadByte() (b byte, err error) {
if s.p == len(s.b) {
return 0, io.EOF
}
b = s.b[s.p]
s.p++
return b, nil
}
func (s *smallBuf) UnreadByte() error {
if s.p == 0 {
return errors.New("could not unread")
}
s.p--
return nil
}
func (s *smallBuf) Len() int {
return len(s.b) - s.p
}
func (s *smallBuf) Bytes() []byte {
if len(s.b) > s.p {
return s.b[s.p:]
}
return nil
}
type smallWBuf []byte
func (s *smallWBuf) Write(b []byte) (int, error) {
*s = append(*s, b...)
return len(b), nil
}
func (s *smallWBuf) WriteByte(b byte) error {
*s = append(*s, b)
return nil
}
func (s *smallWBuf) WriteString(ss string) (int, error) {
*s = append(*s, ss...)
return len(ss), nil
}