Liz Kammer | 2dd9ca4 | 2020-11-25 16:06:39 -0800 | [diff] [blame] | 1 | package bp2build |
| 2 | |
| 3 | import ( |
Jingwen Chen | 0ee88a6 | 2022-01-07 14:55:29 +0000 | [diff] [blame] | 4 | "encoding/json" |
Cole Faust | eb644cf | 2023-04-11 13:48:17 -0700 | [diff] [blame] | 5 | "fmt" |
Liz Kammer | 2dd9ca4 | 2020-11-25 16:06:39 -0800 | [diff] [blame] | 6 | "reflect" |
Cole Faust | 37d27c4 | 2023-04-12 10:27:45 -0700 | [diff] [blame] | 7 | "strconv" |
Liz Kammer | 2dd9ca4 | 2020-11-25 16:06:39 -0800 | [diff] [blame] | 8 | "strings" |
| 9 | |
Alex Márquez Pérez Muñíz Díaz Púras Thaureaux | 447f6c9 | 2021-08-31 20:30:36 +0000 | [diff] [blame] | 10 | "android/soong/android" |
usta | 40caf95 | 2023-08-04 16:52:14 -0400 | [diff] [blame] | 11 | "android/soong/apex" |
Trevor Radcliffe | 4f95ee9 | 2023-01-19 16:02:47 +0000 | [diff] [blame] | 12 | "android/soong/cc" |
Sam Delmerico | 932c01c | 2022-03-25 16:33:26 +0000 | [diff] [blame] | 13 | cc_config "android/soong/cc/config" |
| 14 | java_config "android/soong/java/config" |
Vinh Tran | 80f6b21 | 2023-08-23 13:49:13 -0400 | [diff] [blame] | 15 | rust_config "android/soong/rust/config" |
usta | 40caf95 | 2023-08-04 16:52:14 -0400 | [diff] [blame] | 16 | "android/soong/starlark_fmt" |
Jingwen Chen | 7810e17 | 2022-07-29 02:25:34 +0000 | [diff] [blame] | 17 | |
Cole Faust | 6054cdf | 2023-09-12 10:07:07 -0700 | [diff] [blame^] | 18 | "github.com/google/blueprint" |
Liz Kammer | 2dd9ca4 | 2020-11-25 16:06:39 -0800 | [diff] [blame] | 19 | "github.com/google/blueprint/proptools" |
| 20 | ) |
| 21 | |
| 22 | type BazelFile struct { |
| 23 | Dir string |
| 24 | Basename string |
| 25 | Contents string |
| 26 | } |
| 27 | |
Cole Faust | 6054cdf | 2023-09-12 10:07:07 -0700 | [diff] [blame^] | 28 | // createSoongInjectionDirFiles returns most of the files to write to the soong_injection directory. |
| 29 | // Some other files also come from CreateProductConfigFiles |
| 30 | func createSoongInjectionDirFiles(ctx *CodegenContext, metrics CodegenMetrics) ([]BazelFile, error) { |
| 31 | cfg := ctx.Config() |
Jingwen Chen | bf61afb | 2021-05-06 13:31:18 +0000 | [diff] [blame] | 32 | var files []BazelFile |
| 33 | |
Sam Delmerico | 46d08b4 | 2022-11-15 15:51:04 -0500 | [diff] [blame] | 34 | files = append(files, newFile("android", GeneratedBuildFileName, "")) // Creates a //cc_toolchain package. |
| 35 | files = append(files, newFile("android", "constants.bzl", android.BazelCcToolchainVars(cfg))) |
| 36 | |
Cole Faust | 6054cdf | 2023-09-12 10:07:07 -0700 | [diff] [blame^] | 37 | // Visit all modules to determine the list of ndk libraries |
| 38 | // This list will be used to add additional flags for cc stub generation |
| 39 | ndkLibsStringFormatted := []string{} |
| 40 | ctx.Context().VisitAllModules(func(m blueprint.Module) { |
| 41 | if ctx.Context().ModuleType(m) == "ndk_library" { |
| 42 | ndkLibsStringFormatted = append(ndkLibsStringFormatted, fmt.Sprintf(`"%s"`, m.Name())) // name will be `"libc.ndk"` |
| 43 | } |
| 44 | }) |
| 45 | |
Jingwen Chen | c63677b | 2021-06-17 05:43:19 +0000 | [diff] [blame] | 46 | files = append(files, newFile("cc_toolchain", GeneratedBuildFileName, "")) // Creates a //cc_toolchain package. |
Trevor Radcliffe | 4f95ee9 | 2023-01-19 16:02:47 +0000 | [diff] [blame] | 47 | files = append(files, newFile("cc_toolchain", "config_constants.bzl", cc_config.BazelCcToolchainVars(cfg))) |
| 48 | files = append(files, newFile("cc_toolchain", "sanitizer_constants.bzl", cc.BazelCcSanitizerToolchainVars(cfg))) |
Cole Faust | 6054cdf | 2023-09-12 10:07:07 -0700 | [diff] [blame^] | 49 | files = append(files, newFile("cc_toolchain", "ndk_libs.bzl", fmt.Sprintf("ndk_libs = [%v]", strings.Join(ndkLibsStringFormatted, ", ")))) |
Sam Delmerico | 932c01c | 2022-03-25 16:33:26 +0000 | [diff] [blame] | 50 | |
| 51 | files = append(files, newFile("java_toolchain", GeneratedBuildFileName, "")) // Creates a //java_toolchain package. |
| 52 | files = append(files, newFile("java_toolchain", "constants.bzl", java_config.BazelJavaToolchainVars(cfg))) |
Jingwen Chen | bf61afb | 2021-05-06 13:31:18 +0000 | [diff] [blame] | 53 | |
Vinh Tran | 80f6b21 | 2023-08-23 13:49:13 -0400 | [diff] [blame] | 54 | files = append(files, newFile("rust_toolchain", GeneratedBuildFileName, "")) // Creates a //rust_toolchain package. |
| 55 | files = append(files, newFile("rust_toolchain", "constants.bzl", rust_config.BazelRustToolchainVars(cfg))) |
| 56 | |
Jingwen Chen | 7810e17 | 2022-07-29 02:25:34 +0000 | [diff] [blame] | 57 | files = append(files, newFile("apex_toolchain", GeneratedBuildFileName, "")) // Creates a //apex_toolchain package. |
Cole Faust | 9e384e2 | 2023-02-08 17:43:09 -0800 | [diff] [blame] | 58 | apexToolchainVars, err := apex.BazelApexToolchainVars() |
| 59 | if err != nil { |
| 60 | return nil, err |
| 61 | } |
| 62 | files = append(files, newFile("apex_toolchain", "constants.bzl", apexToolchainVars)) |
Jingwen Chen | 7810e17 | 2022-07-29 02:25:34 +0000 | [diff] [blame] | 63 | |
Liz Kammer | 32c634b | 2023-08-25 17:42:42 -0400 | [diff] [blame] | 64 | if buf, err := json.MarshalIndent(metrics.convertedModuleWithType, "", " "); err != nil { |
| 65 | return []BazelFile{}, err |
| 66 | } else { |
| 67 | files = append(files, newFile("metrics", "converted_modules.json", string(buf))) |
| 68 | } |
Jingwen Chen | c63677b | 2021-06-17 05:43:19 +0000 | [diff] [blame] | 69 | |
Kevin Dagostino | 60f562a | 2022-09-20 03:54:47 +0000 | [diff] [blame] | 70 | convertedModulePathMap, err := json.MarshalIndent(metrics.convertedModulePathMap, "", "\t") |
| 71 | if err != nil { |
| 72 | panic(err) |
| 73 | } |
Jingwen Chen | 6134211 | 2023-04-11 08:49:01 +0000 | [diff] [blame] | 74 | files = append(files, newFile("metrics", GeneratedBuildFileName, "")) // Creates a //metrics package. |
Kevin Dagostino | 60f562a | 2022-09-20 03:54:47 +0000 | [diff] [blame] | 75 | files = append(files, newFile("metrics", "converted_modules_path_map.json", string(convertedModulePathMap))) |
Jingwen Chen | 6134211 | 2023-04-11 08:49:01 +0000 | [diff] [blame] | 76 | files = append(files, newFile("metrics", "converted_modules_path_map.bzl", "modules = "+strings.ReplaceAll(string(convertedModulePathMap), "\\", "\\\\"))) |
Kevin Dagostino | 60f562a | 2022-09-20 03:54:47 +0000 | [diff] [blame] | 77 | |
Jingwen Chen | 0181202 | 2021-11-19 14:29:43 +0000 | [diff] [blame] | 78 | files = append(files, newFile("product_config", "soong_config_variables.bzl", cfg.Bp2buildSoongConfigDefinitions.String())) |
| 79 | |
Liz Kammer | e8303bd | 2022-02-16 09:02:48 -0500 | [diff] [blame] | 80 | files = append(files, newFile("product_config", "arch_configuration.bzl", android.StarlarkArchConfigurations())) |
| 81 | |
Cole Faust | 3486740 | 2023-04-28 12:32:27 -0700 | [diff] [blame] | 82 | apiLevelsMap, err := android.GetApiLevelsMap(cfg) |
| 83 | if err != nil { |
| 84 | return nil, err |
| 85 | } |
| 86 | apiLevelsContent, err := json.Marshal(apiLevelsMap) |
Jingwen Chen | 0ee88a6 | 2022-01-07 14:55:29 +0000 | [diff] [blame] | 87 | if err != nil { |
Cole Faust | 9e384e2 | 2023-02-08 17:43:09 -0800 | [diff] [blame] | 88 | return nil, err |
Jingwen Chen | 0ee88a6 | 2022-01-07 14:55:29 +0000 | [diff] [blame] | 89 | } |
| 90 | files = append(files, newFile("api_levels", GeneratedBuildFileName, `exports_files(["api_levels.json"])`)) |
Alix Espino | 4fd7e74 | 2023-02-24 14:46:43 +0000 | [diff] [blame] | 91 | // TODO(b/269691302) value of apiLevelsContent is product variable dependent and should be avoided for soong injection |
Jingwen Chen | 0ee88a6 | 2022-01-07 14:55:29 +0000 | [diff] [blame] | 92 | files = append(files, newFile("api_levels", "api_levels.json", string(apiLevelsContent))) |
Cole Faust | eb644cf | 2023-04-11 13:48:17 -0700 | [diff] [blame] | 93 | files = append(files, newFile("api_levels", "platform_versions.bzl", platformVersionContents(cfg))) |
Jingwen Chen | 0ee88a6 | 2022-01-07 14:55:29 +0000 | [diff] [blame] | 94 | |
Sam Delmerico | cb3c52c | 2023-02-03 17:40:08 -0500 | [diff] [blame] | 95 | files = append(files, newFile("allowlists", GeneratedBuildFileName, "")) |
Cole Faust | 705968d | 2022-12-14 11:32:05 -0800 | [diff] [blame] | 96 | // TODO(b/262781701): Create an alternate soong_build entrypoint for writing out these files only when requested |
| 97 | files = append(files, newFile("allowlists", "mixed_build_prod_allowlist.txt", strings.Join(android.GetBazelEnabledModules(android.BazelProdMode), "\n")+"\n")) |
| 98 | files = append(files, newFile("allowlists", "mixed_build_staging_allowlist.txt", strings.Join(android.GetBazelEnabledModules(android.BazelStagingMode), "\n")+"\n")) |
| 99 | |
Cole Faust | 9e384e2 | 2023-02-08 17:43:09 -0800 | [diff] [blame] | 100 | return files, nil |
Jingwen Chen | bf61afb | 2021-05-06 13:31:18 +0000 | [diff] [blame] | 101 | } |
| 102 | |
Cole Faust | eb644cf | 2023-04-11 13:48:17 -0700 | [diff] [blame] | 103 | func platformVersionContents(cfg android.Config) string { |
| 104 | // Despite these coming from cfg.productVariables, they are actually hardcoded in global |
| 105 | // makefiles, not set in individual product config makesfiles, so they're safe to just export |
| 106 | // and load() directly. |
| 107 | |
| 108 | platformVersionActiveCodenames := make([]string, 0, len(cfg.PlatformVersionActiveCodenames())) |
| 109 | for _, codename := range cfg.PlatformVersionActiveCodenames() { |
| 110 | platformVersionActiveCodenames = append(platformVersionActiveCodenames, fmt.Sprintf("%q", codename)) |
| 111 | } |
| 112 | |
Cole Faust | 37d27c4 | 2023-04-12 10:27:45 -0700 | [diff] [blame] | 113 | platformSdkVersion := "None" |
| 114 | if cfg.RawPlatformSdkVersion() != nil { |
| 115 | platformSdkVersion = strconv.Itoa(*cfg.RawPlatformSdkVersion()) |
| 116 | } |
| 117 | |
Cole Faust | eb644cf | 2023-04-11 13:48:17 -0700 | [diff] [blame] | 118 | return fmt.Sprintf(` |
| 119 | platform_versions = struct( |
| 120 | platform_sdk_final = %s, |
Cole Faust | 37d27c4 | 2023-04-12 10:27:45 -0700 | [diff] [blame] | 121 | platform_sdk_version = %s, |
Cole Faust | eb644cf | 2023-04-11 13:48:17 -0700 | [diff] [blame] | 122 | platform_sdk_codename = %q, |
| 123 | platform_version_active_codenames = [%s], |
| 124 | ) |
Cole Faust | 37d27c4 | 2023-04-12 10:27:45 -0700 | [diff] [blame] | 125 | `, starlark_fmt.PrintBool(cfg.PlatformSdkFinal()), platformSdkVersion, cfg.PlatformSdkCodename(), strings.Join(platformVersionActiveCodenames, ", ")) |
Cole Faust | eb644cf | 2023-04-11 13:48:17 -0700 | [diff] [blame] | 126 | } |
| 127 | |
usta | 40caf95 | 2023-08-04 16:52:14 -0400 | [diff] [blame] | 128 | func CreateBazelFiles(ruleShims map[string]RuleShim, buildToTargets map[string]BazelTargets, mode CodegenMode) []BazelFile { |
Jingwen Chen | 6c309cd | 2021-04-01 07:11:11 +0000 | [diff] [blame] | 129 | var files []BazelFile |
Liz Kammer | 2dd9ca4 | 2020-11-25 16:06:39 -0800 | [diff] [blame] | 130 | |
Jingwen Chen | 33832f9 | 2021-01-24 22:55:54 -0500 | [diff] [blame] | 131 | if mode == QueryView { |
Jingwen Chen | 6c309cd | 2021-04-01 07:11:11 +0000 | [diff] [blame] | 132 | // Write top level WORKSPACE. |
| 133 | files = append(files, newFile("", "WORKSPACE", "")) |
| 134 | |
Jingwen Chen | 12b4c27 | 2021-03-10 02:05:59 -0500 | [diff] [blame] | 135 | // Used to denote that the top level directory is a package. |
| 136 | files = append(files, newFile("", GeneratedBuildFileName, "")) |
| 137 | |
| 138 | files = append(files, newFile(bazelRulesSubDir, GeneratedBuildFileName, "")) |
| 139 | |
Jingwen Chen | 7385067 | 2020-12-14 08:25:34 -0500 | [diff] [blame] | 140 | // These files are only used for queryview. |
| 141 | files = append(files, newFile(bazelRulesSubDir, "providers.bzl", providersBzl)) |
| 142 | |
| 143 | for bzlFileName, ruleShim := range ruleShims { |
| 144 | files = append(files, newFile(bazelRulesSubDir, bzlFileName+".bzl", ruleShim.content)) |
| 145 | } |
| 146 | files = append(files, newFile(bazelRulesSubDir, "soong_module.bzl", generateSoongModuleBzl(ruleShims))) |
Liz Kammer | 2dd9ca4 | 2020-11-25 16:06:39 -0800 | [diff] [blame] | 147 | } |
Liz Kammer | 2dd9ca4 | 2020-11-25 16:06:39 -0800 | [diff] [blame] | 148 | |
Cole Faust | 324a92e | 2022-08-23 15:29:05 -0700 | [diff] [blame] | 149 | files = append(files, createBuildFiles(buildToTargets, mode)...) |
Liz Kammer | 2dd9ca4 | 2020-11-25 16:06:39 -0800 | [diff] [blame] | 150 | |
| 151 | return files |
| 152 | } |
| 153 | |
Cole Faust | 324a92e | 2022-08-23 15:29:05 -0700 | [diff] [blame] | 154 | func createBuildFiles(buildToTargets map[string]BazelTargets, mode CodegenMode) []BazelFile { |
Liz Kammer | 2dd9ca4 | 2020-11-25 16:06:39 -0800 | [diff] [blame] | 155 | files := make([]BazelFile, 0, len(buildToTargets)) |
Cole Faust | 18994c7 | 2023-02-28 16:02:16 -0800 | [diff] [blame] | 156 | for _, dir := range android.SortedKeys(buildToTargets) { |
Liz Kammer | 2dd9ca4 | 2020-11-25 16:06:39 -0800 | [diff] [blame] | 157 | targets := buildToTargets[dir] |
Jingwen Chen | 4910976 | 2021-05-25 05:16:48 +0000 | [diff] [blame] | 158 | targets.sort() |
| 159 | |
| 160 | var content string |
Chris Parsons | 73f411b | 2023-06-20 21:46:57 +0000 | [diff] [blame] | 161 | if mode == Bp2Build { |
Jingwen Chen | 4910976 | 2021-05-25 05:16:48 +0000 | [diff] [blame] | 162 | content = `# READ THIS FIRST: |
| 163 | # This file was automatically generated by bp2build for the Bazel migration project. |
| 164 | # Feel free to edit or test it, but do *not* check it into your version control system. |
| 165 | ` |
Jingwen Chen | 1c23173 | 2021-02-05 09:38:15 -0500 | [diff] [blame] | 166 | content += targets.LoadStatements() |
Sasha Smundak | 8bea267 | 2022-08-04 13:31:14 -0700 | [diff] [blame] | 167 | content += "\n\n" |
| 168 | // Get package rule from the handcrafted BUILD file, otherwise emit the default one. |
| 169 | prText := "package(default_visibility = [\"//visibility:public\"])\n" |
| 170 | if pr := targets.packageRule(); pr != nil { |
| 171 | prText = pr.content |
| 172 | } |
| 173 | content += prText |
Jingwen Chen | 4910976 | 2021-05-25 05:16:48 +0000 | [diff] [blame] | 174 | } else if mode == QueryView { |
| 175 | content = soongModuleLoad |
Liz Kammer | 2dd9ca4 | 2020-11-25 16:06:39 -0800 | [diff] [blame] | 176 | } |
Jingwen Chen | 40067de | 2021-01-26 21:58:43 -0500 | [diff] [blame] | 177 | if content != "" { |
| 178 | // If there are load statements, add a couple of newlines. |
| 179 | content += "\n\n" |
| 180 | } |
| 181 | content += targets.String() |
Liz Kammer | ba3ea16 | 2021-02-17 13:22:03 -0500 | [diff] [blame] | 182 | files = append(files, newFile(dir, GeneratedBuildFileName, content)) |
Liz Kammer | 2dd9ca4 | 2020-11-25 16:06:39 -0800 | [diff] [blame] | 183 | } |
| 184 | return files |
| 185 | } |
| 186 | |
| 187 | func newFile(dir, basename, content string) BazelFile { |
| 188 | return BazelFile{ |
| 189 | Dir: dir, |
| 190 | Basename: basename, |
| 191 | Contents: content, |
| 192 | } |
| 193 | } |
| 194 | |
| 195 | const ( |
| 196 | bazelRulesSubDir = "build/bazel/queryview_rules" |
| 197 | |
| 198 | // additional files: |
| 199 | // * workspace file |
| 200 | // * base BUILD file |
| 201 | // * rules BUILD file |
| 202 | // * rules providers.bzl file |
| 203 | // * rules soong_module.bzl file |
| 204 | numAdditionalFiles = 5 |
| 205 | ) |
| 206 | |
| 207 | var ( |
| 208 | // Certain module property names are blocklisted/ignored here, for the reasons commented. |
| 209 | ignoredPropNames = map[string]bool{ |
Sam Delmerico | 263efde | 2022-09-08 10:43:42 -0400 | [diff] [blame] | 210 | "name": true, // redundant, since this is explicitly generated for every target |
| 211 | "from": true, // reserved keyword |
| 212 | "in": true, // reserved keyword |
| 213 | "size": true, // reserved for tests |
| 214 | "arch": true, // interface prop type is not supported yet. |
| 215 | "multilib": true, // interface prop type is not supported yet. |
| 216 | "target": true, // interface prop type is not supported yet. |
| 217 | "visibility": true, // Bazel has native visibility semantics. Handle later. |
| 218 | "features": true, // There is already a built-in attribute 'features' which cannot be overridden. |
| 219 | "for": true, // reserved keyword, b/233579439 |
| 220 | "versions_with_info": true, // TODO(b/245730552) struct properties not fully supported |
Liz Kammer | 2dd9ca4 | 2020-11-25 16:06:39 -0800 | [diff] [blame] | 221 | } |
| 222 | ) |
| 223 | |
| 224 | func shouldGenerateAttribute(prop string) bool { |
| 225 | return !ignoredPropNames[prop] |
| 226 | } |
| 227 | |
| 228 | func shouldSkipStructField(field reflect.StructField) bool { |
Liz Kammer | 7a210ac | 2021-09-22 15:52:58 -0400 | [diff] [blame] | 229 | if field.PkgPath != "" && !field.Anonymous { |
Liz Kammer | 2dd9ca4 | 2020-11-25 16:06:39 -0800 | [diff] [blame] | 230 | // Skip unexported fields. Some properties are |
| 231 | // internal to Soong only, and these fields do not have PkgPath. |
| 232 | return true |
| 233 | } |
Sasha Smundak | 8bea267 | 2022-08-04 13:31:14 -0700 | [diff] [blame] | 234 | // fields with tag `blueprint:"mutated"` are exported to enable modification in mutators, etc. |
Liz Kammer | 2dd9ca4 | 2020-11-25 16:06:39 -0800 | [diff] [blame] | 235 | // but cannot be set in a .bp file |
| 236 | if proptools.HasTag(field, "blueprint", "mutated") { |
| 237 | return true |
| 238 | } |
| 239 | return false |
| 240 | } |
| 241 | |
| 242 | // FIXME(b/168089390): In Bazel, rules ending with "_test" needs to be marked as |
| 243 | // testonly = True, forcing other rules that depend on _test rules to also be |
| 244 | // marked as testonly = True. This semantic constraint is not present in Soong. |
| 245 | // To work around, rename "*_test" rules to "*_test_". |
| 246 | func canonicalizeModuleType(moduleName string) string { |
| 247 | if strings.HasSuffix(moduleName, "_test") { |
| 248 | return moduleName + "_" |
| 249 | } |
| 250 | |
| 251 | return moduleName |
| 252 | } |