jsonparser.go 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /*
  2. Copyright 2017 Google Inc. All Rights Reserved.
  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 tables
  14. import (
  15. "encoding/json"
  16. "io/ioutil"
  17. )
  18. type Definitions struct {
  19. IsLabelArg map[string]bool
  20. LabelBlacklist map[string]bool
  21. IsListArg map[string]bool
  22. IsSortableListArg map[string]bool
  23. SortableBlacklist map[string]bool
  24. SortableWhitelist map[string]bool
  25. NamePriority map[string]int
  26. StripLabelLeadingSlashes bool
  27. ShortenAbsoluteLabelsToRelative bool
  28. }
  29. // ParseJSONDefinitions reads and parses JSON table definitions from file.
  30. func ParseJSONDefinitions(file string) (Definitions, error) {
  31. var definitions Definitions
  32. data, err := ioutil.ReadFile(file)
  33. if err != nil {
  34. return definitions, err
  35. }
  36. err = json.Unmarshal(data, &definitions)
  37. return definitions, err
  38. }
  39. // ParseAndUpdateJSONDefinitions reads definitions from file and merges or
  40. // overrides the values in memory.
  41. func ParseAndUpdateJSONDefinitions(file string, merge bool) error {
  42. definitions, err := ParseJSONDefinitions(file)
  43. if err != nil {
  44. return err
  45. }
  46. if merge {
  47. MergeTables(definitions.IsLabelArg, definitions.LabelBlacklist, definitions.IsListArg, definitions.IsSortableListArg, definitions.SortableBlacklist, definitions.SortableWhitelist, definitions.NamePriority, definitions.StripLabelLeadingSlashes, definitions.ShortenAbsoluteLabelsToRelative)
  48. } else {
  49. OverrideTables(definitions.IsLabelArg, definitions.LabelBlacklist, definitions.IsListArg, definitions.IsSortableListArg, definitions.SortableBlacklist, definitions.SortableWhitelist, definitions.NamePriority, definitions.StripLabelLeadingSlashes, definitions.ShortenAbsoluteLabelsToRelative)
  50. }
  51. return nil
  52. }