-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.go
209 lines (178 loc) · 4.88 KB
/
main.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
package main
import (
"embed"
"fmt"
"go/token"
"log"
"os"
"path"
"path/filepath"
"strings"
"text/template"
"github.com/gertd/go-pluralize"
"golang.org/x/tools/go/packages"
"github.com/klippa-app/go-enum/coerce"
"github.com/klippa-app/go-enum/internal/config"
"github.com/klippa-app/go-enum/internal/util"
"github.com/klippa-app/go-enum/internal/values"
)
var (
//go:embed templates/*
templates embed.FS
)
func main() {
log.SetFlags(0)
log.SetPrefix("go-enum: ")
cfg := config.Instance()
dir, err := filepath.Abs(".")
if err != nil {
panic(err)
}
fset := token.NewFileSet()
pkgs, err := packages.Load(&packages.Config{
Fset: fset,
Mode: packages.NeedSyntax | packages.NeedName | packages.NeedModule | packages.NeedTypes | packages.NeedTypesInfo,
}, fmt.Sprintf("file=%s.go", cfg.FileName))
if err != nil {
panic(err)
}
packageName := pkgs[0].Name
packagePath := pkgs[0].PkgPath
typeInfo := pkgs[0].TypesInfo
enumValues, underlyingType, enumDefault := values.ExtractEnumValues(typeInfo, fmt.Sprint(packagePath, ".", cfg.EnumName))
if len(enumValues) == 0 {
panic("no enum values found")
}
if underlyingType == "" {
panic("could not determine underlying type for enum")
}
templates, err := template.New("").
Funcs(TemplateFunctions). // Custom functions
ParseFS(templates, "templates/*.tmpl")
if err != nil {
panic(err)
}
data := TemplateData{
Pkg: packageName,
PkgPath: packagePath,
EnumName: cfg.EnumName,
BaseType: underlyingType,
EnumValues: enumValues,
EnumDefaultValue: enumDefault,
Config: cfg,
}
execTemplate := func(name string, extension string) {
ExecuteTemplate(templates, name, fullPath(dir, cfg.FileName, cfg.EnumName, extension), data)
}
execTemplate("enum.tmpl", ".go")
if cfg.Generate.Bson {
execTemplate("bson.tmpl", "marshal_bson.go")
}
if cfg.Generate.Json {
execTemplate("json.tmpl", "marshal_json.go")
}
if cfg.Generate.Xml {
execTemplate("xml.tmpl", "marshal_xml.go")
}
if cfg.Generate.Sql || cfg.Generate.Ent {
execTemplate("sql.tmpl", "marshal_sql.go")
}
if cfg.Generate.Text {
execTemplate("text.tmpl", "marshal_text.go")
}
if cfg.Generate.Ent {
execTemplate("ent.tmpl", "marshal_ent.go")
}
switch cfg.Generate.Gql {
case "go":
execTemplate("gql.go.tmpl", "marshal_gql.go")
case "gql":
execTemplate("gql.graphql.tmpl", ".graphql")
case "full":
execTemplate("gql.go.tmpl", "marshal_gql.go")
execTemplate("gql.graphql.tmpl", ".graphql")
}
}
func fullPath(dir string, fileName string, enumName string, suffix string) string {
filePathBaseParts := []string{coerce.CamelCase(fileName)}
if coerce.CamelCase(fileName) != coerce.CamelCase(enumName) {
filePathBaseParts = append(filePathBaseParts, coerce.CamelCase(enumName))
}
suf := fmt.Sprint(strings.Join(filePathBaseParts, "_"), "Enum", coerce.PascalCase(suffix))
return path.Join(dir, coerce.SnakeCase(suf))
}
func ExecuteTemplate(tmpl *template.Template, name string, path string, data TemplateData) {
writer, err := os.Create(path)
if err != nil {
panic(err)
}
defer writer.Close()
err = tmpl.ExecuteTemplate(writer, name, data)
if err != nil {
panic(err)
}
}
func stringer(s string) string {
cfg := config.Instance()
s = strings.TrimPrefix(coerce.SnakeCase(s), fmt.Sprint(coerce.SnakeCase(cfg.Prefix), "_"))
switch cfg.StringerCase {
case "camel":
return coerce.CamelCase(s)
case "pascal":
return coerce.PascalCase(s)
case "snake":
return coerce.SnakeCase(s)
case "upper_snake":
return coerce.UpperSnakeCase(s)
case "kebab":
return coerce.KebabCase(s)
case "upper_kebab":
return coerce.UpperKebabCase(s)
}
panic(fmt.Sprintf("unknown stringerCase: %s", cfg.StringerCase))
}
func stringerFn() string {
cfg := config.Instance()
switch cfg.StringerCase {
case "camel":
return "coerce.CamelCase"
case "pascal":
return "coerce.PascalCase"
case "snake":
return "coerce.SnakeCase"
case "upper_snake":
return "coerce.UpperSnakeCase"
case "kebab":
return "coerce.KebabCase"
case "upper_kebab":
return "coerce.UpperKebabCase"
}
panic(fmt.Sprintf("unknown stringerCase: %s", cfg.StringerCase))
}
func receiver(s string) string {
return fmt.Sprintf("%s_enum", strings.ToLower(s))
}
var TemplateFunctions = template.FuncMap{
"containsString": util.Contains[string],
"lower": strings.ToLower,
"camel": coerce.CamelCase,
"pascal": coerce.PascalCase,
"upperSnake": coerce.UpperSnakeCase,
"plural": pluralize.NewClient().Plural,
"stringer": stringer,
"stringerFn": stringerFn,
"receiver": receiver,
}
type TemplateData struct {
Pkg string
PkgPath string
EnumName string
BaseType string
EnumDefaultValue string
Gqlgen bool
Bson bool
Json bool
Xml bool
EnumValues []values.EnumValue
Config *config.Config
}