Dan Willemsen | 1e70446 | 2016-08-21 15:17:17 -0700 | [diff] [blame] | 1 | // Copyright 2017 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 | |
| 15 | package build |
| 16 | |
| 17 | import ( |
Kousik Kumar | 84bd5bf | 2022-01-26 23:32:22 -0500 | [diff] [blame] | 18 | "context" |
Kousik Kumar | 3ff037e | 2022-01-25 22:11:01 -0500 | [diff] [blame] | 19 | "encoding/json" |
Ramy Medhat | 0fc67eb | 2020-08-12 01:26:23 -0400 | [diff] [blame] | 20 | "fmt" |
Kousik Kumar | 3ff037e | 2022-01-25 22:11:01 -0500 | [diff] [blame] | 21 | "io/ioutil" |
Dan Willemsen | c2af0be | 2017-01-20 14:10:01 -0800 | [diff] [blame] | 22 | "os" |
Kousik Kumar | 84bd5bf | 2022-01-26 23:32:22 -0500 | [diff] [blame] | 23 | "os/exec" |
Dan Willemsen | 1e70446 | 2016-08-21 15:17:17 -0700 | [diff] [blame] | 24 | "path/filepath" |
| 25 | "runtime" |
| 26 | "strconv" |
| 27 | "strings" |
Nan Zhang | 2e6a4ff | 2018-02-14 13:27:26 -0800 | [diff] [blame] | 28 | "time" |
Jeff Gaston | efc1b41 | 2017-03-29 17:29:06 -0700 | [diff] [blame] | 29 | |
| 30 | "android/soong/shared" |
Kousik Kumar | ec47864 | 2020-09-21 13:39:24 -0400 | [diff] [blame] | 31 | |
Dan Willemsen | 4591b64 | 2021-05-24 14:24:12 -0700 | [diff] [blame] | 32 | "google.golang.org/protobuf/proto" |
Patrice Arruda | 9685036 | 2020-08-11 20:41:11 +0000 | [diff] [blame] | 33 | |
| 34 | smpb "android/soong/ui/metrics/metrics_proto" |
Dan Willemsen | 1e70446 | 2016-08-21 15:17:17 -0700 | [diff] [blame] | 35 | ) |
| 36 | |
Kousik Kumar | 3ff037e | 2022-01-25 22:11:01 -0500 | [diff] [blame] | 37 | const ( |
Chris Parsons | 53f68ae | 2022-03-03 12:01:40 -0500 | [diff] [blame^] | 38 | envConfigDir = "vendor/google/tools/soong_config" |
| 39 | jsonSuffix = "json" |
Kousik Kumar | 84bd5bf | 2022-01-26 23:32:22 -0500 | [diff] [blame] | 40 | |
Chris Parsons | 53f68ae | 2022-03-03 12:01:40 -0500 | [diff] [blame^] | 41 | configFetcher = "vendor/google/tools/soong/expconfigfetcher" |
Kousik Kumar | 84bd5bf | 2022-01-26 23:32:22 -0500 | [diff] [blame] | 42 | envConfigFetchTimeout = 10 * time.Second |
Kousik Kumar | 3ff037e | 2022-01-25 22:11:01 -0500 | [diff] [blame] | 43 | ) |
| 44 | |
Dan Willemsen | 1e70446 | 2016-08-21 15:17:17 -0700 | [diff] [blame] | 45 | type Config struct{ *configImpl } |
| 46 | |
| 47 | type configImpl struct { |
Lukacs T. Berki | a1b9372 | 2021-09-02 17:23:06 +0200 | [diff] [blame] | 48 | // Some targets that are implemented in soong_build |
| 49 | // (bp2build, json-module-graph) are not here and have their own bits below. |
Colin Cross | 28f527c | 2019-11-26 16:19:04 -0800 | [diff] [blame] | 50 | arguments []string |
| 51 | goma bool |
| 52 | environ *Environment |
| 53 | distDir string |
| 54 | buildDateTime string |
Dan Willemsen | 1e70446 | 2016-08-21 15:17:17 -0700 | [diff] [blame] | 55 | |
| 56 | // From the arguments |
Lukacs T. Berki | a1b9372 | 2021-09-02 17:23:06 +0200 | [diff] [blame] | 57 | parallel int |
| 58 | keepGoing int |
| 59 | verbose bool |
| 60 | checkbuild bool |
| 61 | dist bool |
| 62 | jsonModuleGraph bool |
| 63 | bp2build bool |
Lukacs T. Berki | 3a82169 | 2021-09-06 17:08:02 +0200 | [diff] [blame] | 64 | queryview bool |
Chris Parsons | 53f68ae | 2022-03-03 12:01:40 -0500 | [diff] [blame^] | 65 | reportMkMetrics bool // Collect and report mk2bp migration progress metrics. |
Lukacs T. Berki | c6012f3 | 2021-09-06 18:31:46 +0200 | [diff] [blame] | 66 | soongDocs bool |
Lukacs T. Berki | a1b9372 | 2021-09-02 17:23:06 +0200 | [diff] [blame] | 67 | skipConfig bool |
| 68 | skipKati bool |
| 69 | skipKatiNinja bool |
| 70 | skipSoong bool |
| 71 | skipNinja bool |
| 72 | skipSoongTests bool |
Dan Willemsen | 1e70446 | 2016-08-21 15:17:17 -0700 | [diff] [blame] | 73 | |
| 74 | // From the product config |
Dan Willemsen | 6ab79db | 2018-05-02 00:06:28 -0700 | [diff] [blame] | 75 | katiArgs []string |
| 76 | ninjaArgs []string |
| 77 | katiSuffix string |
| 78 | targetDevice string |
| 79 | targetDeviceDir string |
Spandan Das | a3639e6 | 2021-05-25 19:14:02 +0000 | [diff] [blame] | 80 | sandboxConfig *SandboxConfig |
Dan Willemsen | 3d60b11 | 2018-04-04 22:25:56 -0700 | [diff] [blame] | 81 | |
Dan Willemsen | 2bb82d0 | 2019-12-27 09:35:42 -0800 | [diff] [blame] | 82 | // Autodetected |
| 83 | totalRAM uint64 |
| 84 | |
Dan Willemsen | e333635 | 2020-01-02 19:10:38 -0800 | [diff] [blame] | 85 | brokenDupRules bool |
| 86 | brokenUsesNetwork bool |
| 87 | brokenNinjaEnvVars []string |
Dan Willemsen | 1849011 | 2018-05-25 16:30:04 -0700 | [diff] [blame] | 88 | |
| 89 | pathReplaced bool |
Rupert Shuttleworth | 3c9f5ac | 2020-12-10 11:32:38 +0000 | [diff] [blame] | 90 | |
| 91 | useBazel bool |
| 92 | |
| 93 | // During Bazel execution, Bazel cannot write outside OUT_DIR. |
| 94 | // So if DIST_DIR is set to an external dir (outside of OUT_DIR), we need to rig it temporarily and then migrate files at the end of the build. |
| 95 | riggedDistDirForBazel string |
Colin Cross | f3bdbcb | 2021-06-01 11:43:55 -0700 | [diff] [blame] | 96 | |
| 97 | // Set by multiproduct_kati |
| 98 | emptyNinjaFile bool |
Yu Liu | 6e13b40 | 2021-07-27 14:29:06 -0700 | [diff] [blame] | 99 | |
| 100 | metricsUploader string |
Dan Willemsen | 1e70446 | 2016-08-21 15:17:17 -0700 | [diff] [blame] | 101 | } |
| 102 | |
Dan Willemsen | c2af0be | 2017-01-20 14:10:01 -0800 | [diff] [blame] | 103 | const srcDirFileCheck = "build/soong/root.bp" |
| 104 | |
Patrice Arruda | 9450d0b | 2019-07-08 11:06:46 -0700 | [diff] [blame] | 105 | var buildFiles = []string{"Android.mk", "Android.bp"} |
| 106 | |
Patrice Arruda | 1384822 | 2019-04-22 17:12:02 -0700 | [diff] [blame] | 107 | type BuildAction uint |
| 108 | |
| 109 | const ( |
| 110 | // Builds all of the modules and their dependencies of a specified directory, relative to the root |
| 111 | // directory of the source tree. |
| 112 | BUILD_MODULES_IN_A_DIRECTORY BuildAction = iota |
| 113 | |
| 114 | // Builds all of the modules and their dependencies of a list of specified directories. All specified |
| 115 | // directories are relative to the root directory of the source tree. |
| 116 | BUILD_MODULES_IN_DIRECTORIES |
Patrice Arruda | 3928206 | 2019-06-20 16:35:12 -0700 | [diff] [blame] | 117 | |
| 118 | // Build a list of specified modules. If none was specified, simply build the whole source tree. |
| 119 | BUILD_MODULES |
Patrice Arruda | 1384822 | 2019-04-22 17:12:02 -0700 | [diff] [blame] | 120 | ) |
| 121 | |
Chris Parsons | ec1a3dc | 2021-04-20 15:32:07 -0400 | [diff] [blame] | 122 | type bazelBuildMode int |
| 123 | |
| 124 | // Bazel-related build modes. |
| 125 | const ( |
| 126 | // Don't use bazel at all. |
| 127 | noBazel bazelBuildMode = iota |
| 128 | |
Chris Parsons | ec1a3dc | 2021-04-20 15:32:07 -0400 | [diff] [blame] | 129 | // Generate synthetic build files and incorporate these files into a build which |
| 130 | // partially uses Bazel. Build metadata may come from Android.bp or BUILD files. |
| 131 | mixedBuild |
| 132 | ) |
| 133 | |
Patrice Arruda | 1384822 | 2019-04-22 17:12:02 -0700 | [diff] [blame] | 134 | // checkTopDir validates that the current directory is at the root directory of the source tree. |
| 135 | func checkTopDir(ctx Context) { |
| 136 | if _, err := os.Stat(srcDirFileCheck); err != nil { |
| 137 | if os.IsNotExist(err) { |
| 138 | ctx.Fatalf("Current working directory must be the source tree. %q not found.", srcDirFileCheck) |
| 139 | } |
| 140 | ctx.Fatalln("Error verifying tree state:", err) |
| 141 | } |
| 142 | } |
| 143 | |
Kousik Kumar | 84bd5bf | 2022-01-26 23:32:22 -0500 | [diff] [blame] | 144 | // fetchEnvConfig optionally fetches environment config from an |
| 145 | // experiments system to control Soong features dynamically. |
| 146 | func fetchEnvConfig(ctx Context, config *configImpl, envConfigName string) error { |
| 147 | s, err := os.Stat(configFetcher) |
| 148 | if err != nil { |
| 149 | if os.IsNotExist(err) { |
| 150 | return nil |
| 151 | } |
| 152 | return err |
| 153 | } |
| 154 | if s.Mode()&0111 == 0 { |
| 155 | return fmt.Errorf("configuration fetcher binary %v is not executable: %v", configFetcher, s.Mode()) |
| 156 | } |
| 157 | |
| 158 | configExists := false |
Chris Parsons | 53f68ae | 2022-03-03 12:01:40 -0500 | [diff] [blame^] | 159 | outConfigFilePath := filepath.Join(config.OutDir(), envConfigName+jsonSuffix) |
Kousik Kumar | 84bd5bf | 2022-01-26 23:32:22 -0500 | [diff] [blame] | 160 | if _, err := os.Stat(outConfigFilePath); err == nil { |
| 161 | configExists = true |
| 162 | } |
| 163 | |
| 164 | tCtx, cancel := context.WithTimeout(ctx, envConfigFetchTimeout) |
| 165 | defer cancel() |
| 166 | cmd := exec.CommandContext(tCtx, configFetcher, "-output_config_dir", config.OutDir()) |
| 167 | if err := cmd.Start(); err != nil { |
| 168 | return err |
| 169 | } |
| 170 | |
| 171 | // If a config file already exists, return immediately and run the config file |
| 172 | // fetch in the background. Otherwise, wait for the config file to be fetched. |
| 173 | if configExists { |
| 174 | go cmd.Wait() |
| 175 | return nil |
| 176 | } |
| 177 | if err := cmd.Wait(); err != nil { |
| 178 | return err |
| 179 | } |
| 180 | return nil |
| 181 | } |
| 182 | |
| 183 | func loadEnvConfig(ctx Context, config *configImpl) error { |
Kousik Kumar | 3ff037e | 2022-01-25 22:11:01 -0500 | [diff] [blame] | 184 | bc := os.Getenv("ANDROID_BUILD_ENVIRONMENT_CONFIG") |
| 185 | if bc == "" { |
| 186 | return nil |
| 187 | } |
Kousik Kumar | 84bd5bf | 2022-01-26 23:32:22 -0500 | [diff] [blame] | 188 | |
| 189 | if err := fetchEnvConfig(ctx, config, bc); err != nil { |
| 190 | fmt.Fprintf(os.Stderr, "Failed to fetch config file: %v", err) |
| 191 | } |
| 192 | |
Kousik Kumar | 3ff037e | 2022-01-25 22:11:01 -0500 | [diff] [blame] | 193 | configDirs := []string{ |
Kousik Kumar | 3ff037e | 2022-01-25 22:11:01 -0500 | [diff] [blame] | 194 | config.OutDir(), |
Kousik Kumar | 84bd5bf | 2022-01-26 23:32:22 -0500 | [diff] [blame] | 195 | os.Getenv("ANDROID_BUILD_ENVIRONMENT_CONFIG_DIR"), |
Kousik Kumar | 3ff037e | 2022-01-25 22:11:01 -0500 | [diff] [blame] | 196 | envConfigDir, |
| 197 | } |
Kousik Kumar | 3ff037e | 2022-01-25 22:11:01 -0500 | [diff] [blame] | 198 | for _, dir := range configDirs { |
Kousik Kumar | 84bd5bf | 2022-01-26 23:32:22 -0500 | [diff] [blame] | 199 | cfgFile := filepath.Join(os.Getenv("TOP"), dir, fmt.Sprintf("%s.%s", bc, jsonSuffix)) |
| 200 | envVarsJSON, err := ioutil.ReadFile(cfgFile) |
| 201 | if err != nil { |
Kousik Kumar | 3ff037e | 2022-01-25 22:11:01 -0500 | [diff] [blame] | 202 | continue |
| 203 | } |
Kousik Kumar | 84bd5bf | 2022-01-26 23:32:22 -0500 | [diff] [blame] | 204 | ctx.Verbosef("Loading config file %v\n", cfgFile) |
| 205 | var envVars map[string]map[string]string |
| 206 | if err := json.Unmarshal(envVarsJSON, &envVars); err != nil { |
| 207 | fmt.Fprintf(os.Stderr, "Env vars config file %s did not parse correctly: %s", cfgFile, err.Error()) |
| 208 | continue |
| 209 | } |
| 210 | for k, v := range envVars["env"] { |
| 211 | if os.Getenv(k) != "" { |
| 212 | continue |
| 213 | } |
| 214 | config.environ.Set(k, v) |
| 215 | } |
| 216 | ctx.Verbosef("Finished loading config file %v\n", cfgFile) |
| 217 | break |
Kousik Kumar | 3ff037e | 2022-01-25 22:11:01 -0500 | [diff] [blame] | 218 | } |
Kousik Kumar | 84bd5bf | 2022-01-26 23:32:22 -0500 | [diff] [blame] | 219 | |
Kousik Kumar | 3ff037e | 2022-01-25 22:11:01 -0500 | [diff] [blame] | 220 | return nil |
| 221 | } |
| 222 | |
Dan Willemsen | 1e70446 | 2016-08-21 15:17:17 -0700 | [diff] [blame] | 223 | func NewConfig(ctx Context, args ...string) Config { |
| 224 | ret := &configImpl{ |
Spandan Das | a3639e6 | 2021-05-25 19:14:02 +0000 | [diff] [blame] | 225 | environ: OsEnvironment(), |
| 226 | sandboxConfig: &SandboxConfig{}, |
Dan Willemsen | 1e70446 | 2016-08-21 15:17:17 -0700 | [diff] [blame] | 227 | } |
| 228 | |
Patrice Arruda | 9010917 | 2020-07-28 18:07:27 +0000 | [diff] [blame] | 229 | // Default matching ninja |
Dan Willemsen | 9b58749 | 2017-07-10 22:13:00 -0700 | [diff] [blame] | 230 | ret.parallel = runtime.NumCPU() + 2 |
| 231 | ret.keepGoing = 1 |
| 232 | |
Dan Willemsen | 2bb82d0 | 2019-12-27 09:35:42 -0800 | [diff] [blame] | 233 | ret.totalRAM = detectTotalRAM(ctx) |
| 234 | |
Dan Willemsen | 9b58749 | 2017-07-10 22:13:00 -0700 | [diff] [blame] | 235 | ret.parseArgs(ctx, args) |
| 236 | |
Dan Willemsen | 0c3919e | 2017-03-02 15:49:10 -0800 | [diff] [blame] | 237 | // Make sure OUT_DIR is set appropriately |
Dan Willemsen | 02f3add | 2017-05-12 13:50:19 -0700 | [diff] [blame] | 238 | if outDir, ok := ret.environ.Get("OUT_DIR"); ok { |
| 239 | ret.environ.Set("OUT_DIR", filepath.Clean(outDir)) |
| 240 | } else { |
Dan Willemsen | 0c3919e | 2017-03-02 15:49:10 -0800 | [diff] [blame] | 241 | outDir := "out" |
| 242 | if baseDir, ok := ret.environ.Get("OUT_DIR_COMMON_BASE"); ok { |
| 243 | if wd, err := os.Getwd(); err != nil { |
| 244 | ctx.Fatalln("Failed to get working directory:", err) |
| 245 | } else { |
| 246 | outDir = filepath.Join(baseDir, filepath.Base(wd)) |
| 247 | } |
| 248 | } |
| 249 | ret.environ.Set("OUT_DIR", outDir) |
| 250 | } |
| 251 | |
Kousik Kumar | 3ff037e | 2022-01-25 22:11:01 -0500 | [diff] [blame] | 252 | // loadEnvConfig needs to know what the OUT_DIR is, so it should |
| 253 | // be called after we determine the appropriate out directory. |
Kousik Kumar | 84bd5bf | 2022-01-26 23:32:22 -0500 | [diff] [blame] | 254 | if err := loadEnvConfig(ctx, ret); err != nil { |
Kousik Kumar | 3ff037e | 2022-01-25 22:11:01 -0500 | [diff] [blame] | 255 | ctx.Fatalln("Failed to parse env config files: %v", err) |
| 256 | } |
| 257 | |
Dan Willemsen | 2d31a44 | 2018-10-20 21:33:41 -0700 | [diff] [blame] | 258 | if distDir, ok := ret.environ.Get("DIST_DIR"); ok { |
| 259 | ret.distDir = filepath.Clean(distDir) |
| 260 | } else { |
| 261 | ret.distDir = filepath.Join(ret.OutDir(), "dist") |
| 262 | } |
Dan Willemsen | d50e89f | 2018-10-16 17:49:25 -0700 | [diff] [blame] | 263 | |
Spandan Das | 0506361 | 2021-06-25 01:39:04 +0000 | [diff] [blame] | 264 | if srcDirIsWritable, ok := ret.environ.Get("BUILD_BROKEN_SRC_DIR_IS_WRITABLE"); ok { |
| 265 | ret.sandboxConfig.SetSrcDirIsRO(srcDirIsWritable == "false") |
| 266 | } |
| 267 | |
Dan Willemsen | 1e70446 | 2016-08-21 15:17:17 -0700 | [diff] [blame] | 268 | ret.environ.Unset( |
| 269 | // We're already using it |
| 270 | "USE_SOONG_UI", |
| 271 | |
| 272 | // We should never use GOROOT/GOPATH from the shell environment |
| 273 | "GOROOT", |
| 274 | "GOPATH", |
| 275 | |
| 276 | // These should only come from Soong, not the environment. |
| 277 | "CLANG", |
| 278 | "CLANG_CXX", |
| 279 | "CCC_CC", |
| 280 | "CCC_CXX", |
| 281 | |
| 282 | // Used by the goma compiler wrapper, but should only be set by |
| 283 | // gomacc |
| 284 | "GOMACC_PATH", |
Dan Willemsen | 0c3919e | 2017-03-02 15:49:10 -0800 | [diff] [blame] | 285 | |
| 286 | // We handle this above |
| 287 | "OUT_DIR_COMMON_BASE", |
Dan Willemsen | 68a0985 | 2017-04-18 13:56:57 -0700 | [diff] [blame] | 288 | |
Dan Willemsen | 2d31a44 | 2018-10-20 21:33:41 -0700 | [diff] [blame] | 289 | // This is handled above too, and set for individual commands later |
| 290 | "DIST_DIR", |
| 291 | |
Dan Willemsen | 68a0985 | 2017-04-18 13:56:57 -0700 | [diff] [blame] | 292 | // Variables that have caused problems in the past |
Dan Willemsen | 1c504d9 | 2019-11-18 19:13:53 +0000 | [diff] [blame] | 293 | "BASH_ENV", |
Dan Willemsen | ebfe33a | 2018-05-01 10:07:50 -0700 | [diff] [blame] | 294 | "CDPATH", |
Dan Willemsen | 68a0985 | 2017-04-18 13:56:57 -0700 | [diff] [blame] | 295 | "DISPLAY", |
| 296 | "GREP_OPTIONS", |
Dan Willemsen | ebfe33a | 2018-05-01 10:07:50 -0700 | [diff] [blame] | 297 | "NDK_ROOT", |
Dan Willemsen | 00fcb26 | 2018-08-15 15:35:38 -0700 | [diff] [blame] | 298 | "POSIXLY_CORRECT", |
Dan Willemsen | c40e10b | 2017-07-11 14:30:00 -0700 | [diff] [blame] | 299 | |
| 300 | // Drop make flags |
| 301 | "MAKEFLAGS", |
| 302 | "MAKELEVEL", |
| 303 | "MFLAGS", |
Dan Willemsen | d9e8f0a | 2017-10-30 13:42:06 -0700 | [diff] [blame] | 304 | |
| 305 | // Set in envsetup.sh, reset in makefiles |
| 306 | "ANDROID_JAVA_TOOLCHAIN", |
Colin Cross | 7f09c40 | 2018-07-11 14:49:31 -0700 | [diff] [blame] | 307 | |
| 308 | // Set by envsetup.sh, but shouldn't be used inside the build because envsetup.sh is optional |
| 309 | "ANDROID_BUILD_TOP", |
| 310 | "ANDROID_HOST_OUT", |
| 311 | "ANDROID_PRODUCT_OUT", |
| 312 | "ANDROID_HOST_OUT_TESTCASES", |
| 313 | "ANDROID_TARGET_OUT_TESTCASES", |
| 314 | "ANDROID_TOOLCHAIN", |
| 315 | "ANDROID_TOOLCHAIN_2ND_ARCH", |
| 316 | "ANDROID_DEV_SCRIPTS", |
| 317 | "ANDROID_EMULATOR_PREBUILTS", |
| 318 | "ANDROID_PRE_BUILD_PATHS", |
Dan Willemsen | 1e70446 | 2016-08-21 15:17:17 -0700 | [diff] [blame] | 319 | ) |
| 320 | |
Kousik Kumar | b328f6d | 2020-10-19 01:45:46 -0400 | [diff] [blame] | 321 | if ret.UseGoma() || ret.ForceUseGoma() { |
| 322 | ctx.Println("Goma for Android has been deprecated and replaced with RBE. See go/rbe_for_android for instructions on how to use RBE.") |
| 323 | ctx.Fatalln("USE_GOMA / FORCE_USE_GOMA flag is no longer supported.") |
Kousik Kumar | ec47864 | 2020-09-21 13:39:24 -0400 | [diff] [blame] | 324 | } |
| 325 | |
Dan Willemsen | 1e70446 | 2016-08-21 15:17:17 -0700 | [diff] [blame] | 326 | // Tell python not to spam the source tree with .pyc files. |
| 327 | ret.environ.Set("PYTHONDONTWRITEBYTECODE", "1") |
| 328 | |
Ramy Medhat | ca1e44c | 2020-07-16 12:18:37 -0400 | [diff] [blame] | 329 | tmpDir := absPath(ctx, ret.TempDir()) |
| 330 | ret.environ.Set("TMPDIR", tmpDir) |
Dan Willemsen | 32a669b | 2018-03-08 19:42:00 -0800 | [diff] [blame] | 331 | |
Dan Willemsen | 70c1ff8 | 2019-08-21 14:56:13 -0700 | [diff] [blame] | 332 | // Always set ASAN_SYMBOLIZER_PATH so that ASAN-based tools can symbolize any crashes |
| 333 | symbolizerPath := filepath.Join("prebuilts/clang/host", ret.HostPrebuiltTag(), |
| 334 | "llvm-binutils-stable/llvm-symbolizer") |
| 335 | ret.environ.Set("ASAN_SYMBOLIZER_PATH", absPath(ctx, symbolizerPath)) |
| 336 | |
Dan Willemsen | c2af0be | 2017-01-20 14:10:01 -0800 | [diff] [blame] | 337 | // Precondition: the current directory is the top of the source tree |
Patrice Arruda | 1384822 | 2019-04-22 17:12:02 -0700 | [diff] [blame] | 338 | checkTopDir(ctx) |
Dan Willemsen | c2af0be | 2017-01-20 14:10:01 -0800 | [diff] [blame] | 339 | |
Yu Liu | 6e13b40 | 2021-07-27 14:29:06 -0700 | [diff] [blame] | 340 | srcDir := absPath(ctx, ".") |
| 341 | if strings.ContainsRune(srcDir, ' ') { |
Colin Cross | 1f6faeb | 2019-09-23 15:52:40 -0700 | [diff] [blame] | 342 | ctx.Println("You are building in a directory whose absolute path contains a space character:") |
| 343 | ctx.Println() |
| 344 | ctx.Printf("%q\n", srcDir) |
| 345 | ctx.Println() |
| 346 | ctx.Fatalln("Directory names containing spaces are not supported") |
Dan Willemsen | db8457c | 2017-05-12 16:38:17 -0700 | [diff] [blame] | 347 | } |
| 348 | |
Yu Liu | 6e13b40 | 2021-07-27 14:29:06 -0700 | [diff] [blame] | 349 | ret.metricsUploader = GetMetricsUploader(srcDir, ret.environ) |
| 350 | |
Dan Willemsen | db8457c | 2017-05-12 16:38:17 -0700 | [diff] [blame] | 351 | if outDir := ret.OutDir(); strings.ContainsRune(outDir, ' ') { |
Colin Cross | 1f6faeb | 2019-09-23 15:52:40 -0700 | [diff] [blame] | 352 | ctx.Println("The absolute path of your output directory ($OUT_DIR) contains a space character:") |
| 353 | ctx.Println() |
| 354 | ctx.Printf("%q\n", outDir) |
| 355 | ctx.Println() |
| 356 | ctx.Fatalln("Directory names containing spaces are not supported") |
Dan Willemsen | db8457c | 2017-05-12 16:38:17 -0700 | [diff] [blame] | 357 | } |
| 358 | |
Rupert Shuttleworth | 3c9f5ac | 2020-12-10 11:32:38 +0000 | [diff] [blame] | 359 | if distDir := ret.RealDistDir(); strings.ContainsRune(distDir, ' ') { |
Colin Cross | 1f6faeb | 2019-09-23 15:52:40 -0700 | [diff] [blame] | 360 | ctx.Println("The absolute path of your dist directory ($DIST_DIR) contains a space character:") |
| 361 | ctx.Println() |
| 362 | ctx.Printf("%q\n", distDir) |
| 363 | ctx.Println() |
| 364 | ctx.Fatalln("Directory names containing spaces are not supported") |
Dan Willemsen | db8457c | 2017-05-12 16:38:17 -0700 | [diff] [blame] | 365 | } |
| 366 | |
Dan Willemsen | d9e8f0a | 2017-10-30 13:42:06 -0700 | [diff] [blame] | 367 | // Configure Java-related variables, including adding it to $PATH |
Tobias Thierer | e59aeff | 2017-12-20 22:40:39 +0000 | [diff] [blame] | 368 | java8Home := filepath.Join("prebuilts/jdk/jdk8", ret.HostPrebuiltTag()) |
| 369 | java9Home := filepath.Join("prebuilts/jdk/jdk9", ret.HostPrebuiltTag()) |
Pete Gillin | 1f52e93 | 2019-10-09 17:10:08 +0100 | [diff] [blame] | 370 | java11Home := filepath.Join("prebuilts/jdk/jdk11", ret.HostPrebuiltTag()) |
Dan Willemsen | d9e8f0a | 2017-10-30 13:42:06 -0700 | [diff] [blame] | 371 | javaHome := func() string { |
| 372 | if override, ok := ret.environ.Get("OVERRIDE_ANDROID_JAVA_HOME"); ok { |
| 373 | return override |
| 374 | } |
Pete Gillin | a7a3d64 | 2019-11-07 18:58:42 +0000 | [diff] [blame] | 375 | if toolchain11, ok := ret.environ.Get("EXPERIMENTAL_USE_OPENJDK11_TOOLCHAIN"); ok && toolchain11 != "true" { |
| 376 | ctx.Fatalln("The environment variable EXPERIMENTAL_USE_OPENJDK11_TOOLCHAIN is no longer supported. An OpenJDK 11 toolchain is now the global default.") |
Pete Gillin | 1f52e93 | 2019-10-09 17:10:08 +0100 | [diff] [blame] | 377 | } |
Pete Gillin | abbcdda | 2019-10-28 16:15:33 +0000 | [diff] [blame] | 378 | return java11Home |
Dan Willemsen | d9e8f0a | 2017-10-30 13:42:06 -0700 | [diff] [blame] | 379 | }() |
| 380 | absJavaHome := absPath(ctx, javaHome) |
| 381 | |
Dan Willemsen | ed86952 | 2018-01-08 14:58:46 -0800 | [diff] [blame] | 382 | ret.configureLocale(ctx) |
| 383 | |
Dan Willemsen | d9e8f0a | 2017-10-30 13:42:06 -0700 | [diff] [blame] | 384 | newPath := []string{filepath.Join(absJavaHome, "bin")} |
| 385 | if path, ok := ret.environ.Get("PATH"); ok && path != "" { |
| 386 | newPath = append(newPath, path) |
| 387 | } |
Pete Gillin | 1f52e93 | 2019-10-09 17:10:08 +0100 | [diff] [blame] | 388 | |
Dan Willemsen | d9e8f0a | 2017-10-30 13:42:06 -0700 | [diff] [blame] | 389 | ret.environ.Unset("OVERRIDE_ANDROID_JAVA_HOME") |
| 390 | ret.environ.Set("JAVA_HOME", absJavaHome) |
| 391 | ret.environ.Set("ANDROID_JAVA_HOME", javaHome) |
Tobias Thierer | e59aeff | 2017-12-20 22:40:39 +0000 | [diff] [blame] | 392 | ret.environ.Set("ANDROID_JAVA8_HOME", java8Home) |
| 393 | ret.environ.Set("ANDROID_JAVA9_HOME", java9Home) |
Pete Gillin | 1f52e93 | 2019-10-09 17:10:08 +0100 | [diff] [blame] | 394 | ret.environ.Set("ANDROID_JAVA11_HOME", java11Home) |
Dan Willemsen | d9e8f0a | 2017-10-30 13:42:06 -0700 | [diff] [blame] | 395 | ret.environ.Set("PATH", strings.Join(newPath, string(filepath.ListSeparator))) |
| 396 | |
Nan Zhang | 2e6a4ff | 2018-02-14 13:27:26 -0800 | [diff] [blame] | 397 | outDir := ret.OutDir() |
| 398 | buildDateTimeFile := filepath.Join(outDir, "build_date.txt") |
Nan Zhang | 2e6a4ff | 2018-02-14 13:27:26 -0800 | [diff] [blame] | 399 | if buildDateTime, ok := ret.environ.Get("BUILD_DATETIME"); ok && buildDateTime != "" { |
Colin Cross | 28f527c | 2019-11-26 16:19:04 -0800 | [diff] [blame] | 400 | ret.buildDateTime = buildDateTime |
Nan Zhang | 2e6a4ff | 2018-02-14 13:27:26 -0800 | [diff] [blame] | 401 | } else { |
Colin Cross | 28f527c | 2019-11-26 16:19:04 -0800 | [diff] [blame] | 402 | ret.buildDateTime = strconv.FormatInt(time.Now().Unix(), 10) |
Nan Zhang | 2e6a4ff | 2018-02-14 13:27:26 -0800 | [diff] [blame] | 403 | } |
Colin Cross | 28f527c | 2019-11-26 16:19:04 -0800 | [diff] [blame] | 404 | |
Nan Zhang | 2e6a4ff | 2018-02-14 13:27:26 -0800 | [diff] [blame] | 405 | ret.environ.Set("BUILD_DATETIME_FILE", buildDateTimeFile) |
| 406 | |
Ramy Medhat | ca1e44c | 2020-07-16 12:18:37 -0400 | [diff] [blame] | 407 | if ret.UseRBE() { |
Ramy Medhat | 0fc67eb | 2020-08-12 01:26:23 -0400 | [diff] [blame] | 408 | for k, v := range getRBEVars(ctx, Config{ret}) { |
Ramy Medhat | ca1e44c | 2020-07-16 12:18:37 -0400 | [diff] [blame] | 409 | ret.environ.Set(k, v) |
| 410 | } |
| 411 | } |
| 412 | |
Patrice Arruda | 83842d7 | 2020-12-08 19:42:08 +0000 | [diff] [blame] | 413 | bpd := ret.BazelMetricsDir() |
Patrice Arruda | af880da | 2020-11-13 08:41:26 -0800 | [diff] [blame] | 414 | if err := os.RemoveAll(bpd); err != nil { |
| 415 | ctx.Fatalf("Unable to remove bazel profile directory %q: %v", bpd, err) |
| 416 | } |
Rupert Shuttleworth | 3c9f5ac | 2020-12-10 11:32:38 +0000 | [diff] [blame] | 417 | |
| 418 | ret.useBazel = ret.environ.IsEnvTrue("USE_BAZEL") |
| 419 | |
Patrice Arruda | af880da | 2020-11-13 08:41:26 -0800 | [diff] [blame] | 420 | if ret.UseBazel() { |
| 421 | if err := os.MkdirAll(bpd, 0777); err != nil { |
| 422 | ctx.Fatalf("Failed to create bazel profile directory %q: %v", bpd, err) |
| 423 | } |
| 424 | } |
| 425 | |
Rupert Shuttleworth | 3c9f5ac | 2020-12-10 11:32:38 +0000 | [diff] [blame] | 426 | if ret.UseBazel() { |
| 427 | ret.riggedDistDirForBazel = filepath.Join(ret.OutDir(), "dist") |
| 428 | } else { |
| 429 | // Not rigged |
| 430 | ret.riggedDistDirForBazel = ret.distDir |
| 431 | } |
| 432 | |
Patrice Arruda | 9685036 | 2020-08-11 20:41:11 +0000 | [diff] [blame] | 433 | c := Config{ret} |
| 434 | storeConfigMetrics(ctx, c) |
| 435 | return c |
Dan Willemsen | 9b58749 | 2017-07-10 22:13:00 -0700 | [diff] [blame] | 436 | } |
| 437 | |
Patrice Arruda | 1384822 | 2019-04-22 17:12:02 -0700 | [diff] [blame] | 438 | // NewBuildActionConfig returns a build configuration based on the build action. The arguments are |
| 439 | // processed based on the build action and extracts any arguments that belongs to the build action. |
Dan Willemsen | ce41e94 | 2019-07-29 23:39:30 -0700 | [diff] [blame] | 440 | func NewBuildActionConfig(action BuildAction, dir string, ctx Context, args ...string) Config { |
| 441 | return NewConfig(ctx, getConfigArgs(action, dir, ctx, args)...) |
Patrice Arruda | 1384822 | 2019-04-22 17:12:02 -0700 | [diff] [blame] | 442 | } |
| 443 | |
Patrice Arruda | 9685036 | 2020-08-11 20:41:11 +0000 | [diff] [blame] | 444 | // storeConfigMetrics selects a set of configuration information and store in |
| 445 | // the metrics system for further analysis. |
| 446 | func storeConfigMetrics(ctx Context, config Config) { |
| 447 | if ctx.Metrics == nil { |
| 448 | return |
| 449 | } |
| 450 | |
Liz Kammer | ca9cb2e | 2021-07-14 15:29:57 -0400 | [diff] [blame] | 451 | ctx.Metrics.BuildConfig(buildConfig(config)) |
Patrice Arruda | 3edfd48 | 2020-10-13 23:58:41 +0000 | [diff] [blame] | 452 | |
| 453 | s := &smpb.SystemResourceInfo{ |
| 454 | TotalPhysicalMemory: proto.Uint64(config.TotalRAM()), |
| 455 | AvailableCpus: proto.Int32(int32(runtime.NumCPU())), |
| 456 | } |
| 457 | ctx.Metrics.SystemResourceInfo(s) |
Patrice Arruda | 9685036 | 2020-08-11 20:41:11 +0000 | [diff] [blame] | 458 | } |
| 459 | |
Liz Kammer | ca9cb2e | 2021-07-14 15:29:57 -0400 | [diff] [blame] | 460 | func buildConfig(config Config) *smpb.BuildConfig { |
Yu Liu | e737a99 | 2021-10-04 13:21:41 -0700 | [diff] [blame] | 461 | c := &smpb.BuildConfig{ |
Liz Kammer | ca9cb2e | 2021-07-14 15:29:57 -0400 | [diff] [blame] | 462 | ForceUseGoma: proto.Bool(config.ForceUseGoma()), |
| 463 | UseGoma: proto.Bool(config.UseGoma()), |
| 464 | UseRbe: proto.Bool(config.UseRBE()), |
| 465 | BazelAsNinja: proto.Bool(config.UseBazel()), |
| 466 | BazelMixedBuild: proto.Bool(config.bazelBuildMode() == mixedBuild), |
| 467 | } |
Yu Liu | e737a99 | 2021-10-04 13:21:41 -0700 | [diff] [blame] | 468 | c.Targets = append(c.Targets, config.arguments...) |
| 469 | |
| 470 | return c |
Liz Kammer | ca9cb2e | 2021-07-14 15:29:57 -0400 | [diff] [blame] | 471 | } |
| 472 | |
Patrice Arruda | 1384822 | 2019-04-22 17:12:02 -0700 | [diff] [blame] | 473 | // getConfigArgs processes the command arguments based on the build action and creates a set of new |
| 474 | // arguments to be accepted by Config. |
Dan Willemsen | ce41e94 | 2019-07-29 23:39:30 -0700 | [diff] [blame] | 475 | func getConfigArgs(action BuildAction, dir string, ctx Context, args []string) []string { |
Patrice Arruda | 1384822 | 2019-04-22 17:12:02 -0700 | [diff] [blame] | 476 | // The next block of code verifies that the current directory is the root directory of the source |
| 477 | // tree. It then finds the relative path of dir based on the root directory of the source tree |
| 478 | // and verify that dir is inside of the source tree. |
| 479 | checkTopDir(ctx) |
| 480 | topDir, err := os.Getwd() |
| 481 | if err != nil { |
| 482 | ctx.Fatalf("Error retrieving top directory: %v", err) |
| 483 | } |
Patrice Arruda | baba9a9 | 2019-07-03 10:47:34 -0700 | [diff] [blame] | 484 | dir, err = filepath.EvalSymlinks(dir) |
| 485 | if err != nil { |
| 486 | ctx.Fatalf("Unable to evaluate symlink of %s: %v", dir, err) |
| 487 | } |
Patrice Arruda | 1384822 | 2019-04-22 17:12:02 -0700 | [diff] [blame] | 488 | dir, err = filepath.Abs(dir) |
| 489 | if err != nil { |
| 490 | ctx.Fatalf("Unable to find absolute path %s: %v", dir, err) |
| 491 | } |
| 492 | relDir, err := filepath.Rel(topDir, dir) |
| 493 | if err != nil { |
| 494 | ctx.Fatalf("Unable to find relative path %s of %s: %v", relDir, topDir, err) |
| 495 | } |
| 496 | // If there are ".." in the path, it's not in the source tree. |
| 497 | if strings.Contains(relDir, "..") { |
| 498 | ctx.Fatalf("Directory %s is not under the source tree %s", dir, topDir) |
| 499 | } |
| 500 | |
| 501 | configArgs := args[:] |
| 502 | |
| 503 | // If the arguments contains GET-INSTALL-PATH, change the target name prefix from MODULES-IN- to |
| 504 | // GET-INSTALL-PATH-IN- to extract the installation path instead of building the modules. |
| 505 | targetNamePrefix := "MODULES-IN-" |
| 506 | if inList("GET-INSTALL-PATH", configArgs) { |
| 507 | targetNamePrefix = "GET-INSTALL-PATH-IN-" |
| 508 | configArgs = removeFromList("GET-INSTALL-PATH", configArgs) |
| 509 | } |
| 510 | |
Patrice Arruda | 1384822 | 2019-04-22 17:12:02 -0700 | [diff] [blame] | 511 | var targets []string |
| 512 | |
| 513 | switch action { |
Patrice Arruda | 3928206 | 2019-06-20 16:35:12 -0700 | [diff] [blame] | 514 | case BUILD_MODULES: |
| 515 | // No additional processing is required when building a list of specific modules or all modules. |
Patrice Arruda | 1384822 | 2019-04-22 17:12:02 -0700 | [diff] [blame] | 516 | case BUILD_MODULES_IN_A_DIRECTORY: |
| 517 | // If dir is the root source tree, all the modules are built of the source tree are built so |
| 518 | // no need to find the build file. |
| 519 | if topDir == dir { |
| 520 | break |
| 521 | } |
Patrice Arruda | 0dcf27f | 2019-07-08 17:03:33 -0700 | [diff] [blame] | 522 | |
Patrice Arruda | 1384822 | 2019-04-22 17:12:02 -0700 | [diff] [blame] | 523 | buildFile := findBuildFile(ctx, relDir) |
| 524 | if buildFile == "" { |
Patrice Arruda | 0dcf27f | 2019-07-08 17:03:33 -0700 | [diff] [blame] | 525 | ctx.Fatalf("Build file not found for %s directory", relDir) |
Patrice Arruda | 1384822 | 2019-04-22 17:12:02 -0700 | [diff] [blame] | 526 | } |
Patrice Arruda | 1384822 | 2019-04-22 17:12:02 -0700 | [diff] [blame] | 527 | targets = []string{convertToTarget(filepath.Dir(buildFile), targetNamePrefix)} |
| 528 | case BUILD_MODULES_IN_DIRECTORIES: |
| 529 | newConfigArgs, dirs := splitArgs(configArgs) |
| 530 | configArgs = newConfigArgs |
Dan Willemsen | ce41e94 | 2019-07-29 23:39:30 -0700 | [diff] [blame] | 531 | targets = getTargetsFromDirs(ctx, relDir, dirs, targetNamePrefix) |
Patrice Arruda | 1384822 | 2019-04-22 17:12:02 -0700 | [diff] [blame] | 532 | } |
| 533 | |
| 534 | // Tidy only override all other specified targets. |
| 535 | tidyOnly := os.Getenv("WITH_TIDY_ONLY") |
| 536 | if tidyOnly == "true" || tidyOnly == "1" { |
| 537 | configArgs = append(configArgs, "tidy_only") |
| 538 | } else { |
| 539 | configArgs = append(configArgs, targets...) |
| 540 | } |
| 541 | |
| 542 | return configArgs |
| 543 | } |
| 544 | |
| 545 | // convertToTarget replaces "/" to "-" in dir and pre-append the targetNamePrefix to the target name. |
| 546 | func convertToTarget(dir string, targetNamePrefix string) string { |
| 547 | return targetNamePrefix + strings.ReplaceAll(dir, "/", "-") |
| 548 | } |
| 549 | |
Patrice Arruda | 9450d0b | 2019-07-08 11:06:46 -0700 | [diff] [blame] | 550 | // hasBuildFile returns true if dir contains an Android build file. |
| 551 | func hasBuildFile(ctx Context, dir string) bool { |
| 552 | for _, buildFile := range buildFiles { |
| 553 | _, err := os.Stat(filepath.Join(dir, buildFile)) |
| 554 | if err == nil { |
| 555 | return true |
| 556 | } |
| 557 | if !os.IsNotExist(err) { |
| 558 | ctx.Fatalf("Error retrieving the build file stats: %v", err) |
| 559 | } |
| 560 | } |
| 561 | return false |
| 562 | } |
| 563 | |
Patrice Arruda | 0dcf27f | 2019-07-08 17:03:33 -0700 | [diff] [blame] | 564 | // findBuildFile finds a build file (makefile or blueprint file) by looking if there is a build file |
| 565 | // in the current and any sub directory of dir. If a build file is not found, traverse the path |
| 566 | // up by one directory and repeat again until either a build file is found or reached to the root |
| 567 | // source tree. The returned filename of build file is "Android.mk". If one was not found, a blank |
| 568 | // string is returned. |
Patrice Arruda | 1384822 | 2019-04-22 17:12:02 -0700 | [diff] [blame] | 569 | func findBuildFile(ctx Context, dir string) string { |
Patrice Arruda | 0dcf27f | 2019-07-08 17:03:33 -0700 | [diff] [blame] | 570 | // If the string is empty or ".", assume it is top directory of the source tree. |
| 571 | if dir == "" || dir == "." { |
Patrice Arruda | 1384822 | 2019-04-22 17:12:02 -0700 | [diff] [blame] | 572 | return "" |
| 573 | } |
| 574 | |
Patrice Arruda | 0dcf27f | 2019-07-08 17:03:33 -0700 | [diff] [blame] | 575 | found := false |
| 576 | for buildDir := dir; buildDir != "."; buildDir = filepath.Dir(buildDir) { |
| 577 | err := filepath.Walk(buildDir, func(path string, info os.FileInfo, err error) error { |
| 578 | if err != nil { |
| 579 | return err |
| 580 | } |
| 581 | if found { |
| 582 | return filepath.SkipDir |
| 583 | } |
| 584 | if info.IsDir() { |
| 585 | return nil |
| 586 | } |
| 587 | for _, buildFile := range buildFiles { |
| 588 | if info.Name() == buildFile { |
| 589 | found = true |
| 590 | return filepath.SkipDir |
| 591 | } |
| 592 | } |
| 593 | return nil |
| 594 | }) |
| 595 | if err != nil { |
| 596 | ctx.Fatalf("Error finding Android build file: %v", err) |
| 597 | } |
| 598 | |
| 599 | if found { |
| 600 | return filepath.Join(buildDir, "Android.mk") |
Patrice Arruda | 1384822 | 2019-04-22 17:12:02 -0700 | [diff] [blame] | 601 | } |
| 602 | } |
| 603 | |
| 604 | return "" |
| 605 | } |
| 606 | |
| 607 | // splitArgs iterates over the arguments list and splits into two lists: arguments and directories. |
| 608 | func splitArgs(args []string) (newArgs []string, dirs []string) { |
| 609 | specialArgs := map[string]bool{ |
| 610 | "showcommands": true, |
| 611 | "snod": true, |
| 612 | "dist": true, |
| 613 | "checkbuild": true, |
| 614 | } |
| 615 | |
| 616 | newArgs = []string{} |
| 617 | dirs = []string{} |
| 618 | |
| 619 | for _, arg := range args { |
| 620 | // It's a dash argument if it starts with "-" or it's a key=value pair, it's not a directory. |
| 621 | if strings.IndexRune(arg, '-') == 0 || strings.IndexRune(arg, '=') != -1 { |
| 622 | newArgs = append(newArgs, arg) |
| 623 | continue |
| 624 | } |
| 625 | |
| 626 | if _, ok := specialArgs[arg]; ok { |
| 627 | newArgs = append(newArgs, arg) |
| 628 | continue |
| 629 | } |
| 630 | |
| 631 | dirs = append(dirs, arg) |
| 632 | } |
| 633 | |
| 634 | return newArgs, dirs |
| 635 | } |
| 636 | |
| 637 | // getTargetsFromDirs iterates over the dirs list and creates a list of targets to build. If a |
| 638 | // directory from the dirs list does not exist, a fatal error is raised. relDir is related to the |
| 639 | // source root tree where the build action command was invoked. Each directory is validated if the |
| 640 | // build file can be found and follows the format "dir1:target1,target2,...". Target is optional. |
Dan Willemsen | ce41e94 | 2019-07-29 23:39:30 -0700 | [diff] [blame] | 641 | func getTargetsFromDirs(ctx Context, relDir string, dirs []string, targetNamePrefix string) (targets []string) { |
Patrice Arruda | 1384822 | 2019-04-22 17:12:02 -0700 | [diff] [blame] | 642 | for _, dir := range dirs { |
| 643 | // The directory may have specified specific modules to build. ":" is the separator to separate |
| 644 | // the directory and the list of modules. |
| 645 | s := strings.Split(dir, ":") |
| 646 | l := len(s) |
| 647 | if l > 2 { // more than one ":" was specified. |
| 648 | ctx.Fatalf("%s not in proper directory:target1,target2,... format (\":\" was specified more than once)", dir) |
| 649 | } |
| 650 | |
| 651 | dir = filepath.Join(relDir, s[0]) |
| 652 | if _, err := os.Stat(dir); err != nil { |
| 653 | ctx.Fatalf("couldn't find directory %s", dir) |
| 654 | } |
| 655 | |
| 656 | // Verify that if there are any targets specified after ":". Each target is separated by ",". |
| 657 | var newTargets []string |
| 658 | if l == 2 && s[1] != "" { |
| 659 | newTargets = strings.Split(s[1], ",") |
| 660 | if inList("", newTargets) { |
| 661 | ctx.Fatalf("%s not in proper directory:target1,target2,... format", dir) |
| 662 | } |
| 663 | } |
| 664 | |
Patrice Arruda | 9450d0b | 2019-07-08 11:06:46 -0700 | [diff] [blame] | 665 | // If there are specified targets to build in dir, an android build file must exist for the one |
| 666 | // shot build. For the non-targets case, find the appropriate build file and build all the |
| 667 | // modules in dir (or the closest one in the dir path). |
Patrice Arruda | 1384822 | 2019-04-22 17:12:02 -0700 | [diff] [blame] | 668 | if len(newTargets) > 0 { |
Patrice Arruda | 9450d0b | 2019-07-08 11:06:46 -0700 | [diff] [blame] | 669 | if !hasBuildFile(ctx, dir) { |
Patrice Arruda | 1384822 | 2019-04-22 17:12:02 -0700 | [diff] [blame] | 670 | ctx.Fatalf("Couldn't locate a build file from %s directory", dir) |
| 671 | } |
| 672 | } else { |
Patrice Arruda | 9450d0b | 2019-07-08 11:06:46 -0700 | [diff] [blame] | 673 | buildFile := findBuildFile(ctx, dir) |
| 674 | if buildFile == "" { |
| 675 | ctx.Fatalf("Build file not found for %s directory", dir) |
| 676 | } |
| 677 | newTargets = []string{convertToTarget(filepath.Dir(buildFile), targetNamePrefix)} |
Patrice Arruda | 1384822 | 2019-04-22 17:12:02 -0700 | [diff] [blame] | 678 | } |
| 679 | |
Patrice Arruda | 1384822 | 2019-04-22 17:12:02 -0700 | [diff] [blame] | 680 | targets = append(targets, newTargets...) |
| 681 | } |
| 682 | |
Dan Willemsen | ce41e94 | 2019-07-29 23:39:30 -0700 | [diff] [blame] | 683 | return targets |
Patrice Arruda | 1384822 | 2019-04-22 17:12:02 -0700 | [diff] [blame] | 684 | } |
| 685 | |
Dan Willemsen | 9b58749 | 2017-07-10 22:13:00 -0700 | [diff] [blame] | 686 | func (c *configImpl) parseArgs(ctx Context, args []string) { |
| 687 | for i := 0; i < len(args); i++ { |
| 688 | arg := strings.TrimSpace(args[i]) |
Anton Hansson | 5a7861a | 2021-06-04 10:09:01 +0100 | [diff] [blame] | 689 | if arg == "showcommands" { |
Dan Willemsen | 9b58749 | 2017-07-10 22:13:00 -0700 | [diff] [blame] | 690 | c.verbose = true |
Lukacs T. Berki | cef87b6 | 2021-08-10 15:01:13 +0200 | [diff] [blame] | 691 | } else if arg == "--empty-ninja-file" { |
| 692 | c.emptyNinjaFile = true |
Lukacs T. Berki | d1e3f1f | 2021-03-16 08:55:23 +0100 | [diff] [blame] | 693 | } else if arg == "--skip-ninja" { |
| 694 | c.skipNinja = true |
Dan Willemsen | e0879fc | 2017-08-04 15:06:27 -0700 | [diff] [blame] | 695 | } else if arg == "--skip-make" { |
Colin Cross | 30e444b | 2021-06-18 11:26:19 -0700 | [diff] [blame] | 696 | // TODO(ccross): deprecate this, it has confusing behaviors. It doesn't run kati, |
| 697 | // but it does run a Kati ninja file if the .kati_enabled marker file was created |
| 698 | // by a previous build. |
Anton Hansson | 5e5c48b | 2020-11-27 12:35:20 +0000 | [diff] [blame] | 699 | c.skipConfig = true |
| 700 | c.skipKati = true |
| 701 | } else if arg == "--skip-kati" { |
Anton Hansson | 0b55bdb | 2021-06-04 10:08:08 +0100 | [diff] [blame] | 702 | // TODO: remove --skip-kati once module builds have been migrated to --song-only |
Anton Hansson | 5e5c48b | 2020-11-27 12:35:20 +0000 | [diff] [blame] | 703 | c.skipKati = true |
Anton Hansson | 0b55bdb | 2021-06-04 10:08:08 +0100 | [diff] [blame] | 704 | } else if arg == "--soong-only" { |
| 705 | c.skipKati = true |
| 706 | c.skipKatiNinja = true |
Lukacs T. Berki | cef87b6 | 2021-08-10 15:01:13 +0200 | [diff] [blame] | 707 | } else if arg == "--config-only" { |
| 708 | c.skipKati = true |
| 709 | c.skipKatiNinja = true |
| 710 | c.skipSoong = true |
Colin Cross | 30e444b | 2021-06-18 11:26:19 -0700 | [diff] [blame] | 711 | } else if arg == "--skip-config" { |
| 712 | c.skipConfig = true |
Colin Cross | 00a8a3f | 2020-10-29 14:08:31 -0700 | [diff] [blame] | 713 | } else if arg == "--skip-soong-tests" { |
| 714 | c.skipSoongTests = true |
Chris Parsons | 53f68ae | 2022-03-03 12:01:40 -0500 | [diff] [blame^] | 715 | } else if arg == "--mk-metrics" { |
| 716 | c.reportMkMetrics = true |
Dan Willemsen | 6ac63ef | 2017-10-17 20:35:34 -0700 | [diff] [blame] | 717 | } else if len(arg) > 0 && arg[0] == '-' { |
Dan Willemsen | 9b58749 | 2017-07-10 22:13:00 -0700 | [diff] [blame] | 718 | parseArgNum := func(def int) int { |
| 719 | if len(arg) > 2 { |
| 720 | p, err := strconv.ParseUint(arg[2:], 10, 31) |
| 721 | if err != nil { |
| 722 | ctx.Fatalf("Failed to parse %q: %v", arg, err) |
| 723 | } |
| 724 | return int(p) |
| 725 | } else if i+1 < len(args) { |
| 726 | p, err := strconv.ParseUint(args[i+1], 10, 31) |
| 727 | if err == nil { |
| 728 | i++ |
| 729 | return int(p) |
| 730 | } |
| 731 | } |
| 732 | return def |
| 733 | } |
| 734 | |
Dan Willemsen | 6ac63ef | 2017-10-17 20:35:34 -0700 | [diff] [blame] | 735 | if len(arg) > 1 && arg[1] == 'j' { |
Dan Willemsen | 9b58749 | 2017-07-10 22:13:00 -0700 | [diff] [blame] | 736 | c.parallel = parseArgNum(c.parallel) |
Dan Willemsen | 6ac63ef | 2017-10-17 20:35:34 -0700 | [diff] [blame] | 737 | } else if len(arg) > 1 && arg[1] == 'k' { |
Dan Willemsen | 9b58749 | 2017-07-10 22:13:00 -0700 | [diff] [blame] | 738 | c.keepGoing = parseArgNum(0) |
Dan Willemsen | 1e70446 | 2016-08-21 15:17:17 -0700 | [diff] [blame] | 739 | } else { |
| 740 | ctx.Fatalln("Unknown option:", arg) |
| 741 | } |
Dan Willemsen | 091525e | 2017-07-11 14:17:50 -0700 | [diff] [blame] | 742 | } else if k, v, ok := decodeKeyValue(arg); ok && len(k) > 0 { |
Dan Willemsen | 6dfe30a | 2018-09-10 12:41:10 -0700 | [diff] [blame] | 743 | if k == "OUT_DIR" { |
| 744 | ctx.Fatalln("OUT_DIR may only be set in the environment, not as a command line option.") |
| 745 | } |
Dan Willemsen | 091525e | 2017-07-11 14:17:50 -0700 | [diff] [blame] | 746 | c.environ.Set(k, v) |
Dan Willemsen | 2d31a44 | 2018-10-20 21:33:41 -0700 | [diff] [blame] | 747 | } else if arg == "dist" { |
| 748 | c.dist = true |
Lukacs T. Berki | a1b9372 | 2021-09-02 17:23:06 +0200 | [diff] [blame] | 749 | } else if arg == "json-module-graph" { |
| 750 | c.jsonModuleGraph = true |
| 751 | } else if arg == "bp2build" { |
| 752 | c.bp2build = true |
Lukacs T. Berki | 3a82169 | 2021-09-06 17:08:02 +0200 | [diff] [blame] | 753 | } else if arg == "queryview" { |
| 754 | c.queryview = true |
Lukacs T. Berki | c6012f3 | 2021-09-06 18:31:46 +0200 | [diff] [blame] | 755 | } else if arg == "soong_docs" { |
| 756 | c.soongDocs = true |
Dan Willemsen | 1e70446 | 2016-08-21 15:17:17 -0700 | [diff] [blame] | 757 | } else { |
Dan Willemsen | 2d31a44 | 2018-10-20 21:33:41 -0700 | [diff] [blame] | 758 | if arg == "checkbuild" { |
Colin Cross | 3719349 | 2017-11-16 17:55:00 -0800 | [diff] [blame] | 759 | c.checkbuild = true |
Dan Willemsen | e0879fc | 2017-08-04 15:06:27 -0700 | [diff] [blame] | 760 | } |
Dan Willemsen | 9b58749 | 2017-07-10 22:13:00 -0700 | [diff] [blame] | 761 | c.arguments = append(c.arguments, arg) |
Dan Willemsen | 1e70446 | 2016-08-21 15:17:17 -0700 | [diff] [blame] | 762 | } |
| 763 | } |
Dan Willemsen | 1e70446 | 2016-08-21 15:17:17 -0700 | [diff] [blame] | 764 | } |
| 765 | |
Dan Willemsen | ed86952 | 2018-01-08 14:58:46 -0800 | [diff] [blame] | 766 | func (c *configImpl) configureLocale(ctx Context) { |
| 767 | cmd := Command(ctx, Config{c}, "locale", "locale", "-a") |
| 768 | output, err := cmd.Output() |
| 769 | |
| 770 | var locales []string |
| 771 | if err == nil { |
| 772 | locales = strings.Split(string(output), "\n") |
| 773 | } else { |
| 774 | // If we're unable to list the locales, let's assume en_US.UTF-8 |
| 775 | locales = []string{"en_US.UTF-8"} |
| 776 | ctx.Verbosef("Failed to list locales (%q), falling back to %q", err, locales) |
| 777 | } |
| 778 | |
| 779 | // gettext uses LANGUAGE, which is passed directly through |
| 780 | |
| 781 | // For LANG and LC_*, only preserve the evaluated version of |
| 782 | // LC_MESSAGES |
Jaewoong Jung | 18aefc1 | 2020-12-21 09:11:10 -0800 | [diff] [blame] | 783 | userLang := "" |
Dan Willemsen | ed86952 | 2018-01-08 14:58:46 -0800 | [diff] [blame] | 784 | if lc_all, ok := c.environ.Get("LC_ALL"); ok { |
Jaewoong Jung | 18aefc1 | 2020-12-21 09:11:10 -0800 | [diff] [blame] | 785 | userLang = lc_all |
Dan Willemsen | ed86952 | 2018-01-08 14:58:46 -0800 | [diff] [blame] | 786 | } else if lc_messages, ok := c.environ.Get("LC_MESSAGES"); ok { |
Jaewoong Jung | 18aefc1 | 2020-12-21 09:11:10 -0800 | [diff] [blame] | 787 | userLang = lc_messages |
Dan Willemsen | ed86952 | 2018-01-08 14:58:46 -0800 | [diff] [blame] | 788 | } else if lang, ok := c.environ.Get("LANG"); ok { |
Jaewoong Jung | 18aefc1 | 2020-12-21 09:11:10 -0800 | [diff] [blame] | 789 | userLang = lang |
Dan Willemsen | ed86952 | 2018-01-08 14:58:46 -0800 | [diff] [blame] | 790 | } |
| 791 | |
| 792 | c.environ.UnsetWithPrefix("LC_") |
| 793 | |
Jaewoong Jung | 18aefc1 | 2020-12-21 09:11:10 -0800 | [diff] [blame] | 794 | if userLang != "" { |
| 795 | c.environ.Set("LC_MESSAGES", userLang) |
Dan Willemsen | ed86952 | 2018-01-08 14:58:46 -0800 | [diff] [blame] | 796 | } |
| 797 | |
| 798 | // The for LANG, use C.UTF-8 if it exists (Debian currently, proposed |
| 799 | // for others) |
| 800 | if inList("C.UTF-8", locales) { |
| 801 | c.environ.Set("LANG", "C.UTF-8") |
Aaron Kling | d236e0e | 2018-08-07 19:21:36 -0500 | [diff] [blame] | 802 | } else if inList("C.utf8", locales) { |
| 803 | // These normalize to the same thing |
| 804 | c.environ.Set("LANG", "C.UTF-8") |
Dan Willemsen | ed86952 | 2018-01-08 14:58:46 -0800 | [diff] [blame] | 805 | } else if inList("en_US.UTF-8", locales) { |
| 806 | c.environ.Set("LANG", "en_US.UTF-8") |
| 807 | } else if inList("en_US.utf8", locales) { |
| 808 | // These normalize to the same thing |
| 809 | c.environ.Set("LANG", "en_US.UTF-8") |
| 810 | } else { |
| 811 | ctx.Fatalln("System doesn't support either C.UTF-8 or en_US.UTF-8") |
| 812 | } |
| 813 | } |
| 814 | |
Dan Willemsen | 1e70446 | 2016-08-21 15:17:17 -0700 | [diff] [blame] | 815 | func (c *configImpl) Environment() *Environment { |
| 816 | return c.environ |
| 817 | } |
| 818 | |
| 819 | func (c *configImpl) Arguments() []string { |
| 820 | return c.arguments |
| 821 | } |
| 822 | |
Lukacs T. Berki | a1b9372 | 2021-09-02 17:23:06 +0200 | [diff] [blame] | 823 | func (c *configImpl) SoongBuildInvocationNeeded() bool { |
Lukacs T. Berki | a1b9372 | 2021-09-02 17:23:06 +0200 | [diff] [blame] | 824 | if len(c.Arguments()) > 0 { |
| 825 | // Explicit targets requested that are not special targets like b2pbuild |
| 826 | // or the JSON module graph |
| 827 | return true |
| 828 | } |
| 829 | |
Lukacs T. Berki | c6012f3 | 2021-09-06 18:31:46 +0200 | [diff] [blame] | 830 | if !c.JsonModuleGraph() && !c.Bp2Build() && !c.Queryview() && !c.SoongDocs() { |
Lukacs T. Berki | a1b9372 | 2021-09-02 17:23:06 +0200 | [diff] [blame] | 831 | // Command line was empty, the default Ninja target is built |
| 832 | return true |
| 833 | } |
| 834 | |
Liz Kammer | 8867742 | 2021-12-15 15:03:19 -0500 | [diff] [blame] | 835 | // bp2build + dist may be used to dist bp2build logs but does not require SoongBuildInvocation |
| 836 | if c.Dist() && !c.Bp2Build() { |
| 837 | return true |
| 838 | } |
| 839 | |
Lukacs T. Berki | a1b9372 | 2021-09-02 17:23:06 +0200 | [diff] [blame] | 840 | // build.ninja doesn't need to be generated |
| 841 | return false |
| 842 | } |
| 843 | |
Dan Willemsen | 1e70446 | 2016-08-21 15:17:17 -0700 | [diff] [blame] | 844 | func (c *configImpl) OutDir() string { |
| 845 | if outDir, ok := c.environ.Get("OUT_DIR"); ok { |
Patrice Arruda | 19bd53e | 2019-07-08 17:26:47 -0700 | [diff] [blame] | 846 | return outDir |
Dan Willemsen | 1e70446 | 2016-08-21 15:17:17 -0700 | [diff] [blame] | 847 | } |
| 848 | return "out" |
| 849 | } |
| 850 | |
Dan Willemsen | 8a073a8 | 2017-02-04 17:30:44 -0800 | [diff] [blame] | 851 | func (c *configImpl) DistDir() string { |
Rupert Shuttleworth | 3c9f5ac | 2020-12-10 11:32:38 +0000 | [diff] [blame] | 852 | if c.UseBazel() { |
| 853 | return c.riggedDistDirForBazel |
| 854 | } else { |
| 855 | return c.distDir |
| 856 | } |
| 857 | } |
| 858 | |
| 859 | func (c *configImpl) RealDistDir() string { |
Dan Willemsen | 2d31a44 | 2018-10-20 21:33:41 -0700 | [diff] [blame] | 860 | return c.distDir |
Dan Willemsen | 8a073a8 | 2017-02-04 17:30:44 -0800 | [diff] [blame] | 861 | } |
| 862 | |
Dan Willemsen | 1e70446 | 2016-08-21 15:17:17 -0700 | [diff] [blame] | 863 | func (c *configImpl) NinjaArgs() []string { |
Anton Hansson | 5e5c48b | 2020-11-27 12:35:20 +0000 | [diff] [blame] | 864 | if c.skipKati { |
Dan Willemsen | e0879fc | 2017-08-04 15:06:27 -0700 | [diff] [blame] | 865 | return c.arguments |
| 866 | } |
Dan Willemsen | 1e70446 | 2016-08-21 15:17:17 -0700 | [diff] [blame] | 867 | return c.ninjaArgs |
| 868 | } |
| 869 | |
Jingwen Chen | 7c6089a | 2020-11-02 02:56:20 -0500 | [diff] [blame] | 870 | func (c *configImpl) BazelOutDir() string { |
| 871 | return filepath.Join(c.OutDir(), "bazel") |
| 872 | } |
| 873 | |
Dan Willemsen | 1e70446 | 2016-08-21 15:17:17 -0700 | [diff] [blame] | 874 | func (c *configImpl) SoongOutDir() string { |
| 875 | return filepath.Join(c.OutDir(), "soong") |
| 876 | } |
| 877 | |
Lukacs T. Berki | a806e41 | 2021-09-01 08:57:48 +0200 | [diff] [blame] | 878 | func (c *configImpl) PrebuiltOS() string { |
| 879 | switch runtime.GOOS { |
| 880 | case "linux": |
| 881 | return "linux-x86" |
| 882 | case "darwin": |
| 883 | return "darwin-x86" |
| 884 | default: |
| 885 | panic("Unknown GOOS") |
| 886 | } |
| 887 | } |
Lukacs T. Berki | 90b4334 | 2021-11-02 14:42:04 +0100 | [diff] [blame] | 888 | |
Lukacs T. Berki | a806e41 | 2021-09-01 08:57:48 +0200 | [diff] [blame] | 889 | func (c *configImpl) HostToolDir() string { |
Colin Cross | acfcc1f | 2021-10-25 15:40:32 -0700 | [diff] [blame] | 890 | if c.SkipKatiNinja() { |
| 891 | return filepath.Join(c.SoongOutDir(), "host", c.PrebuiltOS(), "bin") |
| 892 | } else { |
| 893 | return filepath.Join(c.OutDir(), "host", c.PrebuiltOS(), "bin") |
| 894 | } |
Lukacs T. Berki | a806e41 | 2021-09-01 08:57:48 +0200 | [diff] [blame] | 895 | } |
| 896 | |
Lukacs T. Berki | 89fcdcb | 2021-09-07 09:10:33 +0200 | [diff] [blame] | 897 | func (c *configImpl) NamedGlobFile(name string) string { |
Lukacs T. Berki | 90b4334 | 2021-11-02 14:42:04 +0100 | [diff] [blame] | 898 | return shared.JoinPath(c.SoongOutDir(), "globs-"+name+".ninja") |
Lukacs T. Berki | 89fcdcb | 2021-09-07 09:10:33 +0200 | [diff] [blame] | 899 | } |
| 900 | |
Lukacs T. Berki | e1df43f | 2021-09-08 15:31:14 +0200 | [diff] [blame] | 901 | func (c *configImpl) UsedEnvFile(tag string) string { |
| 902 | return shared.JoinPath(c.SoongOutDir(), usedEnvFile+"."+tag) |
| 903 | } |
| 904 | |
Lukacs T. Berki | 56ebaf3 | 2021-08-12 14:03:55 +0200 | [diff] [blame] | 905 | func (c *configImpl) Bp2BuildMarkerFile() string { |
Lukacs T. Berki | 90b4334 | 2021-11-02 14:42:04 +0100 | [diff] [blame] | 906 | return shared.JoinPath(c.SoongOutDir(), "bp2build_workspace_marker") |
Lukacs T. Berki | 56ebaf3 | 2021-08-12 14:03:55 +0200 | [diff] [blame] | 907 | } |
| 908 | |
Lukacs T. Berki | c6012f3 | 2021-09-06 18:31:46 +0200 | [diff] [blame] | 909 | func (c *configImpl) SoongDocsHtml() string { |
| 910 | return shared.JoinPath(c.SoongOutDir(), "docs/soong_build.html") |
| 911 | } |
| 912 | |
Lukacs T. Berki | 3a82169 | 2021-09-06 17:08:02 +0200 | [diff] [blame] | 913 | func (c *configImpl) QueryviewMarkerFile() string { |
| 914 | return shared.JoinPath(c.SoongOutDir(), "queryview.marker") |
| 915 | } |
| 916 | |
Lukacs T. Berki | e571dc3 | 2021-08-25 14:14:13 +0200 | [diff] [blame] | 917 | func (c *configImpl) ModuleGraphFile() string { |
| 918 | return shared.JoinPath(c.SoongOutDir(), "module-graph.json") |
| 919 | } |
| 920 | |
kgui | 6700724 | 2022-01-25 13:50:25 +0800 | [diff] [blame] | 921 | func (c *configImpl) ModuleActionsFile() string { |
| 922 | return shared.JoinPath(c.SoongOutDir(), "module-actions.json") |
| 923 | } |
| 924 | |
Jeff Gaston | efc1b41 | 2017-03-29 17:29:06 -0700 | [diff] [blame] | 925 | func (c *configImpl) TempDir() string { |
| 926 | return shared.TempDirForOutDir(c.SoongOutDir()) |
| 927 | } |
| 928 | |
Jeff Gaston | b64fc1c | 2017-08-04 12:30:12 -0700 | [diff] [blame] | 929 | func (c *configImpl) FileListDir() string { |
| 930 | return filepath.Join(c.OutDir(), ".module_paths") |
| 931 | } |
| 932 | |
Dan Willemsen | 1e70446 | 2016-08-21 15:17:17 -0700 | [diff] [blame] | 933 | func (c *configImpl) KatiSuffix() string { |
| 934 | if c.katiSuffix != "" { |
| 935 | return c.katiSuffix |
| 936 | } |
| 937 | panic("SetKatiSuffix has not been called") |
| 938 | } |
| 939 | |
Colin Cross | 3719349 | 2017-11-16 17:55:00 -0800 | [diff] [blame] | 940 | // Checkbuild returns true if "checkbuild" was one of the build goals, which means that the |
| 941 | // user is interested in additional checks at the expense of build time. |
| 942 | func (c *configImpl) Checkbuild() bool { |
| 943 | return c.checkbuild |
| 944 | } |
| 945 | |
Dan Willemsen | 8a073a8 | 2017-02-04 17:30:44 -0800 | [diff] [blame] | 946 | func (c *configImpl) Dist() bool { |
| 947 | return c.dist |
| 948 | } |
| 949 | |
Lukacs T. Berki | a1b9372 | 2021-09-02 17:23:06 +0200 | [diff] [blame] | 950 | func (c *configImpl) JsonModuleGraph() bool { |
| 951 | return c.jsonModuleGraph |
| 952 | } |
| 953 | |
| 954 | func (c *configImpl) Bp2Build() bool { |
| 955 | return c.bp2build |
| 956 | } |
| 957 | |
Lukacs T. Berki | 3a82169 | 2021-09-06 17:08:02 +0200 | [diff] [blame] | 958 | func (c *configImpl) Queryview() bool { |
| 959 | return c.queryview |
| 960 | } |
| 961 | |
Lukacs T. Berki | c6012f3 | 2021-09-06 18:31:46 +0200 | [diff] [blame] | 962 | func (c *configImpl) SoongDocs() bool { |
| 963 | return c.soongDocs |
| 964 | } |
| 965 | |
Dan Willemsen | 1e70446 | 2016-08-21 15:17:17 -0700 | [diff] [blame] | 966 | func (c *configImpl) IsVerbose() bool { |
| 967 | return c.verbose |
| 968 | } |
| 969 | |
Anton Hansson | 5e5c48b | 2020-11-27 12:35:20 +0000 | [diff] [blame] | 970 | func (c *configImpl) SkipKati() bool { |
| 971 | return c.skipKati |
| 972 | } |
| 973 | |
Anton Hansson | 0b55bdb | 2021-06-04 10:08:08 +0100 | [diff] [blame] | 974 | func (c *configImpl) SkipKatiNinja() bool { |
| 975 | return c.skipKatiNinja |
| 976 | } |
| 977 | |
Lukacs T. Berki | cef87b6 | 2021-08-10 15:01:13 +0200 | [diff] [blame] | 978 | func (c *configImpl) SkipSoong() bool { |
| 979 | return c.skipSoong |
| 980 | } |
| 981 | |
Lukacs T. Berki | d1e3f1f | 2021-03-16 08:55:23 +0100 | [diff] [blame] | 982 | func (c *configImpl) SkipNinja() bool { |
| 983 | return c.skipNinja |
| 984 | } |
| 985 | |
Anton Hansson | 5a7861a | 2021-06-04 10:09:01 +0100 | [diff] [blame] | 986 | func (c *configImpl) SetSkipNinja(v bool) { |
| 987 | c.skipNinja = v |
| 988 | } |
| 989 | |
Anton Hansson | 5e5c48b | 2020-11-27 12:35:20 +0000 | [diff] [blame] | 990 | func (c *configImpl) SkipConfig() bool { |
| 991 | return c.skipConfig |
Dan Willemsen | e0879fc | 2017-08-04 15:06:27 -0700 | [diff] [blame] | 992 | } |
| 993 | |
Dan Willemsen | 1e70446 | 2016-08-21 15:17:17 -0700 | [diff] [blame] | 994 | func (c *configImpl) TargetProduct() string { |
| 995 | if v, ok := c.environ.Get("TARGET_PRODUCT"); ok { |
| 996 | return v |
| 997 | } |
| 998 | panic("TARGET_PRODUCT is not defined") |
| 999 | } |
| 1000 | |
Dan Willemsen | 02781d5 | 2017-05-12 19:28:13 -0700 | [diff] [blame] | 1001 | func (c *configImpl) TargetDevice() string { |
| 1002 | return c.targetDevice |
| 1003 | } |
| 1004 | |
| 1005 | func (c *configImpl) SetTargetDevice(device string) { |
| 1006 | c.targetDevice = device |
| 1007 | } |
| 1008 | |
| 1009 | func (c *configImpl) TargetBuildVariant() string { |
| 1010 | if v, ok := c.environ.Get("TARGET_BUILD_VARIANT"); ok { |
| 1011 | return v |
| 1012 | } |
| 1013 | panic("TARGET_BUILD_VARIANT is not defined") |
| 1014 | } |
| 1015 | |
Dan Willemsen | 1e70446 | 2016-08-21 15:17:17 -0700 | [diff] [blame] | 1016 | func (c *configImpl) KatiArgs() []string { |
| 1017 | return c.katiArgs |
| 1018 | } |
| 1019 | |
| 1020 | func (c *configImpl) Parallel() int { |
| 1021 | return c.parallel |
| 1022 | } |
| 1023 | |
Colin Cross | 8b8bec3 | 2019-11-15 13:18:43 -0800 | [diff] [blame] | 1024 | func (c *configImpl) HighmemParallel() int { |
| 1025 | if i, ok := c.environ.GetInt("NINJA_HIGHMEM_NUM_JOBS"); ok { |
| 1026 | return i |
| 1027 | } |
| 1028 | |
| 1029 | const minMemPerHighmemProcess = 8 * 1024 * 1024 * 1024 |
| 1030 | parallel := c.Parallel() |
| 1031 | if c.UseRemoteBuild() { |
| 1032 | // Ninja doesn't support nested pools, and when remote builds are enabled the total ninja parallelism |
| 1033 | // is set very high (i.e. 500). Using a large value here would cause the total number of running jobs |
| 1034 | // to be the sum of the sizes of the local and highmem pools, which will cause extra CPU contention. |
| 1035 | // Return 1/16th of the size of the local pool, rounding up. |
| 1036 | return (parallel + 15) / 16 |
| 1037 | } else if c.totalRAM == 0 { |
| 1038 | // Couldn't detect the total RAM, don't restrict highmem processes. |
| 1039 | return parallel |
Dan Willemsen | 570a292 | 2020-05-26 23:02:29 -0700 | [diff] [blame] | 1040 | } else if c.totalRAM <= 16*1024*1024*1024 { |
| 1041 | // Less than 16GB of ram, restrict to 1 highmem processes |
| 1042 | return 1 |
Colin Cross | 8b8bec3 | 2019-11-15 13:18:43 -0800 | [diff] [blame] | 1043 | } else if c.totalRAM <= 32*1024*1024*1024 { |
| 1044 | // Less than 32GB of ram, restrict to 2 highmem processes |
| 1045 | return 2 |
| 1046 | } else if p := int(c.totalRAM / minMemPerHighmemProcess); p < parallel { |
| 1047 | // If less than 8GB total RAM per process, reduce the number of highmem processes |
| 1048 | return p |
| 1049 | } |
| 1050 | // No restriction on highmem processes |
| 1051 | return parallel |
| 1052 | } |
| 1053 | |
Dan Willemsen | 2bb82d0 | 2019-12-27 09:35:42 -0800 | [diff] [blame] | 1054 | func (c *configImpl) TotalRAM() uint64 { |
| 1055 | return c.totalRAM |
| 1056 | } |
| 1057 | |
Kousik Kumar | ec47864 | 2020-09-21 13:39:24 -0400 | [diff] [blame] | 1058 | // ForceUseGoma determines whether we should override Goma deprecation |
| 1059 | // and use Goma for the current build or not. |
| 1060 | func (c *configImpl) ForceUseGoma() bool { |
| 1061 | if v, ok := c.environ.Get("FORCE_USE_GOMA"); ok { |
| 1062 | v = strings.TrimSpace(v) |
| 1063 | if v != "" && v != "false" { |
| 1064 | return true |
| 1065 | } |
| 1066 | } |
| 1067 | return false |
| 1068 | } |
| 1069 | |
Dan Willemsen | 1e70446 | 2016-08-21 15:17:17 -0700 | [diff] [blame] | 1070 | func (c *configImpl) UseGoma() bool { |
| 1071 | if v, ok := c.environ.Get("USE_GOMA"); ok { |
| 1072 | v = strings.TrimSpace(v) |
| 1073 | if v != "" && v != "false" { |
| 1074 | return true |
| 1075 | } |
| 1076 | } |
| 1077 | return false |
| 1078 | } |
| 1079 | |
Yoshisato Yanagisawa | 2cb0e5d | 2019-01-10 10:14:16 +0900 | [diff] [blame] | 1080 | func (c *configImpl) StartGoma() bool { |
| 1081 | if !c.UseGoma() { |
| 1082 | return false |
| 1083 | } |
| 1084 | |
| 1085 | if v, ok := c.environ.Get("NOSTART_GOMA"); ok { |
| 1086 | v = strings.TrimSpace(v) |
| 1087 | if v != "" && v != "false" { |
| 1088 | return false |
| 1089 | } |
| 1090 | } |
| 1091 | return true |
| 1092 | } |
| 1093 | |
Ramy Medhat | bbf2567 | 2019-07-17 12:30:04 +0000 | [diff] [blame] | 1094 | func (c *configImpl) UseRBE() bool { |
Kousik Kumar | 3ff037e | 2022-01-25 22:11:01 -0500 | [diff] [blame] | 1095 | if v, ok := c.Environment().Get("USE_RBE"); ok { |
Ramy Medhat | bbf2567 | 2019-07-17 12:30:04 +0000 | [diff] [blame] | 1096 | v = strings.TrimSpace(v) |
| 1097 | if v != "" && v != "false" { |
| 1098 | return true |
| 1099 | } |
| 1100 | } |
| 1101 | return false |
| 1102 | } |
| 1103 | |
Patrice Arruda | 0c1c456 | 2020-11-11 13:01:25 -0800 | [diff] [blame] | 1104 | func (c *configImpl) UseBazel() bool { |
Rupert Shuttleworth | 3c9f5ac | 2020-12-10 11:32:38 +0000 | [diff] [blame] | 1105 | return c.useBazel |
Patrice Arruda | 0c1c456 | 2020-11-11 13:01:25 -0800 | [diff] [blame] | 1106 | } |
| 1107 | |
Chris Parsons | ec1a3dc | 2021-04-20 15:32:07 -0400 | [diff] [blame] | 1108 | func (c *configImpl) bazelBuildMode() bazelBuildMode { |
| 1109 | if c.Environment().IsEnvTrue("USE_BAZEL_ANALYSIS") { |
| 1110 | return mixedBuild |
Chris Parsons | ec1a3dc | 2021-04-20 15:32:07 -0400 | [diff] [blame] | 1111 | } else { |
| 1112 | return noBazel |
| 1113 | } |
| 1114 | } |
| 1115 | |
Ramy Medhat | bbf2567 | 2019-07-17 12:30:04 +0000 | [diff] [blame] | 1116 | func (c *configImpl) StartRBE() bool { |
| 1117 | if !c.UseRBE() { |
| 1118 | return false |
| 1119 | } |
| 1120 | |
| 1121 | if v, ok := c.environ.Get("NOSTART_RBE"); ok { |
| 1122 | v = strings.TrimSpace(v) |
| 1123 | if v != "" && v != "false" { |
| 1124 | return false |
| 1125 | } |
| 1126 | } |
| 1127 | return true |
| 1128 | } |
| 1129 | |
Rupert Shuttleworth | 3c9f5ac | 2020-12-10 11:32:38 +0000 | [diff] [blame] | 1130 | func (c *configImpl) rbeLogDir() string { |
Kousik Kumar | 0d15a72 | 2020-09-23 02:54:11 -0400 | [diff] [blame] | 1131 | for _, f := range []string{"RBE_log_dir", "FLAG_log_dir"} { |
| 1132 | if v, ok := c.environ.Get(f); ok { |
| 1133 | return v |
| 1134 | } |
| 1135 | } |
Ramy Medhat | 0fc67eb | 2020-08-12 01:26:23 -0400 | [diff] [blame] | 1136 | if c.Dist() { |
Rupert Shuttleworth | 3c9f5ac | 2020-12-10 11:32:38 +0000 | [diff] [blame] | 1137 | return c.LogsDir() |
Ramy Medhat | 0fc67eb | 2020-08-12 01:26:23 -0400 | [diff] [blame] | 1138 | } |
| 1139 | return c.OutDir() |
| 1140 | } |
| 1141 | |
| 1142 | func (c *configImpl) rbeStatsOutputDir() string { |
Patrice Arruda | 62f1bf2 | 2020-07-07 12:48:26 +0000 | [diff] [blame] | 1143 | for _, f := range []string{"RBE_output_dir", "FLAG_output_dir"} { |
| 1144 | if v, ok := c.environ.Get(f); ok { |
| 1145 | return v |
| 1146 | } |
| 1147 | } |
Rupert Shuttleworth | 3c9f5ac | 2020-12-10 11:32:38 +0000 | [diff] [blame] | 1148 | return c.rbeLogDir() |
Ramy Medhat | 0fc67eb | 2020-08-12 01:26:23 -0400 | [diff] [blame] | 1149 | } |
| 1150 | |
| 1151 | func (c *configImpl) rbeLogPath() string { |
| 1152 | for _, f := range []string{"RBE_log_path", "FLAG_log_path"} { |
| 1153 | if v, ok := c.environ.Get(f); ok { |
| 1154 | return v |
| 1155 | } |
| 1156 | } |
Rupert Shuttleworth | 3c9f5ac | 2020-12-10 11:32:38 +0000 | [diff] [blame] | 1157 | return fmt.Sprintf("text://%v/reproxy_log.txt", c.rbeLogDir()) |
Ramy Medhat | 0fc67eb | 2020-08-12 01:26:23 -0400 | [diff] [blame] | 1158 | } |
| 1159 | |
| 1160 | func (c *configImpl) rbeExecRoot() string { |
| 1161 | for _, f := range []string{"RBE_exec_root", "FLAG_exec_root"} { |
| 1162 | if v, ok := c.environ.Get(f); ok { |
| 1163 | return v |
| 1164 | } |
| 1165 | } |
| 1166 | wd, err := os.Getwd() |
| 1167 | if err != nil { |
| 1168 | return "" |
| 1169 | } |
| 1170 | return wd |
| 1171 | } |
| 1172 | |
| 1173 | func (c *configImpl) rbeDir() string { |
| 1174 | if v, ok := c.environ.Get("RBE_DIR"); ok { |
| 1175 | return v |
| 1176 | } |
| 1177 | return "prebuilts/remoteexecution-client/live/" |
| 1178 | } |
| 1179 | |
| 1180 | func (c *configImpl) rbeReproxy() string { |
| 1181 | for _, f := range []string{"RBE_re_proxy", "FLAG_re_proxy"} { |
| 1182 | if v, ok := c.environ.Get(f); ok { |
| 1183 | return v |
| 1184 | } |
| 1185 | } |
| 1186 | return filepath.Join(c.rbeDir(), "reproxy") |
| 1187 | } |
| 1188 | |
| 1189 | func (c *configImpl) rbeAuth() (string, string) { |
| 1190 | credFlags := []string{"use_application_default_credentials", "use_gce_credentials", "credential_file"} |
| 1191 | for _, cf := range credFlags { |
| 1192 | for _, f := range []string{"RBE_" + cf, "FLAG_" + cf} { |
| 1193 | if v, ok := c.environ.Get(f); ok { |
| 1194 | v = strings.TrimSpace(v) |
| 1195 | if v != "" && v != "false" && v != "0" { |
| 1196 | return "RBE_" + cf, v |
| 1197 | } |
| 1198 | } |
| 1199 | } |
| 1200 | } |
| 1201 | return "RBE_use_application_default_credentials", "true" |
Patrice Arruda | 62f1bf2 | 2020-07-07 12:48:26 +0000 | [diff] [blame] | 1202 | } |
| 1203 | |
Colin Cross | 9016b91 | 2019-11-11 14:57:42 -0800 | [diff] [blame] | 1204 | func (c *configImpl) UseRemoteBuild() bool { |
| 1205 | return c.UseGoma() || c.UseRBE() |
| 1206 | } |
| 1207 | |
Dan Willemsen | 1e70446 | 2016-08-21 15:17:17 -0700 | [diff] [blame] | 1208 | // RemoteParallel controls how many remote jobs (i.e., commands which contain |
Jeff Gaston | efc1b41 | 2017-03-29 17:29:06 -0700 | [diff] [blame] | 1209 | // gomacc) are run in parallel. Note the parallelism of all other jobs is |
Dan Willemsen | 1e70446 | 2016-08-21 15:17:17 -0700 | [diff] [blame] | 1210 | // still limited by Parallel() |
| 1211 | func (c *configImpl) RemoteParallel() int { |
Colin Cross | 8b8bec3 | 2019-11-15 13:18:43 -0800 | [diff] [blame] | 1212 | if !c.UseRemoteBuild() { |
| 1213 | return 0 |
| 1214 | } |
| 1215 | if i, ok := c.environ.GetInt("NINJA_REMOTE_NUM_JOBS"); ok { |
| 1216 | return i |
Dan Willemsen | 1e70446 | 2016-08-21 15:17:17 -0700 | [diff] [blame] | 1217 | } |
| 1218 | return 500 |
| 1219 | } |
| 1220 | |
| 1221 | func (c *configImpl) SetKatiArgs(args []string) { |
| 1222 | c.katiArgs = args |
| 1223 | } |
| 1224 | |
| 1225 | func (c *configImpl) SetNinjaArgs(args []string) { |
| 1226 | c.ninjaArgs = args |
| 1227 | } |
| 1228 | |
| 1229 | func (c *configImpl) SetKatiSuffix(suffix string) { |
| 1230 | c.katiSuffix = suffix |
| 1231 | } |
| 1232 | |
Dan Willemsen | e0879fc | 2017-08-04 15:06:27 -0700 | [diff] [blame] | 1233 | func (c *configImpl) LastKatiSuffixFile() string { |
| 1234 | return filepath.Join(c.OutDir(), "last_kati_suffix") |
| 1235 | } |
| 1236 | |
| 1237 | func (c *configImpl) HasKatiSuffix() bool { |
| 1238 | return c.katiSuffix != "" |
| 1239 | } |
| 1240 | |
Dan Willemsen | 1e70446 | 2016-08-21 15:17:17 -0700 | [diff] [blame] | 1241 | func (c *configImpl) KatiEnvFile() string { |
| 1242 | return filepath.Join(c.OutDir(), "env"+c.KatiSuffix()+".sh") |
| 1243 | } |
| 1244 | |
Dan Willemsen | 2997123 | 2018-09-26 14:58:30 -0700 | [diff] [blame] | 1245 | func (c *configImpl) KatiBuildNinjaFile() string { |
| 1246 | return filepath.Join(c.OutDir(), "build"+c.KatiSuffix()+katiBuildSuffix+".ninja") |
Dan Willemsen | 1e70446 | 2016-08-21 15:17:17 -0700 | [diff] [blame] | 1247 | } |
| 1248 | |
Dan Willemsen | fb1271a | 2018-09-26 15:00:42 -0700 | [diff] [blame] | 1249 | func (c *configImpl) KatiPackageNinjaFile() string { |
| 1250 | return filepath.Join(c.OutDir(), "build"+c.KatiSuffix()+katiPackageSuffix+".ninja") |
| 1251 | } |
| 1252 | |
Dan Willemsen | 1e70446 | 2016-08-21 15:17:17 -0700 | [diff] [blame] | 1253 | func (c *configImpl) SoongNinjaFile() string { |
| 1254 | return filepath.Join(c.SoongOutDir(), "build.ninja") |
| 1255 | } |
| 1256 | |
| 1257 | func (c *configImpl) CombinedNinjaFile() string { |
Dan Willemsen | e0879fc | 2017-08-04 15:06:27 -0700 | [diff] [blame] | 1258 | if c.katiSuffix == "" { |
| 1259 | return filepath.Join(c.OutDir(), "combined.ninja") |
| 1260 | } |
Dan Willemsen | 1e70446 | 2016-08-21 15:17:17 -0700 | [diff] [blame] | 1261 | return filepath.Join(c.OutDir(), "combined"+c.KatiSuffix()+".ninja") |
| 1262 | } |
| 1263 | |
| 1264 | func (c *configImpl) SoongAndroidMk() string { |
| 1265 | return filepath.Join(c.SoongOutDir(), "Android-"+c.TargetProduct()+".mk") |
| 1266 | } |
| 1267 | |
| 1268 | func (c *configImpl) SoongMakeVarsMk() string { |
| 1269 | return filepath.Join(c.SoongOutDir(), "make_vars-"+c.TargetProduct()+".mk") |
| 1270 | } |
| 1271 | |
Dan Willemsen | f052f78 | 2017-05-18 15:29:04 -0700 | [diff] [blame] | 1272 | func (c *configImpl) ProductOut() string { |
Dan Willemsen | 4dc4e14 | 2017-09-08 14:35:43 -0700 | [diff] [blame] | 1273 | return filepath.Join(c.OutDir(), "target", "product", c.TargetDevice()) |
Dan Willemsen | f052f78 | 2017-05-18 15:29:04 -0700 | [diff] [blame] | 1274 | } |
| 1275 | |
Dan Willemsen | 02781d5 | 2017-05-12 19:28:13 -0700 | [diff] [blame] | 1276 | func (c *configImpl) DevicePreviousProductConfig() string { |
Dan Willemsen | f052f78 | 2017-05-18 15:29:04 -0700 | [diff] [blame] | 1277 | return filepath.Join(c.ProductOut(), "previous_build_config.mk") |
| 1278 | } |
| 1279 | |
Dan Willemsen | fb1271a | 2018-09-26 15:00:42 -0700 | [diff] [blame] | 1280 | func (c *configImpl) KatiPackageMkDir() string { |
| 1281 | return filepath.Join(c.ProductOut(), "obj", "CONFIG", "kati_packaging") |
| 1282 | } |
| 1283 | |
Dan Willemsen | f052f78 | 2017-05-18 15:29:04 -0700 | [diff] [blame] | 1284 | func (c *configImpl) hostOutRoot() string { |
Dan Willemsen | 4dc4e14 | 2017-09-08 14:35:43 -0700 | [diff] [blame] | 1285 | return filepath.Join(c.OutDir(), "host") |
Dan Willemsen | f052f78 | 2017-05-18 15:29:04 -0700 | [diff] [blame] | 1286 | } |
| 1287 | |
| 1288 | func (c *configImpl) HostOut() string { |
| 1289 | return filepath.Join(c.hostOutRoot(), c.HostPrebuiltTag()) |
| 1290 | } |
| 1291 | |
| 1292 | // This probably needs to be multi-valued, so not exporting it for now |
| 1293 | func (c *configImpl) hostCrossOut() string { |
| 1294 | if runtime.GOOS == "linux" { |
| 1295 | return filepath.Join(c.hostOutRoot(), "windows-x86") |
| 1296 | } else { |
| 1297 | return "" |
| 1298 | } |
Dan Willemsen | 02781d5 | 2017-05-12 19:28:13 -0700 | [diff] [blame] | 1299 | } |
| 1300 | |
Dan Willemsen | 1e70446 | 2016-08-21 15:17:17 -0700 | [diff] [blame] | 1301 | func (c *configImpl) HostPrebuiltTag() string { |
| 1302 | if runtime.GOOS == "linux" { |
| 1303 | return "linux-x86" |
| 1304 | } else if runtime.GOOS == "darwin" { |
| 1305 | return "darwin-x86" |
| 1306 | } else { |
| 1307 | panic("Unsupported OS") |
| 1308 | } |
| 1309 | } |
Dan Willemsen | f173d59 | 2017-04-27 14:28:00 -0700 | [diff] [blame] | 1310 | |
Dan Willemsen | 8122bd5 | 2017-10-12 20:20:41 -0700 | [diff] [blame] | 1311 | func (c *configImpl) PrebuiltBuildTool(name string) string { |
Dan Willemsen | f173d59 | 2017-04-27 14:28:00 -0700 | [diff] [blame] | 1312 | if v, ok := c.environ.Get("SANITIZE_HOST"); ok { |
| 1313 | if sanitize := strings.Fields(v); inList("address", sanitize) { |
Dan Willemsen | 8122bd5 | 2017-10-12 20:20:41 -0700 | [diff] [blame] | 1314 | asan := filepath.Join("prebuilts/build-tools", c.HostPrebuiltTag(), "asan/bin", name) |
| 1315 | if _, err := os.Stat(asan); err == nil { |
| 1316 | return asan |
| 1317 | } |
Dan Willemsen | f173d59 | 2017-04-27 14:28:00 -0700 | [diff] [blame] | 1318 | } |
| 1319 | } |
| 1320 | return filepath.Join("prebuilts/build-tools", c.HostPrebuiltTag(), "bin", name) |
| 1321 | } |
Dan Willemsen | 3d60b11 | 2018-04-04 22:25:56 -0700 | [diff] [blame] | 1322 | |
| 1323 | func (c *configImpl) SetBuildBrokenDupRules(val bool) { |
| 1324 | c.brokenDupRules = val |
| 1325 | } |
| 1326 | |
| 1327 | func (c *configImpl) BuildBrokenDupRules() bool { |
| 1328 | return c.brokenDupRules |
| 1329 | } |
Dan Willemsen | 6ab79db | 2018-05-02 00:06:28 -0700 | [diff] [blame] | 1330 | |
Dan Willemsen | 25e6f09 | 2019-04-09 10:22:43 -0700 | [diff] [blame] | 1331 | func (c *configImpl) SetBuildBrokenUsesNetwork(val bool) { |
| 1332 | c.brokenUsesNetwork = val |
| 1333 | } |
| 1334 | |
| 1335 | func (c *configImpl) BuildBrokenUsesNetwork() bool { |
| 1336 | return c.brokenUsesNetwork |
| 1337 | } |
| 1338 | |
Dan Willemsen | e333635 | 2020-01-02 19:10:38 -0800 | [diff] [blame] | 1339 | func (c *configImpl) SetBuildBrokenNinjaUsesEnvVars(val []string) { |
| 1340 | c.brokenNinjaEnvVars = val |
| 1341 | } |
| 1342 | |
| 1343 | func (c *configImpl) BuildBrokenNinjaUsesEnvVars() []string { |
| 1344 | return c.brokenNinjaEnvVars |
| 1345 | } |
| 1346 | |
Dan Willemsen | 6ab79db | 2018-05-02 00:06:28 -0700 | [diff] [blame] | 1347 | func (c *configImpl) SetTargetDeviceDir(dir string) { |
| 1348 | c.targetDeviceDir = dir |
| 1349 | } |
| 1350 | |
| 1351 | func (c *configImpl) TargetDeviceDir() string { |
| 1352 | return c.targetDeviceDir |
| 1353 | } |
Dan Willemsen | fa42f3c | 2018-06-15 21:54:47 -0700 | [diff] [blame] | 1354 | |
Patrice Arruda | 219eef3 | 2020-06-01 17:29:30 +0000 | [diff] [blame] | 1355 | func (c *configImpl) BuildDateTime() string { |
| 1356 | return c.buildDateTime |
| 1357 | } |
| 1358 | |
| 1359 | func (c *configImpl) MetricsUploaderApp() string { |
Yu Liu | 6e13b40 | 2021-07-27 14:29:06 -0700 | [diff] [blame] | 1360 | return c.metricsUploader |
Patrice Arruda | 219eef3 | 2020-06-01 17:29:30 +0000 | [diff] [blame] | 1361 | } |
Patrice Arruda | 83842d7 | 2020-12-08 19:42:08 +0000 | [diff] [blame] | 1362 | |
Alex Márquez Pérez Muñíz Díaz Púras Thaureaux | 947fdbf | 2021-11-10 09:55:20 -0500 | [diff] [blame] | 1363 | // LogsDir returns the absolute path to the logs directory where build log and |
| 1364 | // metrics files are located. By default, the logs directory is the out |
Patrice Arruda | 83842d7 | 2020-12-08 19:42:08 +0000 | [diff] [blame] | 1365 | // directory. If the argument dist is specified, the logs directory |
| 1366 | // is <dist_dir>/logs. |
| 1367 | func (c *configImpl) LogsDir() string { |
Alex Márquez Pérez Muñíz Díaz Púras Thaureaux | 947fdbf | 2021-11-10 09:55:20 -0500 | [diff] [blame] | 1368 | dir := c.OutDir() |
Patrice Arruda | 83842d7 | 2020-12-08 19:42:08 +0000 | [diff] [blame] | 1369 | if c.Dist() { |
Rupert Shuttleworth | 3c9f5ac | 2020-12-10 11:32:38 +0000 | [diff] [blame] | 1370 | // Always write logs to the real dist dir, even if Bazel is using a rigged dist dir for other files |
Alex Márquez Pérez Muñíz Díaz Púras Thaureaux | 947fdbf | 2021-11-10 09:55:20 -0500 | [diff] [blame] | 1371 | dir = filepath.Join(c.RealDistDir(), "logs") |
Patrice Arruda | 83842d7 | 2020-12-08 19:42:08 +0000 | [diff] [blame] | 1372 | } |
Alex Márquez Pérez Muñíz Díaz Púras Thaureaux | 947fdbf | 2021-11-10 09:55:20 -0500 | [diff] [blame] | 1373 | absDir, err := filepath.Abs(dir) |
| 1374 | if err != nil { |
| 1375 | fmt.Fprintf(os.Stderr, "\nError making log dir '%s' absolute: %s\n", dir, err.Error()) |
| 1376 | os.Exit(1) |
| 1377 | } |
| 1378 | return absDir |
Patrice Arruda | 83842d7 | 2020-12-08 19:42:08 +0000 | [diff] [blame] | 1379 | } |
| 1380 | |
| 1381 | // BazelMetricsDir returns the <logs dir>/bazel_metrics directory |
| 1382 | // where the bazel profiles are located. |
| 1383 | func (c *configImpl) BazelMetricsDir() string { |
| 1384 | return filepath.Join(c.LogsDir(), "bazel_metrics") |
| 1385 | } |
Colin Cross | f3bdbcb | 2021-06-01 11:43:55 -0700 | [diff] [blame] | 1386 | |
Chris Parsons | 53f68ae | 2022-03-03 12:01:40 -0500 | [diff] [blame^] | 1387 | // MkFileMetrics returns the file path for make-related metrics. |
| 1388 | func (c *configImpl) MkMetrics() string { |
| 1389 | return filepath.Join(c.LogsDir(), "mk_metrics.pb") |
| 1390 | } |
| 1391 | |
Colin Cross | f3bdbcb | 2021-06-01 11:43:55 -0700 | [diff] [blame] | 1392 | func (c *configImpl) SetEmptyNinjaFile(v bool) { |
| 1393 | c.emptyNinjaFile = v |
| 1394 | } |
| 1395 | |
| 1396 | func (c *configImpl) EmptyNinjaFile() bool { |
| 1397 | return c.emptyNinjaFile |
| 1398 | } |
Yu Liu | 6e13b40 | 2021-07-27 14:29:06 -0700 | [diff] [blame] | 1399 | |
| 1400 | func GetMetricsUploader(topDir string, env *Environment) string { |
| 1401 | if p, ok := env.Get("METRICS_UPLOADER"); ok { |
| 1402 | metricsUploader := filepath.Join(topDir, p) |
| 1403 | if _, err := os.Stat(metricsUploader); err == nil { |
| 1404 | return metricsUploader |
| 1405 | } |
| 1406 | } |
| 1407 | |
| 1408 | return "" |
| 1409 | } |