/* Copyright 2016 The Bazel Authors. All rights reserved. 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 http://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. */ // Package merger provides methods for merging parsed BUILD files. package merger import ( "fmt" "strings" "github.com/bazelbuild/bazel-gazelle/internal/rule" ) // Phase indicates which attributes should be merged in matching rules. // // The pre-resolve merge is performed before rules are indexed for dependency // resolution. All attributes not related to dependencies are merged. This // merge must be performed indexing because attributes related to indexing // (e.g., srcs, importpath) will be affected. // // The post-resolve merge is performed after rules are indexed. All attributes // related to dependencies are merged. type Phase int const ( PreResolve Phase = iota PostResolve ) // MergeFile merges the rules in genRules with matching rules in f and // adds unmatched rules to the end of the merged file. MergeFile also merges // rules in empty with matching rules in f and deletes rules that // are empty after merging. attrs is the set of attributes to merge. Attributes // not in this set will be left alone if they already exist. func MergeFile(oldFile *rule.File, emptyRules, genRules []*rule.Rule, phase Phase, kinds map[string]rule.KindInfo) { getMergeAttrs := func(r *rule.Rule) map[string]bool { if phase == PreResolve { return kinds[r.Kind()].MergeableAttrs } else { return kinds[r.Kind()].ResolveAttrs } } // Merge empty rules into the file and delete any rules which become empty. for _, emptyRule := range emptyRules { if oldRule, _ := match(oldFile.Rules, emptyRule, kinds[emptyRule.Kind()]); oldRule != nil { if oldRule.ShouldKeep() { continue } rule.MergeRules(emptyRule, oldRule, getMergeAttrs(emptyRule), oldFile.Path) if oldRule.IsEmpty(kinds[oldRule.Kind()]) { oldRule.Delete() } } } oldFile.Sync() // Match generated rules with existing rules in the file. Keep track of // rules with non-standard names. matchRules := make([]*rule.Rule, len(genRules)) matchErrors := make([]error, len(genRules)) substitutions := make(map[string]string) for i, genRule := range genRules { oldRule, err := match(oldFile.Rules, genRule, kinds[genRule.Kind()]) if err != nil { // TODO(jayconrod): add a verbose mode and log errors. They are too chatty // to print by default. matchErrors[i] = err continue } matchRules[i] = oldRule if oldRule != nil { if oldRule.Name() != genRule.Name() { substitutions[genRule.Name()] = oldRule.Name() } } } // Rename labels in generated rules that refer to other generated rules. if len(substitutions) > 0 { for _, genRule := range genRules { substituteRule(genRule, substitutions, kinds[genRule.Kind()]) } } // Merge generated rules with existing rules or append to the end of the file. for i, genRule := range genRules { if matchErrors[i] != nil { continue } if matchRules[i] == nil { genRule.Insert(oldFile) } else { rule.MergeRules(genRule, matchRules[i], getMergeAttrs(genRule), oldFile.Path) } } } // substituteRule replaces local labels (those beginning with ":", referring to // targets in the same package) according to a substitution map. This is used // to update generated rules before merging when the corresponding existing // rules have different names. If substituteRule replaces a string, it returns // a new expression; it will not modify the original expression. func substituteRule(r *rule.Rule, substitutions map[string]string, info rule.KindInfo) { for attr := range info.SubstituteAttrs { if expr := r.Attr(attr); expr != nil { expr = rule.MapExprStrings(expr, func(s string) string { if rename, ok := substitutions[strings.TrimPrefix(s, ":")]; ok { return ":" + rename } else { return s } }) r.SetAttr(attr, expr) } } } // match searches for a rule that can be merged with x in rules. // // A rule is considered a match if its kind is equal to x's kind AND either its // name is equal OR at least one of the attributes in matchAttrs is equal. // // If there are no matches, nil and nil are returned. // // If a rule has the same name but a different kind, nill and an error // are returned. // // If there is exactly one match, the rule and nil are returned. // // If there are multiple matches, match will attempt to disambiguate, based on // the quality of the match (name match is best, then attribute match in the // order that attributes are listed). If disambiguation is successful, // the rule and nil are returned. Otherwise, nil and an error are returned. func match(rules []*rule.Rule, x *rule.Rule, info rule.KindInfo) (*rule.Rule, error) { xname := x.Name() xkind := x.Kind() var nameMatches []*rule.Rule var kindMatches []*rule.Rule for _, y := range rules { if xname == y.Name() { nameMatches = append(nameMatches, y) } if xkind == y.Kind() { kindMatches = append(kindMatches, y) } } if len(nameMatches) == 1 { y := nameMatches[0] if xkind != y.Kind() { return nil, fmt.Errorf("could not merge %s(%s): a rule of the same name has kind %s", xkind, xname, y.Kind()) } return y, nil } if len(nameMatches) > 1 { return nil, fmt.Errorf("could not merge %s(%s): multiple rules have the same name", xkind, xname) } for _, key := range info.MatchAttrs { var attrMatches []*rule.Rule xvalue := x.AttrString(key) if xvalue == "" { continue } for _, y := range kindMatches { if xvalue == y.AttrString(key) { attrMatches = append(attrMatches, y) } } if len(attrMatches) == 1 { return attrMatches[0], nil } else if len(attrMatches) > 1 { return nil, fmt.Errorf("could not merge %s(%s): multiple rules have the same attribute %s = %q", xkind, xname, key, xvalue) } } if info.MatchAny { if len(kindMatches) == 1 { return kindMatches[0], nil } else if len(kindMatches) > 1 { return nil, fmt.Errorf("could not merge %s(%s): multiple rules have the same kind but different names", xkind, xname) } } return nil, nil }