1// Copyright 2016 Google Inc. All rights reserved. 2// 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// 7// http://www.apache.org/licenses/LICENSE-2.0 8// 9// Unless required by applicable law or agreed to in writing, software 10// distributed under the License is distributed on an "AS IS" BASIS, 11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12// See the License for the specific language governing permissions and 13// limitations under the License. 14 15package cc 16 17import ( 18 "fmt" 19 "path/filepath" 20 "regexp" 21 "strings" 22 23 "github.com/google/blueprint/proptools" 24 25 "android/soong/android" 26 "android/soong/cc/config" 27) 28 29type TidyProperties struct { 30 // whether to run clang-tidy over C-like sources. 31 Tidy *bool 32 33 // Extra flags to pass to clang-tidy 34 Tidy_flags []string 35 36 // Extra checks to enable or disable in clang-tidy 37 Tidy_checks []string 38 39 // Checks that should be treated as errors. 40 Tidy_checks_as_errors []string 41} 42 43type tidyFeature struct { 44 Properties TidyProperties 45} 46 47var quotedFlagRegexp, _ = regexp.Compile(`^-?-[^=]+=('|").*('|")$`) 48 49// When passing flag -name=value, if user add quotes around 'value', 50// the quotation marks will be preserved by NinjaAndShellEscapeList 51// and the 'value' string with quotes won't work like the intended value. 52// So here we report an error if -*='*' is found. 53func checkNinjaAndShellEscapeList(ctx ModuleContext, prop string, slice []string) []string { 54 for _, s := range slice { 55 if quotedFlagRegexp.MatchString(s) { 56 ctx.PropertyErrorf(prop, "Extra quotes in: %s", s) 57 } 58 } 59 return proptools.NinjaAndShellEscapeList(slice) 60} 61 62func (tidy *tidyFeature) props() []interface{} { 63 return []interface{}{&tidy.Properties} 64} 65 66// Set this const to true when all -warnings-as-errors in tidy_flags 67// are replaced with tidy_checks_as_errors. 68// Then, that old style usage will be obsolete and an error. 69const NoWarningsAsErrorsInTidyFlags = true 70 71func (tidy *tidyFeature) flags(ctx ModuleContext, flags Flags) Flags { 72 CheckBadTidyFlags(ctx, "tidy_flags", tidy.Properties.Tidy_flags) 73 CheckBadTidyChecks(ctx, "tidy_checks", tidy.Properties.Tidy_checks) 74 75 // Check if tidy is explicitly disabled for this module 76 if tidy.Properties.Tidy != nil && !*tidy.Properties.Tidy { 77 return flags 78 } 79 // Some projects like external/* and vendor/* have clang-tidy disabled by default, 80 // unless they are enabled explicitly with the "tidy:true" property or 81 // when TIDY_EXTERNAL_VENDOR is set to true. 82 if !proptools.Bool(tidy.Properties.Tidy) && 83 config.NoClangTidyForDir( 84 ctx.Config().IsEnvTrue("TIDY_EXTERNAL_VENDOR"), 85 ctx.ModuleDir()) { 86 return flags 87 } 88 // If not explicitly disabled, set flags.Tidy to generate .tidy rules. 89 // Note that libraries and binaries will depend on .tidy files ONLY if 90 // the global WITH_TIDY or module 'tidy' property is true. 91 flags.Tidy = true 92 93 // If explicitly enabled, by global WITH_TIDY or local tidy:true property, 94 // set flags.NeedTidyFiles to make this module depend on .tidy files. 95 // Note that locally set tidy:true is ignored if ALLOW_LOCAL_TIDY_TRUE is not set to true. 96 if ctx.Config().IsEnvTrue("WITH_TIDY") || (ctx.Config().IsEnvTrue("ALLOW_LOCAL_TIDY_TRUE") && Bool(tidy.Properties.Tidy)) { 97 flags.NeedTidyFiles = true 98 } 99 100 // Add global WITH_TIDY_FLAGS and local tidy_flags. 101 withTidyFlags := ctx.Config().Getenv("WITH_TIDY_FLAGS") 102 if len(withTidyFlags) > 0 { 103 flags.TidyFlags = append(flags.TidyFlags, withTidyFlags) 104 } 105 esc := checkNinjaAndShellEscapeList 106 flags.TidyFlags = append(flags.TidyFlags, esc(ctx, "tidy_flags", tidy.Properties.Tidy_flags)...) 107 // If TidyFlags does not contain -header-filter, add default header filter. 108 // Find the substring because the flag could also appear as --header-filter=... 109 // and with or without single or double quotes. 110 if !android.SubstringInList(flags.TidyFlags, "-header-filter=") { 111 defaultDirs := ctx.Config().Getenv("DEFAULT_TIDY_HEADER_DIRS") 112 headerFilter := "-header-filter=" 113 // Default header filter should include only the module directory, 114 // not the out/soong/.../ModuleDir/... 115 // Otherwise, there will be too many warnings from generated files in out/... 116 // If a module wants to see warnings in the generated source files, 117 // it should specify its own -header-filter flag. 118 if defaultDirs == "" { 119 headerFilter += "^" + ctx.ModuleDir() + "/" 120 } else { 121 headerFilter += "\"(^" + ctx.ModuleDir() + "/|" + defaultDirs + ")\"" 122 } 123 flags.TidyFlags = append(flags.TidyFlags, headerFilter) 124 } 125 // Work around RBE bug in parsing clang-tidy flags, replace "--flag" with "-flag". 126 // Some C/C++ modules added local tidy flags like --header-filter= and --extra-arg-before=. 127 doubleDash := regexp.MustCompile("^('?)--(.*)$") 128 for i, s := range flags.TidyFlags { 129 flags.TidyFlags[i] = doubleDash.ReplaceAllString(s, "$1-$2") 130 } 131 132 // If clang-tidy is not enabled globally, add the -quiet flag. 133 if !ctx.Config().ClangTidy() { 134 flags.TidyFlags = append(flags.TidyFlags, "-quiet") 135 flags.TidyFlags = append(flags.TidyFlags, "-extra-arg-before=-fno-caret-diagnostics") 136 } 137 138 for _, f := range config.TidyExtraArgFlags() { 139 flags.TidyFlags = append(flags.TidyFlags, "-extra-arg-before="+f) 140 } 141 142 tidyChecks := "-checks=" 143 if checks := ctx.Config().TidyChecks(); len(checks) > 0 { 144 tidyChecks += checks 145 } else { 146 tidyChecks += config.TidyChecksForDir(ctx.ModuleDir()) 147 } 148 if len(tidy.Properties.Tidy_checks) > 0 { 149 // If Tidy_checks contains "-*", ignore all checks before "-*". 150 localChecks := tidy.Properties.Tidy_checks 151 ignoreGlobalChecks := false 152 for n, check := range tidy.Properties.Tidy_checks { 153 if check == "-*" { 154 ignoreGlobalChecks = true 155 localChecks = tidy.Properties.Tidy_checks[n:] 156 } 157 } 158 if ignoreGlobalChecks { 159 tidyChecks = "-checks=" + strings.Join(esc(ctx, "tidy_checks", 160 config.ClangRewriteTidyChecks(localChecks)), ",") 161 } else { 162 tidyChecks = tidyChecks + "," + strings.Join(esc(ctx, "tidy_checks", 163 config.ClangRewriteTidyChecks(localChecks)), ",") 164 } 165 } 166 tidyChecks = tidyChecks + config.TidyGlobalNoChecks() 167 if ctx.Windows() { 168 // https://b.corp.google.com/issues/120614316 169 // mingw32 has cert-dcl16-c warning in NO_ERROR, 170 // which is used in many Android files. 171 tidyChecks += ",-cert-dcl16-c" 172 } 173 174 flags.TidyFlags = append(flags.TidyFlags, tidyChecks) 175 176 // Embedding -warnings-as-errors in tidy_flags is error-prone. 177 // It should be replaced with the tidy_checks_as_errors list. 178 for i, s := range flags.TidyFlags { 179 if strings.Contains(s, "-warnings-as-errors=") { 180 if NoWarningsAsErrorsInTidyFlags { 181 ctx.PropertyErrorf("tidy_flags", "should not contain "+s+"; use tidy_checks_as_errors instead.") 182 } else { 183 fmt.Printf("%s: warning: module %s's tidy_flags should not contain %s, which is replaced with -warnings-as-errors=-*; use tidy_checks_as_errors for your own as-error warnings instead.\n", 184 ctx.BlueprintsFile(), ctx.ModuleName(), s) 185 flags.TidyFlags[i] = "-warnings-as-errors=-*" 186 } 187 break // there is at most one -warnings-as-errors 188 } 189 } 190 // Default clang-tidy flags does not contain -warning-as-errors. 191 // If a module has tidy_checks_as_errors, add the list to -warnings-as-errors 192 // and then append the TidyGlobalNoErrorChecks. 193 if len(tidy.Properties.Tidy_checks_as_errors) > 0 { 194 tidyChecksAsErrors := "-warnings-as-errors=" + 195 strings.Join(esc(ctx, "tidy_checks_as_errors", tidy.Properties.Tidy_checks_as_errors), ",") + 196 config.TidyGlobalNoErrorChecks() 197 flags.TidyFlags = append(flags.TidyFlags, tidyChecksAsErrors) 198 } 199 return flags 200} 201 202func init() { 203 android.RegisterParallelSingletonType("tidy_phony_targets", TidyPhonySingleton) 204} 205 206// This TidyPhonySingleton generates both tidy-* and obj-* phony targets for C/C++ files. 207func TidyPhonySingleton() android.Singleton { 208 return &tidyPhonySingleton{} 209} 210 211type tidyPhonySingleton struct{} 212 213// Given a final module, add its tidy/obj phony targets to tidy/objModulesInDirGroup. 214func collectTidyObjModuleTargets(ctx android.SingletonContext, module android.Module, 215 tidyModulesInDirGroup, objModulesInDirGroup map[string]map[string]android.Paths) { 216 allObjFileGroups := make(map[string]android.Paths) // variant group name => obj file Paths 217 allTidyFileGroups := make(map[string]android.Paths) // variant group name => tidy file Paths 218 subsetObjFileGroups := make(map[string]android.Paths) // subset group name => obj file Paths 219 subsetTidyFileGroups := make(map[string]android.Paths) // subset group name => tidy file Paths 220 221 // (1) Collect all obj/tidy files into OS-specific groups. 222 ctx.VisitAllModuleVariantProxies(module, func(variant android.ModuleProxy) { 223 osName := android.OtherModuleProviderOrDefault(ctx, variant, android.CommonModuleInfoKey).CompileTarget.Os.Name 224 info := android.OtherModuleProviderOrDefault(ctx, variant, CcObjectInfoProvider) 225 addToOSGroup(osName, info.objFiles, allObjFileGroups, subsetObjFileGroups) 226 addToOSGroup(osName, info.tidyFiles, allTidyFileGroups, subsetTidyFileGroups) 227 }) 228 229 // (2) Add an all-OS group, with "" or "subset" name, to include all os-specific phony targets. 230 addAllOSGroup(ctx, module, allObjFileGroups, "", "obj") 231 addAllOSGroup(ctx, module, allTidyFileGroups, "", "tidy") 232 addAllOSGroup(ctx, module, subsetObjFileGroups, "subset", "obj") 233 addAllOSGroup(ctx, module, subsetTidyFileGroups, "subset", "tidy") 234 235 tidyTargetGroups := make(map[string]android.Path) 236 objTargetGroups := make(map[string]android.Path) 237 genObjTidyPhonyTargets(ctx, module, "obj", allObjFileGroups, objTargetGroups) 238 genObjTidyPhonyTargets(ctx, module, "obj", subsetObjFileGroups, objTargetGroups) 239 genObjTidyPhonyTargets(ctx, module, "tidy", allTidyFileGroups, tidyTargetGroups) 240 genObjTidyPhonyTargets(ctx, module, "tidy", subsetTidyFileGroups, tidyTargetGroups) 241 242 moduleDir := ctx.ModuleDir(module) 243 appendToModulesInDirGroup(tidyTargetGroups, moduleDir, tidyModulesInDirGroup) 244 appendToModulesInDirGroup(objTargetGroups, moduleDir, objModulesInDirGroup) 245} 246 247func (m *tidyPhonySingleton) GenerateBuildActions(ctx android.SingletonContext) { 248 // For tidy-* directory phony targets, there are different variant groups. 249 // tidyModulesInDirGroup[G][D] is for group G, directory D, with Paths 250 // of all phony targets to be included into direct dependents of tidy-D_G. 251 tidyModulesInDirGroup := make(map[string]map[string]android.Paths) 252 // Also for obj-* directory phony targets. 253 objModulesInDirGroup := make(map[string]map[string]android.Paths) 254 255 // Collect tidy/obj targets from the 'final' modules. 256 ctx.VisitAllModules(func(module android.Module) { 257 if ctx.IsFinalModule(module) { 258 collectTidyObjModuleTargets(ctx, module, tidyModulesInDirGroup, objModulesInDirGroup) 259 } 260 }) 261 262 suffix := "" 263 if ctx.Config().KatiEnabled() { 264 suffix = "-soong" 265 } 266 generateObjTidyPhonyTargets(ctx, suffix, "obj", objModulesInDirGroup) 267 generateObjTidyPhonyTargets(ctx, suffix, "tidy", tidyModulesInDirGroup) 268} 269 270// The name for an obj/tidy module variant group phony target is Name_group-obj/tidy, 271func objTidyModuleGroupName(module android.Module, group string, suffix string) string { 272 if group == "" { 273 return module.Name() + "-" + suffix 274 } 275 return module.Name() + "_" + group + "-" + suffix 276} 277 278// Generate obj-* or tidy-* phony targets. 279func generateObjTidyPhonyTargets(ctx android.SingletonContext, suffix string, prefix string, objTidyModulesInDirGroup map[string]map[string]android.Paths) { 280 // For each variant group, create a <prefix>-<directory>_group target that 281 // depends on all subdirectories and modules in the directory. 282 for group, modulesInDir := range objTidyModulesInDirGroup { 283 groupSuffix := "" 284 if group != "" { 285 groupSuffix = "_" + group 286 } 287 mmTarget := func(dir string) string { 288 return prefix + "-" + strings.Replace(filepath.Clean(dir), "/", "-", -1) + groupSuffix 289 } 290 dirs, topDirs := android.AddAncestors(ctx, modulesInDir, mmTarget) 291 // Create a <prefix>-soong_group target that depends on all <prefix>-dir_group of top level dirs. 292 var topDirPaths android.Paths 293 for _, dir := range topDirs { 294 topDirPaths = append(topDirPaths, android.PathForPhony(ctx, mmTarget(dir))) 295 } 296 ctx.Phony(prefix+suffix+groupSuffix, topDirPaths...) 297 // Create a <prefix>-dir_group target that depends on all targets in modulesInDir[dir] 298 for _, dir := range dirs { 299 if dir != "." && dir != "" { 300 ctx.Phony(mmTarget(dir), modulesInDir[dir]...) 301 } 302 } 303 } 304} 305 306// Append (obj|tidy)TargetGroups[group] into (obj|tidy)ModulesInDirGroups[group][moduleDir]. 307func appendToModulesInDirGroup(targetGroups map[string]android.Path, moduleDir string, modulesInDirGroup map[string]map[string]android.Paths) { 308 for group, phonyPath := range targetGroups { 309 if _, found := modulesInDirGroup[group]; !found { 310 modulesInDirGroup[group] = make(map[string]android.Paths) 311 } 312 modulesInDirGroup[group][moduleDir] = append(modulesInDirGroup[group][moduleDir], phonyPath) 313 } 314} 315 316// Add given files to the OS group and subset group. 317func addToOSGroup(osName string, files android.Paths, allGroups, subsetGroups map[string]android.Paths) { 318 if len(files) > 0 { 319 subsetName := osName + "_subset" 320 allGroups[osName] = append(allGroups[osName], files...) 321 // Now include only the first variant in the subsetGroups. 322 // If clang and clang-tidy get faster, we might include more variants. 323 if _, found := subsetGroups[subsetName]; !found { 324 subsetGroups[subsetName] = files 325 } 326 } 327} 328 329// Add an all-OS group, with groupName, to include all os-specific phony targets. 330func addAllOSGroup(ctx android.SingletonContext, module android.Module, phonyTargetGroups map[string]android.Paths, groupName string, objTidyName string) { 331 if len(phonyTargetGroups) > 0 { 332 var targets android.Paths 333 for group, _ := range phonyTargetGroups { 334 targets = append(targets, android.PathForPhony(ctx, objTidyModuleGroupName(module, group, objTidyName))) 335 } 336 phonyTargetGroups[groupName] = targets 337 } 338} 339 340// Create one phony targets for each group and add them to the targetGroups. 341func genObjTidyPhonyTargets(ctx android.SingletonContext, module android.Module, objTidyName string, fileGroups map[string]android.Paths, targetGroups map[string]android.Path) { 342 for group, files := range fileGroups { 343 groupName := objTidyModuleGroupName(module, group, objTidyName) 344 ctx.Phony(groupName, files...) 345 targetGroups[group] = android.PathForPhony(ctx, groupName) 346 } 347} 348