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
|
// Copyright (c) 2020 Cisco and/or its affiliates.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at:
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package binapigen
import (
"bufio"
"bytes"
"fmt"
"go/ast"
"go/format"
"go/parser"
"go/printer"
"go/token"
"io/ioutil"
"os"
"path"
"path/filepath"
"sort"
"strconv"
"strings"
"github.com/sirupsen/logrus"
"git.fd.io/govpp.git/binapigen/vppapi"
)
type Generator struct {
Files []*File
FilesByName map[string]*File
opts Options
apifiles []*vppapi.File
vppVersion string
filesToGen []string
genfiles []*GenFile
enumsByName map[string]*Enum
aliasesByName map[string]*Alias
structsByName map[string]*Struct
unionsByName map[string]*Union
messagesByName map[string]*Message
}
func New(opts Options, apifiles []*vppapi.File, filesToGen []string) (*Generator, error) {
gen := &Generator{
FilesByName: make(map[string]*File),
opts: opts,
apifiles: apifiles,
filesToGen: filesToGen,
enumsByName: map[string]*Enum{},
aliasesByName: map[string]*Alias{},
structsByName: map[string]*Struct{},
unionsByName: map[string]*Union{},
messagesByName: map[string]*Message{},
}
// Normalize API files
SortFilesByImports(gen.apifiles)
for _, apifile := range apifiles {
RemoveImportedTypes(gen.apifiles, apifile)
SortFileObjectsByName(apifile)
}
// prepare package names and import paths
packageNames := make(map[string]GoPackageName)
importPaths := make(map[string]GoImportPath)
for _, apifile := range gen.apifiles {
filename := getFilename(apifile)
packageNames[filename] = cleanPackageName(apifile.Name)
importPaths[filename] = GoImportPath(path.Join(gen.opts.ImportPrefix, baseName(apifile.Name)))
}
logrus.Debugf("adding %d VPP API files to generator", len(gen.apifiles))
for _, apifile := range gen.apifiles {
filename := getFilename(apifile)
if _, ok := gen.FilesByName[apifile.Name]; ok {
return nil, fmt.Errorf("duplicate file: %q", apifile.Name)
}
file, err := newFile(gen, apifile, packageNames[filename], importPaths[filename])
if err != nil {
return nil, fmt.Errorf("loading file %s failed: %w", apifile.Name, err)
}
gen.Files = append(gen.Files, file)
gen.FilesByName[apifile.Name] = file
logrus.Debugf("added file %q (path: %v)", apifile.Name, apifile.Path)
}
// mark files for generation
if len(gen.filesToGen) > 0 {
logrus.Debugf("Checking %d files to generate: %v", len(gen.filesToGen), gen.filesToGen)
for _, genfile := range gen.filesToGen {
file, ok := gen.FilesByName[genfile]
if !ok {
return nil, fmt.Errorf("no API file found for: %v", genfile)
}
file.Generate = true
// generate all imported files
for _, impFile := range file.importedFiles(gen) {
impFile.Generate = true
}
}
} else {
logrus.Debugf("Files to generate not specified, marking all %d files for generate", len(gen.Files))
for _, file := range gen.Files {
file.Generate = true
}
}
return gen, nil
}
func getFilename(file *vppapi.File) string {
if file.Path == "" {
return file.Name
}
return file.Path
}
func (g *Generator) Generate() error {
if len(g.genfiles) == 0 {
return fmt.Errorf("no files to generate")
}
logrus.Infof("Generating %d files", len(g.genfiles))
for _, genfile := range g.genfiles {
content, err := genfile.Content()
if err != nil {
return err
}
if err := writeSourceTo(genfile.filename, content); err != nil {
return fmt.Errorf("writing source package %s failed: %v", genfile.filename, err)
}
}
return nil
}
type GenFile struct {
gen *Generator
file *File
filename string
goImportPath GoImportPath
buf bytes.Buffer
manualImports map[GoImportPath]bool
packageNames map[GoImportPath]GoPackageName
}
func (g *Generator) NewGenFile(filename string, importPath GoImportPath) *GenFile {
f := &GenFile{
gen: g,
filename: filename,
goImportPath: importPath,
manualImports: make(map[GoImportPath]bool),
packageNames: make(map[GoImportPath]GoPackageName),
}
g.genfiles = append(g.genfiles, f)
return f
}
func (g *GenFile) Write(p []byte) (n int, err error) {
return g.buf.Write(p)
}
func (g *GenFile) Import(importPath GoImportPath) {
g.manualImports[importPath] = true
}
func (g *GenFile) GoIdent(ident GoIdent) string {
if ident.GoImportPath == g.goImportPath {
return ident.GoName
}
if packageName, ok := g.packageNames[ident.GoImportPath]; ok {
return string(packageName) + "." + ident.GoName
}
packageName := cleanPackageName(baseName(string(ident.GoImportPath)))
g.packageNames[ident.GoImportPath] = packageName
return string(packageName) + "." + ident.GoName
}
func (g *GenFile) P(v ...interface{}) {
for _, x := range v {
switch x := x.(type) {
case GoIdent:
fmt.Fprint(&g.buf, g.GoIdent(x))
default:
fmt.Fprint(&g.buf, x)
}
}
fmt.Fprintln(&g.buf)
}
func (g *GenFile) Content() ([]byte, error) {
if !strings.HasSuffix(g.filename, ".go") {
return g.buf.Bytes(), nil
}
return g.injectImports(g.buf.Bytes())
}
func (g *GenFile) injectImports(original []byte) ([]byte, error) {
// Parse source code
fset := token.NewFileSet()
file, err := parser.ParseFile(fset, "", original, parser.ParseComments)
if err != nil {
var src bytes.Buffer
s := bufio.NewScanner(bytes.NewReader(original))
for line := 1; s.Scan(); line++ {
fmt.Fprintf(&src, "%5d\t%s\n", line, s.Bytes())
}
return nil, fmt.Errorf("%v: unparsable Go source: %v\n%v", g.filename, err, src.String())
}
type Import struct {
Name string
Path string
}
// Prepare list of all imports
var importPaths []Import
for importPath := range g.packageNames {
importPaths = append(importPaths, Import{
Name: string(g.packageNames[GoImportPath(importPath)]),
Path: string(importPath),
})
}
for importPath := range g.manualImports {
if _, ok := g.packageNames[importPath]; ok {
continue
}
importPaths = append(importPaths, Import{
Name: "_",
Path: string(importPath),
})
}
// Sort imports by import path
sort.Slice(importPaths, func(i, j int) bool {
return importPaths[i].Path < importPaths[j].Path
})
// Inject new import block into parsed AST
if len(importPaths) > 0 {
// Find import block position
pos := file.Package
tokFile := fset.File(file.Package)
pkgLine := tokFile.Line(file.Package)
for _, c := range file.Comments {
if tokFile.Line(c.Pos()) > pkgLine {
break
}
pos = c.End()
}
// Prepare the import block
impDecl := &ast.GenDecl{Tok: token.IMPORT, TokPos: pos, Lparen: pos, Rparen: pos}
for _, importPath := range importPaths {
var name *ast.Ident
if importPath.Name == "_" || strings.Contains(importPath.Path, ".") {
name = &ast.Ident{Name: importPath.Name, NamePos: pos}
}
impDecl.Specs = append(impDecl.Specs, &ast.ImportSpec{
Name: name,
Path: &ast.BasicLit{Kind: token.STRING, Value: strconv.Quote(importPath.Path), ValuePos: pos},
EndPos: pos,
})
}
file.Decls = append([]ast.Decl{impDecl}, file.Decls...)
}
// Reformat source code
var out bytes.Buffer
cfg := &printer.Config{
Mode: printer.TabIndent | printer.UseSpaces,
Tabwidth: 8,
}
if err = cfg.Fprint(&out, fset, file); err != nil {
return nil, fmt.Errorf("%v: can not reformat Go source: %v", g.filename, err)
}
return out.Bytes(), nil
}
// GoIdent is a Go identifier, consisting of a name and import path.
// The name is a single identifier and may not be a dot-qualified selector.
type GoIdent struct {
GoName string
GoImportPath GoImportPath
}
func (id GoIdent) String() string {
return fmt.Sprintf("%q.%v", id.GoImportPath, id.GoName)
}
func newGoIdent(f *File, fullName string) GoIdent {
name := strings.TrimPrefix(fullName, string(f.PackageName)+".")
return GoIdent{
GoName: camelCaseName(name),
GoImportPath: f.GoImportPath,
}
}
// GoImportPath is a Go import path for a package.
type GoImportPath string
func (p GoImportPath) String() string {
return strconv.Quote(string(p))
}
func (p GoImportPath) Ident(s string) GoIdent {
return GoIdent{GoName: s, GoImportPath: p}
}
type GoPackageName string
func cleanPackageName(name string) GoPackageName {
return GoPackageName(sanitizedName(name))
}
func sanitizedName(name string) string {
switch name {
case "interface":
return "interfaces"
case "map":
return "maps"
default:
return name
}
}
// baseName returns the last path element of the name, with the last dotted suffix removed.
func baseName(name string) string {
// First, find the last element
if i := strings.LastIndex(name, "/"); i >= 0 {
name = name[i+1:]
}
// Now drop the suffix
if i := strings.LastIndex(name, "."); i >= 0 {
name = name[:i]
}
return name
}
func writeSourceTo(outputFile string, b []byte) error {
// create output directory
packageDir := filepath.Dir(outputFile)
if err := os.MkdirAll(packageDir, 0775); err != nil {
return fmt.Errorf("creating output dir %s failed: %v", packageDir, err)
}
// format generated source code
gosrc, err := format.Source(b)
if err != nil {
_ = ioutil.WriteFile(outputFile, b, 0666)
return fmt.Errorf("formatting source code failed: %v", err)
}
// write generated code to output file
if err := ioutil.WriteFile(outputFile, gosrc, 0666); err != nil {
return fmt.Errorf("writing to output file %s failed: %v", outputFile, err)
}
lines := bytes.Count(gosrc, []byte("\n"))
logf("wrote %d lines (%d bytes) to: %q", lines, len(gosrc), outputFile)
return nil
}
|