generator.go 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. /*
  2. Copyright 2017 The Kubernetes Authors.
  3. Licensed under the Apache License, Version 2.0 (the "License");
  4. you may not use this file except in compliance with the License.
  5. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License.
  12. */
  13. package main
  14. import (
  15. "bytes"
  16. "fmt"
  17. "io/ioutil"
  18. "os"
  19. "path/filepath"
  20. "sort"
  21. "strings"
  22. )
  23. const (
  24. openAPIGenTag = "// +k8s:openapi-gen"
  25. staging = "staging/src/"
  26. )
  27. // walkGenerated updates the rule for kubernetes' OpenAPI generated file.
  28. // This involves reading all go files in the source tree and looking for the
  29. // "+k8s:openapi-gen" tag. If present, then that package must be supplied to
  30. // the genrule.
  31. func (v *Vendorer) walkGenerated() error {
  32. if !v.cfg.K8sOpenAPIGen {
  33. return nil
  34. }
  35. v.managedAttrs = append(v.managedAttrs, "openapi_targets", "vendor_targets")
  36. paths, err := v.findOpenAPI(".")
  37. if err != nil {
  38. return err
  39. }
  40. return v.addGeneratedOpenAPIRule(paths)
  41. }
  42. // findOpenAPI searches for all packages under root that request OpenAPI. It
  43. // returns the go import paths. It does not follow symlinks.
  44. func (v *Vendorer) findOpenAPI(root string) ([]string, error) {
  45. for _, r := range v.skippedPaths {
  46. if r.MatchString(root) {
  47. return nil, nil
  48. }
  49. }
  50. finfos, err := ioutil.ReadDir(root)
  51. if err != nil {
  52. return nil, err
  53. }
  54. var res []string
  55. var includeMe bool
  56. for _, finfo := range finfos {
  57. path := filepath.Join(root, finfo.Name())
  58. if finfo.IsDir() && (finfo.Mode()&os.ModeSymlink == 0) {
  59. children, err := v.findOpenAPI(path)
  60. if err != nil {
  61. return nil, err
  62. }
  63. res = append(res, children...)
  64. } else if strings.HasSuffix(path, ".go") && !strings.HasSuffix(path, "_test.go") {
  65. b, err := ioutil.ReadFile(path)
  66. if err != nil {
  67. return nil, err
  68. }
  69. if bytes.Contains(b, []byte(openAPIGenTag)) {
  70. includeMe = true
  71. }
  72. }
  73. }
  74. if includeMe {
  75. pkg, err := v.ctx.ImportDir(filepath.Join(v.root, root), 0)
  76. if err != nil {
  77. return nil, err
  78. }
  79. res = append(res, pkg.ImportPath)
  80. }
  81. return res, nil
  82. }
  83. // addGeneratedOpenAPIRule updates the pkg/generated/openapi go_default_library
  84. // rule with the automanaged openapi_targets and vendor_targets.
  85. func (v *Vendorer) addGeneratedOpenAPIRule(paths []string) error {
  86. var openAPITargets []string
  87. var vendorTargets []string
  88. baseImport := v.cfg.GoPrefix + "/"
  89. for _, p := range paths {
  90. if !strings.HasPrefix(p, baseImport) {
  91. return fmt.Errorf("openapi-gen path outside of %s: %s", v.cfg.GoPrefix, p)
  92. }
  93. np := p[len(baseImport):]
  94. if strings.HasPrefix(np, staging) {
  95. vendorTargets = append(vendorTargets, np[len(staging):])
  96. } else {
  97. openAPITargets = append(openAPITargets, np)
  98. }
  99. }
  100. sort.Strings(openAPITargets)
  101. sort.Strings(vendorTargets)
  102. pkgPath := filepath.Join("pkg", "generated", "openapi")
  103. // If we haven't walked this package yet, walk it so there is a go_library rule to modify
  104. if len(v.newRules[pkgPath]) == 0 {
  105. if err := v.updateSinglePkg(pkgPath); err != nil {
  106. return err
  107. }
  108. }
  109. for _, r := range v.newRules[pkgPath] {
  110. if r.Name() == "go_default_library" {
  111. r.SetAttr("openapi_targets", asExpr(openAPITargets))
  112. r.SetAttr("vendor_targets", asExpr(vendorTargets))
  113. break
  114. }
  115. }
  116. return nil
  117. }