blob: a5337d07dcc6a103e07268be6e7b530acfbf8aa5 [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 (
Colin Cross3f40fa42015-01-30 17:27:36 -080021 "encoding/json"
Lukacs T. Berki720b3962021-03-17 13:34:30 +010022 "errors"
Colin Cross3f40fa42015-01-30 17:27:36 -080023 "fmt"
Colin Crossd8f20142016-11-03 09:43:26 -070024 "io/ioutil"
Colin Cross3f40fa42015-01-30 17:27:36 -080025 "os"
Colin Cross35cec122015-04-02 14:37:16 -070026 "path/filepath"
Sam Delmerico5c32bbf2022-01-20 20:15:02 +000027 "reflect"
Colin Cross3f40fa42015-01-30 17:27:36 -080028 "runtime"
Inseob Kim60c32f02020-12-21 22:53:05 +090029 "strconv"
Dan Willemsen34cc69e2015-09-23 15:26:20 -070030 "strings"
Colin Crossc1e86a32015-04-15 12:33:28 -070031 "sync"
Colin Cross6ff51382015-12-17 16:39:19 -080032
Colin Cross98be1bb2019-12-13 20:41:13 -080033 "github.com/google/blueprint"
Colin Crosse87040b2017-12-11 15:52:26 -080034 "github.com/google/blueprint/bootstrap"
Colin Cross98be1bb2019-12-13 20:41:13 -080035 "github.com/google/blueprint/pathtools"
Colin Cross6ff51382015-12-17 16:39:19 -080036 "github.com/google/blueprint/proptools"
Colin Cross9d34f352019-11-22 16:03:51 -080037
38 "android/soong/android/soongconfig"
Liz Kammer09f947d2021-05-12 14:51:49 -040039 "android/soong/bazel"
Colin Cross77cdcfd2021-03-12 11:28:25 -080040 "android/soong/remoteexec"
Liz Kammer72beb342022-02-03 08:42:10 -050041 "android/soong/starlark_fmt"
Colin Cross3f40fa42015-01-30 17:27:36 -080042)
43
Jingwen Chenc711fec2020-11-22 23:52:50 -050044// Bool re-exports proptools.Bool for the android package.
Colin Cross6ff51382015-12-17 16:39:19 -080045var Bool = proptools.Bool
Jingwen Chenc711fec2020-11-22 23:52:50 -050046
47// String re-exports proptools.String for the android package.
Jack He8cc71432016-12-08 15:45:07 -080048var String = proptools.String
Jingwen Chenc711fec2020-11-22 23:52:50 -050049
50// StringDefault re-exports proptools.StringDefault for the android package.
Jeongik Cha219141c2020-08-06 23:00:37 +090051var StringDefault = proptools.StringDefault
Jiyong Park6a927c42020-01-21 02:03:43 +090052
Jingwen Chenc711fec2020-11-22 23:52:50 -050053// FutureApiLevelInt is a placeholder constant for unreleased API levels.
Dan Albert0b176c82020-07-23 16:43:25 -070054const FutureApiLevelInt = 10000
55
Jingwen Chenc711fec2020-11-22 23:52:50 -050056// FutureApiLevel represents unreleased API levels.
Dan Albert0b176c82020-07-23 16:43:25 -070057var FutureApiLevel = ApiLevel{
58 value: "current",
59 number: FutureApiLevelInt,
60 isPreview: true,
61}
Colin Cross6ff51382015-12-17 16:39:19 -080062
Jingwen Chenc4d91bc2020-11-24 22:59:26 -050063// The product variables file name, containing product config from Kati.
Dan Willemsen87b17d12015-07-14 00:39:06 -070064const productVariablesFileName = "soong.variables"
Colin Cross3f40fa42015-01-30 17:27:36 -080065
Colin Cross9272ade2016-08-17 15:24:12 -070066// A Config object represents the entire build configuration for Android.
Colin Crossc3c0a492015-04-10 15:43:55 -070067type Config struct {
68 *config
69}
70
Lukacs T. Berkib078ade2021-08-31 10:42:08 +020071// SoongOutDir returns the build output directory for the configuration.
Lukacs T. Berki9f6c24a2021-08-26 15:07:24 +020072func (c Config) SoongOutDir() string {
73 return c.soongOutDir
Jeff Gastonefc1b412017-03-29 17:29:06 -070074}
75
Lukacs T. Berki9f6c24a2021-08-26 15:07:24 +020076func (c Config) OutDir() string {
Lukacs T. Berkid6cee7e2021-09-01 16:25:51 +020077 return c.outDir
Lukacs T. Berki89e9a162021-03-12 08:31:32 +010078}
79
Lukacs T. Berkiea1a31c2021-09-02 09:58:09 +020080func (c Config) RunGoTests() bool {
81 return c.runGoTests
82}
83
Lukacs T. Berki5f6cb1d2021-03-17 15:03:14 +010084func (c Config) DebugCompilation() bool {
85 return false // Never compile Go code in the main build for debugging
86}
87
Lukacs T. Berkiea1a31c2021-09-02 09:58:09 +020088func (c Config) Subninjas() []string {
89 return []string{}
90}
91
92func (c Config) PrimaryBuilderInvocations() []bootstrap.PrimaryBuilderInvocation {
93 return []bootstrap.PrimaryBuilderInvocation{}
94}
95
Jingwen Chenc711fec2020-11-22 23:52:50 -050096// A DeviceConfig object represents the configuration for a particular device
97// being built. For now there will only be one of these, but in the future there
98// may be multiple devices being built.
Colin Cross9272ade2016-08-17 15:24:12 -070099type DeviceConfig struct {
100 *deviceConfig
101}
102
Jingwen Chenc711fec2020-11-22 23:52:50 -0500103// VendorConfig represents the configuration for vendor-specific behavior.
Colin Cross9d34f352019-11-22 16:03:51 -0800104type VendorConfig soongconfig.SoongConfig
Dan Willemsen0fe78662018-03-26 12:41:18 -0700105
Jingwen Chenc711fec2020-11-22 23:52:50 -0500106// Definition of general build configuration for soong_build. Some of these
Jingwen Chenc4d91bc2020-11-24 22:59:26 -0500107// product configuration values are read from Kati-generated soong.variables.
Colin Cross1332b002015-04-07 17:11:30 -0700108type config struct {
Jingwen Chenc711fec2020-11-22 23:52:50 -0500109 // Options configurable with soong.variables
Dan Willemsen45133ac2018-03-09 21:22:06 -0800110 productVariables productVariables
Colin Cross3f40fa42015-01-30 17:27:36 -0800111
Dan Willemsen674dc7f2018-03-12 18:06:05 -0700112 // Only available on configs created by TestConfig
113 TestProductVariables *productVariables
114
Jingwen Chenc711fec2020-11-22 23:52:50 -0500115 // A specialized context object for Bazel/Soong mixed builds and migration
116 // purposes.
Chris Parsonsf3c96ef2020-09-29 02:23:17 -0400117 BazelContext BazelContext
118
Dan Willemsen87b17d12015-07-14 00:39:06 -0700119 ProductVariablesFileName string
120
Colin Cross0c66bc62021-07-20 09:47:41 -0700121 // BuildOS stores the OsType for the OS that the build is running on.
122 BuildOS OsType
123
124 // BuildArch stores the ArchType for the CPU that the build is running on.
125 BuildArch ArchType
126
Jaewoong Jung642916f2020-10-09 17:25:15 -0700127 Targets map[OsType][]Target
128 BuildOSTarget Target // the Target for tools run on the build machine
129 BuildOSCommonTarget Target // the Target for common (java) tools run on the build machine
130 AndroidCommonTarget Target // the Target for common modules for the Android device
131 AndroidFirstDeviceTarget Target // the first Target for modules for the Android device
Dan Willemsen218f6562015-07-08 18:13:11 -0700132
Jingwen Chenc711fec2020-11-22 23:52:50 -0500133 // multilibConflicts for an ArchType is true if there is earlier configured
134 // device architecture with the same multilib value.
Colin Cross3b19f5d2019-09-17 14:45:31 -0700135 multilibConflicts map[ArchType]bool
136
Colin Cross9272ade2016-08-17 15:24:12 -0700137 deviceConfig *deviceConfig
138
Lukacs T. Berkid6cee7e2021-09-01 16:25:51 +0200139 outDir string // The output directory (usually out/)
140 soongOutDir string
Chris Parsons8f232a22020-06-23 17:37:05 -0400141 moduleListFile string // the path to the file which lists blueprint files to parse.
Colin Crossc1e86a32015-04-15 12:33:28 -0700142
Lukacs T. Berkie1df43f2021-09-08 15:31:14 +0200143 runGoTests bool
Lukacs T. Berkiea1a31c2021-09-02 09:58:09 +0200144
Colin Cross6ccbc912017-10-10 23:07:38 -0700145 env map[string]string
Dan Willemsene7680ba2015-09-11 17:06:19 -0700146 envLock sync.Mutex
147 envDeps map[string]string
148 envFrozen bool
Dan Willemsen5ba07e82015-12-11 13:51:06 -0800149
Jingwen Chencda22c92020-11-23 00:22:30 -0500150 // Changes behavior based on whether Kati runs after soong_build, or if soong_build
151 // runs standalone.
152 katiEnabled bool
Colin Cross1e7d3702016-08-24 15:25:47 -0700153
Colin Cross32616ed2017-09-05 21:56:44 -0700154 captureBuild bool // true for tests, saves build parameters for each module
155 ignoreEnvironment bool // true for tests, returns empty from all Getenv calls
Colin Crosscec81712017-07-13 14:43:27 -0700156
Colin Cross98be1bb2019-12-13 20:41:13 -0800157 fs pathtools.FileSystem
158 mockBpList string
159
Jingwen Chen01812022021-11-19 14:29:43 +0000160 runningAsBp2Build bool
Sam Delmerico24c56032022-03-28 19:53:03 +0000161 bp2buildPackageConfig bp2BuildConversionAllowlist
Jingwen Chen01812022021-11-19 14:29:43 +0000162 Bp2buildSoongConfigDefinitions soongconfig.Bp2BuildSoongConfigDefinitions
Jingwen Chen12b4c272021-03-10 02:05:59 -0500163
Colin Cross5e6a7972020-06-07 16:56:32 -0700164 // If testAllowNonExistentPaths is true then PathForSource and PathForModuleSrc won't error
165 // in tests when a path doesn't exist.
Pedro Loureiro5d190cc2021-02-15 15:41:33 +0000166 TestAllowNonExistentPaths bool
Colin Cross5e6a7972020-06-07 16:56:32 -0700167
Jingwen Chenc711fec2020-11-22 23:52:50 -0500168 // The list of files that when changed, must invalidate soong_build to
169 // regenerate build.ninja.
Colin Cross12129292020-10-29 18:23:58 -0700170 ninjaFileDepsSet sync.Map
171
Colin Cross9272ade2016-08-17 15:24:12 -0700172 OncePer
MarkDacekff851b82022-04-21 18:33:17 +0000173
174 mixedBuildsLock sync.Mutex
175 mixedBuildEnabledModules map[string]struct{}
176 mixedBuildDisabledModules map[string]struct{}
Colin Cross9272ade2016-08-17 15:24:12 -0700177}
178
179type deviceConfig struct {
Dan Willemsen00269f22017-07-06 16:59:48 -0700180 config *config
Colin Cross9272ade2016-08-17 15:24:12 -0700181 OncePer
Colin Cross3f40fa42015-01-30 17:27:36 -0800182}
183
Colin Cross485e5722015-08-27 13:28:01 -0700184type jsonConfigurable interface {
Colin Cross27385972015-09-18 10:57:10 -0700185 SetDefaultConfig()
Colin Cross485e5722015-08-27 13:28:01 -0700186}
Colin Cross3f40fa42015-01-30 17:27:36 -0800187
Colin Cross485e5722015-08-27 13:28:01 -0700188func loadConfig(config *config) error {
Colin Cross988414c2020-01-11 01:11:46 +0000189 return loadFromConfigFile(&config.productVariables, absolutePath(config.ProductVariablesFileName))
Colin Cross485e5722015-08-27 13:28:01 -0700190}
191
Jingwen Chenc711fec2020-11-22 23:52:50 -0500192// loadFromConfigFile loads and decodes configuration options from a JSON file
193// in the current working directory.
Liz Kammer09f947d2021-05-12 14:51:49 -0400194func loadFromConfigFile(configurable *productVariables, filename string) error {
Colin Cross3f40fa42015-01-30 17:27:36 -0800195 // Try to open the file
Colin Cross485e5722015-08-27 13:28:01 -0700196 configFileReader, err := os.Open(filename)
Colin Cross3f40fa42015-01-30 17:27:36 -0800197 defer configFileReader.Close()
198 if os.IsNotExist(err) {
199 // Need to create a file, so that blueprint & ninja don't get in
200 // a dependency tracking loop.
201 // Make a file-configurable-options with defaults, write it out using
202 // a json writer.
Colin Cross27385972015-09-18 10:57:10 -0700203 configurable.SetDefaultConfig()
204 err = saveToConfigFile(configurable, filename)
Colin Cross3f40fa42015-01-30 17:27:36 -0800205 if err != nil {
206 return err
207 }
Colin Cross15cd21a2018-02-27 11:26:02 -0800208 } else if err != nil {
209 return fmt.Errorf("config file: could not open %s: %s", filename, err.Error())
Colin Cross3f40fa42015-01-30 17:27:36 -0800210 } else {
211 // Make a decoder for it
212 jsonDecoder := json.NewDecoder(configFileReader)
Colin Cross485e5722015-08-27 13:28:01 -0700213 err = jsonDecoder.Decode(configurable)
Colin Cross3f40fa42015-01-30 17:27:36 -0800214 if err != nil {
Colin Cross15cd21a2018-02-27 11:26:02 -0800215 return fmt.Errorf("config file: %s did not parse correctly: %s", filename, err.Error())
Colin Cross3f40fa42015-01-30 17:27:36 -0800216 }
217 }
218
Liz Kammer09f947d2021-05-12 14:51:49 -0400219 if Bool(configurable.GcovCoverage) && Bool(configurable.ClangCoverage) {
220 return fmt.Errorf("GcovCoverage and ClangCoverage cannot both be set")
221 }
222
223 configurable.Native_coverage = proptools.BoolPtr(
224 Bool(configurable.GcovCoverage) ||
225 Bool(configurable.ClangCoverage))
226
Yuntao Xu402e9b02021-08-09 15:44:44 -0700227 // when Platform_sdk_final is true (or PLATFORM_VERSION_CODENAME is REL), use Platform_sdk_version;
228 // if false (pre-released version, for example), use Platform_sdk_codename.
229 if Bool(configurable.Platform_sdk_final) {
230 if configurable.Platform_sdk_version != nil {
231 configurable.Platform_sdk_version_or_codename =
232 proptools.StringPtr(strconv.Itoa(*(configurable.Platform_sdk_version)))
233 } else {
234 return fmt.Errorf("Platform_sdk_version cannot be pointed by a NULL pointer")
235 }
236 } else {
237 configurable.Platform_sdk_version_or_codename =
238 proptools.StringPtr(String(configurable.Platform_sdk_codename))
239 }
240
Liz Kammer09f947d2021-05-12 14:51:49 -0400241 return saveToBazelConfigFile(configurable, filepath.Dir(filename))
Colin Cross3f40fa42015-01-30 17:27:36 -0800242}
243
Colin Crossd8f20142016-11-03 09:43:26 -0700244// atomically writes the config file in case two copies of soong_build are running simultaneously
245// (for example, docs generation and ninja manifest generation)
Liz Kammer09f947d2021-05-12 14:51:49 -0400246func saveToConfigFile(config *productVariables, filename string) error {
Colin Cross3f40fa42015-01-30 17:27:36 -0800247 data, err := json.MarshalIndent(&config, "", " ")
248 if err != nil {
249 return fmt.Errorf("cannot marshal config data: %s", err.Error())
250 }
251
Colin Crossd8f20142016-11-03 09:43:26 -0700252 f, err := ioutil.TempFile(filepath.Dir(filename), "config")
Colin Cross3f40fa42015-01-30 17:27:36 -0800253 if err != nil {
Jingwen Chenc711fec2020-11-22 23:52:50 -0500254 return fmt.Errorf("cannot create empty config file %s: %s", filename, err.Error())
Colin Cross3f40fa42015-01-30 17:27:36 -0800255 }
Colin Crossd8f20142016-11-03 09:43:26 -0700256 defer os.Remove(f.Name())
257 defer f.Close()
Colin Cross3f40fa42015-01-30 17:27:36 -0800258
Colin Crossd8f20142016-11-03 09:43:26 -0700259 _, err = f.Write(data)
Colin Cross3f40fa42015-01-30 17:27:36 -0800260 if err != nil {
Colin Cross485e5722015-08-27 13:28:01 -0700261 return fmt.Errorf("default config file: %s could not be written: %s", filename, err.Error())
262 }
263
Colin Crossd8f20142016-11-03 09:43:26 -0700264 _, err = f.WriteString("\n")
Colin Cross485e5722015-08-27 13:28:01 -0700265 if err != nil {
266 return fmt.Errorf("default config file: %s could not be written: %s", filename, err.Error())
Colin Cross3f40fa42015-01-30 17:27:36 -0800267 }
268
Colin Crossd8f20142016-11-03 09:43:26 -0700269 f.Close()
270 os.Rename(f.Name(), filename)
271
Colin Cross3f40fa42015-01-30 17:27:36 -0800272 return nil
273}
274
Liz Kammer09f947d2021-05-12 14:51:49 -0400275func saveToBazelConfigFile(config *productVariables, outDir string) error {
276 dir := filepath.Join(outDir, bazel.SoongInjectionDirName, "product_config")
277 err := createDirIfNonexistent(dir, os.ModePerm)
278 if err != nil {
279 return fmt.Errorf("Could not create dir %s: %s", dir, err)
280 }
281
Sam Delmerico5c32bbf2022-01-20 20:15:02 +0000282 nonArchVariantProductVariables := []string{}
283 archVariantProductVariables := []string{}
284 p := variableProperties{}
285 t := reflect.TypeOf(p.Product_variables)
286 for i := 0; i < t.NumField(); i++ {
287 f := t.Field(i)
288 nonArchVariantProductVariables = append(nonArchVariantProductVariables, strings.ToLower(f.Name))
289 if proptools.HasTag(f, "android", "arch_variant") {
290 archVariantProductVariables = append(archVariantProductVariables, strings.ToLower(f.Name))
291 }
292 }
293
Liz Kammer72beb342022-02-03 08:42:10 -0500294 nonArchVariantProductVariablesJson := starlark_fmt.PrintStringList(nonArchVariantProductVariables, 0)
Sam Delmerico5c32bbf2022-01-20 20:15:02 +0000295 if err != nil {
296 return fmt.Errorf("cannot marshal product variable data: %s", err.Error())
297 }
298
Liz Kammer72beb342022-02-03 08:42:10 -0500299 archVariantProductVariablesJson := starlark_fmt.PrintStringList(archVariantProductVariables, 0)
Sam Delmerico5c32bbf2022-01-20 20:15:02 +0000300 if err != nil {
301 return fmt.Errorf("cannot marshal arch variant product variable data: %s", err.Error())
302 }
303
304 configJson, err := json.MarshalIndent(&config, "", " ")
Liz Kammer09f947d2021-05-12 14:51:49 -0400305 if err != nil {
306 return fmt.Errorf("cannot marshal config data: %s", err.Error())
307 }
308
309 bzl := []string{
310 bazel.GeneratedBazelFileWarning,
Sam Delmerico5c32bbf2022-01-20 20:15:02 +0000311 fmt.Sprintf(`_product_vars = json.decode("""%s""")`, configJson),
312 fmt.Sprintf(`_product_var_constraints = %s`, nonArchVariantProductVariablesJson),
313 fmt.Sprintf(`_arch_variant_product_var_constraints = %s`, archVariantProductVariablesJson),
314 "\n", `
315product_vars = _product_vars
316product_var_constraints = _product_var_constraints
317arch_variant_product_var_constraints = _arch_variant_product_var_constraints
318`,
Liz Kammer09f947d2021-05-12 14:51:49 -0400319 }
320 err = ioutil.WriteFile(filepath.Join(dir, "product_variables.bzl"), []byte(strings.Join(bzl, "\n")), 0644)
321 if err != nil {
322 return fmt.Errorf("Could not write .bzl config file %s", err)
323 }
324 err = ioutil.WriteFile(filepath.Join(dir, "BUILD"), []byte(bazel.GeneratedBazelFileWarning), 0644)
325 if err != nil {
326 return fmt.Errorf("Could not write BUILD config file %s", err)
327 }
328
329 return nil
330}
331
Colin Cross988414c2020-01-11 01:11:46 +0000332// NullConfig returns a mostly empty Config for use by standalone tools like dexpreopt_gen that
333// use the android package.
Lukacs T. Berkid6cee7e2021-09-01 16:25:51 +0200334func NullConfig(outDir, soongOutDir string) Config {
Colin Cross988414c2020-01-11 01:11:46 +0000335 return Config{
336 config: &config{
Lukacs T. Berkid6cee7e2021-09-01 16:25:51 +0200337 outDir: outDir,
Lukacs T. Berki9f6c24a2021-08-26 15:07:24 +0200338 soongOutDir: soongOutDir,
339 fs: pathtools.OsFs,
Colin Cross988414c2020-01-11 01:11:46 +0000340 },
341 }
342}
343
Jingwen Chenc711fec2020-11-22 23:52:50 -0500344// TestConfig returns a Config object for testing.
Colin Cross98be1bb2019-12-13 20:41:13 -0800345func TestConfig(buildDir string, env map[string]string, bp string, fs map[string][]byte) Config {
Colin Cross9c6241f2019-04-22 15:51:26 -0700346 envCopy := make(map[string]string)
347 for k, v := range env {
348 envCopy[k] = v
349 }
350
Jingwen Chen2838c812020-11-23 01:06:40 -0500351 // Copy the real PATH value to the test environment, it's needed by
352 // NonHermeticHostSystemTool() used in x86_darwin_host.go
Lukacs T. Berkideba7212021-03-04 10:50:10 +0100353 envCopy["PATH"] = os.Getenv("PATH")
Colin Cross9c6241f2019-04-22 15:51:26 -0700354
Dan Willemsen00269f22017-07-06 16:59:48 -0700355 config := &config{
Dan Willemsen45133ac2018-03-09 21:22:06 -0800356 productVariables: productVariables{
Anton Hansson97d0bae2022-02-16 16:15:10 +0000357 DeviceName: stringPtr("test_device"),
Trevor Radcliffe90727f42022-03-21 19:34:02 +0000358 DeviceProduct: stringPtr("test_product"),
Anton Hansson97d0bae2022-02-16 16:15:10 +0000359 Platform_sdk_version: intPtr(30),
360 Platform_sdk_codename: stringPtr("S"),
361 Platform_base_sdk_extension_version: intPtr(1),
362 Platform_version_active_codenames: []string{"S", "Tiramisu"},
363 DeviceSystemSdkVersions: []string{"14", "15"},
364 Platform_systemsdk_versions: []string{"29", "30"},
365 AAPTConfig: []string{"normal", "large", "xlarge", "hdpi", "xhdpi", "xxhdpi"},
366 AAPTPreferredConfig: stringPtr("xhdpi"),
367 AAPTCharacteristics: stringPtr("nosdcard"),
368 AAPTPrebuiltDPI: []string{"xhdpi", "xxhdpi"},
369 UncompressPrivAppDex: boolPtr(true),
370 ShippingApiLevel: stringPtr("30"),
Dan Willemsen00269f22017-07-06 16:59:48 -0700371 },
372
Colin Cross7b6a55f2021-11-09 12:34:39 -0800373 outDir: buildDir,
374 soongOutDir: filepath.Join(buildDir, "soong"),
Colin Cross6ccbc912017-10-10 23:07:38 -0700375 captureBuild: true,
Colin Cross9c6241f2019-04-22 15:51:26 -0700376 env: envCopy,
Colin Cross5e6a7972020-06-07 16:56:32 -0700377
378 // Set testAllowNonExistentPaths so that test contexts don't need to specify every path
379 // passed to PathForSource or PathForModuleSrc.
Pedro Loureiro5d190cc2021-02-15 15:41:33 +0000380 TestAllowNonExistentPaths: true,
Chris Parsonsf3c96ef2020-09-29 02:23:17 -0400381
MarkDacekff851b82022-04-21 18:33:17 +0000382 BazelContext: noopBazelContext{},
383 mixedBuildDisabledModules: make(map[string]struct{}),
384 mixedBuildEnabledModules: make(map[string]struct{}),
Dan Willemsen00269f22017-07-06 16:59:48 -0700385 }
386 config.deviceConfig = &deviceConfig{
387 config: config,
388 }
Dan Willemsen45133ac2018-03-09 21:22:06 -0800389 config.TestProductVariables = &config.productVariables
Dan Willemsen00269f22017-07-06 16:59:48 -0700390
Colin Cross98be1bb2019-12-13 20:41:13 -0800391 config.mockFileSystem(bp, fs)
392
Colin Cross790ef352021-10-25 19:15:55 -0700393 determineBuildOS(config)
394
Dan Willemsen00269f22017-07-06 16:59:48 -0700395 return Config{config}
Colin Crossce75d2c2016-10-06 16:12:58 -0700396}
397
Paul Duffin35816122021-02-24 01:49:52 +0000398func modifyTestConfigToSupportArchMutator(testConfig Config) {
Colin Crossae4c6182017-09-15 17:33:55 -0700399 config := testConfig.config
400
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700401 config.Targets = map[OsType][]Target{
402 Android: []Target{
Jiyong Park1613e552020-09-14 19:43:17 +0900403 {Android, Arch{ArchType: Arm64, ArchVariant: "armv8-a", Abi: []string{"arm64-v8a"}}, NativeBridgeDisabled, "", "", false},
404 {Android, Arch{ArchType: Arm, ArchVariant: "armv7-a-neon", Abi: []string{"armeabi-v7a"}}, NativeBridgeDisabled, "", "", false},
Colin Crossae4c6182017-09-15 17:33:55 -0700405 },
Colin Cross0c66bc62021-07-20 09:47:41 -0700406 config.BuildOS: []Target{
407 {config.BuildOS, Arch{ArchType: X86_64}, NativeBridgeDisabled, "", "", false},
408 {config.BuildOS, Arch{ArchType: X86}, NativeBridgeDisabled, "", "", false},
Colin Crossae4c6182017-09-15 17:33:55 -0700409 },
410 }
411
Colin Cross0d99f7c2019-05-14 16:01:24 -0700412 if runtime.GOOS == "darwin" {
Colin Cross0c66bc62021-07-20 09:47:41 -0700413 config.Targets[config.BuildOS] = config.Targets[config.BuildOS][:1]
Colin Cross0d99f7c2019-05-14 16:01:24 -0700414 }
415
Colin Cross0c66bc62021-07-20 09:47:41 -0700416 config.BuildOSTarget = config.Targets[config.BuildOS][0]
417 config.BuildOSCommonTarget = getCommonTargets(config.Targets[config.BuildOS])[0]
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700418 config.AndroidCommonTarget = getCommonTargets(config.Targets[Android])[0]
Sam Delmericocc271e22022-06-01 15:45:02 +0000419 config.AndroidFirstDeviceTarget = FirstTarget(config.Targets[Android], "lib64", "lib32")[0]
Inseob Kim1f086e22019-05-09 13:29:15 +0900420 config.TestProductVariables.DeviceArch = proptools.StringPtr("arm64")
421 config.TestProductVariables.DeviceArchVariant = proptools.StringPtr("armv8-a")
422 config.TestProductVariables.DeviceSecondaryArch = proptools.StringPtr("arm")
423 config.TestProductVariables.DeviceSecondaryArchVariant = proptools.StringPtr("armv7-a-neon")
Paul Duffin35816122021-02-24 01:49:52 +0000424}
Colin Cross2a076922018-10-04 23:28:25 -0700425
Colin Cross528d67e2021-07-23 22:23:07 +0000426func modifyTestConfigForMusl(config Config) {
427 delete(config.Targets, config.BuildOS)
428 config.productVariables.HostMusl = boolPtr(true)
429 determineBuildOS(config.config)
430 config.Targets[config.BuildOS] = []Target{
431 {config.BuildOS, Arch{ArchType: X86_64}, NativeBridgeDisabled, "", "", false},
432 {config.BuildOS, Arch{ArchType: X86}, NativeBridgeDisabled, "", "", false},
433 }
434
435 config.BuildOSTarget = config.Targets[config.BuildOS][0]
436 config.BuildOSCommonTarget = getCommonTargets(config.Targets[config.BuildOS])[0]
437}
438
Paul Duffin35816122021-02-24 01:49:52 +0000439// TestArchConfig returns a Config object suitable for using for tests that
440// need to run the arch mutator.
441func TestArchConfig(buildDir string, env map[string]string, bp string, fs map[string][]byte) Config {
442 testConfig := TestConfig(buildDir, env, bp, fs)
443 modifyTestConfigToSupportArchMutator(testConfig)
Colin Crossae4c6182017-09-15 17:33:55 -0700444 return testConfig
445}
446
Jingwen Chenc711fec2020-11-22 23:52:50 -0500447// ConfigForAdditionalRun is a config object which is "reset" for another
448// bootstrap run. Only per-run data is reset. Data which needs to persist across
449// multiple runs in the same program execution is carried over (such as Bazel
450// context or environment deps).
Lukacs T. Berki89fcdcb2021-09-07 09:10:33 +0200451func ConfigForAdditionalRun(c Config) (Config, error) {
452 newConfig, err := NewConfig(c.moduleListFile, c.runGoTests, c.outDir, c.soongOutDir, c.env)
Chris Parsonsf3c96ef2020-09-29 02:23:17 -0400453 if err != nil {
454 return Config{}, err
455 }
456 newConfig.BazelContext = c.BazelContext
457 newConfig.envDeps = c.envDeps
458 return newConfig, nil
459}
460
Jingwen Chenc711fec2020-11-22 23:52:50 -0500461// NewConfig creates a new Config object. The srcDir argument specifies the path
462// to the root source directory. It also loads the config file, if found.
Lukacs T. Berki89fcdcb2021-09-07 09:10:33 +0200463func NewConfig(moduleListFile string, runGoTests bool, outDir, soongOutDir string, availableEnv map[string]string) (Config, error) {
Jingwen Chenc711fec2020-11-22 23:52:50 -0500464 // Make a config with default options.
Colin Cross9272ade2016-08-17 15:24:12 -0700465 config := &config{
Lukacs T. Berki9f6c24a2021-08-26 15:07:24 +0200466 ProductVariablesFileName: filepath.Join(soongOutDir, productVariablesFileName),
Dan Willemsen87b17d12015-07-14 00:39:06 -0700467
Lukacs T. Berki53b2f362021-04-12 14:04:24 +0200468 env: availableEnv,
Colin Cross6ccbc912017-10-10 23:07:38 -0700469
Lukacs T. Berkie1df43f2021-09-08 15:31:14 +0200470 outDir: outDir,
471 soongOutDir: soongOutDir,
472 runGoTests: runGoTests,
473 multilibConflicts: make(map[ArchType]bool),
Colin Cross98be1bb2019-12-13 20:41:13 -0800474
MarkDacekff851b82022-04-21 18:33:17 +0000475 moduleListFile: moduleListFile,
476 fs: pathtools.NewOsFs(absSrcDir),
477 mixedBuildDisabledModules: make(map[string]struct{}),
478 mixedBuildEnabledModules: make(map[string]struct{}),
Colin Cross68f55102015-03-25 14:43:57 -0700479 }
Colin Cross3f40fa42015-01-30 17:27:36 -0800480
Dan Willemsen00269f22017-07-06 16:59:48 -0700481 config.deviceConfig = &deviceConfig{
Colin Cross9272ade2016-08-17 15:24:12 -0700482 config: config,
483 }
484
Liz Kammer7941b302020-07-28 13:27:34 -0700485 // Soundness check of the build and source directories. This won't catch strange
486 // configurations with symlinks, but at least checks the obvious case.
Lukacs T. Berki9f6c24a2021-08-26 15:07:24 +0200487 absBuildDir, err := filepath.Abs(soongOutDir)
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700488 if err != nil {
489 return Config{}, err
490 }
491
Lukacs T. Berkif7e36d82021-08-16 17:05:09 +0200492 absSrcDir, err := filepath.Abs(".")
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700493 if err != nil {
494 return Config{}, err
495 }
496
497 if strings.HasPrefix(absSrcDir, absBuildDir) {
498 return Config{}, fmt.Errorf("Build dir must not contain source directory")
499 }
500
Colin Cross3f40fa42015-01-30 17:27:36 -0800501 // Load any configurable options from the configuration file
Colin Cross9272ade2016-08-17 15:24:12 -0700502 err = loadConfig(config)
Colin Cross3f40fa42015-01-30 17:27:36 -0800503 if err != nil {
Colin Crossc3c0a492015-04-10 15:43:55 -0700504 return Config{}, err
Colin Cross3f40fa42015-01-30 17:27:36 -0800505 }
506
Lukacs T. Berki9f6c24a2021-08-26 15:07:24 +0200507 KatiEnabledMarkerFile := filepath.Join(soongOutDir, ".soong.kati_enabled")
Jingwen Chencda22c92020-11-23 00:22:30 -0500508 if _, err := os.Stat(absolutePath(KatiEnabledMarkerFile)); err == nil {
509 config.katiEnabled = true
Dan Willemsen5ba07e82015-12-11 13:51:06 -0800510 }
511
Colin Cross0c66bc62021-07-20 09:47:41 -0700512 determineBuildOS(config)
513
Jingwen Chenc711fec2020-11-22 23:52:50 -0500514 // Sets up the map of target OSes to the finer grained compilation targets
515 // that are configured from the product variables.
Colin Crossa1ad8d12016-06-01 17:09:44 -0700516 targets, err := decodeTargetProductVariables(config)
Dan Willemsen218f6562015-07-08 18:13:11 -0700517 if err != nil {
518 return Config{}, err
519 }
520
Paul Duffin1356d8c2020-02-25 19:26:33 +0000521 // Make the CommonOS OsType available for all products.
522 targets[CommonOS] = []Target{commonTargetMap[CommonOS.Name]}
523
Dan Albert4098deb2016-10-19 14:04:41 -0700524 var archConfig []archConfig
Jingwen Chenc4d91bc2020-11-24 22:59:26 -0500525 if config.NdkAbis() {
Dan Albert4098deb2016-10-19 14:04:41 -0700526 archConfig = getNdkAbisConfig()
Martin Stjernholmc1ecc432019-11-15 15:00:31 +0000527 } else if config.AmlAbis() {
528 archConfig = getAmlAbisConfig()
Dan Albert4098deb2016-10-19 14:04:41 -0700529 }
530
531 if archConfig != nil {
Liz Kammerb7f33662022-02-28 14:16:16 -0500532 androidTargets, err := decodeAndroidArchSettings(archConfig)
Dan Willemsen322acaf2016-01-12 23:07:05 -0800533 if err != nil {
534 return Config{}, err
535 }
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700536 targets[Android] = androidTargets
Dan Willemsen322acaf2016-01-12 23:07:05 -0800537 }
538
Colin Cross3b19f5d2019-09-17 14:45:31 -0700539 multilib := make(map[string]bool)
540 for _, target := range targets[Android] {
541 if seen := multilib[target.Arch.ArchType.Multilib]; seen {
542 config.multilibConflicts[target.Arch.ArchType] = true
543 }
544 multilib[target.Arch.ArchType.Multilib] = true
545 }
546
Jingwen Chenc711fec2020-11-22 23:52:50 -0500547 // Map of OS to compilation targets.
Colin Crossa1ad8d12016-06-01 17:09:44 -0700548 config.Targets = targets
Jingwen Chenc711fec2020-11-22 23:52:50 -0500549
550 // Compilation targets for host tools.
Colin Cross0c66bc62021-07-20 09:47:41 -0700551 config.BuildOSTarget = config.Targets[config.BuildOS][0]
552 config.BuildOSCommonTarget = getCommonTargets(config.Targets[config.BuildOS])[0]
Jingwen Chenc711fec2020-11-22 23:52:50 -0500553
554 // Compilation targets for Android.
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700555 if len(config.Targets[Android]) > 0 {
556 config.AndroidCommonTarget = getCommonTargets(config.Targets[Android])[0]
Sam Delmericocc271e22022-06-01 15:45:02 +0000557 config.AndroidFirstDeviceTarget = FirstTarget(config.Targets[Android], "lib64", "lib32")[0]
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700558 }
Dan Willemsen218f6562015-07-08 18:13:11 -0700559
Chris Parsonsf3c96ef2020-09-29 02:23:17 -0400560 config.BazelContext, err = NewBazelContext(config)
Wei Lid7736ec2022-05-12 23:37:53 -0700561 config.bp2buildPackageConfig = getBp2BuildAllowList()
Colin Cross3f40fa42015-01-30 17:27:36 -0800562
Jingwen Chenc711fec2020-11-22 23:52:50 -0500563 return Config{config}, err
564}
Colin Cross988414c2020-01-11 01:11:46 +0000565
Colin Cross98be1bb2019-12-13 20:41:13 -0800566// mockFileSystem replaces all reads with accesses to the provided map of
567// filenames to contents stored as a byte slice.
568func (c *config) mockFileSystem(bp string, fs map[string][]byte) {
569 mockFS := map[string][]byte{}
570
571 if _, exists := mockFS["Android.bp"]; !exists {
572 mockFS["Android.bp"] = []byte(bp)
573 }
574
575 for k, v := range fs {
576 mockFS[k] = v
577 }
578
579 // no module list file specified; find every file named Blueprints or Android.bp
580 pathsToParse := []string{}
581 for candidate := range mockFS {
582 base := filepath.Base(candidate)
Lukacs T. Berkib838b0a2021-09-02 11:46:24 +0200583 if base == "Android.bp" {
Colin Cross98be1bb2019-12-13 20:41:13 -0800584 pathsToParse = append(pathsToParse, candidate)
585 }
586 }
587 if len(pathsToParse) < 1 {
588 panic(fmt.Sprintf("No Blueprint or Android.bp files found in mock filesystem: %v\n", mockFS))
589 }
590 mockFS[blueprint.MockModuleListFile] = []byte(strings.Join(pathsToParse, "\n"))
591
592 c.fs = pathtools.MockFs(mockFS)
593 c.mockBpList = blueprint.MockModuleListFile
594}
595
Lukacs T. Berkid1e3f1f2021-03-16 08:55:23 +0100596func (c *config) SetAllowMissingDependencies() {
597 c.productVariables.Allow_missing_dependencies = proptools.BoolPtr(true)
598}
599
Jingwen Chenc711fec2020-11-22 23:52:50 -0500600// BlueprintToolLocation returns the directory containing build system tools
601// from Blueprint, like soong_zip and merge_zips.
Lukacs T. Berkia806e412021-09-01 08:57:48 +0200602func (c *config) HostToolDir() string {
Colin Crossacfcc1f2021-10-25 15:40:32 -0700603 if c.KatiEnabled() {
604 return filepath.Join(c.outDir, "host", c.PrebuiltOS(), "bin")
605 } else {
606 return filepath.Join(c.soongOutDir, "host", c.PrebuiltOS(), "bin")
607 }
Dan Willemsenc2aa4a92016-05-26 15:13:03 -0700608}
609
Dan Willemsen60e62f02018-11-16 21:05:32 -0800610func (c *config) HostToolPath(ctx PathContext, tool string) Path {
Colin Cross790ef352021-10-25 19:15:55 -0700611 path := pathForInstall(ctx, ctx.Config().BuildOS, ctx.Config().BuildArch, "bin", false, tool)
612 return path
Dan Willemsen60e62f02018-11-16 21:05:32 -0800613}
614
Colin Cross790ef352021-10-25 19:15:55 -0700615func (c *config) HostJNIToolPath(ctx PathContext, lib string) Path {
Martin Stjernholm7260d062019-12-09 21:47:14 +0000616 ext := ".so"
617 if runtime.GOOS == "darwin" {
618 ext = ".dylib"
619 }
Colin Cross790ef352021-10-25 19:15:55 -0700620 path := pathForInstall(ctx, ctx.Config().BuildOS, ctx.Config().BuildArch, "lib64", false, lib+ext)
621 return path
Martin Stjernholm7260d062019-12-09 21:47:14 +0000622}
623
Colin Crossae5330a2021-11-03 13:31:22 -0700624func (c *config) HostJavaToolPath(ctx PathContext, tool string) Path {
625 path := pathForInstall(ctx, ctx.Config().BuildOS, ctx.Config().BuildArch, "framework", false, tool)
Colin Cross3e3eda62021-11-04 10:22:51 -0700626 return path
627}
628
Jingwen Chenc711fec2020-11-22 23:52:50 -0500629// PrebuiltOS returns the name of the host OS used in prebuilts directories.
Colin Cross1332b002015-04-07 17:11:30 -0700630func (c *config) PrebuiltOS() string {
Colin Cross3f40fa42015-01-30 17:27:36 -0800631 switch runtime.GOOS {
632 case "linux":
633 return "linux-x86"
634 case "darwin":
635 return "darwin-x86"
636 default:
637 panic("Unknown GOOS")
638 }
639}
640
641// GoRoot returns the path to the root directory of the Go toolchain.
Colin Cross1332b002015-04-07 17:11:30 -0700642func (c *config) GoRoot() string {
Lukacs T. Berkif7e36d82021-08-16 17:05:09 +0200643 return fmt.Sprintf("prebuilts/go/%s", c.PrebuiltOS())
Colin Cross3f40fa42015-01-30 17:27:36 -0800644}
645
Jingwen Chenc711fec2020-11-22 23:52:50 -0500646// PrebuiltBuildTool returns the path to a tool in the prebuilts directory containing
647// checked-in tools, like Kati, Ninja or Toybox, for the current host OS.
Dan Willemsen4e0aa232019-04-10 22:59:54 -0700648func (c *config) PrebuiltBuildTool(ctx PathContext, tool string) Path {
649 return PathForSource(ctx, "prebuilts/build-tools", c.PrebuiltOS(), "bin", tool)
650}
651
Jingwen Chenc711fec2020-11-22 23:52:50 -0500652// CpPreserveSymlinksFlags returns the host-specific flag for the cp(1) command
653// to preserve symlinks.
Colin Cross1332b002015-04-07 17:11:30 -0700654func (c *config) CpPreserveSymlinksFlags() string {
Colin Cross485e5722015-08-27 13:28:01 -0700655 switch runtime.GOOS {
Colin Cross3f40fa42015-01-30 17:27:36 -0800656 case "darwin":
657 return "-R"
658 case "linux":
659 return "-d"
660 default:
661 return ""
662 }
663}
Colin Cross68f55102015-03-25 14:43:57 -0700664
Colin Cross1332b002015-04-07 17:11:30 -0700665func (c *config) Getenv(key string) string {
Colin Cross68f55102015-03-25 14:43:57 -0700666 var val string
667 var exists bool
Colin Crossc1e86a32015-04-15 12:33:28 -0700668 c.envLock.Lock()
Colin Crossc0d58b42017-02-06 15:40:41 -0800669 defer c.envLock.Unlock()
670 if c.envDeps == nil {
671 c.envDeps = make(map[string]string)
672 }
Colin Cross68f55102015-03-25 14:43:57 -0700673 if val, exists = c.envDeps[key]; !exists {
Dan Willemsene7680ba2015-09-11 17:06:19 -0700674 if c.envFrozen {
675 panic("Cannot access new environment variables after envdeps are frozen")
676 }
Colin Cross6ccbc912017-10-10 23:07:38 -0700677 val, _ = c.env[key]
Colin Cross68f55102015-03-25 14:43:57 -0700678 c.envDeps[key] = val
679 }
680 return val
681}
682
Colin Cross99d7c232016-11-23 16:52:04 -0800683func (c *config) GetenvWithDefault(key string, defaultValue string) string {
684 ret := c.Getenv(key)
685 if ret == "" {
686 return defaultValue
687 }
688 return ret
689}
690
691func (c *config) IsEnvTrue(key string) bool {
692 value := c.Getenv(key)
693 return value == "1" || value == "y" || value == "yes" || value == "on" || value == "true"
694}
695
696func (c *config) IsEnvFalse(key string) bool {
697 value := c.Getenv(key)
698 return value == "0" || value == "n" || value == "no" || value == "off" || value == "false"
699}
700
Sorin Bascace720c32022-05-24 12:13:50 +0100701func (c *config) TargetsJava17() bool {
702 return c.IsEnvTrue("EXPERIMENTAL_TARGET_JAVA_VERSION_17")
703}
704
Jingwen Chenc711fec2020-11-22 23:52:50 -0500705// EnvDeps returns the environment variables this build depends on. The first
706// call to this function blocks future reads from the environment.
Colin Cross1332b002015-04-07 17:11:30 -0700707func (c *config) EnvDeps() map[string]string {
Dan Willemsene7680ba2015-09-11 17:06:19 -0700708 c.envLock.Lock()
Colin Crossc0d58b42017-02-06 15:40:41 -0800709 defer c.envLock.Unlock()
Dan Willemsene7680ba2015-09-11 17:06:19 -0700710 c.envFrozen = true
Colin Cross68f55102015-03-25 14:43:57 -0700711 return c.envDeps
712}
Colin Cross35cec122015-04-02 14:37:16 -0700713
Jingwen Chencda22c92020-11-23 00:22:30 -0500714func (c *config) KatiEnabled() bool {
715 return c.katiEnabled
Dan Willemsen5ba07e82015-12-11 13:51:06 -0800716}
717
Nan Zhang581fd212018-01-10 16:06:12 -0800718func (c *config) BuildId() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800719 return String(c.productVariables.BuildId)
Nan Zhang581fd212018-01-10 16:06:12 -0800720}
721
Jingwen Chenc711fec2020-11-22 23:52:50 -0500722// BuildNumberFile returns the path to a text file containing metadata
723// representing the current build's number.
724//
725// Rules that want to reference the build number should read from this file
726// without depending on it. They will run whenever their other dependencies
727// require them to run and get the current build number. This ensures they don't
728// rebuild on every incremental build when the build number changes.
Colin Cross2a2e0db2020-02-21 16:55:46 -0800729func (c *config) BuildNumberFile(ctx PathContext) Path {
730 return PathForOutput(ctx, String(c.productVariables.BuildNumberFile))
Nan Zhang581fd212018-01-10 16:06:12 -0800731}
732
Jingwen Chenc711fec2020-11-22 23:52:50 -0500733// DeviceName returns the name of the current device target.
Colin Cross35cec122015-04-02 14:37:16 -0700734// TODO: take an AndroidModuleContext to select the device name for multi-device builds
Colin Cross1332b002015-04-07 17:11:30 -0700735func (c *config) DeviceName() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800736 return *c.productVariables.DeviceName
Colin Cross35cec122015-04-02 14:37:16 -0700737}
738
Trevor Radcliffe90727f42022-03-21 19:34:02 +0000739// DeviceProduct returns the current product target. There could be multiple of
740// these per device type.
741//
742// NOTE: Do not base conditional logic on this value. It may break product
743// inheritance.
744func (c *config) DeviceProduct() string {
745 return *c.productVariables.DeviceProduct
746}
747
Anton Hansson53c88442019-03-18 15:53:16 +0000748func (c *config) DeviceResourceOverlays() []string {
749 return c.productVariables.DeviceResourceOverlays
750}
751
752func (c *config) ProductResourceOverlays() []string {
753 return c.productVariables.ProductResourceOverlays
Colin Cross30e076a2015-04-13 13:58:27 -0700754}
755
Colin Crossbfd347d2018-05-09 11:11:35 -0700756func (c *config) PlatformVersionName() string {
757 return String(c.productVariables.Platform_version_name)
758}
759
Dan Albert4f378d72020-07-23 17:32:15 -0700760func (c *config) PlatformSdkVersion() ApiLevel {
761 return uncheckedFinalApiLevel(*c.productVariables.Platform_sdk_version)
Colin Cross30e076a2015-04-13 13:58:27 -0700762}
763
Colin Crossd09b0b62018-04-18 11:06:47 -0700764func (c *config) PlatformSdkCodename() string {
765 return String(c.productVariables.Platform_sdk_codename)
766}
767
Anton Hansson97d0bae2022-02-16 16:15:10 +0000768func (c *config) PlatformSdkExtensionVersion() int {
769 return *c.productVariables.Platform_sdk_extension_version
770}
771
772func (c *config) PlatformBaseSdkExtensionVersion() int {
773 return *c.productVariables.Platform_base_sdk_extension_version
774}
775
Colin Cross092c9da2019-04-02 22:56:43 -0700776func (c *config) PlatformSecurityPatch() string {
777 return String(c.productVariables.Platform_security_patch)
778}
779
780func (c *config) PlatformPreviewSdkVersion() string {
781 return String(c.productVariables.Platform_preview_sdk_version)
782}
783
784func (c *config) PlatformMinSupportedTargetSdkVersion() string {
785 return String(c.productVariables.Platform_min_supported_target_sdk_version)
786}
787
788func (c *config) PlatformBaseOS() string {
789 return String(c.productVariables.Platform_base_os)
790}
791
Inseob Kim4f1f3d92022-04-25 18:23:58 +0900792func (c *config) PlatformVersionLastStable() string {
793 return String(c.productVariables.Platform_version_last_stable)
794}
795
Jiyong Park37073842022-06-21 10:13:42 +0900796func (c *config) PlatformVersionKnownCodenames() string {
797 return String(c.productVariables.Platform_version_known_codenames)
798}
799
Dan Albert1a246272020-07-06 14:49:35 -0700800func (c *config) MinSupportedSdkVersion() ApiLevel {
Dan Albert862a7c52022-04-20 22:54:42 +0000801 return uncheckedFinalApiLevel(19)
Dan Albert1a246272020-07-06 14:49:35 -0700802}
803
804func (c *config) FinalApiLevels() []ApiLevel {
805 var levels []ApiLevel
Dan Albert4f378d72020-07-23 17:32:15 -0700806 for i := 1; i <= c.PlatformSdkVersion().FinalOrFutureInt(); i++ {
Dan Albert1a246272020-07-06 14:49:35 -0700807 levels = append(levels, uncheckedFinalApiLevel(i))
808 }
809 return levels
810}
811
812func (c *config) PreviewApiLevels() []ApiLevel {
813 var levels []ApiLevel
814 for i, codename := range c.PlatformVersionActiveCodenames() {
815 levels = append(levels, ApiLevel{
816 value: codename,
817 number: i,
818 isPreview: true,
819 })
820 }
821 return levels
822}
823
satayevcca4ab72021-11-30 12:33:55 +0000824func (c *config) LatestPreviewApiLevel() ApiLevel {
825 level := NoneApiLevel
826 for _, l := range c.PreviewApiLevels() {
827 if l.GreaterThan(level) {
828 level = l
829 }
830 }
831 return level
832}
833
Dan Albert1a246272020-07-06 14:49:35 -0700834func (c *config) AllSupportedApiLevels() []ApiLevel {
835 var levels []ApiLevel
836 levels = append(levels, c.FinalApiLevels()...)
837 return append(levels, c.PreviewApiLevels()...)
Dan Albertf5415d72017-08-17 16:19:59 -0700838}
839
Jingwen Chenc711fec2020-11-22 23:52:50 -0500840// DefaultAppTargetSdk returns the API level that platform apps are targeting.
841// This converts a codename to the exact ApiLevel it represents.
Dan Albert4f378d72020-07-23 17:32:15 -0700842func (c *config) DefaultAppTargetSdk(ctx EarlyModuleContext) ApiLevel {
Colin Crossd09b0b62018-04-18 11:06:47 -0700843 if Bool(c.productVariables.Platform_sdk_final) {
844 return c.PlatformSdkVersion()
Colin Crossd09b0b62018-04-18 11:06:47 -0700845 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500846 codename := c.PlatformSdkCodename()
847 if codename == "" {
848 return NoneApiLevel
849 }
850 if codename == "REL" {
851 panic("Platform_sdk_codename should not be REL when Platform_sdk_final is true")
852 }
853 return ApiLevelOrPanic(ctx, codename)
Colin Crossd09b0b62018-04-18 11:06:47 -0700854}
855
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800856func (c *config) AppsDefaultVersionName() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800857 return String(c.productVariables.AppsDefaultVersionName)
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800858}
859
Dan Albert31384de2017-07-28 12:39:46 -0700860// Codenames that are active in the current lunch target.
861func (c *config) PlatformVersionActiveCodenames() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800862 return c.productVariables.Platform_version_active_codenames
Dan Albert31384de2017-07-28 12:39:46 -0700863}
864
Colin Crossface4e42017-10-30 17:32:15 -0700865func (c *config) ProductAAPTConfig() []string {
Colin Crossa74ca042019-01-31 14:31:51 -0800866 return c.productVariables.AAPTConfig
Colin Cross30e076a2015-04-13 13:58:27 -0700867}
868
Colin Crossface4e42017-10-30 17:32:15 -0700869func (c *config) ProductAAPTPreferredConfig() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800870 return String(c.productVariables.AAPTPreferredConfig)
Colin Cross30e076a2015-04-13 13:58:27 -0700871}
872
Colin Crossface4e42017-10-30 17:32:15 -0700873func (c *config) ProductAAPTCharacteristics() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800874 return String(c.productVariables.AAPTCharacteristics)
Colin Crossface4e42017-10-30 17:32:15 -0700875}
876
877func (c *config) ProductAAPTPrebuiltDPI() []string {
Colin Crossa74ca042019-01-31 14:31:51 -0800878 return c.productVariables.AAPTPrebuiltDPI
Colin Cross30e076a2015-04-13 13:58:27 -0700879}
880
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700881func (c *config) DefaultAppCertificateDir(ctx PathContext) SourcePath {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800882 defaultCert := String(c.productVariables.DefaultAppCertificate)
Colin Cross61ae0b72017-12-01 17:16:02 -0800883 if defaultCert != "" {
884 return PathForSource(ctx, filepath.Dir(defaultCert))
Colin Cross61ae0b72017-12-01 17:16:02 -0800885 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500886 return PathForSource(ctx, "build/make/target/product/security")
Colin Cross30e076a2015-04-13 13:58:27 -0700887}
888
Colin Crosse1731a52017-12-14 11:22:55 -0800889func (c *config) DefaultAppCertificate(ctx PathContext) (pem, key SourcePath) {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800890 defaultCert := String(c.productVariables.DefaultAppCertificate)
Colin Cross61ae0b72017-12-01 17:16:02 -0800891 if defaultCert != "" {
Colin Crosse1731a52017-12-14 11:22:55 -0800892 return PathForSource(ctx, defaultCert+".x509.pem"), PathForSource(ctx, defaultCert+".pk8")
Colin Cross61ae0b72017-12-01 17:16:02 -0800893 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500894 defaultDir := c.DefaultAppCertificateDir(ctx)
895 return defaultDir.Join(ctx, "testkey.x509.pem"), defaultDir.Join(ctx, "testkey.pk8")
Colin Cross30e076a2015-04-13 13:58:27 -0700896}
Colin Cross6ff51382015-12-17 16:39:19 -0800897
Jiyong Park9335a262018-12-24 11:31:58 +0900898func (c *config) ApexKeyDir(ctx ModuleContext) SourcePath {
899 // TODO(b/121224311): define another variable such as TARGET_APEX_KEY_OVERRIDE
900 defaultCert := String(c.productVariables.DefaultAppCertificate)
Dan Willemsen412160e2019-04-09 21:36:26 -0700901 if defaultCert == "" || filepath.Dir(defaultCert) == "build/make/target/product/security" {
Jiyong Park9335a262018-12-24 11:31:58 +0900902 // When defaultCert is unset or is set to the testkeys path, use the APEX keys
903 // that is under the module dir
Colin Cross07e51612019-03-05 12:46:40 -0800904 return pathForModuleSrc(ctx)
Jiyong Park9335a262018-12-24 11:31:58 +0900905 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500906 // If not, APEX keys are under the specified directory
907 return PathForSource(ctx, filepath.Dir(defaultCert))
Jiyong Park9335a262018-12-24 11:31:58 +0900908}
909
Jingwen Chenc711fec2020-11-22 23:52:50 -0500910// AllowMissingDependencies configures Blueprint/Soong to not fail when modules
911// are configured to depend on non-existent modules. Note that this does not
912// affect missing input dependencies at the Ninja level.
Colin Cross6ff51382015-12-17 16:39:19 -0800913func (c *config) AllowMissingDependencies() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800914 return Bool(c.productVariables.Allow_missing_dependencies)
Colin Cross6ff51382015-12-17 16:39:19 -0800915}
Dan Willemsen322acaf2016-01-12 23:07:05 -0800916
Jeongik Cha816a23a2020-07-08 01:09:23 +0900917// Returns true if a full platform source tree cannot be assumed.
Colin Crossfc3674a2017-09-18 17:41:52 -0700918func (c *config) UnbundledBuild() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800919 return Bool(c.productVariables.Unbundled_build)
Colin Crossfc3674a2017-09-18 17:41:52 -0700920}
921
Martin Stjernholmfd9eb4b2020-06-17 01:13:15 +0100922// Returns true if building apps that aren't bundled with the platform.
923// UnbundledBuild() is always true when this is true.
924func (c *config) UnbundledBuildApps() bool {
Cole Faust701ca252021-11-23 19:02:08 -0800925 return len(c.productVariables.Unbundled_build_apps) > 0
Martin Stjernholmfd9eb4b2020-06-17 01:13:15 +0100926}
927
Jeongik Cha4b073cd2021-06-08 11:35:00 +0900928// Returns true if building image that aren't bundled with the platform.
929// UnbundledBuild() is always true when this is true.
930func (c *config) UnbundledBuildImage() bool {
931 return Bool(c.productVariables.Unbundled_build_image)
932}
933
Jeongik Cha816a23a2020-07-08 01:09:23 +0900934// Returns true if building modules against prebuilt SDKs.
935func (c *config) AlwaysUsePrebuiltSdks() bool {
936 return Bool(c.productVariables.Always_use_prebuilt_sdks)
Colin Cross1f367bf2018-12-18 22:46:24 -0800937}
938
Colin Cross126a25c2017-10-31 13:55:34 -0700939func (c *config) MinimizeJavaDebugInfo() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800940 return Bool(c.productVariables.MinimizeJavaDebugInfo) && !Bool(c.productVariables.Eng)
Colin Cross126a25c2017-10-31 13:55:34 -0700941}
942
Colin Crossed064c02018-09-05 16:28:13 -0700943func (c *config) Debuggable() bool {
944 return Bool(c.productVariables.Debuggable)
945}
946
Jaewoong Jung1d6eb682018-11-29 15:08:44 -0800947func (c *config) Eng() bool {
948 return Bool(c.productVariables.Eng)
949}
950
Colin Crossc53c37f2021-12-08 15:42:22 -0800951// DevicePrimaryArchType returns the ArchType for the first configured device architecture, or
952// Common if there are no device architectures.
Jiyong Park8d52f862018-07-07 18:02:07 +0900953func (c *config) DevicePrimaryArchType() ArchType {
Colin Crossc53c37f2021-12-08 15:42:22 -0800954 if androidTargets := c.Targets[Android]; len(androidTargets) > 0 {
955 return androidTargets[0].Arch.ArchType
956 }
957 return Common
Jiyong Park8d52f862018-07-07 18:02:07 +0900958}
959
Colin Cross16b23492016-01-06 14:41:07 -0800960func (c *config) SanitizeHost() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800961 return append([]string(nil), c.productVariables.SanitizeHost...)
Colin Cross16b23492016-01-06 14:41:07 -0800962}
963
964func (c *config) SanitizeDevice() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800965 return append([]string(nil), c.productVariables.SanitizeDevice...)
Colin Cross23ae82a2016-11-02 14:34:39 -0700966}
967
Ivan Lozano0c3a1ef2017-06-28 09:10:48 -0700968func (c *config) SanitizeDeviceDiag() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800969 return append([]string(nil), c.productVariables.SanitizeDeviceDiag...)
Ivan Lozano0c3a1ef2017-06-28 09:10:48 -0700970}
971
Colin Cross23ae82a2016-11-02 14:34:39 -0700972func (c *config) SanitizeDeviceArch() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800973 return append([]string(nil), c.productVariables.SanitizeDeviceArch...)
Colin Cross16b23492016-01-06 14:41:07 -0800974}
Colin Crossa1ad8d12016-06-01 17:09:44 -0700975
Vishwath Mohan1b017a72017-01-19 13:54:55 -0800976func (c *config) EnableCFI() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800977 if c.productVariables.EnableCFI == nil {
Vishwath Mohanc32c3eb2017-01-24 14:20:54 -0800978 return true
Vishwath Mohanc32c3eb2017-01-24 14:20:54 -0800979 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500980 return *c.productVariables.EnableCFI
Vishwath Mohan1b017a72017-01-19 13:54:55 -0800981}
982
Kostya Kortchinskyd5275c82019-02-01 08:42:56 -0800983func (c *config) DisableScudo() bool {
984 return Bool(c.productVariables.DisableScudo)
985}
986
Colin Crossa1ad8d12016-06-01 17:09:44 -0700987func (c *config) Android64() bool {
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700988 for _, t := range c.Targets[Android] {
Colin Crossa1ad8d12016-06-01 17:09:44 -0700989 if t.Arch.ArchType.Multilib == "lib64" {
990 return true
991 }
992 }
993
994 return false
995}
Colin Cross9272ade2016-08-17 15:24:12 -0700996
Colin Cross9d45bb72016-08-29 16:14:13 -0700997func (c *config) UseGoma() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800998 return Bool(c.productVariables.UseGoma)
Colin Cross9d45bb72016-08-29 16:14:13 -0700999}
1000
Ramy Medhatbbf25672019-07-17 12:30:04 +00001001func (c *config) UseRBE() bool {
1002 return Bool(c.productVariables.UseRBE)
1003}
1004
Ramy Medhat8ea054a2020-01-27 14:19:44 -05001005func (c *config) UseRBEJAVAC() bool {
1006 return Bool(c.productVariables.UseRBEJAVAC)
1007}
1008
1009func (c *config) UseRBER8() bool {
1010 return Bool(c.productVariables.UseRBER8)
1011}
1012
1013func (c *config) UseRBED8() bool {
1014 return Bool(c.productVariables.UseRBED8)
1015}
1016
Colin Cross8b8bec32019-11-15 13:18:43 -08001017func (c *config) UseRemoteBuild() bool {
1018 return c.UseGoma() || c.UseRBE()
1019}
1020
Colin Cross66548102018-06-19 22:47:35 -07001021func (c *config) RunErrorProne() bool {
1022 return c.IsEnvTrue("RUN_ERROR_PRONE")
1023}
1024
Jingwen Chenc711fec2020-11-22 23:52:50 -05001025// XrefCorpusName returns the Kythe cross-reference corpus name.
Sasha Smundak2a4549e2018-11-05 16:49:08 -08001026func (c *config) XrefCorpusName() string {
1027 return c.Getenv("XREF_CORPUS")
1028}
1029
Jingwen Chenc711fec2020-11-22 23:52:50 -05001030// XrefCuEncoding returns the compilation unit encoding to use for Kythe code
1031// xrefs. Can be 'json' (default), 'proto' or 'all'.
Sasha Smundak6c2d4f92020-01-09 17:34:23 -08001032func (c *config) XrefCuEncoding() string {
1033 if enc := c.Getenv("KYTHE_KZIP_ENCODING"); enc != "" {
1034 return enc
1035 }
1036 return "json"
1037}
1038
Sasha Smundakb0addaf2021-02-16 10:39:40 -08001039// XrefCuJavaSourceMax returns the maximum number of the Java source files
1040// in a single compilation unit
1041const xrefJavaSourceFileMaxDefault = "1000"
1042
1043func (c Config) XrefCuJavaSourceMax() string {
1044 v := c.Getenv("KYTHE_JAVA_SOURCE_BATCH_SIZE")
1045 if v == "" {
1046 return xrefJavaSourceFileMaxDefault
1047 }
1048 if _, err := strconv.ParseUint(v, 0, 0); err != nil {
1049 fmt.Fprintf(os.Stderr,
1050 "bad KYTHE_JAVA_SOURCE_BATCH_SIZE value: %s, will use %s",
1051 err, xrefJavaSourceFileMaxDefault)
1052 return xrefJavaSourceFileMaxDefault
1053 }
1054 return v
1055
1056}
1057
Sasha Smundak2a4549e2018-11-05 16:49:08 -08001058func (c *config) EmitXrefRules() bool {
1059 return c.XrefCorpusName() != ""
1060}
1061
Dan Willemsena03cf6d2016-09-26 15:45:04 -07001062func (c *config) ClangTidy() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001063 return Bool(c.productVariables.ClangTidy)
Dan Willemsena03cf6d2016-09-26 15:45:04 -07001064}
1065
1066func (c *config) TidyChecks() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001067 if c.productVariables.TidyChecks == nil {
Dan Willemsena03cf6d2016-09-26 15:45:04 -07001068 return ""
1069 }
Dan Willemsen45133ac2018-03-09 21:22:06 -08001070 return *c.productVariables.TidyChecks
Dan Willemsena03cf6d2016-09-26 15:45:04 -07001071}
1072
Colin Cross0f4e0d62016-07-27 10:56:55 -07001073func (c *config) LibartImgHostBaseAddress() string {
1074 return "0x60000000"
1075}
1076
1077func (c *config) LibartImgDeviceBaseAddress() string {
Elliott Hughesda3a0712020-03-06 16:55:28 -08001078 return "0x70000000"
Colin Cross0f4e0d62016-07-27 10:56:55 -07001079}
1080
Hiroshi Yamauchie2a10632016-12-19 13:44:41 -08001081func (c *config) ArtUseReadBarrier() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001082 return Bool(c.productVariables.ArtUseReadBarrier)
Hiroshi Yamauchie2a10632016-12-19 13:44:41 -08001083}
1084
Jingwen Chenc711fec2020-11-22 23:52:50 -05001085// Enforce Runtime Resource Overlays for a module. RROs supersede static RROs,
1086// but some modules still depend on it.
1087//
1088// More info: https://source.android.com/devices/architecture/rros
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001089func (c *config) EnforceRROForModule(name string) bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001090 enforceList := c.productVariables.EnforceRROTargets
Jeongik Chacee5ba92021-02-19 12:11:51 +09001091
Roland Levillainf6cc2612020-07-09 16:58:14 +01001092 if len(enforceList) > 0 {
Yo Chiang4ebd06a2019-10-01 13:13:41 +08001093 if InList("*", enforceList) {
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001094 return true
1095 }
Colin Crossa74ca042019-01-31 14:31:51 -08001096 return InList(name, enforceList)
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001097 }
1098 return false
1099}
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001100func (c *config) EnforceRROExcludedOverlay(path string) bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001101 excluded := c.productVariables.EnforceRROExcludedOverlays
Roland Levillainf6cc2612020-07-09 16:58:14 +01001102 if len(excluded) > 0 {
Jaewoong Jung3aff5782020-02-11 07:54:35 -08001103 return HasAnyPrefix(path, excluded)
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001104 }
1105 return false
1106}
1107
1108func (c *config) ExportedNamespaces() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001109 return append([]string(nil), c.productVariables.NamespacesToExport...)
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001110}
1111
1112func (c *config) HostStaticBinaries() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001113 return Bool(c.productVariables.HostStaticBinaries)
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001114}
1115
Colin Cross5a0dcd52018-10-05 14:20:06 -07001116func (c *config) UncompressPrivAppDex() bool {
1117 return Bool(c.productVariables.UncompressPrivAppDex)
1118}
1119
1120func (c *config) ModulesLoadedByPrivilegedModules() []string {
1121 return c.productVariables.ModulesLoadedByPrivilegedModules
1122}
1123
Jingwen Chenc711fec2020-11-22 23:52:50 -05001124// DexpreoptGlobalConfigPath returns the path to the dexpreopt.config file in
1125// the output directory, if it was created during the product configuration
1126// phase by Kati.
Jingwen Chenebb0b572020-11-02 00:24:57 -05001127func (c *config) DexpreoptGlobalConfigPath(ctx PathContext) OptionalPath {
Colin Cross988414c2020-01-11 01:11:46 +00001128 if c.productVariables.DexpreoptGlobalConfig == nil {
Jingwen Chenebb0b572020-11-02 00:24:57 -05001129 return OptionalPathForPath(nil)
1130 }
1131 return OptionalPathForPath(
1132 pathForBuildToolDep(ctx, *c.productVariables.DexpreoptGlobalConfig))
1133}
1134
Jingwen Chenc711fec2020-11-22 23:52:50 -05001135// DexpreoptGlobalConfig returns the raw byte contents of the dexpreopt global
1136// configuration. Since the configuration file was created by Kati during
1137// product configuration (externally of soong_build), it's not tracked, so we
1138// also manually add a Ninja file dependency on the configuration file to the
1139// rule that creates the main build.ninja file. This ensures that build.ninja is
1140// regenerated correctly if dexpreopt.config changes.
Jingwen Chenebb0b572020-11-02 00:24:57 -05001141func (c *config) DexpreoptGlobalConfig(ctx PathContext) ([]byte, error) {
1142 path := c.DexpreoptGlobalConfigPath(ctx)
1143 if !path.Valid() {
Colin Cross988414c2020-01-11 01:11:46 +00001144 return nil, nil
1145 }
Jingwen Chenebb0b572020-11-02 00:24:57 -05001146 ctx.AddNinjaFileDeps(path.String())
1147 return ioutil.ReadFile(absolutePath(path.String()))
Colin Cross43f08db2018-11-12 10:13:39 -08001148}
1149
Inseob Kim7b85eeb2021-03-23 20:52:24 +09001150func (c *deviceConfig) WithDexpreopt() bool {
1151 return c.config.productVariables.WithDexpreopt
1152}
1153
David Brazdil91b4e3e2019-01-23 21:04:05 +00001154func (c *config) FrameworksBaseDirExists(ctx PathContext) bool {
Colin Cross5a756a62021-03-16 16:34:46 -07001155 return ExistentPathForSource(ctx, "frameworks", "base", "Android.bp").Valid()
David Brazdil91b4e3e2019-01-23 21:04:05 +00001156}
1157
Inseob Kimae553032019-05-14 18:52:49 +09001158func (c *config) VndkSnapshotBuildArtifacts() bool {
1159 return Bool(c.productVariables.VndkSnapshotBuildArtifacts)
1160}
1161
Colin Cross3b19f5d2019-09-17 14:45:31 -07001162func (c *config) HasMultilibConflict(arch ArchType) bool {
1163 return c.multilibConflicts[arch]
1164}
1165
Bill Peckhambae47492021-01-08 09:34:44 -08001166func (c *config) PrebuiltHiddenApiDir(ctx PathContext) string {
1167 return String(c.productVariables.PrebuiltHiddenApiDir)
1168}
1169
Colin Cross9272ade2016-08-17 15:24:12 -07001170func (c *deviceConfig) Arches() []Arch {
1171 var arches []Arch
Dan Willemsen0ef639b2018-10-10 17:02:29 -07001172 for _, target := range c.config.Targets[Android] {
Colin Cross9272ade2016-08-17 15:24:12 -07001173 arches = append(arches, target.Arch)
1174 }
1175 return arches
1176}
Dan Willemsend2ede872016-11-18 14:54:24 -08001177
Jayant Chowdhary34ce67d2018-03-08 11:00:50 -08001178func (c *deviceConfig) BinderBitness() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001179 is32BitBinder := c.config.productVariables.Binder32bit
Jayant Chowdhary34ce67d2018-03-08 11:00:50 -08001180 if is32BitBinder != nil && *is32BitBinder {
1181 return "32"
1182 }
1183 return "64"
1184}
1185
Dan Willemsen4353bc42016-12-05 17:16:02 -08001186func (c *deviceConfig) VendorPath() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001187 if c.config.productVariables.VendorPath != nil {
1188 return *c.config.productVariables.VendorPath
Dan Willemsen4353bc42016-12-05 17:16:02 -08001189 }
1190 return "vendor"
1191}
1192
Justin Yun71549282017-11-17 12:10:28 +09001193func (c *deviceConfig) VndkVersion() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001194 return String(c.config.productVariables.DeviceVndkVersion)
Justin Yun71549282017-11-17 12:10:28 +09001195}
1196
Jose Galmes6f843bc2020-12-11 13:36:29 -08001197func (c *deviceConfig) RecoverySnapshotVersion() string {
1198 return String(c.config.productVariables.RecoverySnapshotVersion)
1199}
1200
Jeongik Cha219141c2020-08-06 23:00:37 +09001201func (c *deviceConfig) CurrentApiLevelForVendorModules() string {
1202 return StringDefault(c.config.productVariables.DeviceCurrentApiLevelForVendorModules, "current")
1203}
1204
Justin Yun8fe12122017-12-07 17:18:15 +09001205func (c *deviceConfig) PlatformVndkVersion() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001206 return String(c.config.productVariables.Platform_vndk_version)
Justin Yun8fe12122017-12-07 17:18:15 +09001207}
1208
Justin Yun5f7f7e82019-11-18 19:52:14 +09001209func (c *deviceConfig) ProductVndkVersion() string {
1210 return String(c.config.productVariables.ProductVndkVersion)
1211}
1212
Justin Yun71549282017-11-17 12:10:28 +09001213func (c *deviceConfig) ExtraVndkVersions() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001214 return c.config.productVariables.ExtraVndkVersions
Dan Willemsend2ede872016-11-18 14:54:24 -08001215}
Jack He8cc71432016-12-08 15:45:07 -08001216
Vic Yangefd249e2018-11-12 20:19:56 -08001217func (c *deviceConfig) VndkUseCoreVariant() bool {
1218 return Bool(c.config.productVariables.VndkUseCoreVariant)
1219}
1220
Jiyong Park1a5d7b12018-01-15 15:05:10 +09001221func (c *deviceConfig) SystemSdkVersions() []string {
Colin Crossa74ca042019-01-31 14:31:51 -08001222 return c.config.productVariables.DeviceSystemSdkVersions
Jiyong Park1a5d7b12018-01-15 15:05:10 +09001223}
1224
1225func (c *deviceConfig) PlatformSystemSdkVersions() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001226 return c.config.productVariables.Platform_systemsdk_versions
Jiyong Park1a5d7b12018-01-15 15:05:10 +09001227}
1228
Jiyong Park2db76922017-11-08 16:03:48 +09001229func (c *deviceConfig) OdmPath() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001230 if c.config.productVariables.OdmPath != nil {
1231 return *c.config.productVariables.OdmPath
Jiyong Park2db76922017-11-08 16:03:48 +09001232 }
1233 return "odm"
1234}
1235
Jaekyun Seok5cfbfbb2018-01-10 19:00:15 +09001236func (c *deviceConfig) ProductPath() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001237 if c.config.productVariables.ProductPath != nil {
1238 return *c.config.productVariables.ProductPath
Jiyong Park2db76922017-11-08 16:03:48 +09001239 }
Jaekyun Seok5cfbfbb2018-01-10 19:00:15 +09001240 return "product"
Jiyong Park2db76922017-11-08 16:03:48 +09001241}
1242
Justin Yund5f6c822019-06-25 16:47:17 +09001243func (c *deviceConfig) SystemExtPath() string {
1244 if c.config.productVariables.SystemExtPath != nil {
1245 return *c.config.productVariables.SystemExtPath
Dario Frenifd05a742018-05-29 13:28:54 +01001246 }
Justin Yund5f6c822019-06-25 16:47:17 +09001247 return "system_ext"
Dario Frenifd05a742018-05-29 13:28:54 +01001248}
1249
Jack He8cc71432016-12-08 15:45:07 -08001250func (c *deviceConfig) BtConfigIncludeDir() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001251 return String(c.config.productVariables.BtConfigIncludeDir)
Jack He8cc71432016-12-08 15:45:07 -08001252}
Dan Willemsen581341d2017-02-09 16:16:31 -08001253
Jiyong Parkd773eb32017-07-03 13:18:12 +09001254func (c *deviceConfig) DeviceKernelHeaderDirs() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001255 return c.config.productVariables.DeviceKernelHeaders
Jiyong Parkd773eb32017-07-03 13:18:12 +09001256}
1257
Roland Levillainada12702020-06-09 13:07:36 +01001258// JavaCoverageEnabledForPath returns whether Java code coverage is enabled for
1259// path. Coverage is enabled by default when the product variable
1260// JavaCoveragePaths is empty. If JavaCoveragePaths is not empty, coverage is
1261// enabled for any path which is part of this variable (and not part of the
1262// JavaCoverageExcludePaths product variable). Value "*" in JavaCoveragePaths
1263// represents any path.
1264func (c *deviceConfig) JavaCoverageEnabledForPath(path string) bool {
1265 coverage := false
Chris Gross2f748692020-06-24 20:36:59 +00001266 if len(c.config.productVariables.JavaCoveragePaths) == 0 ||
Roland Levillainada12702020-06-09 13:07:36 +01001267 InList("*", c.config.productVariables.JavaCoveragePaths) ||
1268 HasAnyPrefix(path, c.config.productVariables.JavaCoveragePaths) {
1269 coverage = true
1270 }
Roland Levillainf6cc2612020-07-09 16:58:14 +01001271 if coverage && len(c.config.productVariables.JavaCoverageExcludePaths) > 0 {
Roland Levillainada12702020-06-09 13:07:36 +01001272 if HasAnyPrefix(path, c.config.productVariables.JavaCoverageExcludePaths) {
1273 coverage = false
1274 }
1275 }
1276 return coverage
1277}
1278
Colin Cross1a6acd42020-06-16 17:51:46 -07001279// Returns true if gcov or clang coverage is enabled.
Dan Willemsen581341d2017-02-09 16:16:31 -08001280func (c *deviceConfig) NativeCoverageEnabled() bool {
Colin Cross1a6acd42020-06-16 17:51:46 -07001281 return Bool(c.config.productVariables.GcovCoverage) ||
1282 Bool(c.config.productVariables.ClangCoverage)
Dan Willemsen581341d2017-02-09 16:16:31 -08001283}
1284
Oliver Nguyen1382ab62019-12-06 15:22:41 -08001285func (c *deviceConfig) ClangCoverageEnabled() bool {
1286 return Bool(c.config.productVariables.ClangCoverage)
1287}
1288
Pirama Arumuga Nainarb37ae582022-01-26 22:14:32 -08001289func (c *deviceConfig) ClangCoverageContinuousMode() bool {
1290 return Bool(c.config.productVariables.ClangCoverageContinuousMode)
1291}
1292
Colin Cross1a6acd42020-06-16 17:51:46 -07001293func (c *deviceConfig) GcovCoverageEnabled() bool {
1294 return Bool(c.config.productVariables.GcovCoverage)
1295}
1296
Roland Levillain4f5297b2020-06-09 12:44:06 +01001297// NativeCoverageEnabledForPath returns whether (GCOV- or Clang-based) native
1298// code coverage is enabled for path. By default, coverage is not enabled for a
1299// given path unless it is part of the NativeCoveragePaths product variable (and
1300// not part of the NativeCoverageExcludePaths product variable). Value "*" in
1301// NativeCoveragePaths represents any path.
1302func (c *deviceConfig) NativeCoverageEnabledForPath(path string) bool {
Ryan Campbell469a18a2017-02-27 09:01:54 -08001303 coverage := false
Roland Levillainf6cc2612020-07-09 16:58:14 +01001304 if len(c.config.productVariables.NativeCoveragePaths) > 0 {
Roland Levillain4f5297b2020-06-09 12:44:06 +01001305 if InList("*", c.config.productVariables.NativeCoveragePaths) || HasAnyPrefix(path, c.config.productVariables.NativeCoveragePaths) {
Ivan Lozano5f595532017-07-13 14:46:05 -07001306 coverage = true
Dan Willemsen581341d2017-02-09 16:16:31 -08001307 }
1308 }
Roland Levillainf6cc2612020-07-09 16:58:14 +01001309 if coverage && len(c.config.productVariables.NativeCoverageExcludePaths) > 0 {
Roland Levillain4f5297b2020-06-09 12:44:06 +01001310 if HasAnyPrefix(path, c.config.productVariables.NativeCoverageExcludePaths) {
Ivan Lozano5f595532017-07-13 14:46:05 -07001311 coverage = false
Ryan Campbell469a18a2017-02-27 09:01:54 -08001312 }
1313 }
1314 return coverage
Dan Willemsen581341d2017-02-09 16:16:31 -08001315}
Ivan Lozano5f595532017-07-13 14:46:05 -07001316
Yi Kongeb8efc92021-12-09 18:06:29 +08001317func (c *deviceConfig) AfdoAdditionalProfileDirs() []string {
1318 return c.config.productVariables.AfdoAdditionalProfileDirs
1319}
1320
Pirama Arumuga Nainar49540802018-01-29 23:11:42 -08001321func (c *deviceConfig) PgoAdditionalProfileDirs() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001322 return c.config.productVariables.PgoAdditionalProfileDirs
Pirama Arumuga Nainar49540802018-01-29 23:11:42 -08001323}
1324
Tri Vo35a51432018-03-25 20:00:00 -07001325func (c *deviceConfig) VendorSepolicyDirs() []string {
1326 return c.config.productVariables.BoardVendorSepolicyDirs
1327}
1328
1329func (c *deviceConfig) OdmSepolicyDirs() []string {
1330 return c.config.productVariables.BoardOdmSepolicyDirs
1331}
1332
Felixa20a8752020-05-17 18:28:35 +02001333func (c *deviceConfig) SystemExtPublicSepolicyDirs() []string {
1334 return c.config.productVariables.SystemExtPublicSepolicyDirs
Tri Vo35a51432018-03-25 20:00:00 -07001335}
1336
Felixa20a8752020-05-17 18:28:35 +02001337func (c *deviceConfig) SystemExtPrivateSepolicyDirs() []string {
1338 return c.config.productVariables.SystemExtPrivateSepolicyDirs
Tri Vo35a51432018-03-25 20:00:00 -07001339}
1340
Inseob Kim0866b002019-04-15 20:21:29 +09001341func (c *deviceConfig) SepolicyM4Defs() []string {
1342 return c.config.productVariables.BoardSepolicyM4Defs
1343}
1344
Jiyong Park7f67f482019-01-05 12:57:48 +09001345func (c *deviceConfig) OverrideManifestPackageNameFor(name string) (manifestName string, overridden bool) {
Jaewoong Jung2ad817c2019-01-18 14:27:16 -08001346 return findOverrideValue(c.config.productVariables.ManifestPackageNameOverrides, name,
1347 "invalid override rule %q in PRODUCT_MANIFEST_PACKAGE_NAME_OVERRIDES should be <module_name>:<manifest_name>")
1348}
1349
1350func (c *deviceConfig) OverrideCertificateFor(name string) (certificatePath string, overridden bool) {
Jaewoong Jungacb6db32019-02-28 16:22:30 +00001351 return findOverrideValue(c.config.productVariables.CertificateOverrides, name,
Jaewoong Jung2ad817c2019-01-18 14:27:16 -08001352 "invalid override rule %q in PRODUCT_CERTIFICATE_OVERRIDES should be <module_name>:<certificate_module_name>")
1353}
1354
Jaewoong Jung9d22a912019-01-23 16:27:47 -08001355func (c *deviceConfig) OverridePackageNameFor(name string) string {
1356 newName, overridden := findOverrideValue(
1357 c.config.productVariables.PackageNameOverrides,
1358 name,
1359 "invalid override rule %q in PRODUCT_PACKAGE_NAME_OVERRIDES should be <module_name>:<package_name>")
1360 if overridden {
1361 return newName
1362 }
1363 return name
1364}
1365
Jaewoong Jung2ad817c2019-01-18 14:27:16 -08001366func findOverrideValue(overrides []string, name string, errorMsg string) (newValue string, overridden bool) {
Jiyong Park7f67f482019-01-05 12:57:48 +09001367 if overrides == nil || len(overrides) == 0 {
1368 return "", false
1369 }
1370 for _, o := range overrides {
1371 split := strings.Split(o, ":")
1372 if len(split) != 2 {
1373 // This shouldn't happen as this is first checked in make, but just in case.
Jaewoong Jung2ad817c2019-01-18 14:27:16 -08001374 panic(fmt.Errorf(errorMsg, o))
Jiyong Park7f67f482019-01-05 12:57:48 +09001375 }
1376 if matchPattern(split[0], name) {
1377 return substPattern(split[0], split[1], name), true
1378 }
1379 }
1380 return "", false
1381}
1382
Albert Martineefabcf2022-03-21 20:11:16 +00001383func (c *deviceConfig) ApexGlobalMinSdkVersionOverride() string {
1384 return String(c.config.productVariables.ApexGlobalMinSdkVersionOverride)
1385}
1386
Ivan Lozano5f595532017-07-13 14:46:05 -07001387func (c *config) IntegerOverflowDisabledForPath(path string) bool {
Roland Levillainf6cc2612020-07-09 16:58:14 +01001388 if len(c.productVariables.IntegerOverflowExcludePaths) == 0 {
Ivan Lozano5f595532017-07-13 14:46:05 -07001389 return false
1390 }
Jaewoong Jung3aff5782020-02-11 07:54:35 -08001391 return HasAnyPrefix(path, c.productVariables.IntegerOverflowExcludePaths)
Ivan Lozano5f595532017-07-13 14:46:05 -07001392}
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001393
1394func (c *config) CFIDisabledForPath(path string) bool {
Roland Levillainf6cc2612020-07-09 16:58:14 +01001395 if len(c.productVariables.CFIExcludePaths) == 0 {
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001396 return false
1397 }
Jaewoong Jung3aff5782020-02-11 07:54:35 -08001398 return HasAnyPrefix(path, c.productVariables.CFIExcludePaths)
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001399}
1400
1401func (c *config) CFIEnabledForPath(path string) bool {
Roland Levillainf6cc2612020-07-09 16:58:14 +01001402 if len(c.productVariables.CFIIncludePaths) == 0 {
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001403 return false
1404 }
Evgenii Stepanov779b64e2021-04-09 14:33:10 -07001405 return HasAnyPrefix(path, c.productVariables.CFIIncludePaths) && !c.CFIDisabledForPath(path)
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001406}
Colin Crosse15ddaf2017-12-04 11:24:31 -08001407
Evgenii Stepanov4beaa0c2021-01-05 16:41:26 -08001408func (c *config) MemtagHeapDisabledForPath(path string) bool {
1409 if len(c.productVariables.MemtagHeapExcludePaths) == 0 {
1410 return false
1411 }
1412 return HasAnyPrefix(path, c.productVariables.MemtagHeapExcludePaths)
1413}
1414
1415func (c *config) MemtagHeapAsyncEnabledForPath(path string) bool {
1416 if len(c.productVariables.MemtagHeapAsyncIncludePaths) == 0 {
1417 return false
1418 }
Evgenii Stepanov779b64e2021-04-09 14:33:10 -07001419 return HasAnyPrefix(path, c.productVariables.MemtagHeapAsyncIncludePaths) && !c.MemtagHeapDisabledForPath(path)
Evgenii Stepanov4beaa0c2021-01-05 16:41:26 -08001420}
1421
1422func (c *config) MemtagHeapSyncEnabledForPath(path string) bool {
1423 if len(c.productVariables.MemtagHeapSyncIncludePaths) == 0 {
1424 return false
1425 }
Evgenii Stepanov779b64e2021-04-09 14:33:10 -07001426 return HasAnyPrefix(path, c.productVariables.MemtagHeapSyncIncludePaths) && !c.MemtagHeapDisabledForPath(path)
Evgenii Stepanov4beaa0c2021-01-05 16:41:26 -08001427}
1428
Dan Willemsen0fe78662018-03-26 12:41:18 -07001429func (c *config) VendorConfig(name string) VendorConfig {
Colin Cross9d34f352019-11-22 16:03:51 -08001430 return soongconfig.Config(c.productVariables.VendorVars[name])
Dan Willemsen0fe78662018-03-26 12:41:18 -07001431}
1432
Colin Cross395f2cf2018-10-24 16:10:32 -07001433func (c *config) NdkAbis() bool {
1434 return Bool(c.productVariables.Ndk_abis)
1435}
1436
Martin Stjernholmc1ecc432019-11-15 15:00:31 +00001437func (c *config) AmlAbis() bool {
1438 return Bool(c.productVariables.Aml_abis)
1439}
1440
Jiyong Park8fd61922018-11-08 02:50:25 +09001441func (c *config) FlattenApex() bool {
Roland Levillaina3863212019-08-12 19:56:16 +01001442 return Bool(c.productVariables.Flatten_apex)
Jiyong Park8fd61922018-11-08 02:50:25 +09001443}
1444
Jiyong Park4da07972021-01-05 21:01:11 +09001445func (c *config) ForceApexSymlinkOptimization() bool {
1446 return Bool(c.productVariables.ForceApexSymlinkOptimization)
1447}
1448
Mohammad Samiul Islam3cd005d2020-11-26 13:32:26 +00001449func (c *config) CompressedApex() bool {
1450 return Bool(c.productVariables.CompressedApex)
1451}
1452
Jeongik Chac9464142019-01-07 12:07:27 +09001453func (c *config) EnforceSystemCertificate() bool {
1454 return Bool(c.productVariables.EnforceSystemCertificate)
1455}
1456
Colin Cross440e0d02020-06-11 11:32:11 -07001457func (c *config) EnforceSystemCertificateAllowList() []string {
1458 return c.productVariables.EnforceSystemCertificateAllowList
Jeongik Chac9464142019-01-07 12:07:27 +09001459}
1460
Jeongik Cha2cc570d2019-10-29 15:44:45 +09001461func (c *config) EnforceProductPartitionInterface() bool {
1462 return Bool(c.productVariables.EnforceProductPartitionInterface)
1463}
1464
JaeMan Parkff715562020-10-19 17:25:58 +09001465func (c *config) EnforceInterPartitionJavaSdkLibrary() bool {
1466 return Bool(c.productVariables.EnforceInterPartitionJavaSdkLibrary)
1467}
1468
1469func (c *config) InterPartitionJavaLibraryAllowList() []string {
1470 return c.productVariables.InterPartitionJavaLibraryAllowList
1471}
1472
Jooyung Han3ab2c3e2019-12-05 16:27:44 +09001473func (c *config) InstallExtraFlattenedApexes() bool {
1474 return Bool(c.productVariables.InstallExtraFlattenedApexes)
1475}
1476
Colin Crossf24a22a2019-01-31 14:12:44 -08001477func (c *config) ProductHiddenAPIStubs() []string {
1478 return c.productVariables.ProductHiddenAPIStubs
Colin Cross8faf8fc2019-01-16 15:15:52 -08001479}
1480
Colin Crossf24a22a2019-01-31 14:12:44 -08001481func (c *config) ProductHiddenAPIStubsSystem() []string {
1482 return c.productVariables.ProductHiddenAPIStubsSystem
Colin Cross8faf8fc2019-01-16 15:15:52 -08001483}
1484
Colin Crossf24a22a2019-01-31 14:12:44 -08001485func (c *config) ProductHiddenAPIStubsTest() []string {
1486 return c.productVariables.ProductHiddenAPIStubsTest
Colin Cross8faf8fc2019-01-16 15:15:52 -08001487}
Dan Willemsen71c74602019-04-10 12:27:35 -07001488
Dan Willemsen54879d12019-04-18 10:08:46 -07001489func (c *deviceConfig) TargetFSConfigGen() []string {
Dan Willemsen71c74602019-04-10 12:27:35 -07001490 return c.config.productVariables.TargetFSConfigGen
1491}
Inseob Kim0866b002019-04-15 20:21:29 +09001492
1493func (c *config) ProductPublicSepolicyDirs() []string {
1494 return c.productVariables.ProductPublicSepolicyDirs
1495}
1496
1497func (c *config) ProductPrivateSepolicyDirs() []string {
1498 return c.productVariables.ProductPrivateSepolicyDirs
1499}
1500
Colin Cross50ddcc42019-05-16 12:28:22 -07001501func (c *config) MissingUsesLibraries() []string {
1502 return c.productVariables.MissingUsesLibraries
1503}
1504
Inseob Kim5eb7ee92022-04-27 10:30:34 +09001505func (c *config) TargetMultitreeUpdateMeta() bool {
1506 return c.productVariables.MultitreeUpdateMeta
1507}
1508
Inseob Kim1f086e22019-05-09 13:29:15 +09001509func (c *deviceConfig) DeviceArch() string {
1510 return String(c.config.productVariables.DeviceArch)
1511}
1512
1513func (c *deviceConfig) DeviceArchVariant() string {
1514 return String(c.config.productVariables.DeviceArchVariant)
1515}
1516
1517func (c *deviceConfig) DeviceSecondaryArch() string {
1518 return String(c.config.productVariables.DeviceSecondaryArch)
1519}
1520
1521func (c *deviceConfig) DeviceSecondaryArchVariant() string {
1522 return String(c.config.productVariables.DeviceSecondaryArchVariant)
1523}
Yifan Hong82db7352020-01-21 16:12:26 -08001524
1525func (c *deviceConfig) BoardUsesRecoveryAsBoot() bool {
1526 return Bool(c.config.productVariables.BoardUsesRecoveryAsBoot)
1527}
Yifan Hong97365ee2020-07-29 09:51:57 -07001528
1529func (c *deviceConfig) BoardKernelBinaries() []string {
1530 return c.config.productVariables.BoardKernelBinaries
1531}
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001532
Yifan Hong42bef8d2020-08-05 14:36:09 -07001533func (c *deviceConfig) BoardKernelModuleInterfaceVersions() []string {
1534 return c.config.productVariables.BoardKernelModuleInterfaceVersions
1535}
1536
Yifan Hongdd8dacc2020-10-21 15:40:17 -07001537func (c *deviceConfig) BoardMoveRecoveryResourcesToVendorBoot() bool {
1538 return Bool(c.config.productVariables.BoardMoveRecoveryResourcesToVendorBoot)
1539}
1540
Inseob Kim16ebd5a2020-12-09 23:08:17 +09001541func (c *deviceConfig) PlatformSepolicyVersion() string {
1542 return String(c.config.productVariables.PlatformSepolicyVersion)
1543}
1544
Inseob Kima10ef272021-09-15 03:04:53 +00001545func (c *deviceConfig) TotSepolicyVersion() string {
1546 return String(c.config.productVariables.TotSepolicyVersion)
1547}
1548
Inseob Kim843f6642022-01-07 09:11:23 +09001549func (c *deviceConfig) PlatformSepolicyCompatVersions() []string {
1550 return c.config.productVariables.PlatformSepolicyCompatVersions
1551}
1552
Inseob Kim16ebd5a2020-12-09 23:08:17 +09001553func (c *deviceConfig) BoardSepolicyVers() string {
Inseob Kim0c4eec82021-03-22 22:33:40 +09001554 if ver := String(c.config.productVariables.BoardSepolicyVers); ver != "" {
1555 return ver
1556 }
1557 return c.PlatformSepolicyVersion()
Inseob Kim16ebd5a2020-12-09 23:08:17 +09001558}
1559
Inseob Kim14178802021-12-08 22:53:31 +09001560func (c *deviceConfig) BoardPlatVendorPolicy() []string {
1561 return c.config.productVariables.BoardPlatVendorPolicy
1562}
1563
Inseob Kim16ebd5a2020-12-09 23:08:17 +09001564func (c *deviceConfig) BoardReqdMaskPolicy() []string {
1565 return c.config.productVariables.BoardReqdMaskPolicy
1566}
1567
Inseob Kim0f46e7c2021-12-15 22:48:14 +09001568func (c *deviceConfig) BoardSystemExtPublicPrebuiltDirs() []string {
1569 return c.config.productVariables.BoardSystemExtPublicPrebuiltDirs
1570}
1571
1572func (c *deviceConfig) BoardSystemExtPrivatePrebuiltDirs() []string {
1573 return c.config.productVariables.BoardSystemExtPrivatePrebuiltDirs
1574}
1575
1576func (c *deviceConfig) BoardProductPublicPrebuiltDirs() []string {
1577 return c.config.productVariables.BoardProductPublicPrebuiltDirs
1578}
1579
1580func (c *deviceConfig) BoardProductPrivatePrebuiltDirs() []string {
1581 return c.config.productVariables.BoardProductPrivatePrebuiltDirs
1582}
1583
Inseob Kim1a0afcc2022-02-14 23:10:51 +09001584func (c *deviceConfig) SystemExtSepolicyPrebuiltApiDir() string {
1585 return String(c.config.productVariables.SystemExtSepolicyPrebuiltApiDir)
1586}
1587
1588func (c *deviceConfig) ProductSepolicyPrebuiltApiDir() string {
1589 return String(c.config.productVariables.ProductSepolicyPrebuiltApiDir)
1590}
1591
1592func (c *deviceConfig) IsPartnerTrebleSepolicyTestEnabled() bool {
1593 return c.SystemExtSepolicyPrebuiltApiDir() != "" || c.ProductSepolicyPrebuiltApiDir() != ""
1594}
1595
Inseob Kim7cf14652021-01-06 23:06:52 +09001596func (c *deviceConfig) DirectedVendorSnapshot() bool {
1597 return c.config.productVariables.DirectedVendorSnapshot
1598}
1599
1600func (c *deviceConfig) VendorSnapshotModules() map[string]bool {
1601 return c.config.productVariables.VendorSnapshotModules
1602}
1603
Jose Galmes4c6895e2021-02-09 07:44:30 -08001604func (c *deviceConfig) DirectedRecoverySnapshot() bool {
1605 return c.config.productVariables.DirectedRecoverySnapshot
1606}
1607
1608func (c *deviceConfig) RecoverySnapshotModules() map[string]bool {
1609 return c.config.productVariables.RecoverySnapshotModules
1610}
1611
Justin DeMartino383bfb32021-02-24 10:49:43 -08001612func createDirsMap(previous map[string]bool, dirs []string) (map[string]bool, error) {
1613 var ret = make(map[string]bool)
1614 for _, dir := range dirs {
1615 clean := filepath.Clean(dir)
1616 if previous[clean] || ret[clean] {
1617 return nil, fmt.Errorf("Duplicate entry %s", dir)
1618 }
1619 ret[clean] = true
1620 }
1621 return ret, nil
1622}
1623
1624func (c *deviceConfig) createDirsMapOnce(onceKey OnceKey, previous map[string]bool, dirs []string) map[string]bool {
1625 dirMap := c.Once(onceKey, func() interface{} {
1626 ret, err := createDirsMap(previous, dirs)
1627 if err != nil {
1628 panic(fmt.Errorf("%s: %w", onceKey.key, err))
1629 }
1630 return ret
1631 })
1632 if dirMap == nil {
1633 return nil
1634 }
1635 return dirMap.(map[string]bool)
1636}
1637
1638var vendorSnapshotDirsExcludedKey = NewOnceKey("VendorSnapshotDirsExcludedMap")
1639
1640func (c *deviceConfig) VendorSnapshotDirsExcludedMap() map[string]bool {
1641 return c.createDirsMapOnce(vendorSnapshotDirsExcludedKey, nil,
1642 c.config.productVariables.VendorSnapshotDirsExcluded)
1643}
1644
1645var vendorSnapshotDirsIncludedKey = NewOnceKey("VendorSnapshotDirsIncludedMap")
1646
1647func (c *deviceConfig) VendorSnapshotDirsIncludedMap() map[string]bool {
1648 excludedMap := c.VendorSnapshotDirsExcludedMap()
1649 return c.createDirsMapOnce(vendorSnapshotDirsIncludedKey, excludedMap,
1650 c.config.productVariables.VendorSnapshotDirsIncluded)
1651}
1652
1653var recoverySnapshotDirsExcludedKey = NewOnceKey("RecoverySnapshotDirsExcludedMap")
1654
1655func (c *deviceConfig) RecoverySnapshotDirsExcludedMap() map[string]bool {
1656 return c.createDirsMapOnce(recoverySnapshotDirsExcludedKey, nil,
1657 c.config.productVariables.RecoverySnapshotDirsExcluded)
1658}
1659
1660var recoverySnapshotDirsIncludedKey = NewOnceKey("RecoverySnapshotDirsIncludedMap")
1661
1662func (c *deviceConfig) RecoverySnapshotDirsIncludedMap() map[string]bool {
1663 excludedMap := c.RecoverySnapshotDirsExcludedMap()
1664 return c.createDirsMapOnce(recoverySnapshotDirsIncludedKey, excludedMap,
1665 c.config.productVariables.RecoverySnapshotDirsIncluded)
1666}
1667
Rob Seymour925aa092021-08-10 20:42:03 +00001668func (c *deviceConfig) HostFakeSnapshotEnabled() bool {
1669 return c.config.productVariables.HostFakeSnapshotEnabled
1670}
1671
Inseob Kim60c32f02020-12-21 22:53:05 +09001672func (c *deviceConfig) ShippingApiLevel() ApiLevel {
1673 if c.config.productVariables.ShippingApiLevel == nil {
1674 return NoneApiLevel
1675 }
1676 apiLevel, _ := strconv.Atoi(*c.config.productVariables.ShippingApiLevel)
1677 return uncheckedFinalApiLevel(apiLevel)
1678}
1679
Inseob Kim67e5add192021-03-17 18:05:33 +09001680func (c *deviceConfig) BuildBrokenEnforceSyspropOwner() bool {
1681 return c.config.productVariables.BuildBrokenEnforceSyspropOwner
1682}
1683
1684func (c *deviceConfig) BuildBrokenTrebleSyspropNeverallow() bool {
1685 return c.config.productVariables.BuildBrokenTrebleSyspropNeverallow
1686}
1687
Hridya Valsaraju5a5c7d52021-04-02 16:45:24 -07001688func (c *deviceConfig) BuildDebugfsRestrictionsEnabled() bool {
1689 return c.config.productVariables.BuildDebugfsRestrictionsEnabled
1690}
1691
Inseob Kim0cac7b42021-02-03 18:16:46 +09001692func (c *deviceConfig) BuildBrokenVendorPropertyNamespace() bool {
1693 return c.config.productVariables.BuildBrokenVendorPropertyNamespace
1694}
1695
Liz Kammer619be462022-01-28 15:13:39 -05001696func (c *deviceConfig) BuildBrokenInputDir(name string) bool {
1697 return InList(name, c.config.productVariables.BuildBrokenInputDirModules)
1698}
1699
Vinh Tran140d5882022-06-10 14:23:27 -04001700func (c *deviceConfig) BuildBrokenDepfile() bool {
1701 return Bool(c.config.productVariables.BuildBrokenDepfile)
1702}
1703
Inseob Kim67e5add192021-03-17 18:05:33 +09001704func (c *deviceConfig) RequiresInsecureExecmemForSwiftshader() bool {
1705 return c.config.productVariables.RequiresInsecureExecmemForSwiftshader
1706}
1707
1708func (c *config) SelinuxIgnoreNeverallows() bool {
1709 return c.productVariables.SelinuxIgnoreNeverallows
1710}
1711
1712func (c *deviceConfig) SepolicySplit() bool {
1713 return c.config.productVariables.SepolicySplit
1714}
1715
Inseob Kima10ef272021-09-15 03:04:53 +00001716func (c *deviceConfig) SepolicyFreezeTestExtraDirs() []string {
1717 return c.config.productVariables.SepolicyFreezeTestExtraDirs
1718}
1719
1720func (c *deviceConfig) SepolicyFreezeTestExtraPrebuiltDirs() []string {
1721 return c.config.productVariables.SepolicyFreezeTestExtraPrebuiltDirs
1722}
1723
Jiyong Parkd163d4d2021-10-12 16:47:43 +09001724func (c *deviceConfig) GenerateAidlNdkPlatformBackend() bool {
1725 return c.config.productVariables.GenerateAidlNdkPlatformBackend
1726}
1727
Christopher Ferris98f10222022-07-13 23:16:52 -07001728func (c *config) IgnorePrefer32OnDevice() bool {
1729 return c.productVariables.IgnorePrefer32OnDevice
1730}
1731
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001732// The ConfiguredJarList struct provides methods for handling a list of (apex, jar) pairs.
1733// Such lists are used in the build system for things like bootclasspath jars or system server jars.
1734// The apex part is either an apex name, or a special names "platform" or "system_ext". Jar is a
1735// module name. The pairs come from Make product variables as a list of colon-separated strings.
1736//
1737// Examples:
1738// - "com.android.art:core-oj"
1739// - "platform:framework"
1740// - "system_ext:foo"
1741//
1742type ConfiguredJarList struct {
Jingwen Chenc711fec2020-11-22 23:52:50 -05001743 // A list of apex components, which can be an apex name,
1744 // or special names like "platform" or "system_ext".
1745 apexes []string
1746
1747 // A list of jar module name components.
1748 jars []string
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001749}
1750
Jingwen Chenc711fec2020-11-22 23:52:50 -05001751// Len returns the length of the list of jars.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001752func (l *ConfiguredJarList) Len() int {
1753 return len(l.jars)
1754}
1755
Jingwen Chenc711fec2020-11-22 23:52:50 -05001756// Jar returns the idx-th jar component of (apex, jar) pairs.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001757func (l *ConfiguredJarList) Jar(idx int) string {
1758 return l.jars[idx]
1759}
1760
Jingwen Chenc711fec2020-11-22 23:52:50 -05001761// Apex returns the idx-th apex component of (apex, jar) pairs.
Paul Duffin9a89a2a2020-10-28 19:20:06 +00001762func (l *ConfiguredJarList) Apex(idx int) string {
1763 return l.apexes[idx]
1764}
1765
Jingwen Chenc711fec2020-11-22 23:52:50 -05001766// ContainsJar returns true if the (apex, jar) pairs contains a pair with the
1767// given jar module name.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001768func (l *ConfiguredJarList) ContainsJar(jar string) bool {
1769 return InList(jar, l.jars)
1770}
1771
1772// If the list contains the given (apex, jar) pair.
1773func (l *ConfiguredJarList) containsApexJarPair(apex, jar string) bool {
1774 for i := 0; i < l.Len(); i++ {
Paul Duffin1e8c6072020-10-23 18:28:55 +01001775 if apex == l.apexes[i] && jar == l.jars[i] {
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001776 return true
1777 }
1778 }
1779 return false
1780}
1781
satayev3db35472021-05-06 23:59:58 +01001782// ApexOfJar returns the apex component of the first pair with the given jar name on the list, or
1783// an empty string if not found.
1784func (l *ConfiguredJarList) ApexOfJar(jar string) string {
1785 if idx := IndexList(jar, l.jars); idx != -1 {
1786 return l.Apex(IndexList(jar, l.jars))
1787 }
1788 return ""
1789}
1790
Jingwen Chenc711fec2020-11-22 23:52:50 -05001791// IndexOfJar returns the first pair with the given jar name on the list, or -1
1792// if not found.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001793func (l *ConfiguredJarList) IndexOfJar(jar string) int {
1794 return IndexList(jar, l.jars)
1795}
1796
Paul Duffin7d584e92020-10-23 18:26:03 +01001797func copyAndAppend(list []string, item string) []string {
1798 // Create the result list to be 1 longer than the input.
1799 result := make([]string, len(list)+1)
1800
1801 // Copy the whole input list into the result.
1802 count := copy(result, list)
1803
1804 // Insert the extra item at the end.
1805 result[count] = item
1806
1807 return result
1808}
1809
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001810// Append an (apex, jar) pair to the list.
Paul Duffin7d584e92020-10-23 18:26:03 +01001811func (l *ConfiguredJarList) Append(apex string, jar string) ConfiguredJarList {
1812 // Create a copy of the backing arrays before appending to avoid sharing backing
1813 // arrays that are mutated across instances.
1814 apexes := copyAndAppend(l.apexes, apex)
1815 jars := copyAndAppend(l.jars, jar)
1816
1817 return ConfiguredJarList{apexes, jars}
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001818}
1819
Jiakai Zhang519c5c82021-09-16 06:15:39 +00001820// Append a list of (apex, jar) pairs to the list.
Jiakai Zhang389a6472021-12-14 18:54:06 +00001821func (l *ConfiguredJarList) AppendList(other *ConfiguredJarList) ConfiguredJarList {
Jiakai Zhang519c5c82021-09-16 06:15:39 +00001822 apexes := make([]string, 0, l.Len()+other.Len())
1823 jars := make([]string, 0, l.Len()+other.Len())
1824
1825 apexes = append(apexes, l.apexes...)
1826 jars = append(jars, l.jars...)
1827
1828 apexes = append(apexes, other.apexes...)
1829 jars = append(jars, other.jars...)
1830
1831 return ConfiguredJarList{apexes, jars}
1832}
1833
Jingwen Chenc711fec2020-11-22 23:52:50 -05001834// RemoveList filters out a list of (apex, jar) pairs from the receiving list of pairs.
Paul Duffin7d584e92020-10-23 18:26:03 +01001835func (l *ConfiguredJarList) RemoveList(list ConfiguredJarList) ConfiguredJarList {
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001836 apexes := make([]string, 0, l.Len())
1837 jars := make([]string, 0, l.Len())
1838
1839 for i, jar := range l.jars {
Paul Duffin1e8c6072020-10-23 18:28:55 +01001840 apex := l.apexes[i]
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001841 if !list.containsApexJarPair(apex, jar) {
1842 apexes = append(apexes, apex)
1843 jars = append(jars, jar)
1844 }
1845 }
1846
Paul Duffin7d584e92020-10-23 18:26:03 +01001847 return ConfiguredJarList{apexes, jars}
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001848}
1849
satayevd34eb0c2021-08-06 13:20:28 +01001850// Filter keeps the entries if a jar appears in the given list of jars to keep. Returns a new list
1851// and any remaining jars that are not on this list.
1852func (l *ConfiguredJarList) Filter(jarsToKeep []string) (ConfiguredJarList, []string) {
satayev8fab6f82021-05-07 00:10:33 +01001853 var apexes []string
1854 var jars []string
1855
1856 for i, jar := range l.jars {
1857 if InList(jar, jarsToKeep) {
1858 apexes = append(apexes, l.apexes[i])
1859 jars = append(jars, jar)
1860 }
1861 }
1862
satayevd34eb0c2021-08-06 13:20:28 +01001863 return ConfiguredJarList{apexes, jars}, RemoveListFromList(jarsToKeep, jars)
satayev8fab6f82021-05-07 00:10:33 +01001864}
1865
Jingwen Chenc711fec2020-11-22 23:52:50 -05001866// CopyOfJars returns a copy of the list of strings containing jar module name
1867// components.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001868func (l *ConfiguredJarList) CopyOfJars() []string {
1869 return CopyOf(l.jars)
1870}
1871
Jingwen Chenc711fec2020-11-22 23:52:50 -05001872// CopyOfApexJarPairs returns a copy of the list of strings with colon-separated
1873// (apex, jar) pairs.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001874func (l *ConfiguredJarList) CopyOfApexJarPairs() []string {
1875 pairs := make([]string, 0, l.Len())
1876
1877 for i, jar := range l.jars {
Paul Duffin1e8c6072020-10-23 18:28:55 +01001878 apex := l.apexes[i]
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001879 pairs = append(pairs, apex+":"+jar)
1880 }
1881
1882 return pairs
1883}
1884
Jingwen Chenc711fec2020-11-22 23:52:50 -05001885// BuildPaths returns a list of build paths based on the given directory prefix.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001886func (l *ConfiguredJarList) BuildPaths(ctx PathContext, dir OutputPath) WritablePaths {
1887 paths := make(WritablePaths, l.Len())
1888 for i, jar := range l.jars {
1889 paths[i] = dir.Join(ctx, ModuleStem(jar)+".jar")
1890 }
1891 return paths
1892}
1893
Paul Duffin5f148ca2021-06-02 17:24:22 +01001894// BuildPathsByModule returns a map from module name to build paths based on the given directory
1895// prefix.
1896func (l *ConfiguredJarList) BuildPathsByModule(ctx PathContext, dir OutputPath) map[string]WritablePath {
1897 paths := map[string]WritablePath{}
1898 for _, jar := range l.jars {
1899 paths[jar] = dir.Join(ctx, ModuleStem(jar)+".jar")
1900 }
1901 return paths
1902}
1903
Jingwen Chenc711fec2020-11-22 23:52:50 -05001904// UnmarshalJSON converts JSON configuration from raw bytes into a
1905// ConfiguredJarList structure.
Paul Duffin69d1fb12020-10-23 21:14:20 +01001906func (l *ConfiguredJarList) UnmarshalJSON(b []byte) error {
1907 // Try and unmarshal into a []string each item of which contains a pair
1908 // <apex>:<jar>.
1909 var list []string
1910 err := json.Unmarshal(b, &list)
1911 if err != nil {
1912 // Did not work so return
1913 return err
1914 }
1915
1916 apexes, jars, err := splitListOfPairsIntoPairOfLists(list)
1917 if err != nil {
1918 return err
1919 }
1920 l.apexes = apexes
1921 l.jars = jars
1922 return nil
1923}
1924
Lukacs T. Berki720b3962021-03-17 13:34:30 +01001925func (l *ConfiguredJarList) MarshalJSON() ([]byte, error) {
1926 if len(l.apexes) != len(l.jars) {
1927 return nil, errors.New(fmt.Sprintf("Inconsistent ConfiguredJarList: apexes: %q, jars: %q", l.apexes, l.jars))
1928 }
1929
1930 list := make([]string, 0, len(l.apexes))
1931
1932 for i := 0; i < len(l.apexes); i++ {
1933 list = append(list, l.apexes[i]+":"+l.jars[i])
1934 }
1935
1936 return json.Marshal(list)
1937}
1938
Jingwen Chenc711fec2020-11-22 23:52:50 -05001939// ModuleStem hardcodes the stem of framework-minus-apex to return "framework".
1940//
1941// TODO(b/139391334): hard coded until we find a good way to query the stem of a
1942// module before any other mutators are run.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001943func ModuleStem(module string) string {
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001944 if module == "framework-minus-apex" {
1945 return "framework"
1946 }
1947 return module
1948}
1949
Jingwen Chenc711fec2020-11-22 23:52:50 -05001950// DevicePaths computes the on-device paths for the list of (apex, jar) pairs,
1951// based on the operating system.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001952func (l *ConfiguredJarList) DevicePaths(cfg Config, ostype OsType) []string {
1953 paths := make([]string, l.Len())
1954 for i, jar := range l.jars {
1955 apex := l.apexes[i]
1956 name := ModuleStem(jar) + ".jar"
1957
1958 var subdir string
1959 if apex == "platform" {
1960 subdir = "system/framework"
1961 } else if apex == "system_ext" {
1962 subdir = "system_ext/framework"
1963 } else {
1964 subdir = filepath.Join("apex", apex, "javalib")
1965 }
1966
1967 if ostype.Class == Host {
1968 paths[i] = filepath.Join(cfg.Getenv("OUT_DIR"), "host", cfg.PrebuiltOS(), subdir, name)
1969 } else {
1970 paths[i] = filepath.Join("/", subdir, name)
1971 }
1972 }
1973 return paths
1974}
1975
Paul Duffin7d584e92020-10-23 18:26:03 +01001976func (l *ConfiguredJarList) String() string {
1977 var pairs []string
1978 for i := 0; i < l.Len(); i++ {
1979 pairs = append(pairs, l.apexes[i]+":"+l.jars[i])
1980 }
1981 return strings.Join(pairs, ",")
1982}
1983
Paul Duffin01416602020-10-23 21:04:03 +01001984func splitListOfPairsIntoPairOfLists(list []string) ([]string, []string, error) {
1985 // Now we need to populate this list by splitting each item in the slice of
1986 // pairs and appending them to the appropriate list of apexes or jars.
1987 apexes := make([]string, len(list))
1988 jars := make([]string, len(list))
1989
1990 for i, apexjar := range list {
1991 apex, jar, err := splitConfiguredJarPair(apexjar)
1992 if err != nil {
1993 return nil, nil, err
1994 }
1995 apexes[i] = apex
1996 jars[i] = jar
1997 }
1998
1999 return apexes, jars, nil
2000}
2001
Ulya Trafimovich249386a2020-07-01 14:31:13 +01002002// Expected format for apexJarValue = <apex name>:<jar name>
Paul Duffin01416602020-10-23 21:04:03 +01002003func splitConfiguredJarPair(str string) (string, string, error) {
Ulya Trafimovich249386a2020-07-01 14:31:13 +01002004 pair := strings.SplitN(str, ":", 2)
2005 if len(pair) == 2 {
Paul Duffin9c3ac962021-02-03 14:11:27 +00002006 apex := pair[0]
2007 jar := pair[1]
2008 if apex == "" {
2009 return apex, jar, fmt.Errorf("invalid apex '%s' in <apex>:<jar> pair '%s', expected format: <apex>:<jar>", apex, str)
2010 }
2011 return apex, jar, nil
Ulya Trafimovich249386a2020-07-01 14:31:13 +01002012 } else {
Paul Duffin01416602020-10-23 21:04:03 +01002013 return "error-apex", "error-jar", fmt.Errorf("malformed (apex, jar) pair: '%s', expected format: <apex>:<jar>", str)
Ulya Trafimovich249386a2020-07-01 14:31:13 +01002014 }
2015}
2016
Paul Duffin9c3ac962021-02-03 14:11:27 +00002017// CreateTestConfiguredJarList is a function to create ConfiguredJarList for tests.
Paul Duffine10dfa42020-10-23 21:23:44 +01002018func CreateTestConfiguredJarList(list []string) ConfiguredJarList {
Paul Duffin9c3ac962021-02-03 14:11:27 +00002019 // Create the ConfiguredJarList in as similar way as it is created at runtime by marshalling to
2020 // a json list of strings and then unmarshalling into a ConfiguredJarList instance.
2021 b, err := json.Marshal(list)
Paul Duffin01416602020-10-23 21:04:03 +01002022 if err != nil {
Paul Duffine10dfa42020-10-23 21:23:44 +01002023 panic(err)
Ulya Trafimovich249386a2020-07-01 14:31:13 +01002024 }
2025
Paul Duffin9c3ac962021-02-03 14:11:27 +00002026 var jarList ConfiguredJarList
2027 err = json.Unmarshal(b, &jarList)
2028 if err != nil {
2029 panic(err)
2030 }
2031
2032 return jarList
Ulya Trafimovich249386a2020-07-01 14:31:13 +01002033}
2034
Jingwen Chenc711fec2020-11-22 23:52:50 -05002035// EmptyConfiguredJarList returns an empty jar list.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01002036func EmptyConfiguredJarList() ConfiguredJarList {
2037 return ConfiguredJarList{}
2038}
2039
2040var earlyBootJarsKey = NewOnceKey("earlyBootJars")
2041
2042func (c *config) BootJars() []string {
2043 return c.Once(earlyBootJarsKey, func() interface{} {
Paul Duffin69d1fb12020-10-23 21:14:20 +01002044 list := c.productVariables.BootJars.CopyOfJars()
satayevd604b212021-07-21 14:23:52 +01002045 return append(list, c.productVariables.ApexBootJars.CopyOfJars()...)
Ulya Trafimovich249386a2020-07-01 14:31:13 +01002046 }).([]string)
2047}
Paul Duffin9a89a2a2020-10-28 19:20:06 +00002048
satayevd604b212021-07-21 14:23:52 +01002049func (c *config) NonApexBootJars() ConfiguredJarList {
Paul Duffin9a89a2a2020-10-28 19:20:06 +00002050 return c.productVariables.BootJars
2051}
2052
satayevd604b212021-07-21 14:23:52 +01002053func (c *config) ApexBootJars() ConfiguredJarList {
2054 return c.productVariables.ApexBootJars
Paul Duffin9a89a2a2020-10-28 19:20:06 +00002055}
Colin Cross77cdcfd2021-03-12 11:28:25 -08002056
2057func (c *config) RBEWrapper() string {
2058 return c.GetenvWithDefault("RBE_WRAPPER", remoteexec.DefaultWrapperPath)
2059}
Colin Cross9b698b62021-12-22 09:55:32 -08002060
2061// UseHostMusl returns true if the host target has been configured to build against musl libc.
2062func (c *config) UseHostMusl() bool {
2063 return Bool(c.productVariables.HostMusl)
2064}
MarkDacekff851b82022-04-21 18:33:17 +00002065
Chris Parsonsf874e462022-05-10 13:50:12 -04002066func (c *config) LogMixedBuild(ctx BaseModuleContext, useBazel bool) {
MarkDacekff851b82022-04-21 18:33:17 +00002067 moduleName := ctx.Module().Name()
2068 c.mixedBuildsLock.Lock()
2069 defer c.mixedBuildsLock.Unlock()
2070 if useBazel {
2071 c.mixedBuildEnabledModules[moduleName] = struct{}{}
2072 } else {
2073 c.mixedBuildDisabledModules[moduleName] = struct{}{}
2074 }
2075}