-
Notifications
You must be signed in to change notification settings - Fork 0
/
varstring.go
225 lines (190 loc) · 5.22 KB
/
varstring.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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
package schemer
import (
"encoding/json"
"errors"
"fmt"
"io"
"reflect"
"strconv"
"strings"
)
type VarStringSchema struct {
SchemaOptions
}
func (s *VarStringSchema) GoType() reflect.Type {
var t string
retval := reflect.TypeOf(t)
if s.Nullable() {
retval = reflect.PtrTo(retval)
}
return retval
}
func (s *VarStringSchema) MarshalJSON() ([]byte, error) {
return json.Marshal(map[string]interface{}{
"type": "string",
"nullable": s.Nullable(),
})
}
// Bytes encodes the schema in a portable binary format
func (s *VarStringSchema) MarshalSchemer() ([]byte, error) {
// string schemas are 1 byte long
var schema []byte = []byte{VarStringByte}
// The most signifiant bit indicates whether or not the type is nullable
if s.Nullable() {
schema[0] |= NullMask
}
return schema, nil
}
// Encode uses the schema to write the encoded value of i to the output stream
func (s *VarStringSchema) Encode(w io.Writer, i interface{}) error {
return s.EncodeValue(w, reflect.ValueOf(i))
}
// EncodeValue uses the schema to write the encoded value of v to the output stream
func (s *VarStringSchema) EncodeValue(w io.Writer, v reflect.Value) error {
done, err := PreEncode(w, &v, s.Nullable())
if err != nil || done {
return err
}
t := v.Type()
k := t.Kind()
if k == reflect.Interface {
v.Set(reflect.New(s.GoType()))
v = v.Elem().Elem()
t = v.Type()
k = t.Kind()
}
if k != reflect.String {
return fmt.Errorf("StringSchema only supports encoding string values")
}
var stringToEncode string = v.String()
var stringLen int = len(stringToEncode)
err = WriteUvarint(w, uint64(stringLen))
if err != nil {
return errors.New("cannot encode var string length as var int")
}
n, err := w.Write([]byte(stringToEncode))
if err == nil && n != stringLen {
return errors.New("unexpected number of bytes written")
}
return nil
}
// Decode uses the schema to read the next encoded value from the input stream and store it in i
func (s *VarStringSchema) Decode(r io.Reader, i interface{}) error {
if i == nil {
return fmt.Errorf("cannot decode to nil destination")
}
return s.DecodeValue(r, reflect.ValueOf(i))
}
// DecodeValue uses the schema to read the next encoded value from the input stream and store it in v
func (s *VarStringSchema) DecodeValue(r io.Reader, v reflect.Value) error {
done, err := PreDecode(r, &v, s.Nullable())
if err != nil || done {
return err
}
t := v.Type()
k := t.Kind()
if k == reflect.Interface {
v.Set(reflect.New(s.GoType()))
v = v.Elem().Elem()
t = v.Type()
k = t.Kind()
}
expectedLen, err := ReadUvarint(r)
if err != nil {
return err
}
buf := make([]byte, int(expectedLen))
_, err = io.ReadAtLeast(r, buf, int(expectedLen))
if err != nil {
return err
}
// when we return as a string, we will return it with the padding intact
decodedString := string(buf)
// but for conversions, having a trimmed up string will make things easier
trimString := strings.Trim(decodedString, " ")
// Ensure v is settable
// however: one important thing is to do make sure to process as many bytes as we are going to
// read from r before we do this
if !v.CanSet() {
return fmt.Errorf("decode destination is not settable")
}
// take a look at the destination
// bools can be decoded to integer types, bools, and strings
switch k {
case reflect.Int:
fallthrough
case reflect.Int8:
fallthrough
case reflect.Int16:
fallthrough
case reflect.Int32:
fallthrough
case reflect.Int64:
i, err := strconv.Atoi(trimString)
if err != nil {
return err
}
if v.OverflowInt(int64(i)) {
return fmt.Errorf("decoded float overlows destination")
}
v.SetInt(int64(i))
case reflect.Uint:
fallthrough
case reflect.Uint8:
fallthrough
case reflect.Uint16:
fallthrough
case reflect.Uint32:
fallthrough
case reflect.Uint64:
i, err := strconv.Atoi(trimString)
if err != nil {
return err
}
if v.OverflowUint(uint64(i)) {
return fmt.Errorf("decoded float overlows destination")
}
v.SetUint(uint64(i))
case reflect.Float32:
vFloat, err := strconv.ParseFloat(trimString, 32)
if err != nil {
return err
}
if v.OverflowFloat(vFloat) {
return fmt.Errorf("decoded float overlows destination")
}
v.SetFloat(vFloat)
case reflect.Float64:
vFloat, err := strconv.ParseFloat(trimString, 64)
if err != nil {
return err
}
if v.OverflowFloat(vFloat) {
return fmt.Errorf("decoded float overlows destination")
}
v.SetFloat(vFloat)
case reflect.Complex64:
fallthrough
case reflect.Complex128:
// see if we can put it into the destination??
return fmt.Errorf("not implemented")
case reflect.Bool:
if !s.WeakDecoding() {
return fmt.Errorf("cannot decode int to bool without weak decoding")
}
if trimString == "1" || trimString == "t" || trimString == "T" || trimString == "TRUE" || trimString == "true" || trimString == "True" {
v.SetBool(true)
return nil
}
if trimString == "0" || trimString == "f" || trimString == "F" || trimString == "FALSE" || trimString == "false" || trimString == "False" {
v.SetBool(false)
return nil
}
return fmt.Errorf("cannot decode string value %s into bool value", trimString)
case reflect.String:
v.SetString(decodedString)
default:
return fmt.Errorf("invalid destination %v", k)
}
return nil
}