-
Notifications
You must be signed in to change notification settings - Fork 308
/
Copy pathgenerate-fix.go
194 lines (160 loc) · 4.17 KB
/
generate-fix.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
package main
import (
"bytes"
"flag"
"fmt"
"log"
"os"
"path"
"strconv"
"strings"
"sync"
"text/template"
"github.com/quickfixgo/quickfix/cmd/generate-fix/internal"
"github.com/quickfixgo/quickfix/datadictionary"
)
var (
waitGroup sync.WaitGroup
errors = make(chan error)
)
func usage() {
fmt.Fprintf(os.Stderr, "usage: %v [flags] <path to data dictionary> ... \n", os.Args[0])
flag.PrintDefaults()
os.Exit(2)
}
func getPackageName(fixSpec *datadictionary.DataDictionary) string {
pkg := strings.ToLower(fixSpec.FIXType) + strconv.Itoa(fixSpec.Major) + strconv.Itoa(fixSpec.Minor)
if fixSpec.ServicePack != 0 {
pkg += "sp" + strconv.Itoa(fixSpec.ServicePack)
}
return pkg
}
func getTransportPackageName(fixSpec *datadictionary.DataDictionary) string {
if fixSpec.Major >= 5 {
return "fixt11"
}
return getPackageName(fixSpec)
}
type component struct {
Package string
FIXPackage string
TransportPackage string
FIXSpec *datadictionary.DataDictionary
Name string
*datadictionary.MessageDef
}
func genHeader(pkg string, spec *datadictionary.DataDictionary) {
c := component{
Package: pkg,
Name: "Header",
MessageDef: spec.Header,
FIXSpec: spec,
}
gen(internal.HeaderTemplate, path.Join(pkg, "header.generated.go"), c)
}
func genTrailer(pkg string, spec *datadictionary.DataDictionary) {
c := component{
Package: pkg,
Name: "Trailer",
MessageDef: spec.Trailer,
}
gen(internal.TrailerTemplate, path.Join(pkg, "trailer.generated.go"), c)
}
func genMessage(fixPkg string, spec *datadictionary.DataDictionary, msg *datadictionary.MessageDef) {
pkgName := strings.ToLower(msg.Name)
transportPkg := getTransportPackageName(spec)
c := component{
Package: pkgName,
FIXPackage: fixPkg,
TransportPackage: transportPkg,
FIXSpec: spec,
Name: msg.Name,
MessageDef: msg,
}
gen(internal.MessageTemplate, path.Join(fixPkg, pkgName, msg.Name+".generated.go"), c)
}
func genTags() {
gen(internal.TagTemplate, "tag/tag_numbers.generated.go", internal.GlobalFieldTypes)
}
func genFields() {
gen(internal.FieldTemplate, "field/fields.generated.go", internal.GlobalFieldTypes)
}
func genEnums() {
gen(internal.EnumTemplate, "enum/enums.generated.go", internal.GlobalFieldTypes)
}
func gen(t *template.Template, fileOut string, data interface{}) {
defer waitGroup.Done()
writer := new(bytes.Buffer)
if err := t.Execute(writer, data); err != nil {
errors <- err
return
}
if err := internal.WriteFile(fileOut, writer.String()); err != nil {
errors <- err
}
}
func main() {
flag.Usage = usage
flag.Parse()
if flag.NArg() < 1 {
usage()
}
args := flag.Args()
if len(args) == 1 {
dictpath := args[0]
if strings.Contains(dictpath, "FIX50SP1") {
args = append(args, strings.Replace(dictpath, "FIX50SP1", "FIXT11", -1))
} else if strings.Contains(dictpath, "FIX50SP2") {
args = append(args, strings.Replace(dictpath, "FIX50SP2", "FIXT11", -1))
} else if strings.Contains(dictpath, "FIX50") {
args = append(args, strings.Replace(dictpath, "FIX50", "FIXT11", -1))
}
}
specs := []*datadictionary.DataDictionary{}
for _, dataDictPath := range args {
spec, err := datadictionary.Parse(dataDictPath)
if err != nil {
log.Fatalf("Error Parsing %v: %v", dataDictPath, err)
}
specs = append(specs, spec)
}
internal.BuildGlobalFieldTypes(specs)
waitGroup.Add(1)
go genTags()
waitGroup.Add(1)
go genFields()
waitGroup.Add(1)
go genEnums()
for _, spec := range specs {
pkg := getPackageName(spec)
if fi, err := os.Stat(pkg); os.IsNotExist(err) {
if err := os.Mkdir(pkg, os.ModePerm); err != nil {
log.Fatal(err)
}
} else if !fi.IsDir() {
log.Fatalf("%v/ is not a directory", pkg)
}
switch pkg {
// Uses fixt11 header/trailer.
case "fix50", "fix50sp1", "fix50sp2":
default:
waitGroup.Add(1)
go genHeader(pkg, spec)
waitGroup.Add(1)
go genTrailer(pkg, spec)
}
for _, m := range spec.Messages {
waitGroup.Add(1)
go genMessage(pkg, spec, m)
}
}
go func() {
waitGroup.Wait()
close(errors)
}()
var h internal.ErrorHandler
for err := range errors {
h.Handle(err)
}
os.Exit(h.ReturnCode)
}