forked from FDio/govpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvppapi.go
296 lines (282 loc) · 7.55 KB
/
vppapi.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
// 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 (
"log"
"path"
"sort"
"strings"
"go.fd.io/govpp/binapigen/vppapi"
)
// SortFileObjectsByName sorts all objects of file by their name.
func SortFileObjectsByName(file *vppapi.File) {
sort.SliceStable(file.Imports, func(i, j int) bool {
return file.Imports[i] < file.Imports[j]
})
sort.SliceStable(file.EnumTypes, func(i, j int) bool {
return file.EnumTypes[i].Name < file.EnumTypes[j].Name
})
sort.SliceStable(file.EnumflagTypes, func(i, j int) bool {
return file.EnumflagTypes[i].Name < file.EnumflagTypes[j].Name
})
sort.Slice(file.AliasTypes, func(i, j int) bool {
return file.AliasTypes[i].Name < file.AliasTypes[j].Name
})
sort.SliceStable(file.StructTypes, func(i, j int) bool {
return file.StructTypes[i].Name < file.StructTypes[j].Name
})
sort.SliceStable(file.UnionTypes, func(i, j int) bool {
return file.UnionTypes[i].Name < file.UnionTypes[j].Name
})
sort.SliceStable(file.Messages, func(i, j int) bool {
return file.Messages[i].Name < file.Messages[j].Name
})
if file.Service != nil {
sort.Slice(file.Service.RPCs, func(i, j int) bool {
return file.Service.RPCs[i].Request < file.Service.RPCs[j].Request
})
}
}
func ListImportedFiles(files []*vppapi.File, file *vppapi.File) []*vppapi.File {
var list []*vppapi.File
byName := func(s string) *vppapi.File {
for _, f := range files {
if f.Name == s {
return f
}
}
return nil
}
imported := map[string]struct{}{}
for _, imp := range file.Imports {
imp = normalizeImport(imp)
impFile := byName(imp)
if impFile == nil {
log.Fatalf("imported file %q not found", imp)
}
for _, nest := range ListImportedFiles(files, impFile) {
if _, ok := imported[nest.Name]; !ok {
list = append(list, nest)
imported[nest.Name] = struct{}{}
}
}
if _, ok := imported[impFile.Name]; !ok {
list = append(list, impFile)
imported[impFile.Name] = struct{}{}
}
}
return list
}
// normalizeImport returns the last path element of the import, with all dotted suffixes removed.
func normalizeImport(imp string) string {
imp = path.Base(imp)
if idx := strings.Index(imp, "."); idx >= 0 {
imp = imp[:idx]
}
return imp
}
// SortFilesByImports sorts list of files by their imports.
func SortFilesByImports(apifiles []*vppapi.File) {
dependsOn := func(file *vppapi.File, dep string) bool {
for _, imp := range ListImportedFiles(apifiles, file) {
if imp.Name == dep {
return true
}
}
return false
}
sort.SliceStable(apifiles, func(i, j int) bool {
a := apifiles[i]
b := apifiles[j]
if dependsOn(a, b.Name) {
return false
}
if dependsOn(b, a.Name) {
return true
}
return len(b.Imports) > len(a.Imports)
})
}
// ListImportedTypes returns list of names for imported types.
func ListImportedTypes(apifiles []*vppapi.File, file *vppapi.File) []string {
var importedTypes []string
typeFiles := ListImportedFiles(apifiles, file)
for _, t := range file.StructTypes {
var imported bool
for _, imp := range typeFiles {
for _, at := range imp.StructTypes {
if at.Name != t.Name {
continue
}
importedTypes = append(importedTypes, t.Name)
imported = true
break
}
if imported {
break
}
}
}
for _, t := range file.AliasTypes {
var imported bool
for _, imp := range typeFiles {
for _, at := range imp.AliasTypes {
if at.Name != t.Name {
continue
}
importedTypes = append(importedTypes, t.Name)
imported = true
break
}
if imported {
break
}
}
}
for _, t := range file.EnumTypes {
var imported bool
for _, imp := range typeFiles {
for _, at := range imp.EnumTypes {
if at.Name != t.Name {
continue
}
importedTypes = append(importedTypes, t.Name)
imported = true
break
}
if imported {
break
}
}
}
for _, t := range file.EnumflagTypes {
var imported bool
for _, imp := range typeFiles {
for _, at := range imp.EnumflagTypes {
if at.Name != t.Name {
continue
}
importedTypes = append(importedTypes, t.Name)
imported = true
break
}
if imported {
break
}
}
}
for _, t := range file.UnionTypes {
var imported bool
for _, imp := range typeFiles {
for _, at := range imp.UnionTypes {
if at.Name != t.Name {
continue
}
importedTypes = append(importedTypes, t.Name)
imported = true
break
}
if imported {
break
}
}
}
return importedTypes
}
// RemoveImportedTypes removes imported types from file.
func RemoveImportedTypes(apifiles []*vppapi.File, apifile *vppapi.File) {
importedTypes := ListImportedTypes(apifiles, apifile)
isImportedType := func(s string) bool {
for _, t := range importedTypes {
if t == s {
return true
}
}
return false
}
var enums []vppapi.EnumType
for _, enumType := range apifile.EnumTypes {
if !isImportedType(enumType.Name) {
enums = append(enums, enumType)
}
}
var enumflags []vppapi.EnumType
for _, enumflagType := range apifile.EnumflagTypes {
if !isImportedType(enumflagType.Name) {
enumflags = append(enumflags, enumflagType)
}
}
var aliases []vppapi.AliasType
for _, aliasType := range apifile.AliasTypes {
if !isImportedType(aliasType.Name) {
aliases = append(aliases, aliasType)
}
}
var structs []vppapi.StructType
for _, structType := range apifile.StructTypes {
if !isImportedType(structType.Name) {
structs = append(structs, structType)
}
}
var unions []vppapi.UnionType
for _, unionType := range apifile.UnionTypes {
if !isImportedType(unionType.Name) {
unions = append(unions, unionType)
}
}
apifile.EnumTypes = enums
apifile.EnumflagTypes = enumflags
apifile.AliasTypes = aliases
apifile.StructTypes = structs
apifile.UnionTypes = unions
}
// CleanMessageComment processes a comment string from VPP API message and
// returns a modified version with the following changes:
// - trim comment syntax ("/**", "*/")
// - remove special syntax ("\brief") parts
// - replace all occurrences of "@param" with a dash ("-").
func CleanMessageComment(comment string) string {
// trim comment syntax
comment = strings.TrimPrefix(comment, "/**")
comment = strings.TrimSuffix(comment, " */")
comment = strings.TrimSuffix(comment, "*/")
// remove \\brief from the comment
comment = strings.Replace(comment, `\\brief`, "", -1)
comment = strings.Replace(comment, `\brief`, "", -1)
// replace @param with a dash (-)
comment = strings.Replace(comment, "@param", "-", -1)
return strings.TrimSpace(comment)
}
// StripMessageCommentFields processes a comment string from VPP API message and
// returns a modified version where a set of fields are omitted.
func StripMessageCommentFields(comment string, fields ...string) string {
lines := strings.Split(comment, "\n")
result := ""
for _, line := range lines {
if strings.TrimSpace(line) == "" {
continue
}
add := true
for _, field := range fields {
if strings.Contains(line, " - "+field) {
add = false
break
}
}
if add {
result += line + "\n"
}
}
return strings.TrimSuffix(result, "\n")
}