-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscanner.go
293 lines (235 loc) · 4.95 KB
/
scanner.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
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
package nvlist
import (
"bytes"
"encoding/binary"
"fmt"
"io"
"log"
)
type Scanner struct {
byteOrder binary.ByteOrder
r io.Reader
header Header
list List
pair Pair
fieldName string
fieldType Type
fieldNumElements int
value interface{}
err error
bytes []byte
}
func NewScanner(r io.Reader) (rc *Scanner) {
rc = &Scanner{
r: r,
}
if err := binary.Read(r, binary.BigEndian, &rc.header); err != nil {
rc.err = err
return
}
rc.byteOrder = func() binary.ByteOrder {
if rc.header.Endian == BigEndian {
return binary.BigEndian
}
return binary.LittleEndian
}()
if err := binary.Read(r, rc.byteOrder, &rc.list); err != nil {
rc.err = err
return
}
return
}
func (s *Scanner) ReadValue(r io.Reader, t Type) (interface{}, error) {
switch t {
case DontCare:
case Unknown:
case Boolean:
return true, nil
case Byte:
case Int16:
case Uint16:
case Int32:
case Uint32:
case Int64:
case Uint64:
var rc uint64
if err := binary.Read(r, s.byteOrder, &rc); err != nil {
return nil, err
}
return rc, nil
case String:
var length int32
if err := binary.Read(r, s.byteOrder, &length); err != nil {
return "", err
}
align4 := func(i int32) int32 {
return (i + 3) & ^3
}
str := make([]byte, align4(length))
if err := binary.Read(r, s.byteOrder, str); err != nil {
return "", err
}
return string(str[:length]), nil
case ByteArray:
case Int16Array:
case Uint16Array:
case Int32Array:
case Uint32Array:
case Int64Array:
case Uint64Array:
case StringArray:
case HRTime:
case NVList:
return s.ReadSub(r)
case NVListArray:
rc := make([]map[string]interface{}, 0, s.NumElements())
for i := 0; i < s.NumElements(); i++ {
v, err := s.ReadSub(r)
if err != nil {
log.Fatal(err)
}
rc = append(rc, v)
}
return rc, nil
case BooleanValue:
case Int8:
case Uint8:
case BooleanArray:
case Int8Array:
case Uint8Array:
}
return nil, fmt.Errorf("unknown type %q", t)
}
func (s *Scanner) ReadSub(r io.Reader) (map[string]interface{}, error) {
rc := make(map[string]interface{})
scn := s.NewSubScanner(r)
if err := scn.Error(); err != nil {
return nil, err
}
for scn.Next() {
rc[scn.Name()] = scn.Value()
}
if err := scn.Error(); err != nil {
return nil, err
}
return rc, nil
}
func (s *Scanner) ReadNumElements(r io.Reader) (int32, error) {
var rc int32
if err := binary.Read(r, s.byteOrder, &rc); err != nil {
return -1, err
}
return rc, nil
}
func (s *Scanner) ReadType(r io.Reader) (Type, error) {
var rc Type
if err := binary.Read(r, s.byteOrder, &rc); err != nil {
return -1, err
}
return rc, nil
}
func (s *Scanner) Bytes() []byte {
return s.bytes
}
func (s *Scanner) ValueString() string {
switch v := s.Value().(type) {
case uint64:
return fmt.Sprintf("%d", v)
case string:
return v
}
return "*unrepresentable*"
}
func (s *Scanner) ReadString(r io.Reader) (string, error) {
// read 4 byte length
var length int32
if err := binary.Read(r, s.byteOrder, &length); err != nil {
return "", err
}
align4 := func(i int32) int32 {
return (i + 3) & ^3
}
str := make([]byte, align4(length))
if err := binary.Read(r, s.byteOrder, str); err != nil {
return "", err
}
return string(str[:length]), nil
}
func (s *Scanner) Name() string {
return s.fieldName
}
func (s *Scanner) Value() interface{} {
return s.value
}
func (s *Scanner) Type() Type {
return s.fieldType
}
func (s *Scanner) NumElements() int {
return s.fieldNumElements
}
func (s *Scanner) Error() error {
if s.err != nil {
return s.err
}
return nil
}
func (s *Scanner) FieldSize() int {
return int(s.pair.Size)
}
func (s *Scanner) Next() bool {
// Do not continue if the scanner is in an errored state.
if s.err != nil {
return false
}
if s.err = binary.Read(s.r, s.byteOrder, &s.pair); s.err != nil {
return false
}
if s.pair.Size == 0 && s.pair.DecodedSize == 0 {
return false
}
// read entire record into a byte slice
record := make([]byte, s.pair.Size-8)
if s.err = binary.Read(s.r, s.byteOrder, record); s.err != nil {
return false
}
// lets read from the remainding bytes
br := bytes.NewReader(record)
// read the name of the field
name, err := s.ReadString(br)
if err != nil {
s.err = err
return false
}
s.fieldName = name
typ, err := s.ReadType(br)
if err != nil {
s.err = err
return false
}
s.fieldType = typ
nelements, err := s.ReadNumElements(br)
if err != nil {
s.err = err
return false
}
s.fieldNumElements = int(nelements)
value, err := s.ReadValue(br, s.fieldType)
if err != nil {
s.err = err
return false
}
s.value = value
return true
}
func (s *Scanner) NewSubScanner(r io.Reader) (rc *Scanner) {
rc = &Scanner{
r: r,
byteOrder: s.byteOrder,
}
// if err := binary.Read(r, rc.byteOrder, &rc.list); err != nil {
if err := binary.Read(r, s.byteOrder, &rc.list); err != nil {
rc.err = err
return
}
return
}