blob: 84c17dee3f6e77b8480eeba6bc01ee37b52f5450 [file] [log] [blame]
Colin Cross3f40fa42015-01-30 17:27:36 -08001// Copyright 2015 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
Colin Cross635c3b02016-05-18 15:37:25 -070015package android
Colin Cross3f40fa42015-01-30 17:27:36 -080016
Jingwen Chenc711fec2020-11-22 23:52:50 -050017// This is the primary location to write and read all configuration values and
18// product variables necessary for soong_build's operation.
19
Colin Cross3f40fa42015-01-30 17:27:36 -080020import (
Cole Faust082c5f32022-08-04 15:49:20 -070021 "bytes"
Colin Cross3f40fa42015-01-30 17:27:36 -080022 "encoding/json"
Lukacs T. Berki720b3962021-03-17 13:34:30 +010023 "errors"
Colin Cross3f40fa42015-01-30 17:27:36 -080024 "fmt"
Colin Crossd8f20142016-11-03 09:43:26 -070025 "io/ioutil"
Colin Cross3f40fa42015-01-30 17:27:36 -080026 "os"
Colin Cross35cec122015-04-02 14:37:16 -070027 "path/filepath"
Sam Delmerico5c32bbf2022-01-20 20:15:02 +000028 "reflect"
Colin Cross3f40fa42015-01-30 17:27:36 -080029 "runtime"
Inseob Kim60c32f02020-12-21 22:53:05 +090030 "strconv"
Dan Willemsen34cc69e2015-09-23 15:26:20 -070031 "strings"
Colin Crossc1e86a32015-04-15 12:33:28 -070032 "sync"
Colin Cross6ff51382015-12-17 16:39:19 -080033
Colin Cross98be1bb2019-12-13 20:41:13 -080034 "github.com/google/blueprint"
Colin Crosse87040b2017-12-11 15:52:26 -080035 "github.com/google/blueprint/bootstrap"
Colin Cross98be1bb2019-12-13 20:41:13 -080036 "github.com/google/blueprint/pathtools"
Colin Cross6ff51382015-12-17 16:39:19 -080037 "github.com/google/blueprint/proptools"
Colin Cross9d34f352019-11-22 16:03:51 -080038
39 "android/soong/android/soongconfig"
Liz Kammer09f947d2021-05-12 14:51:49 -040040 "android/soong/bazel"
Colin Cross77cdcfd2021-03-12 11:28:25 -080041 "android/soong/remoteexec"
Liz Kammer72beb342022-02-03 08:42:10 -050042 "android/soong/starlark_fmt"
Colin Cross3f40fa42015-01-30 17:27:36 -080043)
44
Jingwen Chenc711fec2020-11-22 23:52:50 -050045// Bool re-exports proptools.Bool for the android package.
Colin Cross6ff51382015-12-17 16:39:19 -080046var Bool = proptools.Bool
Jingwen Chenc711fec2020-11-22 23:52:50 -050047
48// String re-exports proptools.String for the android package.
Jack He8cc71432016-12-08 15:45:07 -080049var String = proptools.String
Jingwen Chenc711fec2020-11-22 23:52:50 -050050
51// StringDefault re-exports proptools.StringDefault for the android package.
Jeongik Cha219141c2020-08-06 23:00:37 +090052var StringDefault = proptools.StringDefault
Jiyong Park6a927c42020-01-21 02:03:43 +090053
Jingwen Chenc711fec2020-11-22 23:52:50 -050054// FutureApiLevelInt is a placeholder constant for unreleased API levels.
Dan Albert0b176c82020-07-23 16:43:25 -070055const FutureApiLevelInt = 10000
56
Jingwen Chenc711fec2020-11-22 23:52:50 -050057// FutureApiLevel represents unreleased API levels.
Dan Albert0b176c82020-07-23 16:43:25 -070058var FutureApiLevel = ApiLevel{
59 value: "current",
60 number: FutureApiLevelInt,
61 isPreview: true,
62}
Colin Cross6ff51382015-12-17 16:39:19 -080063
Jingwen Chenc4d91bc2020-11-24 22:59:26 -050064// The product variables file name, containing product config from Kati.
Dan Willemsen87b17d12015-07-14 00:39:06 -070065const productVariablesFileName = "soong.variables"
Colin Cross3f40fa42015-01-30 17:27:36 -080066
Colin Cross9272ade2016-08-17 15:24:12 -070067// A Config object represents the entire build configuration for Android.
Colin Crossc3c0a492015-04-10 15:43:55 -070068type Config struct {
69 *config
70}
71
Lukacs T. Berkib078ade2021-08-31 10:42:08 +020072// SoongOutDir returns the build output directory for the configuration.
Lukacs T. Berki9f6c24a2021-08-26 15:07:24 +020073func (c Config) SoongOutDir() string {
74 return c.soongOutDir
Jeff Gastonefc1b412017-03-29 17:29:06 -070075}
76
Lukacs T. Berki9f6c24a2021-08-26 15:07:24 +020077func (c Config) OutDir() string {
Lukacs T. Berkid6cee7e2021-09-01 16:25:51 +020078 return c.outDir
Lukacs T. Berki89e9a162021-03-12 08:31:32 +010079}
80
Lukacs T. Berkiea1a31c2021-09-02 09:58:09 +020081func (c Config) RunGoTests() bool {
82 return c.runGoTests
83}
84
Lukacs T. Berki5f6cb1d2021-03-17 15:03:14 +010085func (c Config) DebugCompilation() bool {
86 return false // Never compile Go code in the main build for debugging
87}
88
Lukacs T. Berkiea1a31c2021-09-02 09:58:09 +020089func (c Config) Subninjas() []string {
90 return []string{}
91}
92
93func (c Config) PrimaryBuilderInvocations() []bootstrap.PrimaryBuilderInvocation {
94 return []bootstrap.PrimaryBuilderInvocation{}
95}
96
Jingwen Chenc711fec2020-11-22 23:52:50 -050097// A DeviceConfig object represents the configuration for a particular device
98// being built. For now there will only be one of these, but in the future there
99// may be multiple devices being built.
Colin Cross9272ade2016-08-17 15:24:12 -0700100type DeviceConfig struct {
101 *deviceConfig
102}
103
Jingwen Chenc711fec2020-11-22 23:52:50 -0500104// VendorConfig represents the configuration for vendor-specific behavior.
Colin Cross9d34f352019-11-22 16:03:51 -0800105type VendorConfig soongconfig.SoongConfig
Dan Willemsen0fe78662018-03-26 12:41:18 -0700106
Jingwen Chenc711fec2020-11-22 23:52:50 -0500107// Definition of general build configuration for soong_build. Some of these
Jingwen Chenc4d91bc2020-11-24 22:59:26 -0500108// product configuration values are read from Kati-generated soong.variables.
Colin Cross1332b002015-04-07 17:11:30 -0700109type config struct {
Jingwen Chenc711fec2020-11-22 23:52:50 -0500110 // Options configurable with soong.variables
Dan Willemsen45133ac2018-03-09 21:22:06 -0800111 productVariables productVariables
Colin Cross3f40fa42015-01-30 17:27:36 -0800112
Dan Willemsen674dc7f2018-03-12 18:06:05 -0700113 // Only available on configs created by TestConfig
114 TestProductVariables *productVariables
115
Jingwen Chenc711fec2020-11-22 23:52:50 -0500116 // A specialized context object for Bazel/Soong mixed builds and migration
117 // purposes.
Chris Parsonsf3c96ef2020-09-29 02:23:17 -0400118 BazelContext BazelContext
119
Dan Willemsen87b17d12015-07-14 00:39:06 -0700120 ProductVariablesFileName string
121
Colin Cross0c66bc62021-07-20 09:47:41 -0700122 // BuildOS stores the OsType for the OS that the build is running on.
123 BuildOS OsType
124
125 // BuildArch stores the ArchType for the CPU that the build is running on.
126 BuildArch ArchType
127
Jaewoong Jung642916f2020-10-09 17:25:15 -0700128 Targets map[OsType][]Target
129 BuildOSTarget Target // the Target for tools run on the build machine
130 BuildOSCommonTarget Target // the Target for common (java) tools run on the build machine
131 AndroidCommonTarget Target // the Target for common modules for the Android device
132 AndroidFirstDeviceTarget Target // the first Target for modules for the Android device
Dan Willemsen218f6562015-07-08 18:13:11 -0700133
Jingwen Chenc711fec2020-11-22 23:52:50 -0500134 // multilibConflicts for an ArchType is true if there is earlier configured
135 // device architecture with the same multilib value.
Colin Cross3b19f5d2019-09-17 14:45:31 -0700136 multilibConflicts map[ArchType]bool
137
Colin Cross9272ade2016-08-17 15:24:12 -0700138 deviceConfig *deviceConfig
139
Lukacs T. Berkid6cee7e2021-09-01 16:25:51 +0200140 outDir string // The output directory (usually out/)
141 soongOutDir string
Chris Parsons8f232a22020-06-23 17:37:05 -0400142 moduleListFile string // the path to the file which lists blueprint files to parse.
Colin Crossc1e86a32015-04-15 12:33:28 -0700143
Lukacs T. Berkie1df43f2021-09-08 15:31:14 +0200144 runGoTests bool
Lukacs T. Berkiea1a31c2021-09-02 09:58:09 +0200145
Colin Cross6ccbc912017-10-10 23:07:38 -0700146 env map[string]string
Dan Willemsene7680ba2015-09-11 17:06:19 -0700147 envLock sync.Mutex
148 envDeps map[string]string
149 envFrozen bool
Dan Willemsen5ba07e82015-12-11 13:51:06 -0800150
Jingwen Chencda22c92020-11-23 00:22:30 -0500151 // Changes behavior based on whether Kati runs after soong_build, or if soong_build
152 // runs standalone.
153 katiEnabled bool
Colin Cross1e7d3702016-08-24 15:25:47 -0700154
Colin Cross32616ed2017-09-05 21:56:44 -0700155 captureBuild bool // true for tests, saves build parameters for each module
156 ignoreEnvironment bool // true for tests, returns empty from all Getenv calls
Colin Crosscec81712017-07-13 14:43:27 -0700157
Colin Cross98be1bb2019-12-13 20:41:13 -0800158 fs pathtools.FileSystem
159 mockBpList string
160
Jingwen Chen01812022021-11-19 14:29:43 +0000161 runningAsBp2Build bool
Sam Delmerico24c56032022-03-28 19:53:03 +0000162 bp2buildPackageConfig bp2BuildConversionAllowlist
Jingwen Chen01812022021-11-19 14:29:43 +0000163 Bp2buildSoongConfigDefinitions soongconfig.Bp2BuildSoongConfigDefinitions
Jingwen Chen12b4c272021-03-10 02:05:59 -0500164
Colin Cross5e6a7972020-06-07 16:56:32 -0700165 // If testAllowNonExistentPaths is true then PathForSource and PathForModuleSrc won't error
166 // in tests when a path doesn't exist.
Pedro Loureiro5d190cc2021-02-15 15:41:33 +0000167 TestAllowNonExistentPaths bool
Colin Cross5e6a7972020-06-07 16:56:32 -0700168
Jingwen Chenc711fec2020-11-22 23:52:50 -0500169 // The list of files that when changed, must invalidate soong_build to
170 // regenerate build.ninja.
Colin Cross12129292020-10-29 18:23:58 -0700171 ninjaFileDepsSet sync.Map
172
Colin Cross9272ade2016-08-17 15:24:12 -0700173 OncePer
MarkDacekff851b82022-04-21 18:33:17 +0000174
175 mixedBuildsLock sync.Mutex
176 mixedBuildEnabledModules map[string]struct{}
177 mixedBuildDisabledModules map[string]struct{}
Colin Cross9272ade2016-08-17 15:24:12 -0700178}
179
180type deviceConfig struct {
Dan Willemsen00269f22017-07-06 16:59:48 -0700181 config *config
Colin Cross9272ade2016-08-17 15:24:12 -0700182 OncePer
Colin Cross3f40fa42015-01-30 17:27:36 -0800183}
184
Colin Cross485e5722015-08-27 13:28:01 -0700185type jsonConfigurable interface {
Colin Cross27385972015-09-18 10:57:10 -0700186 SetDefaultConfig()
Colin Cross485e5722015-08-27 13:28:01 -0700187}
Colin Cross3f40fa42015-01-30 17:27:36 -0800188
Colin Cross485e5722015-08-27 13:28:01 -0700189func loadConfig(config *config) error {
Colin Cross988414c2020-01-11 01:11:46 +0000190 return loadFromConfigFile(&config.productVariables, absolutePath(config.ProductVariablesFileName))
Colin Cross485e5722015-08-27 13:28:01 -0700191}
192
Jingwen Chenc711fec2020-11-22 23:52:50 -0500193// loadFromConfigFile loads and decodes configuration options from a JSON file
194// in the current working directory.
Liz Kammer09f947d2021-05-12 14:51:49 -0400195func loadFromConfigFile(configurable *productVariables, filename string) error {
Colin Cross3f40fa42015-01-30 17:27:36 -0800196 // Try to open the file
Colin Cross485e5722015-08-27 13:28:01 -0700197 configFileReader, err := os.Open(filename)
Colin Cross3f40fa42015-01-30 17:27:36 -0800198 defer configFileReader.Close()
199 if os.IsNotExist(err) {
200 // Need to create a file, so that blueprint & ninja don't get in
201 // a dependency tracking loop.
202 // Make a file-configurable-options with defaults, write it out using
203 // a json writer.
Colin Cross27385972015-09-18 10:57:10 -0700204 configurable.SetDefaultConfig()
205 err = saveToConfigFile(configurable, filename)
Colin Cross3f40fa42015-01-30 17:27:36 -0800206 if err != nil {
207 return err
208 }
Colin Cross15cd21a2018-02-27 11:26:02 -0800209 } else if err != nil {
210 return fmt.Errorf("config file: could not open %s: %s", filename, err.Error())
Colin Cross3f40fa42015-01-30 17:27:36 -0800211 } else {
212 // Make a decoder for it
213 jsonDecoder := json.NewDecoder(configFileReader)
Colin Cross485e5722015-08-27 13:28:01 -0700214 err = jsonDecoder.Decode(configurable)
Colin Cross3f40fa42015-01-30 17:27:36 -0800215 if err != nil {
Colin Cross15cd21a2018-02-27 11:26:02 -0800216 return fmt.Errorf("config file: %s did not parse correctly: %s", filename, err.Error())
Colin Cross3f40fa42015-01-30 17:27:36 -0800217 }
218 }
219
Liz Kammer09f947d2021-05-12 14:51:49 -0400220 if Bool(configurable.GcovCoverage) && Bool(configurable.ClangCoverage) {
221 return fmt.Errorf("GcovCoverage and ClangCoverage cannot both be set")
222 }
223
224 configurable.Native_coverage = proptools.BoolPtr(
225 Bool(configurable.GcovCoverage) ||
226 Bool(configurable.ClangCoverage))
227
Yuntao Xu402e9b02021-08-09 15:44:44 -0700228 // when Platform_sdk_final is true (or PLATFORM_VERSION_CODENAME is REL), use Platform_sdk_version;
229 // if false (pre-released version, for example), use Platform_sdk_codename.
230 if Bool(configurable.Platform_sdk_final) {
231 if configurable.Platform_sdk_version != nil {
232 configurable.Platform_sdk_version_or_codename =
233 proptools.StringPtr(strconv.Itoa(*(configurable.Platform_sdk_version)))
234 } else {
235 return fmt.Errorf("Platform_sdk_version cannot be pointed by a NULL pointer")
236 }
237 } else {
238 configurable.Platform_sdk_version_or_codename =
239 proptools.StringPtr(String(configurable.Platform_sdk_codename))
240 }
241
Liz Kammer09f947d2021-05-12 14:51:49 -0400242 return saveToBazelConfigFile(configurable, filepath.Dir(filename))
Colin Cross3f40fa42015-01-30 17:27:36 -0800243}
244
Colin Crossd8f20142016-11-03 09:43:26 -0700245// atomically writes the config file in case two copies of soong_build are running simultaneously
246// (for example, docs generation and ninja manifest generation)
Liz Kammer09f947d2021-05-12 14:51:49 -0400247func saveToConfigFile(config *productVariables, filename string) error {
Colin Cross3f40fa42015-01-30 17:27:36 -0800248 data, err := json.MarshalIndent(&config, "", " ")
249 if err != nil {
250 return fmt.Errorf("cannot marshal config data: %s", err.Error())
251 }
252
Colin Crossd8f20142016-11-03 09:43:26 -0700253 f, err := ioutil.TempFile(filepath.Dir(filename), "config")
Colin Cross3f40fa42015-01-30 17:27:36 -0800254 if err != nil {
Jingwen Chenc711fec2020-11-22 23:52:50 -0500255 return fmt.Errorf("cannot create empty config file %s: %s", filename, err.Error())
Colin Cross3f40fa42015-01-30 17:27:36 -0800256 }
Colin Crossd8f20142016-11-03 09:43:26 -0700257 defer os.Remove(f.Name())
258 defer f.Close()
Colin Cross3f40fa42015-01-30 17:27:36 -0800259
Colin Crossd8f20142016-11-03 09:43:26 -0700260 _, err = f.Write(data)
Colin Cross3f40fa42015-01-30 17:27:36 -0800261 if err != nil {
Colin Cross485e5722015-08-27 13:28:01 -0700262 return fmt.Errorf("default config file: %s could not be written: %s", filename, err.Error())
263 }
264
Colin Crossd8f20142016-11-03 09:43:26 -0700265 _, err = f.WriteString("\n")
Colin Cross485e5722015-08-27 13:28:01 -0700266 if err != nil {
267 return fmt.Errorf("default config file: %s could not be written: %s", filename, err.Error())
Colin Cross3f40fa42015-01-30 17:27:36 -0800268 }
269
Colin Crossd8f20142016-11-03 09:43:26 -0700270 f.Close()
271 os.Rename(f.Name(), filename)
272
Colin Cross3f40fa42015-01-30 17:27:36 -0800273 return nil
274}
275
Liz Kammer09f947d2021-05-12 14:51:49 -0400276func saveToBazelConfigFile(config *productVariables, outDir string) error {
277 dir := filepath.Join(outDir, bazel.SoongInjectionDirName, "product_config")
278 err := createDirIfNonexistent(dir, os.ModePerm)
279 if err != nil {
280 return fmt.Errorf("Could not create dir %s: %s", dir, err)
281 }
282
Sam Delmerico5c32bbf2022-01-20 20:15:02 +0000283 nonArchVariantProductVariables := []string{}
284 archVariantProductVariables := []string{}
285 p := variableProperties{}
286 t := reflect.TypeOf(p.Product_variables)
287 for i := 0; i < t.NumField(); i++ {
288 f := t.Field(i)
289 nonArchVariantProductVariables = append(nonArchVariantProductVariables, strings.ToLower(f.Name))
290 if proptools.HasTag(f, "android", "arch_variant") {
291 archVariantProductVariables = append(archVariantProductVariables, strings.ToLower(f.Name))
292 }
293 }
294
Liz Kammer72beb342022-02-03 08:42:10 -0500295 nonArchVariantProductVariablesJson := starlark_fmt.PrintStringList(nonArchVariantProductVariables, 0)
Sam Delmerico5c32bbf2022-01-20 20:15:02 +0000296 if err != nil {
297 return fmt.Errorf("cannot marshal product variable data: %s", err.Error())
298 }
299
Liz Kammer72beb342022-02-03 08:42:10 -0500300 archVariantProductVariablesJson := starlark_fmt.PrintStringList(archVariantProductVariables, 0)
Sam Delmerico5c32bbf2022-01-20 20:15:02 +0000301 if err != nil {
302 return fmt.Errorf("cannot marshal arch variant product variable data: %s", err.Error())
303 }
304
305 configJson, err := json.MarshalIndent(&config, "", " ")
Liz Kammer09f947d2021-05-12 14:51:49 -0400306 if err != nil {
307 return fmt.Errorf("cannot marshal config data: %s", err.Error())
308 }
Cole Faust082c5f32022-08-04 15:49:20 -0700309 // The backslashes need to be escaped because this text is going to be put
310 // inside a Starlark string literal.
311 configJson = bytes.ReplaceAll(configJson, []byte("\\"), []byte("\\\\"))
Liz Kammer09f947d2021-05-12 14:51:49 -0400312
313 bzl := []string{
314 bazel.GeneratedBazelFileWarning,
Sam Delmerico5c32bbf2022-01-20 20:15:02 +0000315 fmt.Sprintf(`_product_vars = json.decode("""%s""")`, configJson),
316 fmt.Sprintf(`_product_var_constraints = %s`, nonArchVariantProductVariablesJson),
317 fmt.Sprintf(`_arch_variant_product_var_constraints = %s`, archVariantProductVariablesJson),
318 "\n", `
319product_vars = _product_vars
320product_var_constraints = _product_var_constraints
321arch_variant_product_var_constraints = _arch_variant_product_var_constraints
322`,
Liz Kammer09f947d2021-05-12 14:51:49 -0400323 }
Cole Faust082c5f32022-08-04 15:49:20 -0700324 err = os.WriteFile(filepath.Join(dir, "product_variables.bzl"), []byte(strings.Join(bzl, "\n")), 0644)
Liz Kammer09f947d2021-05-12 14:51:49 -0400325 if err != nil {
326 return fmt.Errorf("Could not write .bzl config file %s", err)
327 }
Cole Faust082c5f32022-08-04 15:49:20 -0700328 err = os.WriteFile(filepath.Join(dir, "BUILD"), []byte(bazel.GeneratedBazelFileWarning), 0644)
Liz Kammer09f947d2021-05-12 14:51:49 -0400329 if err != nil {
330 return fmt.Errorf("Could not write BUILD config file %s", err)
331 }
332
333 return nil
334}
335
Colin Cross988414c2020-01-11 01:11:46 +0000336// NullConfig returns a mostly empty Config for use by standalone tools like dexpreopt_gen that
337// use the android package.
Lukacs T. Berkid6cee7e2021-09-01 16:25:51 +0200338func NullConfig(outDir, soongOutDir string) Config {
Colin Cross988414c2020-01-11 01:11:46 +0000339 return Config{
340 config: &config{
Lukacs T. Berkid6cee7e2021-09-01 16:25:51 +0200341 outDir: outDir,
Lukacs T. Berki9f6c24a2021-08-26 15:07:24 +0200342 soongOutDir: soongOutDir,
343 fs: pathtools.OsFs,
Colin Cross988414c2020-01-11 01:11:46 +0000344 },
345 }
346}
347
Jingwen Chenc711fec2020-11-22 23:52:50 -0500348// TestConfig returns a Config object for testing.
Colin Cross98be1bb2019-12-13 20:41:13 -0800349func TestConfig(buildDir string, env map[string]string, bp string, fs map[string][]byte) Config {
Colin Cross9c6241f2019-04-22 15:51:26 -0700350 envCopy := make(map[string]string)
351 for k, v := range env {
352 envCopy[k] = v
353 }
354
Jingwen Chen2838c812020-11-23 01:06:40 -0500355 // Copy the real PATH value to the test environment, it's needed by
356 // NonHermeticHostSystemTool() used in x86_darwin_host.go
Lukacs T. Berkideba7212021-03-04 10:50:10 +0100357 envCopy["PATH"] = os.Getenv("PATH")
Colin Cross9c6241f2019-04-22 15:51:26 -0700358
Dan Willemsen00269f22017-07-06 16:59:48 -0700359 config := &config{
Dan Willemsen45133ac2018-03-09 21:22:06 -0800360 productVariables: productVariables{
Anton Hansson97d0bae2022-02-16 16:15:10 +0000361 DeviceName: stringPtr("test_device"),
Trevor Radcliffe90727f42022-03-21 19:34:02 +0000362 DeviceProduct: stringPtr("test_product"),
Anton Hansson97d0bae2022-02-16 16:15:10 +0000363 Platform_sdk_version: intPtr(30),
364 Platform_sdk_codename: stringPtr("S"),
365 Platform_base_sdk_extension_version: intPtr(1),
366 Platform_version_active_codenames: []string{"S", "Tiramisu"},
367 DeviceSystemSdkVersions: []string{"14", "15"},
368 Platform_systemsdk_versions: []string{"29", "30"},
369 AAPTConfig: []string{"normal", "large", "xlarge", "hdpi", "xhdpi", "xxhdpi"},
370 AAPTPreferredConfig: stringPtr("xhdpi"),
371 AAPTCharacteristics: stringPtr("nosdcard"),
372 AAPTPrebuiltDPI: []string{"xhdpi", "xxhdpi"},
373 UncompressPrivAppDex: boolPtr(true),
374 ShippingApiLevel: stringPtr("30"),
Dan Willemsen00269f22017-07-06 16:59:48 -0700375 },
376
Colin Cross7b6a55f2021-11-09 12:34:39 -0800377 outDir: buildDir,
378 soongOutDir: filepath.Join(buildDir, "soong"),
Colin Cross6ccbc912017-10-10 23:07:38 -0700379 captureBuild: true,
Colin Cross9c6241f2019-04-22 15:51:26 -0700380 env: envCopy,
Colin Cross5e6a7972020-06-07 16:56:32 -0700381
382 // Set testAllowNonExistentPaths so that test contexts don't need to specify every path
383 // passed to PathForSource or PathForModuleSrc.
Pedro Loureiro5d190cc2021-02-15 15:41:33 +0000384 TestAllowNonExistentPaths: true,
Chris Parsonsf3c96ef2020-09-29 02:23:17 -0400385
MarkDacekff851b82022-04-21 18:33:17 +0000386 BazelContext: noopBazelContext{},
387 mixedBuildDisabledModules: make(map[string]struct{}),
388 mixedBuildEnabledModules: make(map[string]struct{}),
Dan Willemsen00269f22017-07-06 16:59:48 -0700389 }
390 config.deviceConfig = &deviceConfig{
391 config: config,
392 }
Dan Willemsen45133ac2018-03-09 21:22:06 -0800393 config.TestProductVariables = &config.productVariables
Dan Willemsen00269f22017-07-06 16:59:48 -0700394
Colin Cross98be1bb2019-12-13 20:41:13 -0800395 config.mockFileSystem(bp, fs)
396
Colin Cross790ef352021-10-25 19:15:55 -0700397 determineBuildOS(config)
398
Dan Willemsen00269f22017-07-06 16:59:48 -0700399 return Config{config}
Colin Crossce75d2c2016-10-06 16:12:58 -0700400}
401
Paul Duffin35816122021-02-24 01:49:52 +0000402func modifyTestConfigToSupportArchMutator(testConfig Config) {
Colin Crossae4c6182017-09-15 17:33:55 -0700403 config := testConfig.config
404
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700405 config.Targets = map[OsType][]Target{
406 Android: []Target{
Jiyong Park1613e552020-09-14 19:43:17 +0900407 {Android, Arch{ArchType: Arm64, ArchVariant: "armv8-a", Abi: []string{"arm64-v8a"}}, NativeBridgeDisabled, "", "", false},
408 {Android, Arch{ArchType: Arm, ArchVariant: "armv7-a-neon", Abi: []string{"armeabi-v7a"}}, NativeBridgeDisabled, "", "", false},
Colin Crossae4c6182017-09-15 17:33:55 -0700409 },
Colin Cross0c66bc62021-07-20 09:47:41 -0700410 config.BuildOS: []Target{
411 {config.BuildOS, Arch{ArchType: X86_64}, NativeBridgeDisabled, "", "", false},
412 {config.BuildOS, Arch{ArchType: X86}, NativeBridgeDisabled, "", "", false},
Colin Crossae4c6182017-09-15 17:33:55 -0700413 },
414 }
415
Colin Cross0d99f7c2019-05-14 16:01:24 -0700416 if runtime.GOOS == "darwin" {
Colin Cross0c66bc62021-07-20 09:47:41 -0700417 config.Targets[config.BuildOS] = config.Targets[config.BuildOS][:1]
Colin Cross0d99f7c2019-05-14 16:01:24 -0700418 }
419
Colin Cross0c66bc62021-07-20 09:47:41 -0700420 config.BuildOSTarget = config.Targets[config.BuildOS][0]
421 config.BuildOSCommonTarget = getCommonTargets(config.Targets[config.BuildOS])[0]
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700422 config.AndroidCommonTarget = getCommonTargets(config.Targets[Android])[0]
Sam Delmericocc271e22022-06-01 15:45:02 +0000423 config.AndroidFirstDeviceTarget = FirstTarget(config.Targets[Android], "lib64", "lib32")[0]
Inseob Kim1f086e22019-05-09 13:29:15 +0900424 config.TestProductVariables.DeviceArch = proptools.StringPtr("arm64")
425 config.TestProductVariables.DeviceArchVariant = proptools.StringPtr("armv8-a")
426 config.TestProductVariables.DeviceSecondaryArch = proptools.StringPtr("arm")
427 config.TestProductVariables.DeviceSecondaryArchVariant = proptools.StringPtr("armv7-a-neon")
Paul Duffin35816122021-02-24 01:49:52 +0000428}
Colin Cross2a076922018-10-04 23:28:25 -0700429
Colin Cross528d67e2021-07-23 22:23:07 +0000430func modifyTestConfigForMusl(config Config) {
431 delete(config.Targets, config.BuildOS)
432 config.productVariables.HostMusl = boolPtr(true)
433 determineBuildOS(config.config)
434 config.Targets[config.BuildOS] = []Target{
435 {config.BuildOS, Arch{ArchType: X86_64}, NativeBridgeDisabled, "", "", false},
436 {config.BuildOS, Arch{ArchType: X86}, NativeBridgeDisabled, "", "", false},
437 }
438
439 config.BuildOSTarget = config.Targets[config.BuildOS][0]
440 config.BuildOSCommonTarget = getCommonTargets(config.Targets[config.BuildOS])[0]
441}
442
Paul Duffin35816122021-02-24 01:49:52 +0000443// TestArchConfig returns a Config object suitable for using for tests that
444// need to run the arch mutator.
445func TestArchConfig(buildDir string, env map[string]string, bp string, fs map[string][]byte) Config {
446 testConfig := TestConfig(buildDir, env, bp, fs)
447 modifyTestConfigToSupportArchMutator(testConfig)
Colin Crossae4c6182017-09-15 17:33:55 -0700448 return testConfig
449}
450
Jingwen Chenc711fec2020-11-22 23:52:50 -0500451// ConfigForAdditionalRun is a config object which is "reset" for another
452// bootstrap run. Only per-run data is reset. Data which needs to persist across
453// multiple runs in the same program execution is carried over (such as Bazel
454// context or environment deps).
Lukacs T. Berki89fcdcb2021-09-07 09:10:33 +0200455func ConfigForAdditionalRun(c Config) (Config, error) {
456 newConfig, err := NewConfig(c.moduleListFile, c.runGoTests, c.outDir, c.soongOutDir, c.env)
Chris Parsonsf3c96ef2020-09-29 02:23:17 -0400457 if err != nil {
458 return Config{}, err
459 }
460 newConfig.BazelContext = c.BazelContext
461 newConfig.envDeps = c.envDeps
462 return newConfig, nil
463}
464
Jingwen Chenc711fec2020-11-22 23:52:50 -0500465// NewConfig creates a new Config object. The srcDir argument specifies the path
466// to the root source directory. It also loads the config file, if found.
Lukacs T. Berki89fcdcb2021-09-07 09:10:33 +0200467func NewConfig(moduleListFile string, runGoTests bool, outDir, soongOutDir string, availableEnv map[string]string) (Config, error) {
Jingwen Chenc711fec2020-11-22 23:52:50 -0500468 // Make a config with default options.
Colin Cross9272ade2016-08-17 15:24:12 -0700469 config := &config{
Lukacs T. Berki9f6c24a2021-08-26 15:07:24 +0200470 ProductVariablesFileName: filepath.Join(soongOutDir, productVariablesFileName),
Dan Willemsen87b17d12015-07-14 00:39:06 -0700471
Lukacs T. Berki53b2f362021-04-12 14:04:24 +0200472 env: availableEnv,
Colin Cross6ccbc912017-10-10 23:07:38 -0700473
Lukacs T. Berkie1df43f2021-09-08 15:31:14 +0200474 outDir: outDir,
475 soongOutDir: soongOutDir,
476 runGoTests: runGoTests,
477 multilibConflicts: make(map[ArchType]bool),
Colin Cross98be1bb2019-12-13 20:41:13 -0800478
MarkDacekff851b82022-04-21 18:33:17 +0000479 moduleListFile: moduleListFile,
480 fs: pathtools.NewOsFs(absSrcDir),
481 mixedBuildDisabledModules: make(map[string]struct{}),
482 mixedBuildEnabledModules: make(map[string]struct{}),
Colin Cross68f55102015-03-25 14:43:57 -0700483 }
Colin Cross3f40fa42015-01-30 17:27:36 -0800484
Dan Willemsen00269f22017-07-06 16:59:48 -0700485 config.deviceConfig = &deviceConfig{
Colin Cross9272ade2016-08-17 15:24:12 -0700486 config: config,
487 }
488
Liz Kammer7941b302020-07-28 13:27:34 -0700489 // Soundness check of the build and source directories. This won't catch strange
490 // configurations with symlinks, but at least checks the obvious case.
Lukacs T. Berki9f6c24a2021-08-26 15:07:24 +0200491 absBuildDir, err := filepath.Abs(soongOutDir)
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700492 if err != nil {
493 return Config{}, err
494 }
495
Lukacs T. Berkif7e36d82021-08-16 17:05:09 +0200496 absSrcDir, err := filepath.Abs(".")
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700497 if err != nil {
498 return Config{}, err
499 }
500
501 if strings.HasPrefix(absSrcDir, absBuildDir) {
502 return Config{}, fmt.Errorf("Build dir must not contain source directory")
503 }
504
Colin Cross3f40fa42015-01-30 17:27:36 -0800505 // Load any configurable options from the configuration file
Colin Cross9272ade2016-08-17 15:24:12 -0700506 err = loadConfig(config)
Colin Cross3f40fa42015-01-30 17:27:36 -0800507 if err != nil {
Colin Crossc3c0a492015-04-10 15:43:55 -0700508 return Config{}, err
Colin Cross3f40fa42015-01-30 17:27:36 -0800509 }
510
Lukacs T. Berki9f6c24a2021-08-26 15:07:24 +0200511 KatiEnabledMarkerFile := filepath.Join(soongOutDir, ".soong.kati_enabled")
Jingwen Chencda22c92020-11-23 00:22:30 -0500512 if _, err := os.Stat(absolutePath(KatiEnabledMarkerFile)); err == nil {
513 config.katiEnabled = true
Dan Willemsen5ba07e82015-12-11 13:51:06 -0800514 }
515
Colin Cross0c66bc62021-07-20 09:47:41 -0700516 determineBuildOS(config)
517
Jingwen Chenc711fec2020-11-22 23:52:50 -0500518 // Sets up the map of target OSes to the finer grained compilation targets
519 // that are configured from the product variables.
Colin Crossa1ad8d12016-06-01 17:09:44 -0700520 targets, err := decodeTargetProductVariables(config)
Dan Willemsen218f6562015-07-08 18:13:11 -0700521 if err != nil {
522 return Config{}, err
523 }
524
Paul Duffin1356d8c2020-02-25 19:26:33 +0000525 // Make the CommonOS OsType available for all products.
526 targets[CommonOS] = []Target{commonTargetMap[CommonOS.Name]}
527
Dan Albert4098deb2016-10-19 14:04:41 -0700528 var archConfig []archConfig
Jingwen Chenc4d91bc2020-11-24 22:59:26 -0500529 if config.NdkAbis() {
Dan Albert4098deb2016-10-19 14:04:41 -0700530 archConfig = getNdkAbisConfig()
Martin Stjernholmc1ecc432019-11-15 15:00:31 +0000531 } else if config.AmlAbis() {
532 archConfig = getAmlAbisConfig()
Dan Albert4098deb2016-10-19 14:04:41 -0700533 }
534
535 if archConfig != nil {
Liz Kammerb7f33662022-02-28 14:16:16 -0500536 androidTargets, err := decodeAndroidArchSettings(archConfig)
Dan Willemsen322acaf2016-01-12 23:07:05 -0800537 if err != nil {
538 return Config{}, err
539 }
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700540 targets[Android] = androidTargets
Dan Willemsen322acaf2016-01-12 23:07:05 -0800541 }
542
Colin Cross3b19f5d2019-09-17 14:45:31 -0700543 multilib := make(map[string]bool)
544 for _, target := range targets[Android] {
545 if seen := multilib[target.Arch.ArchType.Multilib]; seen {
546 config.multilibConflicts[target.Arch.ArchType] = true
547 }
548 multilib[target.Arch.ArchType.Multilib] = true
549 }
550
Jingwen Chenc711fec2020-11-22 23:52:50 -0500551 // Map of OS to compilation targets.
Colin Crossa1ad8d12016-06-01 17:09:44 -0700552 config.Targets = targets
Jingwen Chenc711fec2020-11-22 23:52:50 -0500553
554 // Compilation targets for host tools.
Colin Cross0c66bc62021-07-20 09:47:41 -0700555 config.BuildOSTarget = config.Targets[config.BuildOS][0]
556 config.BuildOSCommonTarget = getCommonTargets(config.Targets[config.BuildOS])[0]
Jingwen Chenc711fec2020-11-22 23:52:50 -0500557
558 // Compilation targets for Android.
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700559 if len(config.Targets[Android]) > 0 {
560 config.AndroidCommonTarget = getCommonTargets(config.Targets[Android])[0]
Sam Delmericocc271e22022-06-01 15:45:02 +0000561 config.AndroidFirstDeviceTarget = FirstTarget(config.Targets[Android], "lib64", "lib32")[0]
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700562 }
Dan Willemsen218f6562015-07-08 18:13:11 -0700563
Chris Parsonsf3c96ef2020-09-29 02:23:17 -0400564 config.BazelContext, err = NewBazelContext(config)
Wei Lid7736ec2022-05-12 23:37:53 -0700565 config.bp2buildPackageConfig = getBp2BuildAllowList()
Colin Cross3f40fa42015-01-30 17:27:36 -0800566
Jingwen Chenc711fec2020-11-22 23:52:50 -0500567 return Config{config}, err
568}
Colin Cross988414c2020-01-11 01:11:46 +0000569
Colin Cross98be1bb2019-12-13 20:41:13 -0800570// mockFileSystem replaces all reads with accesses to the provided map of
571// filenames to contents stored as a byte slice.
572func (c *config) mockFileSystem(bp string, fs map[string][]byte) {
573 mockFS := map[string][]byte{}
574
575 if _, exists := mockFS["Android.bp"]; !exists {
576 mockFS["Android.bp"] = []byte(bp)
577 }
578
579 for k, v := range fs {
580 mockFS[k] = v
581 }
582
583 // no module list file specified; find every file named Blueprints or Android.bp
584 pathsToParse := []string{}
585 for candidate := range mockFS {
586 base := filepath.Base(candidate)
Lukacs T. Berkib838b0a2021-09-02 11:46:24 +0200587 if base == "Android.bp" {
Colin Cross98be1bb2019-12-13 20:41:13 -0800588 pathsToParse = append(pathsToParse, candidate)
589 }
590 }
591 if len(pathsToParse) < 1 {
592 panic(fmt.Sprintf("No Blueprint or Android.bp files found in mock filesystem: %v\n", mockFS))
593 }
594 mockFS[blueprint.MockModuleListFile] = []byte(strings.Join(pathsToParse, "\n"))
595
596 c.fs = pathtools.MockFs(mockFS)
597 c.mockBpList = blueprint.MockModuleListFile
598}
599
Lukacs T. Berkid1e3f1f2021-03-16 08:55:23 +0100600func (c *config) SetAllowMissingDependencies() {
601 c.productVariables.Allow_missing_dependencies = proptools.BoolPtr(true)
602}
603
Jingwen Chenc711fec2020-11-22 23:52:50 -0500604// BlueprintToolLocation returns the directory containing build system tools
605// from Blueprint, like soong_zip and merge_zips.
Lukacs T. Berkia806e412021-09-01 08:57:48 +0200606func (c *config) HostToolDir() string {
Colin Crossacfcc1f2021-10-25 15:40:32 -0700607 if c.KatiEnabled() {
608 return filepath.Join(c.outDir, "host", c.PrebuiltOS(), "bin")
609 } else {
610 return filepath.Join(c.soongOutDir, "host", c.PrebuiltOS(), "bin")
611 }
Dan Willemsenc2aa4a92016-05-26 15:13:03 -0700612}
613
Dan Willemsen60e62f02018-11-16 21:05:32 -0800614func (c *config) HostToolPath(ctx PathContext, tool string) Path {
Colin Cross790ef352021-10-25 19:15:55 -0700615 path := pathForInstall(ctx, ctx.Config().BuildOS, ctx.Config().BuildArch, "bin", false, tool)
616 return path
Dan Willemsen60e62f02018-11-16 21:05:32 -0800617}
618
Colin Cross790ef352021-10-25 19:15:55 -0700619func (c *config) HostJNIToolPath(ctx PathContext, lib string) Path {
Martin Stjernholm7260d062019-12-09 21:47:14 +0000620 ext := ".so"
621 if runtime.GOOS == "darwin" {
622 ext = ".dylib"
623 }
Colin Cross790ef352021-10-25 19:15:55 -0700624 path := pathForInstall(ctx, ctx.Config().BuildOS, ctx.Config().BuildArch, "lib64", false, lib+ext)
625 return path
Martin Stjernholm7260d062019-12-09 21:47:14 +0000626}
627
Colin Crossae5330a2021-11-03 13:31:22 -0700628func (c *config) HostJavaToolPath(ctx PathContext, tool string) Path {
629 path := pathForInstall(ctx, ctx.Config().BuildOS, ctx.Config().BuildArch, "framework", false, tool)
Colin Cross3e3eda62021-11-04 10:22:51 -0700630 return path
631}
632
Jingwen Chenc711fec2020-11-22 23:52:50 -0500633// PrebuiltOS returns the name of the host OS used in prebuilts directories.
Colin Cross1332b002015-04-07 17:11:30 -0700634func (c *config) PrebuiltOS() string {
Colin Cross3f40fa42015-01-30 17:27:36 -0800635 switch runtime.GOOS {
636 case "linux":
637 return "linux-x86"
638 case "darwin":
639 return "darwin-x86"
640 default:
641 panic("Unknown GOOS")
642 }
643}
644
645// GoRoot returns the path to the root directory of the Go toolchain.
Colin Cross1332b002015-04-07 17:11:30 -0700646func (c *config) GoRoot() string {
Lukacs T. Berkif7e36d82021-08-16 17:05:09 +0200647 return fmt.Sprintf("prebuilts/go/%s", c.PrebuiltOS())
Colin Cross3f40fa42015-01-30 17:27:36 -0800648}
649
Jingwen Chenc711fec2020-11-22 23:52:50 -0500650// PrebuiltBuildTool returns the path to a tool in the prebuilts directory containing
651// checked-in tools, like Kati, Ninja or Toybox, for the current host OS.
Dan Willemsen4e0aa232019-04-10 22:59:54 -0700652func (c *config) PrebuiltBuildTool(ctx PathContext, tool string) Path {
653 return PathForSource(ctx, "prebuilts/build-tools", c.PrebuiltOS(), "bin", tool)
654}
655
Jingwen Chenc711fec2020-11-22 23:52:50 -0500656// CpPreserveSymlinksFlags returns the host-specific flag for the cp(1) command
657// to preserve symlinks.
Colin Cross1332b002015-04-07 17:11:30 -0700658func (c *config) CpPreserveSymlinksFlags() string {
Colin Cross485e5722015-08-27 13:28:01 -0700659 switch runtime.GOOS {
Colin Cross3f40fa42015-01-30 17:27:36 -0800660 case "darwin":
661 return "-R"
662 case "linux":
663 return "-d"
664 default:
665 return ""
666 }
667}
Colin Cross68f55102015-03-25 14:43:57 -0700668
Colin Cross1332b002015-04-07 17:11:30 -0700669func (c *config) Getenv(key string) string {
Colin Cross68f55102015-03-25 14:43:57 -0700670 var val string
671 var exists bool
Colin Crossc1e86a32015-04-15 12:33:28 -0700672 c.envLock.Lock()
Colin Crossc0d58b42017-02-06 15:40:41 -0800673 defer c.envLock.Unlock()
674 if c.envDeps == nil {
675 c.envDeps = make(map[string]string)
676 }
Colin Cross68f55102015-03-25 14:43:57 -0700677 if val, exists = c.envDeps[key]; !exists {
Dan Willemsene7680ba2015-09-11 17:06:19 -0700678 if c.envFrozen {
679 panic("Cannot access new environment variables after envdeps are frozen")
680 }
Colin Cross6ccbc912017-10-10 23:07:38 -0700681 val, _ = c.env[key]
Colin Cross68f55102015-03-25 14:43:57 -0700682 c.envDeps[key] = val
683 }
684 return val
685}
686
Colin Cross99d7c232016-11-23 16:52:04 -0800687func (c *config) GetenvWithDefault(key string, defaultValue string) string {
688 ret := c.Getenv(key)
689 if ret == "" {
690 return defaultValue
691 }
692 return ret
693}
694
695func (c *config) IsEnvTrue(key string) bool {
696 value := c.Getenv(key)
697 return value == "1" || value == "y" || value == "yes" || value == "on" || value == "true"
698}
699
700func (c *config) IsEnvFalse(key string) bool {
701 value := c.Getenv(key)
702 return value == "0" || value == "n" || value == "no" || value == "off" || value == "false"
703}
704
Sorin Bascace720c32022-05-24 12:13:50 +0100705func (c *config) TargetsJava17() bool {
706 return c.IsEnvTrue("EXPERIMENTAL_TARGET_JAVA_VERSION_17")
707}
708
Jingwen Chenc711fec2020-11-22 23:52:50 -0500709// EnvDeps returns the environment variables this build depends on. The first
710// call to this function blocks future reads from the environment.
Colin Cross1332b002015-04-07 17:11:30 -0700711func (c *config) EnvDeps() map[string]string {
Dan Willemsene7680ba2015-09-11 17:06:19 -0700712 c.envLock.Lock()
Colin Crossc0d58b42017-02-06 15:40:41 -0800713 defer c.envLock.Unlock()
Dan Willemsene7680ba2015-09-11 17:06:19 -0700714 c.envFrozen = true
Colin Cross68f55102015-03-25 14:43:57 -0700715 return c.envDeps
716}
Colin Cross35cec122015-04-02 14:37:16 -0700717
Jingwen Chencda22c92020-11-23 00:22:30 -0500718func (c *config) KatiEnabled() bool {
719 return c.katiEnabled
Dan Willemsen5ba07e82015-12-11 13:51:06 -0800720}
721
Nan Zhang581fd212018-01-10 16:06:12 -0800722func (c *config) BuildId() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800723 return String(c.productVariables.BuildId)
Nan Zhang581fd212018-01-10 16:06:12 -0800724}
725
Jingwen Chenc711fec2020-11-22 23:52:50 -0500726// BuildNumberFile returns the path to a text file containing metadata
727// representing the current build's number.
728//
729// Rules that want to reference the build number should read from this file
730// without depending on it. They will run whenever their other dependencies
731// require them to run and get the current build number. This ensures they don't
732// rebuild on every incremental build when the build number changes.
Colin Cross2a2e0db2020-02-21 16:55:46 -0800733func (c *config) BuildNumberFile(ctx PathContext) Path {
734 return PathForOutput(ctx, String(c.productVariables.BuildNumberFile))
Nan Zhang581fd212018-01-10 16:06:12 -0800735}
736
Jingwen Chenc711fec2020-11-22 23:52:50 -0500737// DeviceName returns the name of the current device target.
Colin Cross35cec122015-04-02 14:37:16 -0700738// TODO: take an AndroidModuleContext to select the device name for multi-device builds
Colin Cross1332b002015-04-07 17:11:30 -0700739func (c *config) DeviceName() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800740 return *c.productVariables.DeviceName
Colin Cross35cec122015-04-02 14:37:16 -0700741}
742
Trevor Radcliffe90727f42022-03-21 19:34:02 +0000743// DeviceProduct returns the current product target. There could be multiple of
744// these per device type.
745//
746// NOTE: Do not base conditional logic on this value. It may break product
747// inheritance.
748func (c *config) DeviceProduct() string {
749 return *c.productVariables.DeviceProduct
750}
751
Anton Hansson53c88442019-03-18 15:53:16 +0000752func (c *config) DeviceResourceOverlays() []string {
753 return c.productVariables.DeviceResourceOverlays
754}
755
756func (c *config) ProductResourceOverlays() []string {
757 return c.productVariables.ProductResourceOverlays
Colin Cross30e076a2015-04-13 13:58:27 -0700758}
759
Colin Crossbfd347d2018-05-09 11:11:35 -0700760func (c *config) PlatformVersionName() string {
761 return String(c.productVariables.Platform_version_name)
762}
763
Dan Albert4f378d72020-07-23 17:32:15 -0700764func (c *config) PlatformSdkVersion() ApiLevel {
765 return uncheckedFinalApiLevel(*c.productVariables.Platform_sdk_version)
Colin Cross30e076a2015-04-13 13:58:27 -0700766}
767
Mu-Le Lee5e047532022-07-27 02:32:03 +0000768func (c *config) PlatformSdkFinal() bool {
769 return Bool(c.productVariables.Platform_sdk_final)
770}
771
Colin Crossd09b0b62018-04-18 11:06:47 -0700772func (c *config) PlatformSdkCodename() string {
773 return String(c.productVariables.Platform_sdk_codename)
774}
775
Anton Hansson97d0bae2022-02-16 16:15:10 +0000776func (c *config) PlatformSdkExtensionVersion() int {
777 return *c.productVariables.Platform_sdk_extension_version
778}
779
780func (c *config) PlatformBaseSdkExtensionVersion() int {
781 return *c.productVariables.Platform_base_sdk_extension_version
782}
783
Colin Cross092c9da2019-04-02 22:56:43 -0700784func (c *config) PlatformSecurityPatch() string {
785 return String(c.productVariables.Platform_security_patch)
786}
787
788func (c *config) PlatformPreviewSdkVersion() string {
789 return String(c.productVariables.Platform_preview_sdk_version)
790}
791
792func (c *config) PlatformMinSupportedTargetSdkVersion() string {
793 return String(c.productVariables.Platform_min_supported_target_sdk_version)
794}
795
796func (c *config) PlatformBaseOS() string {
797 return String(c.productVariables.Platform_base_os)
798}
799
Inseob Kim4f1f3d92022-04-25 18:23:58 +0900800func (c *config) PlatformVersionLastStable() string {
801 return String(c.productVariables.Platform_version_last_stable)
802}
803
Jiyong Park37073842022-06-21 10:13:42 +0900804func (c *config) PlatformVersionKnownCodenames() string {
805 return String(c.productVariables.Platform_version_known_codenames)
806}
807
Dan Albert1a246272020-07-06 14:49:35 -0700808func (c *config) MinSupportedSdkVersion() ApiLevel {
Dan Albert862a7c52022-04-20 22:54:42 +0000809 return uncheckedFinalApiLevel(19)
Dan Albert1a246272020-07-06 14:49:35 -0700810}
811
812func (c *config) FinalApiLevels() []ApiLevel {
813 var levels []ApiLevel
Dan Albert4f378d72020-07-23 17:32:15 -0700814 for i := 1; i <= c.PlatformSdkVersion().FinalOrFutureInt(); i++ {
Dan Albert1a246272020-07-06 14:49:35 -0700815 levels = append(levels, uncheckedFinalApiLevel(i))
816 }
817 return levels
818}
819
820func (c *config) PreviewApiLevels() []ApiLevel {
821 var levels []ApiLevel
822 for i, codename := range c.PlatformVersionActiveCodenames() {
823 levels = append(levels, ApiLevel{
824 value: codename,
825 number: i,
826 isPreview: true,
827 })
828 }
829 return levels
830}
831
satayevcca4ab72021-11-30 12:33:55 +0000832func (c *config) LatestPreviewApiLevel() ApiLevel {
833 level := NoneApiLevel
834 for _, l := range c.PreviewApiLevels() {
835 if l.GreaterThan(level) {
836 level = l
837 }
838 }
839 return level
840}
841
Dan Albert1a246272020-07-06 14:49:35 -0700842func (c *config) AllSupportedApiLevels() []ApiLevel {
843 var levels []ApiLevel
844 levels = append(levels, c.FinalApiLevels()...)
845 return append(levels, c.PreviewApiLevels()...)
Dan Albertf5415d72017-08-17 16:19:59 -0700846}
847
Jingwen Chenc711fec2020-11-22 23:52:50 -0500848// DefaultAppTargetSdk returns the API level that platform apps are targeting.
849// This converts a codename to the exact ApiLevel it represents.
Dan Albert4f378d72020-07-23 17:32:15 -0700850func (c *config) DefaultAppTargetSdk(ctx EarlyModuleContext) ApiLevel {
Colin Crossd09b0b62018-04-18 11:06:47 -0700851 if Bool(c.productVariables.Platform_sdk_final) {
852 return c.PlatformSdkVersion()
Colin Crossd09b0b62018-04-18 11:06:47 -0700853 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500854 codename := c.PlatformSdkCodename()
855 if codename == "" {
856 return NoneApiLevel
857 }
858 if codename == "REL" {
859 panic("Platform_sdk_codename should not be REL when Platform_sdk_final is true")
860 }
861 return ApiLevelOrPanic(ctx, codename)
Colin Crossd09b0b62018-04-18 11:06:47 -0700862}
863
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800864func (c *config) AppsDefaultVersionName() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800865 return String(c.productVariables.AppsDefaultVersionName)
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800866}
867
Dan Albert31384de2017-07-28 12:39:46 -0700868// Codenames that are active in the current lunch target.
869func (c *config) PlatformVersionActiveCodenames() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800870 return c.productVariables.Platform_version_active_codenames
Dan Albert31384de2017-07-28 12:39:46 -0700871}
872
Colin Crossface4e42017-10-30 17:32:15 -0700873func (c *config) ProductAAPTConfig() []string {
Colin Crossa74ca042019-01-31 14:31:51 -0800874 return c.productVariables.AAPTConfig
Colin Cross30e076a2015-04-13 13:58:27 -0700875}
876
Colin Crossface4e42017-10-30 17:32:15 -0700877func (c *config) ProductAAPTPreferredConfig() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800878 return String(c.productVariables.AAPTPreferredConfig)
Colin Cross30e076a2015-04-13 13:58:27 -0700879}
880
Colin Crossface4e42017-10-30 17:32:15 -0700881func (c *config) ProductAAPTCharacteristics() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800882 return String(c.productVariables.AAPTCharacteristics)
Colin Crossface4e42017-10-30 17:32:15 -0700883}
884
885func (c *config) ProductAAPTPrebuiltDPI() []string {
Colin Crossa74ca042019-01-31 14:31:51 -0800886 return c.productVariables.AAPTPrebuiltDPI
Colin Cross30e076a2015-04-13 13:58:27 -0700887}
888
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700889func (c *config) DefaultAppCertificateDir(ctx PathContext) SourcePath {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800890 defaultCert := String(c.productVariables.DefaultAppCertificate)
Colin Cross61ae0b72017-12-01 17:16:02 -0800891 if defaultCert != "" {
892 return PathForSource(ctx, filepath.Dir(defaultCert))
Colin Cross61ae0b72017-12-01 17:16:02 -0800893 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500894 return PathForSource(ctx, "build/make/target/product/security")
Colin Cross30e076a2015-04-13 13:58:27 -0700895}
896
Colin Crosse1731a52017-12-14 11:22:55 -0800897func (c *config) DefaultAppCertificate(ctx PathContext) (pem, key SourcePath) {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800898 defaultCert := String(c.productVariables.DefaultAppCertificate)
Colin Cross61ae0b72017-12-01 17:16:02 -0800899 if defaultCert != "" {
Colin Crosse1731a52017-12-14 11:22:55 -0800900 return PathForSource(ctx, defaultCert+".x509.pem"), PathForSource(ctx, defaultCert+".pk8")
Colin Cross61ae0b72017-12-01 17:16:02 -0800901 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500902 defaultDir := c.DefaultAppCertificateDir(ctx)
903 return defaultDir.Join(ctx, "testkey.x509.pem"), defaultDir.Join(ctx, "testkey.pk8")
Colin Cross30e076a2015-04-13 13:58:27 -0700904}
Colin Cross6ff51382015-12-17 16:39:19 -0800905
Jiyong Park9335a262018-12-24 11:31:58 +0900906func (c *config) ApexKeyDir(ctx ModuleContext) SourcePath {
907 // TODO(b/121224311): define another variable such as TARGET_APEX_KEY_OVERRIDE
908 defaultCert := String(c.productVariables.DefaultAppCertificate)
Dan Willemsen412160e2019-04-09 21:36:26 -0700909 if defaultCert == "" || filepath.Dir(defaultCert) == "build/make/target/product/security" {
Jiyong Park9335a262018-12-24 11:31:58 +0900910 // When defaultCert is unset or is set to the testkeys path, use the APEX keys
911 // that is under the module dir
Colin Cross07e51612019-03-05 12:46:40 -0800912 return pathForModuleSrc(ctx)
Jiyong Park9335a262018-12-24 11:31:58 +0900913 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500914 // If not, APEX keys are under the specified directory
915 return PathForSource(ctx, filepath.Dir(defaultCert))
Jiyong Park9335a262018-12-24 11:31:58 +0900916}
917
Jingwen Chenc711fec2020-11-22 23:52:50 -0500918// AllowMissingDependencies configures Blueprint/Soong to not fail when modules
919// are configured to depend on non-existent modules. Note that this does not
920// affect missing input dependencies at the Ninja level.
Colin Cross6ff51382015-12-17 16:39:19 -0800921func (c *config) AllowMissingDependencies() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800922 return Bool(c.productVariables.Allow_missing_dependencies)
Colin Cross6ff51382015-12-17 16:39:19 -0800923}
Dan Willemsen322acaf2016-01-12 23:07:05 -0800924
Jeongik Cha816a23a2020-07-08 01:09:23 +0900925// Returns true if a full platform source tree cannot be assumed.
Colin Crossfc3674a2017-09-18 17:41:52 -0700926func (c *config) UnbundledBuild() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800927 return Bool(c.productVariables.Unbundled_build)
Colin Crossfc3674a2017-09-18 17:41:52 -0700928}
929
Martin Stjernholmfd9eb4b2020-06-17 01:13:15 +0100930// Returns true if building apps that aren't bundled with the platform.
931// UnbundledBuild() is always true when this is true.
932func (c *config) UnbundledBuildApps() bool {
Cole Faust701ca252021-11-23 19:02:08 -0800933 return len(c.productVariables.Unbundled_build_apps) > 0
Martin Stjernholmfd9eb4b2020-06-17 01:13:15 +0100934}
935
Jeongik Cha4b073cd2021-06-08 11:35:00 +0900936// Returns true if building image that aren't bundled with the platform.
937// UnbundledBuild() is always true when this is true.
938func (c *config) UnbundledBuildImage() bool {
939 return Bool(c.productVariables.Unbundled_build_image)
940}
941
Jeongik Cha816a23a2020-07-08 01:09:23 +0900942// Returns true if building modules against prebuilt SDKs.
943func (c *config) AlwaysUsePrebuiltSdks() bool {
944 return Bool(c.productVariables.Always_use_prebuilt_sdks)
Colin Cross1f367bf2018-12-18 22:46:24 -0800945}
946
Colin Cross126a25c2017-10-31 13:55:34 -0700947func (c *config) MinimizeJavaDebugInfo() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800948 return Bool(c.productVariables.MinimizeJavaDebugInfo) && !Bool(c.productVariables.Eng)
Colin Cross126a25c2017-10-31 13:55:34 -0700949}
950
Colin Crossed064c02018-09-05 16:28:13 -0700951func (c *config) Debuggable() bool {
952 return Bool(c.productVariables.Debuggable)
953}
954
Jaewoong Jung1d6eb682018-11-29 15:08:44 -0800955func (c *config) Eng() bool {
956 return Bool(c.productVariables.Eng)
957}
958
Colin Crossc53c37f2021-12-08 15:42:22 -0800959// DevicePrimaryArchType returns the ArchType for the first configured device architecture, or
960// Common if there are no device architectures.
Jiyong Park8d52f862018-07-07 18:02:07 +0900961func (c *config) DevicePrimaryArchType() ArchType {
Colin Crossc53c37f2021-12-08 15:42:22 -0800962 if androidTargets := c.Targets[Android]; len(androidTargets) > 0 {
963 return androidTargets[0].Arch.ArchType
964 }
965 return Common
Jiyong Park8d52f862018-07-07 18:02:07 +0900966}
967
Colin Cross16b23492016-01-06 14:41:07 -0800968func (c *config) SanitizeHost() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800969 return append([]string(nil), c.productVariables.SanitizeHost...)
Colin Cross16b23492016-01-06 14:41:07 -0800970}
971
972func (c *config) SanitizeDevice() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800973 return append([]string(nil), c.productVariables.SanitizeDevice...)
Colin Cross23ae82a2016-11-02 14:34:39 -0700974}
975
Ivan Lozano0c3a1ef2017-06-28 09:10:48 -0700976func (c *config) SanitizeDeviceDiag() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800977 return append([]string(nil), c.productVariables.SanitizeDeviceDiag...)
Ivan Lozano0c3a1ef2017-06-28 09:10:48 -0700978}
979
Colin Cross23ae82a2016-11-02 14:34:39 -0700980func (c *config) SanitizeDeviceArch() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800981 return append([]string(nil), c.productVariables.SanitizeDeviceArch...)
Colin Cross16b23492016-01-06 14:41:07 -0800982}
Colin Crossa1ad8d12016-06-01 17:09:44 -0700983
Vishwath Mohan1b017a72017-01-19 13:54:55 -0800984func (c *config) EnableCFI() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800985 if c.productVariables.EnableCFI == nil {
Vishwath Mohanc32c3eb2017-01-24 14:20:54 -0800986 return true
Vishwath Mohanc32c3eb2017-01-24 14:20:54 -0800987 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500988 return *c.productVariables.EnableCFI
Vishwath Mohan1b017a72017-01-19 13:54:55 -0800989}
990
Kostya Kortchinskyd5275c82019-02-01 08:42:56 -0800991func (c *config) DisableScudo() bool {
992 return Bool(c.productVariables.DisableScudo)
993}
994
Colin Crossa1ad8d12016-06-01 17:09:44 -0700995func (c *config) Android64() bool {
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700996 for _, t := range c.Targets[Android] {
Colin Crossa1ad8d12016-06-01 17:09:44 -0700997 if t.Arch.ArchType.Multilib == "lib64" {
998 return true
999 }
1000 }
1001
1002 return false
1003}
Colin Cross9272ade2016-08-17 15:24:12 -07001004
Colin Cross9d45bb72016-08-29 16:14:13 -07001005func (c *config) UseGoma() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001006 return Bool(c.productVariables.UseGoma)
Colin Cross9d45bb72016-08-29 16:14:13 -07001007}
1008
Ramy Medhatbbf25672019-07-17 12:30:04 +00001009func (c *config) UseRBE() bool {
1010 return Bool(c.productVariables.UseRBE)
1011}
1012
Ramy Medhat8ea054a2020-01-27 14:19:44 -05001013func (c *config) UseRBEJAVAC() bool {
1014 return Bool(c.productVariables.UseRBEJAVAC)
1015}
1016
1017func (c *config) UseRBER8() bool {
1018 return Bool(c.productVariables.UseRBER8)
1019}
1020
1021func (c *config) UseRBED8() bool {
1022 return Bool(c.productVariables.UseRBED8)
1023}
1024
Colin Cross8b8bec32019-11-15 13:18:43 -08001025func (c *config) UseRemoteBuild() bool {
1026 return c.UseGoma() || c.UseRBE()
1027}
1028
Colin Cross66548102018-06-19 22:47:35 -07001029func (c *config) RunErrorProne() bool {
1030 return c.IsEnvTrue("RUN_ERROR_PRONE")
1031}
1032
Jingwen Chenc711fec2020-11-22 23:52:50 -05001033// XrefCorpusName returns the Kythe cross-reference corpus name.
Sasha Smundak2a4549e2018-11-05 16:49:08 -08001034func (c *config) XrefCorpusName() string {
1035 return c.Getenv("XREF_CORPUS")
1036}
1037
Jingwen Chenc711fec2020-11-22 23:52:50 -05001038// XrefCuEncoding returns the compilation unit encoding to use for Kythe code
1039// xrefs. Can be 'json' (default), 'proto' or 'all'.
Sasha Smundak6c2d4f92020-01-09 17:34:23 -08001040func (c *config) XrefCuEncoding() string {
1041 if enc := c.Getenv("KYTHE_KZIP_ENCODING"); enc != "" {
1042 return enc
1043 }
1044 return "json"
1045}
1046
Sasha Smundakb0addaf2021-02-16 10:39:40 -08001047// XrefCuJavaSourceMax returns the maximum number of the Java source files
1048// in a single compilation unit
1049const xrefJavaSourceFileMaxDefault = "1000"
1050
1051func (c Config) XrefCuJavaSourceMax() string {
1052 v := c.Getenv("KYTHE_JAVA_SOURCE_BATCH_SIZE")
1053 if v == "" {
1054 return xrefJavaSourceFileMaxDefault
1055 }
1056 if _, err := strconv.ParseUint(v, 0, 0); err != nil {
1057 fmt.Fprintf(os.Stderr,
1058 "bad KYTHE_JAVA_SOURCE_BATCH_SIZE value: %s, will use %s",
1059 err, xrefJavaSourceFileMaxDefault)
1060 return xrefJavaSourceFileMaxDefault
1061 }
1062 return v
1063
1064}
1065
Sasha Smundak2a4549e2018-11-05 16:49:08 -08001066func (c *config) EmitXrefRules() bool {
1067 return c.XrefCorpusName() != ""
1068}
1069
Dan Willemsena03cf6d2016-09-26 15:45:04 -07001070func (c *config) ClangTidy() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001071 return Bool(c.productVariables.ClangTidy)
Dan Willemsena03cf6d2016-09-26 15:45:04 -07001072}
1073
1074func (c *config) TidyChecks() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001075 if c.productVariables.TidyChecks == nil {
Dan Willemsena03cf6d2016-09-26 15:45:04 -07001076 return ""
1077 }
Dan Willemsen45133ac2018-03-09 21:22:06 -08001078 return *c.productVariables.TidyChecks
Dan Willemsena03cf6d2016-09-26 15:45:04 -07001079}
1080
Colin Cross0f4e0d62016-07-27 10:56:55 -07001081func (c *config) LibartImgHostBaseAddress() string {
1082 return "0x60000000"
1083}
1084
1085func (c *config) LibartImgDeviceBaseAddress() string {
Elliott Hughesda3a0712020-03-06 16:55:28 -08001086 return "0x70000000"
Colin Cross0f4e0d62016-07-27 10:56:55 -07001087}
1088
Hiroshi Yamauchie2a10632016-12-19 13:44:41 -08001089func (c *config) ArtUseReadBarrier() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001090 return Bool(c.productVariables.ArtUseReadBarrier)
Hiroshi Yamauchie2a10632016-12-19 13:44:41 -08001091}
1092
Jingwen Chenc711fec2020-11-22 23:52:50 -05001093// Enforce Runtime Resource Overlays for a module. RROs supersede static RROs,
1094// but some modules still depend on it.
1095//
1096// More info: https://source.android.com/devices/architecture/rros
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001097func (c *config) EnforceRROForModule(name string) bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001098 enforceList := c.productVariables.EnforceRROTargets
Jeongik Chacee5ba92021-02-19 12:11:51 +09001099
Roland Levillainf6cc2612020-07-09 16:58:14 +01001100 if len(enforceList) > 0 {
Yo Chiang4ebd06a2019-10-01 13:13:41 +08001101 if InList("*", enforceList) {
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001102 return true
1103 }
Colin Crossa74ca042019-01-31 14:31:51 -08001104 return InList(name, enforceList)
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001105 }
1106 return false
1107}
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001108func (c *config) EnforceRROExcludedOverlay(path string) bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001109 excluded := c.productVariables.EnforceRROExcludedOverlays
Roland Levillainf6cc2612020-07-09 16:58:14 +01001110 if len(excluded) > 0 {
Jaewoong Jung3aff5782020-02-11 07:54:35 -08001111 return HasAnyPrefix(path, excluded)
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001112 }
1113 return false
1114}
1115
1116func (c *config) ExportedNamespaces() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001117 return append([]string(nil), c.productVariables.NamespacesToExport...)
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001118}
1119
1120func (c *config) HostStaticBinaries() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001121 return Bool(c.productVariables.HostStaticBinaries)
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001122}
1123
Colin Cross5a0dcd52018-10-05 14:20:06 -07001124func (c *config) UncompressPrivAppDex() bool {
1125 return Bool(c.productVariables.UncompressPrivAppDex)
1126}
1127
1128func (c *config) ModulesLoadedByPrivilegedModules() []string {
1129 return c.productVariables.ModulesLoadedByPrivilegedModules
1130}
1131
Jingwen Chenc711fec2020-11-22 23:52:50 -05001132// DexpreoptGlobalConfigPath returns the path to the dexpreopt.config file in
1133// the output directory, if it was created during the product configuration
1134// phase by Kati.
Jingwen Chenebb0b572020-11-02 00:24:57 -05001135func (c *config) DexpreoptGlobalConfigPath(ctx PathContext) OptionalPath {
Colin Cross988414c2020-01-11 01:11:46 +00001136 if c.productVariables.DexpreoptGlobalConfig == nil {
Jingwen Chenebb0b572020-11-02 00:24:57 -05001137 return OptionalPathForPath(nil)
1138 }
1139 return OptionalPathForPath(
1140 pathForBuildToolDep(ctx, *c.productVariables.DexpreoptGlobalConfig))
1141}
1142
Jingwen Chenc711fec2020-11-22 23:52:50 -05001143// DexpreoptGlobalConfig returns the raw byte contents of the dexpreopt global
1144// configuration. Since the configuration file was created by Kati during
1145// product configuration (externally of soong_build), it's not tracked, so we
1146// also manually add a Ninja file dependency on the configuration file to the
1147// rule that creates the main build.ninja file. This ensures that build.ninja is
1148// regenerated correctly if dexpreopt.config changes.
Jingwen Chenebb0b572020-11-02 00:24:57 -05001149func (c *config) DexpreoptGlobalConfig(ctx PathContext) ([]byte, error) {
1150 path := c.DexpreoptGlobalConfigPath(ctx)
1151 if !path.Valid() {
Colin Cross988414c2020-01-11 01:11:46 +00001152 return nil, nil
1153 }
Jingwen Chenebb0b572020-11-02 00:24:57 -05001154 ctx.AddNinjaFileDeps(path.String())
1155 return ioutil.ReadFile(absolutePath(path.String()))
Colin Cross43f08db2018-11-12 10:13:39 -08001156}
1157
Inseob Kim7b85eeb2021-03-23 20:52:24 +09001158func (c *deviceConfig) WithDexpreopt() bool {
1159 return c.config.productVariables.WithDexpreopt
1160}
1161
David Brazdil91b4e3e2019-01-23 21:04:05 +00001162func (c *config) FrameworksBaseDirExists(ctx PathContext) bool {
Colin Cross5a756a62021-03-16 16:34:46 -07001163 return ExistentPathForSource(ctx, "frameworks", "base", "Android.bp").Valid()
David Brazdil91b4e3e2019-01-23 21:04:05 +00001164}
1165
Inseob Kimae553032019-05-14 18:52:49 +09001166func (c *config) VndkSnapshotBuildArtifacts() bool {
1167 return Bool(c.productVariables.VndkSnapshotBuildArtifacts)
1168}
1169
Colin Cross3b19f5d2019-09-17 14:45:31 -07001170func (c *config) HasMultilibConflict(arch ArchType) bool {
1171 return c.multilibConflicts[arch]
1172}
1173
Bill Peckhambae47492021-01-08 09:34:44 -08001174func (c *config) PrebuiltHiddenApiDir(ctx PathContext) string {
1175 return String(c.productVariables.PrebuiltHiddenApiDir)
1176}
1177
Colin Cross9272ade2016-08-17 15:24:12 -07001178func (c *deviceConfig) Arches() []Arch {
1179 var arches []Arch
Dan Willemsen0ef639b2018-10-10 17:02:29 -07001180 for _, target := range c.config.Targets[Android] {
Colin Cross9272ade2016-08-17 15:24:12 -07001181 arches = append(arches, target.Arch)
1182 }
1183 return arches
1184}
Dan Willemsend2ede872016-11-18 14:54:24 -08001185
Jayant Chowdhary34ce67d2018-03-08 11:00:50 -08001186func (c *deviceConfig) BinderBitness() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001187 is32BitBinder := c.config.productVariables.Binder32bit
Jayant Chowdhary34ce67d2018-03-08 11:00:50 -08001188 if is32BitBinder != nil && *is32BitBinder {
1189 return "32"
1190 }
1191 return "64"
1192}
1193
Dan Willemsen4353bc42016-12-05 17:16:02 -08001194func (c *deviceConfig) VendorPath() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001195 if c.config.productVariables.VendorPath != nil {
1196 return *c.config.productVariables.VendorPath
Dan Willemsen4353bc42016-12-05 17:16:02 -08001197 }
1198 return "vendor"
1199}
1200
Justin Yun71549282017-11-17 12:10:28 +09001201func (c *deviceConfig) VndkVersion() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001202 return String(c.config.productVariables.DeviceVndkVersion)
Justin Yun71549282017-11-17 12:10:28 +09001203}
1204
Jose Galmes6f843bc2020-12-11 13:36:29 -08001205func (c *deviceConfig) RecoverySnapshotVersion() string {
1206 return String(c.config.productVariables.RecoverySnapshotVersion)
1207}
1208
Jeongik Cha219141c2020-08-06 23:00:37 +09001209func (c *deviceConfig) CurrentApiLevelForVendorModules() string {
1210 return StringDefault(c.config.productVariables.DeviceCurrentApiLevelForVendorModules, "current")
1211}
1212
Justin Yun8fe12122017-12-07 17:18:15 +09001213func (c *deviceConfig) PlatformVndkVersion() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001214 return String(c.config.productVariables.Platform_vndk_version)
Justin Yun8fe12122017-12-07 17:18:15 +09001215}
1216
Justin Yun5f7f7e82019-11-18 19:52:14 +09001217func (c *deviceConfig) ProductVndkVersion() string {
1218 return String(c.config.productVariables.ProductVndkVersion)
1219}
1220
Justin Yun71549282017-11-17 12:10:28 +09001221func (c *deviceConfig) ExtraVndkVersions() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001222 return c.config.productVariables.ExtraVndkVersions
Dan Willemsend2ede872016-11-18 14:54:24 -08001223}
Jack He8cc71432016-12-08 15:45:07 -08001224
Vic Yangefd249e2018-11-12 20:19:56 -08001225func (c *deviceConfig) VndkUseCoreVariant() bool {
1226 return Bool(c.config.productVariables.VndkUseCoreVariant)
1227}
1228
Jiyong Park1a5d7b12018-01-15 15:05:10 +09001229func (c *deviceConfig) SystemSdkVersions() []string {
Colin Crossa74ca042019-01-31 14:31:51 -08001230 return c.config.productVariables.DeviceSystemSdkVersions
Jiyong Park1a5d7b12018-01-15 15:05:10 +09001231}
1232
1233func (c *deviceConfig) PlatformSystemSdkVersions() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001234 return c.config.productVariables.Platform_systemsdk_versions
Jiyong Park1a5d7b12018-01-15 15:05:10 +09001235}
1236
Jiyong Park2db76922017-11-08 16:03:48 +09001237func (c *deviceConfig) OdmPath() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001238 if c.config.productVariables.OdmPath != nil {
1239 return *c.config.productVariables.OdmPath
Jiyong Park2db76922017-11-08 16:03:48 +09001240 }
1241 return "odm"
1242}
1243
Jaekyun Seok5cfbfbb2018-01-10 19:00:15 +09001244func (c *deviceConfig) ProductPath() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001245 if c.config.productVariables.ProductPath != nil {
1246 return *c.config.productVariables.ProductPath
Jiyong Park2db76922017-11-08 16:03:48 +09001247 }
Jaekyun Seok5cfbfbb2018-01-10 19:00:15 +09001248 return "product"
Jiyong Park2db76922017-11-08 16:03:48 +09001249}
1250
Justin Yund5f6c822019-06-25 16:47:17 +09001251func (c *deviceConfig) SystemExtPath() string {
1252 if c.config.productVariables.SystemExtPath != nil {
1253 return *c.config.productVariables.SystemExtPath
Dario Frenifd05a742018-05-29 13:28:54 +01001254 }
Justin Yund5f6c822019-06-25 16:47:17 +09001255 return "system_ext"
Dario Frenifd05a742018-05-29 13:28:54 +01001256}
1257
Jack He8cc71432016-12-08 15:45:07 -08001258func (c *deviceConfig) BtConfigIncludeDir() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001259 return String(c.config.productVariables.BtConfigIncludeDir)
Jack He8cc71432016-12-08 15:45:07 -08001260}
Dan Willemsen581341d2017-02-09 16:16:31 -08001261
Jiyong Parkd773eb32017-07-03 13:18:12 +09001262func (c *deviceConfig) DeviceKernelHeaderDirs() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001263 return c.config.productVariables.DeviceKernelHeaders
Jiyong Parkd773eb32017-07-03 13:18:12 +09001264}
1265
Roland Levillainada12702020-06-09 13:07:36 +01001266// JavaCoverageEnabledForPath returns whether Java code coverage is enabled for
1267// path. Coverage is enabled by default when the product variable
1268// JavaCoveragePaths is empty. If JavaCoveragePaths is not empty, coverage is
1269// enabled for any path which is part of this variable (and not part of the
1270// JavaCoverageExcludePaths product variable). Value "*" in JavaCoveragePaths
1271// represents any path.
1272func (c *deviceConfig) JavaCoverageEnabledForPath(path string) bool {
1273 coverage := false
Chris Gross2f748692020-06-24 20:36:59 +00001274 if len(c.config.productVariables.JavaCoveragePaths) == 0 ||
Roland Levillainada12702020-06-09 13:07:36 +01001275 InList("*", c.config.productVariables.JavaCoveragePaths) ||
1276 HasAnyPrefix(path, c.config.productVariables.JavaCoveragePaths) {
1277 coverage = true
1278 }
Roland Levillainf6cc2612020-07-09 16:58:14 +01001279 if coverage && len(c.config.productVariables.JavaCoverageExcludePaths) > 0 {
Roland Levillainada12702020-06-09 13:07:36 +01001280 if HasAnyPrefix(path, c.config.productVariables.JavaCoverageExcludePaths) {
1281 coverage = false
1282 }
1283 }
1284 return coverage
1285}
1286
Colin Cross1a6acd42020-06-16 17:51:46 -07001287// Returns true if gcov or clang coverage is enabled.
Dan Willemsen581341d2017-02-09 16:16:31 -08001288func (c *deviceConfig) NativeCoverageEnabled() bool {
Colin Cross1a6acd42020-06-16 17:51:46 -07001289 return Bool(c.config.productVariables.GcovCoverage) ||
1290 Bool(c.config.productVariables.ClangCoverage)
Dan Willemsen581341d2017-02-09 16:16:31 -08001291}
1292
Oliver Nguyen1382ab62019-12-06 15:22:41 -08001293func (c *deviceConfig) ClangCoverageEnabled() bool {
1294 return Bool(c.config.productVariables.ClangCoverage)
1295}
1296
Pirama Arumuga Nainarb37ae582022-01-26 22:14:32 -08001297func (c *deviceConfig) ClangCoverageContinuousMode() bool {
1298 return Bool(c.config.productVariables.ClangCoverageContinuousMode)
1299}
1300
Colin Cross1a6acd42020-06-16 17:51:46 -07001301func (c *deviceConfig) GcovCoverageEnabled() bool {
1302 return Bool(c.config.productVariables.GcovCoverage)
1303}
1304
Roland Levillain4f5297b2020-06-09 12:44:06 +01001305// NativeCoverageEnabledForPath returns whether (GCOV- or Clang-based) native
1306// code coverage is enabled for path. By default, coverage is not enabled for a
1307// given path unless it is part of the NativeCoveragePaths product variable (and
1308// not part of the NativeCoverageExcludePaths product variable). Value "*" in
1309// NativeCoveragePaths represents any path.
1310func (c *deviceConfig) NativeCoverageEnabledForPath(path string) bool {
Ryan Campbell469a18a2017-02-27 09:01:54 -08001311 coverage := false
Roland Levillainf6cc2612020-07-09 16:58:14 +01001312 if len(c.config.productVariables.NativeCoveragePaths) > 0 {
Roland Levillain4f5297b2020-06-09 12:44:06 +01001313 if InList("*", c.config.productVariables.NativeCoveragePaths) || HasAnyPrefix(path, c.config.productVariables.NativeCoveragePaths) {
Ivan Lozano5f595532017-07-13 14:46:05 -07001314 coverage = true
Dan Willemsen581341d2017-02-09 16:16:31 -08001315 }
1316 }
Roland Levillainf6cc2612020-07-09 16:58:14 +01001317 if coverage && len(c.config.productVariables.NativeCoverageExcludePaths) > 0 {
Roland Levillain4f5297b2020-06-09 12:44:06 +01001318 if HasAnyPrefix(path, c.config.productVariables.NativeCoverageExcludePaths) {
Ivan Lozano5f595532017-07-13 14:46:05 -07001319 coverage = false
Ryan Campbell469a18a2017-02-27 09:01:54 -08001320 }
1321 }
1322 return coverage
Dan Willemsen581341d2017-02-09 16:16:31 -08001323}
Ivan Lozano5f595532017-07-13 14:46:05 -07001324
Yi Kongeb8efc92021-12-09 18:06:29 +08001325func (c *deviceConfig) AfdoAdditionalProfileDirs() []string {
1326 return c.config.productVariables.AfdoAdditionalProfileDirs
1327}
1328
Pirama Arumuga Nainar49540802018-01-29 23:11:42 -08001329func (c *deviceConfig) PgoAdditionalProfileDirs() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001330 return c.config.productVariables.PgoAdditionalProfileDirs
Pirama Arumuga Nainar49540802018-01-29 23:11:42 -08001331}
1332
Tri Vo35a51432018-03-25 20:00:00 -07001333func (c *deviceConfig) VendorSepolicyDirs() []string {
1334 return c.config.productVariables.BoardVendorSepolicyDirs
1335}
1336
1337func (c *deviceConfig) OdmSepolicyDirs() []string {
1338 return c.config.productVariables.BoardOdmSepolicyDirs
1339}
1340
Felixa20a8752020-05-17 18:28:35 +02001341func (c *deviceConfig) SystemExtPublicSepolicyDirs() []string {
1342 return c.config.productVariables.SystemExtPublicSepolicyDirs
Tri Vo35a51432018-03-25 20:00:00 -07001343}
1344
Felixa20a8752020-05-17 18:28:35 +02001345func (c *deviceConfig) SystemExtPrivateSepolicyDirs() []string {
1346 return c.config.productVariables.SystemExtPrivateSepolicyDirs
Tri Vo35a51432018-03-25 20:00:00 -07001347}
1348
Inseob Kim0866b002019-04-15 20:21:29 +09001349func (c *deviceConfig) SepolicyM4Defs() []string {
1350 return c.config.productVariables.BoardSepolicyM4Defs
1351}
1352
Jiyong Park7f67f482019-01-05 12:57:48 +09001353func (c *deviceConfig) OverrideManifestPackageNameFor(name string) (manifestName string, overridden bool) {
Jaewoong Jung2ad817c2019-01-18 14:27:16 -08001354 return findOverrideValue(c.config.productVariables.ManifestPackageNameOverrides, name,
1355 "invalid override rule %q in PRODUCT_MANIFEST_PACKAGE_NAME_OVERRIDES should be <module_name>:<manifest_name>")
1356}
1357
1358func (c *deviceConfig) OverrideCertificateFor(name string) (certificatePath string, overridden bool) {
Jaewoong Jungacb6db32019-02-28 16:22:30 +00001359 return findOverrideValue(c.config.productVariables.CertificateOverrides, name,
Jaewoong Jung2ad817c2019-01-18 14:27:16 -08001360 "invalid override rule %q in PRODUCT_CERTIFICATE_OVERRIDES should be <module_name>:<certificate_module_name>")
1361}
1362
Jaewoong Jung9d22a912019-01-23 16:27:47 -08001363func (c *deviceConfig) OverridePackageNameFor(name string) string {
1364 newName, overridden := findOverrideValue(
1365 c.config.productVariables.PackageNameOverrides,
1366 name,
1367 "invalid override rule %q in PRODUCT_PACKAGE_NAME_OVERRIDES should be <module_name>:<package_name>")
1368 if overridden {
1369 return newName
1370 }
1371 return name
1372}
1373
Jaewoong Jung2ad817c2019-01-18 14:27:16 -08001374func findOverrideValue(overrides []string, name string, errorMsg string) (newValue string, overridden bool) {
Jiyong Park7f67f482019-01-05 12:57:48 +09001375 if overrides == nil || len(overrides) == 0 {
1376 return "", false
1377 }
1378 for _, o := range overrides {
1379 split := strings.Split(o, ":")
1380 if len(split) != 2 {
1381 // This shouldn't happen as this is first checked in make, but just in case.
Jaewoong Jung2ad817c2019-01-18 14:27:16 -08001382 panic(fmt.Errorf(errorMsg, o))
Jiyong Park7f67f482019-01-05 12:57:48 +09001383 }
1384 if matchPattern(split[0], name) {
1385 return substPattern(split[0], split[1], name), true
1386 }
1387 }
1388 return "", false
1389}
1390
Albert Martineefabcf2022-03-21 20:11:16 +00001391func (c *deviceConfig) ApexGlobalMinSdkVersionOverride() string {
1392 return String(c.config.productVariables.ApexGlobalMinSdkVersionOverride)
1393}
1394
Ivan Lozano5f595532017-07-13 14:46:05 -07001395func (c *config) IntegerOverflowDisabledForPath(path string) bool {
Roland Levillainf6cc2612020-07-09 16:58:14 +01001396 if len(c.productVariables.IntegerOverflowExcludePaths) == 0 {
Ivan Lozano5f595532017-07-13 14:46:05 -07001397 return false
1398 }
Jaewoong Jung3aff5782020-02-11 07:54:35 -08001399 return HasAnyPrefix(path, c.productVariables.IntegerOverflowExcludePaths)
Ivan Lozano5f595532017-07-13 14:46:05 -07001400}
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001401
1402func (c *config) CFIDisabledForPath(path string) bool {
Roland Levillainf6cc2612020-07-09 16:58:14 +01001403 if len(c.productVariables.CFIExcludePaths) == 0 {
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001404 return false
1405 }
Jaewoong Jung3aff5782020-02-11 07:54:35 -08001406 return HasAnyPrefix(path, c.productVariables.CFIExcludePaths)
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001407}
1408
1409func (c *config) CFIEnabledForPath(path string) bool {
Roland Levillainf6cc2612020-07-09 16:58:14 +01001410 if len(c.productVariables.CFIIncludePaths) == 0 {
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001411 return false
1412 }
Evgenii Stepanov779b64e2021-04-09 14:33:10 -07001413 return HasAnyPrefix(path, c.productVariables.CFIIncludePaths) && !c.CFIDisabledForPath(path)
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001414}
Colin Crosse15ddaf2017-12-04 11:24:31 -08001415
Evgenii Stepanov4beaa0c2021-01-05 16:41:26 -08001416func (c *config) MemtagHeapDisabledForPath(path string) bool {
1417 if len(c.productVariables.MemtagHeapExcludePaths) == 0 {
1418 return false
1419 }
1420 return HasAnyPrefix(path, c.productVariables.MemtagHeapExcludePaths)
1421}
1422
1423func (c *config) MemtagHeapAsyncEnabledForPath(path string) bool {
1424 if len(c.productVariables.MemtagHeapAsyncIncludePaths) == 0 {
1425 return false
1426 }
Evgenii Stepanov779b64e2021-04-09 14:33:10 -07001427 return HasAnyPrefix(path, c.productVariables.MemtagHeapAsyncIncludePaths) && !c.MemtagHeapDisabledForPath(path)
Evgenii Stepanov4beaa0c2021-01-05 16:41:26 -08001428}
1429
1430func (c *config) MemtagHeapSyncEnabledForPath(path string) bool {
1431 if len(c.productVariables.MemtagHeapSyncIncludePaths) == 0 {
1432 return false
1433 }
Evgenii Stepanov779b64e2021-04-09 14:33:10 -07001434 return HasAnyPrefix(path, c.productVariables.MemtagHeapSyncIncludePaths) && !c.MemtagHeapDisabledForPath(path)
Evgenii Stepanov4beaa0c2021-01-05 16:41:26 -08001435}
1436
Dan Willemsen0fe78662018-03-26 12:41:18 -07001437func (c *config) VendorConfig(name string) VendorConfig {
Colin Cross9d34f352019-11-22 16:03:51 -08001438 return soongconfig.Config(c.productVariables.VendorVars[name])
Dan Willemsen0fe78662018-03-26 12:41:18 -07001439}
1440
Colin Cross395f2cf2018-10-24 16:10:32 -07001441func (c *config) NdkAbis() bool {
1442 return Bool(c.productVariables.Ndk_abis)
1443}
1444
Martin Stjernholmc1ecc432019-11-15 15:00:31 +00001445func (c *config) AmlAbis() bool {
1446 return Bool(c.productVariables.Aml_abis)
1447}
1448
Jiyong Park8fd61922018-11-08 02:50:25 +09001449func (c *config) FlattenApex() bool {
Roland Levillaina3863212019-08-12 19:56:16 +01001450 return Bool(c.productVariables.Flatten_apex)
Jiyong Park8fd61922018-11-08 02:50:25 +09001451}
1452
Jiyong Park4da07972021-01-05 21:01:11 +09001453func (c *config) ForceApexSymlinkOptimization() bool {
1454 return Bool(c.productVariables.ForceApexSymlinkOptimization)
1455}
1456
Sasha Smundakfe9a5b82022-07-27 14:51:45 -07001457func (c *config) ApexCompressionEnabled() bool {
1458 return Bool(c.productVariables.CompressedApex) && !c.UnbundledBuildApps()
Mohammad Samiul Islam3cd005d2020-11-26 13:32:26 +00001459}
1460
Jeongik Chac9464142019-01-07 12:07:27 +09001461func (c *config) EnforceSystemCertificate() bool {
1462 return Bool(c.productVariables.EnforceSystemCertificate)
1463}
1464
Colin Cross440e0d02020-06-11 11:32:11 -07001465func (c *config) EnforceSystemCertificateAllowList() []string {
1466 return c.productVariables.EnforceSystemCertificateAllowList
Jeongik Chac9464142019-01-07 12:07:27 +09001467}
1468
Jeongik Cha2cc570d2019-10-29 15:44:45 +09001469func (c *config) EnforceProductPartitionInterface() bool {
1470 return Bool(c.productVariables.EnforceProductPartitionInterface)
1471}
1472
JaeMan Parkff715562020-10-19 17:25:58 +09001473func (c *config) EnforceInterPartitionJavaSdkLibrary() bool {
1474 return Bool(c.productVariables.EnforceInterPartitionJavaSdkLibrary)
1475}
1476
1477func (c *config) InterPartitionJavaLibraryAllowList() []string {
1478 return c.productVariables.InterPartitionJavaLibraryAllowList
1479}
1480
Jooyung Han3ab2c3e2019-12-05 16:27:44 +09001481func (c *config) InstallExtraFlattenedApexes() bool {
1482 return Bool(c.productVariables.InstallExtraFlattenedApexes)
1483}
1484
Colin Crossf24a22a2019-01-31 14:12:44 -08001485func (c *config) ProductHiddenAPIStubs() []string {
1486 return c.productVariables.ProductHiddenAPIStubs
Colin Cross8faf8fc2019-01-16 15:15:52 -08001487}
1488
Colin Crossf24a22a2019-01-31 14:12:44 -08001489func (c *config) ProductHiddenAPIStubsSystem() []string {
1490 return c.productVariables.ProductHiddenAPIStubsSystem
Colin Cross8faf8fc2019-01-16 15:15:52 -08001491}
1492
Colin Crossf24a22a2019-01-31 14:12:44 -08001493func (c *config) ProductHiddenAPIStubsTest() []string {
1494 return c.productVariables.ProductHiddenAPIStubsTest
Colin Cross8faf8fc2019-01-16 15:15:52 -08001495}
Dan Willemsen71c74602019-04-10 12:27:35 -07001496
Dan Willemsen54879d12019-04-18 10:08:46 -07001497func (c *deviceConfig) TargetFSConfigGen() []string {
Dan Willemsen71c74602019-04-10 12:27:35 -07001498 return c.config.productVariables.TargetFSConfigGen
1499}
Inseob Kim0866b002019-04-15 20:21:29 +09001500
1501func (c *config) ProductPublicSepolicyDirs() []string {
1502 return c.productVariables.ProductPublicSepolicyDirs
1503}
1504
1505func (c *config) ProductPrivateSepolicyDirs() []string {
1506 return c.productVariables.ProductPrivateSepolicyDirs
1507}
1508
Colin Cross50ddcc42019-05-16 12:28:22 -07001509func (c *config) MissingUsesLibraries() []string {
1510 return c.productVariables.MissingUsesLibraries
1511}
1512
Inseob Kim5eb7ee92022-04-27 10:30:34 +09001513func (c *config) TargetMultitreeUpdateMeta() bool {
1514 return c.productVariables.MultitreeUpdateMeta
1515}
1516
Inseob Kim1f086e22019-05-09 13:29:15 +09001517func (c *deviceConfig) DeviceArch() string {
1518 return String(c.config.productVariables.DeviceArch)
1519}
1520
1521func (c *deviceConfig) DeviceArchVariant() string {
1522 return String(c.config.productVariables.DeviceArchVariant)
1523}
1524
1525func (c *deviceConfig) DeviceSecondaryArch() string {
1526 return String(c.config.productVariables.DeviceSecondaryArch)
1527}
1528
1529func (c *deviceConfig) DeviceSecondaryArchVariant() string {
1530 return String(c.config.productVariables.DeviceSecondaryArchVariant)
1531}
Yifan Hong82db7352020-01-21 16:12:26 -08001532
1533func (c *deviceConfig) BoardUsesRecoveryAsBoot() bool {
1534 return Bool(c.config.productVariables.BoardUsesRecoveryAsBoot)
1535}
Yifan Hong97365ee2020-07-29 09:51:57 -07001536
1537func (c *deviceConfig) BoardKernelBinaries() []string {
1538 return c.config.productVariables.BoardKernelBinaries
1539}
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001540
Yifan Hong42bef8d2020-08-05 14:36:09 -07001541func (c *deviceConfig) BoardKernelModuleInterfaceVersions() []string {
1542 return c.config.productVariables.BoardKernelModuleInterfaceVersions
1543}
1544
Yifan Hongdd8dacc2020-10-21 15:40:17 -07001545func (c *deviceConfig) BoardMoveRecoveryResourcesToVendorBoot() bool {
1546 return Bool(c.config.productVariables.BoardMoveRecoveryResourcesToVendorBoot)
1547}
1548
Inseob Kim16ebd5a2020-12-09 23:08:17 +09001549func (c *deviceConfig) PlatformSepolicyVersion() string {
1550 return String(c.config.productVariables.PlatformSepolicyVersion)
1551}
1552
Inseob Kima10ef272021-09-15 03:04:53 +00001553func (c *deviceConfig) TotSepolicyVersion() string {
1554 return String(c.config.productVariables.TotSepolicyVersion)
1555}
1556
Inseob Kim843f6642022-01-07 09:11:23 +09001557func (c *deviceConfig) PlatformSepolicyCompatVersions() []string {
1558 return c.config.productVariables.PlatformSepolicyCompatVersions
1559}
1560
Inseob Kim16ebd5a2020-12-09 23:08:17 +09001561func (c *deviceConfig) BoardSepolicyVers() string {
Inseob Kim0c4eec82021-03-22 22:33:40 +09001562 if ver := String(c.config.productVariables.BoardSepolicyVers); ver != "" {
1563 return ver
1564 }
1565 return c.PlatformSepolicyVersion()
Inseob Kim16ebd5a2020-12-09 23:08:17 +09001566}
1567
Inseob Kim14178802021-12-08 22:53:31 +09001568func (c *deviceConfig) BoardPlatVendorPolicy() []string {
1569 return c.config.productVariables.BoardPlatVendorPolicy
1570}
1571
Inseob Kim16ebd5a2020-12-09 23:08:17 +09001572func (c *deviceConfig) BoardReqdMaskPolicy() []string {
1573 return c.config.productVariables.BoardReqdMaskPolicy
1574}
1575
Inseob Kim0f46e7c2021-12-15 22:48:14 +09001576func (c *deviceConfig) BoardSystemExtPublicPrebuiltDirs() []string {
1577 return c.config.productVariables.BoardSystemExtPublicPrebuiltDirs
1578}
1579
1580func (c *deviceConfig) BoardSystemExtPrivatePrebuiltDirs() []string {
1581 return c.config.productVariables.BoardSystemExtPrivatePrebuiltDirs
1582}
1583
1584func (c *deviceConfig) BoardProductPublicPrebuiltDirs() []string {
1585 return c.config.productVariables.BoardProductPublicPrebuiltDirs
1586}
1587
1588func (c *deviceConfig) BoardProductPrivatePrebuiltDirs() []string {
1589 return c.config.productVariables.BoardProductPrivatePrebuiltDirs
1590}
1591
Inseob Kim1a0afcc2022-02-14 23:10:51 +09001592func (c *deviceConfig) SystemExtSepolicyPrebuiltApiDir() string {
1593 return String(c.config.productVariables.SystemExtSepolicyPrebuiltApiDir)
1594}
1595
1596func (c *deviceConfig) ProductSepolicyPrebuiltApiDir() string {
1597 return String(c.config.productVariables.ProductSepolicyPrebuiltApiDir)
1598}
1599
1600func (c *deviceConfig) IsPartnerTrebleSepolicyTestEnabled() bool {
1601 return c.SystemExtSepolicyPrebuiltApiDir() != "" || c.ProductSepolicyPrebuiltApiDir() != ""
1602}
1603
Inseob Kim7cf14652021-01-06 23:06:52 +09001604func (c *deviceConfig) DirectedVendorSnapshot() bool {
1605 return c.config.productVariables.DirectedVendorSnapshot
1606}
1607
1608func (c *deviceConfig) VendorSnapshotModules() map[string]bool {
1609 return c.config.productVariables.VendorSnapshotModules
1610}
1611
Jose Galmes4c6895e2021-02-09 07:44:30 -08001612func (c *deviceConfig) DirectedRecoverySnapshot() bool {
1613 return c.config.productVariables.DirectedRecoverySnapshot
1614}
1615
1616func (c *deviceConfig) RecoverySnapshotModules() map[string]bool {
1617 return c.config.productVariables.RecoverySnapshotModules
1618}
1619
Justin DeMartino383bfb32021-02-24 10:49:43 -08001620func createDirsMap(previous map[string]bool, dirs []string) (map[string]bool, error) {
1621 var ret = make(map[string]bool)
1622 for _, dir := range dirs {
1623 clean := filepath.Clean(dir)
1624 if previous[clean] || ret[clean] {
1625 return nil, fmt.Errorf("Duplicate entry %s", dir)
1626 }
1627 ret[clean] = true
1628 }
1629 return ret, nil
1630}
1631
1632func (c *deviceConfig) createDirsMapOnce(onceKey OnceKey, previous map[string]bool, dirs []string) map[string]bool {
1633 dirMap := c.Once(onceKey, func() interface{} {
1634 ret, err := createDirsMap(previous, dirs)
1635 if err != nil {
1636 panic(fmt.Errorf("%s: %w", onceKey.key, err))
1637 }
1638 return ret
1639 })
1640 if dirMap == nil {
1641 return nil
1642 }
1643 return dirMap.(map[string]bool)
1644}
1645
1646var vendorSnapshotDirsExcludedKey = NewOnceKey("VendorSnapshotDirsExcludedMap")
1647
1648func (c *deviceConfig) VendorSnapshotDirsExcludedMap() map[string]bool {
1649 return c.createDirsMapOnce(vendorSnapshotDirsExcludedKey, nil,
1650 c.config.productVariables.VendorSnapshotDirsExcluded)
1651}
1652
1653var vendorSnapshotDirsIncludedKey = NewOnceKey("VendorSnapshotDirsIncludedMap")
1654
1655func (c *deviceConfig) VendorSnapshotDirsIncludedMap() map[string]bool {
1656 excludedMap := c.VendorSnapshotDirsExcludedMap()
1657 return c.createDirsMapOnce(vendorSnapshotDirsIncludedKey, excludedMap,
1658 c.config.productVariables.VendorSnapshotDirsIncluded)
1659}
1660
1661var recoverySnapshotDirsExcludedKey = NewOnceKey("RecoverySnapshotDirsExcludedMap")
1662
1663func (c *deviceConfig) RecoverySnapshotDirsExcludedMap() map[string]bool {
1664 return c.createDirsMapOnce(recoverySnapshotDirsExcludedKey, nil,
1665 c.config.productVariables.RecoverySnapshotDirsExcluded)
1666}
1667
1668var recoverySnapshotDirsIncludedKey = NewOnceKey("RecoverySnapshotDirsIncludedMap")
1669
1670func (c *deviceConfig) RecoverySnapshotDirsIncludedMap() map[string]bool {
1671 excludedMap := c.RecoverySnapshotDirsExcludedMap()
1672 return c.createDirsMapOnce(recoverySnapshotDirsIncludedKey, excludedMap,
1673 c.config.productVariables.RecoverySnapshotDirsIncluded)
1674}
1675
Rob Seymour925aa092021-08-10 20:42:03 +00001676func (c *deviceConfig) HostFakeSnapshotEnabled() bool {
1677 return c.config.productVariables.HostFakeSnapshotEnabled
1678}
1679
Inseob Kim60c32f02020-12-21 22:53:05 +09001680func (c *deviceConfig) ShippingApiLevel() ApiLevel {
1681 if c.config.productVariables.ShippingApiLevel == nil {
1682 return NoneApiLevel
1683 }
1684 apiLevel, _ := strconv.Atoi(*c.config.productVariables.ShippingApiLevel)
1685 return uncheckedFinalApiLevel(apiLevel)
1686}
1687
Inseob Kim67e5add192021-03-17 18:05:33 +09001688func (c *deviceConfig) BuildBrokenEnforceSyspropOwner() bool {
1689 return c.config.productVariables.BuildBrokenEnforceSyspropOwner
1690}
1691
1692func (c *deviceConfig) BuildBrokenTrebleSyspropNeverallow() bool {
1693 return c.config.productVariables.BuildBrokenTrebleSyspropNeverallow
1694}
1695
Hridya Valsaraju5a5c7d52021-04-02 16:45:24 -07001696func (c *deviceConfig) BuildDebugfsRestrictionsEnabled() bool {
1697 return c.config.productVariables.BuildDebugfsRestrictionsEnabled
1698}
1699
Inseob Kim0cac7b42021-02-03 18:16:46 +09001700func (c *deviceConfig) BuildBrokenVendorPropertyNamespace() bool {
1701 return c.config.productVariables.BuildBrokenVendorPropertyNamespace
1702}
1703
Liz Kammer619be462022-01-28 15:13:39 -05001704func (c *deviceConfig) BuildBrokenInputDir(name string) bool {
1705 return InList(name, c.config.productVariables.BuildBrokenInputDirModules)
1706}
1707
Vinh Tran140d5882022-06-10 14:23:27 -04001708func (c *deviceConfig) BuildBrokenDepfile() bool {
1709 return Bool(c.config.productVariables.BuildBrokenDepfile)
1710}
1711
Inseob Kim67e5add192021-03-17 18:05:33 +09001712func (c *deviceConfig) RequiresInsecureExecmemForSwiftshader() bool {
1713 return c.config.productVariables.RequiresInsecureExecmemForSwiftshader
1714}
1715
1716func (c *config) SelinuxIgnoreNeverallows() bool {
1717 return c.productVariables.SelinuxIgnoreNeverallows
1718}
1719
1720func (c *deviceConfig) SepolicySplit() bool {
1721 return c.config.productVariables.SepolicySplit
1722}
1723
Inseob Kima10ef272021-09-15 03:04:53 +00001724func (c *deviceConfig) SepolicyFreezeTestExtraDirs() []string {
1725 return c.config.productVariables.SepolicyFreezeTestExtraDirs
1726}
1727
1728func (c *deviceConfig) SepolicyFreezeTestExtraPrebuiltDirs() []string {
1729 return c.config.productVariables.SepolicyFreezeTestExtraPrebuiltDirs
1730}
1731
Jiyong Parkd163d4d2021-10-12 16:47:43 +09001732func (c *deviceConfig) GenerateAidlNdkPlatformBackend() bool {
1733 return c.config.productVariables.GenerateAidlNdkPlatformBackend
1734}
1735
Christopher Ferris98f10222022-07-13 23:16:52 -07001736func (c *config) IgnorePrefer32OnDevice() bool {
1737 return c.productVariables.IgnorePrefer32OnDevice
1738}
1739
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001740// The ConfiguredJarList struct provides methods for handling a list of (apex, jar) pairs.
1741// Such lists are used in the build system for things like bootclasspath jars or system server jars.
1742// The apex part is either an apex name, or a special names "platform" or "system_ext". Jar is a
1743// module name. The pairs come from Make product variables as a list of colon-separated strings.
1744//
1745// Examples:
1746// - "com.android.art:core-oj"
1747// - "platform:framework"
1748// - "system_ext:foo"
1749//
1750type ConfiguredJarList struct {
Jingwen Chenc711fec2020-11-22 23:52:50 -05001751 // A list of apex components, which can be an apex name,
1752 // or special names like "platform" or "system_ext".
1753 apexes []string
1754
1755 // A list of jar module name components.
1756 jars []string
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001757}
1758
Jingwen Chenc711fec2020-11-22 23:52:50 -05001759// Len returns the length of the list of jars.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001760func (l *ConfiguredJarList) Len() int {
1761 return len(l.jars)
1762}
1763
Jingwen Chenc711fec2020-11-22 23:52:50 -05001764// Jar returns the idx-th jar component of (apex, jar) pairs.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001765func (l *ConfiguredJarList) Jar(idx int) string {
1766 return l.jars[idx]
1767}
1768
Jingwen Chenc711fec2020-11-22 23:52:50 -05001769// Apex returns the idx-th apex component of (apex, jar) pairs.
Paul Duffin9a89a2a2020-10-28 19:20:06 +00001770func (l *ConfiguredJarList) Apex(idx int) string {
1771 return l.apexes[idx]
1772}
1773
Jingwen Chenc711fec2020-11-22 23:52:50 -05001774// ContainsJar returns true if the (apex, jar) pairs contains a pair with the
1775// given jar module name.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001776func (l *ConfiguredJarList) ContainsJar(jar string) bool {
1777 return InList(jar, l.jars)
1778}
1779
1780// If the list contains the given (apex, jar) pair.
1781func (l *ConfiguredJarList) containsApexJarPair(apex, jar string) bool {
1782 for i := 0; i < l.Len(); i++ {
Paul Duffin1e8c6072020-10-23 18:28:55 +01001783 if apex == l.apexes[i] && jar == l.jars[i] {
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001784 return true
1785 }
1786 }
1787 return false
1788}
1789
satayev3db35472021-05-06 23:59:58 +01001790// ApexOfJar returns the apex component of the first pair with the given jar name on the list, or
1791// an empty string if not found.
1792func (l *ConfiguredJarList) ApexOfJar(jar string) string {
1793 if idx := IndexList(jar, l.jars); idx != -1 {
1794 return l.Apex(IndexList(jar, l.jars))
1795 }
1796 return ""
1797}
1798
Jingwen Chenc711fec2020-11-22 23:52:50 -05001799// IndexOfJar returns the first pair with the given jar name on the list, or -1
1800// if not found.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001801func (l *ConfiguredJarList) IndexOfJar(jar string) int {
1802 return IndexList(jar, l.jars)
1803}
1804
Paul Duffin7d584e92020-10-23 18:26:03 +01001805func copyAndAppend(list []string, item string) []string {
1806 // Create the result list to be 1 longer than the input.
1807 result := make([]string, len(list)+1)
1808
1809 // Copy the whole input list into the result.
1810 count := copy(result, list)
1811
1812 // Insert the extra item at the end.
1813 result[count] = item
1814
1815 return result
1816}
1817
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001818// Append an (apex, jar) pair to the list.
Paul Duffin7d584e92020-10-23 18:26:03 +01001819func (l *ConfiguredJarList) Append(apex string, jar string) ConfiguredJarList {
1820 // Create a copy of the backing arrays before appending to avoid sharing backing
1821 // arrays that are mutated across instances.
1822 apexes := copyAndAppend(l.apexes, apex)
1823 jars := copyAndAppend(l.jars, jar)
1824
1825 return ConfiguredJarList{apexes, jars}
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001826}
1827
Jiakai Zhang519c5c82021-09-16 06:15:39 +00001828// Append a list of (apex, jar) pairs to the list.
Jiakai Zhang389a6472021-12-14 18:54:06 +00001829func (l *ConfiguredJarList) AppendList(other *ConfiguredJarList) ConfiguredJarList {
Jiakai Zhang519c5c82021-09-16 06:15:39 +00001830 apexes := make([]string, 0, l.Len()+other.Len())
1831 jars := make([]string, 0, l.Len()+other.Len())
1832
1833 apexes = append(apexes, l.apexes...)
1834 jars = append(jars, l.jars...)
1835
1836 apexes = append(apexes, other.apexes...)
1837 jars = append(jars, other.jars...)
1838
1839 return ConfiguredJarList{apexes, jars}
1840}
1841
Jingwen Chenc711fec2020-11-22 23:52:50 -05001842// RemoveList filters out a list of (apex, jar) pairs from the receiving list of pairs.
Paul Duffin7d584e92020-10-23 18:26:03 +01001843func (l *ConfiguredJarList) RemoveList(list ConfiguredJarList) ConfiguredJarList {
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001844 apexes := make([]string, 0, l.Len())
1845 jars := make([]string, 0, l.Len())
1846
1847 for i, jar := range l.jars {
Paul Duffin1e8c6072020-10-23 18:28:55 +01001848 apex := l.apexes[i]
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001849 if !list.containsApexJarPair(apex, jar) {
1850 apexes = append(apexes, apex)
1851 jars = append(jars, jar)
1852 }
1853 }
1854
Paul Duffin7d584e92020-10-23 18:26:03 +01001855 return ConfiguredJarList{apexes, jars}
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001856}
1857
satayevd34eb0c2021-08-06 13:20:28 +01001858// Filter keeps the entries if a jar appears in the given list of jars to keep. Returns a new list
1859// and any remaining jars that are not on this list.
1860func (l *ConfiguredJarList) Filter(jarsToKeep []string) (ConfiguredJarList, []string) {
satayev8fab6f82021-05-07 00:10:33 +01001861 var apexes []string
1862 var jars []string
1863
1864 for i, jar := range l.jars {
1865 if InList(jar, jarsToKeep) {
1866 apexes = append(apexes, l.apexes[i])
1867 jars = append(jars, jar)
1868 }
1869 }
1870
satayevd34eb0c2021-08-06 13:20:28 +01001871 return ConfiguredJarList{apexes, jars}, RemoveListFromList(jarsToKeep, jars)
satayev8fab6f82021-05-07 00:10:33 +01001872}
1873
Jingwen Chenc711fec2020-11-22 23:52:50 -05001874// CopyOfJars returns a copy of the list of strings containing jar module name
1875// components.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001876func (l *ConfiguredJarList) CopyOfJars() []string {
1877 return CopyOf(l.jars)
1878}
1879
Jingwen Chenc711fec2020-11-22 23:52:50 -05001880// CopyOfApexJarPairs returns a copy of the list of strings with colon-separated
1881// (apex, jar) pairs.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001882func (l *ConfiguredJarList) CopyOfApexJarPairs() []string {
1883 pairs := make([]string, 0, l.Len())
1884
1885 for i, jar := range l.jars {
Paul Duffin1e8c6072020-10-23 18:28:55 +01001886 apex := l.apexes[i]
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001887 pairs = append(pairs, apex+":"+jar)
1888 }
1889
1890 return pairs
1891}
1892
Jingwen Chenc711fec2020-11-22 23:52:50 -05001893// BuildPaths returns a list of build paths based on the given directory prefix.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001894func (l *ConfiguredJarList) BuildPaths(ctx PathContext, dir OutputPath) WritablePaths {
1895 paths := make(WritablePaths, l.Len())
1896 for i, jar := range l.jars {
1897 paths[i] = dir.Join(ctx, ModuleStem(jar)+".jar")
1898 }
1899 return paths
1900}
1901
Paul Duffin5f148ca2021-06-02 17:24:22 +01001902// BuildPathsByModule returns a map from module name to build paths based on the given directory
1903// prefix.
1904func (l *ConfiguredJarList) BuildPathsByModule(ctx PathContext, dir OutputPath) map[string]WritablePath {
1905 paths := map[string]WritablePath{}
1906 for _, jar := range l.jars {
1907 paths[jar] = dir.Join(ctx, ModuleStem(jar)+".jar")
1908 }
1909 return paths
1910}
1911
Jingwen Chenc711fec2020-11-22 23:52:50 -05001912// UnmarshalJSON converts JSON configuration from raw bytes into a
1913// ConfiguredJarList structure.
Paul Duffin69d1fb12020-10-23 21:14:20 +01001914func (l *ConfiguredJarList) UnmarshalJSON(b []byte) error {
1915 // Try and unmarshal into a []string each item of which contains a pair
1916 // <apex>:<jar>.
1917 var list []string
1918 err := json.Unmarshal(b, &list)
1919 if err != nil {
1920 // Did not work so return
1921 return err
1922 }
1923
1924 apexes, jars, err := splitListOfPairsIntoPairOfLists(list)
1925 if err != nil {
1926 return err
1927 }
1928 l.apexes = apexes
1929 l.jars = jars
1930 return nil
1931}
1932
Lukacs T. Berki720b3962021-03-17 13:34:30 +01001933func (l *ConfiguredJarList) MarshalJSON() ([]byte, error) {
1934 if len(l.apexes) != len(l.jars) {
1935 return nil, errors.New(fmt.Sprintf("Inconsistent ConfiguredJarList: apexes: %q, jars: %q", l.apexes, l.jars))
1936 }
1937
1938 list := make([]string, 0, len(l.apexes))
1939
1940 for i := 0; i < len(l.apexes); i++ {
1941 list = append(list, l.apexes[i]+":"+l.jars[i])
1942 }
1943
1944 return json.Marshal(list)
1945}
1946
Jingwen Chenc711fec2020-11-22 23:52:50 -05001947// ModuleStem hardcodes the stem of framework-minus-apex to return "framework".
1948//
1949// TODO(b/139391334): hard coded until we find a good way to query the stem of a
1950// module before any other mutators are run.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001951func ModuleStem(module string) string {
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001952 if module == "framework-minus-apex" {
1953 return "framework"
1954 }
1955 return module
1956}
1957
Jingwen Chenc711fec2020-11-22 23:52:50 -05001958// DevicePaths computes the on-device paths for the list of (apex, jar) pairs,
1959// based on the operating system.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001960func (l *ConfiguredJarList) DevicePaths(cfg Config, ostype OsType) []string {
1961 paths := make([]string, l.Len())
1962 for i, jar := range l.jars {
1963 apex := l.apexes[i]
1964 name := ModuleStem(jar) + ".jar"
1965
1966 var subdir string
1967 if apex == "platform" {
1968 subdir = "system/framework"
1969 } else if apex == "system_ext" {
1970 subdir = "system_ext/framework"
1971 } else {
1972 subdir = filepath.Join("apex", apex, "javalib")
1973 }
1974
1975 if ostype.Class == Host {
1976 paths[i] = filepath.Join(cfg.Getenv("OUT_DIR"), "host", cfg.PrebuiltOS(), subdir, name)
1977 } else {
1978 paths[i] = filepath.Join("/", subdir, name)
1979 }
1980 }
1981 return paths
1982}
1983
Paul Duffin7d584e92020-10-23 18:26:03 +01001984func (l *ConfiguredJarList) String() string {
1985 var pairs []string
1986 for i := 0; i < l.Len(); i++ {
1987 pairs = append(pairs, l.apexes[i]+":"+l.jars[i])
1988 }
1989 return strings.Join(pairs, ",")
1990}
1991
Paul Duffin01416602020-10-23 21:04:03 +01001992func splitListOfPairsIntoPairOfLists(list []string) ([]string, []string, error) {
1993 // Now we need to populate this list by splitting each item in the slice of
1994 // pairs and appending them to the appropriate list of apexes or jars.
1995 apexes := make([]string, len(list))
1996 jars := make([]string, len(list))
1997
1998 for i, apexjar := range list {
1999 apex, jar, err := splitConfiguredJarPair(apexjar)
2000 if err != nil {
2001 return nil, nil, err
2002 }
2003 apexes[i] = apex
2004 jars[i] = jar
2005 }
2006
2007 return apexes, jars, nil
2008}
2009
Ulya Trafimovich249386a2020-07-01 14:31:13 +01002010// Expected format for apexJarValue = <apex name>:<jar name>
Paul Duffin01416602020-10-23 21:04:03 +01002011func splitConfiguredJarPair(str string) (string, string, error) {
Ulya Trafimovich249386a2020-07-01 14:31:13 +01002012 pair := strings.SplitN(str, ":", 2)
2013 if len(pair) == 2 {
Paul Duffin9c3ac962021-02-03 14:11:27 +00002014 apex := pair[0]
2015 jar := pair[1]
2016 if apex == "" {
2017 return apex, jar, fmt.Errorf("invalid apex '%s' in <apex>:<jar> pair '%s', expected format: <apex>:<jar>", apex, str)
2018 }
2019 return apex, jar, nil
Ulya Trafimovich249386a2020-07-01 14:31:13 +01002020 } else {
Paul Duffin01416602020-10-23 21:04:03 +01002021 return "error-apex", "error-jar", fmt.Errorf("malformed (apex, jar) pair: '%s', expected format: <apex>:<jar>", str)
Ulya Trafimovich249386a2020-07-01 14:31:13 +01002022 }
2023}
2024
Paul Duffin9c3ac962021-02-03 14:11:27 +00002025// CreateTestConfiguredJarList is a function to create ConfiguredJarList for tests.
Paul Duffine10dfa42020-10-23 21:23:44 +01002026func CreateTestConfiguredJarList(list []string) ConfiguredJarList {
Paul Duffin9c3ac962021-02-03 14:11:27 +00002027 // Create the ConfiguredJarList in as similar way as it is created at runtime by marshalling to
2028 // a json list of strings and then unmarshalling into a ConfiguredJarList instance.
2029 b, err := json.Marshal(list)
Paul Duffin01416602020-10-23 21:04:03 +01002030 if err != nil {
Paul Duffine10dfa42020-10-23 21:23:44 +01002031 panic(err)
Ulya Trafimovich249386a2020-07-01 14:31:13 +01002032 }
2033
Paul Duffin9c3ac962021-02-03 14:11:27 +00002034 var jarList ConfiguredJarList
2035 err = json.Unmarshal(b, &jarList)
2036 if err != nil {
2037 panic(err)
2038 }
2039
2040 return jarList
Ulya Trafimovich249386a2020-07-01 14:31:13 +01002041}
2042
Jingwen Chenc711fec2020-11-22 23:52:50 -05002043// EmptyConfiguredJarList returns an empty jar list.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01002044func EmptyConfiguredJarList() ConfiguredJarList {
2045 return ConfiguredJarList{}
2046}
2047
2048var earlyBootJarsKey = NewOnceKey("earlyBootJars")
2049
2050func (c *config) BootJars() []string {
2051 return c.Once(earlyBootJarsKey, func() interface{} {
Paul Duffin69d1fb12020-10-23 21:14:20 +01002052 list := c.productVariables.BootJars.CopyOfJars()
satayevd604b212021-07-21 14:23:52 +01002053 return append(list, c.productVariables.ApexBootJars.CopyOfJars()...)
Ulya Trafimovich249386a2020-07-01 14:31:13 +01002054 }).([]string)
2055}
Paul Duffin9a89a2a2020-10-28 19:20:06 +00002056
satayevd604b212021-07-21 14:23:52 +01002057func (c *config) NonApexBootJars() ConfiguredJarList {
Paul Duffin9a89a2a2020-10-28 19:20:06 +00002058 return c.productVariables.BootJars
2059}
2060
satayevd604b212021-07-21 14:23:52 +01002061func (c *config) ApexBootJars() ConfiguredJarList {
2062 return c.productVariables.ApexBootJars
Paul Duffin9a89a2a2020-10-28 19:20:06 +00002063}
Colin Cross77cdcfd2021-03-12 11:28:25 -08002064
2065func (c *config) RBEWrapper() string {
2066 return c.GetenvWithDefault("RBE_WRAPPER", remoteexec.DefaultWrapperPath)
2067}
Colin Cross9b698b62021-12-22 09:55:32 -08002068
2069// UseHostMusl returns true if the host target has been configured to build against musl libc.
2070func (c *config) UseHostMusl() bool {
2071 return Bool(c.productVariables.HostMusl)
2072}
MarkDacekff851b82022-04-21 18:33:17 +00002073
Chris Parsonsf874e462022-05-10 13:50:12 -04002074func (c *config) LogMixedBuild(ctx BaseModuleContext, useBazel bool) {
MarkDacekff851b82022-04-21 18:33:17 +00002075 moduleName := ctx.Module().Name()
2076 c.mixedBuildsLock.Lock()
2077 defer c.mixedBuildsLock.Unlock()
2078 if useBazel {
2079 c.mixedBuildEnabledModules[moduleName] = struct{}{}
2080 } else {
2081 c.mixedBuildDisabledModules[moduleName] = struct{}{}
2082 }
2083}