forked from co11ter/goFAST
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.go
398 lines (343 loc) · 8.61 KB
/
template.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
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
// Copyright 2018 Alexander Poltoratskiy. All rights reserved.
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.
package fast
import (
"encoding/xml"
"io"
"strconv"
)
const (
tagTemplate = "template"
tagString = "string"
tagInt32 = "int32"
tagUint32 = "uInt32"
tagInt64 = "int64"
tagUint64 = "uInt64"
tagDecimal = "decimal"
tagSequence = "sequence"
tagGroup = "group"
tagLength = "length"
tagExponent = "exponent"
tagMantissa = "mantissa"
tagByteVector = "byteVector"
tagIncrement = "increment"
tagConstant = "constant"
tagDefault = "default"
tagCopy = "copy"
tagDelta = "delta"
tagTail = "tail"
attrID = "id"
attrName = "name"
attrPresence = "presence"
attrValue = "value"
attrCharset = "charset"
valueMandatory = "mandatory"
valueOptional = "optional"
valueUnicode = "unicode"
)
// InstructionType specifies the basic encoding of the field.
type InstructionType int
// InstructionOperator specifies ways to optimize the encoding of the field.
type InstructionOperator int
// InstructionPresence specifies presence of the field.
type InstructionPresence int
// Instructions type, operator and presence
const (
// TypeNull mark type of instruction null.
TypeNull InstructionType = iota
TypeUint32
TypeInt32
TypeUint64
TypeInt64
TypeLength
TypeExponent
TypeMantissa
TypeDecimal
TypeASCIIString
TypeUnicodeString
TypeByteVector
TypeSequence
TypeGroup
OperatorNone InstructionOperator = iota
OperatorConstant
OperatorDelta
OperatorDefault
OperatorCopy
OperatorIncrement // It's applicable to integer field types
OperatorTail // It's applicable to string and byte vector field types
PresenceMandatory InstructionPresence = iota
PresenceOptional
)
// Template collect instructions for this template
type Template struct {
ID uint
Name string
Instructions []*Instruction
}
type xmlParser struct {
decoder *xml.Decoder
}
// ParseXMLTemplate reads xml data from reader and return templates collection.
func ParseXMLTemplate(reader io.Reader) ([]*Template, error) {
return newXMLParser(reader).Parse()
}
func newXMLParser(reader io.Reader) *xmlParser {
return &xmlParser{decoder: xml.NewDecoder(reader)}
}
func (p *xmlParser) Parse() (templates []*Template, err error) {
var token xml.Token
var template *Template
for {
token, err = p.decoder.Token()
if err == io.EOF {
break
}
if err != nil {
return
}
if start, ok := token.(xml.StartElement); ok && start.Name.Local == tagTemplate {
template, err = p.parseTemplate(&start)
if err != nil {
return
}
templates = append(templates, template)
}
}
for _, tpl := range templates {
err = p.postProcessing(tpl.Instructions)
if err != nil {
break
}
}
return
}
func (p *xmlParser) postProcessing(instructions []*Instruction) (err error) {
for _, item := range instructions {
if !item.isValid() {
return ErrS2
}
item.key = strconv.Itoa(int(item.ID)) + ":" +
item.Name + ":" +
strconv.Itoa(int(item.Type))
err = p.postProcessing(item.Instructions)
if err != nil {
return err
}
if item.Type != TypeSequence && item.Type != TypeGroup {
continue
}
for _, instruction := range item.Instructions {
if instruction.hasPmapBit() {
item.pMapSize++
}
}
}
return
}
func (p *xmlParser) parseTemplate(token *xml.StartElement) (*Template, error) {
template, err := newTemplate(token)
if err != nil {
return nil, err
}
for {
token, err := p.decoder.Token()
if err != nil {
return nil, err
}
if start, ok := token.(xml.StartElement); ok {
instruction, err := p.parseInstruction(&start)
if err != nil {
return nil, err
}
template.Instructions = append(template.Instructions, instruction)
}
if _, ok := token.(xml.EndElement); ok {
break
}
}
return template, nil
}
func (p *xmlParser) parseDecimalInstructionOrOperator(token *xml.StartElement, instruction *Instruction) error {
inner, err := newInstruction(token)
if err != nil {
return err
}
if inner.Type != TypeNull {
inner, err := p.parseInstruction(token)
if err != nil {
return err
}
inner.ID = instruction.ID
inner.Name = instruction.Name
// If the decimal has optional presence, the exponent field is treated as on optional
// integer field and the mantissa field is treated as a mandatory integer field.
if inner.Type == TypeExponent && instruction.Presence == PresenceOptional {
inner.Presence = instruction.Presence
}
instruction.Instructions = append(instruction.Instructions, inner)
} else {
err = p.parseOperation(token, instruction)
}
return err
}
func (p *xmlParser) parseInstruction(token *xml.StartElement) (*Instruction, error) {
instruction, err := newInstruction(token)
if err != nil {
return nil, err
}
for {
token, err := p.decoder.Token()
if err != nil {
return nil, err
}
if start, ok := token.(xml.StartElement); ok {
switch instruction.Type {
case TypeSequence, TypeGroup:
inner, err := p.parseInstruction(&start)
if err != nil {
return nil, err
}
instruction.Instructions = append(instruction.Instructions, inner)
if inner.Type == TypeLength && instruction.Presence == PresenceOptional {
inner.Presence = PresenceOptional
}
case TypeDecimal:
err = p.parseDecimalInstructionOrOperator(&start, instruction)
default:
err = p.parseOperation(&start, instruction)
}
}
if err != nil {
return nil, err
}
if _, ok := token.(xml.EndElement); ok {
break
}
}
return instruction, nil
}
func (p *xmlParser) parseOperation(token *xml.StartElement, instruction *Instruction) error {
switch token.Name.Local {
case tagConstant:
instruction.Operator = OperatorConstant
case tagDefault:
instruction.Operator = OperatorDefault
case tagCopy:
instruction.Operator = OperatorCopy
case tagDelta:
instruction.Operator = OperatorDelta
case tagIncrement:
instruction.Operator = OperatorIncrement
default:
instruction.Operator = OperatorNone
}
var err error
instruction.Value, err = newValue(token, instruction.Type)
if err != nil {
return err
}
for {
token, err := p.decoder.Token()
if err != nil {
return err
}
if _, ok := token.(xml.EndElement); ok {
break
}
}
return nil
}
func newInstruction(token *xml.StartElement) (*Instruction, error) {
instruction := &Instruction{Operator: OperatorNone}
switch token.Name.Local {
case tagString:
instruction.Type = TypeASCIIString
case tagInt32:
instruction.Type = TypeInt32
case tagInt64:
instruction.Type = TypeInt64
case tagUint32:
instruction.Type = TypeUint32
case tagUint64:
instruction.Type = TypeUint64
case tagDecimal:
instruction.Type = TypeDecimal
case tagSequence:
instruction.Type = TypeSequence
case tagGroup:
instruction.Type = TypeGroup
case tagLength:
instruction.Type = TypeLength
case tagExponent:
instruction.Type = TypeExponent
case tagMantissa:
instruction.Type = TypeMantissa
case tagByteVector:
instruction.Type = TypeByteVector
default:
instruction.Type = TypeNull
}
for _, attr := range token.Attr {
switch attr.Name.Local {
case attrName:
instruction.Name = attr.Value
case attrID:
id, err := strconv.Atoi(attr.Value)
if err != nil {
return nil, err
}
instruction.ID = uint(id)
case attrPresence:
if attr.Value == valueMandatory {
instruction.Presence = PresenceMandatory
}
if attr.Value == valueOptional {
instruction.Presence = PresenceOptional
}
case attrCharset:
if attr.Value == valueUnicode {
instruction.Type = TypeUnicodeString
}
}
}
return instruction, nil
}
func newTemplate(token *xml.StartElement) (*Template, error) {
template := &Template{}
for _, attr := range token.Attr {
switch attr.Name.Local {
case attrName:
template.Name = attr.Value
case attrID:
id, err := strconv.Atoi(attr.Value)
if err != nil {
return nil, err
}
template.ID = uint(id)
}
}
return template, nil
}
func newValue(token *xml.StartElement, typ InstructionType) (value interface{}, err error) {
for _, attr := range token.Attr {
if attr.Name.Local == attrValue {
switch typ {
case TypeASCIIString, TypeUnicodeString:
value = attr.Value
case TypeUint64:
value, err = strconv.ParseUint(attr.Value, 10, 64)
case TypeUint32:
value, err = strconv.ParseUint(attr.Value, 10, 32)
value = uint32(value.(uint64))
case TypeInt64, TypeMantissa:
value, err = strconv.ParseInt(attr.Value, 10, 64)
case TypeInt32, TypeExponent:
value, err = strconv.ParseInt(attr.Value, 10, 32)
value = int32(value.(int64))
}
return
}
}
return
}