blob: 871986c7c0b45892f7ace3cf3b387cf088a6cb3a [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
212 return saveToBazelConfigFile(configurable, filepath.Dir(filename))
Colin Cross3f40fa42015-01-30 17:27:36 -0800213}
214
Colin Crossd8f20142016-11-03 09:43:26 -0700215// atomically writes the config file in case two copies of soong_build are running simultaneously
216// (for example, docs generation and ninja manifest generation)
Liz Kammer09f947d2021-05-12 14:51:49 -0400217func saveToConfigFile(config *productVariables, filename string) error {
Colin Cross3f40fa42015-01-30 17:27:36 -0800218 data, err := json.MarshalIndent(&config, "", " ")
219 if err != nil {
220 return fmt.Errorf("cannot marshal config data: %s", err.Error())
221 }
222
Colin Crossd8f20142016-11-03 09:43:26 -0700223 f, err := ioutil.TempFile(filepath.Dir(filename), "config")
Colin Cross3f40fa42015-01-30 17:27:36 -0800224 if err != nil {
Jingwen Chenc711fec2020-11-22 23:52:50 -0500225 return fmt.Errorf("cannot create empty config file %s: %s", filename, err.Error())
Colin Cross3f40fa42015-01-30 17:27:36 -0800226 }
Colin Crossd8f20142016-11-03 09:43:26 -0700227 defer os.Remove(f.Name())
228 defer f.Close()
Colin Cross3f40fa42015-01-30 17:27:36 -0800229
Colin Crossd8f20142016-11-03 09:43:26 -0700230 _, err = f.Write(data)
Colin Cross3f40fa42015-01-30 17:27:36 -0800231 if err != nil {
Colin Cross485e5722015-08-27 13:28:01 -0700232 return fmt.Errorf("default config file: %s could not be written: %s", filename, err.Error())
233 }
234
Colin Crossd8f20142016-11-03 09:43:26 -0700235 _, err = f.WriteString("\n")
Colin Cross485e5722015-08-27 13:28:01 -0700236 if err != nil {
237 return fmt.Errorf("default config file: %s could not be written: %s", filename, err.Error())
Colin Cross3f40fa42015-01-30 17:27:36 -0800238 }
239
Colin Crossd8f20142016-11-03 09:43:26 -0700240 f.Close()
241 os.Rename(f.Name(), filename)
242
Colin Cross3f40fa42015-01-30 17:27:36 -0800243 return nil
244}
245
Liz Kammer09f947d2021-05-12 14:51:49 -0400246func saveToBazelConfigFile(config *productVariables, outDir string) error {
247 dir := filepath.Join(outDir, bazel.SoongInjectionDirName, "product_config")
248 err := createDirIfNonexistent(dir, os.ModePerm)
249 if err != nil {
250 return fmt.Errorf("Could not create dir %s: %s", dir, err)
251 }
252
253 data, err := json.MarshalIndent(&config, "", " ")
254 if err != nil {
255 return fmt.Errorf("cannot marshal config data: %s", err.Error())
256 }
257
258 bzl := []string{
259 bazel.GeneratedBazelFileWarning,
260 fmt.Sprintf(`_product_vars = json.decode("""%s""")`, data),
261 "product_vars = _product_vars\n",
262 }
263 err = ioutil.WriteFile(filepath.Join(dir, "product_variables.bzl"), []byte(strings.Join(bzl, "\n")), 0644)
264 if err != nil {
265 return fmt.Errorf("Could not write .bzl config file %s", err)
266 }
267 err = ioutil.WriteFile(filepath.Join(dir, "BUILD"), []byte(bazel.GeneratedBazelFileWarning), 0644)
268 if err != nil {
269 return fmt.Errorf("Could not write BUILD config file %s", err)
270 }
271
272 return nil
273}
274
Colin Cross988414c2020-01-11 01:11:46 +0000275// NullConfig returns a mostly empty Config for use by standalone tools like dexpreopt_gen that
276// use the android package.
277func NullConfig(buildDir string) Config {
278 return Config{
279 config: &config{
280 buildDir: buildDir,
281 fs: pathtools.OsFs,
282 },
283 }
284}
285
Jingwen Chenc711fec2020-11-22 23:52:50 -0500286// TestConfig returns a Config object for testing.
Colin Cross98be1bb2019-12-13 20:41:13 -0800287func TestConfig(buildDir string, env map[string]string, bp string, fs map[string][]byte) Config {
Colin Cross9c6241f2019-04-22 15:51:26 -0700288 envCopy := make(map[string]string)
289 for k, v := range env {
290 envCopy[k] = v
291 }
292
Jingwen Chen2838c812020-11-23 01:06:40 -0500293 // Copy the real PATH value to the test environment, it's needed by
294 // NonHermeticHostSystemTool() used in x86_darwin_host.go
Lukacs T. Berkideba7212021-03-04 10:50:10 +0100295 envCopy["PATH"] = os.Getenv("PATH")
Colin Cross9c6241f2019-04-22 15:51:26 -0700296
Dan Willemsen00269f22017-07-06 16:59:48 -0700297 config := &config{
Dan Willemsen45133ac2018-03-09 21:22:06 -0800298 productVariables: productVariables{
Dan Albert4f378d72020-07-23 17:32:15 -0700299 DeviceName: stringPtr("test_device"),
300 Platform_sdk_version: intPtr(30),
301 Platform_sdk_codename: stringPtr("S"),
302 Platform_version_active_codenames: []string{"S"},
303 DeviceSystemSdkVersions: []string{"14", "15"},
304 Platform_systemsdk_versions: []string{"29", "30"},
305 AAPTConfig: []string{"normal", "large", "xlarge", "hdpi", "xhdpi", "xxhdpi"},
306 AAPTPreferredConfig: stringPtr("xhdpi"),
307 AAPTCharacteristics: stringPtr("nosdcard"),
308 AAPTPrebuiltDPI: []string{"xhdpi", "xxhdpi"},
309 UncompressPrivAppDex: boolPtr(true),
Inseob Kim60c32f02020-12-21 22:53:05 +0900310 ShippingApiLevel: stringPtr("30"),
Dan Willemsen00269f22017-07-06 16:59:48 -0700311 },
312
Colin Cross6ccbc912017-10-10 23:07:38 -0700313 buildDir: buildDir,
314 captureBuild: true,
Colin Cross9c6241f2019-04-22 15:51:26 -0700315 env: envCopy,
Colin Cross5e6a7972020-06-07 16:56:32 -0700316
317 // Set testAllowNonExistentPaths so that test contexts don't need to specify every path
318 // passed to PathForSource or PathForModuleSrc.
Pedro Loureiro5d190cc2021-02-15 15:41:33 +0000319 TestAllowNonExistentPaths: true,
Chris Parsonsf3c96ef2020-09-29 02:23:17 -0400320
321 BazelContext: noopBazelContext{},
Dan Willemsen00269f22017-07-06 16:59:48 -0700322 }
323 config.deviceConfig = &deviceConfig{
324 config: config,
325 }
Dan Willemsen45133ac2018-03-09 21:22:06 -0800326 config.TestProductVariables = &config.productVariables
Dan Willemsen00269f22017-07-06 16:59:48 -0700327
Colin Cross98be1bb2019-12-13 20:41:13 -0800328 config.mockFileSystem(bp, fs)
329
Jingwen Chen12b4c272021-03-10 02:05:59 -0500330 config.bp2buildModuleTypeConfig = map[string]bool{}
331
Dan Willemsen00269f22017-07-06 16:59:48 -0700332 return Config{config}
Colin Crossce75d2c2016-10-06 16:12:58 -0700333}
334
Paul Duffin35816122021-02-24 01:49:52 +0000335func modifyTestConfigToSupportArchMutator(testConfig Config) {
Colin Crossae4c6182017-09-15 17:33:55 -0700336 config := testConfig.config
337
Colin Cross0c66bc62021-07-20 09:47:41 -0700338 determineBuildOS(config)
339
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700340 config.Targets = map[OsType][]Target{
341 Android: []Target{
Jiyong Park1613e552020-09-14 19:43:17 +0900342 {Android, Arch{ArchType: Arm64, ArchVariant: "armv8-a", Abi: []string{"arm64-v8a"}}, NativeBridgeDisabled, "", "", false},
343 {Android, Arch{ArchType: Arm, ArchVariant: "armv7-a-neon", Abi: []string{"armeabi-v7a"}}, NativeBridgeDisabled, "", "", false},
Colin Crossae4c6182017-09-15 17:33:55 -0700344 },
Colin Cross0c66bc62021-07-20 09:47:41 -0700345 config.BuildOS: []Target{
346 {config.BuildOS, Arch{ArchType: X86_64}, NativeBridgeDisabled, "", "", false},
347 {config.BuildOS, Arch{ArchType: X86}, NativeBridgeDisabled, "", "", false},
Colin Crossae4c6182017-09-15 17:33:55 -0700348 },
349 }
350
Colin Cross0d99f7c2019-05-14 16:01:24 -0700351 if runtime.GOOS == "darwin" {
Colin Cross0c66bc62021-07-20 09:47:41 -0700352 config.Targets[config.BuildOS] = config.Targets[config.BuildOS][:1]
Colin Cross0d99f7c2019-05-14 16:01:24 -0700353 }
354
Colin Cross0c66bc62021-07-20 09:47:41 -0700355 config.BuildOSTarget = config.Targets[config.BuildOS][0]
356 config.BuildOSCommonTarget = getCommonTargets(config.Targets[config.BuildOS])[0]
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700357 config.AndroidCommonTarget = getCommonTargets(config.Targets[Android])[0]
Jaewoong Jung642916f2020-10-09 17:25:15 -0700358 config.AndroidFirstDeviceTarget = firstTarget(config.Targets[Android], "lib64", "lib32")[0]
Inseob Kim1f086e22019-05-09 13:29:15 +0900359 config.TestProductVariables.DeviceArch = proptools.StringPtr("arm64")
360 config.TestProductVariables.DeviceArchVariant = proptools.StringPtr("armv8-a")
361 config.TestProductVariables.DeviceSecondaryArch = proptools.StringPtr("arm")
362 config.TestProductVariables.DeviceSecondaryArchVariant = proptools.StringPtr("armv7-a-neon")
Paul Duffin35816122021-02-24 01:49:52 +0000363}
Colin Cross2a076922018-10-04 23:28:25 -0700364
Paul Duffin35816122021-02-24 01:49:52 +0000365// TestArchConfig returns a Config object suitable for using for tests that
366// need to run the arch mutator.
367func TestArchConfig(buildDir string, env map[string]string, bp string, fs map[string][]byte) Config {
368 testConfig := TestConfig(buildDir, env, bp, fs)
369 modifyTestConfigToSupportArchMutator(testConfig)
Colin Crossae4c6182017-09-15 17:33:55 -0700370 return testConfig
371}
372
Jingwen Chenc711fec2020-11-22 23:52:50 -0500373// ConfigForAdditionalRun is a config object which is "reset" for another
374// bootstrap run. Only per-run data is reset. Data which needs to persist across
375// multiple runs in the same program execution is carried over (such as Bazel
376// context or environment deps).
Chris Parsonsf3c96ef2020-09-29 02:23:17 -0400377func ConfigForAdditionalRun(c Config) (Config, error) {
Lukacs T. Berki53b2f362021-04-12 14:04:24 +0200378 newConfig, err := NewConfig(c.srcDir, c.buildDir, c.moduleListFile, c.env)
Chris Parsonsf3c96ef2020-09-29 02:23:17 -0400379 if err != nil {
380 return Config{}, err
381 }
382 newConfig.BazelContext = c.BazelContext
383 newConfig.envDeps = c.envDeps
384 return newConfig, nil
385}
386
Jingwen Chenc711fec2020-11-22 23:52:50 -0500387// NewConfig creates a new Config object. The srcDir argument specifies the path
388// to the root source directory. It also loads the config file, if found.
Lukacs T. Berki53b2f362021-04-12 14:04:24 +0200389func NewConfig(srcDir, buildDir string, moduleListFile string, availableEnv map[string]string) (Config, error) {
Jingwen Chenc711fec2020-11-22 23:52:50 -0500390 // Make a config with default options.
Colin Cross9272ade2016-08-17 15:24:12 -0700391 config := &config{
Colin Cross9272ade2016-08-17 15:24:12 -0700392 ProductVariablesFileName: filepath.Join(buildDir, productVariablesFileName),
Dan Willemsen87b17d12015-07-14 00:39:06 -0700393
Lukacs T. Berki53b2f362021-04-12 14:04:24 +0200394 env: availableEnv,
Colin Cross6ccbc912017-10-10 23:07:38 -0700395
Colin Cross3b19f5d2019-09-17 14:45:31 -0700396 srcDir: srcDir,
397 buildDir: buildDir,
398 multilibConflicts: make(map[ArchType]bool),
Colin Cross98be1bb2019-12-13 20:41:13 -0800399
Chris Parsons8f232a22020-06-23 17:37:05 -0400400 moduleListFile: moduleListFile,
401 fs: pathtools.NewOsFs(absSrcDir),
Colin Cross68f55102015-03-25 14:43:57 -0700402 }
Colin Cross3f40fa42015-01-30 17:27:36 -0800403
Dan Willemsen00269f22017-07-06 16:59:48 -0700404 config.deviceConfig = &deviceConfig{
Colin Cross9272ade2016-08-17 15:24:12 -0700405 config: config,
406 }
407
Liz Kammer7941b302020-07-28 13:27:34 -0700408 // Soundness check of the build and source directories. This won't catch strange
409 // configurations with symlinks, but at least checks the obvious case.
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700410 absBuildDir, err := filepath.Abs(buildDir)
411 if err != nil {
412 return Config{}, err
413 }
414
415 absSrcDir, err := filepath.Abs(srcDir)
416 if err != nil {
417 return Config{}, err
418 }
419
420 if strings.HasPrefix(absSrcDir, absBuildDir) {
421 return Config{}, fmt.Errorf("Build dir must not contain source directory")
422 }
423
Colin Cross3f40fa42015-01-30 17:27:36 -0800424 // Load any configurable options from the configuration file
Colin Cross9272ade2016-08-17 15:24:12 -0700425 err = loadConfig(config)
Colin Cross3f40fa42015-01-30 17:27:36 -0800426 if err != nil {
Colin Crossc3c0a492015-04-10 15:43:55 -0700427 return Config{}, err
Colin Cross3f40fa42015-01-30 17:27:36 -0800428 }
429
Jingwen Chencda22c92020-11-23 00:22:30 -0500430 KatiEnabledMarkerFile := filepath.Join(buildDir, ".soong.kati_enabled")
431 if _, err := os.Stat(absolutePath(KatiEnabledMarkerFile)); err == nil {
432 config.katiEnabled = true
Dan Willemsen5ba07e82015-12-11 13:51:06 -0800433 }
434
Colin Cross0c66bc62021-07-20 09:47:41 -0700435 determineBuildOS(config)
436
Jingwen Chenc711fec2020-11-22 23:52:50 -0500437 // Sets up the map of target OSes to the finer grained compilation targets
438 // that are configured from the product variables.
Colin Crossa1ad8d12016-06-01 17:09:44 -0700439 targets, err := decodeTargetProductVariables(config)
Dan Willemsen218f6562015-07-08 18:13:11 -0700440 if err != nil {
441 return Config{}, err
442 }
443
Paul Duffin1356d8c2020-02-25 19:26:33 +0000444 // Make the CommonOS OsType available for all products.
445 targets[CommonOS] = []Target{commonTargetMap[CommonOS.Name]}
446
Dan Albert4098deb2016-10-19 14:04:41 -0700447 var archConfig []archConfig
Jingwen Chenc4d91bc2020-11-24 22:59:26 -0500448 if config.NdkAbis() {
Dan Albert4098deb2016-10-19 14:04:41 -0700449 archConfig = getNdkAbisConfig()
Martin Stjernholmc1ecc432019-11-15 15:00:31 +0000450 } else if config.AmlAbis() {
451 archConfig = getAmlAbisConfig()
Dan Albert4098deb2016-10-19 14:04:41 -0700452 }
453
454 if archConfig != nil {
Dan Willemsen01a3c252019-01-11 19:02:16 -0800455 androidTargets, err := decodeArchSettings(Android, archConfig)
Dan Willemsen322acaf2016-01-12 23:07:05 -0800456 if err != nil {
457 return Config{}, err
458 }
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700459 targets[Android] = androidTargets
Dan Willemsen322acaf2016-01-12 23:07:05 -0800460 }
461
Colin Cross3b19f5d2019-09-17 14:45:31 -0700462 multilib := make(map[string]bool)
463 for _, target := range targets[Android] {
464 if seen := multilib[target.Arch.ArchType.Multilib]; seen {
465 config.multilibConflicts[target.Arch.ArchType] = true
466 }
467 multilib[target.Arch.ArchType.Multilib] = true
468 }
469
Jingwen Chenc711fec2020-11-22 23:52:50 -0500470 // Map of OS to compilation targets.
Colin Crossa1ad8d12016-06-01 17:09:44 -0700471 config.Targets = targets
Jingwen Chenc711fec2020-11-22 23:52:50 -0500472
473 // Compilation targets for host tools.
Colin Cross0c66bc62021-07-20 09:47:41 -0700474 config.BuildOSTarget = config.Targets[config.BuildOS][0]
475 config.BuildOSCommonTarget = getCommonTargets(config.Targets[config.BuildOS])[0]
Jingwen Chenc711fec2020-11-22 23:52:50 -0500476
477 // Compilation targets for Android.
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700478 if len(config.Targets[Android]) > 0 {
479 config.AndroidCommonTarget = getCommonTargets(config.Targets[Android])[0]
Jaewoong Jung642916f2020-10-09 17:25:15 -0700480 config.AndroidFirstDeviceTarget = firstTarget(config.Targets[Android], "lib64", "lib32")[0]
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700481 }
Dan Willemsen218f6562015-07-08 18:13:11 -0700482
Chris Parsonsf3c96ef2020-09-29 02:23:17 -0400483 config.BazelContext, err = NewBazelContext(config)
Jingwen Chen12b4c272021-03-10 02:05:59 -0500484 config.bp2buildPackageConfig = bp2buildDefaultConfig
485 config.bp2buildModuleTypeConfig = make(map[string]bool)
Colin Cross3f40fa42015-01-30 17:27:36 -0800486
Jingwen Chenc711fec2020-11-22 23:52:50 -0500487 return Config{config}, err
488}
Colin Cross988414c2020-01-11 01:11:46 +0000489
Colin Cross98be1bb2019-12-13 20:41:13 -0800490// mockFileSystem replaces all reads with accesses to the provided map of
491// filenames to contents stored as a byte slice.
492func (c *config) mockFileSystem(bp string, fs map[string][]byte) {
493 mockFS := map[string][]byte{}
494
495 if _, exists := mockFS["Android.bp"]; !exists {
496 mockFS["Android.bp"] = []byte(bp)
497 }
498
499 for k, v := range fs {
500 mockFS[k] = v
501 }
502
503 // no module list file specified; find every file named Blueprints or Android.bp
504 pathsToParse := []string{}
505 for candidate := range mockFS {
506 base := filepath.Base(candidate)
507 if base == "Blueprints" || base == "Android.bp" {
508 pathsToParse = append(pathsToParse, candidate)
509 }
510 }
511 if len(pathsToParse) < 1 {
512 panic(fmt.Sprintf("No Blueprint or Android.bp files found in mock filesystem: %v\n", mockFS))
513 }
514 mockFS[blueprint.MockModuleListFile] = []byte(strings.Join(pathsToParse, "\n"))
515
516 c.fs = pathtools.MockFs(mockFS)
517 c.mockBpList = blueprint.MockModuleListFile
518}
519
Colin Crosse87040b2017-12-11 15:52:26 -0800520func (c *config) StopBefore() bootstrap.StopBefore {
521 return c.stopBefore
Dan Willemsen218f6562015-07-08 18:13:11 -0700522}
523
Jingwen Chenc711fec2020-11-22 23:52:50 -0500524// SetStopBefore configures soong_build to exit earlier at a specific point.
Colin Crosse87040b2017-12-11 15:52:26 -0800525func (c *config) SetStopBefore(stopBefore bootstrap.StopBefore) {
526 c.stopBefore = stopBefore
527}
528
Lukacs T. Berkid1e3f1f2021-03-16 08:55:23 +0100529func (c *config) SetAllowMissingDependencies() {
530 c.productVariables.Allow_missing_dependencies = proptools.BoolPtr(true)
531}
532
Colin Crosse87040b2017-12-11 15:52:26 -0800533var _ bootstrap.ConfigStopBefore = (*config)(nil)
534
Jingwen Chenc711fec2020-11-22 23:52:50 -0500535// BlueprintToolLocation returns the directory containing build system tools
536// from Blueprint, like soong_zip and merge_zips.
Dan Willemsenc2aa4a92016-05-26 15:13:03 -0700537func (c *config) BlueprintToolLocation() string {
538 return filepath.Join(c.buildDir, "host", c.PrebuiltOS(), "bin")
539}
540
Colin Crosse87040b2017-12-11 15:52:26 -0800541var _ bootstrap.ConfigBlueprintToolLocation = (*config)(nil)
542
Dan Willemsen60e62f02018-11-16 21:05:32 -0800543func (c *config) HostToolPath(ctx PathContext, tool string) Path {
544 return PathForOutput(ctx, "host", c.PrebuiltOS(), "bin", tool)
545}
546
Martin Stjernholm7260d062019-12-09 21:47:14 +0000547func (c *config) HostJNIToolPath(ctx PathContext, path string) Path {
548 ext := ".so"
549 if runtime.GOOS == "darwin" {
550 ext = ".dylib"
551 }
552 return PathForOutput(ctx, "host", c.PrebuiltOS(), "lib64", path+ext)
553}
554
555func (c *config) HostJavaToolPath(ctx PathContext, path string) Path {
556 return PathForOutput(ctx, "host", c.PrebuiltOS(), "framework", path)
557}
558
Jingwen Chenc711fec2020-11-22 23:52:50 -0500559// PrebuiltOS returns the name of the host OS used in prebuilts directories.
Colin Cross1332b002015-04-07 17:11:30 -0700560func (c *config) PrebuiltOS() string {
Colin Cross3f40fa42015-01-30 17:27:36 -0800561 switch runtime.GOOS {
562 case "linux":
563 return "linux-x86"
564 case "darwin":
565 return "darwin-x86"
566 default:
567 panic("Unknown GOOS")
568 }
569}
570
571// GoRoot returns the path to the root directory of the Go toolchain.
Colin Cross1332b002015-04-07 17:11:30 -0700572func (c *config) GoRoot() string {
Colin Cross3f40fa42015-01-30 17:27:36 -0800573 return fmt.Sprintf("%s/prebuilts/go/%s", c.srcDir, c.PrebuiltOS())
574}
575
Jingwen Chenc711fec2020-11-22 23:52:50 -0500576// PrebuiltBuildTool returns the path to a tool in the prebuilts directory containing
577// checked-in tools, like Kati, Ninja or Toybox, for the current host OS.
Dan Willemsen4e0aa232019-04-10 22:59:54 -0700578func (c *config) PrebuiltBuildTool(ctx PathContext, tool string) Path {
579 return PathForSource(ctx, "prebuilts/build-tools", c.PrebuiltOS(), "bin", tool)
580}
581
Jingwen Chenc711fec2020-11-22 23:52:50 -0500582// CpPreserveSymlinksFlags returns the host-specific flag for the cp(1) command
583// to preserve symlinks.
Colin Cross1332b002015-04-07 17:11:30 -0700584func (c *config) CpPreserveSymlinksFlags() string {
Colin Cross485e5722015-08-27 13:28:01 -0700585 switch runtime.GOOS {
Colin Cross3f40fa42015-01-30 17:27:36 -0800586 case "darwin":
587 return "-R"
588 case "linux":
589 return "-d"
590 default:
591 return ""
592 }
593}
Colin Cross68f55102015-03-25 14:43:57 -0700594
Colin Cross1332b002015-04-07 17:11:30 -0700595func (c *config) Getenv(key string) string {
Colin Cross68f55102015-03-25 14:43:57 -0700596 var val string
597 var exists bool
Colin Crossc1e86a32015-04-15 12:33:28 -0700598 c.envLock.Lock()
Colin Crossc0d58b42017-02-06 15:40:41 -0800599 defer c.envLock.Unlock()
600 if c.envDeps == nil {
601 c.envDeps = make(map[string]string)
602 }
Colin Cross68f55102015-03-25 14:43:57 -0700603 if val, exists = c.envDeps[key]; !exists {
Dan Willemsene7680ba2015-09-11 17:06:19 -0700604 if c.envFrozen {
605 panic("Cannot access new environment variables after envdeps are frozen")
606 }
Colin Cross6ccbc912017-10-10 23:07:38 -0700607 val, _ = c.env[key]
Colin Cross68f55102015-03-25 14:43:57 -0700608 c.envDeps[key] = val
609 }
610 return val
611}
612
Colin Cross99d7c232016-11-23 16:52:04 -0800613func (c *config) GetenvWithDefault(key string, defaultValue string) string {
614 ret := c.Getenv(key)
615 if ret == "" {
616 return defaultValue
617 }
618 return ret
619}
620
621func (c *config) IsEnvTrue(key string) bool {
622 value := c.Getenv(key)
623 return value == "1" || value == "y" || value == "yes" || value == "on" || value == "true"
624}
625
626func (c *config) IsEnvFalse(key string) bool {
627 value := c.Getenv(key)
628 return value == "0" || value == "n" || value == "no" || value == "off" || value == "false"
629}
630
Jingwen Chenc711fec2020-11-22 23:52:50 -0500631// EnvDeps returns the environment variables this build depends on. The first
632// call to this function blocks future reads from the environment.
Colin Cross1332b002015-04-07 17:11:30 -0700633func (c *config) EnvDeps() map[string]string {
Dan Willemsene7680ba2015-09-11 17:06:19 -0700634 c.envLock.Lock()
Colin Crossc0d58b42017-02-06 15:40:41 -0800635 defer c.envLock.Unlock()
Dan Willemsene7680ba2015-09-11 17:06:19 -0700636 c.envFrozen = true
Colin Cross68f55102015-03-25 14:43:57 -0700637 return c.envDeps
638}
Colin Cross35cec122015-04-02 14:37:16 -0700639
Jingwen Chencda22c92020-11-23 00:22:30 -0500640func (c *config) KatiEnabled() bool {
641 return c.katiEnabled
Dan Willemsen5ba07e82015-12-11 13:51:06 -0800642}
643
Nan Zhang581fd212018-01-10 16:06:12 -0800644func (c *config) BuildId() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800645 return String(c.productVariables.BuildId)
Nan Zhang581fd212018-01-10 16:06:12 -0800646}
647
Jingwen Chenc711fec2020-11-22 23:52:50 -0500648// BuildNumberFile returns the path to a text file containing metadata
649// representing the current build's number.
650//
651// Rules that want to reference the build number should read from this file
652// without depending on it. They will run whenever their other dependencies
653// require them to run and get the current build number. This ensures they don't
654// rebuild on every incremental build when the build number changes.
Colin Cross2a2e0db2020-02-21 16:55:46 -0800655func (c *config) BuildNumberFile(ctx PathContext) Path {
656 return PathForOutput(ctx, String(c.productVariables.BuildNumberFile))
Nan Zhang581fd212018-01-10 16:06:12 -0800657}
658
Jingwen Chenc711fec2020-11-22 23:52:50 -0500659// DeviceName returns the name of the current device target.
Colin Cross35cec122015-04-02 14:37:16 -0700660// TODO: take an AndroidModuleContext to select the device name for multi-device builds
Colin Cross1332b002015-04-07 17:11:30 -0700661func (c *config) DeviceName() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800662 return *c.productVariables.DeviceName
Colin Cross35cec122015-04-02 14:37:16 -0700663}
664
Anton Hansson53c88442019-03-18 15:53:16 +0000665func (c *config) DeviceResourceOverlays() []string {
666 return c.productVariables.DeviceResourceOverlays
667}
668
669func (c *config) ProductResourceOverlays() []string {
670 return c.productVariables.ProductResourceOverlays
Colin Cross30e076a2015-04-13 13:58:27 -0700671}
672
Colin Crossbfd347d2018-05-09 11:11:35 -0700673func (c *config) PlatformVersionName() string {
674 return String(c.productVariables.Platform_version_name)
675}
676
Dan Albert4f378d72020-07-23 17:32:15 -0700677func (c *config) PlatformSdkVersion() ApiLevel {
678 return uncheckedFinalApiLevel(*c.productVariables.Platform_sdk_version)
Colin Cross30e076a2015-04-13 13:58:27 -0700679}
680
Colin Crossd09b0b62018-04-18 11:06:47 -0700681func (c *config) PlatformSdkCodename() string {
682 return String(c.productVariables.Platform_sdk_codename)
683}
684
Colin Cross092c9da2019-04-02 22:56:43 -0700685func (c *config) PlatformSecurityPatch() string {
686 return String(c.productVariables.Platform_security_patch)
687}
688
689func (c *config) PlatformPreviewSdkVersion() string {
690 return String(c.productVariables.Platform_preview_sdk_version)
691}
692
693func (c *config) PlatformMinSupportedTargetSdkVersion() string {
694 return String(c.productVariables.Platform_min_supported_target_sdk_version)
695}
696
697func (c *config) PlatformBaseOS() string {
698 return String(c.productVariables.Platform_base_os)
699}
700
Dan Albert1a246272020-07-06 14:49:35 -0700701func (c *config) MinSupportedSdkVersion() ApiLevel {
702 return uncheckedFinalApiLevel(16)
703}
704
705func (c *config) FinalApiLevels() []ApiLevel {
706 var levels []ApiLevel
Dan Albert4f378d72020-07-23 17:32:15 -0700707 for i := 1; i <= c.PlatformSdkVersion().FinalOrFutureInt(); i++ {
Dan Albert1a246272020-07-06 14:49:35 -0700708 levels = append(levels, uncheckedFinalApiLevel(i))
709 }
710 return levels
711}
712
713func (c *config) PreviewApiLevels() []ApiLevel {
714 var levels []ApiLevel
715 for i, codename := range c.PlatformVersionActiveCodenames() {
716 levels = append(levels, ApiLevel{
717 value: codename,
718 number: i,
719 isPreview: true,
720 })
721 }
722 return levels
723}
724
725func (c *config) AllSupportedApiLevels() []ApiLevel {
726 var levels []ApiLevel
727 levels = append(levels, c.FinalApiLevels()...)
728 return append(levels, c.PreviewApiLevels()...)
Dan Albertf5415d72017-08-17 16:19:59 -0700729}
730
Jingwen Chenc711fec2020-11-22 23:52:50 -0500731// DefaultAppTargetSdk returns the API level that platform apps are targeting.
732// This converts a codename to the exact ApiLevel it represents.
Dan Albert4f378d72020-07-23 17:32:15 -0700733func (c *config) DefaultAppTargetSdk(ctx EarlyModuleContext) ApiLevel {
Colin Crossd09b0b62018-04-18 11:06:47 -0700734 if Bool(c.productVariables.Platform_sdk_final) {
735 return c.PlatformSdkVersion()
Colin Crossd09b0b62018-04-18 11:06:47 -0700736 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500737 codename := c.PlatformSdkCodename()
738 if codename == "" {
739 return NoneApiLevel
740 }
741 if codename == "REL" {
742 panic("Platform_sdk_codename should not be REL when Platform_sdk_final is true")
743 }
744 return ApiLevelOrPanic(ctx, codename)
Colin Crossd09b0b62018-04-18 11:06:47 -0700745}
746
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800747func (c *config) AppsDefaultVersionName() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800748 return String(c.productVariables.AppsDefaultVersionName)
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800749}
750
Dan Albert31384de2017-07-28 12:39:46 -0700751// Codenames that are active in the current lunch target.
752func (c *config) PlatformVersionActiveCodenames() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800753 return c.productVariables.Platform_version_active_codenames
Dan Albert31384de2017-07-28 12:39:46 -0700754}
755
Colin Crossface4e42017-10-30 17:32:15 -0700756func (c *config) ProductAAPTConfig() []string {
Colin Crossa74ca042019-01-31 14:31:51 -0800757 return c.productVariables.AAPTConfig
Colin Cross30e076a2015-04-13 13:58:27 -0700758}
759
Colin Crossface4e42017-10-30 17:32:15 -0700760func (c *config) ProductAAPTPreferredConfig() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800761 return String(c.productVariables.AAPTPreferredConfig)
Colin Cross30e076a2015-04-13 13:58:27 -0700762}
763
Colin Crossface4e42017-10-30 17:32:15 -0700764func (c *config) ProductAAPTCharacteristics() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800765 return String(c.productVariables.AAPTCharacteristics)
Colin Crossface4e42017-10-30 17:32:15 -0700766}
767
768func (c *config) ProductAAPTPrebuiltDPI() []string {
Colin Crossa74ca042019-01-31 14:31:51 -0800769 return c.productVariables.AAPTPrebuiltDPI
Colin Cross30e076a2015-04-13 13:58:27 -0700770}
771
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700772func (c *config) DefaultAppCertificateDir(ctx PathContext) SourcePath {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800773 defaultCert := String(c.productVariables.DefaultAppCertificate)
Colin Cross61ae0b72017-12-01 17:16:02 -0800774 if defaultCert != "" {
775 return PathForSource(ctx, filepath.Dir(defaultCert))
Colin Cross61ae0b72017-12-01 17:16:02 -0800776 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500777 return PathForSource(ctx, "build/make/target/product/security")
Colin Cross30e076a2015-04-13 13:58:27 -0700778}
779
Colin Crosse1731a52017-12-14 11:22:55 -0800780func (c *config) DefaultAppCertificate(ctx PathContext) (pem, key SourcePath) {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800781 defaultCert := String(c.productVariables.DefaultAppCertificate)
Colin Cross61ae0b72017-12-01 17:16:02 -0800782 if defaultCert != "" {
Colin Crosse1731a52017-12-14 11:22:55 -0800783 return PathForSource(ctx, defaultCert+".x509.pem"), PathForSource(ctx, defaultCert+".pk8")
Colin Cross61ae0b72017-12-01 17:16:02 -0800784 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500785 defaultDir := c.DefaultAppCertificateDir(ctx)
786 return defaultDir.Join(ctx, "testkey.x509.pem"), defaultDir.Join(ctx, "testkey.pk8")
Colin Cross30e076a2015-04-13 13:58:27 -0700787}
Colin Cross6ff51382015-12-17 16:39:19 -0800788
Jiyong Park9335a262018-12-24 11:31:58 +0900789func (c *config) ApexKeyDir(ctx ModuleContext) SourcePath {
790 // TODO(b/121224311): define another variable such as TARGET_APEX_KEY_OVERRIDE
791 defaultCert := String(c.productVariables.DefaultAppCertificate)
Dan Willemsen412160e2019-04-09 21:36:26 -0700792 if defaultCert == "" || filepath.Dir(defaultCert) == "build/make/target/product/security" {
Jiyong Park9335a262018-12-24 11:31:58 +0900793 // When defaultCert is unset or is set to the testkeys path, use the APEX keys
794 // that is under the module dir
Colin Cross07e51612019-03-05 12:46:40 -0800795 return pathForModuleSrc(ctx)
Jiyong Park9335a262018-12-24 11:31:58 +0900796 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500797 // If not, APEX keys are under the specified directory
798 return PathForSource(ctx, filepath.Dir(defaultCert))
Jiyong Park9335a262018-12-24 11:31:58 +0900799}
800
Jingwen Chenc711fec2020-11-22 23:52:50 -0500801// AllowMissingDependencies configures Blueprint/Soong to not fail when modules
802// are configured to depend on non-existent modules. Note that this does not
803// affect missing input dependencies at the Ninja level.
Colin Cross6ff51382015-12-17 16:39:19 -0800804func (c *config) AllowMissingDependencies() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800805 return Bool(c.productVariables.Allow_missing_dependencies)
Colin Cross6ff51382015-12-17 16:39:19 -0800806}
Dan Willemsen322acaf2016-01-12 23:07:05 -0800807
Jeongik Cha816a23a2020-07-08 01:09:23 +0900808// Returns true if a full platform source tree cannot be assumed.
Colin Crossfc3674a2017-09-18 17:41:52 -0700809func (c *config) UnbundledBuild() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800810 return Bool(c.productVariables.Unbundled_build)
Colin Crossfc3674a2017-09-18 17:41:52 -0700811}
812
Martin Stjernholmfd9eb4b2020-06-17 01:13:15 +0100813// Returns true if building apps that aren't bundled with the platform.
814// UnbundledBuild() is always true when this is true.
815func (c *config) UnbundledBuildApps() bool {
816 return Bool(c.productVariables.Unbundled_build_apps)
817}
818
Jeongik Cha4b073cd2021-06-08 11:35:00 +0900819// Returns true if building image that aren't bundled with the platform.
820// UnbundledBuild() is always true when this is true.
821func (c *config) UnbundledBuildImage() bool {
822 return Bool(c.productVariables.Unbundled_build_image)
823}
824
Jeongik Cha816a23a2020-07-08 01:09:23 +0900825// Returns true if building modules against prebuilt SDKs.
826func (c *config) AlwaysUsePrebuiltSdks() bool {
827 return Bool(c.productVariables.Always_use_prebuilt_sdks)
Colin Cross1f367bf2018-12-18 22:46:24 -0800828}
829
Paul Duffin9a89a2a2020-10-28 19:20:06 +0000830// Returns true if the boot jars check should be skipped.
831func (c *config) SkipBootJarsCheck() bool {
832 return Bool(c.productVariables.Skip_boot_jars_check)
833}
834
Colin Cross126a25c2017-10-31 13:55:34 -0700835func (c *config) MinimizeJavaDebugInfo() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800836 return Bool(c.productVariables.MinimizeJavaDebugInfo) && !Bool(c.productVariables.Eng)
Colin Cross126a25c2017-10-31 13:55:34 -0700837}
838
Colin Crossed064c02018-09-05 16:28:13 -0700839func (c *config) Debuggable() bool {
840 return Bool(c.productVariables.Debuggable)
841}
842
Jaewoong Jung1d6eb682018-11-29 15:08:44 -0800843func (c *config) Eng() bool {
844 return Bool(c.productVariables.Eng)
845}
846
Jiyong Park8d52f862018-07-07 18:02:07 +0900847func (c *config) DevicePrimaryArchType() ArchType {
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700848 return c.Targets[Android][0].Arch.ArchType
Jiyong Park8d52f862018-07-07 18:02:07 +0900849}
850
Colin Cross16b23492016-01-06 14:41:07 -0800851func (c *config) SanitizeHost() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800852 return append([]string(nil), c.productVariables.SanitizeHost...)
Colin Cross16b23492016-01-06 14:41:07 -0800853}
854
855func (c *config) SanitizeDevice() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800856 return append([]string(nil), c.productVariables.SanitizeDevice...)
Colin Cross23ae82a2016-11-02 14:34:39 -0700857}
858
Ivan Lozano0c3a1ef2017-06-28 09:10:48 -0700859func (c *config) SanitizeDeviceDiag() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800860 return append([]string(nil), c.productVariables.SanitizeDeviceDiag...)
Ivan Lozano0c3a1ef2017-06-28 09:10:48 -0700861}
862
Colin Cross23ae82a2016-11-02 14:34:39 -0700863func (c *config) SanitizeDeviceArch() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800864 return append([]string(nil), c.productVariables.SanitizeDeviceArch...)
Colin Cross16b23492016-01-06 14:41:07 -0800865}
Colin Crossa1ad8d12016-06-01 17:09:44 -0700866
Vishwath Mohan1b017a72017-01-19 13:54:55 -0800867func (c *config) EnableCFI() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800868 if c.productVariables.EnableCFI == nil {
Vishwath Mohanc32c3eb2017-01-24 14:20:54 -0800869 return true
Vishwath Mohanc32c3eb2017-01-24 14:20:54 -0800870 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500871 return *c.productVariables.EnableCFI
Vishwath Mohan1b017a72017-01-19 13:54:55 -0800872}
873
Kostya Kortchinskyd5275c82019-02-01 08:42:56 -0800874func (c *config) DisableScudo() bool {
875 return Bool(c.productVariables.DisableScudo)
876}
877
Colin Crossa1ad8d12016-06-01 17:09:44 -0700878func (c *config) Android64() bool {
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700879 for _, t := range c.Targets[Android] {
Colin Crossa1ad8d12016-06-01 17:09:44 -0700880 if t.Arch.ArchType.Multilib == "lib64" {
881 return true
882 }
883 }
884
885 return false
886}
Colin Cross9272ade2016-08-17 15:24:12 -0700887
Colin Cross9d45bb72016-08-29 16:14:13 -0700888func (c *config) UseGoma() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800889 return Bool(c.productVariables.UseGoma)
Colin Cross9d45bb72016-08-29 16:14:13 -0700890}
891
Ramy Medhatbbf25672019-07-17 12:30:04 +0000892func (c *config) UseRBE() bool {
893 return Bool(c.productVariables.UseRBE)
894}
895
Ramy Medhat8ea054a2020-01-27 14:19:44 -0500896func (c *config) UseRBEJAVAC() bool {
897 return Bool(c.productVariables.UseRBEJAVAC)
898}
899
900func (c *config) UseRBER8() bool {
901 return Bool(c.productVariables.UseRBER8)
902}
903
904func (c *config) UseRBED8() bool {
905 return Bool(c.productVariables.UseRBED8)
906}
907
Colin Cross8b8bec32019-11-15 13:18:43 -0800908func (c *config) UseRemoteBuild() bool {
909 return c.UseGoma() || c.UseRBE()
910}
911
Colin Cross66548102018-06-19 22:47:35 -0700912func (c *config) RunErrorProne() bool {
913 return c.IsEnvTrue("RUN_ERROR_PRONE")
914}
915
Jingwen Chenc711fec2020-11-22 23:52:50 -0500916// XrefCorpusName returns the Kythe cross-reference corpus name.
Sasha Smundak2a4549e2018-11-05 16:49:08 -0800917func (c *config) XrefCorpusName() string {
918 return c.Getenv("XREF_CORPUS")
919}
920
Jingwen Chenc711fec2020-11-22 23:52:50 -0500921// XrefCuEncoding returns the compilation unit encoding to use for Kythe code
922// xrefs. Can be 'json' (default), 'proto' or 'all'.
Sasha Smundak6c2d4f92020-01-09 17:34:23 -0800923func (c *config) XrefCuEncoding() string {
924 if enc := c.Getenv("KYTHE_KZIP_ENCODING"); enc != "" {
925 return enc
926 }
927 return "json"
928}
929
Sasha Smundakb0addaf2021-02-16 10:39:40 -0800930// XrefCuJavaSourceMax returns the maximum number of the Java source files
931// in a single compilation unit
932const xrefJavaSourceFileMaxDefault = "1000"
933
934func (c Config) XrefCuJavaSourceMax() string {
935 v := c.Getenv("KYTHE_JAVA_SOURCE_BATCH_SIZE")
936 if v == "" {
937 return xrefJavaSourceFileMaxDefault
938 }
939 if _, err := strconv.ParseUint(v, 0, 0); err != nil {
940 fmt.Fprintf(os.Stderr,
941 "bad KYTHE_JAVA_SOURCE_BATCH_SIZE value: %s, will use %s",
942 err, xrefJavaSourceFileMaxDefault)
943 return xrefJavaSourceFileMaxDefault
944 }
945 return v
946
947}
948
Sasha Smundak2a4549e2018-11-05 16:49:08 -0800949func (c *config) EmitXrefRules() bool {
950 return c.XrefCorpusName() != ""
951}
952
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700953func (c *config) ClangTidy() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800954 return Bool(c.productVariables.ClangTidy)
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700955}
956
957func (c *config) TidyChecks() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800958 if c.productVariables.TidyChecks == nil {
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700959 return ""
960 }
Dan Willemsen45133ac2018-03-09 21:22:06 -0800961 return *c.productVariables.TidyChecks
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700962}
963
Colin Cross0f4e0d62016-07-27 10:56:55 -0700964func (c *config) LibartImgHostBaseAddress() string {
965 return "0x60000000"
966}
967
968func (c *config) LibartImgDeviceBaseAddress() string {
Elliott Hughesda3a0712020-03-06 16:55:28 -0800969 return "0x70000000"
Colin Cross0f4e0d62016-07-27 10:56:55 -0700970}
971
Hiroshi Yamauchie2a10632016-12-19 13:44:41 -0800972func (c *config) ArtUseReadBarrier() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800973 return Bool(c.productVariables.ArtUseReadBarrier)
Hiroshi Yamauchie2a10632016-12-19 13:44:41 -0800974}
975
Jingwen Chenc711fec2020-11-22 23:52:50 -0500976// Enforce Runtime Resource Overlays for a module. RROs supersede static RROs,
977// but some modules still depend on it.
978//
979// More info: https://source.android.com/devices/architecture/rros
Dan Willemsen3fb1fae2018-03-12 15:30:26 -0700980func (c *config) EnforceRROForModule(name string) bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800981 enforceList := c.productVariables.EnforceRROTargets
Jeongik Chacee5ba92021-02-19 12:11:51 +0900982
Roland Levillainf6cc2612020-07-09 16:58:14 +0100983 if len(enforceList) > 0 {
Yo Chiang4ebd06a2019-10-01 13:13:41 +0800984 if InList("*", enforceList) {
Dan Willemsen3fb1fae2018-03-12 15:30:26 -0700985 return true
986 }
Colin Crossa74ca042019-01-31 14:31:51 -0800987 return InList(name, enforceList)
Dan Willemsen3fb1fae2018-03-12 15:30:26 -0700988 }
989 return false
990}
Dan Willemsen3fb1fae2018-03-12 15:30:26 -0700991func (c *config) EnforceRROExcludedOverlay(path string) bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800992 excluded := c.productVariables.EnforceRROExcludedOverlays
Roland Levillainf6cc2612020-07-09 16:58:14 +0100993 if len(excluded) > 0 {
Jaewoong Jung3aff5782020-02-11 07:54:35 -0800994 return HasAnyPrefix(path, excluded)
Dan Willemsen3fb1fae2018-03-12 15:30:26 -0700995 }
996 return false
997}
998
999func (c *config) ExportedNamespaces() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001000 return append([]string(nil), c.productVariables.NamespacesToExport...)
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001001}
1002
1003func (c *config) HostStaticBinaries() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001004 return Bool(c.productVariables.HostStaticBinaries)
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001005}
1006
Colin Cross5a0dcd52018-10-05 14:20:06 -07001007func (c *config) UncompressPrivAppDex() bool {
1008 return Bool(c.productVariables.UncompressPrivAppDex)
1009}
1010
1011func (c *config) ModulesLoadedByPrivilegedModules() []string {
1012 return c.productVariables.ModulesLoadedByPrivilegedModules
1013}
1014
Jingwen Chenc711fec2020-11-22 23:52:50 -05001015// DexpreoptGlobalConfigPath returns the path to the dexpreopt.config file in
1016// the output directory, if it was created during the product configuration
1017// phase by Kati.
Jingwen Chenebb0b572020-11-02 00:24:57 -05001018func (c *config) DexpreoptGlobalConfigPath(ctx PathContext) OptionalPath {
Colin Cross988414c2020-01-11 01:11:46 +00001019 if c.productVariables.DexpreoptGlobalConfig == nil {
Jingwen Chenebb0b572020-11-02 00:24:57 -05001020 return OptionalPathForPath(nil)
1021 }
1022 return OptionalPathForPath(
1023 pathForBuildToolDep(ctx, *c.productVariables.DexpreoptGlobalConfig))
1024}
1025
Jingwen Chenc711fec2020-11-22 23:52:50 -05001026// DexpreoptGlobalConfig returns the raw byte contents of the dexpreopt global
1027// configuration. Since the configuration file was created by Kati during
1028// product configuration (externally of soong_build), it's not tracked, so we
1029// also manually add a Ninja file dependency on the configuration file to the
1030// rule that creates the main build.ninja file. This ensures that build.ninja is
1031// regenerated correctly if dexpreopt.config changes.
Jingwen Chenebb0b572020-11-02 00:24:57 -05001032func (c *config) DexpreoptGlobalConfig(ctx PathContext) ([]byte, error) {
1033 path := c.DexpreoptGlobalConfigPath(ctx)
1034 if !path.Valid() {
Colin Cross988414c2020-01-11 01:11:46 +00001035 return nil, nil
1036 }
Jingwen Chenebb0b572020-11-02 00:24:57 -05001037 ctx.AddNinjaFileDeps(path.String())
1038 return ioutil.ReadFile(absolutePath(path.String()))
Colin Cross43f08db2018-11-12 10:13:39 -08001039}
1040
Inseob Kim7b85eeb2021-03-23 20:52:24 +09001041func (c *deviceConfig) WithDexpreopt() bool {
1042 return c.config.productVariables.WithDexpreopt
1043}
1044
David Brazdil91b4e3e2019-01-23 21:04:05 +00001045func (c *config) FrameworksBaseDirExists(ctx PathContext) bool {
Colin Cross5a756a62021-03-16 16:34:46 -07001046 return ExistentPathForSource(ctx, "frameworks", "base", "Android.bp").Valid()
David Brazdil91b4e3e2019-01-23 21:04:05 +00001047}
1048
Inseob Kimae553032019-05-14 18:52:49 +09001049func (c *config) VndkSnapshotBuildArtifacts() bool {
1050 return Bool(c.productVariables.VndkSnapshotBuildArtifacts)
1051}
1052
Colin Cross3b19f5d2019-09-17 14:45:31 -07001053func (c *config) HasMultilibConflict(arch ArchType) bool {
1054 return c.multilibConflicts[arch]
1055}
1056
Bill Peckhambae47492021-01-08 09:34:44 -08001057func (c *config) PrebuiltHiddenApiDir(ctx PathContext) string {
1058 return String(c.productVariables.PrebuiltHiddenApiDir)
1059}
1060
Colin Cross9272ade2016-08-17 15:24:12 -07001061func (c *deviceConfig) Arches() []Arch {
1062 var arches []Arch
Dan Willemsen0ef639b2018-10-10 17:02:29 -07001063 for _, target := range c.config.Targets[Android] {
Colin Cross9272ade2016-08-17 15:24:12 -07001064 arches = append(arches, target.Arch)
1065 }
1066 return arches
1067}
Dan Willemsend2ede872016-11-18 14:54:24 -08001068
Jayant Chowdhary34ce67d2018-03-08 11:00:50 -08001069func (c *deviceConfig) BinderBitness() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001070 is32BitBinder := c.config.productVariables.Binder32bit
Jayant Chowdhary34ce67d2018-03-08 11:00:50 -08001071 if is32BitBinder != nil && *is32BitBinder {
1072 return "32"
1073 }
1074 return "64"
1075}
1076
Dan Willemsen4353bc42016-12-05 17:16:02 -08001077func (c *deviceConfig) VendorPath() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001078 if c.config.productVariables.VendorPath != nil {
1079 return *c.config.productVariables.VendorPath
Dan Willemsen4353bc42016-12-05 17:16:02 -08001080 }
1081 return "vendor"
1082}
1083
Justin Yun71549282017-11-17 12:10:28 +09001084func (c *deviceConfig) VndkVersion() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001085 return String(c.config.productVariables.DeviceVndkVersion)
Justin Yun71549282017-11-17 12:10:28 +09001086}
1087
Jose Galmes6f843bc2020-12-11 13:36:29 -08001088func (c *deviceConfig) RecoverySnapshotVersion() string {
1089 return String(c.config.productVariables.RecoverySnapshotVersion)
1090}
1091
Jeongik Cha219141c2020-08-06 23:00:37 +09001092func (c *deviceConfig) CurrentApiLevelForVendorModules() string {
1093 return StringDefault(c.config.productVariables.DeviceCurrentApiLevelForVendorModules, "current")
1094}
1095
Justin Yun8fe12122017-12-07 17:18:15 +09001096func (c *deviceConfig) PlatformVndkVersion() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001097 return String(c.config.productVariables.Platform_vndk_version)
Justin Yun8fe12122017-12-07 17:18:15 +09001098}
1099
Justin Yun5f7f7e82019-11-18 19:52:14 +09001100func (c *deviceConfig) ProductVndkVersion() string {
1101 return String(c.config.productVariables.ProductVndkVersion)
1102}
1103
Justin Yun71549282017-11-17 12:10:28 +09001104func (c *deviceConfig) ExtraVndkVersions() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001105 return c.config.productVariables.ExtraVndkVersions
Dan Willemsend2ede872016-11-18 14:54:24 -08001106}
Jack He8cc71432016-12-08 15:45:07 -08001107
Vic Yangefd249e2018-11-12 20:19:56 -08001108func (c *deviceConfig) VndkUseCoreVariant() bool {
1109 return Bool(c.config.productVariables.VndkUseCoreVariant)
1110}
1111
Jiyong Park1a5d7b12018-01-15 15:05:10 +09001112func (c *deviceConfig) SystemSdkVersions() []string {
Colin Crossa74ca042019-01-31 14:31:51 -08001113 return c.config.productVariables.DeviceSystemSdkVersions
Jiyong Park1a5d7b12018-01-15 15:05:10 +09001114}
1115
1116func (c *deviceConfig) PlatformSystemSdkVersions() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001117 return c.config.productVariables.Platform_systemsdk_versions
Jiyong Park1a5d7b12018-01-15 15:05:10 +09001118}
1119
Jiyong Park2db76922017-11-08 16:03:48 +09001120func (c *deviceConfig) OdmPath() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001121 if c.config.productVariables.OdmPath != nil {
1122 return *c.config.productVariables.OdmPath
Jiyong Park2db76922017-11-08 16:03:48 +09001123 }
1124 return "odm"
1125}
1126
Jaekyun Seok5cfbfbb2018-01-10 19:00:15 +09001127func (c *deviceConfig) ProductPath() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001128 if c.config.productVariables.ProductPath != nil {
1129 return *c.config.productVariables.ProductPath
Jiyong Park2db76922017-11-08 16:03:48 +09001130 }
Jaekyun Seok5cfbfbb2018-01-10 19:00:15 +09001131 return "product"
Jiyong Park2db76922017-11-08 16:03:48 +09001132}
1133
Justin Yund5f6c822019-06-25 16:47:17 +09001134func (c *deviceConfig) SystemExtPath() string {
1135 if c.config.productVariables.SystemExtPath != nil {
1136 return *c.config.productVariables.SystemExtPath
Dario Frenifd05a742018-05-29 13:28:54 +01001137 }
Justin Yund5f6c822019-06-25 16:47:17 +09001138 return "system_ext"
Dario Frenifd05a742018-05-29 13:28:54 +01001139}
1140
Jack He8cc71432016-12-08 15:45:07 -08001141func (c *deviceConfig) BtConfigIncludeDir() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001142 return String(c.config.productVariables.BtConfigIncludeDir)
Jack He8cc71432016-12-08 15:45:07 -08001143}
Dan Willemsen581341d2017-02-09 16:16:31 -08001144
Jiyong Parkd773eb32017-07-03 13:18:12 +09001145func (c *deviceConfig) DeviceKernelHeaderDirs() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001146 return c.config.productVariables.DeviceKernelHeaders
Jiyong Parkd773eb32017-07-03 13:18:12 +09001147}
1148
Yi Kongceb5b762020-03-20 15:22:27 +08001149func (c *deviceConfig) SamplingPGO() bool {
1150 return Bool(c.config.productVariables.SamplingPGO)
1151}
1152
Roland Levillainada12702020-06-09 13:07:36 +01001153// JavaCoverageEnabledForPath returns whether Java code coverage is enabled for
1154// path. Coverage is enabled by default when the product variable
1155// JavaCoveragePaths is empty. If JavaCoveragePaths is not empty, coverage is
1156// enabled for any path which is part of this variable (and not part of the
1157// JavaCoverageExcludePaths product variable). Value "*" in JavaCoveragePaths
1158// represents any path.
1159func (c *deviceConfig) JavaCoverageEnabledForPath(path string) bool {
1160 coverage := false
Chris Gross2f748692020-06-24 20:36:59 +00001161 if len(c.config.productVariables.JavaCoveragePaths) == 0 ||
Roland Levillainada12702020-06-09 13:07:36 +01001162 InList("*", c.config.productVariables.JavaCoveragePaths) ||
1163 HasAnyPrefix(path, c.config.productVariables.JavaCoveragePaths) {
1164 coverage = true
1165 }
Roland Levillainf6cc2612020-07-09 16:58:14 +01001166 if coverage && len(c.config.productVariables.JavaCoverageExcludePaths) > 0 {
Roland Levillainada12702020-06-09 13:07:36 +01001167 if HasAnyPrefix(path, c.config.productVariables.JavaCoverageExcludePaths) {
1168 coverage = false
1169 }
1170 }
1171 return coverage
1172}
1173
Colin Cross1a6acd42020-06-16 17:51:46 -07001174// Returns true if gcov or clang coverage is enabled.
Dan Willemsen581341d2017-02-09 16:16:31 -08001175func (c *deviceConfig) NativeCoverageEnabled() bool {
Colin Cross1a6acd42020-06-16 17:51:46 -07001176 return Bool(c.config.productVariables.GcovCoverage) ||
1177 Bool(c.config.productVariables.ClangCoverage)
Dan Willemsen581341d2017-02-09 16:16:31 -08001178}
1179
Oliver Nguyen1382ab62019-12-06 15:22:41 -08001180func (c *deviceConfig) ClangCoverageEnabled() bool {
1181 return Bool(c.config.productVariables.ClangCoverage)
1182}
1183
Colin Cross1a6acd42020-06-16 17:51:46 -07001184func (c *deviceConfig) GcovCoverageEnabled() bool {
1185 return Bool(c.config.productVariables.GcovCoverage)
1186}
1187
Roland Levillain4f5297b2020-06-09 12:44:06 +01001188// NativeCoverageEnabledForPath returns whether (GCOV- or Clang-based) native
1189// code coverage is enabled for path. By default, coverage is not enabled for a
1190// given path unless it is part of the NativeCoveragePaths product variable (and
1191// not part of the NativeCoverageExcludePaths product variable). Value "*" in
1192// NativeCoveragePaths represents any path.
1193func (c *deviceConfig) NativeCoverageEnabledForPath(path string) bool {
Ryan Campbell469a18a2017-02-27 09:01:54 -08001194 coverage := false
Roland Levillainf6cc2612020-07-09 16:58:14 +01001195 if len(c.config.productVariables.NativeCoveragePaths) > 0 {
Roland Levillain4f5297b2020-06-09 12:44:06 +01001196 if InList("*", c.config.productVariables.NativeCoveragePaths) || HasAnyPrefix(path, c.config.productVariables.NativeCoveragePaths) {
Ivan Lozano5f595532017-07-13 14:46:05 -07001197 coverage = true
Dan Willemsen581341d2017-02-09 16:16:31 -08001198 }
1199 }
Roland Levillainf6cc2612020-07-09 16:58:14 +01001200 if coverage && len(c.config.productVariables.NativeCoverageExcludePaths) > 0 {
Roland Levillain4f5297b2020-06-09 12:44:06 +01001201 if HasAnyPrefix(path, c.config.productVariables.NativeCoverageExcludePaths) {
Ivan Lozano5f595532017-07-13 14:46:05 -07001202 coverage = false
Ryan Campbell469a18a2017-02-27 09:01:54 -08001203 }
1204 }
1205 return coverage
Dan Willemsen581341d2017-02-09 16:16:31 -08001206}
Ivan Lozano5f595532017-07-13 14:46:05 -07001207
Pirama Arumuga Nainar49540802018-01-29 23:11:42 -08001208func (c *deviceConfig) PgoAdditionalProfileDirs() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001209 return c.config.productVariables.PgoAdditionalProfileDirs
Pirama Arumuga Nainar49540802018-01-29 23:11:42 -08001210}
1211
Tri Vo35a51432018-03-25 20:00:00 -07001212func (c *deviceConfig) VendorSepolicyDirs() []string {
1213 return c.config.productVariables.BoardVendorSepolicyDirs
1214}
1215
1216func (c *deviceConfig) OdmSepolicyDirs() []string {
1217 return c.config.productVariables.BoardOdmSepolicyDirs
1218}
1219
Felixa20a8752020-05-17 18:28:35 +02001220func (c *deviceConfig) SystemExtPublicSepolicyDirs() []string {
1221 return c.config.productVariables.SystemExtPublicSepolicyDirs
Tri Vo35a51432018-03-25 20:00:00 -07001222}
1223
Felixa20a8752020-05-17 18:28:35 +02001224func (c *deviceConfig) SystemExtPrivateSepolicyDirs() []string {
1225 return c.config.productVariables.SystemExtPrivateSepolicyDirs
Tri Vo35a51432018-03-25 20:00:00 -07001226}
1227
Inseob Kim0866b002019-04-15 20:21:29 +09001228func (c *deviceConfig) SepolicyM4Defs() []string {
1229 return c.config.productVariables.BoardSepolicyM4Defs
1230}
1231
Jiyong Park7f67f482019-01-05 12:57:48 +09001232func (c *deviceConfig) OverrideManifestPackageNameFor(name string) (manifestName string, overridden bool) {
Jaewoong Jung2ad817c2019-01-18 14:27:16 -08001233 return findOverrideValue(c.config.productVariables.ManifestPackageNameOverrides, name,
1234 "invalid override rule %q in PRODUCT_MANIFEST_PACKAGE_NAME_OVERRIDES should be <module_name>:<manifest_name>")
1235}
1236
1237func (c *deviceConfig) OverrideCertificateFor(name string) (certificatePath string, overridden bool) {
Jaewoong Jungacb6db32019-02-28 16:22:30 +00001238 return findOverrideValue(c.config.productVariables.CertificateOverrides, name,
Jaewoong Jung2ad817c2019-01-18 14:27:16 -08001239 "invalid override rule %q in PRODUCT_CERTIFICATE_OVERRIDES should be <module_name>:<certificate_module_name>")
1240}
1241
Jaewoong Jung9d22a912019-01-23 16:27:47 -08001242func (c *deviceConfig) OverridePackageNameFor(name string) string {
1243 newName, overridden := findOverrideValue(
1244 c.config.productVariables.PackageNameOverrides,
1245 name,
1246 "invalid override rule %q in PRODUCT_PACKAGE_NAME_OVERRIDES should be <module_name>:<package_name>")
1247 if overridden {
1248 return newName
1249 }
1250 return name
1251}
1252
Jaewoong Jung2ad817c2019-01-18 14:27:16 -08001253func findOverrideValue(overrides []string, name string, errorMsg string) (newValue string, overridden bool) {
Jiyong Park7f67f482019-01-05 12:57:48 +09001254 if overrides == nil || len(overrides) == 0 {
1255 return "", false
1256 }
1257 for _, o := range overrides {
1258 split := strings.Split(o, ":")
1259 if len(split) != 2 {
1260 // This shouldn't happen as this is first checked in make, but just in case.
Jaewoong Jung2ad817c2019-01-18 14:27:16 -08001261 panic(fmt.Errorf(errorMsg, o))
Jiyong Park7f67f482019-01-05 12:57:48 +09001262 }
1263 if matchPattern(split[0], name) {
1264 return substPattern(split[0], split[1], name), true
1265 }
1266 }
1267 return "", false
1268}
1269
Ivan Lozano5f595532017-07-13 14:46:05 -07001270func (c *config) IntegerOverflowDisabledForPath(path string) bool {
Roland Levillainf6cc2612020-07-09 16:58:14 +01001271 if len(c.productVariables.IntegerOverflowExcludePaths) == 0 {
Ivan Lozano5f595532017-07-13 14:46:05 -07001272 return false
1273 }
Jaewoong Jung3aff5782020-02-11 07:54:35 -08001274 return HasAnyPrefix(path, c.productVariables.IntegerOverflowExcludePaths)
Ivan Lozano5f595532017-07-13 14:46:05 -07001275}
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001276
1277func (c *config) CFIDisabledForPath(path string) bool {
Roland Levillainf6cc2612020-07-09 16:58:14 +01001278 if len(c.productVariables.CFIExcludePaths) == 0 {
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001279 return false
1280 }
Jaewoong Jung3aff5782020-02-11 07:54:35 -08001281 return HasAnyPrefix(path, c.productVariables.CFIExcludePaths)
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001282}
1283
1284func (c *config) CFIEnabledForPath(path string) bool {
Roland Levillainf6cc2612020-07-09 16:58:14 +01001285 if len(c.productVariables.CFIIncludePaths) == 0 {
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001286 return false
1287 }
Evgenii Stepanov779b64e2021-04-09 14:33:10 -07001288 return HasAnyPrefix(path, c.productVariables.CFIIncludePaths) && !c.CFIDisabledForPath(path)
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001289}
Colin Crosse15ddaf2017-12-04 11:24:31 -08001290
Evgenii Stepanov4beaa0c2021-01-05 16:41:26 -08001291func (c *config) MemtagHeapDisabledForPath(path string) bool {
1292 if len(c.productVariables.MemtagHeapExcludePaths) == 0 {
1293 return false
1294 }
1295 return HasAnyPrefix(path, c.productVariables.MemtagHeapExcludePaths)
1296}
1297
1298func (c *config) MemtagHeapAsyncEnabledForPath(path string) bool {
1299 if len(c.productVariables.MemtagHeapAsyncIncludePaths) == 0 {
1300 return false
1301 }
Evgenii Stepanov779b64e2021-04-09 14:33:10 -07001302 return HasAnyPrefix(path, c.productVariables.MemtagHeapAsyncIncludePaths) && !c.MemtagHeapDisabledForPath(path)
Evgenii Stepanov4beaa0c2021-01-05 16:41:26 -08001303}
1304
1305func (c *config) MemtagHeapSyncEnabledForPath(path string) bool {
1306 if len(c.productVariables.MemtagHeapSyncIncludePaths) == 0 {
1307 return false
1308 }
Evgenii Stepanov779b64e2021-04-09 14:33:10 -07001309 return HasAnyPrefix(path, c.productVariables.MemtagHeapSyncIncludePaths) && !c.MemtagHeapDisabledForPath(path)
Evgenii Stepanov4beaa0c2021-01-05 16:41:26 -08001310}
1311
Dan Willemsen0fe78662018-03-26 12:41:18 -07001312func (c *config) VendorConfig(name string) VendorConfig {
Colin Cross9d34f352019-11-22 16:03:51 -08001313 return soongconfig.Config(c.productVariables.VendorVars[name])
Dan Willemsen0fe78662018-03-26 12:41:18 -07001314}
1315
Colin Cross395f2cf2018-10-24 16:10:32 -07001316func (c *config) NdkAbis() bool {
1317 return Bool(c.productVariables.Ndk_abis)
1318}
1319
Martin Stjernholmc1ecc432019-11-15 15:00:31 +00001320func (c *config) AmlAbis() bool {
1321 return Bool(c.productVariables.Aml_abis)
1322}
1323
Jiyong Park8fd61922018-11-08 02:50:25 +09001324func (c *config) FlattenApex() bool {
Roland Levillaina3863212019-08-12 19:56:16 +01001325 return Bool(c.productVariables.Flatten_apex)
Jiyong Park8fd61922018-11-08 02:50:25 +09001326}
1327
Jiyong Park4da07972021-01-05 21:01:11 +09001328func (c *config) ForceApexSymlinkOptimization() bool {
1329 return Bool(c.productVariables.ForceApexSymlinkOptimization)
1330}
1331
Mohammad Samiul Islam3cd005d2020-11-26 13:32:26 +00001332func (c *config) CompressedApex() bool {
1333 return Bool(c.productVariables.CompressedApex)
1334}
1335
Jeongik Chac9464142019-01-07 12:07:27 +09001336func (c *config) EnforceSystemCertificate() bool {
1337 return Bool(c.productVariables.EnforceSystemCertificate)
1338}
1339
Colin Cross440e0d02020-06-11 11:32:11 -07001340func (c *config) EnforceSystemCertificateAllowList() []string {
1341 return c.productVariables.EnforceSystemCertificateAllowList
Jeongik Chac9464142019-01-07 12:07:27 +09001342}
1343
Jeongik Cha2cc570d2019-10-29 15:44:45 +09001344func (c *config) EnforceProductPartitionInterface() bool {
1345 return Bool(c.productVariables.EnforceProductPartitionInterface)
1346}
1347
JaeMan Parkff715562020-10-19 17:25:58 +09001348func (c *config) EnforceInterPartitionJavaSdkLibrary() bool {
1349 return Bool(c.productVariables.EnforceInterPartitionJavaSdkLibrary)
1350}
1351
1352func (c *config) InterPartitionJavaLibraryAllowList() []string {
1353 return c.productVariables.InterPartitionJavaLibraryAllowList
1354}
1355
Jooyung Han3ab2c3e2019-12-05 16:27:44 +09001356func (c *config) InstallExtraFlattenedApexes() bool {
1357 return Bool(c.productVariables.InstallExtraFlattenedApexes)
1358}
1359
Colin Crossf24a22a2019-01-31 14:12:44 -08001360func (c *config) ProductHiddenAPIStubs() []string {
1361 return c.productVariables.ProductHiddenAPIStubs
Colin Cross8faf8fc2019-01-16 15:15:52 -08001362}
1363
Colin Crossf24a22a2019-01-31 14:12:44 -08001364func (c *config) ProductHiddenAPIStubsSystem() []string {
1365 return c.productVariables.ProductHiddenAPIStubsSystem
Colin Cross8faf8fc2019-01-16 15:15:52 -08001366}
1367
Colin Crossf24a22a2019-01-31 14:12:44 -08001368func (c *config) ProductHiddenAPIStubsTest() []string {
1369 return c.productVariables.ProductHiddenAPIStubsTest
Colin Cross8faf8fc2019-01-16 15:15:52 -08001370}
Dan Willemsen71c74602019-04-10 12:27:35 -07001371
Dan Willemsen54879d12019-04-18 10:08:46 -07001372func (c *deviceConfig) TargetFSConfigGen() []string {
Dan Willemsen71c74602019-04-10 12:27:35 -07001373 return c.config.productVariables.TargetFSConfigGen
1374}
Inseob Kim0866b002019-04-15 20:21:29 +09001375
1376func (c *config) ProductPublicSepolicyDirs() []string {
1377 return c.productVariables.ProductPublicSepolicyDirs
1378}
1379
1380func (c *config) ProductPrivateSepolicyDirs() []string {
1381 return c.productVariables.ProductPrivateSepolicyDirs
1382}
1383
Colin Cross50ddcc42019-05-16 12:28:22 -07001384func (c *config) MissingUsesLibraries() []string {
1385 return c.productVariables.MissingUsesLibraries
1386}
1387
Inseob Kim1f086e22019-05-09 13:29:15 +09001388func (c *deviceConfig) DeviceArch() string {
1389 return String(c.config.productVariables.DeviceArch)
1390}
1391
1392func (c *deviceConfig) DeviceArchVariant() string {
1393 return String(c.config.productVariables.DeviceArchVariant)
1394}
1395
1396func (c *deviceConfig) DeviceSecondaryArch() string {
1397 return String(c.config.productVariables.DeviceSecondaryArch)
1398}
1399
1400func (c *deviceConfig) DeviceSecondaryArchVariant() string {
1401 return String(c.config.productVariables.DeviceSecondaryArchVariant)
1402}
Yifan Hong82db7352020-01-21 16:12:26 -08001403
1404func (c *deviceConfig) BoardUsesRecoveryAsBoot() bool {
1405 return Bool(c.config.productVariables.BoardUsesRecoveryAsBoot)
1406}
Yifan Hong97365ee2020-07-29 09:51:57 -07001407
1408func (c *deviceConfig) BoardKernelBinaries() []string {
1409 return c.config.productVariables.BoardKernelBinaries
1410}
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001411
Yifan Hong42bef8d2020-08-05 14:36:09 -07001412func (c *deviceConfig) BoardKernelModuleInterfaceVersions() []string {
1413 return c.config.productVariables.BoardKernelModuleInterfaceVersions
1414}
1415
Yifan Hongdd8dacc2020-10-21 15:40:17 -07001416func (c *deviceConfig) BoardMoveRecoveryResourcesToVendorBoot() bool {
1417 return Bool(c.config.productVariables.BoardMoveRecoveryResourcesToVendorBoot)
1418}
1419
Inseob Kim16ebd5a2020-12-09 23:08:17 +09001420func (c *deviceConfig) PlatformSepolicyVersion() string {
1421 return String(c.config.productVariables.PlatformSepolicyVersion)
1422}
1423
1424func (c *deviceConfig) BoardSepolicyVers() string {
Inseob Kim0c4eec82021-03-22 22:33:40 +09001425 if ver := String(c.config.productVariables.BoardSepolicyVers); ver != "" {
1426 return ver
1427 }
1428 return c.PlatformSepolicyVersion()
Inseob Kim16ebd5a2020-12-09 23:08:17 +09001429}
1430
1431func (c *deviceConfig) BoardReqdMaskPolicy() []string {
1432 return c.config.productVariables.BoardReqdMaskPolicy
1433}
1434
Inseob Kim7cf14652021-01-06 23:06:52 +09001435func (c *deviceConfig) DirectedVendorSnapshot() bool {
1436 return c.config.productVariables.DirectedVendorSnapshot
1437}
1438
1439func (c *deviceConfig) VendorSnapshotModules() map[string]bool {
1440 return c.config.productVariables.VendorSnapshotModules
1441}
1442
Jose Galmes4c6895e2021-02-09 07:44:30 -08001443func (c *deviceConfig) DirectedRecoverySnapshot() bool {
1444 return c.config.productVariables.DirectedRecoverySnapshot
1445}
1446
1447func (c *deviceConfig) RecoverySnapshotModules() map[string]bool {
1448 return c.config.productVariables.RecoverySnapshotModules
1449}
1450
Justin DeMartino383bfb32021-02-24 10:49:43 -08001451func createDirsMap(previous map[string]bool, dirs []string) (map[string]bool, error) {
1452 var ret = make(map[string]bool)
1453 for _, dir := range dirs {
1454 clean := filepath.Clean(dir)
1455 if previous[clean] || ret[clean] {
1456 return nil, fmt.Errorf("Duplicate entry %s", dir)
1457 }
1458 ret[clean] = true
1459 }
1460 return ret, nil
1461}
1462
1463func (c *deviceConfig) createDirsMapOnce(onceKey OnceKey, previous map[string]bool, dirs []string) map[string]bool {
1464 dirMap := c.Once(onceKey, func() interface{} {
1465 ret, err := createDirsMap(previous, dirs)
1466 if err != nil {
1467 panic(fmt.Errorf("%s: %w", onceKey.key, err))
1468 }
1469 return ret
1470 })
1471 if dirMap == nil {
1472 return nil
1473 }
1474 return dirMap.(map[string]bool)
1475}
1476
1477var vendorSnapshotDirsExcludedKey = NewOnceKey("VendorSnapshotDirsExcludedMap")
1478
1479func (c *deviceConfig) VendorSnapshotDirsExcludedMap() map[string]bool {
1480 return c.createDirsMapOnce(vendorSnapshotDirsExcludedKey, nil,
1481 c.config.productVariables.VendorSnapshotDirsExcluded)
1482}
1483
1484var vendorSnapshotDirsIncludedKey = NewOnceKey("VendorSnapshotDirsIncludedMap")
1485
1486func (c *deviceConfig) VendorSnapshotDirsIncludedMap() map[string]bool {
1487 excludedMap := c.VendorSnapshotDirsExcludedMap()
1488 return c.createDirsMapOnce(vendorSnapshotDirsIncludedKey, excludedMap,
1489 c.config.productVariables.VendorSnapshotDirsIncluded)
1490}
1491
1492var recoverySnapshotDirsExcludedKey = NewOnceKey("RecoverySnapshotDirsExcludedMap")
1493
1494func (c *deviceConfig) RecoverySnapshotDirsExcludedMap() map[string]bool {
1495 return c.createDirsMapOnce(recoverySnapshotDirsExcludedKey, nil,
1496 c.config.productVariables.RecoverySnapshotDirsExcluded)
1497}
1498
1499var recoverySnapshotDirsIncludedKey = NewOnceKey("RecoverySnapshotDirsIncludedMap")
1500
1501func (c *deviceConfig) RecoverySnapshotDirsIncludedMap() map[string]bool {
1502 excludedMap := c.RecoverySnapshotDirsExcludedMap()
1503 return c.createDirsMapOnce(recoverySnapshotDirsIncludedKey, excludedMap,
1504 c.config.productVariables.RecoverySnapshotDirsIncluded)
1505}
1506
Inseob Kim60c32f02020-12-21 22:53:05 +09001507func (c *deviceConfig) ShippingApiLevel() ApiLevel {
1508 if c.config.productVariables.ShippingApiLevel == nil {
1509 return NoneApiLevel
1510 }
1511 apiLevel, _ := strconv.Atoi(*c.config.productVariables.ShippingApiLevel)
1512 return uncheckedFinalApiLevel(apiLevel)
1513}
1514
Inseob Kim67e5add192021-03-17 18:05:33 +09001515func (c *deviceConfig) BuildBrokenEnforceSyspropOwner() bool {
1516 return c.config.productVariables.BuildBrokenEnforceSyspropOwner
1517}
1518
1519func (c *deviceConfig) BuildBrokenTrebleSyspropNeverallow() bool {
1520 return c.config.productVariables.BuildBrokenTrebleSyspropNeverallow
1521}
1522
Hridya Valsaraju5a5c7d52021-04-02 16:45:24 -07001523func (c *deviceConfig) BuildDebugfsRestrictionsEnabled() bool {
1524 return c.config.productVariables.BuildDebugfsRestrictionsEnabled
1525}
1526
Inseob Kim0cac7b42021-02-03 18:16:46 +09001527func (c *deviceConfig) BuildBrokenVendorPropertyNamespace() bool {
1528 return c.config.productVariables.BuildBrokenVendorPropertyNamespace
1529}
1530
Inseob Kim67e5add192021-03-17 18:05:33 +09001531func (c *deviceConfig) RequiresInsecureExecmemForSwiftshader() bool {
1532 return c.config.productVariables.RequiresInsecureExecmemForSwiftshader
1533}
1534
1535func (c *config) SelinuxIgnoreNeverallows() bool {
1536 return c.productVariables.SelinuxIgnoreNeverallows
1537}
1538
1539func (c *deviceConfig) SepolicySplit() bool {
1540 return c.config.productVariables.SepolicySplit
1541}
1542
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001543// The ConfiguredJarList struct provides methods for handling a list of (apex, jar) pairs.
1544// Such lists are used in the build system for things like bootclasspath jars or system server jars.
1545// The apex part is either an apex name, or a special names "platform" or "system_ext". Jar is a
1546// module name. The pairs come from Make product variables as a list of colon-separated strings.
1547//
1548// Examples:
1549// - "com.android.art:core-oj"
1550// - "platform:framework"
1551// - "system_ext:foo"
1552//
1553type ConfiguredJarList struct {
Jingwen Chenc711fec2020-11-22 23:52:50 -05001554 // A list of apex components, which can be an apex name,
1555 // or special names like "platform" or "system_ext".
1556 apexes []string
1557
1558 // A list of jar module name components.
1559 jars []string
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001560}
1561
Jingwen Chenc711fec2020-11-22 23:52:50 -05001562// Len returns the length of the list of jars.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001563func (l *ConfiguredJarList) Len() int {
1564 return len(l.jars)
1565}
1566
Jingwen Chenc711fec2020-11-22 23:52:50 -05001567// Jar returns the idx-th jar component of (apex, jar) pairs.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001568func (l *ConfiguredJarList) Jar(idx int) string {
1569 return l.jars[idx]
1570}
1571
Jingwen Chenc711fec2020-11-22 23:52:50 -05001572// Apex returns the idx-th apex component of (apex, jar) pairs.
Paul Duffin9a89a2a2020-10-28 19:20:06 +00001573func (l *ConfiguredJarList) Apex(idx int) string {
1574 return l.apexes[idx]
1575}
1576
Jingwen Chenc711fec2020-11-22 23:52:50 -05001577// ContainsJar returns true if the (apex, jar) pairs contains a pair with the
1578// given jar module name.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001579func (l *ConfiguredJarList) ContainsJar(jar string) bool {
1580 return InList(jar, l.jars)
1581}
1582
1583// If the list contains the given (apex, jar) pair.
1584func (l *ConfiguredJarList) containsApexJarPair(apex, jar string) bool {
1585 for i := 0; i < l.Len(); i++ {
Paul Duffin1e8c6072020-10-23 18:28:55 +01001586 if apex == l.apexes[i] && jar == l.jars[i] {
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001587 return true
1588 }
1589 }
1590 return false
1591}
1592
satayev3db35472021-05-06 23:59:58 +01001593// ApexOfJar returns the apex component of the first pair with the given jar name on the list, or
1594// an empty string if not found.
1595func (l *ConfiguredJarList) ApexOfJar(jar string) string {
1596 if idx := IndexList(jar, l.jars); idx != -1 {
1597 return l.Apex(IndexList(jar, l.jars))
1598 }
1599 return ""
1600}
1601
Jingwen Chenc711fec2020-11-22 23:52:50 -05001602// IndexOfJar returns the first pair with the given jar name on the list, or -1
1603// if not found.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001604func (l *ConfiguredJarList) IndexOfJar(jar string) int {
1605 return IndexList(jar, l.jars)
1606}
1607
Paul Duffin7d584e92020-10-23 18:26:03 +01001608func copyAndAppend(list []string, item string) []string {
1609 // Create the result list to be 1 longer than the input.
1610 result := make([]string, len(list)+1)
1611
1612 // Copy the whole input list into the result.
1613 count := copy(result, list)
1614
1615 // Insert the extra item at the end.
1616 result[count] = item
1617
1618 return result
1619}
1620
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001621// Append an (apex, jar) pair to the list.
Paul Duffin7d584e92020-10-23 18:26:03 +01001622func (l *ConfiguredJarList) Append(apex string, jar string) ConfiguredJarList {
1623 // Create a copy of the backing arrays before appending to avoid sharing backing
1624 // arrays that are mutated across instances.
1625 apexes := copyAndAppend(l.apexes, apex)
1626 jars := copyAndAppend(l.jars, jar)
1627
1628 return ConfiguredJarList{apexes, jars}
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001629}
1630
Jingwen Chenc711fec2020-11-22 23:52:50 -05001631// RemoveList filters out a list of (apex, jar) pairs from the receiving list of pairs.
Paul Duffin7d584e92020-10-23 18:26:03 +01001632func (l *ConfiguredJarList) RemoveList(list ConfiguredJarList) ConfiguredJarList {
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001633 apexes := make([]string, 0, l.Len())
1634 jars := make([]string, 0, l.Len())
1635
1636 for i, jar := range l.jars {
Paul Duffin1e8c6072020-10-23 18:28:55 +01001637 apex := l.apexes[i]
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001638 if !list.containsApexJarPair(apex, jar) {
1639 apexes = append(apexes, apex)
1640 jars = append(jars, jar)
1641 }
1642 }
1643
Paul Duffin7d584e92020-10-23 18:26:03 +01001644 return ConfiguredJarList{apexes, jars}
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001645}
1646
satayev8fab6f82021-05-07 00:10:33 +01001647// Filter keeps the entries if a jar appears in the given list of jars to keep; returns a new list.
1648func (l *ConfiguredJarList) Filter(jarsToKeep []string) ConfiguredJarList {
1649 var apexes []string
1650 var jars []string
1651
1652 for i, jar := range l.jars {
1653 if InList(jar, jarsToKeep) {
1654 apexes = append(apexes, l.apexes[i])
1655 jars = append(jars, jar)
1656 }
1657 }
1658
1659 return ConfiguredJarList{apexes, jars}
1660}
1661
Jingwen Chenc711fec2020-11-22 23:52:50 -05001662// CopyOfJars returns a copy of the list of strings containing jar module name
1663// components.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001664func (l *ConfiguredJarList) CopyOfJars() []string {
1665 return CopyOf(l.jars)
1666}
1667
Jingwen Chenc711fec2020-11-22 23:52:50 -05001668// CopyOfApexJarPairs returns a copy of the list of strings with colon-separated
1669// (apex, jar) pairs.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001670func (l *ConfiguredJarList) CopyOfApexJarPairs() []string {
1671 pairs := make([]string, 0, l.Len())
1672
1673 for i, jar := range l.jars {
Paul Duffin1e8c6072020-10-23 18:28:55 +01001674 apex := l.apexes[i]
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001675 pairs = append(pairs, apex+":"+jar)
1676 }
1677
1678 return pairs
1679}
1680
Jingwen Chenc711fec2020-11-22 23:52:50 -05001681// BuildPaths returns a list of build paths based on the given directory prefix.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001682func (l *ConfiguredJarList) BuildPaths(ctx PathContext, dir OutputPath) WritablePaths {
1683 paths := make(WritablePaths, l.Len())
1684 for i, jar := range l.jars {
1685 paths[i] = dir.Join(ctx, ModuleStem(jar)+".jar")
1686 }
1687 return paths
1688}
1689
Paul Duffin5f148ca2021-06-02 17:24:22 +01001690// BuildPathsByModule returns a map from module name to build paths based on the given directory
1691// prefix.
1692func (l *ConfiguredJarList) BuildPathsByModule(ctx PathContext, dir OutputPath) map[string]WritablePath {
1693 paths := map[string]WritablePath{}
1694 for _, jar := range l.jars {
1695 paths[jar] = dir.Join(ctx, ModuleStem(jar)+".jar")
1696 }
1697 return paths
1698}
1699
Jingwen Chenc711fec2020-11-22 23:52:50 -05001700// UnmarshalJSON converts JSON configuration from raw bytes into a
1701// ConfiguredJarList structure.
Paul Duffin69d1fb12020-10-23 21:14:20 +01001702func (l *ConfiguredJarList) UnmarshalJSON(b []byte) error {
1703 // Try and unmarshal into a []string each item of which contains a pair
1704 // <apex>:<jar>.
1705 var list []string
1706 err := json.Unmarshal(b, &list)
1707 if err != nil {
1708 // Did not work so return
1709 return err
1710 }
1711
1712 apexes, jars, err := splitListOfPairsIntoPairOfLists(list)
1713 if err != nil {
1714 return err
1715 }
1716 l.apexes = apexes
1717 l.jars = jars
1718 return nil
1719}
1720
Lukacs T. Berki720b3962021-03-17 13:34:30 +01001721func (l *ConfiguredJarList) MarshalJSON() ([]byte, error) {
1722 if len(l.apexes) != len(l.jars) {
1723 return nil, errors.New(fmt.Sprintf("Inconsistent ConfiguredJarList: apexes: %q, jars: %q", l.apexes, l.jars))
1724 }
1725
1726 list := make([]string, 0, len(l.apexes))
1727
1728 for i := 0; i < len(l.apexes); i++ {
1729 list = append(list, l.apexes[i]+":"+l.jars[i])
1730 }
1731
1732 return json.Marshal(list)
1733}
1734
Jingwen Chenc711fec2020-11-22 23:52:50 -05001735// ModuleStem hardcodes the stem of framework-minus-apex to return "framework".
1736//
1737// TODO(b/139391334): hard coded until we find a good way to query the stem of a
1738// module before any other mutators are run.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001739func ModuleStem(module string) string {
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001740 if module == "framework-minus-apex" {
1741 return "framework"
1742 }
1743 return module
1744}
1745
Jingwen Chenc711fec2020-11-22 23:52:50 -05001746// DevicePaths computes the on-device paths for the list of (apex, jar) pairs,
1747// based on the operating system.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001748func (l *ConfiguredJarList) DevicePaths(cfg Config, ostype OsType) []string {
1749 paths := make([]string, l.Len())
1750 for i, jar := range l.jars {
1751 apex := l.apexes[i]
1752 name := ModuleStem(jar) + ".jar"
1753
1754 var subdir string
1755 if apex == "platform" {
1756 subdir = "system/framework"
1757 } else if apex == "system_ext" {
1758 subdir = "system_ext/framework"
1759 } else {
1760 subdir = filepath.Join("apex", apex, "javalib")
1761 }
1762
1763 if ostype.Class == Host {
1764 paths[i] = filepath.Join(cfg.Getenv("OUT_DIR"), "host", cfg.PrebuiltOS(), subdir, name)
1765 } else {
1766 paths[i] = filepath.Join("/", subdir, name)
1767 }
1768 }
1769 return paths
1770}
1771
Paul Duffin7d584e92020-10-23 18:26:03 +01001772func (l *ConfiguredJarList) String() string {
1773 var pairs []string
1774 for i := 0; i < l.Len(); i++ {
1775 pairs = append(pairs, l.apexes[i]+":"+l.jars[i])
1776 }
1777 return strings.Join(pairs, ",")
1778}
1779
Paul Duffin01416602020-10-23 21:04:03 +01001780func splitListOfPairsIntoPairOfLists(list []string) ([]string, []string, error) {
1781 // Now we need to populate this list by splitting each item in the slice of
1782 // pairs and appending them to the appropriate list of apexes or jars.
1783 apexes := make([]string, len(list))
1784 jars := make([]string, len(list))
1785
1786 for i, apexjar := range list {
1787 apex, jar, err := splitConfiguredJarPair(apexjar)
1788 if err != nil {
1789 return nil, nil, err
1790 }
1791 apexes[i] = apex
1792 jars[i] = jar
1793 }
1794
1795 return apexes, jars, nil
1796}
1797
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001798// Expected format for apexJarValue = <apex name>:<jar name>
Paul Duffin01416602020-10-23 21:04:03 +01001799func splitConfiguredJarPair(str string) (string, string, error) {
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001800 pair := strings.SplitN(str, ":", 2)
1801 if len(pair) == 2 {
Paul Duffin9c3ac962021-02-03 14:11:27 +00001802 apex := pair[0]
1803 jar := pair[1]
1804 if apex == "" {
1805 return apex, jar, fmt.Errorf("invalid apex '%s' in <apex>:<jar> pair '%s', expected format: <apex>:<jar>", apex, str)
1806 }
1807 return apex, jar, nil
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001808 } else {
Paul Duffin01416602020-10-23 21:04:03 +01001809 return "error-apex", "error-jar", fmt.Errorf("malformed (apex, jar) pair: '%s', expected format: <apex>:<jar>", str)
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001810 }
1811}
1812
Paul Duffin9c3ac962021-02-03 14:11:27 +00001813// CreateTestConfiguredJarList is a function to create ConfiguredJarList for tests.
Paul Duffine10dfa42020-10-23 21:23:44 +01001814func CreateTestConfiguredJarList(list []string) ConfiguredJarList {
Paul Duffin9c3ac962021-02-03 14:11:27 +00001815 // Create the ConfiguredJarList in as similar way as it is created at runtime by marshalling to
1816 // a json list of strings and then unmarshalling into a ConfiguredJarList instance.
1817 b, err := json.Marshal(list)
Paul Duffin01416602020-10-23 21:04:03 +01001818 if err != nil {
Paul Duffine10dfa42020-10-23 21:23:44 +01001819 panic(err)
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001820 }
1821
Paul Duffin9c3ac962021-02-03 14:11:27 +00001822 var jarList ConfiguredJarList
1823 err = json.Unmarshal(b, &jarList)
1824 if err != nil {
1825 panic(err)
1826 }
1827
1828 return jarList
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001829}
1830
Jingwen Chenc711fec2020-11-22 23:52:50 -05001831// EmptyConfiguredJarList returns an empty jar list.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001832func EmptyConfiguredJarList() ConfiguredJarList {
1833 return ConfiguredJarList{}
1834}
1835
1836var earlyBootJarsKey = NewOnceKey("earlyBootJars")
1837
1838func (c *config) BootJars() []string {
1839 return c.Once(earlyBootJarsKey, func() interface{} {
Paul Duffin69d1fb12020-10-23 21:14:20 +01001840 list := c.productVariables.BootJars.CopyOfJars()
Jingwen Chenc711fec2020-11-22 23:52:50 -05001841 return append(list, c.productVariables.UpdatableBootJars.CopyOfJars()...)
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001842 }).([]string)
1843}
Paul Duffin9a89a2a2020-10-28 19:20:06 +00001844
1845func (c *config) NonUpdatableBootJars() ConfiguredJarList {
1846 return c.productVariables.BootJars
1847}
1848
1849func (c *config) UpdatableBootJars() ConfiguredJarList {
1850 return c.productVariables.UpdatableBootJars
1851}
Colin Cross77cdcfd2021-03-12 11:28:25 -08001852
1853func (c *config) RBEWrapper() string {
1854 return c.GetenvWithDefault("RBE_WRAPPER", remoteexec.DefaultWrapperPath)
1855}