blob: 29784db852e034edace3682b2109914ac55b1dbd [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
Jingwen Chenc711fec2020-11-22 23:52:50 -050069// BuildDir returns the build output directory for the configuration.
Jeff Gastonefc1b412017-03-29 17:29:06 -070070func (c Config) BuildDir() string {
71 return c.buildDir
72}
73
Lukacs T. Berki89e9a162021-03-12 08:31:32 +010074func (c Config) NinjaBuildDir() string {
75 return c.buildDir
76}
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
Lukacs T. Berki89e9a162021-03-12 08:31:32 +010082func (c Config) SrcDir() string {
83 return c.srcDir
84}
85
Jingwen Chenc711fec2020-11-22 23:52:50 -050086// A DeviceConfig object represents the configuration for a particular device
87// being built. For now there will only be one of these, but in the future there
88// may be multiple devices being built.
Colin Cross9272ade2016-08-17 15:24:12 -070089type DeviceConfig struct {
90 *deviceConfig
91}
92
Jingwen Chenc711fec2020-11-22 23:52:50 -050093// VendorConfig represents the configuration for vendor-specific behavior.
Colin Cross9d34f352019-11-22 16:03:51 -080094type VendorConfig soongconfig.SoongConfig
Dan Willemsen0fe78662018-03-26 12:41:18 -070095
Jingwen Chenc711fec2020-11-22 23:52:50 -050096// Definition of general build configuration for soong_build. Some of these
Jingwen Chenc4d91bc2020-11-24 22:59:26 -050097// product configuration values are read from Kati-generated soong.variables.
Colin Cross1332b002015-04-07 17:11:30 -070098type config struct {
Jingwen Chenc711fec2020-11-22 23:52:50 -050099 // Options configurable with soong.variables
Dan Willemsen45133ac2018-03-09 21:22:06 -0800100 productVariables productVariables
Colin Cross3f40fa42015-01-30 17:27:36 -0800101
Dan Willemsen674dc7f2018-03-12 18:06:05 -0700102 // Only available on configs created by TestConfig
103 TestProductVariables *productVariables
104
Jingwen Chenc711fec2020-11-22 23:52:50 -0500105 // A specialized context object for Bazel/Soong mixed builds and migration
106 // purposes.
Chris Parsonsf3c96ef2020-09-29 02:23:17 -0400107 BazelContext BazelContext
108
Dan Willemsen87b17d12015-07-14 00:39:06 -0700109 ProductVariablesFileName string
110
Colin Cross0c66bc62021-07-20 09:47:41 -0700111 // BuildOS stores the OsType for the OS that the build is running on.
112 BuildOS OsType
113
114 // BuildArch stores the ArchType for the CPU that the build is running on.
115 BuildArch ArchType
116
Jaewoong Jung642916f2020-10-09 17:25:15 -0700117 Targets map[OsType][]Target
118 BuildOSTarget Target // the Target for tools run on the build machine
119 BuildOSCommonTarget Target // the Target for common (java) tools run on the build machine
120 AndroidCommonTarget Target // the Target for common modules for the Android device
121 AndroidFirstDeviceTarget Target // the first Target for modules for the Android device
Dan Willemsen218f6562015-07-08 18:13:11 -0700122
Jingwen Chenc711fec2020-11-22 23:52:50 -0500123 // multilibConflicts for an ArchType is true if there is earlier configured
124 // device architecture with the same multilib value.
Colin Cross3b19f5d2019-09-17 14:45:31 -0700125 multilibConflicts map[ArchType]bool
126
Colin Cross9272ade2016-08-17 15:24:12 -0700127 deviceConfig *deviceConfig
128
Chris Parsons8f232a22020-06-23 17:37:05 -0400129 srcDir string // the path of the root source directory
130 buildDir string // the path of the build output directory
131 moduleListFile string // the path to the file which lists blueprint files to parse.
Colin Crossc1e86a32015-04-15 12:33:28 -0700132
Colin Cross6ccbc912017-10-10 23:07:38 -0700133 env map[string]string
Dan Willemsene7680ba2015-09-11 17:06:19 -0700134 envLock sync.Mutex
135 envDeps map[string]string
136 envFrozen bool
Dan Willemsen5ba07e82015-12-11 13:51:06 -0800137
Jingwen Chencda22c92020-11-23 00:22:30 -0500138 // Changes behavior based on whether Kati runs after soong_build, or if soong_build
139 // runs standalone.
140 katiEnabled bool
Colin Cross1e7d3702016-08-24 15:25:47 -0700141
Colin Cross32616ed2017-09-05 21:56:44 -0700142 captureBuild bool // true for tests, saves build parameters for each module
143 ignoreEnvironment bool // true for tests, returns empty from all Getenv calls
Colin Crosscec81712017-07-13 14:43:27 -0700144
Colin Crosse87040b2017-12-11 15:52:26 -0800145 stopBefore bootstrap.StopBefore
146
Colin Cross98be1bb2019-12-13 20:41:13 -0800147 fs pathtools.FileSystem
148 mockBpList string
149
Jingwen Chen12b4c272021-03-10 02:05:59 -0500150 bp2buildPackageConfig Bp2BuildConfig
151 bp2buildModuleTypeConfig map[string]bool
152
Colin Cross5e6a7972020-06-07 16:56:32 -0700153 // If testAllowNonExistentPaths is true then PathForSource and PathForModuleSrc won't error
154 // in tests when a path doesn't exist.
Pedro Loureiro5d190cc2021-02-15 15:41:33 +0000155 TestAllowNonExistentPaths bool
Colin Cross5e6a7972020-06-07 16:56:32 -0700156
Jingwen Chenc711fec2020-11-22 23:52:50 -0500157 // The list of files that when changed, must invalidate soong_build to
158 // regenerate build.ninja.
Colin Cross12129292020-10-29 18:23:58 -0700159 ninjaFileDepsSet sync.Map
160
Colin Cross9272ade2016-08-17 15:24:12 -0700161 OncePer
162}
163
164type deviceConfig struct {
Dan Willemsen00269f22017-07-06 16:59:48 -0700165 config *config
Colin Cross9272ade2016-08-17 15:24:12 -0700166 OncePer
Colin Cross3f40fa42015-01-30 17:27:36 -0800167}
168
Colin Cross485e5722015-08-27 13:28:01 -0700169type jsonConfigurable interface {
Colin Cross27385972015-09-18 10:57:10 -0700170 SetDefaultConfig()
Colin Cross485e5722015-08-27 13:28:01 -0700171}
Colin Cross3f40fa42015-01-30 17:27:36 -0800172
Colin Cross485e5722015-08-27 13:28:01 -0700173func loadConfig(config *config) error {
Colin Cross988414c2020-01-11 01:11:46 +0000174 return loadFromConfigFile(&config.productVariables, absolutePath(config.ProductVariablesFileName))
Colin Cross485e5722015-08-27 13:28:01 -0700175}
176
Jingwen Chenc711fec2020-11-22 23:52:50 -0500177// loadFromConfigFile loads and decodes configuration options from a JSON file
178// in the current working directory.
Liz Kammer09f947d2021-05-12 14:51:49 -0400179func loadFromConfigFile(configurable *productVariables, filename string) error {
Colin Cross3f40fa42015-01-30 17:27:36 -0800180 // Try to open the file
Colin Cross485e5722015-08-27 13:28:01 -0700181 configFileReader, err := os.Open(filename)
Colin Cross3f40fa42015-01-30 17:27:36 -0800182 defer configFileReader.Close()
183 if os.IsNotExist(err) {
184 // Need to create a file, so that blueprint & ninja don't get in
185 // a dependency tracking loop.
186 // Make a file-configurable-options with defaults, write it out using
187 // a json writer.
Colin Cross27385972015-09-18 10:57:10 -0700188 configurable.SetDefaultConfig()
189 err = saveToConfigFile(configurable, filename)
Colin Cross3f40fa42015-01-30 17:27:36 -0800190 if err != nil {
191 return err
192 }
Colin Cross15cd21a2018-02-27 11:26:02 -0800193 } else if err != nil {
194 return fmt.Errorf("config file: could not open %s: %s", filename, err.Error())
Colin Cross3f40fa42015-01-30 17:27:36 -0800195 } else {
196 // Make a decoder for it
197 jsonDecoder := json.NewDecoder(configFileReader)
Colin Cross485e5722015-08-27 13:28:01 -0700198 err = jsonDecoder.Decode(configurable)
Colin Cross3f40fa42015-01-30 17:27:36 -0800199 if err != nil {
Colin Cross15cd21a2018-02-27 11:26:02 -0800200 return fmt.Errorf("config file: %s did not parse correctly: %s", filename, err.Error())
Colin Cross3f40fa42015-01-30 17:27:36 -0800201 }
202 }
203
Liz Kammer09f947d2021-05-12 14:51:49 -0400204 if Bool(configurable.GcovCoverage) && Bool(configurable.ClangCoverage) {
205 return fmt.Errorf("GcovCoverage and ClangCoverage cannot both be set")
206 }
207
208 configurable.Native_coverage = proptools.BoolPtr(
209 Bool(configurable.GcovCoverage) ||
210 Bool(configurable.ClangCoverage))
211
Yuntao Xu402e9b02021-08-09 15:44:44 -0700212 // when Platform_sdk_final is true (or PLATFORM_VERSION_CODENAME is REL), use Platform_sdk_version;
213 // if false (pre-released version, for example), use Platform_sdk_codename.
214 if Bool(configurable.Platform_sdk_final) {
215 if configurable.Platform_sdk_version != nil {
216 configurable.Platform_sdk_version_or_codename =
217 proptools.StringPtr(strconv.Itoa(*(configurable.Platform_sdk_version)))
218 } else {
219 return fmt.Errorf("Platform_sdk_version cannot be pointed by a NULL pointer")
220 }
221 } else {
222 configurable.Platform_sdk_version_or_codename =
223 proptools.StringPtr(String(configurable.Platform_sdk_codename))
224 }
225
Liz Kammer09f947d2021-05-12 14:51:49 -0400226 return saveToBazelConfigFile(configurable, filepath.Dir(filename))
Colin Cross3f40fa42015-01-30 17:27:36 -0800227}
228
Colin Crossd8f20142016-11-03 09:43:26 -0700229// atomically writes the config file in case two copies of soong_build are running simultaneously
230// (for example, docs generation and ninja manifest generation)
Liz Kammer09f947d2021-05-12 14:51:49 -0400231func saveToConfigFile(config *productVariables, filename string) error {
Colin Cross3f40fa42015-01-30 17:27:36 -0800232 data, err := json.MarshalIndent(&config, "", " ")
233 if err != nil {
234 return fmt.Errorf("cannot marshal config data: %s", err.Error())
235 }
236
Colin Crossd8f20142016-11-03 09:43:26 -0700237 f, err := ioutil.TempFile(filepath.Dir(filename), "config")
Colin Cross3f40fa42015-01-30 17:27:36 -0800238 if err != nil {
Jingwen Chenc711fec2020-11-22 23:52:50 -0500239 return fmt.Errorf("cannot create empty config file %s: %s", filename, err.Error())
Colin Cross3f40fa42015-01-30 17:27:36 -0800240 }
Colin Crossd8f20142016-11-03 09:43:26 -0700241 defer os.Remove(f.Name())
242 defer f.Close()
Colin Cross3f40fa42015-01-30 17:27:36 -0800243
Colin Crossd8f20142016-11-03 09:43:26 -0700244 _, err = f.Write(data)
Colin Cross3f40fa42015-01-30 17:27:36 -0800245 if err != nil {
Colin Cross485e5722015-08-27 13:28:01 -0700246 return fmt.Errorf("default config file: %s could not be written: %s", filename, err.Error())
247 }
248
Colin Crossd8f20142016-11-03 09:43:26 -0700249 _, err = f.WriteString("\n")
Colin Cross485e5722015-08-27 13:28:01 -0700250 if err != nil {
251 return fmt.Errorf("default config file: %s could not be written: %s", filename, err.Error())
Colin Cross3f40fa42015-01-30 17:27:36 -0800252 }
253
Colin Crossd8f20142016-11-03 09:43:26 -0700254 f.Close()
255 os.Rename(f.Name(), filename)
256
Colin Cross3f40fa42015-01-30 17:27:36 -0800257 return nil
258}
259
Liz Kammer09f947d2021-05-12 14:51:49 -0400260func saveToBazelConfigFile(config *productVariables, outDir string) error {
261 dir := filepath.Join(outDir, bazel.SoongInjectionDirName, "product_config")
262 err := createDirIfNonexistent(dir, os.ModePerm)
263 if err != nil {
264 return fmt.Errorf("Could not create dir %s: %s", dir, err)
265 }
266
267 data, err := json.MarshalIndent(&config, "", " ")
268 if err != nil {
269 return fmt.Errorf("cannot marshal config data: %s", err.Error())
270 }
271
272 bzl := []string{
273 bazel.GeneratedBazelFileWarning,
274 fmt.Sprintf(`_product_vars = json.decode("""%s""")`, data),
275 "product_vars = _product_vars\n",
276 }
277 err = ioutil.WriteFile(filepath.Join(dir, "product_variables.bzl"), []byte(strings.Join(bzl, "\n")), 0644)
278 if err != nil {
279 return fmt.Errorf("Could not write .bzl config file %s", err)
280 }
281 err = ioutil.WriteFile(filepath.Join(dir, "BUILD"), []byte(bazel.GeneratedBazelFileWarning), 0644)
282 if err != nil {
283 return fmt.Errorf("Could not write BUILD config file %s", err)
284 }
285
286 return nil
287}
288
Colin Cross988414c2020-01-11 01:11:46 +0000289// NullConfig returns a mostly empty Config for use by standalone tools like dexpreopt_gen that
290// use the android package.
291func NullConfig(buildDir string) Config {
292 return Config{
293 config: &config{
294 buildDir: buildDir,
295 fs: pathtools.OsFs,
296 },
297 }
298}
299
Jingwen Chenc711fec2020-11-22 23:52:50 -0500300// TestConfig returns a Config object for testing.
Colin Cross98be1bb2019-12-13 20:41:13 -0800301func TestConfig(buildDir string, env map[string]string, bp string, fs map[string][]byte) Config {
Colin Cross9c6241f2019-04-22 15:51:26 -0700302 envCopy := make(map[string]string)
303 for k, v := range env {
304 envCopy[k] = v
305 }
306
Jingwen Chen2838c812020-11-23 01:06:40 -0500307 // Copy the real PATH value to the test environment, it's needed by
308 // NonHermeticHostSystemTool() used in x86_darwin_host.go
Lukacs T. Berkideba7212021-03-04 10:50:10 +0100309 envCopy["PATH"] = os.Getenv("PATH")
Colin Cross9c6241f2019-04-22 15:51:26 -0700310
Dan Willemsen00269f22017-07-06 16:59:48 -0700311 config := &config{
Dan Willemsen45133ac2018-03-09 21:22:06 -0800312 productVariables: productVariables{
Dan Albert4f378d72020-07-23 17:32:15 -0700313 DeviceName: stringPtr("test_device"),
314 Platform_sdk_version: intPtr(30),
315 Platform_sdk_codename: stringPtr("S"),
316 Platform_version_active_codenames: []string{"S"},
317 DeviceSystemSdkVersions: []string{"14", "15"},
318 Platform_systemsdk_versions: []string{"29", "30"},
319 AAPTConfig: []string{"normal", "large", "xlarge", "hdpi", "xhdpi", "xxhdpi"},
320 AAPTPreferredConfig: stringPtr("xhdpi"),
321 AAPTCharacteristics: stringPtr("nosdcard"),
322 AAPTPrebuiltDPI: []string{"xhdpi", "xxhdpi"},
323 UncompressPrivAppDex: boolPtr(true),
Inseob Kim60c32f02020-12-21 22:53:05 +0900324 ShippingApiLevel: stringPtr("30"),
Dan Willemsen00269f22017-07-06 16:59:48 -0700325 },
326
Colin Cross6ccbc912017-10-10 23:07:38 -0700327 buildDir: buildDir,
328 captureBuild: true,
Colin Cross9c6241f2019-04-22 15:51:26 -0700329 env: envCopy,
Colin Cross5e6a7972020-06-07 16:56:32 -0700330
331 // Set testAllowNonExistentPaths so that test contexts don't need to specify every path
332 // passed to PathForSource or PathForModuleSrc.
Pedro Loureiro5d190cc2021-02-15 15:41:33 +0000333 TestAllowNonExistentPaths: true,
Chris Parsonsf3c96ef2020-09-29 02:23:17 -0400334
335 BazelContext: noopBazelContext{},
Dan Willemsen00269f22017-07-06 16:59:48 -0700336 }
337 config.deviceConfig = &deviceConfig{
338 config: config,
339 }
Dan Willemsen45133ac2018-03-09 21:22:06 -0800340 config.TestProductVariables = &config.productVariables
Dan Willemsen00269f22017-07-06 16:59:48 -0700341
Colin Cross98be1bb2019-12-13 20:41:13 -0800342 config.mockFileSystem(bp, fs)
343
Jingwen Chen12b4c272021-03-10 02:05:59 -0500344 config.bp2buildModuleTypeConfig = map[string]bool{}
345
Dan Willemsen00269f22017-07-06 16:59:48 -0700346 return Config{config}
Colin Crossce75d2c2016-10-06 16:12:58 -0700347}
348
Paul Duffin35816122021-02-24 01:49:52 +0000349func modifyTestConfigToSupportArchMutator(testConfig Config) {
Colin Crossae4c6182017-09-15 17:33:55 -0700350 config := testConfig.config
351
Colin Cross0c66bc62021-07-20 09:47:41 -0700352 determineBuildOS(config)
353
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700354 config.Targets = map[OsType][]Target{
355 Android: []Target{
Jiyong Park1613e552020-09-14 19:43:17 +0900356 {Android, Arch{ArchType: Arm64, ArchVariant: "armv8-a", Abi: []string{"arm64-v8a"}}, NativeBridgeDisabled, "", "", false},
357 {Android, Arch{ArchType: Arm, ArchVariant: "armv7-a-neon", Abi: []string{"armeabi-v7a"}}, NativeBridgeDisabled, "", "", false},
Colin Crossae4c6182017-09-15 17:33:55 -0700358 },
Colin Cross0c66bc62021-07-20 09:47:41 -0700359 config.BuildOS: []Target{
360 {config.BuildOS, Arch{ArchType: X86_64}, NativeBridgeDisabled, "", "", false},
361 {config.BuildOS, Arch{ArchType: X86}, NativeBridgeDisabled, "", "", false},
Colin Crossae4c6182017-09-15 17:33:55 -0700362 },
363 }
364
Colin Cross0d99f7c2019-05-14 16:01:24 -0700365 if runtime.GOOS == "darwin" {
Colin Cross0c66bc62021-07-20 09:47:41 -0700366 config.Targets[config.BuildOS] = config.Targets[config.BuildOS][:1]
Colin Cross0d99f7c2019-05-14 16:01:24 -0700367 }
368
Colin Cross0c66bc62021-07-20 09:47:41 -0700369 config.BuildOSTarget = config.Targets[config.BuildOS][0]
370 config.BuildOSCommonTarget = getCommonTargets(config.Targets[config.BuildOS])[0]
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700371 config.AndroidCommonTarget = getCommonTargets(config.Targets[Android])[0]
Jaewoong Jung642916f2020-10-09 17:25:15 -0700372 config.AndroidFirstDeviceTarget = firstTarget(config.Targets[Android], "lib64", "lib32")[0]
Inseob Kim1f086e22019-05-09 13:29:15 +0900373 config.TestProductVariables.DeviceArch = proptools.StringPtr("arm64")
374 config.TestProductVariables.DeviceArchVariant = proptools.StringPtr("armv8-a")
375 config.TestProductVariables.DeviceSecondaryArch = proptools.StringPtr("arm")
376 config.TestProductVariables.DeviceSecondaryArchVariant = proptools.StringPtr("armv7-a-neon")
Paul Duffin35816122021-02-24 01:49:52 +0000377}
Colin Cross2a076922018-10-04 23:28:25 -0700378
Colin Cross528d67e2021-07-23 22:23:07 +0000379func modifyTestConfigForMusl(config Config) {
380 delete(config.Targets, config.BuildOS)
381 config.productVariables.HostMusl = boolPtr(true)
382 determineBuildOS(config.config)
383 config.Targets[config.BuildOS] = []Target{
384 {config.BuildOS, Arch{ArchType: X86_64}, NativeBridgeDisabled, "", "", false},
385 {config.BuildOS, Arch{ArchType: X86}, NativeBridgeDisabled, "", "", false},
386 }
387
388 config.BuildOSTarget = config.Targets[config.BuildOS][0]
389 config.BuildOSCommonTarget = getCommonTargets(config.Targets[config.BuildOS])[0]
390}
391
Paul Duffin35816122021-02-24 01:49:52 +0000392// TestArchConfig returns a Config object suitable for using for tests that
393// need to run the arch mutator.
394func TestArchConfig(buildDir string, env map[string]string, bp string, fs map[string][]byte) Config {
395 testConfig := TestConfig(buildDir, env, bp, fs)
396 modifyTestConfigToSupportArchMutator(testConfig)
Colin Crossae4c6182017-09-15 17:33:55 -0700397 return testConfig
398}
399
Jingwen Chenc711fec2020-11-22 23:52:50 -0500400// ConfigForAdditionalRun is a config object which is "reset" for another
401// bootstrap run. Only per-run data is reset. Data which needs to persist across
402// multiple runs in the same program execution is carried over (such as Bazel
403// context or environment deps).
Chris Parsonsf3c96ef2020-09-29 02:23:17 -0400404func ConfigForAdditionalRun(c Config) (Config, error) {
Lukacs T. Berki53b2f362021-04-12 14:04:24 +0200405 newConfig, err := NewConfig(c.srcDir, c.buildDir, c.moduleListFile, c.env)
Chris Parsonsf3c96ef2020-09-29 02:23:17 -0400406 if err != nil {
407 return Config{}, err
408 }
409 newConfig.BazelContext = c.BazelContext
410 newConfig.envDeps = c.envDeps
411 return newConfig, nil
412}
413
Jingwen Chenc711fec2020-11-22 23:52:50 -0500414// NewConfig creates a new Config object. The srcDir argument specifies the path
415// to the root source directory. It also loads the config file, if found.
Lukacs T. Berki53b2f362021-04-12 14:04:24 +0200416func NewConfig(srcDir, buildDir string, moduleListFile string, availableEnv map[string]string) (Config, error) {
Jingwen Chenc711fec2020-11-22 23:52:50 -0500417 // Make a config with default options.
Colin Cross9272ade2016-08-17 15:24:12 -0700418 config := &config{
Colin Cross9272ade2016-08-17 15:24:12 -0700419 ProductVariablesFileName: filepath.Join(buildDir, productVariablesFileName),
Dan Willemsen87b17d12015-07-14 00:39:06 -0700420
Lukacs T. Berki53b2f362021-04-12 14:04:24 +0200421 env: availableEnv,
Colin Cross6ccbc912017-10-10 23:07:38 -0700422
Colin Cross3b19f5d2019-09-17 14:45:31 -0700423 srcDir: srcDir,
424 buildDir: buildDir,
425 multilibConflicts: make(map[ArchType]bool),
Colin Cross98be1bb2019-12-13 20:41:13 -0800426
Chris Parsons8f232a22020-06-23 17:37:05 -0400427 moduleListFile: moduleListFile,
428 fs: pathtools.NewOsFs(absSrcDir),
Colin Cross68f55102015-03-25 14:43:57 -0700429 }
Colin Cross3f40fa42015-01-30 17:27:36 -0800430
Dan Willemsen00269f22017-07-06 16:59:48 -0700431 config.deviceConfig = &deviceConfig{
Colin Cross9272ade2016-08-17 15:24:12 -0700432 config: config,
433 }
434
Liz Kammer7941b302020-07-28 13:27:34 -0700435 // Soundness check of the build and source directories. This won't catch strange
436 // configurations with symlinks, but at least checks the obvious case.
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700437 absBuildDir, err := filepath.Abs(buildDir)
438 if err != nil {
439 return Config{}, err
440 }
441
442 absSrcDir, err := filepath.Abs(srcDir)
443 if err != nil {
444 return Config{}, err
445 }
446
447 if strings.HasPrefix(absSrcDir, absBuildDir) {
448 return Config{}, fmt.Errorf("Build dir must not contain source directory")
449 }
450
Colin Cross3f40fa42015-01-30 17:27:36 -0800451 // Load any configurable options from the configuration file
Colin Cross9272ade2016-08-17 15:24:12 -0700452 err = loadConfig(config)
Colin Cross3f40fa42015-01-30 17:27:36 -0800453 if err != nil {
Colin Crossc3c0a492015-04-10 15:43:55 -0700454 return Config{}, err
Colin Cross3f40fa42015-01-30 17:27:36 -0800455 }
456
Jingwen Chencda22c92020-11-23 00:22:30 -0500457 KatiEnabledMarkerFile := filepath.Join(buildDir, ".soong.kati_enabled")
458 if _, err := os.Stat(absolutePath(KatiEnabledMarkerFile)); err == nil {
459 config.katiEnabled = true
Dan Willemsen5ba07e82015-12-11 13:51:06 -0800460 }
461
Colin Cross0c66bc62021-07-20 09:47:41 -0700462 determineBuildOS(config)
463
Jingwen Chenc711fec2020-11-22 23:52:50 -0500464 // Sets up the map of target OSes to the finer grained compilation targets
465 // that are configured from the product variables.
Colin Crossa1ad8d12016-06-01 17:09:44 -0700466 targets, err := decodeTargetProductVariables(config)
Dan Willemsen218f6562015-07-08 18:13:11 -0700467 if err != nil {
468 return Config{}, err
469 }
470
Paul Duffin1356d8c2020-02-25 19:26:33 +0000471 // Make the CommonOS OsType available for all products.
472 targets[CommonOS] = []Target{commonTargetMap[CommonOS.Name]}
473
Dan Albert4098deb2016-10-19 14:04:41 -0700474 var archConfig []archConfig
Jingwen Chenc4d91bc2020-11-24 22:59:26 -0500475 if config.NdkAbis() {
Dan Albert4098deb2016-10-19 14:04:41 -0700476 archConfig = getNdkAbisConfig()
Martin Stjernholmc1ecc432019-11-15 15:00:31 +0000477 } else if config.AmlAbis() {
478 archConfig = getAmlAbisConfig()
Dan Albert4098deb2016-10-19 14:04:41 -0700479 }
480
481 if archConfig != nil {
Dan Willemsen01a3c252019-01-11 19:02:16 -0800482 androidTargets, err := decodeArchSettings(Android, archConfig)
Dan Willemsen322acaf2016-01-12 23:07:05 -0800483 if err != nil {
484 return Config{}, err
485 }
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700486 targets[Android] = androidTargets
Dan Willemsen322acaf2016-01-12 23:07:05 -0800487 }
488
Colin Cross3b19f5d2019-09-17 14:45:31 -0700489 multilib := make(map[string]bool)
490 for _, target := range targets[Android] {
491 if seen := multilib[target.Arch.ArchType.Multilib]; seen {
492 config.multilibConflicts[target.Arch.ArchType] = true
493 }
494 multilib[target.Arch.ArchType.Multilib] = true
495 }
496
Jingwen Chenc711fec2020-11-22 23:52:50 -0500497 // Map of OS to compilation targets.
Colin Crossa1ad8d12016-06-01 17:09:44 -0700498 config.Targets = targets
Jingwen Chenc711fec2020-11-22 23:52:50 -0500499
500 // Compilation targets for host tools.
Colin Cross0c66bc62021-07-20 09:47:41 -0700501 config.BuildOSTarget = config.Targets[config.BuildOS][0]
502 config.BuildOSCommonTarget = getCommonTargets(config.Targets[config.BuildOS])[0]
Jingwen Chenc711fec2020-11-22 23:52:50 -0500503
504 // Compilation targets for Android.
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700505 if len(config.Targets[Android]) > 0 {
506 config.AndroidCommonTarget = getCommonTargets(config.Targets[Android])[0]
Jaewoong Jung642916f2020-10-09 17:25:15 -0700507 config.AndroidFirstDeviceTarget = firstTarget(config.Targets[Android], "lib64", "lib32")[0]
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700508 }
Dan Willemsen218f6562015-07-08 18:13:11 -0700509
Chris Parsonsf3c96ef2020-09-29 02:23:17 -0400510 config.BazelContext, err = NewBazelContext(config)
Jingwen Chen12b4c272021-03-10 02:05:59 -0500511 config.bp2buildPackageConfig = bp2buildDefaultConfig
512 config.bp2buildModuleTypeConfig = make(map[string]bool)
Colin Cross3f40fa42015-01-30 17:27:36 -0800513
Jingwen Chenc711fec2020-11-22 23:52:50 -0500514 return Config{config}, err
515}
Colin Cross988414c2020-01-11 01:11:46 +0000516
Colin Cross98be1bb2019-12-13 20:41:13 -0800517// mockFileSystem replaces all reads with accesses to the provided map of
518// filenames to contents stored as a byte slice.
519func (c *config) mockFileSystem(bp string, fs map[string][]byte) {
520 mockFS := map[string][]byte{}
521
522 if _, exists := mockFS["Android.bp"]; !exists {
523 mockFS["Android.bp"] = []byte(bp)
524 }
525
526 for k, v := range fs {
527 mockFS[k] = v
528 }
529
530 // no module list file specified; find every file named Blueprints or Android.bp
531 pathsToParse := []string{}
532 for candidate := range mockFS {
533 base := filepath.Base(candidate)
534 if base == "Blueprints" || base == "Android.bp" {
535 pathsToParse = append(pathsToParse, candidate)
536 }
537 }
538 if len(pathsToParse) < 1 {
539 panic(fmt.Sprintf("No Blueprint or Android.bp files found in mock filesystem: %v\n", mockFS))
540 }
541 mockFS[blueprint.MockModuleListFile] = []byte(strings.Join(pathsToParse, "\n"))
542
543 c.fs = pathtools.MockFs(mockFS)
544 c.mockBpList = blueprint.MockModuleListFile
545}
546
Colin Crosse87040b2017-12-11 15:52:26 -0800547func (c *config) StopBefore() bootstrap.StopBefore {
548 return c.stopBefore
Dan Willemsen218f6562015-07-08 18:13:11 -0700549}
550
Jingwen Chenc711fec2020-11-22 23:52:50 -0500551// SetStopBefore configures soong_build to exit earlier at a specific point.
Colin Crosse87040b2017-12-11 15:52:26 -0800552func (c *config) SetStopBefore(stopBefore bootstrap.StopBefore) {
553 c.stopBefore = stopBefore
554}
555
Lukacs T. Berkid1e3f1f2021-03-16 08:55:23 +0100556func (c *config) SetAllowMissingDependencies() {
557 c.productVariables.Allow_missing_dependencies = proptools.BoolPtr(true)
558}
559
Colin Crosse87040b2017-12-11 15:52:26 -0800560var _ bootstrap.ConfigStopBefore = (*config)(nil)
561
Jingwen Chenc711fec2020-11-22 23:52:50 -0500562// BlueprintToolLocation returns the directory containing build system tools
563// from Blueprint, like soong_zip and merge_zips.
Dan Willemsenc2aa4a92016-05-26 15:13:03 -0700564func (c *config) BlueprintToolLocation() string {
565 return filepath.Join(c.buildDir, "host", c.PrebuiltOS(), "bin")
566}
567
Colin Crosse87040b2017-12-11 15:52:26 -0800568var _ bootstrap.ConfigBlueprintToolLocation = (*config)(nil)
569
Dan Willemsen60e62f02018-11-16 21:05:32 -0800570func (c *config) HostToolPath(ctx PathContext, tool string) Path {
571 return PathForOutput(ctx, "host", c.PrebuiltOS(), "bin", tool)
572}
573
Martin Stjernholm7260d062019-12-09 21:47:14 +0000574func (c *config) HostJNIToolPath(ctx PathContext, path string) Path {
575 ext := ".so"
576 if runtime.GOOS == "darwin" {
577 ext = ".dylib"
578 }
579 return PathForOutput(ctx, "host", c.PrebuiltOS(), "lib64", path+ext)
580}
581
582func (c *config) HostJavaToolPath(ctx PathContext, path string) Path {
583 return PathForOutput(ctx, "host", c.PrebuiltOS(), "framework", path)
584}
585
Jingwen Chenc711fec2020-11-22 23:52:50 -0500586// PrebuiltOS returns the name of the host OS used in prebuilts directories.
Colin Cross1332b002015-04-07 17:11:30 -0700587func (c *config) PrebuiltOS() string {
Colin Cross3f40fa42015-01-30 17:27:36 -0800588 switch runtime.GOOS {
589 case "linux":
590 return "linux-x86"
591 case "darwin":
592 return "darwin-x86"
593 default:
594 panic("Unknown GOOS")
595 }
596}
597
598// GoRoot returns the path to the root directory of the Go toolchain.
Colin Cross1332b002015-04-07 17:11:30 -0700599func (c *config) GoRoot() string {
Colin Cross3f40fa42015-01-30 17:27:36 -0800600 return fmt.Sprintf("%s/prebuilts/go/%s", c.srcDir, c.PrebuiltOS())
601}
602
Jingwen Chenc711fec2020-11-22 23:52:50 -0500603// PrebuiltBuildTool returns the path to a tool in the prebuilts directory containing
604// checked-in tools, like Kati, Ninja or Toybox, for the current host OS.
Dan Willemsen4e0aa232019-04-10 22:59:54 -0700605func (c *config) PrebuiltBuildTool(ctx PathContext, tool string) Path {
606 return PathForSource(ctx, "prebuilts/build-tools", c.PrebuiltOS(), "bin", tool)
607}
608
Jingwen Chenc711fec2020-11-22 23:52:50 -0500609// CpPreserveSymlinksFlags returns the host-specific flag for the cp(1) command
610// to preserve symlinks.
Colin Cross1332b002015-04-07 17:11:30 -0700611func (c *config) CpPreserveSymlinksFlags() string {
Colin Cross485e5722015-08-27 13:28:01 -0700612 switch runtime.GOOS {
Colin Cross3f40fa42015-01-30 17:27:36 -0800613 case "darwin":
614 return "-R"
615 case "linux":
616 return "-d"
617 default:
618 return ""
619 }
620}
Colin Cross68f55102015-03-25 14:43:57 -0700621
Colin Cross1332b002015-04-07 17:11:30 -0700622func (c *config) Getenv(key string) string {
Colin Cross68f55102015-03-25 14:43:57 -0700623 var val string
624 var exists bool
Colin Crossc1e86a32015-04-15 12:33:28 -0700625 c.envLock.Lock()
Colin Crossc0d58b42017-02-06 15:40:41 -0800626 defer c.envLock.Unlock()
627 if c.envDeps == nil {
628 c.envDeps = make(map[string]string)
629 }
Colin Cross68f55102015-03-25 14:43:57 -0700630 if val, exists = c.envDeps[key]; !exists {
Dan Willemsene7680ba2015-09-11 17:06:19 -0700631 if c.envFrozen {
632 panic("Cannot access new environment variables after envdeps are frozen")
633 }
Colin Cross6ccbc912017-10-10 23:07:38 -0700634 val, _ = c.env[key]
Colin Cross68f55102015-03-25 14:43:57 -0700635 c.envDeps[key] = val
636 }
637 return val
638}
639
Colin Cross99d7c232016-11-23 16:52:04 -0800640func (c *config) GetenvWithDefault(key string, defaultValue string) string {
641 ret := c.Getenv(key)
642 if ret == "" {
643 return defaultValue
644 }
645 return ret
646}
647
648func (c *config) IsEnvTrue(key string) bool {
649 value := c.Getenv(key)
650 return value == "1" || value == "y" || value == "yes" || value == "on" || value == "true"
651}
652
653func (c *config) IsEnvFalse(key string) bool {
654 value := c.Getenv(key)
655 return value == "0" || value == "n" || value == "no" || value == "off" || value == "false"
656}
657
Jingwen Chenc711fec2020-11-22 23:52:50 -0500658// EnvDeps returns the environment variables this build depends on. The first
659// call to this function blocks future reads from the environment.
Colin Cross1332b002015-04-07 17:11:30 -0700660func (c *config) EnvDeps() map[string]string {
Dan Willemsene7680ba2015-09-11 17:06:19 -0700661 c.envLock.Lock()
Colin Crossc0d58b42017-02-06 15:40:41 -0800662 defer c.envLock.Unlock()
Dan Willemsene7680ba2015-09-11 17:06:19 -0700663 c.envFrozen = true
Colin Cross68f55102015-03-25 14:43:57 -0700664 return c.envDeps
665}
Colin Cross35cec122015-04-02 14:37:16 -0700666
Jingwen Chencda22c92020-11-23 00:22:30 -0500667func (c *config) KatiEnabled() bool {
668 return c.katiEnabled
Dan Willemsen5ba07e82015-12-11 13:51:06 -0800669}
670
Nan Zhang581fd212018-01-10 16:06:12 -0800671func (c *config) BuildId() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800672 return String(c.productVariables.BuildId)
Nan Zhang581fd212018-01-10 16:06:12 -0800673}
674
Jingwen Chenc711fec2020-11-22 23:52:50 -0500675// BuildNumberFile returns the path to a text file containing metadata
676// representing the current build's number.
677//
678// Rules that want to reference the build number should read from this file
679// without depending on it. They will run whenever their other dependencies
680// require them to run and get the current build number. This ensures they don't
681// rebuild on every incremental build when the build number changes.
Colin Cross2a2e0db2020-02-21 16:55:46 -0800682func (c *config) BuildNumberFile(ctx PathContext) Path {
683 return PathForOutput(ctx, String(c.productVariables.BuildNumberFile))
Nan Zhang581fd212018-01-10 16:06:12 -0800684}
685
Jingwen Chenc711fec2020-11-22 23:52:50 -0500686// DeviceName returns the name of the current device target.
Colin Cross35cec122015-04-02 14:37:16 -0700687// TODO: take an AndroidModuleContext to select the device name for multi-device builds
Colin Cross1332b002015-04-07 17:11:30 -0700688func (c *config) DeviceName() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800689 return *c.productVariables.DeviceName
Colin Cross35cec122015-04-02 14:37:16 -0700690}
691
Anton Hansson53c88442019-03-18 15:53:16 +0000692func (c *config) DeviceResourceOverlays() []string {
693 return c.productVariables.DeviceResourceOverlays
694}
695
696func (c *config) ProductResourceOverlays() []string {
697 return c.productVariables.ProductResourceOverlays
Colin Cross30e076a2015-04-13 13:58:27 -0700698}
699
Colin Crossbfd347d2018-05-09 11:11:35 -0700700func (c *config) PlatformVersionName() string {
701 return String(c.productVariables.Platform_version_name)
702}
703
Dan Albert4f378d72020-07-23 17:32:15 -0700704func (c *config) PlatformSdkVersion() ApiLevel {
705 return uncheckedFinalApiLevel(*c.productVariables.Platform_sdk_version)
Colin Cross30e076a2015-04-13 13:58:27 -0700706}
707
Colin Crossd09b0b62018-04-18 11:06:47 -0700708func (c *config) PlatformSdkCodename() string {
709 return String(c.productVariables.Platform_sdk_codename)
710}
711
Colin Cross092c9da2019-04-02 22:56:43 -0700712func (c *config) PlatformSecurityPatch() string {
713 return String(c.productVariables.Platform_security_patch)
714}
715
716func (c *config) PlatformPreviewSdkVersion() string {
717 return String(c.productVariables.Platform_preview_sdk_version)
718}
719
720func (c *config) PlatformMinSupportedTargetSdkVersion() string {
721 return String(c.productVariables.Platform_min_supported_target_sdk_version)
722}
723
724func (c *config) PlatformBaseOS() string {
725 return String(c.productVariables.Platform_base_os)
726}
727
Dan Albert1a246272020-07-06 14:49:35 -0700728func (c *config) MinSupportedSdkVersion() ApiLevel {
729 return uncheckedFinalApiLevel(16)
730}
731
732func (c *config) FinalApiLevels() []ApiLevel {
733 var levels []ApiLevel
Dan Albert4f378d72020-07-23 17:32:15 -0700734 for i := 1; i <= c.PlatformSdkVersion().FinalOrFutureInt(); i++ {
Dan Albert1a246272020-07-06 14:49:35 -0700735 levels = append(levels, uncheckedFinalApiLevel(i))
736 }
737 return levels
738}
739
740func (c *config) PreviewApiLevels() []ApiLevel {
741 var levels []ApiLevel
742 for i, codename := range c.PlatformVersionActiveCodenames() {
743 levels = append(levels, ApiLevel{
744 value: codename,
745 number: i,
746 isPreview: true,
747 })
748 }
749 return levels
750}
751
752func (c *config) AllSupportedApiLevels() []ApiLevel {
753 var levels []ApiLevel
754 levels = append(levels, c.FinalApiLevels()...)
755 return append(levels, c.PreviewApiLevels()...)
Dan Albertf5415d72017-08-17 16:19:59 -0700756}
757
Jingwen Chenc711fec2020-11-22 23:52:50 -0500758// DefaultAppTargetSdk returns the API level that platform apps are targeting.
759// This converts a codename to the exact ApiLevel it represents.
Dan Albert4f378d72020-07-23 17:32:15 -0700760func (c *config) DefaultAppTargetSdk(ctx EarlyModuleContext) ApiLevel {
Colin Crossd09b0b62018-04-18 11:06:47 -0700761 if Bool(c.productVariables.Platform_sdk_final) {
762 return c.PlatformSdkVersion()
Colin Crossd09b0b62018-04-18 11:06:47 -0700763 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500764 codename := c.PlatformSdkCodename()
765 if codename == "" {
766 return NoneApiLevel
767 }
768 if codename == "REL" {
769 panic("Platform_sdk_codename should not be REL when Platform_sdk_final is true")
770 }
771 return ApiLevelOrPanic(ctx, codename)
Colin Crossd09b0b62018-04-18 11:06:47 -0700772}
773
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800774func (c *config) AppsDefaultVersionName() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800775 return String(c.productVariables.AppsDefaultVersionName)
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800776}
777
Dan Albert31384de2017-07-28 12:39:46 -0700778// Codenames that are active in the current lunch target.
779func (c *config) PlatformVersionActiveCodenames() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800780 return c.productVariables.Platform_version_active_codenames
Dan Albert31384de2017-07-28 12:39:46 -0700781}
782
Colin Crossface4e42017-10-30 17:32:15 -0700783func (c *config) ProductAAPTConfig() []string {
Colin Crossa74ca042019-01-31 14:31:51 -0800784 return c.productVariables.AAPTConfig
Colin Cross30e076a2015-04-13 13:58:27 -0700785}
786
Colin Crossface4e42017-10-30 17:32:15 -0700787func (c *config) ProductAAPTPreferredConfig() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800788 return String(c.productVariables.AAPTPreferredConfig)
Colin Cross30e076a2015-04-13 13:58:27 -0700789}
790
Colin Crossface4e42017-10-30 17:32:15 -0700791func (c *config) ProductAAPTCharacteristics() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800792 return String(c.productVariables.AAPTCharacteristics)
Colin Crossface4e42017-10-30 17:32:15 -0700793}
794
795func (c *config) ProductAAPTPrebuiltDPI() []string {
Colin Crossa74ca042019-01-31 14:31:51 -0800796 return c.productVariables.AAPTPrebuiltDPI
Colin Cross30e076a2015-04-13 13:58:27 -0700797}
798
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700799func (c *config) DefaultAppCertificateDir(ctx PathContext) SourcePath {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800800 defaultCert := String(c.productVariables.DefaultAppCertificate)
Colin Cross61ae0b72017-12-01 17:16:02 -0800801 if defaultCert != "" {
802 return PathForSource(ctx, filepath.Dir(defaultCert))
Colin Cross61ae0b72017-12-01 17:16:02 -0800803 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500804 return PathForSource(ctx, "build/make/target/product/security")
Colin Cross30e076a2015-04-13 13:58:27 -0700805}
806
Colin Crosse1731a52017-12-14 11:22:55 -0800807func (c *config) DefaultAppCertificate(ctx PathContext) (pem, key SourcePath) {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800808 defaultCert := String(c.productVariables.DefaultAppCertificate)
Colin Cross61ae0b72017-12-01 17:16:02 -0800809 if defaultCert != "" {
Colin Crosse1731a52017-12-14 11:22:55 -0800810 return PathForSource(ctx, defaultCert+".x509.pem"), PathForSource(ctx, defaultCert+".pk8")
Colin Cross61ae0b72017-12-01 17:16:02 -0800811 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500812 defaultDir := c.DefaultAppCertificateDir(ctx)
813 return defaultDir.Join(ctx, "testkey.x509.pem"), defaultDir.Join(ctx, "testkey.pk8")
Colin Cross30e076a2015-04-13 13:58:27 -0700814}
Colin Cross6ff51382015-12-17 16:39:19 -0800815
Jiyong Park9335a262018-12-24 11:31:58 +0900816func (c *config) ApexKeyDir(ctx ModuleContext) SourcePath {
817 // TODO(b/121224311): define another variable such as TARGET_APEX_KEY_OVERRIDE
818 defaultCert := String(c.productVariables.DefaultAppCertificate)
Dan Willemsen412160e2019-04-09 21:36:26 -0700819 if defaultCert == "" || filepath.Dir(defaultCert) == "build/make/target/product/security" {
Jiyong Park9335a262018-12-24 11:31:58 +0900820 // When defaultCert is unset or is set to the testkeys path, use the APEX keys
821 // that is under the module dir
Colin Cross07e51612019-03-05 12:46:40 -0800822 return pathForModuleSrc(ctx)
Jiyong Park9335a262018-12-24 11:31:58 +0900823 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500824 // If not, APEX keys are under the specified directory
825 return PathForSource(ctx, filepath.Dir(defaultCert))
Jiyong Park9335a262018-12-24 11:31:58 +0900826}
827
Jingwen Chenc711fec2020-11-22 23:52:50 -0500828// AllowMissingDependencies configures Blueprint/Soong to not fail when modules
829// are configured to depend on non-existent modules. Note that this does not
830// affect missing input dependencies at the Ninja level.
Colin Cross6ff51382015-12-17 16:39:19 -0800831func (c *config) AllowMissingDependencies() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800832 return Bool(c.productVariables.Allow_missing_dependencies)
Colin Cross6ff51382015-12-17 16:39:19 -0800833}
Dan Willemsen322acaf2016-01-12 23:07:05 -0800834
Jeongik Cha816a23a2020-07-08 01:09:23 +0900835// Returns true if a full platform source tree cannot be assumed.
Colin Crossfc3674a2017-09-18 17:41:52 -0700836func (c *config) UnbundledBuild() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800837 return Bool(c.productVariables.Unbundled_build)
Colin Crossfc3674a2017-09-18 17:41:52 -0700838}
839
Martin Stjernholmfd9eb4b2020-06-17 01:13:15 +0100840// Returns true if building apps that aren't bundled with the platform.
841// UnbundledBuild() is always true when this is true.
842func (c *config) UnbundledBuildApps() bool {
843 return Bool(c.productVariables.Unbundled_build_apps)
844}
845
Jeongik Cha4b073cd2021-06-08 11:35:00 +0900846// Returns true if building image that aren't bundled with the platform.
847// UnbundledBuild() is always true when this is true.
848func (c *config) UnbundledBuildImage() bool {
849 return Bool(c.productVariables.Unbundled_build_image)
850}
851
Jeongik Cha816a23a2020-07-08 01:09:23 +0900852// Returns true if building modules against prebuilt SDKs.
853func (c *config) AlwaysUsePrebuiltSdks() bool {
854 return Bool(c.productVariables.Always_use_prebuilt_sdks)
Colin Cross1f367bf2018-12-18 22:46:24 -0800855}
856
Paul Duffin9a89a2a2020-10-28 19:20:06 +0000857// Returns true if the boot jars check should be skipped.
858func (c *config) SkipBootJarsCheck() bool {
859 return Bool(c.productVariables.Skip_boot_jars_check)
860}
861
Colin Cross126a25c2017-10-31 13:55:34 -0700862func (c *config) MinimizeJavaDebugInfo() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800863 return Bool(c.productVariables.MinimizeJavaDebugInfo) && !Bool(c.productVariables.Eng)
Colin Cross126a25c2017-10-31 13:55:34 -0700864}
865
Colin Crossed064c02018-09-05 16:28:13 -0700866func (c *config) Debuggable() bool {
867 return Bool(c.productVariables.Debuggable)
868}
869
Jaewoong Jung1d6eb682018-11-29 15:08:44 -0800870func (c *config) Eng() bool {
871 return Bool(c.productVariables.Eng)
872}
873
Jiyong Park8d52f862018-07-07 18:02:07 +0900874func (c *config) DevicePrimaryArchType() ArchType {
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700875 return c.Targets[Android][0].Arch.ArchType
Jiyong Park8d52f862018-07-07 18:02:07 +0900876}
877
Colin Cross16b23492016-01-06 14:41:07 -0800878func (c *config) SanitizeHost() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800879 return append([]string(nil), c.productVariables.SanitizeHost...)
Colin Cross16b23492016-01-06 14:41:07 -0800880}
881
882func (c *config) SanitizeDevice() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800883 return append([]string(nil), c.productVariables.SanitizeDevice...)
Colin Cross23ae82a2016-11-02 14:34:39 -0700884}
885
Ivan Lozano0c3a1ef2017-06-28 09:10:48 -0700886func (c *config) SanitizeDeviceDiag() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800887 return append([]string(nil), c.productVariables.SanitizeDeviceDiag...)
Ivan Lozano0c3a1ef2017-06-28 09:10:48 -0700888}
889
Colin Cross23ae82a2016-11-02 14:34:39 -0700890func (c *config) SanitizeDeviceArch() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800891 return append([]string(nil), c.productVariables.SanitizeDeviceArch...)
Colin Cross16b23492016-01-06 14:41:07 -0800892}
Colin Crossa1ad8d12016-06-01 17:09:44 -0700893
Vishwath Mohan1b017a72017-01-19 13:54:55 -0800894func (c *config) EnableCFI() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800895 if c.productVariables.EnableCFI == nil {
Vishwath Mohanc32c3eb2017-01-24 14:20:54 -0800896 return true
Vishwath Mohanc32c3eb2017-01-24 14:20:54 -0800897 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500898 return *c.productVariables.EnableCFI
Vishwath Mohan1b017a72017-01-19 13:54:55 -0800899}
900
Kostya Kortchinskyd5275c82019-02-01 08:42:56 -0800901func (c *config) DisableScudo() bool {
902 return Bool(c.productVariables.DisableScudo)
903}
904
Colin Crossa1ad8d12016-06-01 17:09:44 -0700905func (c *config) Android64() bool {
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700906 for _, t := range c.Targets[Android] {
Colin Crossa1ad8d12016-06-01 17:09:44 -0700907 if t.Arch.ArchType.Multilib == "lib64" {
908 return true
909 }
910 }
911
912 return false
913}
Colin Cross9272ade2016-08-17 15:24:12 -0700914
Colin Cross9d45bb72016-08-29 16:14:13 -0700915func (c *config) UseGoma() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800916 return Bool(c.productVariables.UseGoma)
Colin Cross9d45bb72016-08-29 16:14:13 -0700917}
918
Ramy Medhatbbf25672019-07-17 12:30:04 +0000919func (c *config) UseRBE() bool {
920 return Bool(c.productVariables.UseRBE)
921}
922
Ramy Medhat8ea054a2020-01-27 14:19:44 -0500923func (c *config) UseRBEJAVAC() bool {
924 return Bool(c.productVariables.UseRBEJAVAC)
925}
926
927func (c *config) UseRBER8() bool {
928 return Bool(c.productVariables.UseRBER8)
929}
930
931func (c *config) UseRBED8() bool {
932 return Bool(c.productVariables.UseRBED8)
933}
934
Colin Cross8b8bec32019-11-15 13:18:43 -0800935func (c *config) UseRemoteBuild() bool {
936 return c.UseGoma() || c.UseRBE()
937}
938
Colin Cross66548102018-06-19 22:47:35 -0700939func (c *config) RunErrorProne() bool {
940 return c.IsEnvTrue("RUN_ERROR_PRONE")
941}
942
Jingwen Chenc711fec2020-11-22 23:52:50 -0500943// XrefCorpusName returns the Kythe cross-reference corpus name.
Sasha Smundak2a4549e2018-11-05 16:49:08 -0800944func (c *config) XrefCorpusName() string {
945 return c.Getenv("XREF_CORPUS")
946}
947
Jingwen Chenc711fec2020-11-22 23:52:50 -0500948// XrefCuEncoding returns the compilation unit encoding to use for Kythe code
949// xrefs. Can be 'json' (default), 'proto' or 'all'.
Sasha Smundak6c2d4f92020-01-09 17:34:23 -0800950func (c *config) XrefCuEncoding() string {
951 if enc := c.Getenv("KYTHE_KZIP_ENCODING"); enc != "" {
952 return enc
953 }
954 return "json"
955}
956
Sasha Smundakb0addaf2021-02-16 10:39:40 -0800957// XrefCuJavaSourceMax returns the maximum number of the Java source files
958// in a single compilation unit
959const xrefJavaSourceFileMaxDefault = "1000"
960
961func (c Config) XrefCuJavaSourceMax() string {
962 v := c.Getenv("KYTHE_JAVA_SOURCE_BATCH_SIZE")
963 if v == "" {
964 return xrefJavaSourceFileMaxDefault
965 }
966 if _, err := strconv.ParseUint(v, 0, 0); err != nil {
967 fmt.Fprintf(os.Stderr,
968 "bad KYTHE_JAVA_SOURCE_BATCH_SIZE value: %s, will use %s",
969 err, xrefJavaSourceFileMaxDefault)
970 return xrefJavaSourceFileMaxDefault
971 }
972 return v
973
974}
975
Sasha Smundak2a4549e2018-11-05 16:49:08 -0800976func (c *config) EmitXrefRules() bool {
977 return c.XrefCorpusName() != ""
978}
979
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700980func (c *config) ClangTidy() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800981 return Bool(c.productVariables.ClangTidy)
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700982}
983
984func (c *config) TidyChecks() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800985 if c.productVariables.TidyChecks == nil {
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700986 return ""
987 }
Dan Willemsen45133ac2018-03-09 21:22:06 -0800988 return *c.productVariables.TidyChecks
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700989}
990
Colin Cross0f4e0d62016-07-27 10:56:55 -0700991func (c *config) LibartImgHostBaseAddress() string {
992 return "0x60000000"
993}
994
995func (c *config) LibartImgDeviceBaseAddress() string {
Elliott Hughesda3a0712020-03-06 16:55:28 -0800996 return "0x70000000"
Colin Cross0f4e0d62016-07-27 10:56:55 -0700997}
998
Hiroshi Yamauchie2a10632016-12-19 13:44:41 -0800999func (c *config) ArtUseReadBarrier() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001000 return Bool(c.productVariables.ArtUseReadBarrier)
Hiroshi Yamauchie2a10632016-12-19 13:44:41 -08001001}
1002
Jingwen Chenc711fec2020-11-22 23:52:50 -05001003// Enforce Runtime Resource Overlays for a module. RROs supersede static RROs,
1004// but some modules still depend on it.
1005//
1006// More info: https://source.android.com/devices/architecture/rros
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001007func (c *config) EnforceRROForModule(name string) bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001008 enforceList := c.productVariables.EnforceRROTargets
Jeongik Chacee5ba92021-02-19 12:11:51 +09001009
Roland Levillainf6cc2612020-07-09 16:58:14 +01001010 if len(enforceList) > 0 {
Yo Chiang4ebd06a2019-10-01 13:13:41 +08001011 if InList("*", enforceList) {
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001012 return true
1013 }
Colin Crossa74ca042019-01-31 14:31:51 -08001014 return InList(name, enforceList)
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001015 }
1016 return false
1017}
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001018func (c *config) EnforceRROExcludedOverlay(path string) bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001019 excluded := c.productVariables.EnforceRROExcludedOverlays
Roland Levillainf6cc2612020-07-09 16:58:14 +01001020 if len(excluded) > 0 {
Jaewoong Jung3aff5782020-02-11 07:54:35 -08001021 return HasAnyPrefix(path, excluded)
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001022 }
1023 return false
1024}
1025
1026func (c *config) ExportedNamespaces() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001027 return append([]string(nil), c.productVariables.NamespacesToExport...)
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001028}
1029
1030func (c *config) HostStaticBinaries() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001031 return Bool(c.productVariables.HostStaticBinaries)
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001032}
1033
Colin Cross5a0dcd52018-10-05 14:20:06 -07001034func (c *config) UncompressPrivAppDex() bool {
1035 return Bool(c.productVariables.UncompressPrivAppDex)
1036}
1037
1038func (c *config) ModulesLoadedByPrivilegedModules() []string {
1039 return c.productVariables.ModulesLoadedByPrivilegedModules
1040}
1041
Jingwen Chenc711fec2020-11-22 23:52:50 -05001042// DexpreoptGlobalConfigPath returns the path to the dexpreopt.config file in
1043// the output directory, if it was created during the product configuration
1044// phase by Kati.
Jingwen Chenebb0b572020-11-02 00:24:57 -05001045func (c *config) DexpreoptGlobalConfigPath(ctx PathContext) OptionalPath {
Colin Cross988414c2020-01-11 01:11:46 +00001046 if c.productVariables.DexpreoptGlobalConfig == nil {
Jingwen Chenebb0b572020-11-02 00:24:57 -05001047 return OptionalPathForPath(nil)
1048 }
1049 return OptionalPathForPath(
1050 pathForBuildToolDep(ctx, *c.productVariables.DexpreoptGlobalConfig))
1051}
1052
Jingwen Chenc711fec2020-11-22 23:52:50 -05001053// DexpreoptGlobalConfig returns the raw byte contents of the dexpreopt global
1054// configuration. Since the configuration file was created by Kati during
1055// product configuration (externally of soong_build), it's not tracked, so we
1056// also manually add a Ninja file dependency on the configuration file to the
1057// rule that creates the main build.ninja file. This ensures that build.ninja is
1058// regenerated correctly if dexpreopt.config changes.
Jingwen Chenebb0b572020-11-02 00:24:57 -05001059func (c *config) DexpreoptGlobalConfig(ctx PathContext) ([]byte, error) {
1060 path := c.DexpreoptGlobalConfigPath(ctx)
1061 if !path.Valid() {
Colin Cross988414c2020-01-11 01:11:46 +00001062 return nil, nil
1063 }
Jingwen Chenebb0b572020-11-02 00:24:57 -05001064 ctx.AddNinjaFileDeps(path.String())
1065 return ioutil.ReadFile(absolutePath(path.String()))
Colin Cross43f08db2018-11-12 10:13:39 -08001066}
1067
Inseob Kim7b85eeb2021-03-23 20:52:24 +09001068func (c *deviceConfig) WithDexpreopt() bool {
1069 return c.config.productVariables.WithDexpreopt
1070}
1071
David Brazdil91b4e3e2019-01-23 21:04:05 +00001072func (c *config) FrameworksBaseDirExists(ctx PathContext) bool {
Colin Cross5a756a62021-03-16 16:34:46 -07001073 return ExistentPathForSource(ctx, "frameworks", "base", "Android.bp").Valid()
David Brazdil91b4e3e2019-01-23 21:04:05 +00001074}
1075
Inseob Kimae553032019-05-14 18:52:49 +09001076func (c *config) VndkSnapshotBuildArtifacts() bool {
1077 return Bool(c.productVariables.VndkSnapshotBuildArtifacts)
1078}
1079
Colin Cross3b19f5d2019-09-17 14:45:31 -07001080func (c *config) HasMultilibConflict(arch ArchType) bool {
1081 return c.multilibConflicts[arch]
1082}
1083
Bill Peckhambae47492021-01-08 09:34:44 -08001084func (c *config) PrebuiltHiddenApiDir(ctx PathContext) string {
1085 return String(c.productVariables.PrebuiltHiddenApiDir)
1086}
1087
Colin Cross9272ade2016-08-17 15:24:12 -07001088func (c *deviceConfig) Arches() []Arch {
1089 var arches []Arch
Dan Willemsen0ef639b2018-10-10 17:02:29 -07001090 for _, target := range c.config.Targets[Android] {
Colin Cross9272ade2016-08-17 15:24:12 -07001091 arches = append(arches, target.Arch)
1092 }
1093 return arches
1094}
Dan Willemsend2ede872016-11-18 14:54:24 -08001095
Jayant Chowdhary34ce67d2018-03-08 11:00:50 -08001096func (c *deviceConfig) BinderBitness() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001097 is32BitBinder := c.config.productVariables.Binder32bit
Jayant Chowdhary34ce67d2018-03-08 11:00:50 -08001098 if is32BitBinder != nil && *is32BitBinder {
1099 return "32"
1100 }
1101 return "64"
1102}
1103
Dan Willemsen4353bc42016-12-05 17:16:02 -08001104func (c *deviceConfig) VendorPath() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001105 if c.config.productVariables.VendorPath != nil {
1106 return *c.config.productVariables.VendorPath
Dan Willemsen4353bc42016-12-05 17:16:02 -08001107 }
1108 return "vendor"
1109}
1110
Justin Yun71549282017-11-17 12:10:28 +09001111func (c *deviceConfig) VndkVersion() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001112 return String(c.config.productVariables.DeviceVndkVersion)
Justin Yun71549282017-11-17 12:10:28 +09001113}
1114
Jose Galmes6f843bc2020-12-11 13:36:29 -08001115func (c *deviceConfig) RecoverySnapshotVersion() string {
1116 return String(c.config.productVariables.RecoverySnapshotVersion)
1117}
1118
Jeongik Cha219141c2020-08-06 23:00:37 +09001119func (c *deviceConfig) CurrentApiLevelForVendorModules() string {
1120 return StringDefault(c.config.productVariables.DeviceCurrentApiLevelForVendorModules, "current")
1121}
1122
Justin Yun8fe12122017-12-07 17:18:15 +09001123func (c *deviceConfig) PlatformVndkVersion() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001124 return String(c.config.productVariables.Platform_vndk_version)
Justin Yun8fe12122017-12-07 17:18:15 +09001125}
1126
Justin Yun5f7f7e82019-11-18 19:52:14 +09001127func (c *deviceConfig) ProductVndkVersion() string {
1128 return String(c.config.productVariables.ProductVndkVersion)
1129}
1130
Justin Yun71549282017-11-17 12:10:28 +09001131func (c *deviceConfig) ExtraVndkVersions() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001132 return c.config.productVariables.ExtraVndkVersions
Dan Willemsend2ede872016-11-18 14:54:24 -08001133}
Jack He8cc71432016-12-08 15:45:07 -08001134
Vic Yangefd249e2018-11-12 20:19:56 -08001135func (c *deviceConfig) VndkUseCoreVariant() bool {
1136 return Bool(c.config.productVariables.VndkUseCoreVariant)
1137}
1138
Jiyong Park1a5d7b12018-01-15 15:05:10 +09001139func (c *deviceConfig) SystemSdkVersions() []string {
Colin Crossa74ca042019-01-31 14:31:51 -08001140 return c.config.productVariables.DeviceSystemSdkVersions
Jiyong Park1a5d7b12018-01-15 15:05:10 +09001141}
1142
1143func (c *deviceConfig) PlatformSystemSdkVersions() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001144 return c.config.productVariables.Platform_systemsdk_versions
Jiyong Park1a5d7b12018-01-15 15:05:10 +09001145}
1146
Jiyong Park2db76922017-11-08 16:03:48 +09001147func (c *deviceConfig) OdmPath() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001148 if c.config.productVariables.OdmPath != nil {
1149 return *c.config.productVariables.OdmPath
Jiyong Park2db76922017-11-08 16:03:48 +09001150 }
1151 return "odm"
1152}
1153
Jaekyun Seok5cfbfbb2018-01-10 19:00:15 +09001154func (c *deviceConfig) ProductPath() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001155 if c.config.productVariables.ProductPath != nil {
1156 return *c.config.productVariables.ProductPath
Jiyong Park2db76922017-11-08 16:03:48 +09001157 }
Jaekyun Seok5cfbfbb2018-01-10 19:00:15 +09001158 return "product"
Jiyong Park2db76922017-11-08 16:03:48 +09001159}
1160
Justin Yund5f6c822019-06-25 16:47:17 +09001161func (c *deviceConfig) SystemExtPath() string {
1162 if c.config.productVariables.SystemExtPath != nil {
1163 return *c.config.productVariables.SystemExtPath
Dario Frenifd05a742018-05-29 13:28:54 +01001164 }
Justin Yund5f6c822019-06-25 16:47:17 +09001165 return "system_ext"
Dario Frenifd05a742018-05-29 13:28:54 +01001166}
1167
Jack He8cc71432016-12-08 15:45:07 -08001168func (c *deviceConfig) BtConfigIncludeDir() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001169 return String(c.config.productVariables.BtConfigIncludeDir)
Jack He8cc71432016-12-08 15:45:07 -08001170}
Dan Willemsen581341d2017-02-09 16:16:31 -08001171
Jiyong Parkd773eb32017-07-03 13:18:12 +09001172func (c *deviceConfig) DeviceKernelHeaderDirs() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001173 return c.config.productVariables.DeviceKernelHeaders
Jiyong Parkd773eb32017-07-03 13:18:12 +09001174}
1175
Yi Kongceb5b762020-03-20 15:22:27 +08001176func (c *deviceConfig) SamplingPGO() bool {
1177 return Bool(c.config.productVariables.SamplingPGO)
1178}
1179
Roland Levillainada12702020-06-09 13:07:36 +01001180// JavaCoverageEnabledForPath returns whether Java code coverage is enabled for
1181// path. Coverage is enabled by default when the product variable
1182// JavaCoveragePaths is empty. If JavaCoveragePaths is not empty, coverage is
1183// enabled for any path which is part of this variable (and not part of the
1184// JavaCoverageExcludePaths product variable). Value "*" in JavaCoveragePaths
1185// represents any path.
1186func (c *deviceConfig) JavaCoverageEnabledForPath(path string) bool {
1187 coverage := false
Chris Gross2f748692020-06-24 20:36:59 +00001188 if len(c.config.productVariables.JavaCoveragePaths) == 0 ||
Roland Levillainada12702020-06-09 13:07:36 +01001189 InList("*", c.config.productVariables.JavaCoveragePaths) ||
1190 HasAnyPrefix(path, c.config.productVariables.JavaCoveragePaths) {
1191 coverage = true
1192 }
Roland Levillainf6cc2612020-07-09 16:58:14 +01001193 if coverage && len(c.config.productVariables.JavaCoverageExcludePaths) > 0 {
Roland Levillainada12702020-06-09 13:07:36 +01001194 if HasAnyPrefix(path, c.config.productVariables.JavaCoverageExcludePaths) {
1195 coverage = false
1196 }
1197 }
1198 return coverage
1199}
1200
Colin Cross1a6acd42020-06-16 17:51:46 -07001201// Returns true if gcov or clang coverage is enabled.
Dan Willemsen581341d2017-02-09 16:16:31 -08001202func (c *deviceConfig) NativeCoverageEnabled() bool {
Colin Cross1a6acd42020-06-16 17:51:46 -07001203 return Bool(c.config.productVariables.GcovCoverage) ||
1204 Bool(c.config.productVariables.ClangCoverage)
Dan Willemsen581341d2017-02-09 16:16:31 -08001205}
1206
Oliver Nguyen1382ab62019-12-06 15:22:41 -08001207func (c *deviceConfig) ClangCoverageEnabled() bool {
1208 return Bool(c.config.productVariables.ClangCoverage)
1209}
1210
Colin Cross1a6acd42020-06-16 17:51:46 -07001211func (c *deviceConfig) GcovCoverageEnabled() bool {
1212 return Bool(c.config.productVariables.GcovCoverage)
1213}
1214
Roland Levillain4f5297b2020-06-09 12:44:06 +01001215// NativeCoverageEnabledForPath returns whether (GCOV- or Clang-based) native
1216// code coverage is enabled for path. By default, coverage is not enabled for a
1217// given path unless it is part of the NativeCoveragePaths product variable (and
1218// not part of the NativeCoverageExcludePaths product variable). Value "*" in
1219// NativeCoveragePaths represents any path.
1220func (c *deviceConfig) NativeCoverageEnabledForPath(path string) bool {
Ryan Campbell469a18a2017-02-27 09:01:54 -08001221 coverage := false
Roland Levillainf6cc2612020-07-09 16:58:14 +01001222 if len(c.config.productVariables.NativeCoveragePaths) > 0 {
Roland Levillain4f5297b2020-06-09 12:44:06 +01001223 if InList("*", c.config.productVariables.NativeCoveragePaths) || HasAnyPrefix(path, c.config.productVariables.NativeCoveragePaths) {
Ivan Lozano5f595532017-07-13 14:46:05 -07001224 coverage = true
Dan Willemsen581341d2017-02-09 16:16:31 -08001225 }
1226 }
Roland Levillainf6cc2612020-07-09 16:58:14 +01001227 if coverage && len(c.config.productVariables.NativeCoverageExcludePaths) > 0 {
Roland Levillain4f5297b2020-06-09 12:44:06 +01001228 if HasAnyPrefix(path, c.config.productVariables.NativeCoverageExcludePaths) {
Ivan Lozano5f595532017-07-13 14:46:05 -07001229 coverage = false
Ryan Campbell469a18a2017-02-27 09:01:54 -08001230 }
1231 }
1232 return coverage
Dan Willemsen581341d2017-02-09 16:16:31 -08001233}
Ivan Lozano5f595532017-07-13 14:46:05 -07001234
Pirama Arumuga Nainar49540802018-01-29 23:11:42 -08001235func (c *deviceConfig) PgoAdditionalProfileDirs() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001236 return c.config.productVariables.PgoAdditionalProfileDirs
Pirama Arumuga Nainar49540802018-01-29 23:11:42 -08001237}
1238
Tri Vo35a51432018-03-25 20:00:00 -07001239func (c *deviceConfig) VendorSepolicyDirs() []string {
1240 return c.config.productVariables.BoardVendorSepolicyDirs
1241}
1242
1243func (c *deviceConfig) OdmSepolicyDirs() []string {
1244 return c.config.productVariables.BoardOdmSepolicyDirs
1245}
1246
Felixa20a8752020-05-17 18:28:35 +02001247func (c *deviceConfig) SystemExtPublicSepolicyDirs() []string {
1248 return c.config.productVariables.SystemExtPublicSepolicyDirs
Tri Vo35a51432018-03-25 20:00:00 -07001249}
1250
Felixa20a8752020-05-17 18:28:35 +02001251func (c *deviceConfig) SystemExtPrivateSepolicyDirs() []string {
1252 return c.config.productVariables.SystemExtPrivateSepolicyDirs
Tri Vo35a51432018-03-25 20:00:00 -07001253}
1254
Inseob Kim0866b002019-04-15 20:21:29 +09001255func (c *deviceConfig) SepolicyM4Defs() []string {
1256 return c.config.productVariables.BoardSepolicyM4Defs
1257}
1258
Jiyong Park7f67f482019-01-05 12:57:48 +09001259func (c *deviceConfig) OverrideManifestPackageNameFor(name string) (manifestName string, overridden bool) {
Jaewoong Jung2ad817c2019-01-18 14:27:16 -08001260 return findOverrideValue(c.config.productVariables.ManifestPackageNameOverrides, name,
1261 "invalid override rule %q in PRODUCT_MANIFEST_PACKAGE_NAME_OVERRIDES should be <module_name>:<manifest_name>")
1262}
1263
1264func (c *deviceConfig) OverrideCertificateFor(name string) (certificatePath string, overridden bool) {
Jaewoong Jungacb6db32019-02-28 16:22:30 +00001265 return findOverrideValue(c.config.productVariables.CertificateOverrides, name,
Jaewoong Jung2ad817c2019-01-18 14:27:16 -08001266 "invalid override rule %q in PRODUCT_CERTIFICATE_OVERRIDES should be <module_name>:<certificate_module_name>")
1267}
1268
Jaewoong Jung9d22a912019-01-23 16:27:47 -08001269func (c *deviceConfig) OverridePackageNameFor(name string) string {
1270 newName, overridden := findOverrideValue(
1271 c.config.productVariables.PackageNameOverrides,
1272 name,
1273 "invalid override rule %q in PRODUCT_PACKAGE_NAME_OVERRIDES should be <module_name>:<package_name>")
1274 if overridden {
1275 return newName
1276 }
1277 return name
1278}
1279
Jaewoong Jung2ad817c2019-01-18 14:27:16 -08001280func findOverrideValue(overrides []string, name string, errorMsg string) (newValue string, overridden bool) {
Jiyong Park7f67f482019-01-05 12:57:48 +09001281 if overrides == nil || len(overrides) == 0 {
1282 return "", false
1283 }
1284 for _, o := range overrides {
1285 split := strings.Split(o, ":")
1286 if len(split) != 2 {
1287 // This shouldn't happen as this is first checked in make, but just in case.
Jaewoong Jung2ad817c2019-01-18 14:27:16 -08001288 panic(fmt.Errorf(errorMsg, o))
Jiyong Park7f67f482019-01-05 12:57:48 +09001289 }
1290 if matchPattern(split[0], name) {
1291 return substPattern(split[0], split[1], name), true
1292 }
1293 }
1294 return "", false
1295}
1296
Ivan Lozano5f595532017-07-13 14:46:05 -07001297func (c *config) IntegerOverflowDisabledForPath(path string) bool {
Roland Levillainf6cc2612020-07-09 16:58:14 +01001298 if len(c.productVariables.IntegerOverflowExcludePaths) == 0 {
Ivan Lozano5f595532017-07-13 14:46:05 -07001299 return false
1300 }
Jaewoong Jung3aff5782020-02-11 07:54:35 -08001301 return HasAnyPrefix(path, c.productVariables.IntegerOverflowExcludePaths)
Ivan Lozano5f595532017-07-13 14:46:05 -07001302}
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001303
1304func (c *config) CFIDisabledForPath(path string) bool {
Roland Levillainf6cc2612020-07-09 16:58:14 +01001305 if len(c.productVariables.CFIExcludePaths) == 0 {
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001306 return false
1307 }
Jaewoong Jung3aff5782020-02-11 07:54:35 -08001308 return HasAnyPrefix(path, c.productVariables.CFIExcludePaths)
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001309}
1310
1311func (c *config) CFIEnabledForPath(path string) bool {
Roland Levillainf6cc2612020-07-09 16:58:14 +01001312 if len(c.productVariables.CFIIncludePaths) == 0 {
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001313 return false
1314 }
Evgenii Stepanov779b64e2021-04-09 14:33:10 -07001315 return HasAnyPrefix(path, c.productVariables.CFIIncludePaths) && !c.CFIDisabledForPath(path)
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001316}
Colin Crosse15ddaf2017-12-04 11:24:31 -08001317
Evgenii Stepanov4beaa0c2021-01-05 16:41:26 -08001318func (c *config) MemtagHeapDisabledForPath(path string) bool {
1319 if len(c.productVariables.MemtagHeapExcludePaths) == 0 {
1320 return false
1321 }
1322 return HasAnyPrefix(path, c.productVariables.MemtagHeapExcludePaths)
1323}
1324
1325func (c *config) MemtagHeapAsyncEnabledForPath(path string) bool {
1326 if len(c.productVariables.MemtagHeapAsyncIncludePaths) == 0 {
1327 return false
1328 }
Evgenii Stepanov779b64e2021-04-09 14:33:10 -07001329 return HasAnyPrefix(path, c.productVariables.MemtagHeapAsyncIncludePaths) && !c.MemtagHeapDisabledForPath(path)
Evgenii Stepanov4beaa0c2021-01-05 16:41:26 -08001330}
1331
1332func (c *config) MemtagHeapSyncEnabledForPath(path string) bool {
1333 if len(c.productVariables.MemtagHeapSyncIncludePaths) == 0 {
1334 return false
1335 }
Evgenii Stepanov779b64e2021-04-09 14:33:10 -07001336 return HasAnyPrefix(path, c.productVariables.MemtagHeapSyncIncludePaths) && !c.MemtagHeapDisabledForPath(path)
Evgenii Stepanov4beaa0c2021-01-05 16:41:26 -08001337}
1338
Dan Willemsen0fe78662018-03-26 12:41:18 -07001339func (c *config) VendorConfig(name string) VendorConfig {
Colin Cross9d34f352019-11-22 16:03:51 -08001340 return soongconfig.Config(c.productVariables.VendorVars[name])
Dan Willemsen0fe78662018-03-26 12:41:18 -07001341}
1342
Colin Cross395f2cf2018-10-24 16:10:32 -07001343func (c *config) NdkAbis() bool {
1344 return Bool(c.productVariables.Ndk_abis)
1345}
1346
Martin Stjernholmc1ecc432019-11-15 15:00:31 +00001347func (c *config) AmlAbis() bool {
1348 return Bool(c.productVariables.Aml_abis)
1349}
1350
Jiyong Park8fd61922018-11-08 02:50:25 +09001351func (c *config) FlattenApex() bool {
Roland Levillaina3863212019-08-12 19:56:16 +01001352 return Bool(c.productVariables.Flatten_apex)
Jiyong Park8fd61922018-11-08 02:50:25 +09001353}
1354
Jiyong Park4da07972021-01-05 21:01:11 +09001355func (c *config) ForceApexSymlinkOptimization() bool {
1356 return Bool(c.productVariables.ForceApexSymlinkOptimization)
1357}
1358
Mohammad Samiul Islam3cd005d2020-11-26 13:32:26 +00001359func (c *config) CompressedApex() bool {
1360 return Bool(c.productVariables.CompressedApex)
1361}
1362
Jeongik Chac9464142019-01-07 12:07:27 +09001363func (c *config) EnforceSystemCertificate() bool {
1364 return Bool(c.productVariables.EnforceSystemCertificate)
1365}
1366
Colin Cross440e0d02020-06-11 11:32:11 -07001367func (c *config) EnforceSystemCertificateAllowList() []string {
1368 return c.productVariables.EnforceSystemCertificateAllowList
Jeongik Chac9464142019-01-07 12:07:27 +09001369}
1370
Jeongik Cha2cc570d2019-10-29 15:44:45 +09001371func (c *config) EnforceProductPartitionInterface() bool {
1372 return Bool(c.productVariables.EnforceProductPartitionInterface)
1373}
1374
JaeMan Parkff715562020-10-19 17:25:58 +09001375func (c *config) EnforceInterPartitionJavaSdkLibrary() bool {
1376 return Bool(c.productVariables.EnforceInterPartitionJavaSdkLibrary)
1377}
1378
1379func (c *config) InterPartitionJavaLibraryAllowList() []string {
1380 return c.productVariables.InterPartitionJavaLibraryAllowList
1381}
1382
Jooyung Han3ab2c3e2019-12-05 16:27:44 +09001383func (c *config) InstallExtraFlattenedApexes() bool {
1384 return Bool(c.productVariables.InstallExtraFlattenedApexes)
1385}
1386
Colin Crossf24a22a2019-01-31 14:12:44 -08001387func (c *config) ProductHiddenAPIStubs() []string {
1388 return c.productVariables.ProductHiddenAPIStubs
Colin Cross8faf8fc2019-01-16 15:15:52 -08001389}
1390
Colin Crossf24a22a2019-01-31 14:12:44 -08001391func (c *config) ProductHiddenAPIStubsSystem() []string {
1392 return c.productVariables.ProductHiddenAPIStubsSystem
Colin Cross8faf8fc2019-01-16 15:15:52 -08001393}
1394
Colin Crossf24a22a2019-01-31 14:12:44 -08001395func (c *config) ProductHiddenAPIStubsTest() []string {
1396 return c.productVariables.ProductHiddenAPIStubsTest
Colin Cross8faf8fc2019-01-16 15:15:52 -08001397}
Dan Willemsen71c74602019-04-10 12:27:35 -07001398
Dan Willemsen54879d12019-04-18 10:08:46 -07001399func (c *deviceConfig) TargetFSConfigGen() []string {
Dan Willemsen71c74602019-04-10 12:27:35 -07001400 return c.config.productVariables.TargetFSConfigGen
1401}
Inseob Kim0866b002019-04-15 20:21:29 +09001402
1403func (c *config) ProductPublicSepolicyDirs() []string {
1404 return c.productVariables.ProductPublicSepolicyDirs
1405}
1406
1407func (c *config) ProductPrivateSepolicyDirs() []string {
1408 return c.productVariables.ProductPrivateSepolicyDirs
1409}
1410
Colin Cross50ddcc42019-05-16 12:28:22 -07001411func (c *config) MissingUsesLibraries() []string {
1412 return c.productVariables.MissingUsesLibraries
1413}
1414
Inseob Kim1f086e22019-05-09 13:29:15 +09001415func (c *deviceConfig) DeviceArch() string {
1416 return String(c.config.productVariables.DeviceArch)
1417}
1418
1419func (c *deviceConfig) DeviceArchVariant() string {
1420 return String(c.config.productVariables.DeviceArchVariant)
1421}
1422
1423func (c *deviceConfig) DeviceSecondaryArch() string {
1424 return String(c.config.productVariables.DeviceSecondaryArch)
1425}
1426
1427func (c *deviceConfig) DeviceSecondaryArchVariant() string {
1428 return String(c.config.productVariables.DeviceSecondaryArchVariant)
1429}
Yifan Hong82db7352020-01-21 16:12:26 -08001430
1431func (c *deviceConfig) BoardUsesRecoveryAsBoot() bool {
1432 return Bool(c.config.productVariables.BoardUsesRecoveryAsBoot)
1433}
Yifan Hong97365ee2020-07-29 09:51:57 -07001434
1435func (c *deviceConfig) BoardKernelBinaries() []string {
1436 return c.config.productVariables.BoardKernelBinaries
1437}
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001438
Yifan Hong42bef8d2020-08-05 14:36:09 -07001439func (c *deviceConfig) BoardKernelModuleInterfaceVersions() []string {
1440 return c.config.productVariables.BoardKernelModuleInterfaceVersions
1441}
1442
Yifan Hongdd8dacc2020-10-21 15:40:17 -07001443func (c *deviceConfig) BoardMoveRecoveryResourcesToVendorBoot() bool {
1444 return Bool(c.config.productVariables.BoardMoveRecoveryResourcesToVendorBoot)
1445}
1446
Inseob Kim16ebd5a2020-12-09 23:08:17 +09001447func (c *deviceConfig) PlatformSepolicyVersion() string {
1448 return String(c.config.productVariables.PlatformSepolicyVersion)
1449}
1450
1451func (c *deviceConfig) BoardSepolicyVers() string {
Inseob Kim0c4eec82021-03-22 22:33:40 +09001452 if ver := String(c.config.productVariables.BoardSepolicyVers); ver != "" {
1453 return ver
1454 }
1455 return c.PlatformSepolicyVersion()
Inseob Kim16ebd5a2020-12-09 23:08:17 +09001456}
1457
1458func (c *deviceConfig) BoardReqdMaskPolicy() []string {
1459 return c.config.productVariables.BoardReqdMaskPolicy
1460}
1461
Inseob Kim7cf14652021-01-06 23:06:52 +09001462func (c *deviceConfig) DirectedVendorSnapshot() bool {
1463 return c.config.productVariables.DirectedVendorSnapshot
1464}
1465
1466func (c *deviceConfig) VendorSnapshotModules() map[string]bool {
1467 return c.config.productVariables.VendorSnapshotModules
1468}
1469
Jose Galmes4c6895e2021-02-09 07:44:30 -08001470func (c *deviceConfig) DirectedRecoverySnapshot() bool {
1471 return c.config.productVariables.DirectedRecoverySnapshot
1472}
1473
1474func (c *deviceConfig) RecoverySnapshotModules() map[string]bool {
1475 return c.config.productVariables.RecoverySnapshotModules
1476}
1477
Justin DeMartino383bfb32021-02-24 10:49:43 -08001478func createDirsMap(previous map[string]bool, dirs []string) (map[string]bool, error) {
1479 var ret = make(map[string]bool)
1480 for _, dir := range dirs {
1481 clean := filepath.Clean(dir)
1482 if previous[clean] || ret[clean] {
1483 return nil, fmt.Errorf("Duplicate entry %s", dir)
1484 }
1485 ret[clean] = true
1486 }
1487 return ret, nil
1488}
1489
1490func (c *deviceConfig) createDirsMapOnce(onceKey OnceKey, previous map[string]bool, dirs []string) map[string]bool {
1491 dirMap := c.Once(onceKey, func() interface{} {
1492 ret, err := createDirsMap(previous, dirs)
1493 if err != nil {
1494 panic(fmt.Errorf("%s: %w", onceKey.key, err))
1495 }
1496 return ret
1497 })
1498 if dirMap == nil {
1499 return nil
1500 }
1501 return dirMap.(map[string]bool)
1502}
1503
1504var vendorSnapshotDirsExcludedKey = NewOnceKey("VendorSnapshotDirsExcludedMap")
1505
1506func (c *deviceConfig) VendorSnapshotDirsExcludedMap() map[string]bool {
1507 return c.createDirsMapOnce(vendorSnapshotDirsExcludedKey, nil,
1508 c.config.productVariables.VendorSnapshotDirsExcluded)
1509}
1510
1511var vendorSnapshotDirsIncludedKey = NewOnceKey("VendorSnapshotDirsIncludedMap")
1512
1513func (c *deviceConfig) VendorSnapshotDirsIncludedMap() map[string]bool {
1514 excludedMap := c.VendorSnapshotDirsExcludedMap()
1515 return c.createDirsMapOnce(vendorSnapshotDirsIncludedKey, excludedMap,
1516 c.config.productVariables.VendorSnapshotDirsIncluded)
1517}
1518
1519var recoverySnapshotDirsExcludedKey = NewOnceKey("RecoverySnapshotDirsExcludedMap")
1520
1521func (c *deviceConfig) RecoverySnapshotDirsExcludedMap() map[string]bool {
1522 return c.createDirsMapOnce(recoverySnapshotDirsExcludedKey, nil,
1523 c.config.productVariables.RecoverySnapshotDirsExcluded)
1524}
1525
1526var recoverySnapshotDirsIncludedKey = NewOnceKey("RecoverySnapshotDirsIncludedMap")
1527
1528func (c *deviceConfig) RecoverySnapshotDirsIncludedMap() map[string]bool {
1529 excludedMap := c.RecoverySnapshotDirsExcludedMap()
1530 return c.createDirsMapOnce(recoverySnapshotDirsIncludedKey, excludedMap,
1531 c.config.productVariables.RecoverySnapshotDirsIncluded)
1532}
1533
Inseob Kim60c32f02020-12-21 22:53:05 +09001534func (c *deviceConfig) ShippingApiLevel() ApiLevel {
1535 if c.config.productVariables.ShippingApiLevel == nil {
1536 return NoneApiLevel
1537 }
1538 apiLevel, _ := strconv.Atoi(*c.config.productVariables.ShippingApiLevel)
1539 return uncheckedFinalApiLevel(apiLevel)
1540}
1541
Inseob Kim67e5add2021-03-17 18:05:33 +09001542func (c *deviceConfig) BuildBrokenEnforceSyspropOwner() bool {
1543 return c.config.productVariables.BuildBrokenEnforceSyspropOwner
1544}
1545
1546func (c *deviceConfig) BuildBrokenTrebleSyspropNeverallow() bool {
1547 return c.config.productVariables.BuildBrokenTrebleSyspropNeverallow
1548}
1549
Hridya Valsaraju5a5c7d52021-04-02 16:45:24 -07001550func (c *deviceConfig) BuildDebugfsRestrictionsEnabled() bool {
1551 return c.config.productVariables.BuildDebugfsRestrictionsEnabled
1552}
1553
Inseob Kim0cac7b42021-02-03 18:16:46 +09001554func (c *deviceConfig) BuildBrokenVendorPropertyNamespace() bool {
1555 return c.config.productVariables.BuildBrokenVendorPropertyNamespace
1556}
1557
Inseob Kim67e5add2021-03-17 18:05:33 +09001558func (c *deviceConfig) RequiresInsecureExecmemForSwiftshader() bool {
1559 return c.config.productVariables.RequiresInsecureExecmemForSwiftshader
1560}
1561
1562func (c *config) SelinuxIgnoreNeverallows() bool {
1563 return c.productVariables.SelinuxIgnoreNeverallows
1564}
1565
1566func (c *deviceConfig) SepolicySplit() bool {
1567 return c.config.productVariables.SepolicySplit
1568}
1569
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001570// The ConfiguredJarList struct provides methods for handling a list of (apex, jar) pairs.
1571// Such lists are used in the build system for things like bootclasspath jars or system server jars.
1572// The apex part is either an apex name, or a special names "platform" or "system_ext". Jar is a
1573// module name. The pairs come from Make product variables as a list of colon-separated strings.
1574//
1575// Examples:
1576// - "com.android.art:core-oj"
1577// - "platform:framework"
1578// - "system_ext:foo"
1579//
1580type ConfiguredJarList struct {
Jingwen Chenc711fec2020-11-22 23:52:50 -05001581 // A list of apex components, which can be an apex name,
1582 // or special names like "platform" or "system_ext".
1583 apexes []string
1584
1585 // A list of jar module name components.
1586 jars []string
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001587}
1588
Jingwen Chenc711fec2020-11-22 23:52:50 -05001589// Len returns the length of the list of jars.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001590func (l *ConfiguredJarList) Len() int {
1591 return len(l.jars)
1592}
1593
Jingwen Chenc711fec2020-11-22 23:52:50 -05001594// Jar returns the idx-th jar component of (apex, jar) pairs.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001595func (l *ConfiguredJarList) Jar(idx int) string {
1596 return l.jars[idx]
1597}
1598
Jingwen Chenc711fec2020-11-22 23:52:50 -05001599// Apex returns the idx-th apex component of (apex, jar) pairs.
Paul Duffin9a89a2a2020-10-28 19:20:06 +00001600func (l *ConfiguredJarList) Apex(idx int) string {
1601 return l.apexes[idx]
1602}
1603
Jingwen Chenc711fec2020-11-22 23:52:50 -05001604// ContainsJar returns true if the (apex, jar) pairs contains a pair with the
1605// given jar module name.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001606func (l *ConfiguredJarList) ContainsJar(jar string) bool {
1607 return InList(jar, l.jars)
1608}
1609
1610// If the list contains the given (apex, jar) pair.
1611func (l *ConfiguredJarList) containsApexJarPair(apex, jar string) bool {
1612 for i := 0; i < l.Len(); i++ {
Paul Duffin1e8c6072020-10-23 18:28:55 +01001613 if apex == l.apexes[i] && jar == l.jars[i] {
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001614 return true
1615 }
1616 }
1617 return false
1618}
1619
satayev3db35472021-05-06 23:59:58 +01001620// ApexOfJar returns the apex component of the first pair with the given jar name on the list, or
1621// an empty string if not found.
1622func (l *ConfiguredJarList) ApexOfJar(jar string) string {
1623 if idx := IndexList(jar, l.jars); idx != -1 {
1624 return l.Apex(IndexList(jar, l.jars))
1625 }
1626 return ""
1627}
1628
Jingwen Chenc711fec2020-11-22 23:52:50 -05001629// IndexOfJar returns the first pair with the given jar name on the list, or -1
1630// if not found.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001631func (l *ConfiguredJarList) IndexOfJar(jar string) int {
1632 return IndexList(jar, l.jars)
1633}
1634
Paul Duffin7d584e92020-10-23 18:26:03 +01001635func copyAndAppend(list []string, item string) []string {
1636 // Create the result list to be 1 longer than the input.
1637 result := make([]string, len(list)+1)
1638
1639 // Copy the whole input list into the result.
1640 count := copy(result, list)
1641
1642 // Insert the extra item at the end.
1643 result[count] = item
1644
1645 return result
1646}
1647
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001648// Append an (apex, jar) pair to the list.
Paul Duffin7d584e92020-10-23 18:26:03 +01001649func (l *ConfiguredJarList) Append(apex string, jar string) ConfiguredJarList {
1650 // Create a copy of the backing arrays before appending to avoid sharing backing
1651 // arrays that are mutated across instances.
1652 apexes := copyAndAppend(l.apexes, apex)
1653 jars := copyAndAppend(l.jars, jar)
1654
1655 return ConfiguredJarList{apexes, jars}
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001656}
1657
Jingwen Chenc711fec2020-11-22 23:52:50 -05001658// RemoveList filters out a list of (apex, jar) pairs from the receiving list of pairs.
Paul Duffin7d584e92020-10-23 18:26:03 +01001659func (l *ConfiguredJarList) RemoveList(list ConfiguredJarList) ConfiguredJarList {
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001660 apexes := make([]string, 0, l.Len())
1661 jars := make([]string, 0, l.Len())
1662
1663 for i, jar := range l.jars {
Paul Duffin1e8c6072020-10-23 18:28:55 +01001664 apex := l.apexes[i]
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001665 if !list.containsApexJarPair(apex, jar) {
1666 apexes = append(apexes, apex)
1667 jars = append(jars, jar)
1668 }
1669 }
1670
Paul Duffin7d584e92020-10-23 18:26:03 +01001671 return ConfiguredJarList{apexes, jars}
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001672}
1673
satayevd34eb0c2021-08-06 13:20:28 +01001674// Filter keeps the entries if a jar appears in the given list of jars to keep. Returns a new list
1675// and any remaining jars that are not on this list.
1676func (l *ConfiguredJarList) Filter(jarsToKeep []string) (ConfiguredJarList, []string) {
satayev8fab6f82021-05-07 00:10:33 +01001677 var apexes []string
1678 var jars []string
1679
1680 for i, jar := range l.jars {
1681 if InList(jar, jarsToKeep) {
1682 apexes = append(apexes, l.apexes[i])
1683 jars = append(jars, jar)
1684 }
1685 }
1686
satayevd34eb0c2021-08-06 13:20:28 +01001687 return ConfiguredJarList{apexes, jars}, RemoveListFromList(jarsToKeep, jars)
satayev8fab6f82021-05-07 00:10:33 +01001688}
1689
Jingwen Chenc711fec2020-11-22 23:52:50 -05001690// CopyOfJars returns a copy of the list of strings containing jar module name
1691// components.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001692func (l *ConfiguredJarList) CopyOfJars() []string {
1693 return CopyOf(l.jars)
1694}
1695
Jingwen Chenc711fec2020-11-22 23:52:50 -05001696// CopyOfApexJarPairs returns a copy of the list of strings with colon-separated
1697// (apex, jar) pairs.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001698func (l *ConfiguredJarList) CopyOfApexJarPairs() []string {
1699 pairs := make([]string, 0, l.Len())
1700
1701 for i, jar := range l.jars {
Paul Duffin1e8c6072020-10-23 18:28:55 +01001702 apex := l.apexes[i]
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001703 pairs = append(pairs, apex+":"+jar)
1704 }
1705
1706 return pairs
1707}
1708
Jingwen Chenc711fec2020-11-22 23:52:50 -05001709// BuildPaths returns a list of build paths based on the given directory prefix.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001710func (l *ConfiguredJarList) BuildPaths(ctx PathContext, dir OutputPath) WritablePaths {
1711 paths := make(WritablePaths, l.Len())
1712 for i, jar := range l.jars {
1713 paths[i] = dir.Join(ctx, ModuleStem(jar)+".jar")
1714 }
1715 return paths
1716}
1717
Paul Duffin5f148ca2021-06-02 17:24:22 +01001718// BuildPathsByModule returns a map from module name to build paths based on the given directory
1719// prefix.
1720func (l *ConfiguredJarList) BuildPathsByModule(ctx PathContext, dir OutputPath) map[string]WritablePath {
1721 paths := map[string]WritablePath{}
1722 for _, jar := range l.jars {
1723 paths[jar] = dir.Join(ctx, ModuleStem(jar)+".jar")
1724 }
1725 return paths
1726}
1727
Jingwen Chenc711fec2020-11-22 23:52:50 -05001728// UnmarshalJSON converts JSON configuration from raw bytes into a
1729// ConfiguredJarList structure.
Paul Duffin69d1fb12020-10-23 21:14:20 +01001730func (l *ConfiguredJarList) UnmarshalJSON(b []byte) error {
1731 // Try and unmarshal into a []string each item of which contains a pair
1732 // <apex>:<jar>.
1733 var list []string
1734 err := json.Unmarshal(b, &list)
1735 if err != nil {
1736 // Did not work so return
1737 return err
1738 }
1739
1740 apexes, jars, err := splitListOfPairsIntoPairOfLists(list)
1741 if err != nil {
1742 return err
1743 }
1744 l.apexes = apexes
1745 l.jars = jars
1746 return nil
1747}
1748
Lukacs T. Berki720b3962021-03-17 13:34:30 +01001749func (l *ConfiguredJarList) MarshalJSON() ([]byte, error) {
1750 if len(l.apexes) != len(l.jars) {
1751 return nil, errors.New(fmt.Sprintf("Inconsistent ConfiguredJarList: apexes: %q, jars: %q", l.apexes, l.jars))
1752 }
1753
1754 list := make([]string, 0, len(l.apexes))
1755
1756 for i := 0; i < len(l.apexes); i++ {
1757 list = append(list, l.apexes[i]+":"+l.jars[i])
1758 }
1759
1760 return json.Marshal(list)
1761}
1762
Jingwen Chenc711fec2020-11-22 23:52:50 -05001763// ModuleStem hardcodes the stem of framework-minus-apex to return "framework".
1764//
1765// TODO(b/139391334): hard coded until we find a good way to query the stem of a
1766// module before any other mutators are run.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001767func ModuleStem(module string) string {
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001768 if module == "framework-minus-apex" {
1769 return "framework"
1770 }
1771 return module
1772}
1773
Jingwen Chenc711fec2020-11-22 23:52:50 -05001774// DevicePaths computes the on-device paths for the list of (apex, jar) pairs,
1775// based on the operating system.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001776func (l *ConfiguredJarList) DevicePaths(cfg Config, ostype OsType) []string {
1777 paths := make([]string, l.Len())
1778 for i, jar := range l.jars {
1779 apex := l.apexes[i]
1780 name := ModuleStem(jar) + ".jar"
1781
1782 var subdir string
1783 if apex == "platform" {
1784 subdir = "system/framework"
1785 } else if apex == "system_ext" {
1786 subdir = "system_ext/framework"
1787 } else {
1788 subdir = filepath.Join("apex", apex, "javalib")
1789 }
1790
1791 if ostype.Class == Host {
1792 paths[i] = filepath.Join(cfg.Getenv("OUT_DIR"), "host", cfg.PrebuiltOS(), subdir, name)
1793 } else {
1794 paths[i] = filepath.Join("/", subdir, name)
1795 }
1796 }
1797 return paths
1798}
1799
Paul Duffin7d584e92020-10-23 18:26:03 +01001800func (l *ConfiguredJarList) String() string {
1801 var pairs []string
1802 for i := 0; i < l.Len(); i++ {
1803 pairs = append(pairs, l.apexes[i]+":"+l.jars[i])
1804 }
1805 return strings.Join(pairs, ",")
1806}
1807
Paul Duffin01416602020-10-23 21:04:03 +01001808func splitListOfPairsIntoPairOfLists(list []string) ([]string, []string, error) {
1809 // Now we need to populate this list by splitting each item in the slice of
1810 // pairs and appending them to the appropriate list of apexes or jars.
1811 apexes := make([]string, len(list))
1812 jars := make([]string, len(list))
1813
1814 for i, apexjar := range list {
1815 apex, jar, err := splitConfiguredJarPair(apexjar)
1816 if err != nil {
1817 return nil, nil, err
1818 }
1819 apexes[i] = apex
1820 jars[i] = jar
1821 }
1822
1823 return apexes, jars, nil
1824}
1825
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001826// Expected format for apexJarValue = <apex name>:<jar name>
Paul Duffin01416602020-10-23 21:04:03 +01001827func splitConfiguredJarPair(str string) (string, string, error) {
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001828 pair := strings.SplitN(str, ":", 2)
1829 if len(pair) == 2 {
Paul Duffin9c3ac962021-02-03 14:11:27 +00001830 apex := pair[0]
1831 jar := pair[1]
1832 if apex == "" {
1833 return apex, jar, fmt.Errorf("invalid apex '%s' in <apex>:<jar> pair '%s', expected format: <apex>:<jar>", apex, str)
1834 }
1835 return apex, jar, nil
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001836 } else {
Paul Duffin01416602020-10-23 21:04:03 +01001837 return "error-apex", "error-jar", fmt.Errorf("malformed (apex, jar) pair: '%s', expected format: <apex>:<jar>", str)
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001838 }
1839}
1840
Paul Duffin9c3ac962021-02-03 14:11:27 +00001841// CreateTestConfiguredJarList is a function to create ConfiguredJarList for tests.
Paul Duffine10dfa42020-10-23 21:23:44 +01001842func CreateTestConfiguredJarList(list []string) ConfiguredJarList {
Paul Duffin9c3ac962021-02-03 14:11:27 +00001843 // Create the ConfiguredJarList in as similar way as it is created at runtime by marshalling to
1844 // a json list of strings and then unmarshalling into a ConfiguredJarList instance.
1845 b, err := json.Marshal(list)
Paul Duffin01416602020-10-23 21:04:03 +01001846 if err != nil {
Paul Duffine10dfa42020-10-23 21:23:44 +01001847 panic(err)
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001848 }
1849
Paul Duffin9c3ac962021-02-03 14:11:27 +00001850 var jarList ConfiguredJarList
1851 err = json.Unmarshal(b, &jarList)
1852 if err != nil {
1853 panic(err)
1854 }
1855
1856 return jarList
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001857}
1858
Jingwen Chenc711fec2020-11-22 23:52:50 -05001859// EmptyConfiguredJarList returns an empty jar list.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001860func EmptyConfiguredJarList() ConfiguredJarList {
1861 return ConfiguredJarList{}
1862}
1863
1864var earlyBootJarsKey = NewOnceKey("earlyBootJars")
1865
1866func (c *config) BootJars() []string {
1867 return c.Once(earlyBootJarsKey, func() interface{} {
Paul Duffin69d1fb12020-10-23 21:14:20 +01001868 list := c.productVariables.BootJars.CopyOfJars()
satayevd604b212021-07-21 14:23:52 +01001869 return append(list, c.productVariables.ApexBootJars.CopyOfJars()...)
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001870 }).([]string)
1871}
Paul Duffin9a89a2a2020-10-28 19:20:06 +00001872
satayevd604b212021-07-21 14:23:52 +01001873func (c *config) NonApexBootJars() ConfiguredJarList {
Paul Duffin9a89a2a2020-10-28 19:20:06 +00001874 return c.productVariables.BootJars
1875}
1876
satayevd604b212021-07-21 14:23:52 +01001877func (c *config) ApexBootJars() ConfiguredJarList {
1878 return c.productVariables.ApexBootJars
Paul Duffin9a89a2a2020-10-28 19:20:06 +00001879}
Colin Cross77cdcfd2021-03-12 11:28:25 -08001880
1881func (c *config) RBEWrapper() string {
1882 return c.GetenvWithDefault("RBE_WRAPPER", remoteexec.DefaultWrapperPath)
1883}