-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathgengo_funcs.go
431 lines (364 loc) · 11.4 KB
/
gengo_funcs.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
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
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
package main
import "C"
import (
"fmt"
"os"
"strings"
"unicode"
"github.com/kpango/glg"
)
// returnTypeType represents an arbitrary type of return value of the function.
// for example Known reffers to returnTypeWrappersMap (see below)
type returnTypeType byte
const (
// default value - will cause the function to be skipped and an error will be printed to stdout
returnTypeUnknown returnTypeType = iota
// return type is void (in go - the function returns nothing)
returnTypeVoid
// METHOD returns nothing, but it has receiver (called self)
returnTypeStructSetter
// Known - reffers to getReturnTypeWrapperFunc
returnTypeKnown
// return type is a pointer to ImGui struct
returnTypeStructPtr
// returns ImGui struct
returnTypeStruct
// the method is a constructor
returnTypeConstructor
// function with first arugment as pointer of return value
returnTypeNonUDT
)
// GenerateGoFuncs generates given list of functions and writes them to file
func GenerateGoFuncs(
validFuncs []FuncDef,
context *Context,
) error {
generator := &goFuncsGenerator{
typedefsNames: context.typedefsNames,
enumNames: context.enumNames,
refTypedefs: context.refTypedefs,
context: context,
sb: &strings.Builder{},
}
generator.writeFuncsFileHeader()
for _, f := range validFuncs {
// check whether the function shouldn't be skipped
if context.preset.SkipFuncs[f.FuncName] {
continue
}
args, argWrappers := generator.generateFuncArgs(f)
if len(f.ArgsT) == 0 {
generator.shouldGenerate = true
}
// stop, when the function should not be generated
if !generator.shouldGenerate {
if context.flags.ShowNotGenerated {
glg.Errorf("not generated: %s%s", f.FuncName, f.Args)
}
continue
} else {
if context.flags.ShowGenerated {
glg.Successf("generated: %s%s", f.FuncName, f.Args)
}
}
if noErrors := generator.GenerateFunction(f, args, argWrappers); !noErrors {
continue
}
}
glg.Infof("Convert progress: %d/%d (%.2f%%)",
generator.convertedFuncCount,
len(validFuncs),
100*float32(generator.convertedFuncCount)/float32(len(validFuncs)),
)
goFile, err := os.Create("funcs.go")
if err != nil {
panic(err.Error())
}
defer goFile.Close()
_, err = goFile.WriteString(FormatGo(generator.sb.String(), context))
if err != nil {
return fmt.Errorf("failed to write content of GO file: %w", err)
}
return nil
}
// goFuncsGenerator is an internal state of GO funcs' generator
type goFuncsGenerator struct {
typedefsNames map[CIdentifier]bool
enumNames map[CIdentifier]bool
refTypedefs map[CIdentifier]bool
sb *strings.Builder
convertedFuncCount int
shouldGenerate bool
context *Context
}
// writeFuncsFileHeader writes a header of the generated file
func (g *goFuncsGenerator) writeFuncsFileHeader() {
g.sb.WriteString(getGoPackageHeader(g.context))
fmt.Fprintf(g.sb,
`// #include "structs_accessor.h"
// #include "wrapper.h"
%s
import "C"
import "unsafe"
`, g.context.preset.MergeCGoPreamble())
}
func (g *goFuncsGenerator) GenerateFunction(f FuncDef, args []GoIdentifier, argWrappers []ArgumentWrapperData) (noErrors bool) {
var cReturnType CIdentifier
var returnType, receiver GoIdentifier
var cfuncCall string
funcName := f.FuncName
shouldDefer := false
// determine kind of function:
returnTypeType := returnTypeUnknown
_, err := getReturnWrapper(f.Ret, g.context) // TODO: we call this twice now
if err == nil {
returnTypeType = returnTypeKnown
}
// attention! order is _probably_ important here so consider that
// before changing anything here
if f.NonUDT == 1 {
returnTypeType = returnTypeNonUDT
} else if f.Ret == "void" {
if f.StructSetter {
returnTypeType = returnTypeStructSetter
} else {
returnTypeType = returnTypeVoid
}
} else if HasSuffix(f.Ret, "*") && (g.typedefsNames[TrimSuffix(f.Ret, "*")] || g.typedefsNames[TrimSuffix(TrimPrefix(f.Ret, "const "), "*")]) {
returnTypeType = returnTypeStructPtr
} else if f.StructGetter && g.typedefsNames[f.Ret] {
returnTypeType = returnTypeStruct
} else if f.Constructor {
returnTypeType = returnTypeConstructor
}
// determine function name, return type (and return statement)
switch returnTypeType {
case returnTypeVoid:
// noop
case returnTypeNonUDT:
outArg := argWrappers[0]
returnType = TrimPrefix(outArg.ArgType, "*")
cfuncCall = fmt.Sprintf("*%s", f.ArgsT[0].Name)
argWrappers[0].ArgDef = fmt.Sprintf(`%s := new(%s)
%s
`, f.ArgsT[0].Name, returnType, outArg.ArgDef)
args = args[1:]
case returnTypeStructSetter:
funcParts := Split(f.FuncName, "_")
funcName = TrimPrefix(f.FuncName, string(funcParts[0]+"_"))
if len(funcName) == 0 || !HasPrefix(funcName, "Set") || g.context.preset.SkipMethods[funcParts[0]] {
return false
}
receiver = funcParts[0].renameGoIdentifier(g.context)
case returnTypeKnown:
shouldDefer = true
cReturnType = f.Ret
returnType = f.Ret.renameGoIdentifier(g.context)
case returnTypeStructPtr:
// return Im struct ptr
shouldDefer = true
cReturnType = TrimPrefix(f.Ret, "const ")
returnType = cReturnType.renameGoIdentifier(g.context)
case returnTypeStruct:
shouldDefer = true
cReturnType = f.Ret
returnType = cReturnType.renameGoIdentifier(g.context)
case returnTypeConstructor:
shouldDefer = true
parts := Split(f.FuncName, "_")
cReturnType = parts[0] + "*"
returnType = cReturnType.renameGoIdentifier(g.context)
suffix := ""
if len(parts) > 2 {
suffix = string(Join(parts[2:], ""))
}
funcName = CIdentifier("New" + string(parts[0]) + suffix)
default:
glg.Debugf("Unknown return type \"%s\" in function %s", f.Ret, f.FuncName)
return false
}
rw, err := getReturnWrapper(cReturnType, g.context)
if err != nil {
switch returnTypeType {
case returnTypeKnown, returnTypeStructPtr, returnTypeConstructor, returnTypeStruct:
return false
}
}
if rw.returnType != "" {
returnType = rw.returnType
}
g.sb.WriteString(g.generateFuncDeclarationStmt(receiver, funcName, args, returnType, f))
argInvokeStmt, declarations, finishers := g.generateFuncBody(argWrappers)
g.sb.WriteString(strings.Join(declarations, "\n"))
if len(declarations) > 0 {
g.sb.WriteString("\n")
}
if shouldDefer {
g.writeFinishers(shouldDefer, finishers)
}
// write non-return function calls (finalizers called normally)
switch returnTypeType {
case returnTypeVoid, returnTypeNonUDT:
g.sb.WriteString(fmt.Sprintf("C.%s(%s)\n", f.CWrapperFuncName, argInvokeStmt))
case returnTypeStructSetter:
g.sb.WriteString(fmt.Sprintf(`
selfArg, selfFin := self.Handle()
defer selfFin()
C.%s(selfArg, %s)
`, f.CWrapperFuncName, argInvokeStmt))
}
if !shouldDefer {
g.writeFinishers(shouldDefer, finishers)
}
switch returnTypeType {
case returnTypeStruct:
g.sb.WriteString(fmt.Sprintf(`
result := C.%s(%s)
`,
f.CWrapperFuncName,
argInvokeStmt,
))
cfuncCall = "result"
case returnTypeKnown, returnTypeConstructor, returnTypeStructPtr:
cfuncCall = fmt.Sprintf("C.%s(%s)", f.CWrapperFuncName, argInvokeStmt)
}
switch returnTypeType {
case returnTypeNonUDT:
g.sb.WriteString(fmt.Sprintf("return %s", cfuncCall))
case returnTypeKnown, returnTypeStructPtr, returnTypeConstructor, returnTypeStruct:
g.sb.WriteString("return " + fmt.Sprintf(rw.returnStmt, cfuncCall))
}
g.sb.WriteString("}\n\n")
g.convertedFuncCount += 1
return true
}
// this method is responsible for createing a function declaration statement.
// it takes function name, list of arguments and return type and returns go statement.
// e.g.: func (self *ImGuiType) FuncName(arg1 type1, arg2 type2) returnType {
func (g *goFuncsGenerator) generateFuncDeclarationStmt(receiver GoIdentifier, funcName CIdentifier, args []GoIdentifier, returnType GoIdentifier, f FuncDef) (functionDeclaration string) {
funcParts := Split(funcName, "_")
typeName := funcParts[0]
// convert func(self *receiverType) into a method
if len(funcParts) > 1 &&
len(args) > 0 &&
Contains(args[0], "self ") {
funcName = TrimPrefix(funcName, string(typeName+"_"))
receiver = TrimPrefix(args[0], "self ")
args = args[1:]
}
if len(receiver) > 0 {
receiver = GoIdentifier(fmt.Sprintf("(self %s)", receiver))
}
goFuncName := funcName.renameGoIdentifier(g.context)
// make sure goFuncName is exported
goFuncName = GoIdentifier(unicode.ToUpper(rune(goFuncName[0]))) + goFuncName[1:]
// if file comes from imgui_internal.h,prefix Internal is added.
// ref: https://github.com/AllenDang/cimgui-go/pull/118
for _, internalFile := range g.context.preset.InternalFiles {
if strings.HasPrefix(f.Location, internalFile) {
goFuncName = GoIdentifier(g.context.preset.InternalPrefix) + goFuncName
break
}
}
// Generate default param value hint
commentSb := &strings.Builder{}
comments := strings.Split(f.Comment, "\n")
for i, comment := range comments {
if !strings.HasPrefix(comment, "//") {
comments[i] = "// " + comments[i]
}
}
commentSb.WriteString(fmt.Sprintf("%s\n", strings.Join(comments, "\n")))
if len(f.Defaults) > 0 {
fmt.Fprintf(commentSb, "// %s parameter default value hint:\n", goFuncName)
type defaultParam struct {
name GoIdentifier
value string
}
defaults := make([]defaultParam, 0, len(f.Defaults))
// sort according to the order of the arguments
for _, arg := range args {
if idx := Index(arg, " "); idx != -1 {
arg = arg[:idx]
}
d, ok := f.Defaults[string(arg)]
if !ok {
continue
}
defaults = append(defaults, defaultParam{name: arg, value: d})
}
for _, p := range defaults {
commentSb.WriteString(fmt.Sprintf("// %s: %s\n", p.name, p.value))
}
}
return fmt.Sprintf("%sfunc %s %s(%s) %s {\n",
commentSb.String(),
receiver,
goFuncName,
Join(args, ","),
returnType)
}
func (g *goFuncsGenerator) generateFuncArgs(f FuncDef) (args []GoIdentifier, argWrappers []ArgumentWrapperData) {
for i, a := range f.ArgsT {
g.shouldGenerate = false
if a.Name == textLenRegisteredName {
g.shouldGenerate = true
argWrappers = append(argWrappers, ArgumentWrapperData{
VarName: "C.int(len(text))",
})
continue
}
decl, wrapper, err := getArgWrapper(
&a,
i == 0 && f.StructSetter,
f.StructGetter && g.typedefsNames[a.Type],
g.context,
)
if err != nil {
glg.Debugf("Unknown argument type \"%s\" in function %s", a.Type, f.FuncName)
break
}
g.shouldGenerate = true
if len(decl) > 0 {
args = append(args, GoIdentifier(decl))
argWrappers = append(argWrappers, wrapper)
}
}
return args, argWrappers
}
// Generate function body
// and returns function call arguments
// e.g.:
// it will write the following into the buffer:
func (g *goFuncsGenerator) generateFuncBody(argWrappers []ArgumentWrapperData) (invokeStatement string, declarations, finishers []string) {
var invokeStmt []string
declarations, finishers = make([]string, 0, len(argWrappers)), make([]string, 0, len(argWrappers))
for _, aw := range argWrappers {
invokeStmt = append(invokeStmt, aw.VarName)
var def string
if aw.NoFin {
def = aw.ArgDefNoFin
} else {
def = aw.ArgDef
}
if len(def) > 0 {
declarations = append(declarations, def)
if aw.Finalizer != "" && !aw.NoFin {
finishers = append(finishers, aw.Finalizer)
}
}
}
return strings.Join(invokeStmt, ","), declarations, finishers
}
func (g *goFuncsGenerator) writeFinishers(shouldDefer bool, finishers []string) {
if len(finishers) == 0 {
return
}
g.sb.WriteString("\n")
if shouldDefer {
g.sb.WriteString("defer func() {\n")
defer g.sb.WriteString("\n}()\n")
}
g.sb.WriteString(strings.Join(finishers, "\n"))
g.sb.WriteString("\n\n")
}