config.go 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. "encoding/json"
  16. "io/ioutil"
  17. )
  18. // Cfg defines the configuration options for kazel.
  19. type Cfg struct {
  20. GoPrefix string
  21. // evaluated recursively, defaults to ["."]
  22. SrcDirs []string
  23. // regexps that match packages to skip
  24. SkippedPaths []string
  25. // whether to add "pkg-srcs" and "all-srcs" filegroups
  26. // note that this operates on the entire tree (not just SrcsDirs) but skips anything matching SkippedPaths
  27. AddSourcesRules bool
  28. // whether to have multiple build files in vendor/ or just one.
  29. VendorMultipleBuildFiles bool
  30. // whether to manage kubernetes' pkg/generated/openapi.
  31. K8sOpenAPIGen bool
  32. // Whether to manage the upstream Go rules provided by bazelbuild/rules_go.
  33. // If using gazelle, set this to false (or omit).
  34. ManageGoRules bool
  35. }
  36. // ReadCfg reads and unmarshals the specified json file into a Cfg struct.
  37. func ReadCfg(cfgPath string) (*Cfg, error) {
  38. b, err := ioutil.ReadFile(cfgPath)
  39. if err != nil {
  40. return nil, err
  41. }
  42. var cfg Cfg
  43. if err := json.Unmarshal(b, &cfg); err != nil {
  44. return nil, err
  45. }
  46. defaultCfg(&cfg)
  47. return &cfg, nil
  48. }
  49. func defaultCfg(c *Cfg) {
  50. if len(c.SrcDirs) == 0 {
  51. c.SrcDirs = []string{"."}
  52. }
  53. }