/* Copyright 2016 Google LLC Licensed 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 https://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. */ // generateTables is a tool that generates a go file from the Build language proto file. // It generates a Go map to find the type of an attribute. package main import ( "flag" "fmt" "io/ioutil" "log" "os" "sort" buildpb "github.com/bazelbuild/buildtools/build_proto" "github.com/golang/protobuf/proto" ) var inputPath = flag.String("input", "", "input file") var outputPath = flag.String("output", "", "output file") // bazelBuildLanguage reads a proto file and returns a BuildLanguage object. func bazelBuildLanguage(file string) (*buildpb.BuildLanguage, error) { data, err := ioutil.ReadFile(file) if err != nil { fmt.Fprintf(os.Stderr, "Cannot read %s: %s\n", file, err) return nil, err } lang := &buildpb.BuildLanguage{} if err := proto.Unmarshal(data, lang); err != nil { return nil, err } return lang, nil } // generateTable returns a map that associate a type for each attribute name found in Bazel. func generateTable(rules []*buildpb.RuleDefinition) map[string]buildpb.Attribute_Discriminator { types := make(map[string]buildpb.Attribute_Discriminator) for _, r := range rules { for _, attr := range r.Attribute { types[*attr.Name] = *attr.Type } } // Because of inconsistencies in bazel, we need a few exceptions. types["resources"] = buildpb.Attribute_LABEL_LIST types["out"] = buildpb.Attribute_STRING types["outs"] = buildpb.Attribute_STRING_LIST types["stamp"] = buildpb.Attribute_TRISTATE types["strip"] = buildpb.Attribute_BOOLEAN // Surprisingly, the name argument is missing. types["name"] = buildpb.Attribute_STRING // package arguments are also not listed in the proto file types["default_hdrs_check"] = buildpb.Attribute_STRING types["default_visibility"] = types["visibility"] types["default_copts"] = types["copts"] types["default_deprecation"] = types["deprecation"] types["default_testonly"] = types["testonly"] types["default_applicable_licenses"] = buildpb.Attribute_LABEL_LIST types["default_package_metadata"] = buildpb.Attribute_LABEL_LIST types["features"] = buildpb.Attribute_STRING_LIST types["extra_srcs"] = types["srcs"] types["pytype_deps"] = types["deps"] // Make sure we always have this. _, ok := types["package_metadata"] if ! ok { types["package_metadata"] = buildpb.Attribute_LABEL_LIST } return types } func main() { flag.Parse() if *inputPath == "" { log.Fatal("No input file specified") } lang, err := bazelBuildLanguage(*inputPath) if err != nil { log.Fatalf("%s\n", err) } types := generateTable(lang.Rule) // sort the keys to get deterministic output keys := make([]string, 0, len(types)) for i := range types { keys = append(keys, i) } sort.Strings(keys) f, err := os.Create(*outputPath) if err != nil { log.Fatalf("%s\n", err) } defer f.Close() // print fmt.Fprintf(f, `// Generated file, do not edit. package lang import buildpb "github.com/bazelbuild/buildtools/build_proto" var TypeOf = map[string]buildpb.Attribute_Discriminator{ `) for _, attr := range keys { fmt.Fprintf(f, " \"%s\": buildpb.Attribute_%s,\n", attr, types[attr]) } fmt.Fprintf(f, "}\n") }