sourcerer.go 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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. "fmt"
  16. "io/ioutil"
  17. "path/filepath"
  18. bzl "github.com/bazelbuild/buildtools/build"
  19. )
  20. const (
  21. pkgSrcsTarget = "package-srcs"
  22. allSrcsTarget = "all-srcs"
  23. )
  24. // walkSource walks the source tree recursively from pkgPath, adding
  25. // any BUILD files to v.newRules to be formatted.
  26. //
  27. // If AddSourcesRules is enabled in the kazel config, then we additionally add
  28. // package-sources and recursive all-srcs filegroups rules to every BUILD file.
  29. //
  30. // Returns the list of children all-srcs targets that should be added to the
  31. // all-srcs rule of the enclosing package.
  32. func (v *Vendorer) walkSource(pkgPath string) ([]string, error) {
  33. // clean pkgPath since we access v.newRules directly
  34. pkgPath = filepath.Clean(pkgPath)
  35. for _, r := range v.skippedPaths {
  36. if r.MatchString(pkgPath) {
  37. return nil, nil
  38. }
  39. }
  40. files, err := ioutil.ReadDir(pkgPath)
  41. if err != nil {
  42. return nil, err
  43. }
  44. // Find any children packages we need to include in an all-srcs rule.
  45. var children []string
  46. for _, f := range files {
  47. if f.IsDir() {
  48. c, err := v.walkSource(filepath.Join(pkgPath, f.Name()))
  49. if err != nil {
  50. return nil, err
  51. }
  52. children = append(children, c...)
  53. }
  54. }
  55. // This path is a package either if we've added rules or if a BUILD file already exists.
  56. _, hasRules := v.newRules[pkgPath]
  57. isPkg := hasRules
  58. if !isPkg {
  59. isPkg, _ = findBuildFile(pkgPath)
  60. }
  61. if !isPkg {
  62. // This directory isn't a package (doesn't contain a BUILD file),
  63. // but there might be subdirectories that are packages,
  64. // so pass that up to our parent.
  65. return children, nil
  66. }
  67. // Enforce formatting the BUILD file, even if we're not adding srcs rules
  68. if !hasRules {
  69. v.addRules(pkgPath, nil)
  70. }
  71. if !v.cfg.AddSourcesRules {
  72. return nil, nil
  73. }
  74. pkgSrcsExpr := &bzl.LiteralExpr{Token: `glob(["**"])`}
  75. if pkgPath == "." {
  76. pkgSrcsExpr = &bzl.LiteralExpr{Token: `glob(["**"], exclude=["bazel-*/**", ".git/**", ".idea/**"])`}
  77. }
  78. v.addRules(pkgPath, []*bzl.Rule{
  79. newRule(RuleTypeFileGroup,
  80. func(_ ruleType) string { return pkgSrcsTarget },
  81. map[string]bzl.Expr{
  82. "srcs": pkgSrcsExpr,
  83. "visibility": asExpr([]string{"//visibility:private"}),
  84. }),
  85. newRule(RuleTypeFileGroup,
  86. func(_ ruleType) string { return allSrcsTarget },
  87. map[string]bzl.Expr{
  88. "srcs": asExpr(append(children, fmt.Sprintf(":%s", pkgSrcsTarget))),
  89. // TODO: should this be more restricted?
  90. "visibility": asExpr([]string{"//visibility:public"}),
  91. }),
  92. })
  93. return []string{fmt.Sprintf("//%s:%s", pkgPath, allSrcsTarget)}, nil
  94. }