blob: 5150d921060e9e33c983dc3f7594f9f8fc07206c [file] [log] [blame]
/*
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You 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 generators
import (
"fmt"
"io"
"os"
"path"
"reflect"
"strings"
"gopkg.in/yaml.v2"
"k8s.io/gengo/args"
"k8s.io/gengo/generator"
"k8s.io/gengo/types"
)
// traitMetaDataGen produces YAML documentation about trait descriptions
type traitMetaDataGen struct {
generator.DefaultGen
arguments *args.GeneratorArgs
Root *traitMetaDataRoot
}
type traitMetaDataRoot struct {
Traits []traitMetaData `yaml:"traits"`
}
type traitMetaData struct {
Name string `yaml:"name"`
Platform bool `yaml:"platform"`
Profiles []string `yaml:"profiles"`
Description string `yaml:"description"`
Properties []traitPropertyMetaData `yaml:"properties"`
}
type traitPropertyMetaData struct {
Name string `yaml:"name"`
TypeName string `yaml:"type"`
Description string `yaml:"description"`
}
// NewtraitMetaDataGen --
func NewtraitMetaDataGen(arguments *args.GeneratorArgs) generator.Generator {
return &traitMetaDataGen{
DefaultGen: generator.DefaultGen{},
arguments: arguments,
Root: &traitMetaDataRoot{},
}
}
func (g *traitMetaDataGen) Filename() string {
return "zz_desc_generated.go"
}
func (g *traitMetaDataGen) Filter(context *generator.Context, t *types.Type) bool {
for _, c := range t.CommentLines {
if strings.Contains(c, tagTrait) {
return true
}
}
return false
}
func (g *traitMetaDataGen) GenerateType(context *generator.Context, t *types.Type, out io.Writer) error {
traitID := g.getTraitID(t)
td := &traitMetaData{}
g.buildDescription(t, traitID, td)
g.buildFields(t, td)
g.Root.Traits = append(g.Root.Traits, *td)
return nil
}
func (g *traitMetaDataGen) Finalize(c *generator.Context, w io.Writer) error {
deployDir := g.arguments.CustomArgs.(*CustomArgs).DeployDir
traitFile := "traits.yaml"
filename := path.Join(deployDir, traitFile)
var file *os.File
var err error
if file, err = os.OpenFile(filename, os.O_RDWR|os.O_CREATE, 0777); err != nil {
return err
}
if err = file.Truncate(0); err != nil {
return err
}
defer file.Close()
data, err := yaml.Marshal(g.Root)
if err != nil {
fmt.Fprintf(file, "error: %v", err)
}
fmt.Fprintf(file, "%s", string(data))
return nil
}
func (g *traitMetaDataGen) getTraitID(t *types.Type) string {
for _, s := range t.CommentLines {
if strings.Contains(s, tagTrait) {
matches := tagTraitID.FindStringSubmatch(s)
if len(matches) < 2 {
panic(fmt.Sprintf("unable to extract trait ID from tag line `%s`", s))
}
return matches[1]
}
}
panic(fmt.Sprintf("trait ID not found in type %s", t.Name.Name))
}
func (g *traitMetaDataGen) buildDescription(t *types.Type, traitID string, td *traitMetaData) {
var desc = []string(nil)
desc = append(desc, g.filterOutTagsAndComments(t.CommentLines)...)
td.Name = traitID
td.Description = ""
for _, line := range desc {
text := strings.Trim(line, " ")
if len(text) == 0 {
continue
}
if len(td.Description) > 0 {
td.Description += " "
}
td.Description += text
}
td.Profiles = determineProfiles(traitID)
td.Platform = isPlatformTrait(traitID)
}
func (g *traitMetaDataGen) buildFields(t *types.Type, td *traitMetaData) {
if len(t.Members) > 1 {
var res = []string(nil)
g.buildMembers(t, &res, td)
}
}
func (g *traitMetaDataGen) buildMembers(t *types.Type, content *[]string, td *traitMetaData) {
for _, m := range t.Members {
res := append([]string(nil), *content...)
prop := reflect.StructTag(m.Tags).Get("property")
if prop != "" {
if strings.Contains(prop, "squash") {
g.buildMembers(m.Type, &res, td)
} else {
pd := traitPropertyMetaData{}
pd.Name = prop
pd.TypeName = strings.TrimPrefix(m.Type.Name.Name, "*")
res = append(res, filterOutTagsAndComments(m.CommentLines)...)
pd.Description = strings.Join(res, "")
td.Properties = append(td.Properties, pd)
}
}
}
}
func (g *traitMetaDataGen) filterOutTagsAndComments(comments []string) []string {
res := make([]string, 0, len(comments))
for _, l := range comments {
if !strings.HasPrefix(strings.TrimLeft(l, " \t"), "+") &&
!strings.HasPrefix(strings.TrimLeft(l, " \t"), "TODO:") {
res = append(res, l)
}
}
return res
}