-
Notifications
You must be signed in to change notification settings - Fork 5
/
enum.go
232 lines (186 loc) · 5.54 KB
/
enum.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
package gen
import (
"fmt"
"go/ast"
"strings"
"github.com/go-clang/bootstrap/clang"
)
// Enum represents a generation enum.
type Enum struct {
IncludeFiles IncludeFiles
Name string
CName string
CNameIsTypeDef bool
Receiver Receiver
Comment string
UnderlyingType string
Items []EnumItem
Methods []interface{}
}
// EnumItem represents a generation enum item.
type EnumItem struct {
Name string
CName string
Comment string
Value uint64
}
// HandleEnumCursor handles enum clang.Cursor and roterns the new *Enum.
func HandleEnumCursor(cursor clang.Cursor, cname string, cnameIsTypeDef bool) *Enum {
e := Enum{
IncludeFiles: NewIncludeFiles(),
Name: TrimLanguagePrefix(cname),
CName: cname,
CNameIsTypeDef: cnameIsTypeDef,
Items: []EnumItem{},
}
e.Comment = CleanDoxygenComment(e.Name, cursor.RawCommentText())
e.Receiver.Name = CommonReceiverName(e.Name)
e.Receiver.Type.GoName = e.Name
e.Receiver.Type.CGoName = e.CName
if cnameIsTypeDef {
e.Receiver.Type.CGoName = e.CName
} else {
e.Receiver.Type.CGoName = "enum_" + e.CName
}
enumNamePrefix := e.Name
enumNamePrefix = strings.TrimSuffix(enumNamePrefix, "Kind")
enumNamePrefix = strings.SplitN(enumNamePrefix, "_", 2)[0]
cursor.Visit(func(cursor, parent clang.Cursor) clang.ChildVisitResult {
switch cursor.Kind() {
case clang.Cursor_EnumConstantDecl:
ei := EnumItem{
CName: cursor.Spelling(),
Value: cursor.EnumConstantDeclUnsignedValue(),
}
ei.Name = TrimLanguagePrefix(ei.CName)
// TODO(go-clang): we are always using the same comment if there is none, see "TypeKind"
// https://github.com/go-clang/gen/issues/58
ei.Comment = CleanDoxygenComment(ei.Name, cursor.RawCommentText())
// check if the first item has an enum prefix
if len(e.Items) == 0 {
eis := strings.SplitN(ei.Name, "_", 2)
if len(eis) == 2 {
enumNamePrefix = ""
}
}
// add the enum prefix to the item
if enumNamePrefix != "" {
ei.Name = strings.TrimSuffix(ei.Name, enumNamePrefix)
if !strings.HasPrefix(ei.Name, enumNamePrefix) {
ei.Name = enumNamePrefix + "_" + ei.Name
}
}
e.Items = append(e.Items, ei)
default:
panic(fmt.Errorf("unexpected cursor.Kind: %#v", cursor.Kind()))
}
return clang.ChildVisit_Continue
})
if strings.HasSuffix(e.Name, "Error") {
e.UnderlyingType = "int32"
} else {
e.UnderlyingType = "uint32"
}
return &e
}
// ContainsMethod reports whether the contains name to Enum.Methods.
func (e *Enum) ContainsMethod(name string) bool {
for _, m := range e.Methods {
switch m := m.(type) {
case *Function:
if m.Name == name {
return true
}
case string:
if strings.Contains(m, ") "+name+"()") {
return true
}
}
}
return false
}
// Generate generates enum.
func (e *Enum) Generate() error {
f := NewFile(strings.ToLower(e.Name))
f.Enums = append(f.Enums, e)
return f.Generate()
}
// AddEnumStringMethods adds Enum String methods to e.
func (e *Enum) AddEnumStringMethods() error {
if !e.ContainsMethod("Spelling") {
if err := e.AddEnumSpellingMethod(); err != nil {
return err
}
}
if !e.ContainsMethod("String") {
if err := e.AddSpellingMethodAlias("String"); err != nil {
return err
}
}
if strings.HasSuffix(e.Name, "Error") && !e.ContainsMethod("Error") {
if err := e.AddSpellingMethodAlias("Error"); err != nil {
return err
}
}
return nil
}
// AddEnumSpellingMethod adds Enum spelling method to e.
func (e *Enum) AddEnumSpellingMethod() error {
f := NewFunction("Spelling", e.Name, "", "", Type{GoName: "string"})
fa := NewASTFunc(f)
fa.GenerateReceiver()
fa.AddReturnType("", Type{GoName: "string"})
switchStmt := doSwitchStmt(&ast.Ident{Name: f.Receiver.Name})
fa.Body.List = append(fa.Body.List, switchStmt)
m := make(map[uint64]*ast.CaseClause)
for _, enumerator := range e.Items {
// EnumItems might have the same value, e.g.:
// enum Example {
// aValue = 1
// bValue = aValue
// }
//
// translating each EnumItem in its own case would result in a compliation error (https://golang.org/issues/4524).
// Thus, all EnumItems with the same value need to be pooled.
if caseClause, ok := m[enumerator.Value]; !ok {
c := []ast.Expr{&ast.Ident{Name: enumerator.Name}}
ret := &ast.ReturnStmt{
Results: []ast.Expr{
doStringLit(strings.Replace(enumerator.Name, "_", "=", 1)),
},
}
b := []ast.Stmt{ret}
caseClause = doCaseClause(c, b)
switchStmt.Body.List = append(switchStmt.Body.List, caseClause)
m[enumerator.Value] = caseClause
} else {
retStr := caseClause.Body[0].(*ast.ReturnStmt).Results[0].(*ast.BasicLit).Value
retStr = retStr[0:len(retStr)-1] + ", " + enumerator.Name[strings.Index(enumerator.Name, "_")+1:] + "\""
caseClause.Body[0].(*ast.ReturnStmt).Results[0].(*ast.BasicLit).Value = retStr
}
}
fa.AddReturnItem(doCall(
"fmt",
"Sprintf",
doStringLit(f.Receiver.Type.GoName+" unknown %d"),
doCast("int", &ast.Ident{Name: f.Receiver.Name}),
))
fa.AddEmptyLine()
fa.AddStatement(fa.ret)
e.Methods = append(e.Methods, GenerateFunctionString(fa))
return nil
}
// AddSpellingMethodAlias adds spelling method alias to e.
func (e *Enum) AddSpellingMethodAlias(name string) error {
returnType := Type{
GoName: "string",
}
f := NewFunction(name, e.Name, "", "", returnType)
fa := NewASTFunc(f)
fa.GenerateReceiver()
fa.AddReturnType("", Type{GoName: "string"})
fa.AddReturnItem(doCall(e.Receiver.Name, "Spelling"))
fa.AddStatement(fa.ret)
e.Methods = append(e.Methods, GenerateFunctionString(fa))
return nil
}