-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathgengo.go
79 lines (65 loc) · 1.83 KB
/
gengo.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
package main
import (
"regexp"
"strings"
)
type (
// EnumIdentifier is in theory EnumName_
EnumIdentifier string
// CIdentifier is a string representing name of struct/func/enum in C
CIdentifier string
// GoIdentifier is a string representing name of struct/func/enum in Go
// ATTENTION: GoIdentifier indicates that the name represents a valid Go name.
// Should be created only by renameGoIdentifier
GoIdentifier string
)
func (c CIdentifier) trimImGuiPrefix(ctx *Context) CIdentifier {
for _, prefix := range ctx.preset.TrimPrefix {
if HasPrefix(c, prefix) &&
len(c) > len(prefix) && // check if removing it will not result in an empty string
strings.ToUpper(string(c[len(prefix)])) == string(c[len(prefix)]) { // check if the method will still be exported
c = TrimPrefix(c, prefix)
}
}
return c
}
func (c CIdentifier) renameGoIdentifier(ctx *Context) GoIdentifier {
if r, ok := ctx.preset.Replace[c]; ok {
c = CIdentifier(r)
}
c = TrimSuffix(c, "_Nil")
c = c.trimImGuiPrefix(ctx)
switch {
case HasPrefix(c, "New"):
c = "New" + c[3:].trimImGuiPrefix(ctx)
case HasPrefix(c, "new"):
c = "new" + c[3:].trimImGuiPrefix(ctx)
case HasPrefix(c, "*"):
c = "*" + c[1:].trimImGuiPrefix(ctx)
}
c = TrimPrefix(c, "Get")
if c != "_" {
c = ReplaceAll(c, "_", "")
}
return GoIdentifier(c)
}
func (c EnumIdentifier) renameEnum() CIdentifier {
return CIdentifier(TrimSuffix(c, "_"))
}
// returns true if s is of form TypeName<*> <(>Name<*><)>(args)
// (fragments in <> are optional)
func IsCallbackTypedef(s string) bool {
pattern := `\w*\**\(*\w*\**\)*\(.*\);`
b, err := regexp.MatchString(pattern, s)
if err != nil {
panic(err)
}
return b
}
func IsStructName(name CIdentifier, ctx *Context) bool {
_, ok := ctx.typedefsNames[name]
return ok
}
func IsTemplateTypedef(s string) bool {
return strings.Contains(s, "<")
}