blob: 4a4da080adf4a3b12ad49b8567722c731f263440 [file] [log] [blame]
Colin Cross3f40fa42015-01-30 17:27:36 -08001// Copyright 2015 Google Inc. All rights reserved.
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
Colin Cross635c3b02016-05-18 15:37:25 -070015package android
Colin Cross3f40fa42015-01-30 17:27:36 -080016
Jingwen Chenc711fec2020-11-22 23:52:50 -050017// This is the primary location to write and read all configuration values and
18// product variables necessary for soong_build's operation.
19
Colin Cross3f40fa42015-01-30 17:27:36 -080020import (
Colin Cross3f40fa42015-01-30 17:27:36 -080021 "encoding/json"
Lukacs T. Berki720b3962021-03-17 13:34:30 +010022 "errors"
Colin Cross3f40fa42015-01-30 17:27:36 -080023 "fmt"
Colin Crossd8f20142016-11-03 09:43:26 -070024 "io/ioutil"
Colin Cross3f40fa42015-01-30 17:27:36 -080025 "os"
Colin Cross35cec122015-04-02 14:37:16 -070026 "path/filepath"
Colin Cross3f40fa42015-01-30 17:27:36 -080027 "runtime"
Inseob Kim60c32f02020-12-21 22:53:05 +090028 "strconv"
Dan Willemsen34cc69e2015-09-23 15:26:20 -070029 "strings"
Colin Crossc1e86a32015-04-15 12:33:28 -070030 "sync"
Colin Cross6ff51382015-12-17 16:39:19 -080031
Colin Cross98be1bb2019-12-13 20:41:13 -080032 "github.com/google/blueprint"
Colin Crosse87040b2017-12-11 15:52:26 -080033 "github.com/google/blueprint/bootstrap"
Colin Cross98be1bb2019-12-13 20:41:13 -080034 "github.com/google/blueprint/pathtools"
Colin Cross6ff51382015-12-17 16:39:19 -080035 "github.com/google/blueprint/proptools"
Colin Cross9d34f352019-11-22 16:03:51 -080036
37 "android/soong/android/soongconfig"
Liz Kammer09f947d2021-05-12 14:51:49 -040038 "android/soong/bazel"
Colin Cross77cdcfd2021-03-12 11:28:25 -080039 "android/soong/remoteexec"
Colin Cross3f40fa42015-01-30 17:27:36 -080040)
41
Jingwen Chenc711fec2020-11-22 23:52:50 -050042// Bool re-exports proptools.Bool for the android package.
Colin Cross6ff51382015-12-17 16:39:19 -080043var Bool = proptools.Bool
Jingwen Chenc711fec2020-11-22 23:52:50 -050044
45// String re-exports proptools.String for the android package.
Jack He8cc71432016-12-08 15:45:07 -080046var String = proptools.String
Jingwen Chenc711fec2020-11-22 23:52:50 -050047
48// StringDefault re-exports proptools.StringDefault for the android package.
Jeongik Cha219141c2020-08-06 23:00:37 +090049var StringDefault = proptools.StringDefault
Jiyong Park6a927c42020-01-21 02:03:43 +090050
Jingwen Chenc711fec2020-11-22 23:52:50 -050051// FutureApiLevelInt is a placeholder constant for unreleased API levels.
Dan Albert0b176c82020-07-23 16:43:25 -070052const FutureApiLevelInt = 10000
53
Jingwen Chenc711fec2020-11-22 23:52:50 -050054// FutureApiLevel represents unreleased API levels.
Dan Albert0b176c82020-07-23 16:43:25 -070055var FutureApiLevel = ApiLevel{
56 value: "current",
57 number: FutureApiLevelInt,
58 isPreview: true,
59}
Colin Cross6ff51382015-12-17 16:39:19 -080060
Jingwen Chenc4d91bc2020-11-24 22:59:26 -050061// The product variables file name, containing product config from Kati.
Dan Willemsen87b17d12015-07-14 00:39:06 -070062const productVariablesFileName = "soong.variables"
Colin Cross3f40fa42015-01-30 17:27:36 -080063
Colin Cross9272ade2016-08-17 15:24:12 -070064// A Config object represents the entire build configuration for Android.
Colin Crossc3c0a492015-04-10 15:43:55 -070065type Config struct {
66 *config
67}
68
Lukacs T. Berkib078ade2021-08-31 10:42:08 +020069// SoongOutDir returns the build output directory for the configuration.
Lukacs T. Berki9f6c24a2021-08-26 15:07:24 +020070func (c Config) SoongOutDir() string {
71 return c.soongOutDir
Jeff Gastonefc1b412017-03-29 17:29:06 -070072}
73
Lukacs T. Berki9f6c24a2021-08-26 15:07:24 +020074func (c Config) OutDir() string {
Lukacs T. Berkid6cee7e2021-09-01 16:25:51 +020075 return c.outDir
Lukacs T. Berki89e9a162021-03-12 08:31:32 +010076}
77
Lukacs T. Berkiea1a31c2021-09-02 09:58:09 +020078func (c Config) RunGoTests() bool {
79 return c.runGoTests
80}
81
Lukacs T. Berki5f6cb1d2021-03-17 15:03:14 +010082func (c Config) DebugCompilation() bool {
83 return false // Never compile Go code in the main build for debugging
84}
85
Lukacs T. Berkiea1a31c2021-09-02 09:58:09 +020086func (c Config) Subninjas() []string {
87 return []string{}
88}
89
90func (c Config) PrimaryBuilderInvocations() []bootstrap.PrimaryBuilderInvocation {
91 return []bootstrap.PrimaryBuilderInvocation{}
92}
93
Jingwen Chenc711fec2020-11-22 23:52:50 -050094// A DeviceConfig object represents the configuration for a particular device
95// being built. For now there will only be one of these, but in the future there
96// may be multiple devices being built.
Colin Cross9272ade2016-08-17 15:24:12 -070097type DeviceConfig struct {
98 *deviceConfig
99}
100
Jingwen Chenc711fec2020-11-22 23:52:50 -0500101// VendorConfig represents the configuration for vendor-specific behavior.
Colin Cross9d34f352019-11-22 16:03:51 -0800102type VendorConfig soongconfig.SoongConfig
Dan Willemsen0fe78662018-03-26 12:41:18 -0700103
Jingwen Chenc711fec2020-11-22 23:52:50 -0500104// Definition of general build configuration for soong_build. Some of these
Jingwen Chenc4d91bc2020-11-24 22:59:26 -0500105// product configuration values are read from Kati-generated soong.variables.
Colin Cross1332b002015-04-07 17:11:30 -0700106type config struct {
Jingwen Chenc711fec2020-11-22 23:52:50 -0500107 // Options configurable with soong.variables
Dan Willemsen45133ac2018-03-09 21:22:06 -0800108 productVariables productVariables
Colin Cross3f40fa42015-01-30 17:27:36 -0800109
Dan Willemsen674dc7f2018-03-12 18:06:05 -0700110 // Only available on configs created by TestConfig
111 TestProductVariables *productVariables
112
Jingwen Chenc711fec2020-11-22 23:52:50 -0500113 // A specialized context object for Bazel/Soong mixed builds and migration
114 // purposes.
Chris Parsonsf3c96ef2020-09-29 02:23:17 -0400115 BazelContext BazelContext
116
Dan Willemsen87b17d12015-07-14 00:39:06 -0700117 ProductVariablesFileName string
118
Colin Cross0c66bc62021-07-20 09:47:41 -0700119 // BuildOS stores the OsType for the OS that the build is running on.
120 BuildOS OsType
121
122 // BuildArch stores the ArchType for the CPU that the build is running on.
123 BuildArch ArchType
124
Jaewoong Jung642916f2020-10-09 17:25:15 -0700125 Targets map[OsType][]Target
126 BuildOSTarget Target // the Target for tools run on the build machine
127 BuildOSCommonTarget Target // the Target for common (java) tools run on the build machine
128 AndroidCommonTarget Target // the Target for common modules for the Android device
129 AndroidFirstDeviceTarget Target // the first Target for modules for the Android device
Dan Willemsen218f6562015-07-08 18:13:11 -0700130
Jingwen Chenc711fec2020-11-22 23:52:50 -0500131 // multilibConflicts for an ArchType is true if there is earlier configured
132 // device architecture with the same multilib value.
Colin Cross3b19f5d2019-09-17 14:45:31 -0700133 multilibConflicts map[ArchType]bool
134
Colin Cross9272ade2016-08-17 15:24:12 -0700135 deviceConfig *deviceConfig
136
Lukacs T. Berkid6cee7e2021-09-01 16:25:51 +0200137 outDir string // The output directory (usually out/)
138 soongOutDir string
Chris Parsons8f232a22020-06-23 17:37:05 -0400139 moduleListFile string // the path to the file which lists blueprint files to parse.
Colin Crossc1e86a32015-04-15 12:33:28 -0700140
Lukacs T. Berkie1df43f2021-09-08 15:31:14 +0200141 runGoTests bool
Lukacs T. Berkiea1a31c2021-09-02 09:58:09 +0200142
Colin Cross6ccbc912017-10-10 23:07:38 -0700143 env map[string]string
Dan Willemsene7680ba2015-09-11 17:06:19 -0700144 envLock sync.Mutex
145 envDeps map[string]string
146 envFrozen bool
Dan Willemsen5ba07e82015-12-11 13:51:06 -0800147
Jingwen Chencda22c92020-11-23 00:22:30 -0500148 // Changes behavior based on whether Kati runs after soong_build, or if soong_build
149 // runs standalone.
150 katiEnabled bool
Colin Cross1e7d3702016-08-24 15:25:47 -0700151
Colin Cross32616ed2017-09-05 21:56:44 -0700152 captureBuild bool // true for tests, saves build parameters for each module
153 ignoreEnvironment bool // true for tests, returns empty from all Getenv calls
Colin Crosscec81712017-07-13 14:43:27 -0700154
Colin Cross98be1bb2019-12-13 20:41:13 -0800155 fs pathtools.FileSystem
156 mockBpList string
157
Jingwen Chen01812022021-11-19 14:29:43 +0000158 runningAsBp2Build bool
159 bp2buildPackageConfig Bp2BuildConfig
160 bp2buildModuleTypeConfig map[string]bool
161 Bp2buildSoongConfigDefinitions soongconfig.Bp2BuildSoongConfigDefinitions
Jingwen Chen12b4c272021-03-10 02:05:59 -0500162
Colin Cross5e6a7972020-06-07 16:56:32 -0700163 // If testAllowNonExistentPaths is true then PathForSource and PathForModuleSrc won't error
164 // in tests when a path doesn't exist.
Pedro Loureiro5d190cc2021-02-15 15:41:33 +0000165 TestAllowNonExistentPaths bool
Colin Cross5e6a7972020-06-07 16:56:32 -0700166
Jingwen Chenc711fec2020-11-22 23:52:50 -0500167 // The list of files that when changed, must invalidate soong_build to
168 // regenerate build.ninja.
Colin Cross12129292020-10-29 18:23:58 -0700169 ninjaFileDepsSet sync.Map
170
Colin Cross9272ade2016-08-17 15:24:12 -0700171 OncePer
172}
173
174type deviceConfig struct {
Dan Willemsen00269f22017-07-06 16:59:48 -0700175 config *config
Colin Cross9272ade2016-08-17 15:24:12 -0700176 OncePer
Colin Cross3f40fa42015-01-30 17:27:36 -0800177}
178
Colin Cross485e5722015-08-27 13:28:01 -0700179type jsonConfigurable interface {
Colin Cross27385972015-09-18 10:57:10 -0700180 SetDefaultConfig()
Colin Cross485e5722015-08-27 13:28:01 -0700181}
Colin Cross3f40fa42015-01-30 17:27:36 -0800182
Colin Cross485e5722015-08-27 13:28:01 -0700183func loadConfig(config *config) error {
Colin Cross988414c2020-01-11 01:11:46 +0000184 return loadFromConfigFile(&config.productVariables, absolutePath(config.ProductVariablesFileName))
Colin Cross485e5722015-08-27 13:28:01 -0700185}
186
Jingwen Chenc711fec2020-11-22 23:52:50 -0500187// loadFromConfigFile loads and decodes configuration options from a JSON file
188// in the current working directory.
Liz Kammer09f947d2021-05-12 14:51:49 -0400189func loadFromConfigFile(configurable *productVariables, filename string) error {
Colin Cross3f40fa42015-01-30 17:27:36 -0800190 // Try to open the file
Colin Cross485e5722015-08-27 13:28:01 -0700191 configFileReader, err := os.Open(filename)
Colin Cross3f40fa42015-01-30 17:27:36 -0800192 defer configFileReader.Close()
193 if os.IsNotExist(err) {
194 // Need to create a file, so that blueprint & ninja don't get in
195 // a dependency tracking loop.
196 // Make a file-configurable-options with defaults, write it out using
197 // a json writer.
Colin Cross27385972015-09-18 10:57:10 -0700198 configurable.SetDefaultConfig()
199 err = saveToConfigFile(configurable, filename)
Colin Cross3f40fa42015-01-30 17:27:36 -0800200 if err != nil {
201 return err
202 }
Colin Cross15cd21a2018-02-27 11:26:02 -0800203 } else if err != nil {
204 return fmt.Errorf("config file: could not open %s: %s", filename, err.Error())
Colin Cross3f40fa42015-01-30 17:27:36 -0800205 } else {
206 // Make a decoder for it
207 jsonDecoder := json.NewDecoder(configFileReader)
Colin Cross485e5722015-08-27 13:28:01 -0700208 err = jsonDecoder.Decode(configurable)
Colin Cross3f40fa42015-01-30 17:27:36 -0800209 if err != nil {
Colin Cross15cd21a2018-02-27 11:26:02 -0800210 return fmt.Errorf("config file: %s did not parse correctly: %s", filename, err.Error())
Colin Cross3f40fa42015-01-30 17:27:36 -0800211 }
212 }
213
Liz Kammer09f947d2021-05-12 14:51:49 -0400214 if Bool(configurable.GcovCoverage) && Bool(configurable.ClangCoverage) {
215 return fmt.Errorf("GcovCoverage and ClangCoverage cannot both be set")
216 }
217
218 configurable.Native_coverage = proptools.BoolPtr(
219 Bool(configurable.GcovCoverage) ||
220 Bool(configurable.ClangCoverage))
221
Yuntao Xu402e9b02021-08-09 15:44:44 -0700222 // when Platform_sdk_final is true (or PLATFORM_VERSION_CODENAME is REL), use Platform_sdk_version;
223 // if false (pre-released version, for example), use Platform_sdk_codename.
224 if Bool(configurable.Platform_sdk_final) {
225 if configurable.Platform_sdk_version != nil {
226 configurable.Platform_sdk_version_or_codename =
227 proptools.StringPtr(strconv.Itoa(*(configurable.Platform_sdk_version)))
228 } else {
229 return fmt.Errorf("Platform_sdk_version cannot be pointed by a NULL pointer")
230 }
231 } else {
232 configurable.Platform_sdk_version_or_codename =
233 proptools.StringPtr(String(configurable.Platform_sdk_codename))
234 }
235
Liz Kammer09f947d2021-05-12 14:51:49 -0400236 return saveToBazelConfigFile(configurable, filepath.Dir(filename))
Colin Cross3f40fa42015-01-30 17:27:36 -0800237}
238
Colin Crossd8f20142016-11-03 09:43:26 -0700239// atomically writes the config file in case two copies of soong_build are running simultaneously
240// (for example, docs generation and ninja manifest generation)
Liz Kammer09f947d2021-05-12 14:51:49 -0400241func saveToConfigFile(config *productVariables, filename string) error {
Colin Cross3f40fa42015-01-30 17:27:36 -0800242 data, err := json.MarshalIndent(&config, "", " ")
243 if err != nil {
244 return fmt.Errorf("cannot marshal config data: %s", err.Error())
245 }
246
Colin Crossd8f20142016-11-03 09:43:26 -0700247 f, err := ioutil.TempFile(filepath.Dir(filename), "config")
Colin Cross3f40fa42015-01-30 17:27:36 -0800248 if err != nil {
Jingwen Chenc711fec2020-11-22 23:52:50 -0500249 return fmt.Errorf("cannot create empty config file %s: %s", filename, err.Error())
Colin Cross3f40fa42015-01-30 17:27:36 -0800250 }
Colin Crossd8f20142016-11-03 09:43:26 -0700251 defer os.Remove(f.Name())
252 defer f.Close()
Colin Cross3f40fa42015-01-30 17:27:36 -0800253
Colin Crossd8f20142016-11-03 09:43:26 -0700254 _, err = f.Write(data)
Colin Cross3f40fa42015-01-30 17:27:36 -0800255 if err != nil {
Colin Cross485e5722015-08-27 13:28:01 -0700256 return fmt.Errorf("default config file: %s could not be written: %s", filename, err.Error())
257 }
258
Colin Crossd8f20142016-11-03 09:43:26 -0700259 _, err = f.WriteString("\n")
Colin Cross485e5722015-08-27 13:28:01 -0700260 if err != nil {
261 return fmt.Errorf("default config file: %s could not be written: %s", filename, err.Error())
Colin Cross3f40fa42015-01-30 17:27:36 -0800262 }
263
Colin Crossd8f20142016-11-03 09:43:26 -0700264 f.Close()
265 os.Rename(f.Name(), filename)
266
Colin Cross3f40fa42015-01-30 17:27:36 -0800267 return nil
268}
269
Liz Kammer09f947d2021-05-12 14:51:49 -0400270func saveToBazelConfigFile(config *productVariables, outDir string) error {
271 dir := filepath.Join(outDir, bazel.SoongInjectionDirName, "product_config")
272 err := createDirIfNonexistent(dir, os.ModePerm)
273 if err != nil {
274 return fmt.Errorf("Could not create dir %s: %s", dir, err)
275 }
276
277 data, err := json.MarshalIndent(&config, "", " ")
278 if err != nil {
279 return fmt.Errorf("cannot marshal config data: %s", err.Error())
280 }
281
282 bzl := []string{
283 bazel.GeneratedBazelFileWarning,
284 fmt.Sprintf(`_product_vars = json.decode("""%s""")`, data),
285 "product_vars = _product_vars\n",
286 }
287 err = ioutil.WriteFile(filepath.Join(dir, "product_variables.bzl"), []byte(strings.Join(bzl, "\n")), 0644)
288 if err != nil {
289 return fmt.Errorf("Could not write .bzl config file %s", err)
290 }
291 err = ioutil.WriteFile(filepath.Join(dir, "BUILD"), []byte(bazel.GeneratedBazelFileWarning), 0644)
292 if err != nil {
293 return fmt.Errorf("Could not write BUILD config file %s", err)
294 }
295
296 return nil
297}
298
Colin Cross988414c2020-01-11 01:11:46 +0000299// NullConfig returns a mostly empty Config for use by standalone tools like dexpreopt_gen that
300// use the android package.
Lukacs T. Berkid6cee7e2021-09-01 16:25:51 +0200301func NullConfig(outDir, soongOutDir string) Config {
Colin Cross988414c2020-01-11 01:11:46 +0000302 return Config{
303 config: &config{
Lukacs T. Berkid6cee7e2021-09-01 16:25:51 +0200304 outDir: outDir,
Lukacs T. Berki9f6c24a2021-08-26 15:07:24 +0200305 soongOutDir: soongOutDir,
306 fs: pathtools.OsFs,
Colin Cross988414c2020-01-11 01:11:46 +0000307 },
308 }
309}
310
Jingwen Chenc711fec2020-11-22 23:52:50 -0500311// TestConfig returns a Config object for testing.
Colin Cross98be1bb2019-12-13 20:41:13 -0800312func TestConfig(buildDir string, env map[string]string, bp string, fs map[string][]byte) Config {
Colin Cross9c6241f2019-04-22 15:51:26 -0700313 envCopy := make(map[string]string)
314 for k, v := range env {
315 envCopy[k] = v
316 }
317
Jingwen Chen2838c812020-11-23 01:06:40 -0500318 // Copy the real PATH value to the test environment, it's needed by
319 // NonHermeticHostSystemTool() used in x86_darwin_host.go
Lukacs T. Berkideba7212021-03-04 10:50:10 +0100320 envCopy["PATH"] = os.Getenv("PATH")
Colin Cross9c6241f2019-04-22 15:51:26 -0700321
Dan Willemsen00269f22017-07-06 16:59:48 -0700322 config := &config{
Dan Willemsen45133ac2018-03-09 21:22:06 -0800323 productVariables: productVariables{
Dan Albert4f378d72020-07-23 17:32:15 -0700324 DeviceName: stringPtr("test_device"),
325 Platform_sdk_version: intPtr(30),
326 Platform_sdk_codename: stringPtr("S"),
Pedro Loureiroc3621422021-09-28 15:40:23 +0000327 Platform_version_active_codenames: []string{"S", "Tiramisu"},
Dan Albert4f378d72020-07-23 17:32:15 -0700328 DeviceSystemSdkVersions: []string{"14", "15"},
329 Platform_systemsdk_versions: []string{"29", "30"},
330 AAPTConfig: []string{"normal", "large", "xlarge", "hdpi", "xhdpi", "xxhdpi"},
331 AAPTPreferredConfig: stringPtr("xhdpi"),
332 AAPTCharacteristics: stringPtr("nosdcard"),
333 AAPTPrebuiltDPI: []string{"xhdpi", "xxhdpi"},
334 UncompressPrivAppDex: boolPtr(true),
Inseob Kim60c32f02020-12-21 22:53:05 +0900335 ShippingApiLevel: stringPtr("30"),
Dan Willemsen00269f22017-07-06 16:59:48 -0700336 },
337
Colin Cross7b6a55f2021-11-09 12:34:39 -0800338 outDir: buildDir,
339 soongOutDir: filepath.Join(buildDir, "soong"),
Colin Cross6ccbc912017-10-10 23:07:38 -0700340 captureBuild: true,
Colin Cross9c6241f2019-04-22 15:51:26 -0700341 env: envCopy,
Colin Cross5e6a7972020-06-07 16:56:32 -0700342
343 // Set testAllowNonExistentPaths so that test contexts don't need to specify every path
344 // passed to PathForSource or PathForModuleSrc.
Pedro Loureiro5d190cc2021-02-15 15:41:33 +0000345 TestAllowNonExistentPaths: true,
Chris Parsonsf3c96ef2020-09-29 02:23:17 -0400346
347 BazelContext: noopBazelContext{},
Dan Willemsen00269f22017-07-06 16:59:48 -0700348 }
349 config.deviceConfig = &deviceConfig{
350 config: config,
351 }
Dan Willemsen45133ac2018-03-09 21:22:06 -0800352 config.TestProductVariables = &config.productVariables
Dan Willemsen00269f22017-07-06 16:59:48 -0700353
Colin Cross98be1bb2019-12-13 20:41:13 -0800354 config.mockFileSystem(bp, fs)
355
Jingwen Chen12b4c272021-03-10 02:05:59 -0500356 config.bp2buildModuleTypeConfig = map[string]bool{}
357
Colin Cross790ef352021-10-25 19:15:55 -0700358 determineBuildOS(config)
359
Dan Willemsen00269f22017-07-06 16:59:48 -0700360 return Config{config}
Colin Crossce75d2c2016-10-06 16:12:58 -0700361}
362
Paul Duffin35816122021-02-24 01:49:52 +0000363func modifyTestConfigToSupportArchMutator(testConfig Config) {
Colin Crossae4c6182017-09-15 17:33:55 -0700364 config := testConfig.config
365
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700366 config.Targets = map[OsType][]Target{
367 Android: []Target{
Jiyong Park1613e552020-09-14 19:43:17 +0900368 {Android, Arch{ArchType: Arm64, ArchVariant: "armv8-a", Abi: []string{"arm64-v8a"}}, NativeBridgeDisabled, "", "", false},
369 {Android, Arch{ArchType: Arm, ArchVariant: "armv7-a-neon", Abi: []string{"armeabi-v7a"}}, NativeBridgeDisabled, "", "", false},
Colin Crossae4c6182017-09-15 17:33:55 -0700370 },
Colin Cross0c66bc62021-07-20 09:47:41 -0700371 config.BuildOS: []Target{
372 {config.BuildOS, Arch{ArchType: X86_64}, NativeBridgeDisabled, "", "", false},
373 {config.BuildOS, Arch{ArchType: X86}, NativeBridgeDisabled, "", "", false},
Colin Crossae4c6182017-09-15 17:33:55 -0700374 },
375 }
376
Colin Cross0d99f7c2019-05-14 16:01:24 -0700377 if runtime.GOOS == "darwin" {
Colin Cross0c66bc62021-07-20 09:47:41 -0700378 config.Targets[config.BuildOS] = config.Targets[config.BuildOS][:1]
Colin Cross0d99f7c2019-05-14 16:01:24 -0700379 }
380
Colin Cross0c66bc62021-07-20 09:47:41 -0700381 config.BuildOSTarget = config.Targets[config.BuildOS][0]
382 config.BuildOSCommonTarget = getCommonTargets(config.Targets[config.BuildOS])[0]
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700383 config.AndroidCommonTarget = getCommonTargets(config.Targets[Android])[0]
Jaewoong Jung642916f2020-10-09 17:25:15 -0700384 config.AndroidFirstDeviceTarget = firstTarget(config.Targets[Android], "lib64", "lib32")[0]
Inseob Kim1f086e22019-05-09 13:29:15 +0900385 config.TestProductVariables.DeviceArch = proptools.StringPtr("arm64")
386 config.TestProductVariables.DeviceArchVariant = proptools.StringPtr("armv8-a")
387 config.TestProductVariables.DeviceSecondaryArch = proptools.StringPtr("arm")
388 config.TestProductVariables.DeviceSecondaryArchVariant = proptools.StringPtr("armv7-a-neon")
Paul Duffin35816122021-02-24 01:49:52 +0000389}
Colin Cross2a076922018-10-04 23:28:25 -0700390
Colin Cross528d67e2021-07-23 22:23:07 +0000391func modifyTestConfigForMusl(config Config) {
392 delete(config.Targets, config.BuildOS)
393 config.productVariables.HostMusl = boolPtr(true)
394 determineBuildOS(config.config)
395 config.Targets[config.BuildOS] = []Target{
396 {config.BuildOS, Arch{ArchType: X86_64}, NativeBridgeDisabled, "", "", false},
397 {config.BuildOS, Arch{ArchType: X86}, NativeBridgeDisabled, "", "", false},
398 }
399
400 config.BuildOSTarget = config.Targets[config.BuildOS][0]
401 config.BuildOSCommonTarget = getCommonTargets(config.Targets[config.BuildOS])[0]
402}
403
Paul Duffin35816122021-02-24 01:49:52 +0000404// TestArchConfig returns a Config object suitable for using for tests that
405// need to run the arch mutator.
406func TestArchConfig(buildDir string, env map[string]string, bp string, fs map[string][]byte) Config {
407 testConfig := TestConfig(buildDir, env, bp, fs)
408 modifyTestConfigToSupportArchMutator(testConfig)
Colin Crossae4c6182017-09-15 17:33:55 -0700409 return testConfig
410}
411
Jingwen Chenc711fec2020-11-22 23:52:50 -0500412// ConfigForAdditionalRun is a config object which is "reset" for another
413// bootstrap run. Only per-run data is reset. Data which needs to persist across
414// multiple runs in the same program execution is carried over (such as Bazel
415// context or environment deps).
Lukacs T. Berki89fcdcb2021-09-07 09:10:33 +0200416func ConfigForAdditionalRun(c Config) (Config, error) {
417 newConfig, err := NewConfig(c.moduleListFile, c.runGoTests, c.outDir, c.soongOutDir, c.env)
Chris Parsonsf3c96ef2020-09-29 02:23:17 -0400418 if err != nil {
419 return Config{}, err
420 }
421 newConfig.BazelContext = c.BazelContext
422 newConfig.envDeps = c.envDeps
423 return newConfig, nil
424}
425
Jingwen Chenc711fec2020-11-22 23:52:50 -0500426// NewConfig creates a new Config object. The srcDir argument specifies the path
427// to the root source directory. It also loads the config file, if found.
Lukacs T. Berki89fcdcb2021-09-07 09:10:33 +0200428func NewConfig(moduleListFile string, runGoTests bool, outDir, soongOutDir string, availableEnv map[string]string) (Config, error) {
Jingwen Chenc711fec2020-11-22 23:52:50 -0500429 // Make a config with default options.
Colin Cross9272ade2016-08-17 15:24:12 -0700430 config := &config{
Lukacs T. Berki9f6c24a2021-08-26 15:07:24 +0200431 ProductVariablesFileName: filepath.Join(soongOutDir, productVariablesFileName),
Dan Willemsen87b17d12015-07-14 00:39:06 -0700432
Lukacs T. Berki53b2f362021-04-12 14:04:24 +0200433 env: availableEnv,
Colin Cross6ccbc912017-10-10 23:07:38 -0700434
Lukacs T. Berkie1df43f2021-09-08 15:31:14 +0200435 outDir: outDir,
436 soongOutDir: soongOutDir,
437 runGoTests: runGoTests,
438 multilibConflicts: make(map[ArchType]bool),
Colin Cross98be1bb2019-12-13 20:41:13 -0800439
Lukacs T. Berki89fcdcb2021-09-07 09:10:33 +0200440 moduleListFile: moduleListFile,
Chris Parsons8f232a22020-06-23 17:37:05 -0400441 fs: pathtools.NewOsFs(absSrcDir),
Colin Cross68f55102015-03-25 14:43:57 -0700442 }
Colin Cross3f40fa42015-01-30 17:27:36 -0800443
Dan Willemsen00269f22017-07-06 16:59:48 -0700444 config.deviceConfig = &deviceConfig{
Colin Cross9272ade2016-08-17 15:24:12 -0700445 config: config,
446 }
447
Liz Kammer7941b302020-07-28 13:27:34 -0700448 // Soundness check of the build and source directories. This won't catch strange
449 // configurations with symlinks, but at least checks the obvious case.
Lukacs T. Berki9f6c24a2021-08-26 15:07:24 +0200450 absBuildDir, err := filepath.Abs(soongOutDir)
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700451 if err != nil {
452 return Config{}, err
453 }
454
Lukacs T. Berkif7e36d82021-08-16 17:05:09 +0200455 absSrcDir, err := filepath.Abs(".")
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700456 if err != nil {
457 return Config{}, err
458 }
459
460 if strings.HasPrefix(absSrcDir, absBuildDir) {
461 return Config{}, fmt.Errorf("Build dir must not contain source directory")
462 }
463
Colin Cross3f40fa42015-01-30 17:27:36 -0800464 // Load any configurable options from the configuration file
Colin Cross9272ade2016-08-17 15:24:12 -0700465 err = loadConfig(config)
Colin Cross3f40fa42015-01-30 17:27:36 -0800466 if err != nil {
Colin Crossc3c0a492015-04-10 15:43:55 -0700467 return Config{}, err
Colin Cross3f40fa42015-01-30 17:27:36 -0800468 }
469
Lukacs T. Berki9f6c24a2021-08-26 15:07:24 +0200470 KatiEnabledMarkerFile := filepath.Join(soongOutDir, ".soong.kati_enabled")
Jingwen Chencda22c92020-11-23 00:22:30 -0500471 if _, err := os.Stat(absolutePath(KatiEnabledMarkerFile)); err == nil {
472 config.katiEnabled = true
Dan Willemsen5ba07e82015-12-11 13:51:06 -0800473 }
474
Colin Cross0c66bc62021-07-20 09:47:41 -0700475 determineBuildOS(config)
476
Jingwen Chenc711fec2020-11-22 23:52:50 -0500477 // Sets up the map of target OSes to the finer grained compilation targets
478 // that are configured from the product variables.
Colin Crossa1ad8d12016-06-01 17:09:44 -0700479 targets, err := decodeTargetProductVariables(config)
Dan Willemsen218f6562015-07-08 18:13:11 -0700480 if err != nil {
481 return Config{}, err
482 }
483
Paul Duffin1356d8c2020-02-25 19:26:33 +0000484 // Make the CommonOS OsType available for all products.
485 targets[CommonOS] = []Target{commonTargetMap[CommonOS.Name]}
486
Dan Albert4098deb2016-10-19 14:04:41 -0700487 var archConfig []archConfig
Jingwen Chenc4d91bc2020-11-24 22:59:26 -0500488 if config.NdkAbis() {
Dan Albert4098deb2016-10-19 14:04:41 -0700489 archConfig = getNdkAbisConfig()
Martin Stjernholmc1ecc432019-11-15 15:00:31 +0000490 } else if config.AmlAbis() {
491 archConfig = getAmlAbisConfig()
Dan Albert4098deb2016-10-19 14:04:41 -0700492 }
493
494 if archConfig != nil {
Dan Willemsen01a3c252019-01-11 19:02:16 -0800495 androidTargets, err := decodeArchSettings(Android, archConfig)
Dan Willemsen322acaf2016-01-12 23:07:05 -0800496 if err != nil {
497 return Config{}, err
498 }
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700499 targets[Android] = androidTargets
Dan Willemsen322acaf2016-01-12 23:07:05 -0800500 }
501
Colin Cross3b19f5d2019-09-17 14:45:31 -0700502 multilib := make(map[string]bool)
503 for _, target := range targets[Android] {
504 if seen := multilib[target.Arch.ArchType.Multilib]; seen {
505 config.multilibConflicts[target.Arch.ArchType] = true
506 }
507 multilib[target.Arch.ArchType.Multilib] = true
508 }
509
Jingwen Chenc711fec2020-11-22 23:52:50 -0500510 // Map of OS to compilation targets.
Colin Crossa1ad8d12016-06-01 17:09:44 -0700511 config.Targets = targets
Jingwen Chenc711fec2020-11-22 23:52:50 -0500512
513 // Compilation targets for host tools.
Colin Cross0c66bc62021-07-20 09:47:41 -0700514 config.BuildOSTarget = config.Targets[config.BuildOS][0]
515 config.BuildOSCommonTarget = getCommonTargets(config.Targets[config.BuildOS])[0]
Jingwen Chenc711fec2020-11-22 23:52:50 -0500516
517 // Compilation targets for Android.
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700518 if len(config.Targets[Android]) > 0 {
519 config.AndroidCommonTarget = getCommonTargets(config.Targets[Android])[0]
Jaewoong Jung642916f2020-10-09 17:25:15 -0700520 config.AndroidFirstDeviceTarget = firstTarget(config.Targets[Android], "lib64", "lib32")[0]
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700521 }
Dan Willemsen218f6562015-07-08 18:13:11 -0700522
Chris Parsonsf3c96ef2020-09-29 02:23:17 -0400523 config.BazelContext, err = NewBazelContext(config)
Jingwen Chen12b4c272021-03-10 02:05:59 -0500524 config.bp2buildPackageConfig = bp2buildDefaultConfig
525 config.bp2buildModuleTypeConfig = make(map[string]bool)
Colin Cross3f40fa42015-01-30 17:27:36 -0800526
Jingwen Chenc711fec2020-11-22 23:52:50 -0500527 return Config{config}, err
528}
Colin Cross988414c2020-01-11 01:11:46 +0000529
Colin Cross98be1bb2019-12-13 20:41:13 -0800530// mockFileSystem replaces all reads with accesses to the provided map of
531// filenames to contents stored as a byte slice.
532func (c *config) mockFileSystem(bp string, fs map[string][]byte) {
533 mockFS := map[string][]byte{}
534
535 if _, exists := mockFS["Android.bp"]; !exists {
536 mockFS["Android.bp"] = []byte(bp)
537 }
538
539 for k, v := range fs {
540 mockFS[k] = v
541 }
542
543 // no module list file specified; find every file named Blueprints or Android.bp
544 pathsToParse := []string{}
545 for candidate := range mockFS {
546 base := filepath.Base(candidate)
Lukacs T. Berkib838b0a2021-09-02 11:46:24 +0200547 if base == "Android.bp" {
Colin Cross98be1bb2019-12-13 20:41:13 -0800548 pathsToParse = append(pathsToParse, candidate)
549 }
550 }
551 if len(pathsToParse) < 1 {
552 panic(fmt.Sprintf("No Blueprint or Android.bp files found in mock filesystem: %v\n", mockFS))
553 }
554 mockFS[blueprint.MockModuleListFile] = []byte(strings.Join(pathsToParse, "\n"))
555
556 c.fs = pathtools.MockFs(mockFS)
557 c.mockBpList = blueprint.MockModuleListFile
558}
559
Lukacs T. Berkid1e3f1f2021-03-16 08:55:23 +0100560func (c *config) SetAllowMissingDependencies() {
561 c.productVariables.Allow_missing_dependencies = proptools.BoolPtr(true)
562}
563
Jingwen Chenc711fec2020-11-22 23:52:50 -0500564// BlueprintToolLocation returns the directory containing build system tools
565// from Blueprint, like soong_zip and merge_zips.
Lukacs T. Berkia806e412021-09-01 08:57:48 +0200566func (c *config) HostToolDir() string {
Colin Crossacfcc1f2021-10-25 15:40:32 -0700567 if c.KatiEnabled() {
568 return filepath.Join(c.outDir, "host", c.PrebuiltOS(), "bin")
569 } else {
570 return filepath.Join(c.soongOutDir, "host", c.PrebuiltOS(), "bin")
571 }
Dan Willemsenc2aa4a92016-05-26 15:13:03 -0700572}
573
Dan Willemsen60e62f02018-11-16 21:05:32 -0800574func (c *config) HostToolPath(ctx PathContext, tool string) Path {
Colin Cross790ef352021-10-25 19:15:55 -0700575 path := pathForInstall(ctx, ctx.Config().BuildOS, ctx.Config().BuildArch, "bin", false, tool)
Colin Crossacfcc1f2021-10-25 15:40:32 -0700576 if ctx.Config().KatiEnabled() {
577 path = path.ToMakePath()
578 }
Colin Cross790ef352021-10-25 19:15:55 -0700579 return path
Dan Willemsen60e62f02018-11-16 21:05:32 -0800580}
581
Colin Cross790ef352021-10-25 19:15:55 -0700582func (c *config) HostJNIToolPath(ctx PathContext, lib string) Path {
Martin Stjernholm7260d062019-12-09 21:47:14 +0000583 ext := ".so"
584 if runtime.GOOS == "darwin" {
585 ext = ".dylib"
586 }
Colin Cross790ef352021-10-25 19:15:55 -0700587 path := pathForInstall(ctx, ctx.Config().BuildOS, ctx.Config().BuildArch, "lib64", false, lib+ext)
Colin Crossacfcc1f2021-10-25 15:40:32 -0700588 if ctx.Config().KatiEnabled() {
589 path = path.ToMakePath()
590 }
Colin Cross790ef352021-10-25 19:15:55 -0700591 return path
Martin Stjernholm7260d062019-12-09 21:47:14 +0000592}
593
Colin Crossae5330a2021-11-03 13:31:22 -0700594func (c *config) HostJavaToolPath(ctx PathContext, tool string) Path {
595 path := pathForInstall(ctx, ctx.Config().BuildOS, ctx.Config().BuildArch, "framework", false, tool)
Colin Cross24cc4be62021-11-03 14:09:41 -0700596 if ctx.Config().KatiEnabled() {
597 path = path.ToMakePath()
598 }
Colin Cross3e3eda62021-11-04 10:22:51 -0700599 return path
600}
601
Jingwen Chenc711fec2020-11-22 23:52:50 -0500602// PrebuiltOS returns the name of the host OS used in prebuilts directories.
Colin Cross1332b002015-04-07 17:11:30 -0700603func (c *config) PrebuiltOS() string {
Colin Cross3f40fa42015-01-30 17:27:36 -0800604 switch runtime.GOOS {
605 case "linux":
606 return "linux-x86"
607 case "darwin":
608 return "darwin-x86"
609 default:
610 panic("Unknown GOOS")
611 }
612}
613
614// GoRoot returns the path to the root directory of the Go toolchain.
Colin Cross1332b002015-04-07 17:11:30 -0700615func (c *config) GoRoot() string {
Lukacs T. Berkif7e36d82021-08-16 17:05:09 +0200616 return fmt.Sprintf("prebuilts/go/%s", c.PrebuiltOS())
Colin Cross3f40fa42015-01-30 17:27:36 -0800617}
618
Jingwen Chenc711fec2020-11-22 23:52:50 -0500619// PrebuiltBuildTool returns the path to a tool in the prebuilts directory containing
620// checked-in tools, like Kati, Ninja or Toybox, for the current host OS.
Dan Willemsen4e0aa232019-04-10 22:59:54 -0700621func (c *config) PrebuiltBuildTool(ctx PathContext, tool string) Path {
622 return PathForSource(ctx, "prebuilts/build-tools", c.PrebuiltOS(), "bin", tool)
623}
624
Jingwen Chenc711fec2020-11-22 23:52:50 -0500625// CpPreserveSymlinksFlags returns the host-specific flag for the cp(1) command
626// to preserve symlinks.
Colin Cross1332b002015-04-07 17:11:30 -0700627func (c *config) CpPreserveSymlinksFlags() string {
Colin Cross485e5722015-08-27 13:28:01 -0700628 switch runtime.GOOS {
Colin Cross3f40fa42015-01-30 17:27:36 -0800629 case "darwin":
630 return "-R"
631 case "linux":
632 return "-d"
633 default:
634 return ""
635 }
636}
Colin Cross68f55102015-03-25 14:43:57 -0700637
Colin Cross1332b002015-04-07 17:11:30 -0700638func (c *config) Getenv(key string) string {
Colin Cross68f55102015-03-25 14:43:57 -0700639 var val string
640 var exists bool
Colin Crossc1e86a32015-04-15 12:33:28 -0700641 c.envLock.Lock()
Colin Crossc0d58b42017-02-06 15:40:41 -0800642 defer c.envLock.Unlock()
643 if c.envDeps == nil {
644 c.envDeps = make(map[string]string)
645 }
Colin Cross68f55102015-03-25 14:43:57 -0700646 if val, exists = c.envDeps[key]; !exists {
Dan Willemsene7680ba2015-09-11 17:06:19 -0700647 if c.envFrozen {
648 panic("Cannot access new environment variables after envdeps are frozen")
649 }
Colin Cross6ccbc912017-10-10 23:07:38 -0700650 val, _ = c.env[key]
Colin Cross68f55102015-03-25 14:43:57 -0700651 c.envDeps[key] = val
652 }
653 return val
654}
655
Colin Cross99d7c232016-11-23 16:52:04 -0800656func (c *config) GetenvWithDefault(key string, defaultValue string) string {
657 ret := c.Getenv(key)
658 if ret == "" {
659 return defaultValue
660 }
661 return ret
662}
663
664func (c *config) IsEnvTrue(key string) bool {
665 value := c.Getenv(key)
666 return value == "1" || value == "y" || value == "yes" || value == "on" || value == "true"
667}
668
669func (c *config) IsEnvFalse(key string) bool {
670 value := c.Getenv(key)
671 return value == "0" || value == "n" || value == "no" || value == "off" || value == "false"
672}
673
Jingwen Chenc711fec2020-11-22 23:52:50 -0500674// EnvDeps returns the environment variables this build depends on. The first
675// call to this function blocks future reads from the environment.
Colin Cross1332b002015-04-07 17:11:30 -0700676func (c *config) EnvDeps() map[string]string {
Dan Willemsene7680ba2015-09-11 17:06:19 -0700677 c.envLock.Lock()
Colin Crossc0d58b42017-02-06 15:40:41 -0800678 defer c.envLock.Unlock()
Dan Willemsene7680ba2015-09-11 17:06:19 -0700679 c.envFrozen = true
Colin Cross68f55102015-03-25 14:43:57 -0700680 return c.envDeps
681}
Colin Cross35cec122015-04-02 14:37:16 -0700682
Jingwen Chencda22c92020-11-23 00:22:30 -0500683func (c *config) KatiEnabled() bool {
684 return c.katiEnabled
Dan Willemsen5ba07e82015-12-11 13:51:06 -0800685}
686
Nan Zhang581fd212018-01-10 16:06:12 -0800687func (c *config) BuildId() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800688 return String(c.productVariables.BuildId)
Nan Zhang581fd212018-01-10 16:06:12 -0800689}
690
Jingwen Chenc711fec2020-11-22 23:52:50 -0500691// BuildNumberFile returns the path to a text file containing metadata
692// representing the current build's number.
693//
694// Rules that want to reference the build number should read from this file
695// without depending on it. They will run whenever their other dependencies
696// require them to run and get the current build number. This ensures they don't
697// rebuild on every incremental build when the build number changes.
Colin Cross2a2e0db2020-02-21 16:55:46 -0800698func (c *config) BuildNumberFile(ctx PathContext) Path {
699 return PathForOutput(ctx, String(c.productVariables.BuildNumberFile))
Nan Zhang581fd212018-01-10 16:06:12 -0800700}
701
Jingwen Chenc711fec2020-11-22 23:52:50 -0500702// DeviceName returns the name of the current device target.
Colin Cross35cec122015-04-02 14:37:16 -0700703// TODO: take an AndroidModuleContext to select the device name for multi-device builds
Colin Cross1332b002015-04-07 17:11:30 -0700704func (c *config) DeviceName() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800705 return *c.productVariables.DeviceName
Colin Cross35cec122015-04-02 14:37:16 -0700706}
707
Anton Hansson53c88442019-03-18 15:53:16 +0000708func (c *config) DeviceResourceOverlays() []string {
709 return c.productVariables.DeviceResourceOverlays
710}
711
712func (c *config) ProductResourceOverlays() []string {
713 return c.productVariables.ProductResourceOverlays
Colin Cross30e076a2015-04-13 13:58:27 -0700714}
715
Colin Crossbfd347d2018-05-09 11:11:35 -0700716func (c *config) PlatformVersionName() string {
717 return String(c.productVariables.Platform_version_name)
718}
719
Dan Albert4f378d72020-07-23 17:32:15 -0700720func (c *config) PlatformSdkVersion() ApiLevel {
721 return uncheckedFinalApiLevel(*c.productVariables.Platform_sdk_version)
Colin Cross30e076a2015-04-13 13:58:27 -0700722}
723
Colin Crossd09b0b62018-04-18 11:06:47 -0700724func (c *config) PlatformSdkCodename() string {
725 return String(c.productVariables.Platform_sdk_codename)
726}
727
Colin Cross092c9da2019-04-02 22:56:43 -0700728func (c *config) PlatformSecurityPatch() string {
729 return String(c.productVariables.Platform_security_patch)
730}
731
732func (c *config) PlatformPreviewSdkVersion() string {
733 return String(c.productVariables.Platform_preview_sdk_version)
734}
735
736func (c *config) PlatformMinSupportedTargetSdkVersion() string {
737 return String(c.productVariables.Platform_min_supported_target_sdk_version)
738}
739
740func (c *config) PlatformBaseOS() string {
741 return String(c.productVariables.Platform_base_os)
742}
743
Dan Albert1a246272020-07-06 14:49:35 -0700744func (c *config) MinSupportedSdkVersion() ApiLevel {
745 return uncheckedFinalApiLevel(16)
746}
747
748func (c *config) FinalApiLevels() []ApiLevel {
749 var levels []ApiLevel
Dan Albert4f378d72020-07-23 17:32:15 -0700750 for i := 1; i <= c.PlatformSdkVersion().FinalOrFutureInt(); i++ {
Dan Albert1a246272020-07-06 14:49:35 -0700751 levels = append(levels, uncheckedFinalApiLevel(i))
752 }
753 return levels
754}
755
756func (c *config) PreviewApiLevels() []ApiLevel {
757 var levels []ApiLevel
758 for i, codename := range c.PlatformVersionActiveCodenames() {
759 levels = append(levels, ApiLevel{
760 value: codename,
761 number: i,
762 isPreview: true,
763 })
764 }
765 return levels
766}
767
satayevcca4ab72021-11-30 12:33:55 +0000768func (c *config) LatestPreviewApiLevel() ApiLevel {
769 level := NoneApiLevel
770 for _, l := range c.PreviewApiLevels() {
771 if l.GreaterThan(level) {
772 level = l
773 }
774 }
775 return level
776}
777
Dan Albert1a246272020-07-06 14:49:35 -0700778func (c *config) AllSupportedApiLevels() []ApiLevel {
779 var levels []ApiLevel
780 levels = append(levels, c.FinalApiLevels()...)
781 return append(levels, c.PreviewApiLevels()...)
Dan Albertf5415d72017-08-17 16:19:59 -0700782}
783
Jingwen Chenc711fec2020-11-22 23:52:50 -0500784// DefaultAppTargetSdk returns the API level that platform apps are targeting.
785// This converts a codename to the exact ApiLevel it represents.
Dan Albert4f378d72020-07-23 17:32:15 -0700786func (c *config) DefaultAppTargetSdk(ctx EarlyModuleContext) ApiLevel {
Colin Crossd09b0b62018-04-18 11:06:47 -0700787 if Bool(c.productVariables.Platform_sdk_final) {
788 return c.PlatformSdkVersion()
Colin Crossd09b0b62018-04-18 11:06:47 -0700789 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500790 codename := c.PlatformSdkCodename()
791 if codename == "" {
792 return NoneApiLevel
793 }
794 if codename == "REL" {
795 panic("Platform_sdk_codename should not be REL when Platform_sdk_final is true")
796 }
797 return ApiLevelOrPanic(ctx, codename)
Colin Crossd09b0b62018-04-18 11:06:47 -0700798}
799
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800800func (c *config) AppsDefaultVersionName() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800801 return String(c.productVariables.AppsDefaultVersionName)
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800802}
803
Dan Albert31384de2017-07-28 12:39:46 -0700804// Codenames that are active in the current lunch target.
805func (c *config) PlatformVersionActiveCodenames() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800806 return c.productVariables.Platform_version_active_codenames
Dan Albert31384de2017-07-28 12:39:46 -0700807}
808
Colin Crossface4e42017-10-30 17:32:15 -0700809func (c *config) ProductAAPTConfig() []string {
Colin Crossa74ca042019-01-31 14:31:51 -0800810 return c.productVariables.AAPTConfig
Colin Cross30e076a2015-04-13 13:58:27 -0700811}
812
Colin Crossface4e42017-10-30 17:32:15 -0700813func (c *config) ProductAAPTPreferredConfig() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800814 return String(c.productVariables.AAPTPreferredConfig)
Colin Cross30e076a2015-04-13 13:58:27 -0700815}
816
Colin Crossface4e42017-10-30 17:32:15 -0700817func (c *config) ProductAAPTCharacteristics() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800818 return String(c.productVariables.AAPTCharacteristics)
Colin Crossface4e42017-10-30 17:32:15 -0700819}
820
821func (c *config) ProductAAPTPrebuiltDPI() []string {
Colin Crossa74ca042019-01-31 14:31:51 -0800822 return c.productVariables.AAPTPrebuiltDPI
Colin Cross30e076a2015-04-13 13:58:27 -0700823}
824
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700825func (c *config) DefaultAppCertificateDir(ctx PathContext) SourcePath {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800826 defaultCert := String(c.productVariables.DefaultAppCertificate)
Colin Cross61ae0b72017-12-01 17:16:02 -0800827 if defaultCert != "" {
828 return PathForSource(ctx, filepath.Dir(defaultCert))
Colin Cross61ae0b72017-12-01 17:16:02 -0800829 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500830 return PathForSource(ctx, "build/make/target/product/security")
Colin Cross30e076a2015-04-13 13:58:27 -0700831}
832
Colin Crosse1731a52017-12-14 11:22:55 -0800833func (c *config) DefaultAppCertificate(ctx PathContext) (pem, key SourcePath) {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800834 defaultCert := String(c.productVariables.DefaultAppCertificate)
Colin Cross61ae0b72017-12-01 17:16:02 -0800835 if defaultCert != "" {
Colin Crosse1731a52017-12-14 11:22:55 -0800836 return PathForSource(ctx, defaultCert+".x509.pem"), PathForSource(ctx, defaultCert+".pk8")
Colin Cross61ae0b72017-12-01 17:16:02 -0800837 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500838 defaultDir := c.DefaultAppCertificateDir(ctx)
839 return defaultDir.Join(ctx, "testkey.x509.pem"), defaultDir.Join(ctx, "testkey.pk8")
Colin Cross30e076a2015-04-13 13:58:27 -0700840}
Colin Cross6ff51382015-12-17 16:39:19 -0800841
Jiyong Park9335a262018-12-24 11:31:58 +0900842func (c *config) ApexKeyDir(ctx ModuleContext) SourcePath {
843 // TODO(b/121224311): define another variable such as TARGET_APEX_KEY_OVERRIDE
844 defaultCert := String(c.productVariables.DefaultAppCertificate)
Dan Willemsen412160e2019-04-09 21:36:26 -0700845 if defaultCert == "" || filepath.Dir(defaultCert) == "build/make/target/product/security" {
Jiyong Park9335a262018-12-24 11:31:58 +0900846 // When defaultCert is unset or is set to the testkeys path, use the APEX keys
847 // that is under the module dir
Colin Cross07e51612019-03-05 12:46:40 -0800848 return pathForModuleSrc(ctx)
Jiyong Park9335a262018-12-24 11:31:58 +0900849 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500850 // If not, APEX keys are under the specified directory
851 return PathForSource(ctx, filepath.Dir(defaultCert))
Jiyong Park9335a262018-12-24 11:31:58 +0900852}
853
Jingwen Chenc711fec2020-11-22 23:52:50 -0500854// AllowMissingDependencies configures Blueprint/Soong to not fail when modules
855// are configured to depend on non-existent modules. Note that this does not
856// affect missing input dependencies at the Ninja level.
Colin Cross6ff51382015-12-17 16:39:19 -0800857func (c *config) AllowMissingDependencies() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800858 return Bool(c.productVariables.Allow_missing_dependencies)
Colin Cross6ff51382015-12-17 16:39:19 -0800859}
Dan Willemsen322acaf2016-01-12 23:07:05 -0800860
Jeongik Cha816a23a2020-07-08 01:09:23 +0900861// Returns true if a full platform source tree cannot be assumed.
Colin Crossfc3674a2017-09-18 17:41:52 -0700862func (c *config) UnbundledBuild() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800863 return Bool(c.productVariables.Unbundled_build)
Colin Crossfc3674a2017-09-18 17:41:52 -0700864}
865
Martin Stjernholmfd9eb4b2020-06-17 01:13:15 +0100866// Returns true if building apps that aren't bundled with the platform.
867// UnbundledBuild() is always true when this is true.
868func (c *config) UnbundledBuildApps() bool {
Cole Faust701ca252021-11-23 19:02:08 -0800869 return len(c.productVariables.Unbundled_build_apps) > 0
Martin Stjernholmfd9eb4b2020-06-17 01:13:15 +0100870}
871
Jeongik Cha4b073cd2021-06-08 11:35:00 +0900872// Returns true if building image that aren't bundled with the platform.
873// UnbundledBuild() is always true when this is true.
874func (c *config) UnbundledBuildImage() bool {
875 return Bool(c.productVariables.Unbundled_build_image)
876}
877
Jeongik Cha816a23a2020-07-08 01:09:23 +0900878// Returns true if building modules against prebuilt SDKs.
879func (c *config) AlwaysUsePrebuiltSdks() bool {
880 return Bool(c.productVariables.Always_use_prebuilt_sdks)
Colin Cross1f367bf2018-12-18 22:46:24 -0800881}
882
Colin Cross126a25c2017-10-31 13:55:34 -0700883func (c *config) MinimizeJavaDebugInfo() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800884 return Bool(c.productVariables.MinimizeJavaDebugInfo) && !Bool(c.productVariables.Eng)
Colin Cross126a25c2017-10-31 13:55:34 -0700885}
886
Colin Crossed064c02018-09-05 16:28:13 -0700887func (c *config) Debuggable() bool {
888 return Bool(c.productVariables.Debuggable)
889}
890
Jaewoong Jung1d6eb682018-11-29 15:08:44 -0800891func (c *config) Eng() bool {
892 return Bool(c.productVariables.Eng)
893}
894
Colin Crossc53c37f2021-12-08 15:42:22 -0800895// DevicePrimaryArchType returns the ArchType for the first configured device architecture, or
896// Common if there are no device architectures.
Jiyong Park8d52f862018-07-07 18:02:07 +0900897func (c *config) DevicePrimaryArchType() ArchType {
Colin Crossc53c37f2021-12-08 15:42:22 -0800898 if androidTargets := c.Targets[Android]; len(androidTargets) > 0 {
899 return androidTargets[0].Arch.ArchType
900 }
901 return Common
Jiyong Park8d52f862018-07-07 18:02:07 +0900902}
903
Colin Cross16b23492016-01-06 14:41:07 -0800904func (c *config) SanitizeHost() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800905 return append([]string(nil), c.productVariables.SanitizeHost...)
Colin Cross16b23492016-01-06 14:41:07 -0800906}
907
908func (c *config) SanitizeDevice() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800909 return append([]string(nil), c.productVariables.SanitizeDevice...)
Colin Cross23ae82a2016-11-02 14:34:39 -0700910}
911
Ivan Lozano0c3a1ef2017-06-28 09:10:48 -0700912func (c *config) SanitizeDeviceDiag() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800913 return append([]string(nil), c.productVariables.SanitizeDeviceDiag...)
Ivan Lozano0c3a1ef2017-06-28 09:10:48 -0700914}
915
Colin Cross23ae82a2016-11-02 14:34:39 -0700916func (c *config) SanitizeDeviceArch() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800917 return append([]string(nil), c.productVariables.SanitizeDeviceArch...)
Colin Cross16b23492016-01-06 14:41:07 -0800918}
Colin Crossa1ad8d12016-06-01 17:09:44 -0700919
Vishwath Mohan1b017a72017-01-19 13:54:55 -0800920func (c *config) EnableCFI() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800921 if c.productVariables.EnableCFI == nil {
Vishwath Mohanc32c3eb2017-01-24 14:20:54 -0800922 return true
Vishwath Mohanc32c3eb2017-01-24 14:20:54 -0800923 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500924 return *c.productVariables.EnableCFI
Vishwath Mohan1b017a72017-01-19 13:54:55 -0800925}
926
Kostya Kortchinskyd5275c82019-02-01 08:42:56 -0800927func (c *config) DisableScudo() bool {
928 return Bool(c.productVariables.DisableScudo)
929}
930
Colin Crossa1ad8d12016-06-01 17:09:44 -0700931func (c *config) Android64() bool {
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700932 for _, t := range c.Targets[Android] {
Colin Crossa1ad8d12016-06-01 17:09:44 -0700933 if t.Arch.ArchType.Multilib == "lib64" {
934 return true
935 }
936 }
937
938 return false
939}
Colin Cross9272ade2016-08-17 15:24:12 -0700940
Colin Cross9d45bb72016-08-29 16:14:13 -0700941func (c *config) UseGoma() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800942 return Bool(c.productVariables.UseGoma)
Colin Cross9d45bb72016-08-29 16:14:13 -0700943}
944
Ramy Medhatbbf25672019-07-17 12:30:04 +0000945func (c *config) UseRBE() bool {
946 return Bool(c.productVariables.UseRBE)
947}
948
Ramy Medhat8ea054a2020-01-27 14:19:44 -0500949func (c *config) UseRBEJAVAC() bool {
950 return Bool(c.productVariables.UseRBEJAVAC)
951}
952
953func (c *config) UseRBER8() bool {
954 return Bool(c.productVariables.UseRBER8)
955}
956
957func (c *config) UseRBED8() bool {
958 return Bool(c.productVariables.UseRBED8)
959}
960
Colin Cross8b8bec32019-11-15 13:18:43 -0800961func (c *config) UseRemoteBuild() bool {
962 return c.UseGoma() || c.UseRBE()
963}
964
Colin Cross66548102018-06-19 22:47:35 -0700965func (c *config) RunErrorProne() bool {
966 return c.IsEnvTrue("RUN_ERROR_PRONE")
967}
968
Jingwen Chenc711fec2020-11-22 23:52:50 -0500969// XrefCorpusName returns the Kythe cross-reference corpus name.
Sasha Smundak2a4549e2018-11-05 16:49:08 -0800970func (c *config) XrefCorpusName() string {
971 return c.Getenv("XREF_CORPUS")
972}
973
Jingwen Chenc711fec2020-11-22 23:52:50 -0500974// XrefCuEncoding returns the compilation unit encoding to use for Kythe code
975// xrefs. Can be 'json' (default), 'proto' or 'all'.
Sasha Smundak6c2d4f92020-01-09 17:34:23 -0800976func (c *config) XrefCuEncoding() string {
977 if enc := c.Getenv("KYTHE_KZIP_ENCODING"); enc != "" {
978 return enc
979 }
980 return "json"
981}
982
Sasha Smundakb0addaf2021-02-16 10:39:40 -0800983// XrefCuJavaSourceMax returns the maximum number of the Java source files
984// in a single compilation unit
985const xrefJavaSourceFileMaxDefault = "1000"
986
987func (c Config) XrefCuJavaSourceMax() string {
988 v := c.Getenv("KYTHE_JAVA_SOURCE_BATCH_SIZE")
989 if v == "" {
990 return xrefJavaSourceFileMaxDefault
991 }
992 if _, err := strconv.ParseUint(v, 0, 0); err != nil {
993 fmt.Fprintf(os.Stderr,
994 "bad KYTHE_JAVA_SOURCE_BATCH_SIZE value: %s, will use %s",
995 err, xrefJavaSourceFileMaxDefault)
996 return xrefJavaSourceFileMaxDefault
997 }
998 return v
999
1000}
1001
Sasha Smundak2a4549e2018-11-05 16:49:08 -08001002func (c *config) EmitXrefRules() bool {
1003 return c.XrefCorpusName() != ""
1004}
1005
Dan Willemsena03cf6d2016-09-26 15:45:04 -07001006func (c *config) ClangTidy() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001007 return Bool(c.productVariables.ClangTidy)
Dan Willemsena03cf6d2016-09-26 15:45:04 -07001008}
1009
1010func (c *config) TidyChecks() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001011 if c.productVariables.TidyChecks == nil {
Dan Willemsena03cf6d2016-09-26 15:45:04 -07001012 return ""
1013 }
Dan Willemsen45133ac2018-03-09 21:22:06 -08001014 return *c.productVariables.TidyChecks
Dan Willemsena03cf6d2016-09-26 15:45:04 -07001015}
1016
Colin Cross0f4e0d62016-07-27 10:56:55 -07001017func (c *config) LibartImgHostBaseAddress() string {
1018 return "0x60000000"
1019}
1020
1021func (c *config) LibartImgDeviceBaseAddress() string {
Elliott Hughesda3a0712020-03-06 16:55:28 -08001022 return "0x70000000"
Colin Cross0f4e0d62016-07-27 10:56:55 -07001023}
1024
Hiroshi Yamauchie2a10632016-12-19 13:44:41 -08001025func (c *config) ArtUseReadBarrier() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001026 return Bool(c.productVariables.ArtUseReadBarrier)
Hiroshi Yamauchie2a10632016-12-19 13:44:41 -08001027}
1028
Jingwen Chenc711fec2020-11-22 23:52:50 -05001029// Enforce Runtime Resource Overlays for a module. RROs supersede static RROs,
1030// but some modules still depend on it.
1031//
1032// More info: https://source.android.com/devices/architecture/rros
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001033func (c *config) EnforceRROForModule(name string) bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001034 enforceList := c.productVariables.EnforceRROTargets
Jeongik Chacee5ba92021-02-19 12:11:51 +09001035
Roland Levillainf6cc2612020-07-09 16:58:14 +01001036 if len(enforceList) > 0 {
Yo Chiang4ebd06a2019-10-01 13:13:41 +08001037 if InList("*", enforceList) {
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001038 return true
1039 }
Colin Crossa74ca042019-01-31 14:31:51 -08001040 return InList(name, enforceList)
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001041 }
1042 return false
1043}
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001044func (c *config) EnforceRROExcludedOverlay(path string) bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001045 excluded := c.productVariables.EnforceRROExcludedOverlays
Roland Levillainf6cc2612020-07-09 16:58:14 +01001046 if len(excluded) > 0 {
Jaewoong Jung3aff5782020-02-11 07:54:35 -08001047 return HasAnyPrefix(path, excluded)
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001048 }
1049 return false
1050}
1051
1052func (c *config) ExportedNamespaces() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001053 return append([]string(nil), c.productVariables.NamespacesToExport...)
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001054}
1055
1056func (c *config) HostStaticBinaries() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001057 return Bool(c.productVariables.HostStaticBinaries)
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001058}
1059
Colin Cross5a0dcd52018-10-05 14:20:06 -07001060func (c *config) UncompressPrivAppDex() bool {
1061 return Bool(c.productVariables.UncompressPrivAppDex)
1062}
1063
1064func (c *config) ModulesLoadedByPrivilegedModules() []string {
1065 return c.productVariables.ModulesLoadedByPrivilegedModules
1066}
1067
Jingwen Chenc711fec2020-11-22 23:52:50 -05001068// DexpreoptGlobalConfigPath returns the path to the dexpreopt.config file in
1069// the output directory, if it was created during the product configuration
1070// phase by Kati.
Jingwen Chenebb0b572020-11-02 00:24:57 -05001071func (c *config) DexpreoptGlobalConfigPath(ctx PathContext) OptionalPath {
Colin Cross988414c2020-01-11 01:11:46 +00001072 if c.productVariables.DexpreoptGlobalConfig == nil {
Jingwen Chenebb0b572020-11-02 00:24:57 -05001073 return OptionalPathForPath(nil)
1074 }
1075 return OptionalPathForPath(
1076 pathForBuildToolDep(ctx, *c.productVariables.DexpreoptGlobalConfig))
1077}
1078
Jingwen Chenc711fec2020-11-22 23:52:50 -05001079// DexpreoptGlobalConfig returns the raw byte contents of the dexpreopt global
1080// configuration. Since the configuration file was created by Kati during
1081// product configuration (externally of soong_build), it's not tracked, so we
1082// also manually add a Ninja file dependency on the configuration file to the
1083// rule that creates the main build.ninja file. This ensures that build.ninja is
1084// regenerated correctly if dexpreopt.config changes.
Jingwen Chenebb0b572020-11-02 00:24:57 -05001085func (c *config) DexpreoptGlobalConfig(ctx PathContext) ([]byte, error) {
1086 path := c.DexpreoptGlobalConfigPath(ctx)
1087 if !path.Valid() {
Colin Cross988414c2020-01-11 01:11:46 +00001088 return nil, nil
1089 }
Jingwen Chenebb0b572020-11-02 00:24:57 -05001090 ctx.AddNinjaFileDeps(path.String())
1091 return ioutil.ReadFile(absolutePath(path.String()))
Colin Cross43f08db2018-11-12 10:13:39 -08001092}
1093
Inseob Kim7b85eeb2021-03-23 20:52:24 +09001094func (c *deviceConfig) WithDexpreopt() bool {
1095 return c.config.productVariables.WithDexpreopt
1096}
1097
David Brazdil91b4e3e2019-01-23 21:04:05 +00001098func (c *config) FrameworksBaseDirExists(ctx PathContext) bool {
Colin Cross5a756a62021-03-16 16:34:46 -07001099 return ExistentPathForSource(ctx, "frameworks", "base", "Android.bp").Valid()
David Brazdil91b4e3e2019-01-23 21:04:05 +00001100}
1101
Inseob Kimae553032019-05-14 18:52:49 +09001102func (c *config) VndkSnapshotBuildArtifacts() bool {
1103 return Bool(c.productVariables.VndkSnapshotBuildArtifacts)
1104}
1105
Colin Cross3b19f5d2019-09-17 14:45:31 -07001106func (c *config) HasMultilibConflict(arch ArchType) bool {
1107 return c.multilibConflicts[arch]
1108}
1109
Bill Peckhambae47492021-01-08 09:34:44 -08001110func (c *config) PrebuiltHiddenApiDir(ctx PathContext) string {
1111 return String(c.productVariables.PrebuiltHiddenApiDir)
1112}
1113
Colin Cross9272ade2016-08-17 15:24:12 -07001114func (c *deviceConfig) Arches() []Arch {
1115 var arches []Arch
Dan Willemsen0ef639b2018-10-10 17:02:29 -07001116 for _, target := range c.config.Targets[Android] {
Colin Cross9272ade2016-08-17 15:24:12 -07001117 arches = append(arches, target.Arch)
1118 }
1119 return arches
1120}
Dan Willemsend2ede872016-11-18 14:54:24 -08001121
Jayant Chowdhary34ce67d2018-03-08 11:00:50 -08001122func (c *deviceConfig) BinderBitness() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001123 is32BitBinder := c.config.productVariables.Binder32bit
Jayant Chowdhary34ce67d2018-03-08 11:00:50 -08001124 if is32BitBinder != nil && *is32BitBinder {
1125 return "32"
1126 }
1127 return "64"
1128}
1129
Dan Willemsen4353bc42016-12-05 17:16:02 -08001130func (c *deviceConfig) VendorPath() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001131 if c.config.productVariables.VendorPath != nil {
1132 return *c.config.productVariables.VendorPath
Dan Willemsen4353bc42016-12-05 17:16:02 -08001133 }
1134 return "vendor"
1135}
1136
Justin Yun71549282017-11-17 12:10:28 +09001137func (c *deviceConfig) VndkVersion() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001138 return String(c.config.productVariables.DeviceVndkVersion)
Justin Yun71549282017-11-17 12:10:28 +09001139}
1140
Jose Galmes6f843bc2020-12-11 13:36:29 -08001141func (c *deviceConfig) RecoverySnapshotVersion() string {
1142 return String(c.config.productVariables.RecoverySnapshotVersion)
1143}
1144
Jeongik Cha219141c2020-08-06 23:00:37 +09001145func (c *deviceConfig) CurrentApiLevelForVendorModules() string {
1146 return StringDefault(c.config.productVariables.DeviceCurrentApiLevelForVendorModules, "current")
1147}
1148
Justin Yun8fe12122017-12-07 17:18:15 +09001149func (c *deviceConfig) PlatformVndkVersion() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001150 return String(c.config.productVariables.Platform_vndk_version)
Justin Yun8fe12122017-12-07 17:18:15 +09001151}
1152
Justin Yun5f7f7e82019-11-18 19:52:14 +09001153func (c *deviceConfig) ProductVndkVersion() string {
1154 return String(c.config.productVariables.ProductVndkVersion)
1155}
1156
Justin Yun71549282017-11-17 12:10:28 +09001157func (c *deviceConfig) ExtraVndkVersions() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001158 return c.config.productVariables.ExtraVndkVersions
Dan Willemsend2ede872016-11-18 14:54:24 -08001159}
Jack He8cc71432016-12-08 15:45:07 -08001160
Vic Yangefd249e2018-11-12 20:19:56 -08001161func (c *deviceConfig) VndkUseCoreVariant() bool {
1162 return Bool(c.config.productVariables.VndkUseCoreVariant)
1163}
1164
Jiyong Park1a5d7b12018-01-15 15:05:10 +09001165func (c *deviceConfig) SystemSdkVersions() []string {
Colin Crossa74ca042019-01-31 14:31:51 -08001166 return c.config.productVariables.DeviceSystemSdkVersions
Jiyong Park1a5d7b12018-01-15 15:05:10 +09001167}
1168
1169func (c *deviceConfig) PlatformSystemSdkVersions() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001170 return c.config.productVariables.Platform_systemsdk_versions
Jiyong Park1a5d7b12018-01-15 15:05:10 +09001171}
1172
Jiyong Park2db76922017-11-08 16:03:48 +09001173func (c *deviceConfig) OdmPath() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001174 if c.config.productVariables.OdmPath != nil {
1175 return *c.config.productVariables.OdmPath
Jiyong Park2db76922017-11-08 16:03:48 +09001176 }
1177 return "odm"
1178}
1179
Jaekyun Seok5cfbfbb2018-01-10 19:00:15 +09001180func (c *deviceConfig) ProductPath() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001181 if c.config.productVariables.ProductPath != nil {
1182 return *c.config.productVariables.ProductPath
Jiyong Park2db76922017-11-08 16:03:48 +09001183 }
Jaekyun Seok5cfbfbb2018-01-10 19:00:15 +09001184 return "product"
Jiyong Park2db76922017-11-08 16:03:48 +09001185}
1186
Justin Yund5f6c822019-06-25 16:47:17 +09001187func (c *deviceConfig) SystemExtPath() string {
1188 if c.config.productVariables.SystemExtPath != nil {
1189 return *c.config.productVariables.SystemExtPath
Dario Frenifd05a742018-05-29 13:28:54 +01001190 }
Justin Yund5f6c822019-06-25 16:47:17 +09001191 return "system_ext"
Dario Frenifd05a742018-05-29 13:28:54 +01001192}
1193
Jack He8cc71432016-12-08 15:45:07 -08001194func (c *deviceConfig) BtConfigIncludeDir() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001195 return String(c.config.productVariables.BtConfigIncludeDir)
Jack He8cc71432016-12-08 15:45:07 -08001196}
Dan Willemsen581341d2017-02-09 16:16:31 -08001197
Jiyong Parkd773eb32017-07-03 13:18:12 +09001198func (c *deviceConfig) DeviceKernelHeaderDirs() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001199 return c.config.productVariables.DeviceKernelHeaders
Jiyong Parkd773eb32017-07-03 13:18:12 +09001200}
1201
Roland Levillainada12702020-06-09 13:07:36 +01001202// JavaCoverageEnabledForPath returns whether Java code coverage is enabled for
1203// path. Coverage is enabled by default when the product variable
1204// JavaCoveragePaths is empty. If JavaCoveragePaths is not empty, coverage is
1205// enabled for any path which is part of this variable (and not part of the
1206// JavaCoverageExcludePaths product variable). Value "*" in JavaCoveragePaths
1207// represents any path.
1208func (c *deviceConfig) JavaCoverageEnabledForPath(path string) bool {
1209 coverage := false
Chris Gross2f748692020-06-24 20:36:59 +00001210 if len(c.config.productVariables.JavaCoveragePaths) == 0 ||
Roland Levillainada12702020-06-09 13:07:36 +01001211 InList("*", c.config.productVariables.JavaCoveragePaths) ||
1212 HasAnyPrefix(path, c.config.productVariables.JavaCoveragePaths) {
1213 coverage = true
1214 }
Roland Levillainf6cc2612020-07-09 16:58:14 +01001215 if coverage && len(c.config.productVariables.JavaCoverageExcludePaths) > 0 {
Roland Levillainada12702020-06-09 13:07:36 +01001216 if HasAnyPrefix(path, c.config.productVariables.JavaCoverageExcludePaths) {
1217 coverage = false
1218 }
1219 }
1220 return coverage
1221}
1222
Colin Cross1a6acd42020-06-16 17:51:46 -07001223// Returns true if gcov or clang coverage is enabled.
Dan Willemsen581341d2017-02-09 16:16:31 -08001224func (c *deviceConfig) NativeCoverageEnabled() bool {
Colin Cross1a6acd42020-06-16 17:51:46 -07001225 return Bool(c.config.productVariables.GcovCoverage) ||
1226 Bool(c.config.productVariables.ClangCoverage)
Dan Willemsen581341d2017-02-09 16:16:31 -08001227}
1228
Oliver Nguyen1382ab62019-12-06 15:22:41 -08001229func (c *deviceConfig) ClangCoverageEnabled() bool {
1230 return Bool(c.config.productVariables.ClangCoverage)
1231}
1232
Colin Cross1a6acd42020-06-16 17:51:46 -07001233func (c *deviceConfig) GcovCoverageEnabled() bool {
1234 return Bool(c.config.productVariables.GcovCoverage)
1235}
1236
Roland Levillain4f5297b2020-06-09 12:44:06 +01001237// NativeCoverageEnabledForPath returns whether (GCOV- or Clang-based) native
1238// code coverage is enabled for path. By default, coverage is not enabled for a
1239// given path unless it is part of the NativeCoveragePaths product variable (and
1240// not part of the NativeCoverageExcludePaths product variable). Value "*" in
1241// NativeCoveragePaths represents any path.
1242func (c *deviceConfig) NativeCoverageEnabledForPath(path string) bool {
Ryan Campbell469a18a2017-02-27 09:01:54 -08001243 coverage := false
Roland Levillainf6cc2612020-07-09 16:58:14 +01001244 if len(c.config.productVariables.NativeCoveragePaths) > 0 {
Roland Levillain4f5297b2020-06-09 12:44:06 +01001245 if InList("*", c.config.productVariables.NativeCoveragePaths) || HasAnyPrefix(path, c.config.productVariables.NativeCoveragePaths) {
Ivan Lozano5f595532017-07-13 14:46:05 -07001246 coverage = true
Dan Willemsen581341d2017-02-09 16:16:31 -08001247 }
1248 }
Roland Levillainf6cc2612020-07-09 16:58:14 +01001249 if coverage && len(c.config.productVariables.NativeCoverageExcludePaths) > 0 {
Roland Levillain4f5297b2020-06-09 12:44:06 +01001250 if HasAnyPrefix(path, c.config.productVariables.NativeCoverageExcludePaths) {
Ivan Lozano5f595532017-07-13 14:46:05 -07001251 coverage = false
Ryan Campbell469a18a2017-02-27 09:01:54 -08001252 }
1253 }
1254 return coverage
Dan Willemsen581341d2017-02-09 16:16:31 -08001255}
Ivan Lozano5f595532017-07-13 14:46:05 -07001256
Pirama Arumuga Nainar49540802018-01-29 23:11:42 -08001257func (c *deviceConfig) PgoAdditionalProfileDirs() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001258 return c.config.productVariables.PgoAdditionalProfileDirs
Pirama Arumuga Nainar49540802018-01-29 23:11:42 -08001259}
1260
Tri Vo35a51432018-03-25 20:00:00 -07001261func (c *deviceConfig) VendorSepolicyDirs() []string {
1262 return c.config.productVariables.BoardVendorSepolicyDirs
1263}
1264
1265func (c *deviceConfig) OdmSepolicyDirs() []string {
1266 return c.config.productVariables.BoardOdmSepolicyDirs
1267}
1268
Felixa20a8752020-05-17 18:28:35 +02001269func (c *deviceConfig) SystemExtPublicSepolicyDirs() []string {
1270 return c.config.productVariables.SystemExtPublicSepolicyDirs
Tri Vo35a51432018-03-25 20:00:00 -07001271}
1272
Felixa20a8752020-05-17 18:28:35 +02001273func (c *deviceConfig) SystemExtPrivateSepolicyDirs() []string {
1274 return c.config.productVariables.SystemExtPrivateSepolicyDirs
Tri Vo35a51432018-03-25 20:00:00 -07001275}
1276
Inseob Kim0866b002019-04-15 20:21:29 +09001277func (c *deviceConfig) SepolicyM4Defs() []string {
1278 return c.config.productVariables.BoardSepolicyM4Defs
1279}
1280
Jiyong Park7f67f482019-01-05 12:57:48 +09001281func (c *deviceConfig) OverrideManifestPackageNameFor(name string) (manifestName string, overridden bool) {
Jaewoong Jung2ad817c2019-01-18 14:27:16 -08001282 return findOverrideValue(c.config.productVariables.ManifestPackageNameOverrides, name,
1283 "invalid override rule %q in PRODUCT_MANIFEST_PACKAGE_NAME_OVERRIDES should be <module_name>:<manifest_name>")
1284}
1285
1286func (c *deviceConfig) OverrideCertificateFor(name string) (certificatePath string, overridden bool) {
Jaewoong Jungacb6db32019-02-28 16:22:30 +00001287 return findOverrideValue(c.config.productVariables.CertificateOverrides, name,
Jaewoong Jung2ad817c2019-01-18 14:27:16 -08001288 "invalid override rule %q in PRODUCT_CERTIFICATE_OVERRIDES should be <module_name>:<certificate_module_name>")
1289}
1290
Jaewoong Jung9d22a912019-01-23 16:27:47 -08001291func (c *deviceConfig) OverridePackageNameFor(name string) string {
1292 newName, overridden := findOverrideValue(
1293 c.config.productVariables.PackageNameOverrides,
1294 name,
1295 "invalid override rule %q in PRODUCT_PACKAGE_NAME_OVERRIDES should be <module_name>:<package_name>")
1296 if overridden {
1297 return newName
1298 }
1299 return name
1300}
1301
Jaewoong Jung2ad817c2019-01-18 14:27:16 -08001302func findOverrideValue(overrides []string, name string, errorMsg string) (newValue string, overridden bool) {
Jiyong Park7f67f482019-01-05 12:57:48 +09001303 if overrides == nil || len(overrides) == 0 {
1304 return "", false
1305 }
1306 for _, o := range overrides {
1307 split := strings.Split(o, ":")
1308 if len(split) != 2 {
1309 // This shouldn't happen as this is first checked in make, but just in case.
Jaewoong Jung2ad817c2019-01-18 14:27:16 -08001310 panic(fmt.Errorf(errorMsg, o))
Jiyong Park7f67f482019-01-05 12:57:48 +09001311 }
1312 if matchPattern(split[0], name) {
1313 return substPattern(split[0], split[1], name), true
1314 }
1315 }
1316 return "", false
1317}
1318
Ivan Lozano5f595532017-07-13 14:46:05 -07001319func (c *config) IntegerOverflowDisabledForPath(path string) bool {
Roland Levillainf6cc2612020-07-09 16:58:14 +01001320 if len(c.productVariables.IntegerOverflowExcludePaths) == 0 {
Ivan Lozano5f595532017-07-13 14:46:05 -07001321 return false
1322 }
Jaewoong Jung3aff5782020-02-11 07:54:35 -08001323 return HasAnyPrefix(path, c.productVariables.IntegerOverflowExcludePaths)
Ivan Lozano5f595532017-07-13 14:46:05 -07001324}
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001325
1326func (c *config) CFIDisabledForPath(path string) bool {
Roland Levillainf6cc2612020-07-09 16:58:14 +01001327 if len(c.productVariables.CFIExcludePaths) == 0 {
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001328 return false
1329 }
Jaewoong Jung3aff5782020-02-11 07:54:35 -08001330 return HasAnyPrefix(path, c.productVariables.CFIExcludePaths)
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001331}
1332
1333func (c *config) CFIEnabledForPath(path string) bool {
Roland Levillainf6cc2612020-07-09 16:58:14 +01001334 if len(c.productVariables.CFIIncludePaths) == 0 {
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001335 return false
1336 }
Evgenii Stepanov779b64e2021-04-09 14:33:10 -07001337 return HasAnyPrefix(path, c.productVariables.CFIIncludePaths) && !c.CFIDisabledForPath(path)
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001338}
Colin Crosse15ddaf2017-12-04 11:24:31 -08001339
Evgenii Stepanov4beaa0c2021-01-05 16:41:26 -08001340func (c *config) MemtagHeapDisabledForPath(path string) bool {
1341 if len(c.productVariables.MemtagHeapExcludePaths) == 0 {
1342 return false
1343 }
1344 return HasAnyPrefix(path, c.productVariables.MemtagHeapExcludePaths)
1345}
1346
1347func (c *config) MemtagHeapAsyncEnabledForPath(path string) bool {
1348 if len(c.productVariables.MemtagHeapAsyncIncludePaths) == 0 {
1349 return false
1350 }
Evgenii Stepanov779b64e2021-04-09 14:33:10 -07001351 return HasAnyPrefix(path, c.productVariables.MemtagHeapAsyncIncludePaths) && !c.MemtagHeapDisabledForPath(path)
Evgenii Stepanov4beaa0c2021-01-05 16:41:26 -08001352}
1353
1354func (c *config) MemtagHeapSyncEnabledForPath(path string) bool {
1355 if len(c.productVariables.MemtagHeapSyncIncludePaths) == 0 {
1356 return false
1357 }
Evgenii Stepanov779b64e2021-04-09 14:33:10 -07001358 return HasAnyPrefix(path, c.productVariables.MemtagHeapSyncIncludePaths) && !c.MemtagHeapDisabledForPath(path)
Evgenii Stepanov4beaa0c2021-01-05 16:41:26 -08001359}
1360
Dan Willemsen0fe78662018-03-26 12:41:18 -07001361func (c *config) VendorConfig(name string) VendorConfig {
Colin Cross9d34f352019-11-22 16:03:51 -08001362 return soongconfig.Config(c.productVariables.VendorVars[name])
Dan Willemsen0fe78662018-03-26 12:41:18 -07001363}
1364
Colin Cross395f2cf2018-10-24 16:10:32 -07001365func (c *config) NdkAbis() bool {
1366 return Bool(c.productVariables.Ndk_abis)
1367}
1368
Martin Stjernholmc1ecc432019-11-15 15:00:31 +00001369func (c *config) AmlAbis() bool {
1370 return Bool(c.productVariables.Aml_abis)
1371}
1372
Jiyong Park8fd61922018-11-08 02:50:25 +09001373func (c *config) FlattenApex() bool {
Roland Levillaina3863212019-08-12 19:56:16 +01001374 return Bool(c.productVariables.Flatten_apex)
Jiyong Park8fd61922018-11-08 02:50:25 +09001375}
1376
Jiyong Park4da07972021-01-05 21:01:11 +09001377func (c *config) ForceApexSymlinkOptimization() bool {
1378 return Bool(c.productVariables.ForceApexSymlinkOptimization)
1379}
1380
Mohammad Samiul Islam3cd005d2020-11-26 13:32:26 +00001381func (c *config) CompressedApex() bool {
1382 return Bool(c.productVariables.CompressedApex)
1383}
1384
Jeongik Chac9464142019-01-07 12:07:27 +09001385func (c *config) EnforceSystemCertificate() bool {
1386 return Bool(c.productVariables.EnforceSystemCertificate)
1387}
1388
Colin Cross440e0d02020-06-11 11:32:11 -07001389func (c *config) EnforceSystemCertificateAllowList() []string {
1390 return c.productVariables.EnforceSystemCertificateAllowList
Jeongik Chac9464142019-01-07 12:07:27 +09001391}
1392
Jeongik Cha2cc570d2019-10-29 15:44:45 +09001393func (c *config) EnforceProductPartitionInterface() bool {
1394 return Bool(c.productVariables.EnforceProductPartitionInterface)
1395}
1396
JaeMan Parkff715562020-10-19 17:25:58 +09001397func (c *config) EnforceInterPartitionJavaSdkLibrary() bool {
1398 return Bool(c.productVariables.EnforceInterPartitionJavaSdkLibrary)
1399}
1400
1401func (c *config) InterPartitionJavaLibraryAllowList() []string {
1402 return c.productVariables.InterPartitionJavaLibraryAllowList
1403}
1404
Jooyung Han3ab2c3e2019-12-05 16:27:44 +09001405func (c *config) InstallExtraFlattenedApexes() bool {
1406 return Bool(c.productVariables.InstallExtraFlattenedApexes)
1407}
1408
Colin Crossf24a22a2019-01-31 14:12:44 -08001409func (c *config) ProductHiddenAPIStubs() []string {
1410 return c.productVariables.ProductHiddenAPIStubs
Colin Cross8faf8fc2019-01-16 15:15:52 -08001411}
1412
Colin Crossf24a22a2019-01-31 14:12:44 -08001413func (c *config) ProductHiddenAPIStubsSystem() []string {
1414 return c.productVariables.ProductHiddenAPIStubsSystem
Colin Cross8faf8fc2019-01-16 15:15:52 -08001415}
1416
Colin Crossf24a22a2019-01-31 14:12:44 -08001417func (c *config) ProductHiddenAPIStubsTest() []string {
1418 return c.productVariables.ProductHiddenAPIStubsTest
Colin Cross8faf8fc2019-01-16 15:15:52 -08001419}
Dan Willemsen71c74602019-04-10 12:27:35 -07001420
Dan Willemsen54879d12019-04-18 10:08:46 -07001421func (c *deviceConfig) TargetFSConfigGen() []string {
Dan Willemsen71c74602019-04-10 12:27:35 -07001422 return c.config.productVariables.TargetFSConfigGen
1423}
Inseob Kim0866b002019-04-15 20:21:29 +09001424
1425func (c *config) ProductPublicSepolicyDirs() []string {
1426 return c.productVariables.ProductPublicSepolicyDirs
1427}
1428
1429func (c *config) ProductPrivateSepolicyDirs() []string {
1430 return c.productVariables.ProductPrivateSepolicyDirs
1431}
1432
Colin Cross50ddcc42019-05-16 12:28:22 -07001433func (c *config) MissingUsesLibraries() []string {
1434 return c.productVariables.MissingUsesLibraries
1435}
1436
Inseob Kim1f086e22019-05-09 13:29:15 +09001437func (c *deviceConfig) DeviceArch() string {
1438 return String(c.config.productVariables.DeviceArch)
1439}
1440
1441func (c *deviceConfig) DeviceArchVariant() string {
1442 return String(c.config.productVariables.DeviceArchVariant)
1443}
1444
1445func (c *deviceConfig) DeviceSecondaryArch() string {
1446 return String(c.config.productVariables.DeviceSecondaryArch)
1447}
1448
1449func (c *deviceConfig) DeviceSecondaryArchVariant() string {
1450 return String(c.config.productVariables.DeviceSecondaryArchVariant)
1451}
Yifan Hong82db7352020-01-21 16:12:26 -08001452
1453func (c *deviceConfig) BoardUsesRecoveryAsBoot() bool {
1454 return Bool(c.config.productVariables.BoardUsesRecoveryAsBoot)
1455}
Yifan Hong97365ee2020-07-29 09:51:57 -07001456
1457func (c *deviceConfig) BoardKernelBinaries() []string {
1458 return c.config.productVariables.BoardKernelBinaries
1459}
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001460
Yifan Hong42bef8d2020-08-05 14:36:09 -07001461func (c *deviceConfig) BoardKernelModuleInterfaceVersions() []string {
1462 return c.config.productVariables.BoardKernelModuleInterfaceVersions
1463}
1464
Yifan Hongdd8dacc2020-10-21 15:40:17 -07001465func (c *deviceConfig) BoardMoveRecoveryResourcesToVendorBoot() bool {
1466 return Bool(c.config.productVariables.BoardMoveRecoveryResourcesToVendorBoot)
1467}
1468
Inseob Kim16ebd5a2020-12-09 23:08:17 +09001469func (c *deviceConfig) PlatformSepolicyVersion() string {
1470 return String(c.config.productVariables.PlatformSepolicyVersion)
1471}
1472
Inseob Kima10ef272021-09-15 03:04:53 +00001473func (c *deviceConfig) TotSepolicyVersion() string {
1474 return String(c.config.productVariables.TotSepolicyVersion)
1475}
1476
Inseob Kim16ebd5a2020-12-09 23:08:17 +09001477func (c *deviceConfig) BoardSepolicyVers() string {
Inseob Kim0c4eec82021-03-22 22:33:40 +09001478 if ver := String(c.config.productVariables.BoardSepolicyVers); ver != "" {
1479 return ver
1480 }
1481 return c.PlatformSepolicyVersion()
Inseob Kim16ebd5a2020-12-09 23:08:17 +09001482}
1483
1484func (c *deviceConfig) BoardReqdMaskPolicy() []string {
1485 return c.config.productVariables.BoardReqdMaskPolicy
1486}
1487
Inseob Kim7cf14652021-01-06 23:06:52 +09001488func (c *deviceConfig) DirectedVendorSnapshot() bool {
1489 return c.config.productVariables.DirectedVendorSnapshot
1490}
1491
1492func (c *deviceConfig) VendorSnapshotModules() map[string]bool {
1493 return c.config.productVariables.VendorSnapshotModules
1494}
1495
Jose Galmes4c6895e2021-02-09 07:44:30 -08001496func (c *deviceConfig) DirectedRecoverySnapshot() bool {
1497 return c.config.productVariables.DirectedRecoverySnapshot
1498}
1499
1500func (c *deviceConfig) RecoverySnapshotModules() map[string]bool {
1501 return c.config.productVariables.RecoverySnapshotModules
1502}
1503
Justin DeMartino383bfb32021-02-24 10:49:43 -08001504func createDirsMap(previous map[string]bool, dirs []string) (map[string]bool, error) {
1505 var ret = make(map[string]bool)
1506 for _, dir := range dirs {
1507 clean := filepath.Clean(dir)
1508 if previous[clean] || ret[clean] {
1509 return nil, fmt.Errorf("Duplicate entry %s", dir)
1510 }
1511 ret[clean] = true
1512 }
1513 return ret, nil
1514}
1515
1516func (c *deviceConfig) createDirsMapOnce(onceKey OnceKey, previous map[string]bool, dirs []string) map[string]bool {
1517 dirMap := c.Once(onceKey, func() interface{} {
1518 ret, err := createDirsMap(previous, dirs)
1519 if err != nil {
1520 panic(fmt.Errorf("%s: %w", onceKey.key, err))
1521 }
1522 return ret
1523 })
1524 if dirMap == nil {
1525 return nil
1526 }
1527 return dirMap.(map[string]bool)
1528}
1529
1530var vendorSnapshotDirsExcludedKey = NewOnceKey("VendorSnapshotDirsExcludedMap")
1531
1532func (c *deviceConfig) VendorSnapshotDirsExcludedMap() map[string]bool {
1533 return c.createDirsMapOnce(vendorSnapshotDirsExcludedKey, nil,
1534 c.config.productVariables.VendorSnapshotDirsExcluded)
1535}
1536
1537var vendorSnapshotDirsIncludedKey = NewOnceKey("VendorSnapshotDirsIncludedMap")
1538
1539func (c *deviceConfig) VendorSnapshotDirsIncludedMap() map[string]bool {
1540 excludedMap := c.VendorSnapshotDirsExcludedMap()
1541 return c.createDirsMapOnce(vendorSnapshotDirsIncludedKey, excludedMap,
1542 c.config.productVariables.VendorSnapshotDirsIncluded)
1543}
1544
1545var recoverySnapshotDirsExcludedKey = NewOnceKey("RecoverySnapshotDirsExcludedMap")
1546
1547func (c *deviceConfig) RecoverySnapshotDirsExcludedMap() map[string]bool {
1548 return c.createDirsMapOnce(recoverySnapshotDirsExcludedKey, nil,
1549 c.config.productVariables.RecoverySnapshotDirsExcluded)
1550}
1551
1552var recoverySnapshotDirsIncludedKey = NewOnceKey("RecoverySnapshotDirsIncludedMap")
1553
1554func (c *deviceConfig) RecoverySnapshotDirsIncludedMap() map[string]bool {
1555 excludedMap := c.RecoverySnapshotDirsExcludedMap()
1556 return c.createDirsMapOnce(recoverySnapshotDirsIncludedKey, excludedMap,
1557 c.config.productVariables.RecoverySnapshotDirsIncluded)
1558}
1559
Rob Seymour925aa092021-08-10 20:42:03 +00001560func (c *deviceConfig) HostFakeSnapshotEnabled() bool {
1561 return c.config.productVariables.HostFakeSnapshotEnabled
1562}
1563
Inseob Kim60c32f02020-12-21 22:53:05 +09001564func (c *deviceConfig) ShippingApiLevel() ApiLevel {
1565 if c.config.productVariables.ShippingApiLevel == nil {
1566 return NoneApiLevel
1567 }
1568 apiLevel, _ := strconv.Atoi(*c.config.productVariables.ShippingApiLevel)
1569 return uncheckedFinalApiLevel(apiLevel)
1570}
1571
Inseob Kim67e5add192021-03-17 18:05:33 +09001572func (c *deviceConfig) BuildBrokenEnforceSyspropOwner() bool {
1573 return c.config.productVariables.BuildBrokenEnforceSyspropOwner
1574}
1575
1576func (c *deviceConfig) BuildBrokenTrebleSyspropNeverallow() bool {
1577 return c.config.productVariables.BuildBrokenTrebleSyspropNeverallow
1578}
1579
Hridya Valsaraju5a5c7d52021-04-02 16:45:24 -07001580func (c *deviceConfig) BuildDebugfsRestrictionsEnabled() bool {
1581 return c.config.productVariables.BuildDebugfsRestrictionsEnabled
1582}
1583
Inseob Kim0cac7b42021-02-03 18:16:46 +09001584func (c *deviceConfig) BuildBrokenVendorPropertyNamespace() bool {
1585 return c.config.productVariables.BuildBrokenVendorPropertyNamespace
1586}
1587
Inseob Kim67e5add192021-03-17 18:05:33 +09001588func (c *deviceConfig) RequiresInsecureExecmemForSwiftshader() bool {
1589 return c.config.productVariables.RequiresInsecureExecmemForSwiftshader
1590}
1591
1592func (c *config) SelinuxIgnoreNeverallows() bool {
1593 return c.productVariables.SelinuxIgnoreNeverallows
1594}
1595
1596func (c *deviceConfig) SepolicySplit() bool {
1597 return c.config.productVariables.SepolicySplit
1598}
1599
Inseob Kima10ef272021-09-15 03:04:53 +00001600func (c *deviceConfig) SepolicyFreezeTestExtraDirs() []string {
1601 return c.config.productVariables.SepolicyFreezeTestExtraDirs
1602}
1603
1604func (c *deviceConfig) SepolicyFreezeTestExtraPrebuiltDirs() []string {
1605 return c.config.productVariables.SepolicyFreezeTestExtraPrebuiltDirs
1606}
1607
Jiyong Parkd163d4d2021-10-12 16:47:43 +09001608func (c *deviceConfig) GenerateAidlNdkPlatformBackend() bool {
1609 return c.config.productVariables.GenerateAidlNdkPlatformBackend
1610}
1611
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001612// The ConfiguredJarList struct provides methods for handling a list of (apex, jar) pairs.
1613// Such lists are used in the build system for things like bootclasspath jars or system server jars.
1614// The apex part is either an apex name, or a special names "platform" or "system_ext". Jar is a
1615// module name. The pairs come from Make product variables as a list of colon-separated strings.
1616//
1617// Examples:
1618// - "com.android.art:core-oj"
1619// - "platform:framework"
1620// - "system_ext:foo"
1621//
1622type ConfiguredJarList struct {
Jingwen Chenc711fec2020-11-22 23:52:50 -05001623 // A list of apex components, which can be an apex name,
1624 // or special names like "platform" or "system_ext".
1625 apexes []string
1626
1627 // A list of jar module name components.
1628 jars []string
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001629}
1630
Jingwen Chenc711fec2020-11-22 23:52:50 -05001631// Len returns the length of the list of jars.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001632func (l *ConfiguredJarList) Len() int {
1633 return len(l.jars)
1634}
1635
Jingwen Chenc711fec2020-11-22 23:52:50 -05001636// Jar returns the idx-th jar component of (apex, jar) pairs.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001637func (l *ConfiguredJarList) Jar(idx int) string {
1638 return l.jars[idx]
1639}
1640
Jingwen Chenc711fec2020-11-22 23:52:50 -05001641// Apex returns the idx-th apex component of (apex, jar) pairs.
Paul Duffin9a89a2a2020-10-28 19:20:06 +00001642func (l *ConfiguredJarList) Apex(idx int) string {
1643 return l.apexes[idx]
1644}
1645
Jingwen Chenc711fec2020-11-22 23:52:50 -05001646// ContainsJar returns true if the (apex, jar) pairs contains a pair with the
1647// given jar module name.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001648func (l *ConfiguredJarList) ContainsJar(jar string) bool {
1649 return InList(jar, l.jars)
1650}
1651
1652// If the list contains the given (apex, jar) pair.
1653func (l *ConfiguredJarList) containsApexJarPair(apex, jar string) bool {
1654 for i := 0; i < l.Len(); i++ {
Paul Duffin1e8c6072020-10-23 18:28:55 +01001655 if apex == l.apexes[i] && jar == l.jars[i] {
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001656 return true
1657 }
1658 }
1659 return false
1660}
1661
satayev3db35472021-05-06 23:59:58 +01001662// ApexOfJar returns the apex component of the first pair with the given jar name on the list, or
1663// an empty string if not found.
1664func (l *ConfiguredJarList) ApexOfJar(jar string) string {
1665 if idx := IndexList(jar, l.jars); idx != -1 {
1666 return l.Apex(IndexList(jar, l.jars))
1667 }
1668 return ""
1669}
1670
Jingwen Chenc711fec2020-11-22 23:52:50 -05001671// IndexOfJar returns the first pair with the given jar name on the list, or -1
1672// if not found.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001673func (l *ConfiguredJarList) IndexOfJar(jar string) int {
1674 return IndexList(jar, l.jars)
1675}
1676
Paul Duffin7d584e92020-10-23 18:26:03 +01001677func copyAndAppend(list []string, item string) []string {
1678 // Create the result list to be 1 longer than the input.
1679 result := make([]string, len(list)+1)
1680
1681 // Copy the whole input list into the result.
1682 count := copy(result, list)
1683
1684 // Insert the extra item at the end.
1685 result[count] = item
1686
1687 return result
1688}
1689
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001690// Append an (apex, jar) pair to the list.
Paul Duffin7d584e92020-10-23 18:26:03 +01001691func (l *ConfiguredJarList) Append(apex string, jar string) ConfiguredJarList {
1692 // Create a copy of the backing arrays before appending to avoid sharing backing
1693 // arrays that are mutated across instances.
1694 apexes := copyAndAppend(l.apexes, apex)
1695 jars := copyAndAppend(l.jars, jar)
1696
1697 return ConfiguredJarList{apexes, jars}
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001698}
1699
Jiakai Zhang519c5c82021-09-16 06:15:39 +00001700// Append a list of (apex, jar) pairs to the list.
1701func (l *ConfiguredJarList) AppendList(other ConfiguredJarList) ConfiguredJarList {
1702 apexes := make([]string, 0, l.Len()+other.Len())
1703 jars := make([]string, 0, l.Len()+other.Len())
1704
1705 apexes = append(apexes, l.apexes...)
1706 jars = append(jars, l.jars...)
1707
1708 apexes = append(apexes, other.apexes...)
1709 jars = append(jars, other.jars...)
1710
1711 return ConfiguredJarList{apexes, jars}
1712}
1713
Jingwen Chenc711fec2020-11-22 23:52:50 -05001714// RemoveList filters out a list of (apex, jar) pairs from the receiving list of pairs.
Paul Duffin7d584e92020-10-23 18:26:03 +01001715func (l *ConfiguredJarList) RemoveList(list ConfiguredJarList) ConfiguredJarList {
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001716 apexes := make([]string, 0, l.Len())
1717 jars := make([]string, 0, l.Len())
1718
1719 for i, jar := range l.jars {
Paul Duffin1e8c6072020-10-23 18:28:55 +01001720 apex := l.apexes[i]
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001721 if !list.containsApexJarPair(apex, jar) {
1722 apexes = append(apexes, apex)
1723 jars = append(jars, jar)
1724 }
1725 }
1726
Paul Duffin7d584e92020-10-23 18:26:03 +01001727 return ConfiguredJarList{apexes, jars}
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001728}
1729
satayevd34eb0c2021-08-06 13:20:28 +01001730// Filter keeps the entries if a jar appears in the given list of jars to keep. Returns a new list
1731// and any remaining jars that are not on this list.
1732func (l *ConfiguredJarList) Filter(jarsToKeep []string) (ConfiguredJarList, []string) {
satayev8fab6f82021-05-07 00:10:33 +01001733 var apexes []string
1734 var jars []string
1735
1736 for i, jar := range l.jars {
1737 if InList(jar, jarsToKeep) {
1738 apexes = append(apexes, l.apexes[i])
1739 jars = append(jars, jar)
1740 }
1741 }
1742
satayevd34eb0c2021-08-06 13:20:28 +01001743 return ConfiguredJarList{apexes, jars}, RemoveListFromList(jarsToKeep, jars)
satayev8fab6f82021-05-07 00:10:33 +01001744}
1745
Jingwen Chenc711fec2020-11-22 23:52:50 -05001746// CopyOfJars returns a copy of the list of strings containing jar module name
1747// components.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001748func (l *ConfiguredJarList) CopyOfJars() []string {
1749 return CopyOf(l.jars)
1750}
1751
Jingwen Chenc711fec2020-11-22 23:52:50 -05001752// CopyOfApexJarPairs returns a copy of the list of strings with colon-separated
1753// (apex, jar) pairs.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001754func (l *ConfiguredJarList) CopyOfApexJarPairs() []string {
1755 pairs := make([]string, 0, l.Len())
1756
1757 for i, jar := range l.jars {
Paul Duffin1e8c6072020-10-23 18:28:55 +01001758 apex := l.apexes[i]
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001759 pairs = append(pairs, apex+":"+jar)
1760 }
1761
1762 return pairs
1763}
1764
Jingwen Chenc711fec2020-11-22 23:52:50 -05001765// BuildPaths returns a list of build paths based on the given directory prefix.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001766func (l *ConfiguredJarList) BuildPaths(ctx PathContext, dir OutputPath) WritablePaths {
1767 paths := make(WritablePaths, l.Len())
1768 for i, jar := range l.jars {
1769 paths[i] = dir.Join(ctx, ModuleStem(jar)+".jar")
1770 }
1771 return paths
1772}
1773
Paul Duffin5f148ca2021-06-02 17:24:22 +01001774// BuildPathsByModule returns a map from module name to build paths based on the given directory
1775// prefix.
1776func (l *ConfiguredJarList) BuildPathsByModule(ctx PathContext, dir OutputPath) map[string]WritablePath {
1777 paths := map[string]WritablePath{}
1778 for _, jar := range l.jars {
1779 paths[jar] = dir.Join(ctx, ModuleStem(jar)+".jar")
1780 }
1781 return paths
1782}
1783
Jingwen Chenc711fec2020-11-22 23:52:50 -05001784// UnmarshalJSON converts JSON configuration from raw bytes into a
1785// ConfiguredJarList structure.
Paul Duffin69d1fb12020-10-23 21:14:20 +01001786func (l *ConfiguredJarList) UnmarshalJSON(b []byte) error {
1787 // Try and unmarshal into a []string each item of which contains a pair
1788 // <apex>:<jar>.
1789 var list []string
1790 err := json.Unmarshal(b, &list)
1791 if err != nil {
1792 // Did not work so return
1793 return err
1794 }
1795
1796 apexes, jars, err := splitListOfPairsIntoPairOfLists(list)
1797 if err != nil {
1798 return err
1799 }
1800 l.apexes = apexes
1801 l.jars = jars
1802 return nil
1803}
1804
Lukacs T. Berki720b3962021-03-17 13:34:30 +01001805func (l *ConfiguredJarList) MarshalJSON() ([]byte, error) {
1806 if len(l.apexes) != len(l.jars) {
1807 return nil, errors.New(fmt.Sprintf("Inconsistent ConfiguredJarList: apexes: %q, jars: %q", l.apexes, l.jars))
1808 }
1809
1810 list := make([]string, 0, len(l.apexes))
1811
1812 for i := 0; i < len(l.apexes); i++ {
1813 list = append(list, l.apexes[i]+":"+l.jars[i])
1814 }
1815
1816 return json.Marshal(list)
1817}
1818
Jingwen Chenc711fec2020-11-22 23:52:50 -05001819// ModuleStem hardcodes the stem of framework-minus-apex to return "framework".
1820//
1821// TODO(b/139391334): hard coded until we find a good way to query the stem of a
1822// module before any other mutators are run.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001823func ModuleStem(module string) string {
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001824 if module == "framework-minus-apex" {
1825 return "framework"
1826 }
1827 return module
1828}
1829
Jingwen Chenc711fec2020-11-22 23:52:50 -05001830// DevicePaths computes the on-device paths for the list of (apex, jar) pairs,
1831// based on the operating system.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001832func (l *ConfiguredJarList) DevicePaths(cfg Config, ostype OsType) []string {
1833 paths := make([]string, l.Len())
1834 for i, jar := range l.jars {
1835 apex := l.apexes[i]
1836 name := ModuleStem(jar) + ".jar"
1837
1838 var subdir string
1839 if apex == "platform" {
1840 subdir = "system/framework"
1841 } else if apex == "system_ext" {
1842 subdir = "system_ext/framework"
1843 } else {
1844 subdir = filepath.Join("apex", apex, "javalib")
1845 }
1846
1847 if ostype.Class == Host {
1848 paths[i] = filepath.Join(cfg.Getenv("OUT_DIR"), "host", cfg.PrebuiltOS(), subdir, name)
1849 } else {
1850 paths[i] = filepath.Join("/", subdir, name)
1851 }
1852 }
1853 return paths
1854}
1855
Paul Duffin7d584e92020-10-23 18:26:03 +01001856func (l *ConfiguredJarList) String() string {
1857 var pairs []string
1858 for i := 0; i < l.Len(); i++ {
1859 pairs = append(pairs, l.apexes[i]+":"+l.jars[i])
1860 }
1861 return strings.Join(pairs, ",")
1862}
1863
Paul Duffin01416602020-10-23 21:04:03 +01001864func splitListOfPairsIntoPairOfLists(list []string) ([]string, []string, error) {
1865 // Now we need to populate this list by splitting each item in the slice of
1866 // pairs and appending them to the appropriate list of apexes or jars.
1867 apexes := make([]string, len(list))
1868 jars := make([]string, len(list))
1869
1870 for i, apexjar := range list {
1871 apex, jar, err := splitConfiguredJarPair(apexjar)
1872 if err != nil {
1873 return nil, nil, err
1874 }
1875 apexes[i] = apex
1876 jars[i] = jar
1877 }
1878
1879 return apexes, jars, nil
1880}
1881
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001882// Expected format for apexJarValue = <apex name>:<jar name>
Paul Duffin01416602020-10-23 21:04:03 +01001883func splitConfiguredJarPair(str string) (string, string, error) {
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001884 pair := strings.SplitN(str, ":", 2)
1885 if len(pair) == 2 {
Paul Duffin9c3ac962021-02-03 14:11:27 +00001886 apex := pair[0]
1887 jar := pair[1]
1888 if apex == "" {
1889 return apex, jar, fmt.Errorf("invalid apex '%s' in <apex>:<jar> pair '%s', expected format: <apex>:<jar>", apex, str)
1890 }
1891 return apex, jar, nil
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001892 } else {
Paul Duffin01416602020-10-23 21:04:03 +01001893 return "error-apex", "error-jar", fmt.Errorf("malformed (apex, jar) pair: '%s', expected format: <apex>:<jar>", str)
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001894 }
1895}
1896
Paul Duffin9c3ac962021-02-03 14:11:27 +00001897// CreateTestConfiguredJarList is a function to create ConfiguredJarList for tests.
Paul Duffine10dfa42020-10-23 21:23:44 +01001898func CreateTestConfiguredJarList(list []string) ConfiguredJarList {
Paul Duffin9c3ac962021-02-03 14:11:27 +00001899 // Create the ConfiguredJarList in as similar way as it is created at runtime by marshalling to
1900 // a json list of strings and then unmarshalling into a ConfiguredJarList instance.
1901 b, err := json.Marshal(list)
Paul Duffin01416602020-10-23 21:04:03 +01001902 if err != nil {
Paul Duffine10dfa42020-10-23 21:23:44 +01001903 panic(err)
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001904 }
1905
Paul Duffin9c3ac962021-02-03 14:11:27 +00001906 var jarList ConfiguredJarList
1907 err = json.Unmarshal(b, &jarList)
1908 if err != nil {
1909 panic(err)
1910 }
1911
1912 return jarList
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001913}
1914
Jingwen Chenc711fec2020-11-22 23:52:50 -05001915// EmptyConfiguredJarList returns an empty jar list.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001916func EmptyConfiguredJarList() ConfiguredJarList {
1917 return ConfiguredJarList{}
1918}
1919
1920var earlyBootJarsKey = NewOnceKey("earlyBootJars")
1921
1922func (c *config) BootJars() []string {
1923 return c.Once(earlyBootJarsKey, func() interface{} {
Paul Duffin69d1fb12020-10-23 21:14:20 +01001924 list := c.productVariables.BootJars.CopyOfJars()
satayevd604b212021-07-21 14:23:52 +01001925 return append(list, c.productVariables.ApexBootJars.CopyOfJars()...)
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001926 }).([]string)
1927}
Paul Duffin9a89a2a2020-10-28 19:20:06 +00001928
satayevd604b212021-07-21 14:23:52 +01001929func (c *config) NonApexBootJars() ConfiguredJarList {
Paul Duffin9a89a2a2020-10-28 19:20:06 +00001930 return c.productVariables.BootJars
1931}
1932
satayevd604b212021-07-21 14:23:52 +01001933func (c *config) ApexBootJars() ConfiguredJarList {
1934 return c.productVariables.ApexBootJars
Paul Duffin9a89a2a2020-10-28 19:20:06 +00001935}
Colin Cross77cdcfd2021-03-12 11:28:25 -08001936
1937func (c *config) RBEWrapper() string {
1938 return c.GetenvWithDefault("RBE_WRAPPER", remoteexec.DefaultWrapperPath)
1939}