blob: 7fbfa3930a856d780cd6c2cc02626344e427994d [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"
Colin Cross3f40fa42015-01-30 17:27:36 -080027 "runtime"
Inseob Kim60c32f02020-12-21 22:53:05 +090028 "strconv"
Dan Willemsen34cc69e2015-09-23 15:26:20 -070029 "strings"
Colin Crossc1e86a32015-04-15 12:33:28 -070030 "sync"
Colin Cross6ff51382015-12-17 16:39:19 -080031
Colin Cross98be1bb2019-12-13 20:41:13 -080032 "github.com/google/blueprint"
Colin Crosse87040b2017-12-11 15:52:26 -080033 "github.com/google/blueprint/bootstrap"
Colin Cross98be1bb2019-12-13 20:41:13 -080034 "github.com/google/blueprint/pathtools"
Colin Cross6ff51382015-12-17 16:39:19 -080035 "github.com/google/blueprint/proptools"
Colin Cross9d34f352019-11-22 16:03:51 -080036
37 "android/soong/android/soongconfig"
Liz Kammer09f947d2021-05-12 14:51:49 -040038 "android/soong/bazel"
Colin Cross77cdcfd2021-03-12 11:28:25 -080039 "android/soong/remoteexec"
Colin Cross3f40fa42015-01-30 17:27:36 -080040)
41
Jingwen Chenc711fec2020-11-22 23:52:50 -050042// Bool re-exports proptools.Bool for the android package.
Colin Cross6ff51382015-12-17 16:39:19 -080043var Bool = proptools.Bool
Jingwen Chenc711fec2020-11-22 23:52:50 -050044
45// String re-exports proptools.String for the android package.
Jack He8cc71432016-12-08 15:45:07 -080046var String = proptools.String
Jingwen Chenc711fec2020-11-22 23:52:50 -050047
48// StringDefault re-exports proptools.StringDefault for the android package.
Jeongik Cha219141c2020-08-06 23:00:37 +090049var StringDefault = proptools.StringDefault
Jiyong Park6a927c42020-01-21 02:03:43 +090050
Jingwen Chenc711fec2020-11-22 23:52:50 -050051// FutureApiLevelInt is a placeholder constant for unreleased API levels.
Dan Albert0b176c82020-07-23 16:43:25 -070052const FutureApiLevelInt = 10000
53
Jingwen Chenc711fec2020-11-22 23:52:50 -050054// FutureApiLevel represents unreleased API levels.
Dan Albert0b176c82020-07-23 16:43:25 -070055var FutureApiLevel = ApiLevel{
56 value: "current",
57 number: FutureApiLevelInt,
58 isPreview: true,
59}
Colin Cross6ff51382015-12-17 16:39:19 -080060
Jingwen Chenc4d91bc2020-11-24 22:59:26 -050061// The product variables file name, containing product config from Kati.
Dan Willemsen87b17d12015-07-14 00:39:06 -070062const productVariablesFileName = "soong.variables"
Colin Cross3f40fa42015-01-30 17:27:36 -080063
Colin Cross9272ade2016-08-17 15:24:12 -070064// A Config object represents the entire build configuration for Android.
Colin Crossc3c0a492015-04-10 15:43:55 -070065type Config struct {
66 *config
67}
68
Lukacs T. Berkib078ade2021-08-31 10:42:08 +020069// SoongOutDir returns the build output directory for the configuration.
Lukacs T. Berki9f6c24a2021-08-26 15:07:24 +020070func (c Config) SoongOutDir() string {
71 return c.soongOutDir
Jeff Gastonefc1b412017-03-29 17:29:06 -070072}
73
Lukacs T. Berki9f6c24a2021-08-26 15:07:24 +020074func (c Config) OutDir() string {
75 return c.soongOutDir
Lukacs T. Berki89e9a162021-03-12 08:31:32 +010076}
77
Lukacs T. Berkiea1a31c2021-09-02 09:58:09 +020078func (c Config) RunGoTests() bool {
79 return c.runGoTests
80}
81
82func (c Config) UseValidationsForGoTests() bool {
83 return c.useValidationsForGoTests
84}
85
Lukacs T. Berki5f6cb1d2021-03-17 15:03:14 +010086func (c Config) DebugCompilation() bool {
87 return false // Never compile Go code in the main build for debugging
88}
89
Lukacs T. Berkiea1a31c2021-09-02 09:58:09 +020090func (c Config) Subninjas() []string {
91 return []string{}
92}
93
94func (c Config) PrimaryBuilderInvocations() []bootstrap.PrimaryBuilderInvocation {
95 return []bootstrap.PrimaryBuilderInvocation{}
96}
97
Jingwen Chenc711fec2020-11-22 23:52:50 -050098// A DeviceConfig object represents the configuration for a particular device
99// being built. For now there will only be one of these, but in the future there
100// may be multiple devices being built.
Colin Cross9272ade2016-08-17 15:24:12 -0700101type DeviceConfig struct {
102 *deviceConfig
103}
104
Jingwen Chenc711fec2020-11-22 23:52:50 -0500105// VendorConfig represents the configuration for vendor-specific behavior.
Colin Cross9d34f352019-11-22 16:03:51 -0800106type VendorConfig soongconfig.SoongConfig
Dan Willemsen0fe78662018-03-26 12:41:18 -0700107
Jingwen Chenc711fec2020-11-22 23:52:50 -0500108// Definition of general build configuration for soong_build. Some of these
Jingwen Chenc4d91bc2020-11-24 22:59:26 -0500109// product configuration values are read from Kati-generated soong.variables.
Colin Cross1332b002015-04-07 17:11:30 -0700110type config struct {
Jingwen Chenc711fec2020-11-22 23:52:50 -0500111 // Options configurable with soong.variables
Dan Willemsen45133ac2018-03-09 21:22:06 -0800112 productVariables productVariables
Colin Cross3f40fa42015-01-30 17:27:36 -0800113
Dan Willemsen674dc7f2018-03-12 18:06:05 -0700114 // Only available on configs created by TestConfig
115 TestProductVariables *productVariables
116
Jingwen Chenc711fec2020-11-22 23:52:50 -0500117 // A specialized context object for Bazel/Soong mixed builds and migration
118 // purposes.
Chris Parsonsf3c96ef2020-09-29 02:23:17 -0400119 BazelContext BazelContext
120
Dan Willemsen87b17d12015-07-14 00:39:06 -0700121 ProductVariablesFileName string
122
Colin Cross0c66bc62021-07-20 09:47:41 -0700123 // BuildOS stores the OsType for the OS that the build is running on.
124 BuildOS OsType
125
126 // BuildArch stores the ArchType for the CPU that the build is running on.
127 BuildArch ArchType
128
Jaewoong Jung642916f2020-10-09 17:25:15 -0700129 Targets map[OsType][]Target
130 BuildOSTarget Target // the Target for tools run on the build machine
131 BuildOSCommonTarget Target // the Target for common (java) tools run on the build machine
132 AndroidCommonTarget Target // the Target for common modules for the Android device
133 AndroidFirstDeviceTarget Target // the first Target for modules for the Android device
Dan Willemsen218f6562015-07-08 18:13:11 -0700134
Jingwen Chenc711fec2020-11-22 23:52:50 -0500135 // multilibConflicts for an ArchType is true if there is earlier configured
136 // device architecture with the same multilib value.
Colin Cross3b19f5d2019-09-17 14:45:31 -0700137 multilibConflicts map[ArchType]bool
138
Colin Cross9272ade2016-08-17 15:24:12 -0700139 deviceConfig *deviceConfig
140
Lukacs T. Berki9f6c24a2021-08-26 15:07:24 +0200141 soongOutDir string // the path of the build output directory
Chris Parsons8f232a22020-06-23 17:37:05 -0400142 moduleListFile string // the path to the file which lists blueprint files to parse.
Colin Crossc1e86a32015-04-15 12:33:28 -0700143
Lukacs T. Berkiea1a31c2021-09-02 09:58:09 +0200144 runGoTests bool
145 useValidationsForGoTests bool
146
Colin Cross6ccbc912017-10-10 23:07:38 -0700147 env map[string]string
Dan Willemsene7680ba2015-09-11 17:06:19 -0700148 envLock sync.Mutex
149 envDeps map[string]string
150 envFrozen bool
Dan Willemsen5ba07e82015-12-11 13:51:06 -0800151
Jingwen Chencda22c92020-11-23 00:22:30 -0500152 // Changes behavior based on whether Kati runs after soong_build, or if soong_build
153 // runs standalone.
154 katiEnabled bool
Colin Cross1e7d3702016-08-24 15:25:47 -0700155
Colin Cross32616ed2017-09-05 21:56:44 -0700156 captureBuild bool // true for tests, saves build parameters for each module
157 ignoreEnvironment bool // true for tests, returns empty from all Getenv calls
Colin Crosscec81712017-07-13 14:43:27 -0700158
Colin Crosse87040b2017-12-11 15:52:26 -0800159 stopBefore bootstrap.StopBefore
160
Colin Cross98be1bb2019-12-13 20:41:13 -0800161 fs pathtools.FileSystem
162 mockBpList string
163
Jingwen Chen12b4c272021-03-10 02:05:59 -0500164 bp2buildPackageConfig Bp2BuildConfig
165 bp2buildModuleTypeConfig map[string]bool
166
Colin Cross5e6a7972020-06-07 16:56:32 -0700167 // If testAllowNonExistentPaths is true then PathForSource and PathForModuleSrc won't error
168 // in tests when a path doesn't exist.
Pedro Loureiro5d190cc2021-02-15 15:41:33 +0000169 TestAllowNonExistentPaths bool
Colin Cross5e6a7972020-06-07 16:56:32 -0700170
Jingwen Chenc711fec2020-11-22 23:52:50 -0500171 // The list of files that when changed, must invalidate soong_build to
172 // regenerate build.ninja.
Colin Cross12129292020-10-29 18:23:58 -0700173 ninjaFileDepsSet sync.Map
174
Colin Cross9272ade2016-08-17 15:24:12 -0700175 OncePer
176}
177
178type deviceConfig struct {
Dan Willemsen00269f22017-07-06 16:59:48 -0700179 config *config
Colin Cross9272ade2016-08-17 15:24:12 -0700180 OncePer
Colin Cross3f40fa42015-01-30 17:27:36 -0800181}
182
Colin Cross485e5722015-08-27 13:28:01 -0700183type jsonConfigurable interface {
Colin Cross27385972015-09-18 10:57:10 -0700184 SetDefaultConfig()
Colin Cross485e5722015-08-27 13:28:01 -0700185}
Colin Cross3f40fa42015-01-30 17:27:36 -0800186
Colin Cross485e5722015-08-27 13:28:01 -0700187func loadConfig(config *config) error {
Colin Cross988414c2020-01-11 01:11:46 +0000188 return loadFromConfigFile(&config.productVariables, absolutePath(config.ProductVariablesFileName))
Colin Cross485e5722015-08-27 13:28:01 -0700189}
190
Jingwen Chenc711fec2020-11-22 23:52:50 -0500191// loadFromConfigFile loads and decodes configuration options from a JSON file
192// in the current working directory.
Liz Kammer09f947d2021-05-12 14:51:49 -0400193func loadFromConfigFile(configurable *productVariables, filename string) error {
Colin Cross3f40fa42015-01-30 17:27:36 -0800194 // Try to open the file
Colin Cross485e5722015-08-27 13:28:01 -0700195 configFileReader, err := os.Open(filename)
Colin Cross3f40fa42015-01-30 17:27:36 -0800196 defer configFileReader.Close()
197 if os.IsNotExist(err) {
198 // Need to create a file, so that blueprint & ninja don't get in
199 // a dependency tracking loop.
200 // Make a file-configurable-options with defaults, write it out using
201 // a json writer.
Colin Cross27385972015-09-18 10:57:10 -0700202 configurable.SetDefaultConfig()
203 err = saveToConfigFile(configurable, filename)
Colin Cross3f40fa42015-01-30 17:27:36 -0800204 if err != nil {
205 return err
206 }
Colin Cross15cd21a2018-02-27 11:26:02 -0800207 } else if err != nil {
208 return fmt.Errorf("config file: could not open %s: %s", filename, err.Error())
Colin Cross3f40fa42015-01-30 17:27:36 -0800209 } else {
210 // Make a decoder for it
211 jsonDecoder := json.NewDecoder(configFileReader)
Colin Cross485e5722015-08-27 13:28:01 -0700212 err = jsonDecoder.Decode(configurable)
Colin Cross3f40fa42015-01-30 17:27:36 -0800213 if err != nil {
Colin Cross15cd21a2018-02-27 11:26:02 -0800214 return fmt.Errorf("config file: %s did not parse correctly: %s", filename, err.Error())
Colin Cross3f40fa42015-01-30 17:27:36 -0800215 }
216 }
217
Liz Kammer09f947d2021-05-12 14:51:49 -0400218 if Bool(configurable.GcovCoverage) && Bool(configurable.ClangCoverage) {
219 return fmt.Errorf("GcovCoverage and ClangCoverage cannot both be set")
220 }
221
222 configurable.Native_coverage = proptools.BoolPtr(
223 Bool(configurable.GcovCoverage) ||
224 Bool(configurable.ClangCoverage))
225
Yuntao Xu402e9b02021-08-09 15:44:44 -0700226 // when Platform_sdk_final is true (or PLATFORM_VERSION_CODENAME is REL), use Platform_sdk_version;
227 // if false (pre-released version, for example), use Platform_sdk_codename.
228 if Bool(configurable.Platform_sdk_final) {
229 if configurable.Platform_sdk_version != nil {
230 configurable.Platform_sdk_version_or_codename =
231 proptools.StringPtr(strconv.Itoa(*(configurable.Platform_sdk_version)))
232 } else {
233 return fmt.Errorf("Platform_sdk_version cannot be pointed by a NULL pointer")
234 }
235 } else {
236 configurable.Platform_sdk_version_or_codename =
237 proptools.StringPtr(String(configurable.Platform_sdk_codename))
238 }
239
Liz Kammer09f947d2021-05-12 14:51:49 -0400240 return saveToBazelConfigFile(configurable, filepath.Dir(filename))
Colin Cross3f40fa42015-01-30 17:27:36 -0800241}
242
Colin Crossd8f20142016-11-03 09:43:26 -0700243// atomically writes the config file in case two copies of soong_build are running simultaneously
244// (for example, docs generation and ninja manifest generation)
Liz Kammer09f947d2021-05-12 14:51:49 -0400245func saveToConfigFile(config *productVariables, filename string) error {
Colin Cross3f40fa42015-01-30 17:27:36 -0800246 data, err := json.MarshalIndent(&config, "", " ")
247 if err != nil {
248 return fmt.Errorf("cannot marshal config data: %s", err.Error())
249 }
250
Colin Crossd8f20142016-11-03 09:43:26 -0700251 f, err := ioutil.TempFile(filepath.Dir(filename), "config")
Colin Cross3f40fa42015-01-30 17:27:36 -0800252 if err != nil {
Jingwen Chenc711fec2020-11-22 23:52:50 -0500253 return fmt.Errorf("cannot create empty config file %s: %s", filename, err.Error())
Colin Cross3f40fa42015-01-30 17:27:36 -0800254 }
Colin Crossd8f20142016-11-03 09:43:26 -0700255 defer os.Remove(f.Name())
256 defer f.Close()
Colin Cross3f40fa42015-01-30 17:27:36 -0800257
Colin Crossd8f20142016-11-03 09:43:26 -0700258 _, err = f.Write(data)
Colin Cross3f40fa42015-01-30 17:27:36 -0800259 if err != nil {
Colin Cross485e5722015-08-27 13:28:01 -0700260 return fmt.Errorf("default config file: %s could not be written: %s", filename, err.Error())
261 }
262
Colin Crossd8f20142016-11-03 09:43:26 -0700263 _, err = f.WriteString("\n")
Colin Cross485e5722015-08-27 13:28:01 -0700264 if err != nil {
265 return fmt.Errorf("default config file: %s could not be written: %s", filename, err.Error())
Colin Cross3f40fa42015-01-30 17:27:36 -0800266 }
267
Colin Crossd8f20142016-11-03 09:43:26 -0700268 f.Close()
269 os.Rename(f.Name(), filename)
270
Colin Cross3f40fa42015-01-30 17:27:36 -0800271 return nil
272}
273
Liz Kammer09f947d2021-05-12 14:51:49 -0400274func saveToBazelConfigFile(config *productVariables, outDir string) error {
275 dir := filepath.Join(outDir, bazel.SoongInjectionDirName, "product_config")
276 err := createDirIfNonexistent(dir, os.ModePerm)
277 if err != nil {
278 return fmt.Errorf("Could not create dir %s: %s", dir, err)
279 }
280
281 data, err := json.MarshalIndent(&config, "", " ")
282 if err != nil {
283 return fmt.Errorf("cannot marshal config data: %s", err.Error())
284 }
285
286 bzl := []string{
287 bazel.GeneratedBazelFileWarning,
288 fmt.Sprintf(`_product_vars = json.decode("""%s""")`, data),
289 "product_vars = _product_vars\n",
290 }
291 err = ioutil.WriteFile(filepath.Join(dir, "product_variables.bzl"), []byte(strings.Join(bzl, "\n")), 0644)
292 if err != nil {
293 return fmt.Errorf("Could not write .bzl config file %s", err)
294 }
295 err = ioutil.WriteFile(filepath.Join(dir, "BUILD"), []byte(bazel.GeneratedBazelFileWarning), 0644)
296 if err != nil {
297 return fmt.Errorf("Could not write BUILD config file %s", err)
298 }
299
300 return nil
301}
302
Colin Cross988414c2020-01-11 01:11:46 +0000303// NullConfig returns a mostly empty Config for use by standalone tools like dexpreopt_gen that
304// use the android package.
Lukacs T. Berki9f6c24a2021-08-26 15:07:24 +0200305func NullConfig(soongOutDir string) Config {
Colin Cross988414c2020-01-11 01:11:46 +0000306 return Config{
307 config: &config{
Lukacs T. Berki9f6c24a2021-08-26 15:07:24 +0200308 soongOutDir: soongOutDir,
309 fs: pathtools.OsFs,
Colin Cross988414c2020-01-11 01:11:46 +0000310 },
311 }
312}
313
Jingwen Chenc711fec2020-11-22 23:52:50 -0500314// TestConfig returns a Config object for testing.
Colin Cross98be1bb2019-12-13 20:41:13 -0800315func TestConfig(buildDir string, env map[string]string, bp string, fs map[string][]byte) Config {
Colin Cross9c6241f2019-04-22 15:51:26 -0700316 envCopy := make(map[string]string)
317 for k, v := range env {
318 envCopy[k] = v
319 }
320
Jingwen Chen2838c812020-11-23 01:06:40 -0500321 // Copy the real PATH value to the test environment, it's needed by
322 // NonHermeticHostSystemTool() used in x86_darwin_host.go
Lukacs T. Berkideba7212021-03-04 10:50:10 +0100323 envCopy["PATH"] = os.Getenv("PATH")
Colin Cross9c6241f2019-04-22 15:51:26 -0700324
Dan Willemsen00269f22017-07-06 16:59:48 -0700325 config := &config{
Dan Willemsen45133ac2018-03-09 21:22:06 -0800326 productVariables: productVariables{
Dan Albert4f378d72020-07-23 17:32:15 -0700327 DeviceName: stringPtr("test_device"),
328 Platform_sdk_version: intPtr(30),
329 Platform_sdk_codename: stringPtr("S"),
330 Platform_version_active_codenames: []string{"S"},
331 DeviceSystemSdkVersions: []string{"14", "15"},
332 Platform_systemsdk_versions: []string{"29", "30"},
333 AAPTConfig: []string{"normal", "large", "xlarge", "hdpi", "xhdpi", "xxhdpi"},
334 AAPTPreferredConfig: stringPtr("xhdpi"),
335 AAPTCharacteristics: stringPtr("nosdcard"),
336 AAPTPrebuiltDPI: []string{"xhdpi", "xxhdpi"},
337 UncompressPrivAppDex: boolPtr(true),
Inseob Kim60c32f02020-12-21 22:53:05 +0900338 ShippingApiLevel: stringPtr("30"),
Dan Willemsen00269f22017-07-06 16:59:48 -0700339 },
340
Lukacs T. Berki9f6c24a2021-08-26 15:07:24 +0200341 soongOutDir: buildDir,
Colin Cross6ccbc912017-10-10 23:07:38 -0700342 captureBuild: true,
Colin Cross9c6241f2019-04-22 15:51:26 -0700343 env: envCopy,
Colin Cross5e6a7972020-06-07 16:56:32 -0700344
345 // Set testAllowNonExistentPaths so that test contexts don't need to specify every path
346 // passed to PathForSource or PathForModuleSrc.
Pedro Loureiro5d190cc2021-02-15 15:41:33 +0000347 TestAllowNonExistentPaths: true,
Chris Parsonsf3c96ef2020-09-29 02:23:17 -0400348
349 BazelContext: noopBazelContext{},
Dan Willemsen00269f22017-07-06 16:59:48 -0700350 }
351 config.deviceConfig = &deviceConfig{
352 config: config,
353 }
Dan Willemsen45133ac2018-03-09 21:22:06 -0800354 config.TestProductVariables = &config.productVariables
Dan Willemsen00269f22017-07-06 16:59:48 -0700355
Colin Cross98be1bb2019-12-13 20:41:13 -0800356 config.mockFileSystem(bp, fs)
357
Jingwen Chen12b4c272021-03-10 02:05:59 -0500358 config.bp2buildModuleTypeConfig = map[string]bool{}
359
Dan Willemsen00269f22017-07-06 16:59:48 -0700360 return Config{config}
Colin Crossce75d2c2016-10-06 16:12:58 -0700361}
362
Paul Duffin35816122021-02-24 01:49:52 +0000363func modifyTestConfigToSupportArchMutator(testConfig Config) {
Colin Crossae4c6182017-09-15 17:33:55 -0700364 config := testConfig.config
365
Colin Cross0c66bc62021-07-20 09:47:41 -0700366 determineBuildOS(config)
367
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700368 config.Targets = map[OsType][]Target{
369 Android: []Target{
Jiyong Park1613e552020-09-14 19:43:17 +0900370 {Android, Arch{ArchType: Arm64, ArchVariant: "armv8-a", Abi: []string{"arm64-v8a"}}, NativeBridgeDisabled, "", "", false},
371 {Android, Arch{ArchType: Arm, ArchVariant: "armv7-a-neon", Abi: []string{"armeabi-v7a"}}, NativeBridgeDisabled, "", "", false},
Colin Crossae4c6182017-09-15 17:33:55 -0700372 },
Colin Cross0c66bc62021-07-20 09:47:41 -0700373 config.BuildOS: []Target{
374 {config.BuildOS, Arch{ArchType: X86_64}, NativeBridgeDisabled, "", "", false},
375 {config.BuildOS, Arch{ArchType: X86}, NativeBridgeDisabled, "", "", false},
Colin Crossae4c6182017-09-15 17:33:55 -0700376 },
377 }
378
Colin Cross0d99f7c2019-05-14 16:01:24 -0700379 if runtime.GOOS == "darwin" {
Colin Cross0c66bc62021-07-20 09:47:41 -0700380 config.Targets[config.BuildOS] = config.Targets[config.BuildOS][:1]
Colin Cross0d99f7c2019-05-14 16:01:24 -0700381 }
382
Colin Cross0c66bc62021-07-20 09:47:41 -0700383 config.BuildOSTarget = config.Targets[config.BuildOS][0]
384 config.BuildOSCommonTarget = getCommonTargets(config.Targets[config.BuildOS])[0]
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700385 config.AndroidCommonTarget = getCommonTargets(config.Targets[Android])[0]
Jaewoong Jung642916f2020-10-09 17:25:15 -0700386 config.AndroidFirstDeviceTarget = firstTarget(config.Targets[Android], "lib64", "lib32")[0]
Inseob Kim1f086e22019-05-09 13:29:15 +0900387 config.TestProductVariables.DeviceArch = proptools.StringPtr("arm64")
388 config.TestProductVariables.DeviceArchVariant = proptools.StringPtr("armv8-a")
389 config.TestProductVariables.DeviceSecondaryArch = proptools.StringPtr("arm")
390 config.TestProductVariables.DeviceSecondaryArchVariant = proptools.StringPtr("armv7-a-neon")
Paul Duffin35816122021-02-24 01:49:52 +0000391}
Colin Cross2a076922018-10-04 23:28:25 -0700392
Colin Cross528d67e2021-07-23 22:23:07 +0000393func modifyTestConfigForMusl(config Config) {
394 delete(config.Targets, config.BuildOS)
395 config.productVariables.HostMusl = boolPtr(true)
396 determineBuildOS(config.config)
397 config.Targets[config.BuildOS] = []Target{
398 {config.BuildOS, Arch{ArchType: X86_64}, NativeBridgeDisabled, "", "", false},
399 {config.BuildOS, Arch{ArchType: X86}, NativeBridgeDisabled, "", "", false},
400 }
401
402 config.BuildOSTarget = config.Targets[config.BuildOS][0]
403 config.BuildOSCommonTarget = getCommonTargets(config.Targets[config.BuildOS])[0]
404}
405
Paul Duffin35816122021-02-24 01:49:52 +0000406// TestArchConfig returns a Config object suitable for using for tests that
407// need to run the arch mutator.
408func TestArchConfig(buildDir string, env map[string]string, bp string, fs map[string][]byte) Config {
409 testConfig := TestConfig(buildDir, env, bp, fs)
410 modifyTestConfigToSupportArchMutator(testConfig)
Colin Crossae4c6182017-09-15 17:33:55 -0700411 return testConfig
412}
413
Jingwen Chenc711fec2020-11-22 23:52:50 -0500414// ConfigForAdditionalRun is a config object which is "reset" for another
415// bootstrap run. Only per-run data is reset. Data which needs to persist across
416// multiple runs in the same program execution is carried over (such as Bazel
417// context or environment deps).
Lukacs T. Berkiea1a31c2021-09-02 09:58:09 +0200418func ConfigForAdditionalRun(cmdlineArgs bootstrap.Args, c Config) (Config, error) {
419 newConfig, err := NewConfig(cmdlineArgs, c.soongOutDir, c.env)
Chris Parsonsf3c96ef2020-09-29 02:23:17 -0400420 if err != nil {
421 return Config{}, err
422 }
423 newConfig.BazelContext = c.BazelContext
424 newConfig.envDeps = c.envDeps
425 return newConfig, nil
426}
427
Jingwen Chenc711fec2020-11-22 23:52:50 -0500428// NewConfig creates a new Config object. The srcDir argument specifies the path
429// to the root source directory. It also loads the config file, if found.
Lukacs T. Berkiea1a31c2021-09-02 09:58:09 +0200430func NewConfig(cmdlineArgs bootstrap.Args, soongOutDir string, availableEnv map[string]string) (Config, error) {
Jingwen Chenc711fec2020-11-22 23:52:50 -0500431 // Make a config with default options.
Colin Cross9272ade2016-08-17 15:24:12 -0700432 config := &config{
Lukacs T. Berki9f6c24a2021-08-26 15:07:24 +0200433 ProductVariablesFileName: filepath.Join(soongOutDir, productVariablesFileName),
Dan Willemsen87b17d12015-07-14 00:39:06 -0700434
Lukacs T. Berki53b2f362021-04-12 14:04:24 +0200435 env: availableEnv,
Colin Cross6ccbc912017-10-10 23:07:38 -0700436
Lukacs T. Berkiea1a31c2021-09-02 09:58:09 +0200437 soongOutDir: soongOutDir,
438 runGoTests: cmdlineArgs.RunGoTests,
439 useValidationsForGoTests: cmdlineArgs.UseValidations,
440 multilibConflicts: make(map[ArchType]bool),
Colin Cross98be1bb2019-12-13 20:41:13 -0800441
Lukacs T. Berkiea1a31c2021-09-02 09:58:09 +0200442 moduleListFile: cmdlineArgs.ModuleListFile,
Chris Parsons8f232a22020-06-23 17:37:05 -0400443 fs: pathtools.NewOsFs(absSrcDir),
Colin Cross68f55102015-03-25 14:43:57 -0700444 }
Colin Cross3f40fa42015-01-30 17:27:36 -0800445
Dan Willemsen00269f22017-07-06 16:59:48 -0700446 config.deviceConfig = &deviceConfig{
Colin Cross9272ade2016-08-17 15:24:12 -0700447 config: config,
448 }
449
Liz Kammer7941b302020-07-28 13:27:34 -0700450 // Soundness check of the build and source directories. This won't catch strange
451 // configurations with symlinks, but at least checks the obvious case.
Lukacs T. Berki9f6c24a2021-08-26 15:07:24 +0200452 absBuildDir, err := filepath.Abs(soongOutDir)
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700453 if err != nil {
454 return Config{}, err
455 }
456
Lukacs T. Berkif7e36d82021-08-16 17:05:09 +0200457 absSrcDir, err := filepath.Abs(".")
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700458 if err != nil {
459 return Config{}, err
460 }
461
462 if strings.HasPrefix(absSrcDir, absBuildDir) {
463 return Config{}, fmt.Errorf("Build dir must not contain source directory")
464 }
465
Colin Cross3f40fa42015-01-30 17:27:36 -0800466 // Load any configurable options from the configuration file
Colin Cross9272ade2016-08-17 15:24:12 -0700467 err = loadConfig(config)
Colin Cross3f40fa42015-01-30 17:27:36 -0800468 if err != nil {
Colin Crossc3c0a492015-04-10 15:43:55 -0700469 return Config{}, err
Colin Cross3f40fa42015-01-30 17:27:36 -0800470 }
471
Lukacs T. Berki9f6c24a2021-08-26 15:07:24 +0200472 KatiEnabledMarkerFile := filepath.Join(soongOutDir, ".soong.kati_enabled")
Jingwen Chencda22c92020-11-23 00:22:30 -0500473 if _, err := os.Stat(absolutePath(KatiEnabledMarkerFile)); err == nil {
474 config.katiEnabled = true
Dan Willemsen5ba07e82015-12-11 13:51:06 -0800475 }
476
Colin Cross0c66bc62021-07-20 09:47:41 -0700477 determineBuildOS(config)
478
Jingwen Chenc711fec2020-11-22 23:52:50 -0500479 // Sets up the map of target OSes to the finer grained compilation targets
480 // that are configured from the product variables.
Colin Crossa1ad8d12016-06-01 17:09:44 -0700481 targets, err := decodeTargetProductVariables(config)
Dan Willemsen218f6562015-07-08 18:13:11 -0700482 if err != nil {
483 return Config{}, err
484 }
485
Paul Duffin1356d8c2020-02-25 19:26:33 +0000486 // Make the CommonOS OsType available for all products.
487 targets[CommonOS] = []Target{commonTargetMap[CommonOS.Name]}
488
Dan Albert4098deb2016-10-19 14:04:41 -0700489 var archConfig []archConfig
Jingwen Chenc4d91bc2020-11-24 22:59:26 -0500490 if config.NdkAbis() {
Dan Albert4098deb2016-10-19 14:04:41 -0700491 archConfig = getNdkAbisConfig()
Martin Stjernholmc1ecc432019-11-15 15:00:31 +0000492 } else if config.AmlAbis() {
493 archConfig = getAmlAbisConfig()
Dan Albert4098deb2016-10-19 14:04:41 -0700494 }
495
496 if archConfig != nil {
Dan Willemsen01a3c252019-01-11 19:02:16 -0800497 androidTargets, err := decodeArchSettings(Android, archConfig)
Dan Willemsen322acaf2016-01-12 23:07:05 -0800498 if err != nil {
499 return Config{}, err
500 }
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700501 targets[Android] = androidTargets
Dan Willemsen322acaf2016-01-12 23:07:05 -0800502 }
503
Colin Cross3b19f5d2019-09-17 14:45:31 -0700504 multilib := make(map[string]bool)
505 for _, target := range targets[Android] {
506 if seen := multilib[target.Arch.ArchType.Multilib]; seen {
507 config.multilibConflicts[target.Arch.ArchType] = true
508 }
509 multilib[target.Arch.ArchType.Multilib] = true
510 }
511
Jingwen Chenc711fec2020-11-22 23:52:50 -0500512 // Map of OS to compilation targets.
Colin Crossa1ad8d12016-06-01 17:09:44 -0700513 config.Targets = targets
Jingwen Chenc711fec2020-11-22 23:52:50 -0500514
515 // Compilation targets for host tools.
Colin Cross0c66bc62021-07-20 09:47:41 -0700516 config.BuildOSTarget = config.Targets[config.BuildOS][0]
517 config.BuildOSCommonTarget = getCommonTargets(config.Targets[config.BuildOS])[0]
Jingwen Chenc711fec2020-11-22 23:52:50 -0500518
519 // Compilation targets for Android.
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700520 if len(config.Targets[Android]) > 0 {
521 config.AndroidCommonTarget = getCommonTargets(config.Targets[Android])[0]
Jaewoong Jung642916f2020-10-09 17:25:15 -0700522 config.AndroidFirstDeviceTarget = firstTarget(config.Targets[Android], "lib64", "lib32")[0]
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700523 }
Dan Willemsen218f6562015-07-08 18:13:11 -0700524
Chris Parsonsf3c96ef2020-09-29 02:23:17 -0400525 config.BazelContext, err = NewBazelContext(config)
Jingwen Chen12b4c272021-03-10 02:05:59 -0500526 config.bp2buildPackageConfig = bp2buildDefaultConfig
527 config.bp2buildModuleTypeConfig = make(map[string]bool)
Colin Cross3f40fa42015-01-30 17:27:36 -0800528
Jingwen Chenc711fec2020-11-22 23:52:50 -0500529 return Config{config}, err
530}
Colin Cross988414c2020-01-11 01:11:46 +0000531
Colin Cross98be1bb2019-12-13 20:41:13 -0800532// mockFileSystem replaces all reads with accesses to the provided map of
533// filenames to contents stored as a byte slice.
534func (c *config) mockFileSystem(bp string, fs map[string][]byte) {
535 mockFS := map[string][]byte{}
536
537 if _, exists := mockFS["Android.bp"]; !exists {
538 mockFS["Android.bp"] = []byte(bp)
539 }
540
541 for k, v := range fs {
542 mockFS[k] = v
543 }
544
545 // no module list file specified; find every file named Blueprints or Android.bp
546 pathsToParse := []string{}
547 for candidate := range mockFS {
548 base := filepath.Base(candidate)
549 if base == "Blueprints" || base == "Android.bp" {
550 pathsToParse = append(pathsToParse, candidate)
551 }
552 }
553 if len(pathsToParse) < 1 {
554 panic(fmt.Sprintf("No Blueprint or Android.bp files found in mock filesystem: %v\n", mockFS))
555 }
556 mockFS[blueprint.MockModuleListFile] = []byte(strings.Join(pathsToParse, "\n"))
557
558 c.fs = pathtools.MockFs(mockFS)
559 c.mockBpList = blueprint.MockModuleListFile
560}
561
Colin Crosse87040b2017-12-11 15:52:26 -0800562func (c *config) StopBefore() bootstrap.StopBefore {
563 return c.stopBefore
Dan Willemsen218f6562015-07-08 18:13:11 -0700564}
565
Jingwen Chenc711fec2020-11-22 23:52:50 -0500566// SetStopBefore configures soong_build to exit earlier at a specific point.
Colin Crosse87040b2017-12-11 15:52:26 -0800567func (c *config) SetStopBefore(stopBefore bootstrap.StopBefore) {
568 c.stopBefore = stopBefore
569}
570
Lukacs T. Berkid1e3f1f2021-03-16 08:55:23 +0100571func (c *config) SetAllowMissingDependencies() {
572 c.productVariables.Allow_missing_dependencies = proptools.BoolPtr(true)
573}
574
Colin Crosse87040b2017-12-11 15:52:26 -0800575var _ bootstrap.ConfigStopBefore = (*config)(nil)
576
Jingwen Chenc711fec2020-11-22 23:52:50 -0500577// BlueprintToolLocation returns the directory containing build system tools
578// from Blueprint, like soong_zip and merge_zips.
Lukacs T. Berkia806e412021-09-01 08:57:48 +0200579func (c *config) HostToolDir() string {
Lukacs T. Berki9f6c24a2021-08-26 15:07:24 +0200580 return filepath.Join(c.soongOutDir, "host", c.PrebuiltOS(), "bin")
Dan Willemsenc2aa4a92016-05-26 15:13:03 -0700581}
582
Dan Willemsen60e62f02018-11-16 21:05:32 -0800583func (c *config) HostToolPath(ctx PathContext, tool string) Path {
584 return PathForOutput(ctx, "host", c.PrebuiltOS(), "bin", tool)
585}
586
Martin Stjernholm7260d062019-12-09 21:47:14 +0000587func (c *config) HostJNIToolPath(ctx PathContext, path string) Path {
588 ext := ".so"
589 if runtime.GOOS == "darwin" {
590 ext = ".dylib"
591 }
592 return PathForOutput(ctx, "host", c.PrebuiltOS(), "lib64", path+ext)
593}
594
595func (c *config) HostJavaToolPath(ctx PathContext, path string) Path {
596 return PathForOutput(ctx, "host", c.PrebuiltOS(), "framework", path)
597}
598
Jingwen Chenc711fec2020-11-22 23:52:50 -0500599// PrebuiltOS returns the name of the host OS used in prebuilts directories.
Colin Cross1332b002015-04-07 17:11:30 -0700600func (c *config) PrebuiltOS() string {
Colin Cross3f40fa42015-01-30 17:27:36 -0800601 switch runtime.GOOS {
602 case "linux":
603 return "linux-x86"
604 case "darwin":
605 return "darwin-x86"
606 default:
607 panic("Unknown GOOS")
608 }
609}
610
611// GoRoot returns the path to the root directory of the Go toolchain.
Colin Cross1332b002015-04-07 17:11:30 -0700612func (c *config) GoRoot() string {
Lukacs T. Berkif7e36d82021-08-16 17:05:09 +0200613 return fmt.Sprintf("prebuilts/go/%s", c.PrebuiltOS())
Colin Cross3f40fa42015-01-30 17:27:36 -0800614}
615
Jingwen Chenc711fec2020-11-22 23:52:50 -0500616// PrebuiltBuildTool returns the path to a tool in the prebuilts directory containing
617// checked-in tools, like Kati, Ninja or Toybox, for the current host OS.
Dan Willemsen4e0aa232019-04-10 22:59:54 -0700618func (c *config) PrebuiltBuildTool(ctx PathContext, tool string) Path {
619 return PathForSource(ctx, "prebuilts/build-tools", c.PrebuiltOS(), "bin", tool)
620}
621
Jingwen Chenc711fec2020-11-22 23:52:50 -0500622// CpPreserveSymlinksFlags returns the host-specific flag for the cp(1) command
623// to preserve symlinks.
Colin Cross1332b002015-04-07 17:11:30 -0700624func (c *config) CpPreserveSymlinksFlags() string {
Colin Cross485e5722015-08-27 13:28:01 -0700625 switch runtime.GOOS {
Colin Cross3f40fa42015-01-30 17:27:36 -0800626 case "darwin":
627 return "-R"
628 case "linux":
629 return "-d"
630 default:
631 return ""
632 }
633}
Colin Cross68f55102015-03-25 14:43:57 -0700634
Colin Cross1332b002015-04-07 17:11:30 -0700635func (c *config) Getenv(key string) string {
Colin Cross68f55102015-03-25 14:43:57 -0700636 var val string
637 var exists bool
Colin Crossc1e86a32015-04-15 12:33:28 -0700638 c.envLock.Lock()
Colin Crossc0d58b42017-02-06 15:40:41 -0800639 defer c.envLock.Unlock()
640 if c.envDeps == nil {
641 c.envDeps = make(map[string]string)
642 }
Colin Cross68f55102015-03-25 14:43:57 -0700643 if val, exists = c.envDeps[key]; !exists {
Dan Willemsene7680ba2015-09-11 17:06:19 -0700644 if c.envFrozen {
645 panic("Cannot access new environment variables after envdeps are frozen")
646 }
Colin Cross6ccbc912017-10-10 23:07:38 -0700647 val, _ = c.env[key]
Colin Cross68f55102015-03-25 14:43:57 -0700648 c.envDeps[key] = val
649 }
650 return val
651}
652
Colin Cross99d7c232016-11-23 16:52:04 -0800653func (c *config) GetenvWithDefault(key string, defaultValue string) string {
654 ret := c.Getenv(key)
655 if ret == "" {
656 return defaultValue
657 }
658 return ret
659}
660
661func (c *config) IsEnvTrue(key string) bool {
662 value := c.Getenv(key)
663 return value == "1" || value == "y" || value == "yes" || value == "on" || value == "true"
664}
665
666func (c *config) IsEnvFalse(key string) bool {
667 value := c.Getenv(key)
668 return value == "0" || value == "n" || value == "no" || value == "off" || value == "false"
669}
670
Jingwen Chenc711fec2020-11-22 23:52:50 -0500671// EnvDeps returns the environment variables this build depends on. The first
672// call to this function blocks future reads from the environment.
Colin Cross1332b002015-04-07 17:11:30 -0700673func (c *config) EnvDeps() map[string]string {
Dan Willemsene7680ba2015-09-11 17:06:19 -0700674 c.envLock.Lock()
Colin Crossc0d58b42017-02-06 15:40:41 -0800675 defer c.envLock.Unlock()
Dan Willemsene7680ba2015-09-11 17:06:19 -0700676 c.envFrozen = true
Colin Cross68f55102015-03-25 14:43:57 -0700677 return c.envDeps
678}
Colin Cross35cec122015-04-02 14:37:16 -0700679
Jingwen Chencda22c92020-11-23 00:22:30 -0500680func (c *config) KatiEnabled() bool {
681 return c.katiEnabled
Dan Willemsen5ba07e82015-12-11 13:51:06 -0800682}
683
Nan Zhang581fd212018-01-10 16:06:12 -0800684func (c *config) BuildId() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800685 return String(c.productVariables.BuildId)
Nan Zhang581fd212018-01-10 16:06:12 -0800686}
687
Jingwen Chenc711fec2020-11-22 23:52:50 -0500688// BuildNumberFile returns the path to a text file containing metadata
689// representing the current build's number.
690//
691// Rules that want to reference the build number should read from this file
692// without depending on it. They will run whenever their other dependencies
693// require them to run and get the current build number. This ensures they don't
694// rebuild on every incremental build when the build number changes.
Colin Cross2a2e0db2020-02-21 16:55:46 -0800695func (c *config) BuildNumberFile(ctx PathContext) Path {
696 return PathForOutput(ctx, String(c.productVariables.BuildNumberFile))
Nan Zhang581fd212018-01-10 16:06:12 -0800697}
698
Jingwen Chenc711fec2020-11-22 23:52:50 -0500699// DeviceName returns the name of the current device target.
Colin Cross35cec122015-04-02 14:37:16 -0700700// TODO: take an AndroidModuleContext to select the device name for multi-device builds
Colin Cross1332b002015-04-07 17:11:30 -0700701func (c *config) DeviceName() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800702 return *c.productVariables.DeviceName
Colin Cross35cec122015-04-02 14:37:16 -0700703}
704
Anton Hansson53c88442019-03-18 15:53:16 +0000705func (c *config) DeviceResourceOverlays() []string {
706 return c.productVariables.DeviceResourceOverlays
707}
708
709func (c *config) ProductResourceOverlays() []string {
710 return c.productVariables.ProductResourceOverlays
Colin Cross30e076a2015-04-13 13:58:27 -0700711}
712
Colin Crossbfd347d2018-05-09 11:11:35 -0700713func (c *config) PlatformVersionName() string {
714 return String(c.productVariables.Platform_version_name)
715}
716
Dan Albert4f378d72020-07-23 17:32:15 -0700717func (c *config) PlatformSdkVersion() ApiLevel {
718 return uncheckedFinalApiLevel(*c.productVariables.Platform_sdk_version)
Colin Cross30e076a2015-04-13 13:58:27 -0700719}
720
Colin Crossd09b0b62018-04-18 11:06:47 -0700721func (c *config) PlatformSdkCodename() string {
722 return String(c.productVariables.Platform_sdk_codename)
723}
724
Colin Cross092c9da2019-04-02 22:56:43 -0700725func (c *config) PlatformSecurityPatch() string {
726 return String(c.productVariables.Platform_security_patch)
727}
728
729func (c *config) PlatformPreviewSdkVersion() string {
730 return String(c.productVariables.Platform_preview_sdk_version)
731}
732
733func (c *config) PlatformMinSupportedTargetSdkVersion() string {
734 return String(c.productVariables.Platform_min_supported_target_sdk_version)
735}
736
737func (c *config) PlatformBaseOS() string {
738 return String(c.productVariables.Platform_base_os)
739}
740
Dan Albert1a246272020-07-06 14:49:35 -0700741func (c *config) MinSupportedSdkVersion() ApiLevel {
742 return uncheckedFinalApiLevel(16)
743}
744
745func (c *config) FinalApiLevels() []ApiLevel {
746 var levels []ApiLevel
Dan Albert4f378d72020-07-23 17:32:15 -0700747 for i := 1; i <= c.PlatformSdkVersion().FinalOrFutureInt(); i++ {
Dan Albert1a246272020-07-06 14:49:35 -0700748 levels = append(levels, uncheckedFinalApiLevel(i))
749 }
750 return levels
751}
752
753func (c *config) PreviewApiLevels() []ApiLevel {
754 var levels []ApiLevel
755 for i, codename := range c.PlatformVersionActiveCodenames() {
756 levels = append(levels, ApiLevel{
757 value: codename,
758 number: i,
759 isPreview: true,
760 })
761 }
762 return levels
763}
764
765func (c *config) AllSupportedApiLevels() []ApiLevel {
766 var levels []ApiLevel
767 levels = append(levels, c.FinalApiLevels()...)
768 return append(levels, c.PreviewApiLevels()...)
Dan Albertf5415d72017-08-17 16:19:59 -0700769}
770
Jingwen Chenc711fec2020-11-22 23:52:50 -0500771// DefaultAppTargetSdk returns the API level that platform apps are targeting.
772// This converts a codename to the exact ApiLevel it represents.
Dan Albert4f378d72020-07-23 17:32:15 -0700773func (c *config) DefaultAppTargetSdk(ctx EarlyModuleContext) ApiLevel {
Colin Crossd09b0b62018-04-18 11:06:47 -0700774 if Bool(c.productVariables.Platform_sdk_final) {
775 return c.PlatformSdkVersion()
Colin Crossd09b0b62018-04-18 11:06:47 -0700776 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500777 codename := c.PlatformSdkCodename()
778 if codename == "" {
779 return NoneApiLevel
780 }
781 if codename == "REL" {
782 panic("Platform_sdk_codename should not be REL when Platform_sdk_final is true")
783 }
784 return ApiLevelOrPanic(ctx, codename)
Colin Crossd09b0b62018-04-18 11:06:47 -0700785}
786
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800787func (c *config) AppsDefaultVersionName() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800788 return String(c.productVariables.AppsDefaultVersionName)
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800789}
790
Dan Albert31384de2017-07-28 12:39:46 -0700791// Codenames that are active in the current lunch target.
792func (c *config) PlatformVersionActiveCodenames() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800793 return c.productVariables.Platform_version_active_codenames
Dan Albert31384de2017-07-28 12:39:46 -0700794}
795
Colin Crossface4e42017-10-30 17:32:15 -0700796func (c *config) ProductAAPTConfig() []string {
Colin Crossa74ca042019-01-31 14:31:51 -0800797 return c.productVariables.AAPTConfig
Colin Cross30e076a2015-04-13 13:58:27 -0700798}
799
Colin Crossface4e42017-10-30 17:32:15 -0700800func (c *config) ProductAAPTPreferredConfig() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800801 return String(c.productVariables.AAPTPreferredConfig)
Colin Cross30e076a2015-04-13 13:58:27 -0700802}
803
Colin Crossface4e42017-10-30 17:32:15 -0700804func (c *config) ProductAAPTCharacteristics() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800805 return String(c.productVariables.AAPTCharacteristics)
Colin Crossface4e42017-10-30 17:32:15 -0700806}
807
808func (c *config) ProductAAPTPrebuiltDPI() []string {
Colin Crossa74ca042019-01-31 14:31:51 -0800809 return c.productVariables.AAPTPrebuiltDPI
Colin Cross30e076a2015-04-13 13:58:27 -0700810}
811
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700812func (c *config) DefaultAppCertificateDir(ctx PathContext) SourcePath {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800813 defaultCert := String(c.productVariables.DefaultAppCertificate)
Colin Cross61ae0b72017-12-01 17:16:02 -0800814 if defaultCert != "" {
815 return PathForSource(ctx, filepath.Dir(defaultCert))
Colin Cross61ae0b72017-12-01 17:16:02 -0800816 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500817 return PathForSource(ctx, "build/make/target/product/security")
Colin Cross30e076a2015-04-13 13:58:27 -0700818}
819
Colin Crosse1731a52017-12-14 11:22:55 -0800820func (c *config) DefaultAppCertificate(ctx PathContext) (pem, key SourcePath) {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800821 defaultCert := String(c.productVariables.DefaultAppCertificate)
Colin Cross61ae0b72017-12-01 17:16:02 -0800822 if defaultCert != "" {
Colin Crosse1731a52017-12-14 11:22:55 -0800823 return PathForSource(ctx, defaultCert+".x509.pem"), PathForSource(ctx, defaultCert+".pk8")
Colin Cross61ae0b72017-12-01 17:16:02 -0800824 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500825 defaultDir := c.DefaultAppCertificateDir(ctx)
826 return defaultDir.Join(ctx, "testkey.x509.pem"), defaultDir.Join(ctx, "testkey.pk8")
Colin Cross30e076a2015-04-13 13:58:27 -0700827}
Colin Cross6ff51382015-12-17 16:39:19 -0800828
Jiyong Park9335a262018-12-24 11:31:58 +0900829func (c *config) ApexKeyDir(ctx ModuleContext) SourcePath {
830 // TODO(b/121224311): define another variable such as TARGET_APEX_KEY_OVERRIDE
831 defaultCert := String(c.productVariables.DefaultAppCertificate)
Dan Willemsen412160e2019-04-09 21:36:26 -0700832 if defaultCert == "" || filepath.Dir(defaultCert) == "build/make/target/product/security" {
Jiyong Park9335a262018-12-24 11:31:58 +0900833 // When defaultCert is unset or is set to the testkeys path, use the APEX keys
834 // that is under the module dir
Colin Cross07e51612019-03-05 12:46:40 -0800835 return pathForModuleSrc(ctx)
Jiyong Park9335a262018-12-24 11:31:58 +0900836 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500837 // If not, APEX keys are under the specified directory
838 return PathForSource(ctx, filepath.Dir(defaultCert))
Jiyong Park9335a262018-12-24 11:31:58 +0900839}
840
Jingwen Chenc711fec2020-11-22 23:52:50 -0500841// AllowMissingDependencies configures Blueprint/Soong to not fail when modules
842// are configured to depend on non-existent modules. Note that this does not
843// affect missing input dependencies at the Ninja level.
Colin Cross6ff51382015-12-17 16:39:19 -0800844func (c *config) AllowMissingDependencies() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800845 return Bool(c.productVariables.Allow_missing_dependencies)
Colin Cross6ff51382015-12-17 16:39:19 -0800846}
Dan Willemsen322acaf2016-01-12 23:07:05 -0800847
Jeongik Cha816a23a2020-07-08 01:09:23 +0900848// Returns true if a full platform source tree cannot be assumed.
Colin Crossfc3674a2017-09-18 17:41:52 -0700849func (c *config) UnbundledBuild() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800850 return Bool(c.productVariables.Unbundled_build)
Colin Crossfc3674a2017-09-18 17:41:52 -0700851}
852
Martin Stjernholmfd9eb4b2020-06-17 01:13:15 +0100853// Returns true if building apps that aren't bundled with the platform.
854// UnbundledBuild() is always true when this is true.
855func (c *config) UnbundledBuildApps() bool {
856 return Bool(c.productVariables.Unbundled_build_apps)
857}
858
Jeongik Cha4b073cd2021-06-08 11:35:00 +0900859// Returns true if building image that aren't bundled with the platform.
860// UnbundledBuild() is always true when this is true.
861func (c *config) UnbundledBuildImage() bool {
862 return Bool(c.productVariables.Unbundled_build_image)
863}
864
Jeongik Cha816a23a2020-07-08 01:09:23 +0900865// Returns true if building modules against prebuilt SDKs.
866func (c *config) AlwaysUsePrebuiltSdks() bool {
867 return Bool(c.productVariables.Always_use_prebuilt_sdks)
Colin Cross1f367bf2018-12-18 22:46:24 -0800868}
869
Paul Duffin9a89a2a2020-10-28 19:20:06 +0000870// Returns true if the boot jars check should be skipped.
871func (c *config) SkipBootJarsCheck() bool {
872 return Bool(c.productVariables.Skip_boot_jars_check)
873}
874
Colin Cross126a25c2017-10-31 13:55:34 -0700875func (c *config) MinimizeJavaDebugInfo() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800876 return Bool(c.productVariables.MinimizeJavaDebugInfo) && !Bool(c.productVariables.Eng)
Colin Cross126a25c2017-10-31 13:55:34 -0700877}
878
Colin Crossed064c02018-09-05 16:28:13 -0700879func (c *config) Debuggable() bool {
880 return Bool(c.productVariables.Debuggable)
881}
882
Jaewoong Jung1d6eb682018-11-29 15:08:44 -0800883func (c *config) Eng() bool {
884 return Bool(c.productVariables.Eng)
885}
886
Jiyong Park8d52f862018-07-07 18:02:07 +0900887func (c *config) DevicePrimaryArchType() ArchType {
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700888 return c.Targets[Android][0].Arch.ArchType
Jiyong Park8d52f862018-07-07 18:02:07 +0900889}
890
Colin Cross16b23492016-01-06 14:41:07 -0800891func (c *config) SanitizeHost() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800892 return append([]string(nil), c.productVariables.SanitizeHost...)
Colin Cross16b23492016-01-06 14:41:07 -0800893}
894
895func (c *config) SanitizeDevice() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800896 return append([]string(nil), c.productVariables.SanitizeDevice...)
Colin Cross23ae82a2016-11-02 14:34:39 -0700897}
898
Ivan Lozano0c3a1ef2017-06-28 09:10:48 -0700899func (c *config) SanitizeDeviceDiag() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800900 return append([]string(nil), c.productVariables.SanitizeDeviceDiag...)
Ivan Lozano0c3a1ef2017-06-28 09:10:48 -0700901}
902
Colin Cross23ae82a2016-11-02 14:34:39 -0700903func (c *config) SanitizeDeviceArch() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800904 return append([]string(nil), c.productVariables.SanitizeDeviceArch...)
Colin Cross16b23492016-01-06 14:41:07 -0800905}
Colin Crossa1ad8d12016-06-01 17:09:44 -0700906
Vishwath Mohan1b017a72017-01-19 13:54:55 -0800907func (c *config) EnableCFI() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800908 if c.productVariables.EnableCFI == nil {
Vishwath Mohanc32c3eb2017-01-24 14:20:54 -0800909 return true
Vishwath Mohanc32c3eb2017-01-24 14:20:54 -0800910 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500911 return *c.productVariables.EnableCFI
Vishwath Mohan1b017a72017-01-19 13:54:55 -0800912}
913
Kostya Kortchinskyd5275c82019-02-01 08:42:56 -0800914func (c *config) DisableScudo() bool {
915 return Bool(c.productVariables.DisableScudo)
916}
917
Colin Crossa1ad8d12016-06-01 17:09:44 -0700918func (c *config) Android64() bool {
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700919 for _, t := range c.Targets[Android] {
Colin Crossa1ad8d12016-06-01 17:09:44 -0700920 if t.Arch.ArchType.Multilib == "lib64" {
921 return true
922 }
923 }
924
925 return false
926}
Colin Cross9272ade2016-08-17 15:24:12 -0700927
Colin Cross9d45bb72016-08-29 16:14:13 -0700928func (c *config) UseGoma() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800929 return Bool(c.productVariables.UseGoma)
Colin Cross9d45bb72016-08-29 16:14:13 -0700930}
931
Ramy Medhatbbf25672019-07-17 12:30:04 +0000932func (c *config) UseRBE() bool {
933 return Bool(c.productVariables.UseRBE)
934}
935
Ramy Medhat8ea054a2020-01-27 14:19:44 -0500936func (c *config) UseRBEJAVAC() bool {
937 return Bool(c.productVariables.UseRBEJAVAC)
938}
939
940func (c *config) UseRBER8() bool {
941 return Bool(c.productVariables.UseRBER8)
942}
943
944func (c *config) UseRBED8() bool {
945 return Bool(c.productVariables.UseRBED8)
946}
947
Colin Cross8b8bec32019-11-15 13:18:43 -0800948func (c *config) UseRemoteBuild() bool {
949 return c.UseGoma() || c.UseRBE()
950}
951
Colin Cross66548102018-06-19 22:47:35 -0700952func (c *config) RunErrorProne() bool {
953 return c.IsEnvTrue("RUN_ERROR_PRONE")
954}
955
Jingwen Chenc711fec2020-11-22 23:52:50 -0500956// XrefCorpusName returns the Kythe cross-reference corpus name.
Sasha Smundak2a4549e2018-11-05 16:49:08 -0800957func (c *config) XrefCorpusName() string {
958 return c.Getenv("XREF_CORPUS")
959}
960
Jingwen Chenc711fec2020-11-22 23:52:50 -0500961// XrefCuEncoding returns the compilation unit encoding to use for Kythe code
962// xrefs. Can be 'json' (default), 'proto' or 'all'.
Sasha Smundak6c2d4f92020-01-09 17:34:23 -0800963func (c *config) XrefCuEncoding() string {
964 if enc := c.Getenv("KYTHE_KZIP_ENCODING"); enc != "" {
965 return enc
966 }
967 return "json"
968}
969
Sasha Smundakb0addaf2021-02-16 10:39:40 -0800970// XrefCuJavaSourceMax returns the maximum number of the Java source files
971// in a single compilation unit
972const xrefJavaSourceFileMaxDefault = "1000"
973
974func (c Config) XrefCuJavaSourceMax() string {
975 v := c.Getenv("KYTHE_JAVA_SOURCE_BATCH_SIZE")
976 if v == "" {
977 return xrefJavaSourceFileMaxDefault
978 }
979 if _, err := strconv.ParseUint(v, 0, 0); err != nil {
980 fmt.Fprintf(os.Stderr,
981 "bad KYTHE_JAVA_SOURCE_BATCH_SIZE value: %s, will use %s",
982 err, xrefJavaSourceFileMaxDefault)
983 return xrefJavaSourceFileMaxDefault
984 }
985 return v
986
987}
988
Sasha Smundak2a4549e2018-11-05 16:49:08 -0800989func (c *config) EmitXrefRules() bool {
990 return c.XrefCorpusName() != ""
991}
992
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700993func (c *config) ClangTidy() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800994 return Bool(c.productVariables.ClangTidy)
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700995}
996
997func (c *config) TidyChecks() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800998 if c.productVariables.TidyChecks == nil {
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700999 return ""
1000 }
Dan Willemsen45133ac2018-03-09 21:22:06 -08001001 return *c.productVariables.TidyChecks
Dan Willemsena03cf6d2016-09-26 15:45:04 -07001002}
1003
Colin Cross0f4e0d62016-07-27 10:56:55 -07001004func (c *config) LibartImgHostBaseAddress() string {
1005 return "0x60000000"
1006}
1007
1008func (c *config) LibartImgDeviceBaseAddress() string {
Elliott Hughesda3a0712020-03-06 16:55:28 -08001009 return "0x70000000"
Colin Cross0f4e0d62016-07-27 10:56:55 -07001010}
1011
Hiroshi Yamauchie2a10632016-12-19 13:44:41 -08001012func (c *config) ArtUseReadBarrier() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001013 return Bool(c.productVariables.ArtUseReadBarrier)
Hiroshi Yamauchie2a10632016-12-19 13:44:41 -08001014}
1015
Jingwen Chenc711fec2020-11-22 23:52:50 -05001016// Enforce Runtime Resource Overlays for a module. RROs supersede static RROs,
1017// but some modules still depend on it.
1018//
1019// More info: https://source.android.com/devices/architecture/rros
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001020func (c *config) EnforceRROForModule(name string) bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001021 enforceList := c.productVariables.EnforceRROTargets
Jeongik Chacee5ba92021-02-19 12:11:51 +09001022
Roland Levillainf6cc2612020-07-09 16:58:14 +01001023 if len(enforceList) > 0 {
Yo Chiang4ebd06a2019-10-01 13:13:41 +08001024 if InList("*", enforceList) {
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001025 return true
1026 }
Colin Crossa74ca042019-01-31 14:31:51 -08001027 return InList(name, enforceList)
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001028 }
1029 return false
1030}
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001031func (c *config) EnforceRROExcludedOverlay(path string) bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001032 excluded := c.productVariables.EnforceRROExcludedOverlays
Roland Levillainf6cc2612020-07-09 16:58:14 +01001033 if len(excluded) > 0 {
Jaewoong Jung3aff5782020-02-11 07:54:35 -08001034 return HasAnyPrefix(path, excluded)
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001035 }
1036 return false
1037}
1038
1039func (c *config) ExportedNamespaces() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001040 return append([]string(nil), c.productVariables.NamespacesToExport...)
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001041}
1042
1043func (c *config) HostStaticBinaries() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001044 return Bool(c.productVariables.HostStaticBinaries)
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001045}
1046
Colin Cross5a0dcd52018-10-05 14:20:06 -07001047func (c *config) UncompressPrivAppDex() bool {
1048 return Bool(c.productVariables.UncompressPrivAppDex)
1049}
1050
1051func (c *config) ModulesLoadedByPrivilegedModules() []string {
1052 return c.productVariables.ModulesLoadedByPrivilegedModules
1053}
1054
Jingwen Chenc711fec2020-11-22 23:52:50 -05001055// DexpreoptGlobalConfigPath returns the path to the dexpreopt.config file in
1056// the output directory, if it was created during the product configuration
1057// phase by Kati.
Jingwen Chenebb0b572020-11-02 00:24:57 -05001058func (c *config) DexpreoptGlobalConfigPath(ctx PathContext) OptionalPath {
Colin Cross988414c2020-01-11 01:11:46 +00001059 if c.productVariables.DexpreoptGlobalConfig == nil {
Jingwen Chenebb0b572020-11-02 00:24:57 -05001060 return OptionalPathForPath(nil)
1061 }
1062 return OptionalPathForPath(
1063 pathForBuildToolDep(ctx, *c.productVariables.DexpreoptGlobalConfig))
1064}
1065
Jingwen Chenc711fec2020-11-22 23:52:50 -05001066// DexpreoptGlobalConfig returns the raw byte contents of the dexpreopt global
1067// configuration. Since the configuration file was created by Kati during
1068// product configuration (externally of soong_build), it's not tracked, so we
1069// also manually add a Ninja file dependency on the configuration file to the
1070// rule that creates the main build.ninja file. This ensures that build.ninja is
1071// regenerated correctly if dexpreopt.config changes.
Jingwen Chenebb0b572020-11-02 00:24:57 -05001072func (c *config) DexpreoptGlobalConfig(ctx PathContext) ([]byte, error) {
1073 path := c.DexpreoptGlobalConfigPath(ctx)
1074 if !path.Valid() {
Colin Cross988414c2020-01-11 01:11:46 +00001075 return nil, nil
1076 }
Jingwen Chenebb0b572020-11-02 00:24:57 -05001077 ctx.AddNinjaFileDeps(path.String())
1078 return ioutil.ReadFile(absolutePath(path.String()))
Colin Cross43f08db2018-11-12 10:13:39 -08001079}
1080
Inseob Kim7b85eeb2021-03-23 20:52:24 +09001081func (c *deviceConfig) WithDexpreopt() bool {
1082 return c.config.productVariables.WithDexpreopt
1083}
1084
David Brazdil91b4e3e2019-01-23 21:04:05 +00001085func (c *config) FrameworksBaseDirExists(ctx PathContext) bool {
Colin Cross5a756a62021-03-16 16:34:46 -07001086 return ExistentPathForSource(ctx, "frameworks", "base", "Android.bp").Valid()
David Brazdil91b4e3e2019-01-23 21:04:05 +00001087}
1088
Inseob Kimae553032019-05-14 18:52:49 +09001089func (c *config) VndkSnapshotBuildArtifacts() bool {
1090 return Bool(c.productVariables.VndkSnapshotBuildArtifacts)
1091}
1092
Colin Cross3b19f5d2019-09-17 14:45:31 -07001093func (c *config) HasMultilibConflict(arch ArchType) bool {
1094 return c.multilibConflicts[arch]
1095}
1096
Bill Peckhambae47492021-01-08 09:34:44 -08001097func (c *config) PrebuiltHiddenApiDir(ctx PathContext) string {
1098 return String(c.productVariables.PrebuiltHiddenApiDir)
1099}
1100
Colin Cross9272ade2016-08-17 15:24:12 -07001101func (c *deviceConfig) Arches() []Arch {
1102 var arches []Arch
Dan Willemsen0ef639b2018-10-10 17:02:29 -07001103 for _, target := range c.config.Targets[Android] {
Colin Cross9272ade2016-08-17 15:24:12 -07001104 arches = append(arches, target.Arch)
1105 }
1106 return arches
1107}
Dan Willemsend2ede872016-11-18 14:54:24 -08001108
Jayant Chowdhary34ce67d2018-03-08 11:00:50 -08001109func (c *deviceConfig) BinderBitness() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001110 is32BitBinder := c.config.productVariables.Binder32bit
Jayant Chowdhary34ce67d2018-03-08 11:00:50 -08001111 if is32BitBinder != nil && *is32BitBinder {
1112 return "32"
1113 }
1114 return "64"
1115}
1116
Dan Willemsen4353bc42016-12-05 17:16:02 -08001117func (c *deviceConfig) VendorPath() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001118 if c.config.productVariables.VendorPath != nil {
1119 return *c.config.productVariables.VendorPath
Dan Willemsen4353bc42016-12-05 17:16:02 -08001120 }
1121 return "vendor"
1122}
1123
Justin Yun71549282017-11-17 12:10:28 +09001124func (c *deviceConfig) VndkVersion() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001125 return String(c.config.productVariables.DeviceVndkVersion)
Justin Yun71549282017-11-17 12:10:28 +09001126}
1127
Jose Galmes6f843bc2020-12-11 13:36:29 -08001128func (c *deviceConfig) RecoverySnapshotVersion() string {
1129 return String(c.config.productVariables.RecoverySnapshotVersion)
1130}
1131
Jeongik Cha219141c2020-08-06 23:00:37 +09001132func (c *deviceConfig) CurrentApiLevelForVendorModules() string {
1133 return StringDefault(c.config.productVariables.DeviceCurrentApiLevelForVendorModules, "current")
1134}
1135
Justin Yun8fe12122017-12-07 17:18:15 +09001136func (c *deviceConfig) PlatformVndkVersion() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001137 return String(c.config.productVariables.Platform_vndk_version)
Justin Yun8fe12122017-12-07 17:18:15 +09001138}
1139
Justin Yun5f7f7e82019-11-18 19:52:14 +09001140func (c *deviceConfig) ProductVndkVersion() string {
1141 return String(c.config.productVariables.ProductVndkVersion)
1142}
1143
Justin Yun71549282017-11-17 12:10:28 +09001144func (c *deviceConfig) ExtraVndkVersions() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001145 return c.config.productVariables.ExtraVndkVersions
Dan Willemsend2ede872016-11-18 14:54:24 -08001146}
Jack He8cc71432016-12-08 15:45:07 -08001147
Vic Yangefd249e2018-11-12 20:19:56 -08001148func (c *deviceConfig) VndkUseCoreVariant() bool {
1149 return Bool(c.config.productVariables.VndkUseCoreVariant)
1150}
1151
Jiyong Park1a5d7b12018-01-15 15:05:10 +09001152func (c *deviceConfig) SystemSdkVersions() []string {
Colin Crossa74ca042019-01-31 14:31:51 -08001153 return c.config.productVariables.DeviceSystemSdkVersions
Jiyong Park1a5d7b12018-01-15 15:05:10 +09001154}
1155
1156func (c *deviceConfig) PlatformSystemSdkVersions() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001157 return c.config.productVariables.Platform_systemsdk_versions
Jiyong Park1a5d7b12018-01-15 15:05:10 +09001158}
1159
Jiyong Park2db76922017-11-08 16:03:48 +09001160func (c *deviceConfig) OdmPath() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001161 if c.config.productVariables.OdmPath != nil {
1162 return *c.config.productVariables.OdmPath
Jiyong Park2db76922017-11-08 16:03:48 +09001163 }
1164 return "odm"
1165}
1166
Jaekyun Seok5cfbfbb2018-01-10 19:00:15 +09001167func (c *deviceConfig) ProductPath() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001168 if c.config.productVariables.ProductPath != nil {
1169 return *c.config.productVariables.ProductPath
Jiyong Park2db76922017-11-08 16:03:48 +09001170 }
Jaekyun Seok5cfbfbb2018-01-10 19:00:15 +09001171 return "product"
Jiyong Park2db76922017-11-08 16:03:48 +09001172}
1173
Justin Yund5f6c822019-06-25 16:47:17 +09001174func (c *deviceConfig) SystemExtPath() string {
1175 if c.config.productVariables.SystemExtPath != nil {
1176 return *c.config.productVariables.SystemExtPath
Dario Frenifd05a742018-05-29 13:28:54 +01001177 }
Justin Yund5f6c822019-06-25 16:47:17 +09001178 return "system_ext"
Dario Frenifd05a742018-05-29 13:28:54 +01001179}
1180
Jack He8cc71432016-12-08 15:45:07 -08001181func (c *deviceConfig) BtConfigIncludeDir() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001182 return String(c.config.productVariables.BtConfigIncludeDir)
Jack He8cc71432016-12-08 15:45:07 -08001183}
Dan Willemsen581341d2017-02-09 16:16:31 -08001184
Jiyong Parkd773eb32017-07-03 13:18:12 +09001185func (c *deviceConfig) DeviceKernelHeaderDirs() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001186 return c.config.productVariables.DeviceKernelHeaders
Jiyong Parkd773eb32017-07-03 13:18:12 +09001187}
1188
Yi Kongceb5b762020-03-20 15:22:27 +08001189func (c *deviceConfig) SamplingPGO() bool {
1190 return Bool(c.config.productVariables.SamplingPGO)
1191}
1192
Roland Levillainada12702020-06-09 13:07:36 +01001193// JavaCoverageEnabledForPath returns whether Java code coverage is enabled for
1194// path. Coverage is enabled by default when the product variable
1195// JavaCoveragePaths is empty. If JavaCoveragePaths is not empty, coverage is
1196// enabled for any path which is part of this variable (and not part of the
1197// JavaCoverageExcludePaths product variable). Value "*" in JavaCoveragePaths
1198// represents any path.
1199func (c *deviceConfig) JavaCoverageEnabledForPath(path string) bool {
1200 coverage := false
Chris Gross2f748692020-06-24 20:36:59 +00001201 if len(c.config.productVariables.JavaCoveragePaths) == 0 ||
Roland Levillainada12702020-06-09 13:07:36 +01001202 InList("*", c.config.productVariables.JavaCoveragePaths) ||
1203 HasAnyPrefix(path, c.config.productVariables.JavaCoveragePaths) {
1204 coverage = true
1205 }
Roland Levillainf6cc2612020-07-09 16:58:14 +01001206 if coverage && len(c.config.productVariables.JavaCoverageExcludePaths) > 0 {
Roland Levillainada12702020-06-09 13:07:36 +01001207 if HasAnyPrefix(path, c.config.productVariables.JavaCoverageExcludePaths) {
1208 coverage = false
1209 }
1210 }
1211 return coverage
1212}
1213
Colin Cross1a6acd42020-06-16 17:51:46 -07001214// Returns true if gcov or clang coverage is enabled.
Dan Willemsen581341d2017-02-09 16:16:31 -08001215func (c *deviceConfig) NativeCoverageEnabled() bool {
Colin Cross1a6acd42020-06-16 17:51:46 -07001216 return Bool(c.config.productVariables.GcovCoverage) ||
1217 Bool(c.config.productVariables.ClangCoverage)
Dan Willemsen581341d2017-02-09 16:16:31 -08001218}
1219
Oliver Nguyen1382ab62019-12-06 15:22:41 -08001220func (c *deviceConfig) ClangCoverageEnabled() bool {
1221 return Bool(c.config.productVariables.ClangCoverage)
1222}
1223
Colin Cross1a6acd42020-06-16 17:51:46 -07001224func (c *deviceConfig) GcovCoverageEnabled() bool {
1225 return Bool(c.config.productVariables.GcovCoverage)
1226}
1227
Roland Levillain4f5297b2020-06-09 12:44:06 +01001228// NativeCoverageEnabledForPath returns whether (GCOV- or Clang-based) native
1229// code coverage is enabled for path. By default, coverage is not enabled for a
1230// given path unless it is part of the NativeCoveragePaths product variable (and
1231// not part of the NativeCoverageExcludePaths product variable). Value "*" in
1232// NativeCoveragePaths represents any path.
1233func (c *deviceConfig) NativeCoverageEnabledForPath(path string) bool {
Ryan Campbell469a18a2017-02-27 09:01:54 -08001234 coverage := false
Roland Levillainf6cc2612020-07-09 16:58:14 +01001235 if len(c.config.productVariables.NativeCoveragePaths) > 0 {
Roland Levillain4f5297b2020-06-09 12:44:06 +01001236 if InList("*", c.config.productVariables.NativeCoveragePaths) || HasAnyPrefix(path, c.config.productVariables.NativeCoveragePaths) {
Ivan Lozano5f595532017-07-13 14:46:05 -07001237 coverage = true
Dan Willemsen581341d2017-02-09 16:16:31 -08001238 }
1239 }
Roland Levillainf6cc2612020-07-09 16:58:14 +01001240 if coverage && len(c.config.productVariables.NativeCoverageExcludePaths) > 0 {
Roland Levillain4f5297b2020-06-09 12:44:06 +01001241 if HasAnyPrefix(path, c.config.productVariables.NativeCoverageExcludePaths) {
Ivan Lozano5f595532017-07-13 14:46:05 -07001242 coverage = false
Ryan Campbell469a18a2017-02-27 09:01:54 -08001243 }
1244 }
1245 return coverage
Dan Willemsen581341d2017-02-09 16:16:31 -08001246}
Ivan Lozano5f595532017-07-13 14:46:05 -07001247
Pirama Arumuga Nainar49540802018-01-29 23:11:42 -08001248func (c *deviceConfig) PgoAdditionalProfileDirs() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001249 return c.config.productVariables.PgoAdditionalProfileDirs
Pirama Arumuga Nainar49540802018-01-29 23:11:42 -08001250}
1251
Tri Vo35a51432018-03-25 20:00:00 -07001252func (c *deviceConfig) VendorSepolicyDirs() []string {
1253 return c.config.productVariables.BoardVendorSepolicyDirs
1254}
1255
1256func (c *deviceConfig) OdmSepolicyDirs() []string {
1257 return c.config.productVariables.BoardOdmSepolicyDirs
1258}
1259
Felixa20a8752020-05-17 18:28:35 +02001260func (c *deviceConfig) SystemExtPublicSepolicyDirs() []string {
1261 return c.config.productVariables.SystemExtPublicSepolicyDirs
Tri Vo35a51432018-03-25 20:00:00 -07001262}
1263
Felixa20a8752020-05-17 18:28:35 +02001264func (c *deviceConfig) SystemExtPrivateSepolicyDirs() []string {
1265 return c.config.productVariables.SystemExtPrivateSepolicyDirs
Tri Vo35a51432018-03-25 20:00:00 -07001266}
1267
Inseob Kim0866b002019-04-15 20:21:29 +09001268func (c *deviceConfig) SepolicyM4Defs() []string {
1269 return c.config.productVariables.BoardSepolicyM4Defs
1270}
1271
Jiyong Park7f67f482019-01-05 12:57:48 +09001272func (c *deviceConfig) OverrideManifestPackageNameFor(name string) (manifestName string, overridden bool) {
Jaewoong Jung2ad817c2019-01-18 14:27:16 -08001273 return findOverrideValue(c.config.productVariables.ManifestPackageNameOverrides, name,
1274 "invalid override rule %q in PRODUCT_MANIFEST_PACKAGE_NAME_OVERRIDES should be <module_name>:<manifest_name>")
1275}
1276
1277func (c *deviceConfig) OverrideCertificateFor(name string) (certificatePath string, overridden bool) {
Jaewoong Jungacb6db32019-02-28 16:22:30 +00001278 return findOverrideValue(c.config.productVariables.CertificateOverrides, name,
Jaewoong Jung2ad817c2019-01-18 14:27:16 -08001279 "invalid override rule %q in PRODUCT_CERTIFICATE_OVERRIDES should be <module_name>:<certificate_module_name>")
1280}
1281
Jaewoong Jung9d22a912019-01-23 16:27:47 -08001282func (c *deviceConfig) OverridePackageNameFor(name string) string {
1283 newName, overridden := findOverrideValue(
1284 c.config.productVariables.PackageNameOverrides,
1285 name,
1286 "invalid override rule %q in PRODUCT_PACKAGE_NAME_OVERRIDES should be <module_name>:<package_name>")
1287 if overridden {
1288 return newName
1289 }
1290 return name
1291}
1292
Jaewoong Jung2ad817c2019-01-18 14:27:16 -08001293func findOverrideValue(overrides []string, name string, errorMsg string) (newValue string, overridden bool) {
Jiyong Park7f67f482019-01-05 12:57:48 +09001294 if overrides == nil || len(overrides) == 0 {
1295 return "", false
1296 }
1297 for _, o := range overrides {
1298 split := strings.Split(o, ":")
1299 if len(split) != 2 {
1300 // This shouldn't happen as this is first checked in make, but just in case.
Jaewoong Jung2ad817c2019-01-18 14:27:16 -08001301 panic(fmt.Errorf(errorMsg, o))
Jiyong Park7f67f482019-01-05 12:57:48 +09001302 }
1303 if matchPattern(split[0], name) {
1304 return substPattern(split[0], split[1], name), true
1305 }
1306 }
1307 return "", false
1308}
1309
Ivan Lozano5f595532017-07-13 14:46:05 -07001310func (c *config) IntegerOverflowDisabledForPath(path string) bool {
Roland Levillainf6cc2612020-07-09 16:58:14 +01001311 if len(c.productVariables.IntegerOverflowExcludePaths) == 0 {
Ivan Lozano5f595532017-07-13 14:46:05 -07001312 return false
1313 }
Jaewoong Jung3aff5782020-02-11 07:54:35 -08001314 return HasAnyPrefix(path, c.productVariables.IntegerOverflowExcludePaths)
Ivan Lozano5f595532017-07-13 14:46:05 -07001315}
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001316
1317func (c *config) CFIDisabledForPath(path string) bool {
Roland Levillainf6cc2612020-07-09 16:58:14 +01001318 if len(c.productVariables.CFIExcludePaths) == 0 {
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001319 return false
1320 }
Jaewoong Jung3aff5782020-02-11 07:54:35 -08001321 return HasAnyPrefix(path, c.productVariables.CFIExcludePaths)
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001322}
1323
1324func (c *config) CFIEnabledForPath(path string) bool {
Roland Levillainf6cc2612020-07-09 16:58:14 +01001325 if len(c.productVariables.CFIIncludePaths) == 0 {
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001326 return false
1327 }
Evgenii Stepanov779b64e2021-04-09 14:33:10 -07001328 return HasAnyPrefix(path, c.productVariables.CFIIncludePaths) && !c.CFIDisabledForPath(path)
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001329}
Colin Crosse15ddaf2017-12-04 11:24:31 -08001330
Evgenii Stepanov4beaa0c2021-01-05 16:41:26 -08001331func (c *config) MemtagHeapDisabledForPath(path string) bool {
1332 if len(c.productVariables.MemtagHeapExcludePaths) == 0 {
1333 return false
1334 }
1335 return HasAnyPrefix(path, c.productVariables.MemtagHeapExcludePaths)
1336}
1337
1338func (c *config) MemtagHeapAsyncEnabledForPath(path string) bool {
1339 if len(c.productVariables.MemtagHeapAsyncIncludePaths) == 0 {
1340 return false
1341 }
Evgenii Stepanov779b64e2021-04-09 14:33:10 -07001342 return HasAnyPrefix(path, c.productVariables.MemtagHeapAsyncIncludePaths) && !c.MemtagHeapDisabledForPath(path)
Evgenii Stepanov4beaa0c2021-01-05 16:41:26 -08001343}
1344
1345func (c *config) MemtagHeapSyncEnabledForPath(path string) bool {
1346 if len(c.productVariables.MemtagHeapSyncIncludePaths) == 0 {
1347 return false
1348 }
Evgenii Stepanov779b64e2021-04-09 14:33:10 -07001349 return HasAnyPrefix(path, c.productVariables.MemtagHeapSyncIncludePaths) && !c.MemtagHeapDisabledForPath(path)
Evgenii Stepanov4beaa0c2021-01-05 16:41:26 -08001350}
1351
Dan Willemsen0fe78662018-03-26 12:41:18 -07001352func (c *config) VendorConfig(name string) VendorConfig {
Colin Cross9d34f352019-11-22 16:03:51 -08001353 return soongconfig.Config(c.productVariables.VendorVars[name])
Dan Willemsen0fe78662018-03-26 12:41:18 -07001354}
1355
Colin Cross395f2cf2018-10-24 16:10:32 -07001356func (c *config) NdkAbis() bool {
1357 return Bool(c.productVariables.Ndk_abis)
1358}
1359
Martin Stjernholmc1ecc432019-11-15 15:00:31 +00001360func (c *config) AmlAbis() bool {
1361 return Bool(c.productVariables.Aml_abis)
1362}
1363
Jiyong Park8fd61922018-11-08 02:50:25 +09001364func (c *config) FlattenApex() bool {
Roland Levillaina3863212019-08-12 19:56:16 +01001365 return Bool(c.productVariables.Flatten_apex)
Jiyong Park8fd61922018-11-08 02:50:25 +09001366}
1367
Jiyong Park4da07972021-01-05 21:01:11 +09001368func (c *config) ForceApexSymlinkOptimization() bool {
1369 return Bool(c.productVariables.ForceApexSymlinkOptimization)
1370}
1371
Mohammad Samiul Islam3cd005d2020-11-26 13:32:26 +00001372func (c *config) CompressedApex() bool {
1373 return Bool(c.productVariables.CompressedApex)
1374}
1375
Jeongik Chac9464142019-01-07 12:07:27 +09001376func (c *config) EnforceSystemCertificate() bool {
1377 return Bool(c.productVariables.EnforceSystemCertificate)
1378}
1379
Colin Cross440e0d02020-06-11 11:32:11 -07001380func (c *config) EnforceSystemCertificateAllowList() []string {
1381 return c.productVariables.EnforceSystemCertificateAllowList
Jeongik Chac9464142019-01-07 12:07:27 +09001382}
1383
Jeongik Cha2cc570d2019-10-29 15:44:45 +09001384func (c *config) EnforceProductPartitionInterface() bool {
1385 return Bool(c.productVariables.EnforceProductPartitionInterface)
1386}
1387
JaeMan Parkff715562020-10-19 17:25:58 +09001388func (c *config) EnforceInterPartitionJavaSdkLibrary() bool {
1389 return Bool(c.productVariables.EnforceInterPartitionJavaSdkLibrary)
1390}
1391
1392func (c *config) InterPartitionJavaLibraryAllowList() []string {
1393 return c.productVariables.InterPartitionJavaLibraryAllowList
1394}
1395
Jooyung Han3ab2c3e2019-12-05 16:27:44 +09001396func (c *config) InstallExtraFlattenedApexes() bool {
1397 return Bool(c.productVariables.InstallExtraFlattenedApexes)
1398}
1399
Colin Crossf24a22a2019-01-31 14:12:44 -08001400func (c *config) ProductHiddenAPIStubs() []string {
1401 return c.productVariables.ProductHiddenAPIStubs
Colin Cross8faf8fc2019-01-16 15:15:52 -08001402}
1403
Colin Crossf24a22a2019-01-31 14:12:44 -08001404func (c *config) ProductHiddenAPIStubsSystem() []string {
1405 return c.productVariables.ProductHiddenAPIStubsSystem
Colin Cross8faf8fc2019-01-16 15:15:52 -08001406}
1407
Colin Crossf24a22a2019-01-31 14:12:44 -08001408func (c *config) ProductHiddenAPIStubsTest() []string {
1409 return c.productVariables.ProductHiddenAPIStubsTest
Colin Cross8faf8fc2019-01-16 15:15:52 -08001410}
Dan Willemsen71c74602019-04-10 12:27:35 -07001411
Dan Willemsen54879d12019-04-18 10:08:46 -07001412func (c *deviceConfig) TargetFSConfigGen() []string {
Dan Willemsen71c74602019-04-10 12:27:35 -07001413 return c.config.productVariables.TargetFSConfigGen
1414}
Inseob Kim0866b002019-04-15 20:21:29 +09001415
1416func (c *config) ProductPublicSepolicyDirs() []string {
1417 return c.productVariables.ProductPublicSepolicyDirs
1418}
1419
1420func (c *config) ProductPrivateSepolicyDirs() []string {
1421 return c.productVariables.ProductPrivateSepolicyDirs
1422}
1423
Colin Cross50ddcc42019-05-16 12:28:22 -07001424func (c *config) MissingUsesLibraries() []string {
1425 return c.productVariables.MissingUsesLibraries
1426}
1427
Inseob Kim1f086e22019-05-09 13:29:15 +09001428func (c *deviceConfig) DeviceArch() string {
1429 return String(c.config.productVariables.DeviceArch)
1430}
1431
1432func (c *deviceConfig) DeviceArchVariant() string {
1433 return String(c.config.productVariables.DeviceArchVariant)
1434}
1435
1436func (c *deviceConfig) DeviceSecondaryArch() string {
1437 return String(c.config.productVariables.DeviceSecondaryArch)
1438}
1439
1440func (c *deviceConfig) DeviceSecondaryArchVariant() string {
1441 return String(c.config.productVariables.DeviceSecondaryArchVariant)
1442}
Yifan Hong82db7352020-01-21 16:12:26 -08001443
1444func (c *deviceConfig) BoardUsesRecoveryAsBoot() bool {
1445 return Bool(c.config.productVariables.BoardUsesRecoveryAsBoot)
1446}
Yifan Hong97365ee2020-07-29 09:51:57 -07001447
1448func (c *deviceConfig) BoardKernelBinaries() []string {
1449 return c.config.productVariables.BoardKernelBinaries
1450}
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001451
Yifan Hong42bef8d2020-08-05 14:36:09 -07001452func (c *deviceConfig) BoardKernelModuleInterfaceVersions() []string {
1453 return c.config.productVariables.BoardKernelModuleInterfaceVersions
1454}
1455
Yifan Hongdd8dacc2020-10-21 15:40:17 -07001456func (c *deviceConfig) BoardMoveRecoveryResourcesToVendorBoot() bool {
1457 return Bool(c.config.productVariables.BoardMoveRecoveryResourcesToVendorBoot)
1458}
1459
Inseob Kim16ebd5a2020-12-09 23:08:17 +09001460func (c *deviceConfig) PlatformSepolicyVersion() string {
1461 return String(c.config.productVariables.PlatformSepolicyVersion)
1462}
1463
1464func (c *deviceConfig) BoardSepolicyVers() string {
Inseob Kim0c4eec82021-03-22 22:33:40 +09001465 if ver := String(c.config.productVariables.BoardSepolicyVers); ver != "" {
1466 return ver
1467 }
1468 return c.PlatformSepolicyVersion()
Inseob Kim16ebd5a2020-12-09 23:08:17 +09001469}
1470
1471func (c *deviceConfig) BoardReqdMaskPolicy() []string {
1472 return c.config.productVariables.BoardReqdMaskPolicy
1473}
1474
Inseob Kim7cf14652021-01-06 23:06:52 +09001475func (c *deviceConfig) DirectedVendorSnapshot() bool {
1476 return c.config.productVariables.DirectedVendorSnapshot
1477}
1478
1479func (c *deviceConfig) VendorSnapshotModules() map[string]bool {
1480 return c.config.productVariables.VendorSnapshotModules
1481}
1482
Jose Galmes4c6895e2021-02-09 07:44:30 -08001483func (c *deviceConfig) DirectedRecoverySnapshot() bool {
1484 return c.config.productVariables.DirectedRecoverySnapshot
1485}
1486
1487func (c *deviceConfig) RecoverySnapshotModules() map[string]bool {
1488 return c.config.productVariables.RecoverySnapshotModules
1489}
1490
Justin DeMartino383bfb32021-02-24 10:49:43 -08001491func createDirsMap(previous map[string]bool, dirs []string) (map[string]bool, error) {
1492 var ret = make(map[string]bool)
1493 for _, dir := range dirs {
1494 clean := filepath.Clean(dir)
1495 if previous[clean] || ret[clean] {
1496 return nil, fmt.Errorf("Duplicate entry %s", dir)
1497 }
1498 ret[clean] = true
1499 }
1500 return ret, nil
1501}
1502
1503func (c *deviceConfig) createDirsMapOnce(onceKey OnceKey, previous map[string]bool, dirs []string) map[string]bool {
1504 dirMap := c.Once(onceKey, func() interface{} {
1505 ret, err := createDirsMap(previous, dirs)
1506 if err != nil {
1507 panic(fmt.Errorf("%s: %w", onceKey.key, err))
1508 }
1509 return ret
1510 })
1511 if dirMap == nil {
1512 return nil
1513 }
1514 return dirMap.(map[string]bool)
1515}
1516
1517var vendorSnapshotDirsExcludedKey = NewOnceKey("VendorSnapshotDirsExcludedMap")
1518
1519func (c *deviceConfig) VendorSnapshotDirsExcludedMap() map[string]bool {
1520 return c.createDirsMapOnce(vendorSnapshotDirsExcludedKey, nil,
1521 c.config.productVariables.VendorSnapshotDirsExcluded)
1522}
1523
1524var vendorSnapshotDirsIncludedKey = NewOnceKey("VendorSnapshotDirsIncludedMap")
1525
1526func (c *deviceConfig) VendorSnapshotDirsIncludedMap() map[string]bool {
1527 excludedMap := c.VendorSnapshotDirsExcludedMap()
1528 return c.createDirsMapOnce(vendorSnapshotDirsIncludedKey, excludedMap,
1529 c.config.productVariables.VendorSnapshotDirsIncluded)
1530}
1531
1532var recoverySnapshotDirsExcludedKey = NewOnceKey("RecoverySnapshotDirsExcludedMap")
1533
1534func (c *deviceConfig) RecoverySnapshotDirsExcludedMap() map[string]bool {
1535 return c.createDirsMapOnce(recoverySnapshotDirsExcludedKey, nil,
1536 c.config.productVariables.RecoverySnapshotDirsExcluded)
1537}
1538
1539var recoverySnapshotDirsIncludedKey = NewOnceKey("RecoverySnapshotDirsIncludedMap")
1540
1541func (c *deviceConfig) RecoverySnapshotDirsIncludedMap() map[string]bool {
1542 excludedMap := c.RecoverySnapshotDirsExcludedMap()
1543 return c.createDirsMapOnce(recoverySnapshotDirsIncludedKey, excludedMap,
1544 c.config.productVariables.RecoverySnapshotDirsIncluded)
1545}
1546
Inseob Kim60c32f02020-12-21 22:53:05 +09001547func (c *deviceConfig) ShippingApiLevel() ApiLevel {
1548 if c.config.productVariables.ShippingApiLevel == nil {
1549 return NoneApiLevel
1550 }
1551 apiLevel, _ := strconv.Atoi(*c.config.productVariables.ShippingApiLevel)
1552 return uncheckedFinalApiLevel(apiLevel)
1553}
1554
Inseob Kim67e5add192021-03-17 18:05:33 +09001555func (c *deviceConfig) BuildBrokenEnforceSyspropOwner() bool {
1556 return c.config.productVariables.BuildBrokenEnforceSyspropOwner
1557}
1558
1559func (c *deviceConfig) BuildBrokenTrebleSyspropNeverallow() bool {
1560 return c.config.productVariables.BuildBrokenTrebleSyspropNeverallow
1561}
1562
Hridya Valsaraju5a5c7d52021-04-02 16:45:24 -07001563func (c *deviceConfig) BuildDebugfsRestrictionsEnabled() bool {
1564 return c.config.productVariables.BuildDebugfsRestrictionsEnabled
1565}
1566
Inseob Kim0cac7b42021-02-03 18:16:46 +09001567func (c *deviceConfig) BuildBrokenVendorPropertyNamespace() bool {
1568 return c.config.productVariables.BuildBrokenVendorPropertyNamespace
1569}
1570
Inseob Kim67e5add192021-03-17 18:05:33 +09001571func (c *deviceConfig) RequiresInsecureExecmemForSwiftshader() bool {
1572 return c.config.productVariables.RequiresInsecureExecmemForSwiftshader
1573}
1574
1575func (c *config) SelinuxIgnoreNeverallows() bool {
1576 return c.productVariables.SelinuxIgnoreNeverallows
1577}
1578
1579func (c *deviceConfig) SepolicySplit() bool {
1580 return c.config.productVariables.SepolicySplit
1581}
1582
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001583// The ConfiguredJarList struct provides methods for handling a list of (apex, jar) pairs.
1584// Such lists are used in the build system for things like bootclasspath jars or system server jars.
1585// The apex part is either an apex name, or a special names "platform" or "system_ext". Jar is a
1586// module name. The pairs come from Make product variables as a list of colon-separated strings.
1587//
1588// Examples:
1589// - "com.android.art:core-oj"
1590// - "platform:framework"
1591// - "system_ext:foo"
1592//
1593type ConfiguredJarList struct {
Jingwen Chenc711fec2020-11-22 23:52:50 -05001594 // A list of apex components, which can be an apex name,
1595 // or special names like "platform" or "system_ext".
1596 apexes []string
1597
1598 // A list of jar module name components.
1599 jars []string
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001600}
1601
Jingwen Chenc711fec2020-11-22 23:52:50 -05001602// Len returns the length of the list of jars.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001603func (l *ConfiguredJarList) Len() int {
1604 return len(l.jars)
1605}
1606
Jingwen Chenc711fec2020-11-22 23:52:50 -05001607// Jar returns the idx-th jar component of (apex, jar) pairs.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001608func (l *ConfiguredJarList) Jar(idx int) string {
1609 return l.jars[idx]
1610}
1611
Jingwen Chenc711fec2020-11-22 23:52:50 -05001612// Apex returns the idx-th apex component of (apex, jar) pairs.
Paul Duffin9a89a2a2020-10-28 19:20:06 +00001613func (l *ConfiguredJarList) Apex(idx int) string {
1614 return l.apexes[idx]
1615}
1616
Jingwen Chenc711fec2020-11-22 23:52:50 -05001617// ContainsJar returns true if the (apex, jar) pairs contains a pair with the
1618// given jar module name.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001619func (l *ConfiguredJarList) ContainsJar(jar string) bool {
1620 return InList(jar, l.jars)
1621}
1622
1623// If the list contains the given (apex, jar) pair.
1624func (l *ConfiguredJarList) containsApexJarPair(apex, jar string) bool {
1625 for i := 0; i < l.Len(); i++ {
Paul Duffin1e8c6072020-10-23 18:28:55 +01001626 if apex == l.apexes[i] && jar == l.jars[i] {
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001627 return true
1628 }
1629 }
1630 return false
1631}
1632
satayev3db35472021-05-06 23:59:58 +01001633// ApexOfJar returns the apex component of the first pair with the given jar name on the list, or
1634// an empty string if not found.
1635func (l *ConfiguredJarList) ApexOfJar(jar string) string {
1636 if idx := IndexList(jar, l.jars); idx != -1 {
1637 return l.Apex(IndexList(jar, l.jars))
1638 }
1639 return ""
1640}
1641
Jingwen Chenc711fec2020-11-22 23:52:50 -05001642// IndexOfJar returns the first pair with the given jar name on the list, or -1
1643// if not found.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001644func (l *ConfiguredJarList) IndexOfJar(jar string) int {
1645 return IndexList(jar, l.jars)
1646}
1647
Paul Duffin7d584e92020-10-23 18:26:03 +01001648func copyAndAppend(list []string, item string) []string {
1649 // Create the result list to be 1 longer than the input.
1650 result := make([]string, len(list)+1)
1651
1652 // Copy the whole input list into the result.
1653 count := copy(result, list)
1654
1655 // Insert the extra item at the end.
1656 result[count] = item
1657
1658 return result
1659}
1660
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001661// Append an (apex, jar) pair to the list.
Paul Duffin7d584e92020-10-23 18:26:03 +01001662func (l *ConfiguredJarList) Append(apex string, jar string) ConfiguredJarList {
1663 // Create a copy of the backing arrays before appending to avoid sharing backing
1664 // arrays that are mutated across instances.
1665 apexes := copyAndAppend(l.apexes, apex)
1666 jars := copyAndAppend(l.jars, jar)
1667
1668 return ConfiguredJarList{apexes, jars}
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001669}
1670
Jingwen Chenc711fec2020-11-22 23:52:50 -05001671// RemoveList filters out a list of (apex, jar) pairs from the receiving list of pairs.
Paul Duffin7d584e92020-10-23 18:26:03 +01001672func (l *ConfiguredJarList) RemoveList(list ConfiguredJarList) ConfiguredJarList {
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001673 apexes := make([]string, 0, l.Len())
1674 jars := make([]string, 0, l.Len())
1675
1676 for i, jar := range l.jars {
Paul Duffin1e8c6072020-10-23 18:28:55 +01001677 apex := l.apexes[i]
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001678 if !list.containsApexJarPair(apex, jar) {
1679 apexes = append(apexes, apex)
1680 jars = append(jars, jar)
1681 }
1682 }
1683
Paul Duffin7d584e92020-10-23 18:26:03 +01001684 return ConfiguredJarList{apexes, jars}
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001685}
1686
satayevd34eb0c2021-08-06 13:20:28 +01001687// Filter keeps the entries if a jar appears in the given list of jars to keep. Returns a new list
1688// and any remaining jars that are not on this list.
1689func (l *ConfiguredJarList) Filter(jarsToKeep []string) (ConfiguredJarList, []string) {
satayev8fab6f82021-05-07 00:10:33 +01001690 var apexes []string
1691 var jars []string
1692
1693 for i, jar := range l.jars {
1694 if InList(jar, jarsToKeep) {
1695 apexes = append(apexes, l.apexes[i])
1696 jars = append(jars, jar)
1697 }
1698 }
1699
satayevd34eb0c2021-08-06 13:20:28 +01001700 return ConfiguredJarList{apexes, jars}, RemoveListFromList(jarsToKeep, jars)
satayev8fab6f82021-05-07 00:10:33 +01001701}
1702
Jingwen Chenc711fec2020-11-22 23:52:50 -05001703// CopyOfJars returns a copy of the list of strings containing jar module name
1704// components.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001705func (l *ConfiguredJarList) CopyOfJars() []string {
1706 return CopyOf(l.jars)
1707}
1708
Jingwen Chenc711fec2020-11-22 23:52:50 -05001709// CopyOfApexJarPairs returns a copy of the list of strings with colon-separated
1710// (apex, jar) pairs.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001711func (l *ConfiguredJarList) CopyOfApexJarPairs() []string {
1712 pairs := make([]string, 0, l.Len())
1713
1714 for i, jar := range l.jars {
Paul Duffin1e8c6072020-10-23 18:28:55 +01001715 apex := l.apexes[i]
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001716 pairs = append(pairs, apex+":"+jar)
1717 }
1718
1719 return pairs
1720}
1721
Jingwen Chenc711fec2020-11-22 23:52:50 -05001722// BuildPaths returns a list of build paths based on the given directory prefix.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001723func (l *ConfiguredJarList) BuildPaths(ctx PathContext, dir OutputPath) WritablePaths {
1724 paths := make(WritablePaths, l.Len())
1725 for i, jar := range l.jars {
1726 paths[i] = dir.Join(ctx, ModuleStem(jar)+".jar")
1727 }
1728 return paths
1729}
1730
Paul Duffin5f148ca2021-06-02 17:24:22 +01001731// BuildPathsByModule returns a map from module name to build paths based on the given directory
1732// prefix.
1733func (l *ConfiguredJarList) BuildPathsByModule(ctx PathContext, dir OutputPath) map[string]WritablePath {
1734 paths := map[string]WritablePath{}
1735 for _, jar := range l.jars {
1736 paths[jar] = dir.Join(ctx, ModuleStem(jar)+".jar")
1737 }
1738 return paths
1739}
1740
Jingwen Chenc711fec2020-11-22 23:52:50 -05001741// UnmarshalJSON converts JSON configuration from raw bytes into a
1742// ConfiguredJarList structure.
Paul Duffin69d1fb12020-10-23 21:14:20 +01001743func (l *ConfiguredJarList) UnmarshalJSON(b []byte) error {
1744 // Try and unmarshal into a []string each item of which contains a pair
1745 // <apex>:<jar>.
1746 var list []string
1747 err := json.Unmarshal(b, &list)
1748 if err != nil {
1749 // Did not work so return
1750 return err
1751 }
1752
1753 apexes, jars, err := splitListOfPairsIntoPairOfLists(list)
1754 if err != nil {
1755 return err
1756 }
1757 l.apexes = apexes
1758 l.jars = jars
1759 return nil
1760}
1761
Lukacs T. Berki720b3962021-03-17 13:34:30 +01001762func (l *ConfiguredJarList) MarshalJSON() ([]byte, error) {
1763 if len(l.apexes) != len(l.jars) {
1764 return nil, errors.New(fmt.Sprintf("Inconsistent ConfiguredJarList: apexes: %q, jars: %q", l.apexes, l.jars))
1765 }
1766
1767 list := make([]string, 0, len(l.apexes))
1768
1769 for i := 0; i < len(l.apexes); i++ {
1770 list = append(list, l.apexes[i]+":"+l.jars[i])
1771 }
1772
1773 return json.Marshal(list)
1774}
1775
Jingwen Chenc711fec2020-11-22 23:52:50 -05001776// ModuleStem hardcodes the stem of framework-minus-apex to return "framework".
1777//
1778// TODO(b/139391334): hard coded until we find a good way to query the stem of a
1779// module before any other mutators are run.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001780func ModuleStem(module string) string {
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001781 if module == "framework-minus-apex" {
1782 return "framework"
1783 }
1784 return module
1785}
1786
Jingwen Chenc711fec2020-11-22 23:52:50 -05001787// DevicePaths computes the on-device paths for the list of (apex, jar) pairs,
1788// based on the operating system.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001789func (l *ConfiguredJarList) DevicePaths(cfg Config, ostype OsType) []string {
1790 paths := make([]string, l.Len())
1791 for i, jar := range l.jars {
1792 apex := l.apexes[i]
1793 name := ModuleStem(jar) + ".jar"
1794
1795 var subdir string
1796 if apex == "platform" {
1797 subdir = "system/framework"
1798 } else if apex == "system_ext" {
1799 subdir = "system_ext/framework"
1800 } else {
1801 subdir = filepath.Join("apex", apex, "javalib")
1802 }
1803
1804 if ostype.Class == Host {
1805 paths[i] = filepath.Join(cfg.Getenv("OUT_DIR"), "host", cfg.PrebuiltOS(), subdir, name)
1806 } else {
1807 paths[i] = filepath.Join("/", subdir, name)
1808 }
1809 }
1810 return paths
1811}
1812
Paul Duffin7d584e92020-10-23 18:26:03 +01001813func (l *ConfiguredJarList) String() string {
1814 var pairs []string
1815 for i := 0; i < l.Len(); i++ {
1816 pairs = append(pairs, l.apexes[i]+":"+l.jars[i])
1817 }
1818 return strings.Join(pairs, ",")
1819}
1820
Paul Duffin01416602020-10-23 21:04:03 +01001821func splitListOfPairsIntoPairOfLists(list []string) ([]string, []string, error) {
1822 // Now we need to populate this list by splitting each item in the slice of
1823 // pairs and appending them to the appropriate list of apexes or jars.
1824 apexes := make([]string, len(list))
1825 jars := make([]string, len(list))
1826
1827 for i, apexjar := range list {
1828 apex, jar, err := splitConfiguredJarPair(apexjar)
1829 if err != nil {
1830 return nil, nil, err
1831 }
1832 apexes[i] = apex
1833 jars[i] = jar
1834 }
1835
1836 return apexes, jars, nil
1837}
1838
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001839// Expected format for apexJarValue = <apex name>:<jar name>
Paul Duffin01416602020-10-23 21:04:03 +01001840func splitConfiguredJarPair(str string) (string, string, error) {
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001841 pair := strings.SplitN(str, ":", 2)
1842 if len(pair) == 2 {
Paul Duffin9c3ac962021-02-03 14:11:27 +00001843 apex := pair[0]
1844 jar := pair[1]
1845 if apex == "" {
1846 return apex, jar, fmt.Errorf("invalid apex '%s' in <apex>:<jar> pair '%s', expected format: <apex>:<jar>", apex, str)
1847 }
1848 return apex, jar, nil
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001849 } else {
Paul Duffin01416602020-10-23 21:04:03 +01001850 return "error-apex", "error-jar", fmt.Errorf("malformed (apex, jar) pair: '%s', expected format: <apex>:<jar>", str)
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001851 }
1852}
1853
Paul Duffin9c3ac962021-02-03 14:11:27 +00001854// CreateTestConfiguredJarList is a function to create ConfiguredJarList for tests.
Paul Duffine10dfa42020-10-23 21:23:44 +01001855func CreateTestConfiguredJarList(list []string) ConfiguredJarList {
Paul Duffin9c3ac962021-02-03 14:11:27 +00001856 // Create the ConfiguredJarList in as similar way as it is created at runtime by marshalling to
1857 // a json list of strings and then unmarshalling into a ConfiguredJarList instance.
1858 b, err := json.Marshal(list)
Paul Duffin01416602020-10-23 21:04:03 +01001859 if err != nil {
Paul Duffine10dfa42020-10-23 21:23:44 +01001860 panic(err)
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001861 }
1862
Paul Duffin9c3ac962021-02-03 14:11:27 +00001863 var jarList ConfiguredJarList
1864 err = json.Unmarshal(b, &jarList)
1865 if err != nil {
1866 panic(err)
1867 }
1868
1869 return jarList
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001870}
1871
Jingwen Chenc711fec2020-11-22 23:52:50 -05001872// EmptyConfiguredJarList returns an empty jar list.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001873func EmptyConfiguredJarList() ConfiguredJarList {
1874 return ConfiguredJarList{}
1875}
1876
1877var earlyBootJarsKey = NewOnceKey("earlyBootJars")
1878
1879func (c *config) BootJars() []string {
1880 return c.Once(earlyBootJarsKey, func() interface{} {
Paul Duffin69d1fb12020-10-23 21:14:20 +01001881 list := c.productVariables.BootJars.CopyOfJars()
satayevd604b212021-07-21 14:23:52 +01001882 return append(list, c.productVariables.ApexBootJars.CopyOfJars()...)
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001883 }).([]string)
1884}
Paul Duffin9a89a2a2020-10-28 19:20:06 +00001885
satayevd604b212021-07-21 14:23:52 +01001886func (c *config) NonApexBootJars() ConfiguredJarList {
Paul Duffin9a89a2a2020-10-28 19:20:06 +00001887 return c.productVariables.BootJars
1888}
1889
satayevd604b212021-07-21 14:23:52 +01001890func (c *config) ApexBootJars() ConfiguredJarList {
1891 return c.productVariables.ApexBootJars
Paul Duffin9a89a2a2020-10-28 19:20:06 +00001892}
Colin Cross77cdcfd2021-03-12 11:28:25 -08001893
1894func (c *config) RBEWrapper() string {
1895 return c.GetenvWithDefault("RBE_WRAPPER", remoteexec.DefaultWrapperPath)
1896}