forked from peatio/quickfix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxml.go
63 lines (51 loc) · 1.75 KB
/
xml.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
package datadictionary
import (
"encoding/xml"
)
//XMLDoc is the unmarshalled root of a FIX Dictionary.
type XMLDoc struct {
Type string `xml:"type,attr"`
Major string `xml:"major,attr"`
Minor string `xml:"minor,attr"`
ServicePack int `xml:"servicepack,attr"`
Header *XMLComponent `xml:"header"`
Trailer *XMLComponent `xml:"trailer"`
Messages []*XMLComponent `xml:"messages>message"`
Components []*XMLComponent `xml:"components>component"`
Fields []*XMLField `xml:"fields>field"`
}
// XMLComponent can represent header, trailer, messages/message, or components/component xml elements.
type XMLComponent struct {
Name string `xml:"name,attr"`
MsgCat string `xml:"msgcat,attr"`
MsgType string `xml:"msgtype,attr"`
Members []*XMLComponentMember `xml:",any"`
}
//XMLField represents the fields/field xml element.
type XMLField struct {
Number int `xml:"number,attr"`
Name string `xml:"name,attr"`
Type string `xml:"type,attr"`
Values []*XMLValue `xml:"value"`
}
//XMLValue represents the fields/field/value xml element.
type XMLValue struct {
Enum string `xml:"enum,attr"`
Description string `xml:"description,attr"`
}
//XMLComponentMember represents child elements of header, trailer, messages/message, and components/component elements
type XMLComponentMember struct {
XMLName xml.Name
Name string `xml:"name,attr"`
Required string `xml:"required,attr"`
Members []*XMLComponentMember `xml:",any"`
}
func (member XMLComponentMember) isComponent() bool {
return member.XMLName.Local == "component"
}
func (member XMLComponentMember) isGroup() bool {
return member.XMLName.Local == "group"
}
func (member XMLComponentMember) isRequired() bool {
return member.Required == "Y"
}