-
Notifications
You must be signed in to change notification settings - Fork 4.7k
/
Copy pathgenerator.go
163 lines (132 loc) · 4.23 KB
/
generator.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
/*
Copyright 2019 The Kubernetes Authors.
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 main
import (
"fmt"
"io"
"path/filepath"
"strings"
"text/template"
"k8s.io/apimachinery/pkg/util/sets"
"k8s.io/gengo/args"
"k8s.io/gengo/generator"
"k8s.io/gengo/namer"
"k8s.io/gengo/types"
"k8s.io/klog/v2"
)
// These are the comment tags that carry parameters for fitask generation.
const tagName = "kops:fitask"
func extractTag(comments []string) []string {
return types.ExtractCommentTags("+", comments)[tagName]
}
const perTypeDef = `
// {{.Name}}
var _ fi.HasLifecycle = &{{.Name}}{}
// GetLifecycle returns the Lifecycle of the object, implementing fi.HasLifecycle
func (o *{{.Name}}) GetLifecycle() fi.Lifecycle {
return o.Lifecycle
}
// SetLifecycle sets the Lifecycle of the object, implementing fi.SetLifecycle
func (o *{{.Name}}) SetLifecycle(lifecycle fi.Lifecycle) {
o.Lifecycle = lifecycle
}
var _ fi.HasName = &{{.Name}}{}
// GetName returns the Name of the object, implementing fi.HasName
func (o *{{.Name}}) GetName() *string {
return o.Name
}
// String is the stringer function for the task, producing readable output using fi.TaskAsString
func (o *{{.Name}}) String() string {
return fi.TaskAsString(o)
}
`
// NameSystems returns the name system used by the generators in this package.
func NameSystems() namer.NameSystems {
return namer.NameSystems{
"public": namer.NewPublicNamer(0),
"private": namer.NewPrivateNamer(0),
"raw": namer.NewRawNamer("", nil),
}
}
// DefaultNameSystem returns the default name system for ordering the types to be
// processed by the generators in this package.
func DefaultNameSystem() string {
return "public"
}
// Packages makes the sets package definition.
func Packages(context *generator.Context, arguments *args.GeneratorArgs) generator.Packages {
boilerplate, err := arguments.LoadGoBoilerplate()
if err != nil {
klog.Fatalf("Failed loading boilerplate: %v", err)
}
inputs := sets.NewString(context.Inputs...)
packages := generator.Packages{}
header := append([]byte(fmt.Sprintf("// +build !%s\n\n", arguments.GeneratedBuildTag)), boilerplate...)
for i := range inputs {
klog.V(5).Infof("considering pkg %q", i)
pkg := context.Universe[i]
if pkg == nil {
// If the input had no Go files, for example.
continue
}
fitasks := map[*types.Type]bool{}
for _, t := range pkg.Types {
if t.Kind == types.Struct && len(extractTag(t.CommentLines)) > 0 {
fitasks[t] = true
}
}
packages = append(packages, &generator.DefaultPackage{
PackageName: filepath.Base(pkg.Path),
PackagePath: strings.TrimPrefix(pkg.Path, "k8s.io/kops/"),
HeaderText: header,
GeneratorFunc: func(c *generator.Context) (generators []generator.Generator) {
for t := range fitasks {
generators = append(generators, NewGenFitask(t))
}
return generators
},
FilterFunc: func(c *generator.Context, t *types.Type) bool {
return fitasks[t]
},
})
}
return packages
}
type genFitask struct {
generator.DefaultGen
typeToMatch *types.Type
}
func NewGenFitask(t *types.Type) generator.Generator {
return &genFitask{
DefaultGen: generator.DefaultGen{
OptionalName: strings.ToLower(t.Name.Name) + "_fitask",
},
typeToMatch: t,
}
}
// Filter ignores all but one type because we're making a single file per type.
func (g *genFitask) Filter(c *generator.Context, t *types.Type) bool { return t == g.typeToMatch }
func (g *genFitask) Imports(c *generator.Context) (imports []string) {
return []string{
"k8s.io/kops/upup/pkg/fi",
}
}
type TypeData struct {
Name string
}
func (g *genFitask) GenerateType(_ *generator.Context, t *types.Type, w io.Writer) error {
tmpl := template.Must(template.New("PerType").Parse(perTypeDef))
d := &TypeData{}
d.Name = t.Name.Name
return tmpl.Execute(w, d)
}