blob: d3db68fd2cc589d3f1f4627d7b6ab70b080ad238 [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. Berki5f6cb1d2021-03-17 15:03:14 +010078func (c Config) DebugCompilation() bool {
79 return false // Never compile Go code in the main build for debugging
80}
81
Jingwen Chenc711fec2020-11-22 23:52:50 -050082// A DeviceConfig object represents the configuration for a particular device
83// being built. For now there will only be one of these, but in the future there
84// may be multiple devices being built.
Colin Cross9272ade2016-08-17 15:24:12 -070085type DeviceConfig struct {
86 *deviceConfig
87}
88
Jingwen Chenc711fec2020-11-22 23:52:50 -050089// VendorConfig represents the configuration for vendor-specific behavior.
Colin Cross9d34f352019-11-22 16:03:51 -080090type VendorConfig soongconfig.SoongConfig
Dan Willemsen0fe78662018-03-26 12:41:18 -070091
Jingwen Chenc711fec2020-11-22 23:52:50 -050092// Definition of general build configuration for soong_build. Some of these
Jingwen Chenc4d91bc2020-11-24 22:59:26 -050093// product configuration values are read from Kati-generated soong.variables.
Colin Cross1332b002015-04-07 17:11:30 -070094type config struct {
Jingwen Chenc711fec2020-11-22 23:52:50 -050095 // Options configurable with soong.variables
Dan Willemsen45133ac2018-03-09 21:22:06 -080096 productVariables productVariables
Colin Cross3f40fa42015-01-30 17:27:36 -080097
Dan Willemsen674dc7f2018-03-12 18:06:05 -070098 // Only available on configs created by TestConfig
99 TestProductVariables *productVariables
100
Jingwen Chenc711fec2020-11-22 23:52:50 -0500101 // A specialized context object for Bazel/Soong mixed builds and migration
102 // purposes.
Chris Parsonsf3c96ef2020-09-29 02:23:17 -0400103 BazelContext BazelContext
104
Dan Willemsen87b17d12015-07-14 00:39:06 -0700105 ProductVariablesFileName string
106
Colin Cross0c66bc62021-07-20 09:47:41 -0700107 // BuildOS stores the OsType for the OS that the build is running on.
108 BuildOS OsType
109
110 // BuildArch stores the ArchType for the CPU that the build is running on.
111 BuildArch ArchType
112
Jaewoong Jung642916f2020-10-09 17:25:15 -0700113 Targets map[OsType][]Target
114 BuildOSTarget Target // the Target for tools run on the build machine
115 BuildOSCommonTarget Target // the Target for common (java) tools run on the build machine
116 AndroidCommonTarget Target // the Target for common modules for the Android device
117 AndroidFirstDeviceTarget Target // the first Target for modules for the Android device
Dan Willemsen218f6562015-07-08 18:13:11 -0700118
Jingwen Chenc711fec2020-11-22 23:52:50 -0500119 // multilibConflicts for an ArchType is true if there is earlier configured
120 // device architecture with the same multilib value.
Colin Cross3b19f5d2019-09-17 14:45:31 -0700121 multilibConflicts map[ArchType]bool
122
Colin Cross9272ade2016-08-17 15:24:12 -0700123 deviceConfig *deviceConfig
124
Lukacs T. Berki9f6c24a2021-08-26 15:07:24 +0200125 soongOutDir string // the path of the build output directory
Chris Parsons8f232a22020-06-23 17:37:05 -0400126 moduleListFile string // the path to the file which lists blueprint files to parse.
Colin Crossc1e86a32015-04-15 12:33:28 -0700127
Colin Cross6ccbc912017-10-10 23:07:38 -0700128 env map[string]string
Dan Willemsene7680ba2015-09-11 17:06:19 -0700129 envLock sync.Mutex
130 envDeps map[string]string
131 envFrozen bool
Dan Willemsen5ba07e82015-12-11 13:51:06 -0800132
Jingwen Chencda22c92020-11-23 00:22:30 -0500133 // Changes behavior based on whether Kati runs after soong_build, or if soong_build
134 // runs standalone.
135 katiEnabled bool
Colin Cross1e7d3702016-08-24 15:25:47 -0700136
Colin Cross32616ed2017-09-05 21:56:44 -0700137 captureBuild bool // true for tests, saves build parameters for each module
138 ignoreEnvironment bool // true for tests, returns empty from all Getenv calls
Colin Crosscec81712017-07-13 14:43:27 -0700139
Colin Crosse87040b2017-12-11 15:52:26 -0800140 stopBefore bootstrap.StopBefore
141
Colin Cross98be1bb2019-12-13 20:41:13 -0800142 fs pathtools.FileSystem
143 mockBpList string
144
Jingwen Chen12b4c272021-03-10 02:05:59 -0500145 bp2buildPackageConfig Bp2BuildConfig
146 bp2buildModuleTypeConfig map[string]bool
147
Colin Cross5e6a7972020-06-07 16:56:32 -0700148 // If testAllowNonExistentPaths is true then PathForSource and PathForModuleSrc won't error
149 // in tests when a path doesn't exist.
Pedro Loureiro5d190cc2021-02-15 15:41:33 +0000150 TestAllowNonExistentPaths bool
Colin Cross5e6a7972020-06-07 16:56:32 -0700151
Jingwen Chenc711fec2020-11-22 23:52:50 -0500152 // The list of files that when changed, must invalidate soong_build to
153 // regenerate build.ninja.
Colin Cross12129292020-10-29 18:23:58 -0700154 ninjaFileDepsSet sync.Map
155
Colin Cross9272ade2016-08-17 15:24:12 -0700156 OncePer
157}
158
159type deviceConfig struct {
Dan Willemsen00269f22017-07-06 16:59:48 -0700160 config *config
Colin Cross9272ade2016-08-17 15:24:12 -0700161 OncePer
Colin Cross3f40fa42015-01-30 17:27:36 -0800162}
163
Colin Cross485e5722015-08-27 13:28:01 -0700164type jsonConfigurable interface {
Colin Cross27385972015-09-18 10:57:10 -0700165 SetDefaultConfig()
Colin Cross485e5722015-08-27 13:28:01 -0700166}
Colin Cross3f40fa42015-01-30 17:27:36 -0800167
Colin Cross485e5722015-08-27 13:28:01 -0700168func loadConfig(config *config) error {
Colin Cross988414c2020-01-11 01:11:46 +0000169 return loadFromConfigFile(&config.productVariables, absolutePath(config.ProductVariablesFileName))
Colin Cross485e5722015-08-27 13:28:01 -0700170}
171
Jingwen Chenc711fec2020-11-22 23:52:50 -0500172// loadFromConfigFile loads and decodes configuration options from a JSON file
173// in the current working directory.
Liz Kammer09f947d2021-05-12 14:51:49 -0400174func loadFromConfigFile(configurable *productVariables, filename string) error {
Colin Cross3f40fa42015-01-30 17:27:36 -0800175 // Try to open the file
Colin Cross485e5722015-08-27 13:28:01 -0700176 configFileReader, err := os.Open(filename)
Colin Cross3f40fa42015-01-30 17:27:36 -0800177 defer configFileReader.Close()
178 if os.IsNotExist(err) {
179 // Need to create a file, so that blueprint & ninja don't get in
180 // a dependency tracking loop.
181 // Make a file-configurable-options with defaults, write it out using
182 // a json writer.
Colin Cross27385972015-09-18 10:57:10 -0700183 configurable.SetDefaultConfig()
184 err = saveToConfigFile(configurable, filename)
Colin Cross3f40fa42015-01-30 17:27:36 -0800185 if err != nil {
186 return err
187 }
Colin Cross15cd21a2018-02-27 11:26:02 -0800188 } else if err != nil {
189 return fmt.Errorf("config file: could not open %s: %s", filename, err.Error())
Colin Cross3f40fa42015-01-30 17:27:36 -0800190 } else {
191 // Make a decoder for it
192 jsonDecoder := json.NewDecoder(configFileReader)
Colin Cross485e5722015-08-27 13:28:01 -0700193 err = jsonDecoder.Decode(configurable)
Colin Cross3f40fa42015-01-30 17:27:36 -0800194 if err != nil {
Colin Cross15cd21a2018-02-27 11:26:02 -0800195 return fmt.Errorf("config file: %s did not parse correctly: %s", filename, err.Error())
Colin Cross3f40fa42015-01-30 17:27:36 -0800196 }
197 }
198
Liz Kammer09f947d2021-05-12 14:51:49 -0400199 if Bool(configurable.GcovCoverage) && Bool(configurable.ClangCoverage) {
200 return fmt.Errorf("GcovCoverage and ClangCoverage cannot both be set")
201 }
202
203 configurable.Native_coverage = proptools.BoolPtr(
204 Bool(configurable.GcovCoverage) ||
205 Bool(configurable.ClangCoverage))
206
Yuntao Xu402e9b02021-08-09 15:44:44 -0700207 // when Platform_sdk_final is true (or PLATFORM_VERSION_CODENAME is REL), use Platform_sdk_version;
208 // if false (pre-released version, for example), use Platform_sdk_codename.
209 if Bool(configurable.Platform_sdk_final) {
210 if configurable.Platform_sdk_version != nil {
211 configurable.Platform_sdk_version_or_codename =
212 proptools.StringPtr(strconv.Itoa(*(configurable.Platform_sdk_version)))
213 } else {
214 return fmt.Errorf("Platform_sdk_version cannot be pointed by a NULL pointer")
215 }
216 } else {
217 configurable.Platform_sdk_version_or_codename =
218 proptools.StringPtr(String(configurable.Platform_sdk_codename))
219 }
220
Liz Kammer09f947d2021-05-12 14:51:49 -0400221 return saveToBazelConfigFile(configurable, filepath.Dir(filename))
Colin Cross3f40fa42015-01-30 17:27:36 -0800222}
223
Colin Crossd8f20142016-11-03 09:43:26 -0700224// atomically writes the config file in case two copies of soong_build are running simultaneously
225// (for example, docs generation and ninja manifest generation)
Liz Kammer09f947d2021-05-12 14:51:49 -0400226func saveToConfigFile(config *productVariables, filename string) error {
Colin Cross3f40fa42015-01-30 17:27:36 -0800227 data, err := json.MarshalIndent(&config, "", " ")
228 if err != nil {
229 return fmt.Errorf("cannot marshal config data: %s", err.Error())
230 }
231
Colin Crossd8f20142016-11-03 09:43:26 -0700232 f, err := ioutil.TempFile(filepath.Dir(filename), "config")
Colin Cross3f40fa42015-01-30 17:27:36 -0800233 if err != nil {
Jingwen Chenc711fec2020-11-22 23:52:50 -0500234 return fmt.Errorf("cannot create empty config file %s: %s", filename, err.Error())
Colin Cross3f40fa42015-01-30 17:27:36 -0800235 }
Colin Crossd8f20142016-11-03 09:43:26 -0700236 defer os.Remove(f.Name())
237 defer f.Close()
Colin Cross3f40fa42015-01-30 17:27:36 -0800238
Colin Crossd8f20142016-11-03 09:43:26 -0700239 _, err = f.Write(data)
Colin Cross3f40fa42015-01-30 17:27:36 -0800240 if err != nil {
Colin Cross485e5722015-08-27 13:28:01 -0700241 return fmt.Errorf("default config file: %s could not be written: %s", filename, err.Error())
242 }
243
Colin Crossd8f20142016-11-03 09:43:26 -0700244 _, err = f.WriteString("\n")
Colin Cross485e5722015-08-27 13:28:01 -0700245 if err != nil {
246 return fmt.Errorf("default config file: %s could not be written: %s", filename, err.Error())
Colin Cross3f40fa42015-01-30 17:27:36 -0800247 }
248
Colin Crossd8f20142016-11-03 09:43:26 -0700249 f.Close()
250 os.Rename(f.Name(), filename)
251
Colin Cross3f40fa42015-01-30 17:27:36 -0800252 return nil
253}
254
Liz Kammer09f947d2021-05-12 14:51:49 -0400255func saveToBazelConfigFile(config *productVariables, outDir string) error {
256 dir := filepath.Join(outDir, bazel.SoongInjectionDirName, "product_config")
257 err := createDirIfNonexistent(dir, os.ModePerm)
258 if err != nil {
259 return fmt.Errorf("Could not create dir %s: %s", dir, err)
260 }
261
262 data, err := json.MarshalIndent(&config, "", " ")
263 if err != nil {
264 return fmt.Errorf("cannot marshal config data: %s", err.Error())
265 }
266
267 bzl := []string{
268 bazel.GeneratedBazelFileWarning,
269 fmt.Sprintf(`_product_vars = json.decode("""%s""")`, data),
270 "product_vars = _product_vars\n",
271 }
272 err = ioutil.WriteFile(filepath.Join(dir, "product_variables.bzl"), []byte(strings.Join(bzl, "\n")), 0644)
273 if err != nil {
274 return fmt.Errorf("Could not write .bzl config file %s", err)
275 }
276 err = ioutil.WriteFile(filepath.Join(dir, "BUILD"), []byte(bazel.GeneratedBazelFileWarning), 0644)
277 if err != nil {
278 return fmt.Errorf("Could not write BUILD config file %s", err)
279 }
280
281 return nil
282}
283
Colin Cross988414c2020-01-11 01:11:46 +0000284// NullConfig returns a mostly empty Config for use by standalone tools like dexpreopt_gen that
285// use the android package.
Lukacs T. Berki9f6c24a2021-08-26 15:07:24 +0200286func NullConfig(soongOutDir string) Config {
Colin Cross988414c2020-01-11 01:11:46 +0000287 return Config{
288 config: &config{
Lukacs T. Berki9f6c24a2021-08-26 15:07:24 +0200289 soongOutDir: soongOutDir,
290 fs: pathtools.OsFs,
Colin Cross988414c2020-01-11 01:11:46 +0000291 },
292 }
293}
294
Jingwen Chenc711fec2020-11-22 23:52:50 -0500295// TestConfig returns a Config object for testing.
Colin Cross98be1bb2019-12-13 20:41:13 -0800296func TestConfig(buildDir string, env map[string]string, bp string, fs map[string][]byte) Config {
Colin Cross9c6241f2019-04-22 15:51:26 -0700297 envCopy := make(map[string]string)
298 for k, v := range env {
299 envCopy[k] = v
300 }
301
Jingwen Chen2838c812020-11-23 01:06:40 -0500302 // Copy the real PATH value to the test environment, it's needed by
303 // NonHermeticHostSystemTool() used in x86_darwin_host.go
Lukacs T. Berkideba7212021-03-04 10:50:10 +0100304 envCopy["PATH"] = os.Getenv("PATH")
Colin Cross9c6241f2019-04-22 15:51:26 -0700305
Dan Willemsen00269f22017-07-06 16:59:48 -0700306 config := &config{
Dan Willemsen45133ac2018-03-09 21:22:06 -0800307 productVariables: productVariables{
Dan Albert4f378d72020-07-23 17:32:15 -0700308 DeviceName: stringPtr("test_device"),
309 Platform_sdk_version: intPtr(30),
310 Platform_sdk_codename: stringPtr("S"),
311 Platform_version_active_codenames: []string{"S"},
312 DeviceSystemSdkVersions: []string{"14", "15"},
313 Platform_systemsdk_versions: []string{"29", "30"},
314 AAPTConfig: []string{"normal", "large", "xlarge", "hdpi", "xhdpi", "xxhdpi"},
315 AAPTPreferredConfig: stringPtr("xhdpi"),
316 AAPTCharacteristics: stringPtr("nosdcard"),
317 AAPTPrebuiltDPI: []string{"xhdpi", "xxhdpi"},
318 UncompressPrivAppDex: boolPtr(true),
Inseob Kim60c32f02020-12-21 22:53:05 +0900319 ShippingApiLevel: stringPtr("30"),
Dan Willemsen00269f22017-07-06 16:59:48 -0700320 },
321
Lukacs T. Berki9f6c24a2021-08-26 15:07:24 +0200322 soongOutDir: buildDir,
Colin Cross6ccbc912017-10-10 23:07:38 -0700323 captureBuild: true,
Colin Cross9c6241f2019-04-22 15:51:26 -0700324 env: envCopy,
Colin Cross5e6a7972020-06-07 16:56:32 -0700325
326 // Set testAllowNonExistentPaths so that test contexts don't need to specify every path
327 // passed to PathForSource or PathForModuleSrc.
Pedro Loureiro5d190cc2021-02-15 15:41:33 +0000328 TestAllowNonExistentPaths: true,
Chris Parsonsf3c96ef2020-09-29 02:23:17 -0400329
330 BazelContext: noopBazelContext{},
Dan Willemsen00269f22017-07-06 16:59:48 -0700331 }
332 config.deviceConfig = &deviceConfig{
333 config: config,
334 }
Dan Willemsen45133ac2018-03-09 21:22:06 -0800335 config.TestProductVariables = &config.productVariables
Dan Willemsen00269f22017-07-06 16:59:48 -0700336
Colin Cross98be1bb2019-12-13 20:41:13 -0800337 config.mockFileSystem(bp, fs)
338
Jingwen Chen12b4c272021-03-10 02:05:59 -0500339 config.bp2buildModuleTypeConfig = map[string]bool{}
340
Dan Willemsen00269f22017-07-06 16:59:48 -0700341 return Config{config}
Colin Crossce75d2c2016-10-06 16:12:58 -0700342}
343
Paul Duffin35816122021-02-24 01:49:52 +0000344func modifyTestConfigToSupportArchMutator(testConfig Config) {
Colin Crossae4c6182017-09-15 17:33:55 -0700345 config := testConfig.config
346
Colin Cross0c66bc62021-07-20 09:47:41 -0700347 determineBuildOS(config)
348
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700349 config.Targets = map[OsType][]Target{
350 Android: []Target{
Jiyong Park1613e552020-09-14 19:43:17 +0900351 {Android, Arch{ArchType: Arm64, ArchVariant: "armv8-a", Abi: []string{"arm64-v8a"}}, NativeBridgeDisabled, "", "", false},
352 {Android, Arch{ArchType: Arm, ArchVariant: "armv7-a-neon", Abi: []string{"armeabi-v7a"}}, NativeBridgeDisabled, "", "", false},
Colin Crossae4c6182017-09-15 17:33:55 -0700353 },
Colin Cross0c66bc62021-07-20 09:47:41 -0700354 config.BuildOS: []Target{
355 {config.BuildOS, Arch{ArchType: X86_64}, NativeBridgeDisabled, "", "", false},
356 {config.BuildOS, Arch{ArchType: X86}, NativeBridgeDisabled, "", "", false},
Colin Crossae4c6182017-09-15 17:33:55 -0700357 },
358 }
359
Colin Cross0d99f7c2019-05-14 16:01:24 -0700360 if runtime.GOOS == "darwin" {
Colin Cross0c66bc62021-07-20 09:47:41 -0700361 config.Targets[config.BuildOS] = config.Targets[config.BuildOS][:1]
Colin Cross0d99f7c2019-05-14 16:01:24 -0700362 }
363
Colin Cross0c66bc62021-07-20 09:47:41 -0700364 config.BuildOSTarget = config.Targets[config.BuildOS][0]
365 config.BuildOSCommonTarget = getCommonTargets(config.Targets[config.BuildOS])[0]
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700366 config.AndroidCommonTarget = getCommonTargets(config.Targets[Android])[0]
Jaewoong Jung642916f2020-10-09 17:25:15 -0700367 config.AndroidFirstDeviceTarget = firstTarget(config.Targets[Android], "lib64", "lib32")[0]
Inseob Kim1f086e22019-05-09 13:29:15 +0900368 config.TestProductVariables.DeviceArch = proptools.StringPtr("arm64")
369 config.TestProductVariables.DeviceArchVariant = proptools.StringPtr("armv8-a")
370 config.TestProductVariables.DeviceSecondaryArch = proptools.StringPtr("arm")
371 config.TestProductVariables.DeviceSecondaryArchVariant = proptools.StringPtr("armv7-a-neon")
Paul Duffin35816122021-02-24 01:49:52 +0000372}
Colin Cross2a076922018-10-04 23:28:25 -0700373
Colin Cross528d67e2021-07-23 22:23:07 +0000374func modifyTestConfigForMusl(config Config) {
375 delete(config.Targets, config.BuildOS)
376 config.productVariables.HostMusl = boolPtr(true)
377 determineBuildOS(config.config)
378 config.Targets[config.BuildOS] = []Target{
379 {config.BuildOS, Arch{ArchType: X86_64}, NativeBridgeDisabled, "", "", false},
380 {config.BuildOS, Arch{ArchType: X86}, NativeBridgeDisabled, "", "", false},
381 }
382
383 config.BuildOSTarget = config.Targets[config.BuildOS][0]
384 config.BuildOSCommonTarget = getCommonTargets(config.Targets[config.BuildOS])[0]
385}
386
Paul Duffin35816122021-02-24 01:49:52 +0000387// TestArchConfig returns a Config object suitable for using for tests that
388// need to run the arch mutator.
389func TestArchConfig(buildDir string, env map[string]string, bp string, fs map[string][]byte) Config {
390 testConfig := TestConfig(buildDir, env, bp, fs)
391 modifyTestConfigToSupportArchMutator(testConfig)
Colin Crossae4c6182017-09-15 17:33:55 -0700392 return testConfig
393}
394
Jingwen Chenc711fec2020-11-22 23:52:50 -0500395// ConfigForAdditionalRun is a config object which is "reset" for another
396// bootstrap run. Only per-run data is reset. Data which needs to persist across
397// multiple runs in the same program execution is carried over (such as Bazel
398// context or environment deps).
Chris Parsonsf3c96ef2020-09-29 02:23:17 -0400399func ConfigForAdditionalRun(c Config) (Config, error) {
Lukacs T. Berki9f6c24a2021-08-26 15:07:24 +0200400 newConfig, err := NewConfig(c.soongOutDir, c.moduleListFile, c.env)
Chris Parsonsf3c96ef2020-09-29 02:23:17 -0400401 if err != nil {
402 return Config{}, err
403 }
404 newConfig.BazelContext = c.BazelContext
405 newConfig.envDeps = c.envDeps
406 return newConfig, nil
407}
408
Jingwen Chenc711fec2020-11-22 23:52:50 -0500409// NewConfig creates a new Config object. The srcDir argument specifies the path
410// to the root source directory. It also loads the config file, if found.
Lukacs T. Berki9f6c24a2021-08-26 15:07:24 +0200411func NewConfig(soongOutDir string, moduleListFile string, availableEnv map[string]string) (Config, error) {
Jingwen Chenc711fec2020-11-22 23:52:50 -0500412 // Make a config with default options.
Colin Cross9272ade2016-08-17 15:24:12 -0700413 config := &config{
Lukacs T. Berki9f6c24a2021-08-26 15:07:24 +0200414 ProductVariablesFileName: filepath.Join(soongOutDir, productVariablesFileName),
Dan Willemsen87b17d12015-07-14 00:39:06 -0700415
Lukacs T. Berki53b2f362021-04-12 14:04:24 +0200416 env: availableEnv,
Colin Cross6ccbc912017-10-10 23:07:38 -0700417
Lukacs T. Berki9f6c24a2021-08-26 15:07:24 +0200418 soongOutDir: soongOutDir,
Colin Cross3b19f5d2019-09-17 14:45:31 -0700419 multilibConflicts: make(map[ArchType]bool),
Colin Cross98be1bb2019-12-13 20:41:13 -0800420
Chris Parsons8f232a22020-06-23 17:37:05 -0400421 moduleListFile: moduleListFile,
422 fs: pathtools.NewOsFs(absSrcDir),
Colin Cross68f55102015-03-25 14:43:57 -0700423 }
Colin Cross3f40fa42015-01-30 17:27:36 -0800424
Dan Willemsen00269f22017-07-06 16:59:48 -0700425 config.deviceConfig = &deviceConfig{
Colin Cross9272ade2016-08-17 15:24:12 -0700426 config: config,
427 }
428
Liz Kammer7941b302020-07-28 13:27:34 -0700429 // Soundness check of the build and source directories. This won't catch strange
430 // configurations with symlinks, but at least checks the obvious case.
Lukacs T. Berki9f6c24a2021-08-26 15:07:24 +0200431 absBuildDir, err := filepath.Abs(soongOutDir)
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700432 if err != nil {
433 return Config{}, err
434 }
435
Lukacs T. Berkif7e36d82021-08-16 17:05:09 +0200436 absSrcDir, err := filepath.Abs(".")
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700437 if err != nil {
438 return Config{}, err
439 }
440
441 if strings.HasPrefix(absSrcDir, absBuildDir) {
442 return Config{}, fmt.Errorf("Build dir must not contain source directory")
443 }
444
Colin Cross3f40fa42015-01-30 17:27:36 -0800445 // Load any configurable options from the configuration file
Colin Cross9272ade2016-08-17 15:24:12 -0700446 err = loadConfig(config)
Colin Cross3f40fa42015-01-30 17:27:36 -0800447 if err != nil {
Colin Crossc3c0a492015-04-10 15:43:55 -0700448 return Config{}, err
Colin Cross3f40fa42015-01-30 17:27:36 -0800449 }
450
Lukacs T. Berki9f6c24a2021-08-26 15:07:24 +0200451 KatiEnabledMarkerFile := filepath.Join(soongOutDir, ".soong.kati_enabled")
Jingwen Chencda22c92020-11-23 00:22:30 -0500452 if _, err := os.Stat(absolutePath(KatiEnabledMarkerFile)); err == nil {
453 config.katiEnabled = true
Dan Willemsen5ba07e82015-12-11 13:51:06 -0800454 }
455
Colin Cross0c66bc62021-07-20 09:47:41 -0700456 determineBuildOS(config)
457
Jingwen Chenc711fec2020-11-22 23:52:50 -0500458 // Sets up the map of target OSes to the finer grained compilation targets
459 // that are configured from the product variables.
Colin Crossa1ad8d12016-06-01 17:09:44 -0700460 targets, err := decodeTargetProductVariables(config)
Dan Willemsen218f6562015-07-08 18:13:11 -0700461 if err != nil {
462 return Config{}, err
463 }
464
Paul Duffin1356d8c2020-02-25 19:26:33 +0000465 // Make the CommonOS OsType available for all products.
466 targets[CommonOS] = []Target{commonTargetMap[CommonOS.Name]}
467
Dan Albert4098deb2016-10-19 14:04:41 -0700468 var archConfig []archConfig
Jingwen Chenc4d91bc2020-11-24 22:59:26 -0500469 if config.NdkAbis() {
Dan Albert4098deb2016-10-19 14:04:41 -0700470 archConfig = getNdkAbisConfig()
Martin Stjernholmc1ecc432019-11-15 15:00:31 +0000471 } else if config.AmlAbis() {
472 archConfig = getAmlAbisConfig()
Dan Albert4098deb2016-10-19 14:04:41 -0700473 }
474
475 if archConfig != nil {
Dan Willemsen01a3c252019-01-11 19:02:16 -0800476 androidTargets, err := decodeArchSettings(Android, archConfig)
Dan Willemsen322acaf2016-01-12 23:07:05 -0800477 if err != nil {
478 return Config{}, err
479 }
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700480 targets[Android] = androidTargets
Dan Willemsen322acaf2016-01-12 23:07:05 -0800481 }
482
Colin Cross3b19f5d2019-09-17 14:45:31 -0700483 multilib := make(map[string]bool)
484 for _, target := range targets[Android] {
485 if seen := multilib[target.Arch.ArchType.Multilib]; seen {
486 config.multilibConflicts[target.Arch.ArchType] = true
487 }
488 multilib[target.Arch.ArchType.Multilib] = true
489 }
490
Jingwen Chenc711fec2020-11-22 23:52:50 -0500491 // Map of OS to compilation targets.
Colin Crossa1ad8d12016-06-01 17:09:44 -0700492 config.Targets = targets
Jingwen Chenc711fec2020-11-22 23:52:50 -0500493
494 // Compilation targets for host tools.
Colin Cross0c66bc62021-07-20 09:47:41 -0700495 config.BuildOSTarget = config.Targets[config.BuildOS][0]
496 config.BuildOSCommonTarget = getCommonTargets(config.Targets[config.BuildOS])[0]
Jingwen Chenc711fec2020-11-22 23:52:50 -0500497
498 // Compilation targets for Android.
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700499 if len(config.Targets[Android]) > 0 {
500 config.AndroidCommonTarget = getCommonTargets(config.Targets[Android])[0]
Jaewoong Jung642916f2020-10-09 17:25:15 -0700501 config.AndroidFirstDeviceTarget = firstTarget(config.Targets[Android], "lib64", "lib32")[0]
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700502 }
Dan Willemsen218f6562015-07-08 18:13:11 -0700503
Chris Parsonsf3c96ef2020-09-29 02:23:17 -0400504 config.BazelContext, err = NewBazelContext(config)
Jingwen Chen12b4c272021-03-10 02:05:59 -0500505 config.bp2buildPackageConfig = bp2buildDefaultConfig
506 config.bp2buildModuleTypeConfig = make(map[string]bool)
Colin Cross3f40fa42015-01-30 17:27:36 -0800507
Jingwen Chenc711fec2020-11-22 23:52:50 -0500508 return Config{config}, err
509}
Colin Cross988414c2020-01-11 01:11:46 +0000510
Colin Cross98be1bb2019-12-13 20:41:13 -0800511// mockFileSystem replaces all reads with accesses to the provided map of
512// filenames to contents stored as a byte slice.
513func (c *config) mockFileSystem(bp string, fs map[string][]byte) {
514 mockFS := map[string][]byte{}
515
516 if _, exists := mockFS["Android.bp"]; !exists {
517 mockFS["Android.bp"] = []byte(bp)
518 }
519
520 for k, v := range fs {
521 mockFS[k] = v
522 }
523
524 // no module list file specified; find every file named Blueprints or Android.bp
525 pathsToParse := []string{}
526 for candidate := range mockFS {
527 base := filepath.Base(candidate)
528 if base == "Blueprints" || base == "Android.bp" {
529 pathsToParse = append(pathsToParse, candidate)
530 }
531 }
532 if len(pathsToParse) < 1 {
533 panic(fmt.Sprintf("No Blueprint or Android.bp files found in mock filesystem: %v\n", mockFS))
534 }
535 mockFS[blueprint.MockModuleListFile] = []byte(strings.Join(pathsToParse, "\n"))
536
537 c.fs = pathtools.MockFs(mockFS)
538 c.mockBpList = blueprint.MockModuleListFile
539}
540
Colin Crosse87040b2017-12-11 15:52:26 -0800541func (c *config) StopBefore() bootstrap.StopBefore {
542 return c.stopBefore
Dan Willemsen218f6562015-07-08 18:13:11 -0700543}
544
Jingwen Chenc711fec2020-11-22 23:52:50 -0500545// SetStopBefore configures soong_build to exit earlier at a specific point.
Colin Crosse87040b2017-12-11 15:52:26 -0800546func (c *config) SetStopBefore(stopBefore bootstrap.StopBefore) {
547 c.stopBefore = stopBefore
548}
549
Lukacs T. Berkid1e3f1f2021-03-16 08:55:23 +0100550func (c *config) SetAllowMissingDependencies() {
551 c.productVariables.Allow_missing_dependencies = proptools.BoolPtr(true)
552}
553
Colin Crosse87040b2017-12-11 15:52:26 -0800554var _ bootstrap.ConfigStopBefore = (*config)(nil)
555
Jingwen Chenc711fec2020-11-22 23:52:50 -0500556// BlueprintToolLocation returns the directory containing build system tools
557// from Blueprint, like soong_zip and merge_zips.
Dan Willemsenc2aa4a92016-05-26 15:13:03 -0700558func (c *config) BlueprintToolLocation() string {
Lukacs T. Berki9f6c24a2021-08-26 15:07:24 +0200559 return filepath.Join(c.soongOutDir, "host", c.PrebuiltOS(), "bin")
Dan Willemsenc2aa4a92016-05-26 15:13:03 -0700560}
561
Colin Crosse87040b2017-12-11 15:52:26 -0800562var _ bootstrap.ConfigBlueprintToolLocation = (*config)(nil)
563
Dan Willemsen60e62f02018-11-16 21:05:32 -0800564func (c *config) HostToolPath(ctx PathContext, tool string) Path {
565 return PathForOutput(ctx, "host", c.PrebuiltOS(), "bin", tool)
566}
567
Martin Stjernholm7260d062019-12-09 21:47:14 +0000568func (c *config) HostJNIToolPath(ctx PathContext, path string) Path {
569 ext := ".so"
570 if runtime.GOOS == "darwin" {
571 ext = ".dylib"
572 }
573 return PathForOutput(ctx, "host", c.PrebuiltOS(), "lib64", path+ext)
574}
575
576func (c *config) HostJavaToolPath(ctx PathContext, path string) Path {
577 return PathForOutput(ctx, "host", c.PrebuiltOS(), "framework", path)
578}
579
Jingwen Chenc711fec2020-11-22 23:52:50 -0500580// PrebuiltOS returns the name of the host OS used in prebuilts directories.
Colin Cross1332b002015-04-07 17:11:30 -0700581func (c *config) PrebuiltOS() string {
Colin Cross3f40fa42015-01-30 17:27:36 -0800582 switch runtime.GOOS {
583 case "linux":
584 return "linux-x86"
585 case "darwin":
586 return "darwin-x86"
587 default:
588 panic("Unknown GOOS")
589 }
590}
591
592// GoRoot returns the path to the root directory of the Go toolchain.
Colin Cross1332b002015-04-07 17:11:30 -0700593func (c *config) GoRoot() string {
Lukacs T. Berkif7e36d82021-08-16 17:05:09 +0200594 return fmt.Sprintf("prebuilts/go/%s", c.PrebuiltOS())
Colin Cross3f40fa42015-01-30 17:27:36 -0800595}
596
Jingwen Chenc711fec2020-11-22 23:52:50 -0500597// PrebuiltBuildTool returns the path to a tool in the prebuilts directory containing
598// checked-in tools, like Kati, Ninja or Toybox, for the current host OS.
Dan Willemsen4e0aa232019-04-10 22:59:54 -0700599func (c *config) PrebuiltBuildTool(ctx PathContext, tool string) Path {
600 return PathForSource(ctx, "prebuilts/build-tools", c.PrebuiltOS(), "bin", tool)
601}
602
Jingwen Chenc711fec2020-11-22 23:52:50 -0500603// CpPreserveSymlinksFlags returns the host-specific flag for the cp(1) command
604// to preserve symlinks.
Colin Cross1332b002015-04-07 17:11:30 -0700605func (c *config) CpPreserveSymlinksFlags() string {
Colin Cross485e5722015-08-27 13:28:01 -0700606 switch runtime.GOOS {
Colin Cross3f40fa42015-01-30 17:27:36 -0800607 case "darwin":
608 return "-R"
609 case "linux":
610 return "-d"
611 default:
612 return ""
613 }
614}
Colin Cross68f55102015-03-25 14:43:57 -0700615
Colin Cross1332b002015-04-07 17:11:30 -0700616func (c *config) Getenv(key string) string {
Colin Cross68f55102015-03-25 14:43:57 -0700617 var val string
618 var exists bool
Colin Crossc1e86a32015-04-15 12:33:28 -0700619 c.envLock.Lock()
Colin Crossc0d58b42017-02-06 15:40:41 -0800620 defer c.envLock.Unlock()
621 if c.envDeps == nil {
622 c.envDeps = make(map[string]string)
623 }
Colin Cross68f55102015-03-25 14:43:57 -0700624 if val, exists = c.envDeps[key]; !exists {
Dan Willemsene7680ba2015-09-11 17:06:19 -0700625 if c.envFrozen {
626 panic("Cannot access new environment variables after envdeps are frozen")
627 }
Colin Cross6ccbc912017-10-10 23:07:38 -0700628 val, _ = c.env[key]
Colin Cross68f55102015-03-25 14:43:57 -0700629 c.envDeps[key] = val
630 }
631 return val
632}
633
Colin Cross99d7c232016-11-23 16:52:04 -0800634func (c *config) GetenvWithDefault(key string, defaultValue string) string {
635 ret := c.Getenv(key)
636 if ret == "" {
637 return defaultValue
638 }
639 return ret
640}
641
642func (c *config) IsEnvTrue(key string) bool {
643 value := c.Getenv(key)
644 return value == "1" || value == "y" || value == "yes" || value == "on" || value == "true"
645}
646
647func (c *config) IsEnvFalse(key string) bool {
648 value := c.Getenv(key)
649 return value == "0" || value == "n" || value == "no" || value == "off" || value == "false"
650}
651
Jingwen Chenc711fec2020-11-22 23:52:50 -0500652// EnvDeps returns the environment variables this build depends on. The first
653// call to this function blocks future reads from the environment.
Colin Cross1332b002015-04-07 17:11:30 -0700654func (c *config) EnvDeps() map[string]string {
Dan Willemsene7680ba2015-09-11 17:06:19 -0700655 c.envLock.Lock()
Colin Crossc0d58b42017-02-06 15:40:41 -0800656 defer c.envLock.Unlock()
Dan Willemsene7680ba2015-09-11 17:06:19 -0700657 c.envFrozen = true
Colin Cross68f55102015-03-25 14:43:57 -0700658 return c.envDeps
659}
Colin Cross35cec122015-04-02 14:37:16 -0700660
Jingwen Chencda22c92020-11-23 00:22:30 -0500661func (c *config) KatiEnabled() bool {
662 return c.katiEnabled
Dan Willemsen5ba07e82015-12-11 13:51:06 -0800663}
664
Nan Zhang581fd212018-01-10 16:06:12 -0800665func (c *config) BuildId() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800666 return String(c.productVariables.BuildId)
Nan Zhang581fd212018-01-10 16:06:12 -0800667}
668
Jingwen Chenc711fec2020-11-22 23:52:50 -0500669// BuildNumberFile returns the path to a text file containing metadata
670// representing the current build's number.
671//
672// Rules that want to reference the build number should read from this file
673// without depending on it. They will run whenever their other dependencies
674// require them to run and get the current build number. This ensures they don't
675// rebuild on every incremental build when the build number changes.
Colin Cross2a2e0db2020-02-21 16:55:46 -0800676func (c *config) BuildNumberFile(ctx PathContext) Path {
677 return PathForOutput(ctx, String(c.productVariables.BuildNumberFile))
Nan Zhang581fd212018-01-10 16:06:12 -0800678}
679
Jingwen Chenc711fec2020-11-22 23:52:50 -0500680// DeviceName returns the name of the current device target.
Colin Cross35cec122015-04-02 14:37:16 -0700681// TODO: take an AndroidModuleContext to select the device name for multi-device builds
Colin Cross1332b002015-04-07 17:11:30 -0700682func (c *config) DeviceName() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800683 return *c.productVariables.DeviceName
Colin Cross35cec122015-04-02 14:37:16 -0700684}
685
Anton Hansson53c88442019-03-18 15:53:16 +0000686func (c *config) DeviceResourceOverlays() []string {
687 return c.productVariables.DeviceResourceOverlays
688}
689
690func (c *config) ProductResourceOverlays() []string {
691 return c.productVariables.ProductResourceOverlays
Colin Cross30e076a2015-04-13 13:58:27 -0700692}
693
Colin Crossbfd347d2018-05-09 11:11:35 -0700694func (c *config) PlatformVersionName() string {
695 return String(c.productVariables.Platform_version_name)
696}
697
Dan Albert4f378d72020-07-23 17:32:15 -0700698func (c *config) PlatformSdkVersion() ApiLevel {
699 return uncheckedFinalApiLevel(*c.productVariables.Platform_sdk_version)
Colin Cross30e076a2015-04-13 13:58:27 -0700700}
701
Colin Crossd09b0b62018-04-18 11:06:47 -0700702func (c *config) PlatformSdkCodename() string {
703 return String(c.productVariables.Platform_sdk_codename)
704}
705
Colin Cross092c9da2019-04-02 22:56:43 -0700706func (c *config) PlatformSecurityPatch() string {
707 return String(c.productVariables.Platform_security_patch)
708}
709
710func (c *config) PlatformPreviewSdkVersion() string {
711 return String(c.productVariables.Platform_preview_sdk_version)
712}
713
714func (c *config) PlatformMinSupportedTargetSdkVersion() string {
715 return String(c.productVariables.Platform_min_supported_target_sdk_version)
716}
717
718func (c *config) PlatformBaseOS() string {
719 return String(c.productVariables.Platform_base_os)
720}
721
Dan Albert1a246272020-07-06 14:49:35 -0700722func (c *config) MinSupportedSdkVersion() ApiLevel {
723 return uncheckedFinalApiLevel(16)
724}
725
726func (c *config) FinalApiLevels() []ApiLevel {
727 var levels []ApiLevel
Dan Albert4f378d72020-07-23 17:32:15 -0700728 for i := 1; i <= c.PlatformSdkVersion().FinalOrFutureInt(); i++ {
Dan Albert1a246272020-07-06 14:49:35 -0700729 levels = append(levels, uncheckedFinalApiLevel(i))
730 }
731 return levels
732}
733
734func (c *config) PreviewApiLevels() []ApiLevel {
735 var levels []ApiLevel
736 for i, codename := range c.PlatformVersionActiveCodenames() {
737 levels = append(levels, ApiLevel{
738 value: codename,
739 number: i,
740 isPreview: true,
741 })
742 }
743 return levels
744}
745
746func (c *config) AllSupportedApiLevels() []ApiLevel {
747 var levels []ApiLevel
748 levels = append(levels, c.FinalApiLevels()...)
749 return append(levels, c.PreviewApiLevels()...)
Dan Albertf5415d72017-08-17 16:19:59 -0700750}
751
Jingwen Chenc711fec2020-11-22 23:52:50 -0500752// DefaultAppTargetSdk returns the API level that platform apps are targeting.
753// This converts a codename to the exact ApiLevel it represents.
Dan Albert4f378d72020-07-23 17:32:15 -0700754func (c *config) DefaultAppTargetSdk(ctx EarlyModuleContext) ApiLevel {
Colin Crossd09b0b62018-04-18 11:06:47 -0700755 if Bool(c.productVariables.Platform_sdk_final) {
756 return c.PlatformSdkVersion()
Colin Crossd09b0b62018-04-18 11:06:47 -0700757 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500758 codename := c.PlatformSdkCodename()
759 if codename == "" {
760 return NoneApiLevel
761 }
762 if codename == "REL" {
763 panic("Platform_sdk_codename should not be REL when Platform_sdk_final is true")
764 }
765 return ApiLevelOrPanic(ctx, codename)
Colin Crossd09b0b62018-04-18 11:06:47 -0700766}
767
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800768func (c *config) AppsDefaultVersionName() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800769 return String(c.productVariables.AppsDefaultVersionName)
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800770}
771
Dan Albert31384de2017-07-28 12:39:46 -0700772// Codenames that are active in the current lunch target.
773func (c *config) PlatformVersionActiveCodenames() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800774 return c.productVariables.Platform_version_active_codenames
Dan Albert31384de2017-07-28 12:39:46 -0700775}
776
Colin Crossface4e42017-10-30 17:32:15 -0700777func (c *config) ProductAAPTConfig() []string {
Colin Crossa74ca042019-01-31 14:31:51 -0800778 return c.productVariables.AAPTConfig
Colin Cross30e076a2015-04-13 13:58:27 -0700779}
780
Colin Crossface4e42017-10-30 17:32:15 -0700781func (c *config) ProductAAPTPreferredConfig() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800782 return String(c.productVariables.AAPTPreferredConfig)
Colin Cross30e076a2015-04-13 13:58:27 -0700783}
784
Colin Crossface4e42017-10-30 17:32:15 -0700785func (c *config) ProductAAPTCharacteristics() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800786 return String(c.productVariables.AAPTCharacteristics)
Colin Crossface4e42017-10-30 17:32:15 -0700787}
788
789func (c *config) ProductAAPTPrebuiltDPI() []string {
Colin Crossa74ca042019-01-31 14:31:51 -0800790 return c.productVariables.AAPTPrebuiltDPI
Colin Cross30e076a2015-04-13 13:58:27 -0700791}
792
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700793func (c *config) DefaultAppCertificateDir(ctx PathContext) SourcePath {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800794 defaultCert := String(c.productVariables.DefaultAppCertificate)
Colin Cross61ae0b72017-12-01 17:16:02 -0800795 if defaultCert != "" {
796 return PathForSource(ctx, filepath.Dir(defaultCert))
Colin Cross61ae0b72017-12-01 17:16:02 -0800797 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500798 return PathForSource(ctx, "build/make/target/product/security")
Colin Cross30e076a2015-04-13 13:58:27 -0700799}
800
Colin Crosse1731a52017-12-14 11:22:55 -0800801func (c *config) DefaultAppCertificate(ctx PathContext) (pem, key SourcePath) {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800802 defaultCert := String(c.productVariables.DefaultAppCertificate)
Colin Cross61ae0b72017-12-01 17:16:02 -0800803 if defaultCert != "" {
Colin Crosse1731a52017-12-14 11:22:55 -0800804 return PathForSource(ctx, defaultCert+".x509.pem"), PathForSource(ctx, defaultCert+".pk8")
Colin Cross61ae0b72017-12-01 17:16:02 -0800805 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500806 defaultDir := c.DefaultAppCertificateDir(ctx)
807 return defaultDir.Join(ctx, "testkey.x509.pem"), defaultDir.Join(ctx, "testkey.pk8")
Colin Cross30e076a2015-04-13 13:58:27 -0700808}
Colin Cross6ff51382015-12-17 16:39:19 -0800809
Jiyong Park9335a262018-12-24 11:31:58 +0900810func (c *config) ApexKeyDir(ctx ModuleContext) SourcePath {
811 // TODO(b/121224311): define another variable such as TARGET_APEX_KEY_OVERRIDE
812 defaultCert := String(c.productVariables.DefaultAppCertificate)
Dan Willemsen412160e2019-04-09 21:36:26 -0700813 if defaultCert == "" || filepath.Dir(defaultCert) == "build/make/target/product/security" {
Jiyong Park9335a262018-12-24 11:31:58 +0900814 // When defaultCert is unset or is set to the testkeys path, use the APEX keys
815 // that is under the module dir
Colin Cross07e51612019-03-05 12:46:40 -0800816 return pathForModuleSrc(ctx)
Jiyong Park9335a262018-12-24 11:31:58 +0900817 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500818 // If not, APEX keys are under the specified directory
819 return PathForSource(ctx, filepath.Dir(defaultCert))
Jiyong Park9335a262018-12-24 11:31:58 +0900820}
821
Jingwen Chenc711fec2020-11-22 23:52:50 -0500822// AllowMissingDependencies configures Blueprint/Soong to not fail when modules
823// are configured to depend on non-existent modules. Note that this does not
824// affect missing input dependencies at the Ninja level.
Colin Cross6ff51382015-12-17 16:39:19 -0800825func (c *config) AllowMissingDependencies() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800826 return Bool(c.productVariables.Allow_missing_dependencies)
Colin Cross6ff51382015-12-17 16:39:19 -0800827}
Dan Willemsen322acaf2016-01-12 23:07:05 -0800828
Jeongik Cha816a23a2020-07-08 01:09:23 +0900829// Returns true if a full platform source tree cannot be assumed.
Colin Crossfc3674a2017-09-18 17:41:52 -0700830func (c *config) UnbundledBuild() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800831 return Bool(c.productVariables.Unbundled_build)
Colin Crossfc3674a2017-09-18 17:41:52 -0700832}
833
Martin Stjernholmfd9eb4b2020-06-17 01:13:15 +0100834// Returns true if building apps that aren't bundled with the platform.
835// UnbundledBuild() is always true when this is true.
836func (c *config) UnbundledBuildApps() bool {
837 return Bool(c.productVariables.Unbundled_build_apps)
838}
839
Jeongik Cha4b073cd2021-06-08 11:35:00 +0900840// Returns true if building image that aren't bundled with the platform.
841// UnbundledBuild() is always true when this is true.
842func (c *config) UnbundledBuildImage() bool {
843 return Bool(c.productVariables.Unbundled_build_image)
844}
845
Jeongik Cha816a23a2020-07-08 01:09:23 +0900846// Returns true if building modules against prebuilt SDKs.
847func (c *config) AlwaysUsePrebuiltSdks() bool {
848 return Bool(c.productVariables.Always_use_prebuilt_sdks)
Colin Cross1f367bf2018-12-18 22:46:24 -0800849}
850
Paul Duffin9a89a2a2020-10-28 19:20:06 +0000851// Returns true if the boot jars check should be skipped.
852func (c *config) SkipBootJarsCheck() bool {
853 return Bool(c.productVariables.Skip_boot_jars_check)
854}
855
Colin Cross126a25c2017-10-31 13:55:34 -0700856func (c *config) MinimizeJavaDebugInfo() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800857 return Bool(c.productVariables.MinimizeJavaDebugInfo) && !Bool(c.productVariables.Eng)
Colin Cross126a25c2017-10-31 13:55:34 -0700858}
859
Colin Crossed064c02018-09-05 16:28:13 -0700860func (c *config) Debuggable() bool {
861 return Bool(c.productVariables.Debuggable)
862}
863
Jaewoong Jung1d6eb682018-11-29 15:08:44 -0800864func (c *config) Eng() bool {
865 return Bool(c.productVariables.Eng)
866}
867
Jiyong Park8d52f862018-07-07 18:02:07 +0900868func (c *config) DevicePrimaryArchType() ArchType {
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700869 return c.Targets[Android][0].Arch.ArchType
Jiyong Park8d52f862018-07-07 18:02:07 +0900870}
871
Colin Cross16b23492016-01-06 14:41:07 -0800872func (c *config) SanitizeHost() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800873 return append([]string(nil), c.productVariables.SanitizeHost...)
Colin Cross16b23492016-01-06 14:41:07 -0800874}
875
876func (c *config) SanitizeDevice() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800877 return append([]string(nil), c.productVariables.SanitizeDevice...)
Colin Cross23ae82a2016-11-02 14:34:39 -0700878}
879
Ivan Lozano0c3a1ef2017-06-28 09:10:48 -0700880func (c *config) SanitizeDeviceDiag() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800881 return append([]string(nil), c.productVariables.SanitizeDeviceDiag...)
Ivan Lozano0c3a1ef2017-06-28 09:10:48 -0700882}
883
Colin Cross23ae82a2016-11-02 14:34:39 -0700884func (c *config) SanitizeDeviceArch() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800885 return append([]string(nil), c.productVariables.SanitizeDeviceArch...)
Colin Cross16b23492016-01-06 14:41:07 -0800886}
Colin Crossa1ad8d12016-06-01 17:09:44 -0700887
Vishwath Mohan1b017a72017-01-19 13:54:55 -0800888func (c *config) EnableCFI() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800889 if c.productVariables.EnableCFI == nil {
Vishwath Mohanc32c3eb2017-01-24 14:20:54 -0800890 return true
Vishwath Mohanc32c3eb2017-01-24 14:20:54 -0800891 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500892 return *c.productVariables.EnableCFI
Vishwath Mohan1b017a72017-01-19 13:54:55 -0800893}
894
Kostya Kortchinskyd5275c82019-02-01 08:42:56 -0800895func (c *config) DisableScudo() bool {
896 return Bool(c.productVariables.DisableScudo)
897}
898
Colin Crossa1ad8d12016-06-01 17:09:44 -0700899func (c *config) Android64() bool {
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700900 for _, t := range c.Targets[Android] {
Colin Crossa1ad8d12016-06-01 17:09:44 -0700901 if t.Arch.ArchType.Multilib == "lib64" {
902 return true
903 }
904 }
905
906 return false
907}
Colin Cross9272ade2016-08-17 15:24:12 -0700908
Colin Cross9d45bb72016-08-29 16:14:13 -0700909func (c *config) UseGoma() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800910 return Bool(c.productVariables.UseGoma)
Colin Cross9d45bb72016-08-29 16:14:13 -0700911}
912
Ramy Medhatbbf25672019-07-17 12:30:04 +0000913func (c *config) UseRBE() bool {
914 return Bool(c.productVariables.UseRBE)
915}
916
Ramy Medhat8ea054a2020-01-27 14:19:44 -0500917func (c *config) UseRBEJAVAC() bool {
918 return Bool(c.productVariables.UseRBEJAVAC)
919}
920
921func (c *config) UseRBER8() bool {
922 return Bool(c.productVariables.UseRBER8)
923}
924
925func (c *config) UseRBED8() bool {
926 return Bool(c.productVariables.UseRBED8)
927}
928
Colin Cross8b8bec32019-11-15 13:18:43 -0800929func (c *config) UseRemoteBuild() bool {
930 return c.UseGoma() || c.UseRBE()
931}
932
Colin Cross66548102018-06-19 22:47:35 -0700933func (c *config) RunErrorProne() bool {
934 return c.IsEnvTrue("RUN_ERROR_PRONE")
935}
936
Jingwen Chenc711fec2020-11-22 23:52:50 -0500937// XrefCorpusName returns the Kythe cross-reference corpus name.
Sasha Smundak2a4549e2018-11-05 16:49:08 -0800938func (c *config) XrefCorpusName() string {
939 return c.Getenv("XREF_CORPUS")
940}
941
Jingwen Chenc711fec2020-11-22 23:52:50 -0500942// XrefCuEncoding returns the compilation unit encoding to use for Kythe code
943// xrefs. Can be 'json' (default), 'proto' or 'all'.
Sasha Smundak6c2d4f92020-01-09 17:34:23 -0800944func (c *config) XrefCuEncoding() string {
945 if enc := c.Getenv("KYTHE_KZIP_ENCODING"); enc != "" {
946 return enc
947 }
948 return "json"
949}
950
Sasha Smundakb0addaf2021-02-16 10:39:40 -0800951// XrefCuJavaSourceMax returns the maximum number of the Java source files
952// in a single compilation unit
953const xrefJavaSourceFileMaxDefault = "1000"
954
955func (c Config) XrefCuJavaSourceMax() string {
956 v := c.Getenv("KYTHE_JAVA_SOURCE_BATCH_SIZE")
957 if v == "" {
958 return xrefJavaSourceFileMaxDefault
959 }
960 if _, err := strconv.ParseUint(v, 0, 0); err != nil {
961 fmt.Fprintf(os.Stderr,
962 "bad KYTHE_JAVA_SOURCE_BATCH_SIZE value: %s, will use %s",
963 err, xrefJavaSourceFileMaxDefault)
964 return xrefJavaSourceFileMaxDefault
965 }
966 return v
967
968}
969
Sasha Smundak2a4549e2018-11-05 16:49:08 -0800970func (c *config) EmitXrefRules() bool {
971 return c.XrefCorpusName() != ""
972}
973
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700974func (c *config) ClangTidy() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800975 return Bool(c.productVariables.ClangTidy)
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700976}
977
978func (c *config) TidyChecks() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800979 if c.productVariables.TidyChecks == nil {
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700980 return ""
981 }
Dan Willemsen45133ac2018-03-09 21:22:06 -0800982 return *c.productVariables.TidyChecks
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700983}
984
Colin Cross0f4e0d62016-07-27 10:56:55 -0700985func (c *config) LibartImgHostBaseAddress() string {
986 return "0x60000000"
987}
988
989func (c *config) LibartImgDeviceBaseAddress() string {
Elliott Hughesda3a0712020-03-06 16:55:28 -0800990 return "0x70000000"
Colin Cross0f4e0d62016-07-27 10:56:55 -0700991}
992
Hiroshi Yamauchie2a10632016-12-19 13:44:41 -0800993func (c *config) ArtUseReadBarrier() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800994 return Bool(c.productVariables.ArtUseReadBarrier)
Hiroshi Yamauchie2a10632016-12-19 13:44:41 -0800995}
996
Jingwen Chenc711fec2020-11-22 23:52:50 -0500997// Enforce Runtime Resource Overlays for a module. RROs supersede static RROs,
998// but some modules still depend on it.
999//
1000// More info: https://source.android.com/devices/architecture/rros
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001001func (c *config) EnforceRROForModule(name string) bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001002 enforceList := c.productVariables.EnforceRROTargets
Jeongik Chacee5ba92021-02-19 12:11:51 +09001003
Roland Levillainf6cc2612020-07-09 16:58:14 +01001004 if len(enforceList) > 0 {
Yo Chiang4ebd06a2019-10-01 13:13:41 +08001005 if InList("*", enforceList) {
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001006 return true
1007 }
Colin Crossa74ca042019-01-31 14:31:51 -08001008 return InList(name, enforceList)
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001009 }
1010 return false
1011}
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001012func (c *config) EnforceRROExcludedOverlay(path string) bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001013 excluded := c.productVariables.EnforceRROExcludedOverlays
Roland Levillainf6cc2612020-07-09 16:58:14 +01001014 if len(excluded) > 0 {
Jaewoong Jung3aff5782020-02-11 07:54:35 -08001015 return HasAnyPrefix(path, excluded)
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001016 }
1017 return false
1018}
1019
1020func (c *config) ExportedNamespaces() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001021 return append([]string(nil), c.productVariables.NamespacesToExport...)
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001022}
1023
1024func (c *config) HostStaticBinaries() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001025 return Bool(c.productVariables.HostStaticBinaries)
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001026}
1027
Colin Cross5a0dcd52018-10-05 14:20:06 -07001028func (c *config) UncompressPrivAppDex() bool {
1029 return Bool(c.productVariables.UncompressPrivAppDex)
1030}
1031
1032func (c *config) ModulesLoadedByPrivilegedModules() []string {
1033 return c.productVariables.ModulesLoadedByPrivilegedModules
1034}
1035
Jingwen Chenc711fec2020-11-22 23:52:50 -05001036// DexpreoptGlobalConfigPath returns the path to the dexpreopt.config file in
1037// the output directory, if it was created during the product configuration
1038// phase by Kati.
Jingwen Chenebb0b572020-11-02 00:24:57 -05001039func (c *config) DexpreoptGlobalConfigPath(ctx PathContext) OptionalPath {
Colin Cross988414c2020-01-11 01:11:46 +00001040 if c.productVariables.DexpreoptGlobalConfig == nil {
Jingwen Chenebb0b572020-11-02 00:24:57 -05001041 return OptionalPathForPath(nil)
1042 }
1043 return OptionalPathForPath(
1044 pathForBuildToolDep(ctx, *c.productVariables.DexpreoptGlobalConfig))
1045}
1046
Jingwen Chenc711fec2020-11-22 23:52:50 -05001047// DexpreoptGlobalConfig returns the raw byte contents of the dexpreopt global
1048// configuration. Since the configuration file was created by Kati during
1049// product configuration (externally of soong_build), it's not tracked, so we
1050// also manually add a Ninja file dependency on the configuration file to the
1051// rule that creates the main build.ninja file. This ensures that build.ninja is
1052// regenerated correctly if dexpreopt.config changes.
Jingwen Chenebb0b572020-11-02 00:24:57 -05001053func (c *config) DexpreoptGlobalConfig(ctx PathContext) ([]byte, error) {
1054 path := c.DexpreoptGlobalConfigPath(ctx)
1055 if !path.Valid() {
Colin Cross988414c2020-01-11 01:11:46 +00001056 return nil, nil
1057 }
Jingwen Chenebb0b572020-11-02 00:24:57 -05001058 ctx.AddNinjaFileDeps(path.String())
1059 return ioutil.ReadFile(absolutePath(path.String()))
Colin Cross43f08db2018-11-12 10:13:39 -08001060}
1061
Inseob Kim7b85eeb2021-03-23 20:52:24 +09001062func (c *deviceConfig) WithDexpreopt() bool {
1063 return c.config.productVariables.WithDexpreopt
1064}
1065
David Brazdil91b4e3e2019-01-23 21:04:05 +00001066func (c *config) FrameworksBaseDirExists(ctx PathContext) bool {
Colin Cross5a756a62021-03-16 16:34:46 -07001067 return ExistentPathForSource(ctx, "frameworks", "base", "Android.bp").Valid()
David Brazdil91b4e3e2019-01-23 21:04:05 +00001068}
1069
Inseob Kimae553032019-05-14 18:52:49 +09001070func (c *config) VndkSnapshotBuildArtifacts() bool {
1071 return Bool(c.productVariables.VndkSnapshotBuildArtifacts)
1072}
1073
Colin Cross3b19f5d2019-09-17 14:45:31 -07001074func (c *config) HasMultilibConflict(arch ArchType) bool {
1075 return c.multilibConflicts[arch]
1076}
1077
Bill Peckhambae47492021-01-08 09:34:44 -08001078func (c *config) PrebuiltHiddenApiDir(ctx PathContext) string {
1079 return String(c.productVariables.PrebuiltHiddenApiDir)
1080}
1081
Colin Cross9272ade2016-08-17 15:24:12 -07001082func (c *deviceConfig) Arches() []Arch {
1083 var arches []Arch
Dan Willemsen0ef639b2018-10-10 17:02:29 -07001084 for _, target := range c.config.Targets[Android] {
Colin Cross9272ade2016-08-17 15:24:12 -07001085 arches = append(arches, target.Arch)
1086 }
1087 return arches
1088}
Dan Willemsend2ede872016-11-18 14:54:24 -08001089
Jayant Chowdhary34ce67d2018-03-08 11:00:50 -08001090func (c *deviceConfig) BinderBitness() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001091 is32BitBinder := c.config.productVariables.Binder32bit
Jayant Chowdhary34ce67d2018-03-08 11:00:50 -08001092 if is32BitBinder != nil && *is32BitBinder {
1093 return "32"
1094 }
1095 return "64"
1096}
1097
Dan Willemsen4353bc42016-12-05 17:16:02 -08001098func (c *deviceConfig) VendorPath() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001099 if c.config.productVariables.VendorPath != nil {
1100 return *c.config.productVariables.VendorPath
Dan Willemsen4353bc42016-12-05 17:16:02 -08001101 }
1102 return "vendor"
1103}
1104
Justin Yun71549282017-11-17 12:10:28 +09001105func (c *deviceConfig) VndkVersion() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001106 return String(c.config.productVariables.DeviceVndkVersion)
Justin Yun71549282017-11-17 12:10:28 +09001107}
1108
Jose Galmes6f843bc2020-12-11 13:36:29 -08001109func (c *deviceConfig) RecoverySnapshotVersion() string {
1110 return String(c.config.productVariables.RecoverySnapshotVersion)
1111}
1112
Jeongik Cha219141c2020-08-06 23:00:37 +09001113func (c *deviceConfig) CurrentApiLevelForVendorModules() string {
1114 return StringDefault(c.config.productVariables.DeviceCurrentApiLevelForVendorModules, "current")
1115}
1116
Justin Yun8fe12122017-12-07 17:18:15 +09001117func (c *deviceConfig) PlatformVndkVersion() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001118 return String(c.config.productVariables.Platform_vndk_version)
Justin Yun8fe12122017-12-07 17:18:15 +09001119}
1120
Justin Yun5f7f7e82019-11-18 19:52:14 +09001121func (c *deviceConfig) ProductVndkVersion() string {
1122 return String(c.config.productVariables.ProductVndkVersion)
1123}
1124
Justin Yun71549282017-11-17 12:10:28 +09001125func (c *deviceConfig) ExtraVndkVersions() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001126 return c.config.productVariables.ExtraVndkVersions
Dan Willemsend2ede872016-11-18 14:54:24 -08001127}
Jack He8cc71432016-12-08 15:45:07 -08001128
Vic Yangefd249e2018-11-12 20:19:56 -08001129func (c *deviceConfig) VndkUseCoreVariant() bool {
1130 return Bool(c.config.productVariables.VndkUseCoreVariant)
1131}
1132
Jiyong Park1a5d7b12018-01-15 15:05:10 +09001133func (c *deviceConfig) SystemSdkVersions() []string {
Colin Crossa74ca042019-01-31 14:31:51 -08001134 return c.config.productVariables.DeviceSystemSdkVersions
Jiyong Park1a5d7b12018-01-15 15:05:10 +09001135}
1136
1137func (c *deviceConfig) PlatformSystemSdkVersions() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001138 return c.config.productVariables.Platform_systemsdk_versions
Jiyong Park1a5d7b12018-01-15 15:05:10 +09001139}
1140
Jiyong Park2db76922017-11-08 16:03:48 +09001141func (c *deviceConfig) OdmPath() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001142 if c.config.productVariables.OdmPath != nil {
1143 return *c.config.productVariables.OdmPath
Jiyong Park2db76922017-11-08 16:03:48 +09001144 }
1145 return "odm"
1146}
1147
Jaekyun Seok5cfbfbb2018-01-10 19:00:15 +09001148func (c *deviceConfig) ProductPath() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001149 if c.config.productVariables.ProductPath != nil {
1150 return *c.config.productVariables.ProductPath
Jiyong Park2db76922017-11-08 16:03:48 +09001151 }
Jaekyun Seok5cfbfbb2018-01-10 19:00:15 +09001152 return "product"
Jiyong Park2db76922017-11-08 16:03:48 +09001153}
1154
Justin Yund5f6c822019-06-25 16:47:17 +09001155func (c *deviceConfig) SystemExtPath() string {
1156 if c.config.productVariables.SystemExtPath != nil {
1157 return *c.config.productVariables.SystemExtPath
Dario Frenifd05a742018-05-29 13:28:54 +01001158 }
Justin Yund5f6c822019-06-25 16:47:17 +09001159 return "system_ext"
Dario Frenifd05a742018-05-29 13:28:54 +01001160}
1161
Jack He8cc71432016-12-08 15:45:07 -08001162func (c *deviceConfig) BtConfigIncludeDir() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001163 return String(c.config.productVariables.BtConfigIncludeDir)
Jack He8cc71432016-12-08 15:45:07 -08001164}
Dan Willemsen581341d2017-02-09 16:16:31 -08001165
Jiyong Parkd773eb32017-07-03 13:18:12 +09001166func (c *deviceConfig) DeviceKernelHeaderDirs() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001167 return c.config.productVariables.DeviceKernelHeaders
Jiyong Parkd773eb32017-07-03 13:18:12 +09001168}
1169
Yi Kongceb5b762020-03-20 15:22:27 +08001170func (c *deviceConfig) SamplingPGO() bool {
1171 return Bool(c.config.productVariables.SamplingPGO)
1172}
1173
Roland Levillainada12702020-06-09 13:07:36 +01001174// JavaCoverageEnabledForPath returns whether Java code coverage is enabled for
1175// path. Coverage is enabled by default when the product variable
1176// JavaCoveragePaths is empty. If JavaCoveragePaths is not empty, coverage is
1177// enabled for any path which is part of this variable (and not part of the
1178// JavaCoverageExcludePaths product variable). Value "*" in JavaCoveragePaths
1179// represents any path.
1180func (c *deviceConfig) JavaCoverageEnabledForPath(path string) bool {
1181 coverage := false
Chris Gross2f748692020-06-24 20:36:59 +00001182 if len(c.config.productVariables.JavaCoveragePaths) == 0 ||
Roland Levillainada12702020-06-09 13:07:36 +01001183 InList("*", c.config.productVariables.JavaCoveragePaths) ||
1184 HasAnyPrefix(path, c.config.productVariables.JavaCoveragePaths) {
1185 coverage = true
1186 }
Roland Levillainf6cc2612020-07-09 16:58:14 +01001187 if coverage && len(c.config.productVariables.JavaCoverageExcludePaths) > 0 {
Roland Levillainada12702020-06-09 13:07:36 +01001188 if HasAnyPrefix(path, c.config.productVariables.JavaCoverageExcludePaths) {
1189 coverage = false
1190 }
1191 }
1192 return coverage
1193}
1194
Colin Cross1a6acd42020-06-16 17:51:46 -07001195// Returns true if gcov or clang coverage is enabled.
Dan Willemsen581341d2017-02-09 16:16:31 -08001196func (c *deviceConfig) NativeCoverageEnabled() bool {
Colin Cross1a6acd42020-06-16 17:51:46 -07001197 return Bool(c.config.productVariables.GcovCoverage) ||
1198 Bool(c.config.productVariables.ClangCoverage)
Dan Willemsen581341d2017-02-09 16:16:31 -08001199}
1200
Oliver Nguyen1382ab62019-12-06 15:22:41 -08001201func (c *deviceConfig) ClangCoverageEnabled() bool {
1202 return Bool(c.config.productVariables.ClangCoverage)
1203}
1204
Colin Cross1a6acd42020-06-16 17:51:46 -07001205func (c *deviceConfig) GcovCoverageEnabled() bool {
1206 return Bool(c.config.productVariables.GcovCoverage)
1207}
1208
Roland Levillain4f5297b2020-06-09 12:44:06 +01001209// NativeCoverageEnabledForPath returns whether (GCOV- or Clang-based) native
1210// code coverage is enabled for path. By default, coverage is not enabled for a
1211// given path unless it is part of the NativeCoveragePaths product variable (and
1212// not part of the NativeCoverageExcludePaths product variable). Value "*" in
1213// NativeCoveragePaths represents any path.
1214func (c *deviceConfig) NativeCoverageEnabledForPath(path string) bool {
Ryan Campbell469a18a2017-02-27 09:01:54 -08001215 coverage := false
Roland Levillainf6cc2612020-07-09 16:58:14 +01001216 if len(c.config.productVariables.NativeCoveragePaths) > 0 {
Roland Levillain4f5297b2020-06-09 12:44:06 +01001217 if InList("*", c.config.productVariables.NativeCoveragePaths) || HasAnyPrefix(path, c.config.productVariables.NativeCoveragePaths) {
Ivan Lozano5f595532017-07-13 14:46:05 -07001218 coverage = true
Dan Willemsen581341d2017-02-09 16:16:31 -08001219 }
1220 }
Roland Levillainf6cc2612020-07-09 16:58:14 +01001221 if coverage && len(c.config.productVariables.NativeCoverageExcludePaths) > 0 {
Roland Levillain4f5297b2020-06-09 12:44:06 +01001222 if HasAnyPrefix(path, c.config.productVariables.NativeCoverageExcludePaths) {
Ivan Lozano5f595532017-07-13 14:46:05 -07001223 coverage = false
Ryan Campbell469a18a2017-02-27 09:01:54 -08001224 }
1225 }
1226 return coverage
Dan Willemsen581341d2017-02-09 16:16:31 -08001227}
Ivan Lozano5f595532017-07-13 14:46:05 -07001228
Pirama Arumuga Nainar49540802018-01-29 23:11:42 -08001229func (c *deviceConfig) PgoAdditionalProfileDirs() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001230 return c.config.productVariables.PgoAdditionalProfileDirs
Pirama Arumuga Nainar49540802018-01-29 23:11:42 -08001231}
1232
Tri Vo35a51432018-03-25 20:00:00 -07001233func (c *deviceConfig) VendorSepolicyDirs() []string {
1234 return c.config.productVariables.BoardVendorSepolicyDirs
1235}
1236
1237func (c *deviceConfig) OdmSepolicyDirs() []string {
1238 return c.config.productVariables.BoardOdmSepolicyDirs
1239}
1240
Felixa20a8752020-05-17 18:28:35 +02001241func (c *deviceConfig) SystemExtPublicSepolicyDirs() []string {
1242 return c.config.productVariables.SystemExtPublicSepolicyDirs
Tri Vo35a51432018-03-25 20:00:00 -07001243}
1244
Felixa20a8752020-05-17 18:28:35 +02001245func (c *deviceConfig) SystemExtPrivateSepolicyDirs() []string {
1246 return c.config.productVariables.SystemExtPrivateSepolicyDirs
Tri Vo35a51432018-03-25 20:00:00 -07001247}
1248
Inseob Kim0866b002019-04-15 20:21:29 +09001249func (c *deviceConfig) SepolicyM4Defs() []string {
1250 return c.config.productVariables.BoardSepolicyM4Defs
1251}
1252
Jiyong Park7f67f482019-01-05 12:57:48 +09001253func (c *deviceConfig) OverrideManifestPackageNameFor(name string) (manifestName string, overridden bool) {
Jaewoong Jung2ad817c2019-01-18 14:27:16 -08001254 return findOverrideValue(c.config.productVariables.ManifestPackageNameOverrides, name,
1255 "invalid override rule %q in PRODUCT_MANIFEST_PACKAGE_NAME_OVERRIDES should be <module_name>:<manifest_name>")
1256}
1257
1258func (c *deviceConfig) OverrideCertificateFor(name string) (certificatePath string, overridden bool) {
Jaewoong Jungacb6db32019-02-28 16:22:30 +00001259 return findOverrideValue(c.config.productVariables.CertificateOverrides, name,
Jaewoong Jung2ad817c2019-01-18 14:27:16 -08001260 "invalid override rule %q in PRODUCT_CERTIFICATE_OVERRIDES should be <module_name>:<certificate_module_name>")
1261}
1262
Jaewoong Jung9d22a912019-01-23 16:27:47 -08001263func (c *deviceConfig) OverridePackageNameFor(name string) string {
1264 newName, overridden := findOverrideValue(
1265 c.config.productVariables.PackageNameOverrides,
1266 name,
1267 "invalid override rule %q in PRODUCT_PACKAGE_NAME_OVERRIDES should be <module_name>:<package_name>")
1268 if overridden {
1269 return newName
1270 }
1271 return name
1272}
1273
Jaewoong Jung2ad817c2019-01-18 14:27:16 -08001274func findOverrideValue(overrides []string, name string, errorMsg string) (newValue string, overridden bool) {
Jiyong Park7f67f482019-01-05 12:57:48 +09001275 if overrides == nil || len(overrides) == 0 {
1276 return "", false
1277 }
1278 for _, o := range overrides {
1279 split := strings.Split(o, ":")
1280 if len(split) != 2 {
1281 // This shouldn't happen as this is first checked in make, but just in case.
Jaewoong Jung2ad817c2019-01-18 14:27:16 -08001282 panic(fmt.Errorf(errorMsg, o))
Jiyong Park7f67f482019-01-05 12:57:48 +09001283 }
1284 if matchPattern(split[0], name) {
1285 return substPattern(split[0], split[1], name), true
1286 }
1287 }
1288 return "", false
1289}
1290
Ivan Lozano5f595532017-07-13 14:46:05 -07001291func (c *config) IntegerOverflowDisabledForPath(path string) bool {
Roland Levillainf6cc2612020-07-09 16:58:14 +01001292 if len(c.productVariables.IntegerOverflowExcludePaths) == 0 {
Ivan Lozano5f595532017-07-13 14:46:05 -07001293 return false
1294 }
Jaewoong Jung3aff5782020-02-11 07:54:35 -08001295 return HasAnyPrefix(path, c.productVariables.IntegerOverflowExcludePaths)
Ivan Lozano5f595532017-07-13 14:46:05 -07001296}
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001297
1298func (c *config) CFIDisabledForPath(path string) bool {
Roland Levillainf6cc2612020-07-09 16:58:14 +01001299 if len(c.productVariables.CFIExcludePaths) == 0 {
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001300 return false
1301 }
Jaewoong Jung3aff5782020-02-11 07:54:35 -08001302 return HasAnyPrefix(path, c.productVariables.CFIExcludePaths)
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001303}
1304
1305func (c *config) CFIEnabledForPath(path string) bool {
Roland Levillainf6cc2612020-07-09 16:58:14 +01001306 if len(c.productVariables.CFIIncludePaths) == 0 {
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001307 return false
1308 }
Evgenii Stepanov779b64e2021-04-09 14:33:10 -07001309 return HasAnyPrefix(path, c.productVariables.CFIIncludePaths) && !c.CFIDisabledForPath(path)
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001310}
Colin Crosse15ddaf2017-12-04 11:24:31 -08001311
Evgenii Stepanov4beaa0c2021-01-05 16:41:26 -08001312func (c *config) MemtagHeapDisabledForPath(path string) bool {
1313 if len(c.productVariables.MemtagHeapExcludePaths) == 0 {
1314 return false
1315 }
1316 return HasAnyPrefix(path, c.productVariables.MemtagHeapExcludePaths)
1317}
1318
1319func (c *config) MemtagHeapAsyncEnabledForPath(path string) bool {
1320 if len(c.productVariables.MemtagHeapAsyncIncludePaths) == 0 {
1321 return false
1322 }
Evgenii Stepanov779b64e2021-04-09 14:33:10 -07001323 return HasAnyPrefix(path, c.productVariables.MemtagHeapAsyncIncludePaths) && !c.MemtagHeapDisabledForPath(path)
Evgenii Stepanov4beaa0c2021-01-05 16:41:26 -08001324}
1325
1326func (c *config) MemtagHeapSyncEnabledForPath(path string) bool {
1327 if len(c.productVariables.MemtagHeapSyncIncludePaths) == 0 {
1328 return false
1329 }
Evgenii Stepanov779b64e2021-04-09 14:33:10 -07001330 return HasAnyPrefix(path, c.productVariables.MemtagHeapSyncIncludePaths) && !c.MemtagHeapDisabledForPath(path)
Evgenii Stepanov4beaa0c2021-01-05 16:41:26 -08001331}
1332
Dan Willemsen0fe78662018-03-26 12:41:18 -07001333func (c *config) VendorConfig(name string) VendorConfig {
Colin Cross9d34f352019-11-22 16:03:51 -08001334 return soongconfig.Config(c.productVariables.VendorVars[name])
Dan Willemsen0fe78662018-03-26 12:41:18 -07001335}
1336
Colin Cross395f2cf2018-10-24 16:10:32 -07001337func (c *config) NdkAbis() bool {
1338 return Bool(c.productVariables.Ndk_abis)
1339}
1340
Martin Stjernholmc1ecc432019-11-15 15:00:31 +00001341func (c *config) AmlAbis() bool {
1342 return Bool(c.productVariables.Aml_abis)
1343}
1344
Jiyong Park8fd61922018-11-08 02:50:25 +09001345func (c *config) FlattenApex() bool {
Roland Levillaina3863212019-08-12 19:56:16 +01001346 return Bool(c.productVariables.Flatten_apex)
Jiyong Park8fd61922018-11-08 02:50:25 +09001347}
1348
Jiyong Park4da07972021-01-05 21:01:11 +09001349func (c *config) ForceApexSymlinkOptimization() bool {
1350 return Bool(c.productVariables.ForceApexSymlinkOptimization)
1351}
1352
Mohammad Samiul Islam3cd005d2020-11-26 13:32:26 +00001353func (c *config) CompressedApex() bool {
1354 return Bool(c.productVariables.CompressedApex)
1355}
1356
Jeongik Chac9464142019-01-07 12:07:27 +09001357func (c *config) EnforceSystemCertificate() bool {
1358 return Bool(c.productVariables.EnforceSystemCertificate)
1359}
1360
Colin Cross440e0d02020-06-11 11:32:11 -07001361func (c *config) EnforceSystemCertificateAllowList() []string {
1362 return c.productVariables.EnforceSystemCertificateAllowList
Jeongik Chac9464142019-01-07 12:07:27 +09001363}
1364
Jeongik Cha2cc570d2019-10-29 15:44:45 +09001365func (c *config) EnforceProductPartitionInterface() bool {
1366 return Bool(c.productVariables.EnforceProductPartitionInterface)
1367}
1368
JaeMan Parkff715562020-10-19 17:25:58 +09001369func (c *config) EnforceInterPartitionJavaSdkLibrary() bool {
1370 return Bool(c.productVariables.EnforceInterPartitionJavaSdkLibrary)
1371}
1372
1373func (c *config) InterPartitionJavaLibraryAllowList() []string {
1374 return c.productVariables.InterPartitionJavaLibraryAllowList
1375}
1376
Jooyung Han3ab2c3e2019-12-05 16:27:44 +09001377func (c *config) InstallExtraFlattenedApexes() bool {
1378 return Bool(c.productVariables.InstallExtraFlattenedApexes)
1379}
1380
Colin Crossf24a22a2019-01-31 14:12:44 -08001381func (c *config) ProductHiddenAPIStubs() []string {
1382 return c.productVariables.ProductHiddenAPIStubs
Colin Cross8faf8fc2019-01-16 15:15:52 -08001383}
1384
Colin Crossf24a22a2019-01-31 14:12:44 -08001385func (c *config) ProductHiddenAPIStubsSystem() []string {
1386 return c.productVariables.ProductHiddenAPIStubsSystem
Colin Cross8faf8fc2019-01-16 15:15:52 -08001387}
1388
Colin Crossf24a22a2019-01-31 14:12:44 -08001389func (c *config) ProductHiddenAPIStubsTest() []string {
1390 return c.productVariables.ProductHiddenAPIStubsTest
Colin Cross8faf8fc2019-01-16 15:15:52 -08001391}
Dan Willemsen71c74602019-04-10 12:27:35 -07001392
Dan Willemsen54879d12019-04-18 10:08:46 -07001393func (c *deviceConfig) TargetFSConfigGen() []string {
Dan Willemsen71c74602019-04-10 12:27:35 -07001394 return c.config.productVariables.TargetFSConfigGen
1395}
Inseob Kim0866b002019-04-15 20:21:29 +09001396
1397func (c *config) ProductPublicSepolicyDirs() []string {
1398 return c.productVariables.ProductPublicSepolicyDirs
1399}
1400
1401func (c *config) ProductPrivateSepolicyDirs() []string {
1402 return c.productVariables.ProductPrivateSepolicyDirs
1403}
1404
Colin Cross50ddcc42019-05-16 12:28:22 -07001405func (c *config) MissingUsesLibraries() []string {
1406 return c.productVariables.MissingUsesLibraries
1407}
1408
Inseob Kim1f086e22019-05-09 13:29:15 +09001409func (c *deviceConfig) DeviceArch() string {
1410 return String(c.config.productVariables.DeviceArch)
1411}
1412
1413func (c *deviceConfig) DeviceArchVariant() string {
1414 return String(c.config.productVariables.DeviceArchVariant)
1415}
1416
1417func (c *deviceConfig) DeviceSecondaryArch() string {
1418 return String(c.config.productVariables.DeviceSecondaryArch)
1419}
1420
1421func (c *deviceConfig) DeviceSecondaryArchVariant() string {
1422 return String(c.config.productVariables.DeviceSecondaryArchVariant)
1423}
Yifan Hong82db7352020-01-21 16:12:26 -08001424
1425func (c *deviceConfig) BoardUsesRecoveryAsBoot() bool {
1426 return Bool(c.config.productVariables.BoardUsesRecoveryAsBoot)
1427}
Yifan Hong97365ee2020-07-29 09:51:57 -07001428
1429func (c *deviceConfig) BoardKernelBinaries() []string {
1430 return c.config.productVariables.BoardKernelBinaries
1431}
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001432
Yifan Hong42bef8d2020-08-05 14:36:09 -07001433func (c *deviceConfig) BoardKernelModuleInterfaceVersions() []string {
1434 return c.config.productVariables.BoardKernelModuleInterfaceVersions
1435}
1436
Yifan Hongdd8dacc2020-10-21 15:40:17 -07001437func (c *deviceConfig) BoardMoveRecoveryResourcesToVendorBoot() bool {
1438 return Bool(c.config.productVariables.BoardMoveRecoveryResourcesToVendorBoot)
1439}
1440
Inseob Kim16ebd5a2020-12-09 23:08:17 +09001441func (c *deviceConfig) PlatformSepolicyVersion() string {
1442 return String(c.config.productVariables.PlatformSepolicyVersion)
1443}
1444
1445func (c *deviceConfig) BoardSepolicyVers() string {
Inseob Kim0c4eec82021-03-22 22:33:40 +09001446 if ver := String(c.config.productVariables.BoardSepolicyVers); ver != "" {
1447 return ver
1448 }
1449 return c.PlatformSepolicyVersion()
Inseob Kim16ebd5a2020-12-09 23:08:17 +09001450}
1451
1452func (c *deviceConfig) BoardReqdMaskPolicy() []string {
1453 return c.config.productVariables.BoardReqdMaskPolicy
1454}
1455
Inseob Kim7cf14652021-01-06 23:06:52 +09001456func (c *deviceConfig) DirectedVendorSnapshot() bool {
1457 return c.config.productVariables.DirectedVendorSnapshot
1458}
1459
1460func (c *deviceConfig) VendorSnapshotModules() map[string]bool {
1461 return c.config.productVariables.VendorSnapshotModules
1462}
1463
Jose Galmes4c6895e2021-02-09 07:44:30 -08001464func (c *deviceConfig) DirectedRecoverySnapshot() bool {
1465 return c.config.productVariables.DirectedRecoverySnapshot
1466}
1467
1468func (c *deviceConfig) RecoverySnapshotModules() map[string]bool {
1469 return c.config.productVariables.RecoverySnapshotModules
1470}
1471
Justin DeMartino383bfb32021-02-24 10:49:43 -08001472func createDirsMap(previous map[string]bool, dirs []string) (map[string]bool, error) {
1473 var ret = make(map[string]bool)
1474 for _, dir := range dirs {
1475 clean := filepath.Clean(dir)
1476 if previous[clean] || ret[clean] {
1477 return nil, fmt.Errorf("Duplicate entry %s", dir)
1478 }
1479 ret[clean] = true
1480 }
1481 return ret, nil
1482}
1483
1484func (c *deviceConfig) createDirsMapOnce(onceKey OnceKey, previous map[string]bool, dirs []string) map[string]bool {
1485 dirMap := c.Once(onceKey, func() interface{} {
1486 ret, err := createDirsMap(previous, dirs)
1487 if err != nil {
1488 panic(fmt.Errorf("%s: %w", onceKey.key, err))
1489 }
1490 return ret
1491 })
1492 if dirMap == nil {
1493 return nil
1494 }
1495 return dirMap.(map[string]bool)
1496}
1497
1498var vendorSnapshotDirsExcludedKey = NewOnceKey("VendorSnapshotDirsExcludedMap")
1499
1500func (c *deviceConfig) VendorSnapshotDirsExcludedMap() map[string]bool {
1501 return c.createDirsMapOnce(vendorSnapshotDirsExcludedKey, nil,
1502 c.config.productVariables.VendorSnapshotDirsExcluded)
1503}
1504
1505var vendorSnapshotDirsIncludedKey = NewOnceKey("VendorSnapshotDirsIncludedMap")
1506
1507func (c *deviceConfig) VendorSnapshotDirsIncludedMap() map[string]bool {
1508 excludedMap := c.VendorSnapshotDirsExcludedMap()
1509 return c.createDirsMapOnce(vendorSnapshotDirsIncludedKey, excludedMap,
1510 c.config.productVariables.VendorSnapshotDirsIncluded)
1511}
1512
1513var recoverySnapshotDirsExcludedKey = NewOnceKey("RecoverySnapshotDirsExcludedMap")
1514
1515func (c *deviceConfig) RecoverySnapshotDirsExcludedMap() map[string]bool {
1516 return c.createDirsMapOnce(recoverySnapshotDirsExcludedKey, nil,
1517 c.config.productVariables.RecoverySnapshotDirsExcluded)
1518}
1519
1520var recoverySnapshotDirsIncludedKey = NewOnceKey("RecoverySnapshotDirsIncludedMap")
1521
1522func (c *deviceConfig) RecoverySnapshotDirsIncludedMap() map[string]bool {
1523 excludedMap := c.RecoverySnapshotDirsExcludedMap()
1524 return c.createDirsMapOnce(recoverySnapshotDirsIncludedKey, excludedMap,
1525 c.config.productVariables.RecoverySnapshotDirsIncluded)
1526}
1527
Inseob Kim60c32f02020-12-21 22:53:05 +09001528func (c *deviceConfig) ShippingApiLevel() ApiLevel {
1529 if c.config.productVariables.ShippingApiLevel == nil {
1530 return NoneApiLevel
1531 }
1532 apiLevel, _ := strconv.Atoi(*c.config.productVariables.ShippingApiLevel)
1533 return uncheckedFinalApiLevel(apiLevel)
1534}
1535
Inseob Kim67e5add2021-03-17 18:05:33 +09001536func (c *deviceConfig) BuildBrokenEnforceSyspropOwner() bool {
1537 return c.config.productVariables.BuildBrokenEnforceSyspropOwner
1538}
1539
1540func (c *deviceConfig) BuildBrokenTrebleSyspropNeverallow() bool {
1541 return c.config.productVariables.BuildBrokenTrebleSyspropNeverallow
1542}
1543
Hridya Valsaraju5a5c7d52021-04-02 16:45:24 -07001544func (c *deviceConfig) BuildDebugfsRestrictionsEnabled() bool {
1545 return c.config.productVariables.BuildDebugfsRestrictionsEnabled
1546}
1547
Inseob Kim0cac7b42021-02-03 18:16:46 +09001548func (c *deviceConfig) BuildBrokenVendorPropertyNamespace() bool {
1549 return c.config.productVariables.BuildBrokenVendorPropertyNamespace
1550}
1551
Inseob Kim67e5add2021-03-17 18:05:33 +09001552func (c *deviceConfig) RequiresInsecureExecmemForSwiftshader() bool {
1553 return c.config.productVariables.RequiresInsecureExecmemForSwiftshader
1554}
1555
1556func (c *config) SelinuxIgnoreNeverallows() bool {
1557 return c.productVariables.SelinuxIgnoreNeverallows
1558}
1559
1560func (c *deviceConfig) SepolicySplit() bool {
1561 return c.config.productVariables.SepolicySplit
1562}
1563
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001564// The ConfiguredJarList struct provides methods for handling a list of (apex, jar) pairs.
1565// Such lists are used in the build system for things like bootclasspath jars or system server jars.
1566// The apex part is either an apex name, or a special names "platform" or "system_ext". Jar is a
1567// module name. The pairs come from Make product variables as a list of colon-separated strings.
1568//
1569// Examples:
1570// - "com.android.art:core-oj"
1571// - "platform:framework"
1572// - "system_ext:foo"
1573//
1574type ConfiguredJarList struct {
Jingwen Chenc711fec2020-11-22 23:52:50 -05001575 // A list of apex components, which can be an apex name,
1576 // or special names like "platform" or "system_ext".
1577 apexes []string
1578
1579 // A list of jar module name components.
1580 jars []string
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001581}
1582
Jingwen Chenc711fec2020-11-22 23:52:50 -05001583// Len returns the length of the list of jars.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001584func (l *ConfiguredJarList) Len() int {
1585 return len(l.jars)
1586}
1587
Jingwen Chenc711fec2020-11-22 23:52:50 -05001588// Jar returns the idx-th jar component of (apex, jar) pairs.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001589func (l *ConfiguredJarList) Jar(idx int) string {
1590 return l.jars[idx]
1591}
1592
Jingwen Chenc711fec2020-11-22 23:52:50 -05001593// Apex returns the idx-th apex component of (apex, jar) pairs.
Paul Duffin9a89a2a2020-10-28 19:20:06 +00001594func (l *ConfiguredJarList) Apex(idx int) string {
1595 return l.apexes[idx]
1596}
1597
Jingwen Chenc711fec2020-11-22 23:52:50 -05001598// ContainsJar returns true if the (apex, jar) pairs contains a pair with the
1599// given jar module name.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001600func (l *ConfiguredJarList) ContainsJar(jar string) bool {
1601 return InList(jar, l.jars)
1602}
1603
1604// If the list contains the given (apex, jar) pair.
1605func (l *ConfiguredJarList) containsApexJarPair(apex, jar string) bool {
1606 for i := 0; i < l.Len(); i++ {
Paul Duffin1e8c6072020-10-23 18:28:55 +01001607 if apex == l.apexes[i] && jar == l.jars[i] {
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001608 return true
1609 }
1610 }
1611 return false
1612}
1613
satayev3db35472021-05-06 23:59:58 +01001614// ApexOfJar returns the apex component of the first pair with the given jar name on the list, or
1615// an empty string if not found.
1616func (l *ConfiguredJarList) ApexOfJar(jar string) string {
1617 if idx := IndexList(jar, l.jars); idx != -1 {
1618 return l.Apex(IndexList(jar, l.jars))
1619 }
1620 return ""
1621}
1622
Jingwen Chenc711fec2020-11-22 23:52:50 -05001623// IndexOfJar returns the first pair with the given jar name on the list, or -1
1624// if not found.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001625func (l *ConfiguredJarList) IndexOfJar(jar string) int {
1626 return IndexList(jar, l.jars)
1627}
1628
Paul Duffin7d584e92020-10-23 18:26:03 +01001629func copyAndAppend(list []string, item string) []string {
1630 // Create the result list to be 1 longer than the input.
1631 result := make([]string, len(list)+1)
1632
1633 // Copy the whole input list into the result.
1634 count := copy(result, list)
1635
1636 // Insert the extra item at the end.
1637 result[count] = item
1638
1639 return result
1640}
1641
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001642// Append an (apex, jar) pair to the list.
Paul Duffin7d584e92020-10-23 18:26:03 +01001643func (l *ConfiguredJarList) Append(apex string, jar string) ConfiguredJarList {
1644 // Create a copy of the backing arrays before appending to avoid sharing backing
1645 // arrays that are mutated across instances.
1646 apexes := copyAndAppend(l.apexes, apex)
1647 jars := copyAndAppend(l.jars, jar)
1648
1649 return ConfiguredJarList{apexes, jars}
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001650}
1651
Jingwen Chenc711fec2020-11-22 23:52:50 -05001652// RemoveList filters out a list of (apex, jar) pairs from the receiving list of pairs.
Paul Duffin7d584e92020-10-23 18:26:03 +01001653func (l *ConfiguredJarList) RemoveList(list ConfiguredJarList) ConfiguredJarList {
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001654 apexes := make([]string, 0, l.Len())
1655 jars := make([]string, 0, l.Len())
1656
1657 for i, jar := range l.jars {
Paul Duffin1e8c6072020-10-23 18:28:55 +01001658 apex := l.apexes[i]
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001659 if !list.containsApexJarPair(apex, jar) {
1660 apexes = append(apexes, apex)
1661 jars = append(jars, jar)
1662 }
1663 }
1664
Paul Duffin7d584e92020-10-23 18:26:03 +01001665 return ConfiguredJarList{apexes, jars}
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001666}
1667
satayevd34eb0c2021-08-06 13:20:28 +01001668// Filter keeps the entries if a jar appears in the given list of jars to keep. Returns a new list
1669// and any remaining jars that are not on this list.
1670func (l *ConfiguredJarList) Filter(jarsToKeep []string) (ConfiguredJarList, []string) {
satayev8fab6f82021-05-07 00:10:33 +01001671 var apexes []string
1672 var jars []string
1673
1674 for i, jar := range l.jars {
1675 if InList(jar, jarsToKeep) {
1676 apexes = append(apexes, l.apexes[i])
1677 jars = append(jars, jar)
1678 }
1679 }
1680
satayevd34eb0c2021-08-06 13:20:28 +01001681 return ConfiguredJarList{apexes, jars}, RemoveListFromList(jarsToKeep, jars)
satayev8fab6f82021-05-07 00:10:33 +01001682}
1683
Jingwen Chenc711fec2020-11-22 23:52:50 -05001684// CopyOfJars returns a copy of the list of strings containing jar module name
1685// components.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001686func (l *ConfiguredJarList) CopyOfJars() []string {
1687 return CopyOf(l.jars)
1688}
1689
Jingwen Chenc711fec2020-11-22 23:52:50 -05001690// CopyOfApexJarPairs returns a copy of the list of strings with colon-separated
1691// (apex, jar) pairs.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001692func (l *ConfiguredJarList) CopyOfApexJarPairs() []string {
1693 pairs := make([]string, 0, l.Len())
1694
1695 for i, jar := range l.jars {
Paul Duffin1e8c6072020-10-23 18:28:55 +01001696 apex := l.apexes[i]
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001697 pairs = append(pairs, apex+":"+jar)
1698 }
1699
1700 return pairs
1701}
1702
Jingwen Chenc711fec2020-11-22 23:52:50 -05001703// BuildPaths returns a list of build paths based on the given directory prefix.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001704func (l *ConfiguredJarList) BuildPaths(ctx PathContext, dir OutputPath) WritablePaths {
1705 paths := make(WritablePaths, l.Len())
1706 for i, jar := range l.jars {
1707 paths[i] = dir.Join(ctx, ModuleStem(jar)+".jar")
1708 }
1709 return paths
1710}
1711
Paul Duffin5f148ca2021-06-02 17:24:22 +01001712// BuildPathsByModule returns a map from module name to build paths based on the given directory
1713// prefix.
1714func (l *ConfiguredJarList) BuildPathsByModule(ctx PathContext, dir OutputPath) map[string]WritablePath {
1715 paths := map[string]WritablePath{}
1716 for _, jar := range l.jars {
1717 paths[jar] = dir.Join(ctx, ModuleStem(jar)+".jar")
1718 }
1719 return paths
1720}
1721
Jingwen Chenc711fec2020-11-22 23:52:50 -05001722// UnmarshalJSON converts JSON configuration from raw bytes into a
1723// ConfiguredJarList structure.
Paul Duffin69d1fb12020-10-23 21:14:20 +01001724func (l *ConfiguredJarList) UnmarshalJSON(b []byte) error {
1725 // Try and unmarshal into a []string each item of which contains a pair
1726 // <apex>:<jar>.
1727 var list []string
1728 err := json.Unmarshal(b, &list)
1729 if err != nil {
1730 // Did not work so return
1731 return err
1732 }
1733
1734 apexes, jars, err := splitListOfPairsIntoPairOfLists(list)
1735 if err != nil {
1736 return err
1737 }
1738 l.apexes = apexes
1739 l.jars = jars
1740 return nil
1741}
1742
Lukacs T. Berki720b3962021-03-17 13:34:30 +01001743func (l *ConfiguredJarList) MarshalJSON() ([]byte, error) {
1744 if len(l.apexes) != len(l.jars) {
1745 return nil, errors.New(fmt.Sprintf("Inconsistent ConfiguredJarList: apexes: %q, jars: %q", l.apexes, l.jars))
1746 }
1747
1748 list := make([]string, 0, len(l.apexes))
1749
1750 for i := 0; i < len(l.apexes); i++ {
1751 list = append(list, l.apexes[i]+":"+l.jars[i])
1752 }
1753
1754 return json.Marshal(list)
1755}
1756
Jingwen Chenc711fec2020-11-22 23:52:50 -05001757// ModuleStem hardcodes the stem of framework-minus-apex to return "framework".
1758//
1759// TODO(b/139391334): hard coded until we find a good way to query the stem of a
1760// module before any other mutators are run.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001761func ModuleStem(module string) string {
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001762 if module == "framework-minus-apex" {
1763 return "framework"
1764 }
1765 return module
1766}
1767
Jingwen Chenc711fec2020-11-22 23:52:50 -05001768// DevicePaths computes the on-device paths for the list of (apex, jar) pairs,
1769// based on the operating system.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001770func (l *ConfiguredJarList) DevicePaths(cfg Config, ostype OsType) []string {
1771 paths := make([]string, l.Len())
1772 for i, jar := range l.jars {
1773 apex := l.apexes[i]
1774 name := ModuleStem(jar) + ".jar"
1775
1776 var subdir string
1777 if apex == "platform" {
1778 subdir = "system/framework"
1779 } else if apex == "system_ext" {
1780 subdir = "system_ext/framework"
1781 } else {
1782 subdir = filepath.Join("apex", apex, "javalib")
1783 }
1784
1785 if ostype.Class == Host {
1786 paths[i] = filepath.Join(cfg.Getenv("OUT_DIR"), "host", cfg.PrebuiltOS(), subdir, name)
1787 } else {
1788 paths[i] = filepath.Join("/", subdir, name)
1789 }
1790 }
1791 return paths
1792}
1793
Paul Duffin7d584e92020-10-23 18:26:03 +01001794func (l *ConfiguredJarList) String() string {
1795 var pairs []string
1796 for i := 0; i < l.Len(); i++ {
1797 pairs = append(pairs, l.apexes[i]+":"+l.jars[i])
1798 }
1799 return strings.Join(pairs, ",")
1800}
1801
Paul Duffin01416602020-10-23 21:04:03 +01001802func splitListOfPairsIntoPairOfLists(list []string) ([]string, []string, error) {
1803 // Now we need to populate this list by splitting each item in the slice of
1804 // pairs and appending them to the appropriate list of apexes or jars.
1805 apexes := make([]string, len(list))
1806 jars := make([]string, len(list))
1807
1808 for i, apexjar := range list {
1809 apex, jar, err := splitConfiguredJarPair(apexjar)
1810 if err != nil {
1811 return nil, nil, err
1812 }
1813 apexes[i] = apex
1814 jars[i] = jar
1815 }
1816
1817 return apexes, jars, nil
1818}
1819
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001820// Expected format for apexJarValue = <apex name>:<jar name>
Paul Duffin01416602020-10-23 21:04:03 +01001821func splitConfiguredJarPair(str string) (string, string, error) {
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001822 pair := strings.SplitN(str, ":", 2)
1823 if len(pair) == 2 {
Paul Duffin9c3ac962021-02-03 14:11:27 +00001824 apex := pair[0]
1825 jar := pair[1]
1826 if apex == "" {
1827 return apex, jar, fmt.Errorf("invalid apex '%s' in <apex>:<jar> pair '%s', expected format: <apex>:<jar>", apex, str)
1828 }
1829 return apex, jar, nil
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001830 } else {
Paul Duffin01416602020-10-23 21:04:03 +01001831 return "error-apex", "error-jar", fmt.Errorf("malformed (apex, jar) pair: '%s', expected format: <apex>:<jar>", str)
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001832 }
1833}
1834
Paul Duffin9c3ac962021-02-03 14:11:27 +00001835// CreateTestConfiguredJarList is a function to create ConfiguredJarList for tests.
Paul Duffine10dfa42020-10-23 21:23:44 +01001836func CreateTestConfiguredJarList(list []string) ConfiguredJarList {
Paul Duffin9c3ac962021-02-03 14:11:27 +00001837 // Create the ConfiguredJarList in as similar way as it is created at runtime by marshalling to
1838 // a json list of strings and then unmarshalling into a ConfiguredJarList instance.
1839 b, err := json.Marshal(list)
Paul Duffin01416602020-10-23 21:04:03 +01001840 if err != nil {
Paul Duffine10dfa42020-10-23 21:23:44 +01001841 panic(err)
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001842 }
1843
Paul Duffin9c3ac962021-02-03 14:11:27 +00001844 var jarList ConfiguredJarList
1845 err = json.Unmarshal(b, &jarList)
1846 if err != nil {
1847 panic(err)
1848 }
1849
1850 return jarList
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001851}
1852
Jingwen Chenc711fec2020-11-22 23:52:50 -05001853// EmptyConfiguredJarList returns an empty jar list.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001854func EmptyConfiguredJarList() ConfiguredJarList {
1855 return ConfiguredJarList{}
1856}
1857
1858var earlyBootJarsKey = NewOnceKey("earlyBootJars")
1859
1860func (c *config) BootJars() []string {
1861 return c.Once(earlyBootJarsKey, func() interface{} {
Paul Duffin69d1fb12020-10-23 21:14:20 +01001862 list := c.productVariables.BootJars.CopyOfJars()
satayevd604b212021-07-21 14:23:52 +01001863 return append(list, c.productVariables.ApexBootJars.CopyOfJars()...)
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001864 }).([]string)
1865}
Paul Duffin9a89a2a2020-10-28 19:20:06 +00001866
satayevd604b212021-07-21 14:23:52 +01001867func (c *config) NonApexBootJars() ConfiguredJarList {
Paul Duffin9a89a2a2020-10-28 19:20:06 +00001868 return c.productVariables.BootJars
1869}
1870
satayevd604b212021-07-21 14:23:52 +01001871func (c *config) ApexBootJars() ConfiguredJarList {
1872 return c.productVariables.ApexBootJars
Paul Duffin9a89a2a2020-10-28 19:20:06 +00001873}
Colin Cross77cdcfd2021-03-12 11:28:25 -08001874
1875func (c *config) RBEWrapper() string {
1876 return c.GetenvWithDefault("RBE_WRAPPER", remoteexec.DefaultWrapperPath)
1877}