-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathio.go
196 lines (174 loc) · 4.16 KB
/
io.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
// Copyright 2015 Matthew Collins
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//Taken from https://github.com/Thinkofname/steven-go/blob/master/protocol/io.go
package main
import (
"errors"
"io"
"math"
)
type VarInt int32
type VarLong int64
const varPart = uint32(0x7F)
const varPartLong = uint64(0x7F)
var (
// ErrVarIntTooLarge is returned when a read varint was too large
// (more than 5 bytes)
ErrVarIntTooLarge = errors.New("VarInt too large")
// ErrVarLongTooLarge is returned when a read varint was too large
// (more than 10 bytes)
ErrVarLongTooLarge = errors.New("VarLong too large")
)
func varIntSize(i VarInt) int {
size := 0
ui := uint32(i)
for {
size++
if (ui & ^varPart) == 0 {
return size
}
ui >>= 7
}
}
// WriteVarInt encodes the passed VarInt into the writer.
func WriteVarInt(w io.Writer, i VarInt) error {
ui := uint32(i)
for {
if (ui & ^varPart) == 0 {
err := WriteByte(w, byte(ui))
return err
}
err := WriteByte(w, byte((ui&varPart)|0x80))
if err != nil {
return err
}
ui >>= 7
}
}
// ReadVarInt reads a VarInt encoded integer from the reader.
func ReadVarInt(r io.Reader) (VarInt, error) {
var size uint
var val uint32
for {
b, err := ReadByte(r)
if err != nil {
return VarInt(val), err
}
val |= (uint32(b) & varPart) << (size * 7)
size++
if size > 5 {
return VarInt(val), ErrVarIntTooLarge
}
if (b & 0x80) == 0 {
break
}
}
return VarInt(val), nil
}
// WriteVarLong encodes the passed VarLong into the writer.
func WriteVarLong(w io.Writer, i VarLong) error {
ui := uint64(i)
for {
if (ui & ^varPartLong) == 0 {
err := WriteByte(w, byte(ui))
return err
}
err := WriteByte(w, byte((ui&varPartLong)|0x80))
if err != nil {
return err
}
ui >>= 7
}
}
// ReadVarLong reads a VarLong encoded 64 bit integer from the reader.
func ReadVarLong(r io.Reader) (VarLong, error) {
var size uint
var val uint64
for {
b, err := ReadByte(r)
if err != nil {
return VarLong(val), err
}
val |= (uint64(b) & varPartLong) << (size * 7)
size++
if size > 10 {
return VarLong(val), ErrVarLongTooLarge
}
if (b & 0x80) == 0 {
break
}
}
return VarLong(val), nil
}
// WriteString writes a VarInt prefixed utf-8 string to the
// writer.
func WriteString(w io.Writer, str string) error {
b := []byte(str)
err := WriteVarInt(w, VarInt(len(b)))
if err != nil {
return err
}
_, err = w.Write(b)
return err
}
// ReadString reads a VarInt prefixed utf-8 string to the
// reader.
func ReadString(r io.Reader) (string, error) {
l, err := ReadVarInt(r)
if err != nil {
return "", nil
}
if l < 0 || l > math.MaxInt16 {
return "", errors.New("string length out of bounds")
}
buf := make([]byte, int(l))
_, err = io.ReadFull(r, buf)
return string(buf), err
}
// WriteBool writes a bool to the writer as a single byte.
func WriteBool(w io.Writer, b bool) error {
if b {
return WriteByte(w, 1)
}
return WriteByte(w, 0)
}
// ReadBool reads a single byte from the reader as a bool.
func ReadBool(r io.Reader) (bool, error) {
b, err := ReadByte(r)
if b == 0 {
return false, err
}
return true, err
}
// WriteByte writes a single byte to the writer. If the
// Writer is a ByteWriter then that will be used instead.
func WriteByte(w io.Writer, b byte) error {
if bw, ok := w.(io.ByteWriter); ok {
return bw.WriteByte(b)
}
var buf [1]byte
buf[0] = b
_, err := w.Write(buf[:1])
return err
}
// ReadByte reads a single byte from the Reader. If the
// Reader is a ByteReader then that will be used instead.
func ReadByte(r io.Reader) (byte, error) {
if br, ok := r.(io.ByteReader); ok {
return br.ReadByte()
}
var buf [1]byte
_, err := r.Read(buf[:1])
return buf[0], err
}