blob: afc138b1fafd478833d8948d589657583d05b89d [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
Jingwen Chen01812022021-11-19 14:29:43 +0000160 Bp2buildSoongConfigDefinitions soongconfig.Bp2BuildSoongConfigDefinitions
Jingwen Chen12b4c272021-03-10 02:05:59 -0500161
Colin Cross5e6a7972020-06-07 16:56:32 -0700162 // If testAllowNonExistentPaths is true then PathForSource and PathForModuleSrc won't error
163 // in tests when a path doesn't exist.
Pedro Loureiro5d190cc2021-02-15 15:41:33 +0000164 TestAllowNonExistentPaths bool
Colin Cross5e6a7972020-06-07 16:56:32 -0700165
Jingwen Chenc711fec2020-11-22 23:52:50 -0500166 // The list of files that when changed, must invalidate soong_build to
167 // regenerate build.ninja.
Colin Cross12129292020-10-29 18:23:58 -0700168 ninjaFileDepsSet sync.Map
169
Colin Cross9272ade2016-08-17 15:24:12 -0700170 OncePer
171}
172
173type deviceConfig struct {
Dan Willemsen00269f22017-07-06 16:59:48 -0700174 config *config
Colin Cross9272ade2016-08-17 15:24:12 -0700175 OncePer
Colin Cross3f40fa42015-01-30 17:27:36 -0800176}
177
Colin Cross485e5722015-08-27 13:28:01 -0700178type jsonConfigurable interface {
Colin Cross27385972015-09-18 10:57:10 -0700179 SetDefaultConfig()
Colin Cross485e5722015-08-27 13:28:01 -0700180}
Colin Cross3f40fa42015-01-30 17:27:36 -0800181
Colin Cross485e5722015-08-27 13:28:01 -0700182func loadConfig(config *config) error {
Colin Cross988414c2020-01-11 01:11:46 +0000183 return loadFromConfigFile(&config.productVariables, absolutePath(config.ProductVariablesFileName))
Colin Cross485e5722015-08-27 13:28:01 -0700184}
185
Jingwen Chenc711fec2020-11-22 23:52:50 -0500186// loadFromConfigFile loads and decodes configuration options from a JSON file
187// in the current working directory.
Liz Kammer09f947d2021-05-12 14:51:49 -0400188func loadFromConfigFile(configurable *productVariables, filename string) error {
Colin Cross3f40fa42015-01-30 17:27:36 -0800189 // Try to open the file
Colin Cross485e5722015-08-27 13:28:01 -0700190 configFileReader, err := os.Open(filename)
Colin Cross3f40fa42015-01-30 17:27:36 -0800191 defer configFileReader.Close()
192 if os.IsNotExist(err) {
193 // Need to create a file, so that blueprint & ninja don't get in
194 // a dependency tracking loop.
195 // Make a file-configurable-options with defaults, write it out using
196 // a json writer.
Colin Cross27385972015-09-18 10:57:10 -0700197 configurable.SetDefaultConfig()
198 err = saveToConfigFile(configurable, filename)
Colin Cross3f40fa42015-01-30 17:27:36 -0800199 if err != nil {
200 return err
201 }
Colin Cross15cd21a2018-02-27 11:26:02 -0800202 } else if err != nil {
203 return fmt.Errorf("config file: could not open %s: %s", filename, err.Error())
Colin Cross3f40fa42015-01-30 17:27:36 -0800204 } else {
205 // Make a decoder for it
206 jsonDecoder := json.NewDecoder(configFileReader)
Colin Cross485e5722015-08-27 13:28:01 -0700207 err = jsonDecoder.Decode(configurable)
Colin Cross3f40fa42015-01-30 17:27:36 -0800208 if err != nil {
Colin Cross15cd21a2018-02-27 11:26:02 -0800209 return fmt.Errorf("config file: %s did not parse correctly: %s", filename, err.Error())
Colin Cross3f40fa42015-01-30 17:27:36 -0800210 }
211 }
212
Liz Kammer09f947d2021-05-12 14:51:49 -0400213 if Bool(configurable.GcovCoverage) && Bool(configurable.ClangCoverage) {
214 return fmt.Errorf("GcovCoverage and ClangCoverage cannot both be set")
215 }
216
217 configurable.Native_coverage = proptools.BoolPtr(
218 Bool(configurable.GcovCoverage) ||
219 Bool(configurable.ClangCoverage))
220
Yuntao Xu402e9b02021-08-09 15:44:44 -0700221 // when Platform_sdk_final is true (or PLATFORM_VERSION_CODENAME is REL), use Platform_sdk_version;
222 // if false (pre-released version, for example), use Platform_sdk_codename.
223 if Bool(configurable.Platform_sdk_final) {
224 if configurable.Platform_sdk_version != nil {
225 configurable.Platform_sdk_version_or_codename =
226 proptools.StringPtr(strconv.Itoa(*(configurable.Platform_sdk_version)))
227 } else {
228 return fmt.Errorf("Platform_sdk_version cannot be pointed by a NULL pointer")
229 }
230 } else {
231 configurable.Platform_sdk_version_or_codename =
232 proptools.StringPtr(String(configurable.Platform_sdk_codename))
233 }
234
Liz Kammer09f947d2021-05-12 14:51:49 -0400235 return saveToBazelConfigFile(configurable, filepath.Dir(filename))
Colin Cross3f40fa42015-01-30 17:27:36 -0800236}
237
Colin Crossd8f20142016-11-03 09:43:26 -0700238// atomically writes the config file in case two copies of soong_build are running simultaneously
239// (for example, docs generation and ninja manifest generation)
Liz Kammer09f947d2021-05-12 14:51:49 -0400240func saveToConfigFile(config *productVariables, filename string) error {
Colin Cross3f40fa42015-01-30 17:27:36 -0800241 data, err := json.MarshalIndent(&config, "", " ")
242 if err != nil {
243 return fmt.Errorf("cannot marshal config data: %s", err.Error())
244 }
245
Colin Crossd8f20142016-11-03 09:43:26 -0700246 f, err := ioutil.TempFile(filepath.Dir(filename), "config")
Colin Cross3f40fa42015-01-30 17:27:36 -0800247 if err != nil {
Jingwen Chenc711fec2020-11-22 23:52:50 -0500248 return fmt.Errorf("cannot create empty config file %s: %s", filename, err.Error())
Colin Cross3f40fa42015-01-30 17:27:36 -0800249 }
Colin Crossd8f20142016-11-03 09:43:26 -0700250 defer os.Remove(f.Name())
251 defer f.Close()
Colin Cross3f40fa42015-01-30 17:27:36 -0800252
Colin Crossd8f20142016-11-03 09:43:26 -0700253 _, err = f.Write(data)
Colin Cross3f40fa42015-01-30 17:27:36 -0800254 if err != nil {
Colin Cross485e5722015-08-27 13:28:01 -0700255 return fmt.Errorf("default config file: %s could not be written: %s", filename, err.Error())
256 }
257
Colin Crossd8f20142016-11-03 09:43:26 -0700258 _, err = f.WriteString("\n")
Colin Cross485e5722015-08-27 13:28:01 -0700259 if err != nil {
260 return fmt.Errorf("default config file: %s could not be written: %s", filename, err.Error())
Colin Cross3f40fa42015-01-30 17:27:36 -0800261 }
262
Colin Crossd8f20142016-11-03 09:43:26 -0700263 f.Close()
264 os.Rename(f.Name(), filename)
265
Colin Cross3f40fa42015-01-30 17:27:36 -0800266 return nil
267}
268
Liz Kammer09f947d2021-05-12 14:51:49 -0400269func saveToBazelConfigFile(config *productVariables, outDir string) error {
270 dir := filepath.Join(outDir, bazel.SoongInjectionDirName, "product_config")
271 err := createDirIfNonexistent(dir, os.ModePerm)
272 if err != nil {
273 return fmt.Errorf("Could not create dir %s: %s", dir, err)
274 }
275
276 data, err := json.MarshalIndent(&config, "", " ")
277 if err != nil {
278 return fmt.Errorf("cannot marshal config data: %s", err.Error())
279 }
280
281 bzl := []string{
282 bazel.GeneratedBazelFileWarning,
283 fmt.Sprintf(`_product_vars = json.decode("""%s""")`, data),
284 "product_vars = _product_vars\n",
285 }
286 err = ioutil.WriteFile(filepath.Join(dir, "product_variables.bzl"), []byte(strings.Join(bzl, "\n")), 0644)
287 if err != nil {
288 return fmt.Errorf("Could not write .bzl config file %s", err)
289 }
290 err = ioutil.WriteFile(filepath.Join(dir, "BUILD"), []byte(bazel.GeneratedBazelFileWarning), 0644)
291 if err != nil {
292 return fmt.Errorf("Could not write BUILD config file %s", err)
293 }
294
295 return nil
296}
297
Colin Cross988414c2020-01-11 01:11:46 +0000298// NullConfig returns a mostly empty Config for use by standalone tools like dexpreopt_gen that
299// use the android package.
Lukacs T. Berkid6cee7e2021-09-01 16:25:51 +0200300func NullConfig(outDir, soongOutDir string) Config {
Colin Cross988414c2020-01-11 01:11:46 +0000301 return Config{
302 config: &config{
Lukacs T. Berkid6cee7e2021-09-01 16:25:51 +0200303 outDir: outDir,
Lukacs T. Berki9f6c24a2021-08-26 15:07:24 +0200304 soongOutDir: soongOutDir,
305 fs: pathtools.OsFs,
Colin Cross988414c2020-01-11 01:11:46 +0000306 },
307 }
308}
309
Jingwen Chenc711fec2020-11-22 23:52:50 -0500310// TestConfig returns a Config object for testing.
Colin Cross98be1bb2019-12-13 20:41:13 -0800311func TestConfig(buildDir string, env map[string]string, bp string, fs map[string][]byte) Config {
Colin Cross9c6241f2019-04-22 15:51:26 -0700312 envCopy := make(map[string]string)
313 for k, v := range env {
314 envCopy[k] = v
315 }
316
Jingwen Chen2838c812020-11-23 01:06:40 -0500317 // Copy the real PATH value to the test environment, it's needed by
318 // NonHermeticHostSystemTool() used in x86_darwin_host.go
Lukacs T. Berkideba7212021-03-04 10:50:10 +0100319 envCopy["PATH"] = os.Getenv("PATH")
Colin Cross9c6241f2019-04-22 15:51:26 -0700320
Dan Willemsen00269f22017-07-06 16:59:48 -0700321 config := &config{
Dan Willemsen45133ac2018-03-09 21:22:06 -0800322 productVariables: productVariables{
Dan Albert4f378d72020-07-23 17:32:15 -0700323 DeviceName: stringPtr("test_device"),
324 Platform_sdk_version: intPtr(30),
325 Platform_sdk_codename: stringPtr("S"),
Pedro Loureiroc3621422021-09-28 15:40:23 +0000326 Platform_version_active_codenames: []string{"S", "Tiramisu"},
Dan Albert4f378d72020-07-23 17:32:15 -0700327 DeviceSystemSdkVersions: []string{"14", "15"},
328 Platform_systemsdk_versions: []string{"29", "30"},
329 AAPTConfig: []string{"normal", "large", "xlarge", "hdpi", "xhdpi", "xxhdpi"},
330 AAPTPreferredConfig: stringPtr("xhdpi"),
331 AAPTCharacteristics: stringPtr("nosdcard"),
332 AAPTPrebuiltDPI: []string{"xhdpi", "xxhdpi"},
333 UncompressPrivAppDex: boolPtr(true),
Inseob Kim60c32f02020-12-21 22:53:05 +0900334 ShippingApiLevel: stringPtr("30"),
Dan Willemsen00269f22017-07-06 16:59:48 -0700335 },
336
Colin Cross7b6a55f2021-11-09 12:34:39 -0800337 outDir: buildDir,
338 soongOutDir: filepath.Join(buildDir, "soong"),
Colin Cross6ccbc912017-10-10 23:07:38 -0700339 captureBuild: true,
Colin Cross9c6241f2019-04-22 15:51:26 -0700340 env: envCopy,
Colin Cross5e6a7972020-06-07 16:56:32 -0700341
342 // Set testAllowNonExistentPaths so that test contexts don't need to specify every path
343 // passed to PathForSource or PathForModuleSrc.
Pedro Loureiro5d190cc2021-02-15 15:41:33 +0000344 TestAllowNonExistentPaths: true,
Chris Parsonsf3c96ef2020-09-29 02:23:17 -0400345
346 BazelContext: noopBazelContext{},
Dan Willemsen00269f22017-07-06 16:59:48 -0700347 }
348 config.deviceConfig = &deviceConfig{
349 config: config,
350 }
Dan Willemsen45133ac2018-03-09 21:22:06 -0800351 config.TestProductVariables = &config.productVariables
Dan Willemsen00269f22017-07-06 16:59:48 -0700352
Colin Cross98be1bb2019-12-13 20:41:13 -0800353 config.mockFileSystem(bp, fs)
354
Colin Cross790ef352021-10-25 19:15:55 -0700355 determineBuildOS(config)
356
Dan Willemsen00269f22017-07-06 16:59:48 -0700357 return Config{config}
Colin Crossce75d2c2016-10-06 16:12:58 -0700358}
359
Paul Duffin35816122021-02-24 01:49:52 +0000360func modifyTestConfigToSupportArchMutator(testConfig Config) {
Colin Crossae4c6182017-09-15 17:33:55 -0700361 config := testConfig.config
362
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700363 config.Targets = map[OsType][]Target{
364 Android: []Target{
Jiyong Park1613e552020-09-14 19:43:17 +0900365 {Android, Arch{ArchType: Arm64, ArchVariant: "armv8-a", Abi: []string{"arm64-v8a"}}, NativeBridgeDisabled, "", "", false},
366 {Android, Arch{ArchType: Arm, ArchVariant: "armv7-a-neon", Abi: []string{"armeabi-v7a"}}, NativeBridgeDisabled, "", "", false},
Colin Crossae4c6182017-09-15 17:33:55 -0700367 },
Colin Cross0c66bc62021-07-20 09:47:41 -0700368 config.BuildOS: []Target{
369 {config.BuildOS, Arch{ArchType: X86_64}, NativeBridgeDisabled, "", "", false},
370 {config.BuildOS, Arch{ArchType: X86}, NativeBridgeDisabled, "", "", false},
Colin Crossae4c6182017-09-15 17:33:55 -0700371 },
372 }
373
Colin Cross0d99f7c2019-05-14 16:01:24 -0700374 if runtime.GOOS == "darwin" {
Colin Cross0c66bc62021-07-20 09:47:41 -0700375 config.Targets[config.BuildOS] = config.Targets[config.BuildOS][:1]
Colin Cross0d99f7c2019-05-14 16:01:24 -0700376 }
377
Colin Cross0c66bc62021-07-20 09:47:41 -0700378 config.BuildOSTarget = config.Targets[config.BuildOS][0]
379 config.BuildOSCommonTarget = getCommonTargets(config.Targets[config.BuildOS])[0]
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700380 config.AndroidCommonTarget = getCommonTargets(config.Targets[Android])[0]
Jaewoong Jung642916f2020-10-09 17:25:15 -0700381 config.AndroidFirstDeviceTarget = firstTarget(config.Targets[Android], "lib64", "lib32")[0]
Inseob Kim1f086e22019-05-09 13:29:15 +0900382 config.TestProductVariables.DeviceArch = proptools.StringPtr("arm64")
383 config.TestProductVariables.DeviceArchVariant = proptools.StringPtr("armv8-a")
384 config.TestProductVariables.DeviceSecondaryArch = proptools.StringPtr("arm")
385 config.TestProductVariables.DeviceSecondaryArchVariant = proptools.StringPtr("armv7-a-neon")
Paul Duffin35816122021-02-24 01:49:52 +0000386}
Colin Cross2a076922018-10-04 23:28:25 -0700387
Colin Cross528d67e2021-07-23 22:23:07 +0000388func modifyTestConfigForMusl(config Config) {
389 delete(config.Targets, config.BuildOS)
390 config.productVariables.HostMusl = boolPtr(true)
391 determineBuildOS(config.config)
392 config.Targets[config.BuildOS] = []Target{
393 {config.BuildOS, Arch{ArchType: X86_64}, NativeBridgeDisabled, "", "", false},
394 {config.BuildOS, Arch{ArchType: X86}, NativeBridgeDisabled, "", "", false},
395 }
396
397 config.BuildOSTarget = config.Targets[config.BuildOS][0]
398 config.BuildOSCommonTarget = getCommonTargets(config.Targets[config.BuildOS])[0]
399}
400
Paul Duffin35816122021-02-24 01:49:52 +0000401// TestArchConfig returns a Config object suitable for using for tests that
402// need to run the arch mutator.
403func TestArchConfig(buildDir string, env map[string]string, bp string, fs map[string][]byte) Config {
404 testConfig := TestConfig(buildDir, env, bp, fs)
405 modifyTestConfigToSupportArchMutator(testConfig)
Colin Crossae4c6182017-09-15 17:33:55 -0700406 return testConfig
407}
408
Jingwen Chenc711fec2020-11-22 23:52:50 -0500409// ConfigForAdditionalRun is a config object which is "reset" for another
410// bootstrap run. Only per-run data is reset. Data which needs to persist across
411// multiple runs in the same program execution is carried over (such as Bazel
412// context or environment deps).
Lukacs T. Berki89fcdcb2021-09-07 09:10:33 +0200413func ConfigForAdditionalRun(c Config) (Config, error) {
414 newConfig, err := NewConfig(c.moduleListFile, c.runGoTests, c.outDir, c.soongOutDir, c.env)
Chris Parsonsf3c96ef2020-09-29 02:23:17 -0400415 if err != nil {
416 return Config{}, err
417 }
418 newConfig.BazelContext = c.BazelContext
419 newConfig.envDeps = c.envDeps
420 return newConfig, nil
421}
422
Jingwen Chenc711fec2020-11-22 23:52:50 -0500423// NewConfig creates a new Config object. The srcDir argument specifies the path
424// to the root source directory. It also loads the config file, if found.
Lukacs T. Berki89fcdcb2021-09-07 09:10:33 +0200425func NewConfig(moduleListFile string, runGoTests bool, outDir, soongOutDir string, availableEnv map[string]string) (Config, error) {
Jingwen Chenc711fec2020-11-22 23:52:50 -0500426 // Make a config with default options.
Colin Cross9272ade2016-08-17 15:24:12 -0700427 config := &config{
Lukacs T. Berki9f6c24a2021-08-26 15:07:24 +0200428 ProductVariablesFileName: filepath.Join(soongOutDir, productVariablesFileName),
Dan Willemsen87b17d12015-07-14 00:39:06 -0700429
Lukacs T. Berki53b2f362021-04-12 14:04:24 +0200430 env: availableEnv,
Colin Cross6ccbc912017-10-10 23:07:38 -0700431
Lukacs T. Berkie1df43f2021-09-08 15:31:14 +0200432 outDir: outDir,
433 soongOutDir: soongOutDir,
434 runGoTests: runGoTests,
435 multilibConflicts: make(map[ArchType]bool),
Colin Cross98be1bb2019-12-13 20:41:13 -0800436
Lukacs T. Berki89fcdcb2021-09-07 09:10:33 +0200437 moduleListFile: moduleListFile,
Chris Parsons8f232a22020-06-23 17:37:05 -0400438 fs: pathtools.NewOsFs(absSrcDir),
Colin Cross68f55102015-03-25 14:43:57 -0700439 }
Colin Cross3f40fa42015-01-30 17:27:36 -0800440
Dan Willemsen00269f22017-07-06 16:59:48 -0700441 config.deviceConfig = &deviceConfig{
Colin Cross9272ade2016-08-17 15:24:12 -0700442 config: config,
443 }
444
Liz Kammer7941b302020-07-28 13:27:34 -0700445 // Soundness check of the build and source directories. This won't catch strange
446 // configurations with symlinks, but at least checks the obvious case.
Lukacs T. Berki9f6c24a2021-08-26 15:07:24 +0200447 absBuildDir, err := filepath.Abs(soongOutDir)
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700448 if err != nil {
449 return Config{}, err
450 }
451
Lukacs T. Berkif7e36d82021-08-16 17:05:09 +0200452 absSrcDir, err := filepath.Abs(".")
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700453 if err != nil {
454 return Config{}, err
455 }
456
457 if strings.HasPrefix(absSrcDir, absBuildDir) {
458 return Config{}, fmt.Errorf("Build dir must not contain source directory")
459 }
460
Colin Cross3f40fa42015-01-30 17:27:36 -0800461 // Load any configurable options from the configuration file
Colin Cross9272ade2016-08-17 15:24:12 -0700462 err = loadConfig(config)
Colin Cross3f40fa42015-01-30 17:27:36 -0800463 if err != nil {
Colin Crossc3c0a492015-04-10 15:43:55 -0700464 return Config{}, err
Colin Cross3f40fa42015-01-30 17:27:36 -0800465 }
466
Lukacs T. Berki9f6c24a2021-08-26 15:07:24 +0200467 KatiEnabledMarkerFile := filepath.Join(soongOutDir, ".soong.kati_enabled")
Jingwen Chencda22c92020-11-23 00:22:30 -0500468 if _, err := os.Stat(absolutePath(KatiEnabledMarkerFile)); err == nil {
469 config.katiEnabled = true
Dan Willemsen5ba07e82015-12-11 13:51:06 -0800470 }
471
Colin Cross0c66bc62021-07-20 09:47:41 -0700472 determineBuildOS(config)
473
Jingwen Chenc711fec2020-11-22 23:52:50 -0500474 // Sets up the map of target OSes to the finer grained compilation targets
475 // that are configured from the product variables.
Colin Crossa1ad8d12016-06-01 17:09:44 -0700476 targets, err := decodeTargetProductVariables(config)
Dan Willemsen218f6562015-07-08 18:13:11 -0700477 if err != nil {
478 return Config{}, err
479 }
480
Paul Duffin1356d8c2020-02-25 19:26:33 +0000481 // Make the CommonOS OsType available for all products.
482 targets[CommonOS] = []Target{commonTargetMap[CommonOS.Name]}
483
Dan Albert4098deb2016-10-19 14:04:41 -0700484 var archConfig []archConfig
Jingwen Chenc4d91bc2020-11-24 22:59:26 -0500485 if config.NdkAbis() {
Dan Albert4098deb2016-10-19 14:04:41 -0700486 archConfig = getNdkAbisConfig()
Martin Stjernholmc1ecc432019-11-15 15:00:31 +0000487 } else if config.AmlAbis() {
488 archConfig = getAmlAbisConfig()
Dan Albert4098deb2016-10-19 14:04:41 -0700489 }
490
491 if archConfig != nil {
Dan Willemsen01a3c252019-01-11 19:02:16 -0800492 androidTargets, err := decodeArchSettings(Android, archConfig)
Dan Willemsen322acaf2016-01-12 23:07:05 -0800493 if err != nil {
494 return Config{}, err
495 }
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700496 targets[Android] = androidTargets
Dan Willemsen322acaf2016-01-12 23:07:05 -0800497 }
498
Colin Cross3b19f5d2019-09-17 14:45:31 -0700499 multilib := make(map[string]bool)
500 for _, target := range targets[Android] {
501 if seen := multilib[target.Arch.ArchType.Multilib]; seen {
502 config.multilibConflicts[target.Arch.ArchType] = true
503 }
504 multilib[target.Arch.ArchType.Multilib] = true
505 }
506
Jingwen Chenc711fec2020-11-22 23:52:50 -0500507 // Map of OS to compilation targets.
Colin Crossa1ad8d12016-06-01 17:09:44 -0700508 config.Targets = targets
Jingwen Chenc711fec2020-11-22 23:52:50 -0500509
510 // Compilation targets for host tools.
Colin Cross0c66bc62021-07-20 09:47:41 -0700511 config.BuildOSTarget = config.Targets[config.BuildOS][0]
512 config.BuildOSCommonTarget = getCommonTargets(config.Targets[config.BuildOS])[0]
Jingwen Chenc711fec2020-11-22 23:52:50 -0500513
514 // Compilation targets for Android.
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700515 if len(config.Targets[Android]) > 0 {
516 config.AndroidCommonTarget = getCommonTargets(config.Targets[Android])[0]
Jaewoong Jung642916f2020-10-09 17:25:15 -0700517 config.AndroidFirstDeviceTarget = firstTarget(config.Targets[Android], "lib64", "lib32")[0]
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700518 }
Dan Willemsen218f6562015-07-08 18:13:11 -0700519
Chris Parsonsf3c96ef2020-09-29 02:23:17 -0400520 config.BazelContext, err = NewBazelContext(config)
Jingwen Chen12b4c272021-03-10 02:05:59 -0500521 config.bp2buildPackageConfig = bp2buildDefaultConfig
Colin Cross3f40fa42015-01-30 17:27:36 -0800522
Jingwen Chenc711fec2020-11-22 23:52:50 -0500523 return Config{config}, err
524}
Colin Cross988414c2020-01-11 01:11:46 +0000525
Colin Cross98be1bb2019-12-13 20:41:13 -0800526// mockFileSystem replaces all reads with accesses to the provided map of
527// filenames to contents stored as a byte slice.
528func (c *config) mockFileSystem(bp string, fs map[string][]byte) {
529 mockFS := map[string][]byte{}
530
531 if _, exists := mockFS["Android.bp"]; !exists {
532 mockFS["Android.bp"] = []byte(bp)
533 }
534
535 for k, v := range fs {
536 mockFS[k] = v
537 }
538
539 // no module list file specified; find every file named Blueprints or Android.bp
540 pathsToParse := []string{}
541 for candidate := range mockFS {
542 base := filepath.Base(candidate)
Lukacs T. Berkib838b0a2021-09-02 11:46:24 +0200543 if base == "Android.bp" {
Colin Cross98be1bb2019-12-13 20:41:13 -0800544 pathsToParse = append(pathsToParse, candidate)
545 }
546 }
547 if len(pathsToParse) < 1 {
548 panic(fmt.Sprintf("No Blueprint or Android.bp files found in mock filesystem: %v\n", mockFS))
549 }
550 mockFS[blueprint.MockModuleListFile] = []byte(strings.Join(pathsToParse, "\n"))
551
552 c.fs = pathtools.MockFs(mockFS)
553 c.mockBpList = blueprint.MockModuleListFile
554}
555
Lukacs T. Berkid1e3f1f2021-03-16 08:55:23 +0100556func (c *config) SetAllowMissingDependencies() {
557 c.productVariables.Allow_missing_dependencies = proptools.BoolPtr(true)
558}
559
Jingwen Chenc711fec2020-11-22 23:52:50 -0500560// BlueprintToolLocation returns the directory containing build system tools
561// from Blueprint, like soong_zip and merge_zips.
Lukacs T. Berkia806e412021-09-01 08:57:48 +0200562func (c *config) HostToolDir() string {
Colin Crossacfcc1f2021-10-25 15:40:32 -0700563 if c.KatiEnabled() {
564 return filepath.Join(c.outDir, "host", c.PrebuiltOS(), "bin")
565 } else {
566 return filepath.Join(c.soongOutDir, "host", c.PrebuiltOS(), "bin")
567 }
Dan Willemsenc2aa4a92016-05-26 15:13:03 -0700568}
569
Dan Willemsen60e62f02018-11-16 21:05:32 -0800570func (c *config) HostToolPath(ctx PathContext, tool string) Path {
Colin Cross790ef352021-10-25 19:15:55 -0700571 path := pathForInstall(ctx, ctx.Config().BuildOS, ctx.Config().BuildArch, "bin", false, tool)
572 return path
Dan Willemsen60e62f02018-11-16 21:05:32 -0800573}
574
Colin Cross790ef352021-10-25 19:15:55 -0700575func (c *config) HostJNIToolPath(ctx PathContext, lib string) Path {
Martin Stjernholm7260d062019-12-09 21:47:14 +0000576 ext := ".so"
577 if runtime.GOOS == "darwin" {
578 ext = ".dylib"
579 }
Colin Cross790ef352021-10-25 19:15:55 -0700580 path := pathForInstall(ctx, ctx.Config().BuildOS, ctx.Config().BuildArch, "lib64", false, lib+ext)
581 return path
Martin Stjernholm7260d062019-12-09 21:47:14 +0000582}
583
Colin Crossae5330a2021-11-03 13:31:22 -0700584func (c *config) HostJavaToolPath(ctx PathContext, tool string) Path {
585 path := pathForInstall(ctx, ctx.Config().BuildOS, ctx.Config().BuildArch, "framework", false, tool)
Colin Cross3e3eda62021-11-04 10:22:51 -0700586 return path
587}
588
Jingwen Chenc711fec2020-11-22 23:52:50 -0500589// PrebuiltOS returns the name of the host OS used in prebuilts directories.
Colin Cross1332b002015-04-07 17:11:30 -0700590func (c *config) PrebuiltOS() string {
Colin Cross3f40fa42015-01-30 17:27:36 -0800591 switch runtime.GOOS {
592 case "linux":
593 return "linux-x86"
594 case "darwin":
595 return "darwin-x86"
596 default:
597 panic("Unknown GOOS")
598 }
599}
600
601// GoRoot returns the path to the root directory of the Go toolchain.
Colin Cross1332b002015-04-07 17:11:30 -0700602func (c *config) GoRoot() string {
Lukacs T. Berkif7e36d82021-08-16 17:05:09 +0200603 return fmt.Sprintf("prebuilts/go/%s", c.PrebuiltOS())
Colin Cross3f40fa42015-01-30 17:27:36 -0800604}
605
Jingwen Chenc711fec2020-11-22 23:52:50 -0500606// PrebuiltBuildTool returns the path to a tool in the prebuilts directory containing
607// checked-in tools, like Kati, Ninja or Toybox, for the current host OS.
Dan Willemsen4e0aa232019-04-10 22:59:54 -0700608func (c *config) PrebuiltBuildTool(ctx PathContext, tool string) Path {
609 return PathForSource(ctx, "prebuilts/build-tools", c.PrebuiltOS(), "bin", tool)
610}
611
Jingwen Chenc711fec2020-11-22 23:52:50 -0500612// CpPreserveSymlinksFlags returns the host-specific flag for the cp(1) command
613// to preserve symlinks.
Colin Cross1332b002015-04-07 17:11:30 -0700614func (c *config) CpPreserveSymlinksFlags() string {
Colin Cross485e5722015-08-27 13:28:01 -0700615 switch runtime.GOOS {
Colin Cross3f40fa42015-01-30 17:27:36 -0800616 case "darwin":
617 return "-R"
618 case "linux":
619 return "-d"
620 default:
621 return ""
622 }
623}
Colin Cross68f55102015-03-25 14:43:57 -0700624
Colin Cross1332b002015-04-07 17:11:30 -0700625func (c *config) Getenv(key string) string {
Colin Cross68f55102015-03-25 14:43:57 -0700626 var val string
627 var exists bool
Colin Crossc1e86a32015-04-15 12:33:28 -0700628 c.envLock.Lock()
Colin Crossc0d58b42017-02-06 15:40:41 -0800629 defer c.envLock.Unlock()
630 if c.envDeps == nil {
631 c.envDeps = make(map[string]string)
632 }
Colin Cross68f55102015-03-25 14:43:57 -0700633 if val, exists = c.envDeps[key]; !exists {
Dan Willemsene7680ba2015-09-11 17:06:19 -0700634 if c.envFrozen {
635 panic("Cannot access new environment variables after envdeps are frozen")
636 }
Colin Cross6ccbc912017-10-10 23:07:38 -0700637 val, _ = c.env[key]
Colin Cross68f55102015-03-25 14:43:57 -0700638 c.envDeps[key] = val
639 }
640 return val
641}
642
Colin Cross99d7c232016-11-23 16:52:04 -0800643func (c *config) GetenvWithDefault(key string, defaultValue string) string {
644 ret := c.Getenv(key)
645 if ret == "" {
646 return defaultValue
647 }
648 return ret
649}
650
651func (c *config) IsEnvTrue(key string) bool {
652 value := c.Getenv(key)
653 return value == "1" || value == "y" || value == "yes" || value == "on" || value == "true"
654}
655
656func (c *config) IsEnvFalse(key string) bool {
657 value := c.Getenv(key)
658 return value == "0" || value == "n" || value == "no" || value == "off" || value == "false"
659}
660
Sorin Basca9347ae32021-12-20 11:51:24 +0000661func (c *config) TargetsJava11() bool {
662 return c.IsEnvTrue("EXPERIMENTAL_TARGET_JAVA_VERSION_11")
663}
664
Jingwen Chenc711fec2020-11-22 23:52:50 -0500665// EnvDeps returns the environment variables this build depends on. The first
666// call to this function blocks future reads from the environment.
Colin Cross1332b002015-04-07 17:11:30 -0700667func (c *config) EnvDeps() map[string]string {
Dan Willemsene7680ba2015-09-11 17:06:19 -0700668 c.envLock.Lock()
Colin Crossc0d58b42017-02-06 15:40:41 -0800669 defer c.envLock.Unlock()
Dan Willemsene7680ba2015-09-11 17:06:19 -0700670 c.envFrozen = true
Colin Cross68f55102015-03-25 14:43:57 -0700671 return c.envDeps
672}
Colin Cross35cec122015-04-02 14:37:16 -0700673
Jingwen Chencda22c92020-11-23 00:22:30 -0500674func (c *config) KatiEnabled() bool {
675 return c.katiEnabled
Dan Willemsen5ba07e82015-12-11 13:51:06 -0800676}
677
Nan Zhang581fd212018-01-10 16:06:12 -0800678func (c *config) BuildId() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800679 return String(c.productVariables.BuildId)
Nan Zhang581fd212018-01-10 16:06:12 -0800680}
681
Jingwen Chenc711fec2020-11-22 23:52:50 -0500682// BuildNumberFile returns the path to a text file containing metadata
683// representing the current build's number.
684//
685// Rules that want to reference the build number should read from this file
686// without depending on it. They will run whenever their other dependencies
687// require them to run and get the current build number. This ensures they don't
688// rebuild on every incremental build when the build number changes.
Colin Cross2a2e0db2020-02-21 16:55:46 -0800689func (c *config) BuildNumberFile(ctx PathContext) Path {
690 return PathForOutput(ctx, String(c.productVariables.BuildNumberFile))
Nan Zhang581fd212018-01-10 16:06:12 -0800691}
692
Jingwen Chenc711fec2020-11-22 23:52:50 -0500693// DeviceName returns the name of the current device target.
Colin Cross35cec122015-04-02 14:37:16 -0700694// TODO: take an AndroidModuleContext to select the device name for multi-device builds
Colin Cross1332b002015-04-07 17:11:30 -0700695func (c *config) DeviceName() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800696 return *c.productVariables.DeviceName
Colin Cross35cec122015-04-02 14:37:16 -0700697}
698
Anton Hansson53c88442019-03-18 15:53:16 +0000699func (c *config) DeviceResourceOverlays() []string {
700 return c.productVariables.DeviceResourceOverlays
701}
702
703func (c *config) ProductResourceOverlays() []string {
704 return c.productVariables.ProductResourceOverlays
Colin Cross30e076a2015-04-13 13:58:27 -0700705}
706
Colin Crossbfd347d2018-05-09 11:11:35 -0700707func (c *config) PlatformVersionName() string {
708 return String(c.productVariables.Platform_version_name)
709}
710
Dan Albert4f378d72020-07-23 17:32:15 -0700711func (c *config) PlatformSdkVersion() ApiLevel {
712 return uncheckedFinalApiLevel(*c.productVariables.Platform_sdk_version)
Colin Cross30e076a2015-04-13 13:58:27 -0700713}
714
Colin Crossd09b0b62018-04-18 11:06:47 -0700715func (c *config) PlatformSdkCodename() string {
716 return String(c.productVariables.Platform_sdk_codename)
717}
718
Colin Cross092c9da2019-04-02 22:56:43 -0700719func (c *config) PlatformSecurityPatch() string {
720 return String(c.productVariables.Platform_security_patch)
721}
722
723func (c *config) PlatformPreviewSdkVersion() string {
724 return String(c.productVariables.Platform_preview_sdk_version)
725}
726
727func (c *config) PlatformMinSupportedTargetSdkVersion() string {
728 return String(c.productVariables.Platform_min_supported_target_sdk_version)
729}
730
731func (c *config) PlatformBaseOS() string {
732 return String(c.productVariables.Platform_base_os)
733}
734
Dan Albert1a246272020-07-06 14:49:35 -0700735func (c *config) MinSupportedSdkVersion() ApiLevel {
736 return uncheckedFinalApiLevel(16)
737}
738
739func (c *config) FinalApiLevels() []ApiLevel {
740 var levels []ApiLevel
Dan Albert4f378d72020-07-23 17:32:15 -0700741 for i := 1; i <= c.PlatformSdkVersion().FinalOrFutureInt(); i++ {
Dan Albert1a246272020-07-06 14:49:35 -0700742 levels = append(levels, uncheckedFinalApiLevel(i))
743 }
744 return levels
745}
746
747func (c *config) PreviewApiLevels() []ApiLevel {
748 var levels []ApiLevel
749 for i, codename := range c.PlatformVersionActiveCodenames() {
750 levels = append(levels, ApiLevel{
751 value: codename,
752 number: i,
753 isPreview: true,
754 })
755 }
756 return levels
757}
758
satayevcca4ab72021-11-30 12:33:55 +0000759func (c *config) LatestPreviewApiLevel() ApiLevel {
760 level := NoneApiLevel
761 for _, l := range c.PreviewApiLevels() {
762 if l.GreaterThan(level) {
763 level = l
764 }
765 }
766 return level
767}
768
Dan Albert1a246272020-07-06 14:49:35 -0700769func (c *config) AllSupportedApiLevels() []ApiLevel {
770 var levels []ApiLevel
771 levels = append(levels, c.FinalApiLevels()...)
772 return append(levels, c.PreviewApiLevels()...)
Dan Albertf5415d72017-08-17 16:19:59 -0700773}
774
Jingwen Chenc711fec2020-11-22 23:52:50 -0500775// DefaultAppTargetSdk returns the API level that platform apps are targeting.
776// This converts a codename to the exact ApiLevel it represents.
Dan Albert4f378d72020-07-23 17:32:15 -0700777func (c *config) DefaultAppTargetSdk(ctx EarlyModuleContext) ApiLevel {
Colin Crossd09b0b62018-04-18 11:06:47 -0700778 if Bool(c.productVariables.Platform_sdk_final) {
779 return c.PlatformSdkVersion()
Colin Crossd09b0b62018-04-18 11:06:47 -0700780 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500781 codename := c.PlatformSdkCodename()
782 if codename == "" {
783 return NoneApiLevel
784 }
785 if codename == "REL" {
786 panic("Platform_sdk_codename should not be REL when Platform_sdk_final is true")
787 }
788 return ApiLevelOrPanic(ctx, codename)
Colin Crossd09b0b62018-04-18 11:06:47 -0700789}
790
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800791func (c *config) AppsDefaultVersionName() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800792 return String(c.productVariables.AppsDefaultVersionName)
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800793}
794
Dan Albert31384de2017-07-28 12:39:46 -0700795// Codenames that are active in the current lunch target.
796func (c *config) PlatformVersionActiveCodenames() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800797 return c.productVariables.Platform_version_active_codenames
Dan Albert31384de2017-07-28 12:39:46 -0700798}
799
Colin Crossface4e42017-10-30 17:32:15 -0700800func (c *config) ProductAAPTConfig() []string {
Colin Crossa74ca042019-01-31 14:31:51 -0800801 return c.productVariables.AAPTConfig
Colin Cross30e076a2015-04-13 13:58:27 -0700802}
803
Colin Crossface4e42017-10-30 17:32:15 -0700804func (c *config) ProductAAPTPreferredConfig() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800805 return String(c.productVariables.AAPTPreferredConfig)
Colin Cross30e076a2015-04-13 13:58:27 -0700806}
807
Colin Crossface4e42017-10-30 17:32:15 -0700808func (c *config) ProductAAPTCharacteristics() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800809 return String(c.productVariables.AAPTCharacteristics)
Colin Crossface4e42017-10-30 17:32:15 -0700810}
811
812func (c *config) ProductAAPTPrebuiltDPI() []string {
Colin Crossa74ca042019-01-31 14:31:51 -0800813 return c.productVariables.AAPTPrebuiltDPI
Colin Cross30e076a2015-04-13 13:58:27 -0700814}
815
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700816func (c *config) DefaultAppCertificateDir(ctx PathContext) SourcePath {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800817 defaultCert := String(c.productVariables.DefaultAppCertificate)
Colin Cross61ae0b72017-12-01 17:16:02 -0800818 if defaultCert != "" {
819 return PathForSource(ctx, filepath.Dir(defaultCert))
Colin Cross61ae0b72017-12-01 17:16:02 -0800820 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500821 return PathForSource(ctx, "build/make/target/product/security")
Colin Cross30e076a2015-04-13 13:58:27 -0700822}
823
Colin Crosse1731a52017-12-14 11:22:55 -0800824func (c *config) DefaultAppCertificate(ctx PathContext) (pem, key SourcePath) {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800825 defaultCert := String(c.productVariables.DefaultAppCertificate)
Colin Cross61ae0b72017-12-01 17:16:02 -0800826 if defaultCert != "" {
Colin Crosse1731a52017-12-14 11:22:55 -0800827 return PathForSource(ctx, defaultCert+".x509.pem"), PathForSource(ctx, defaultCert+".pk8")
Colin Cross61ae0b72017-12-01 17:16:02 -0800828 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500829 defaultDir := c.DefaultAppCertificateDir(ctx)
830 return defaultDir.Join(ctx, "testkey.x509.pem"), defaultDir.Join(ctx, "testkey.pk8")
Colin Cross30e076a2015-04-13 13:58:27 -0700831}
Colin Cross6ff51382015-12-17 16:39:19 -0800832
Jiyong Park9335a262018-12-24 11:31:58 +0900833func (c *config) ApexKeyDir(ctx ModuleContext) SourcePath {
834 // TODO(b/121224311): define another variable such as TARGET_APEX_KEY_OVERRIDE
835 defaultCert := String(c.productVariables.DefaultAppCertificate)
Dan Willemsen412160e2019-04-09 21:36:26 -0700836 if defaultCert == "" || filepath.Dir(defaultCert) == "build/make/target/product/security" {
Jiyong Park9335a262018-12-24 11:31:58 +0900837 // When defaultCert is unset or is set to the testkeys path, use the APEX keys
838 // that is under the module dir
Colin Cross07e51612019-03-05 12:46:40 -0800839 return pathForModuleSrc(ctx)
Jiyong Park9335a262018-12-24 11:31:58 +0900840 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500841 // If not, APEX keys are under the specified directory
842 return PathForSource(ctx, filepath.Dir(defaultCert))
Jiyong Park9335a262018-12-24 11:31:58 +0900843}
844
Jingwen Chenc711fec2020-11-22 23:52:50 -0500845// AllowMissingDependencies configures Blueprint/Soong to not fail when modules
846// are configured to depend on non-existent modules. Note that this does not
847// affect missing input dependencies at the Ninja level.
Colin Cross6ff51382015-12-17 16:39:19 -0800848func (c *config) AllowMissingDependencies() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800849 return Bool(c.productVariables.Allow_missing_dependencies)
Colin Cross6ff51382015-12-17 16:39:19 -0800850}
Dan Willemsen322acaf2016-01-12 23:07:05 -0800851
Jeongik Cha816a23a2020-07-08 01:09:23 +0900852// Returns true if a full platform source tree cannot be assumed.
Colin Crossfc3674a2017-09-18 17:41:52 -0700853func (c *config) UnbundledBuild() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800854 return Bool(c.productVariables.Unbundled_build)
Colin Crossfc3674a2017-09-18 17:41:52 -0700855}
856
Martin Stjernholmfd9eb4b2020-06-17 01:13:15 +0100857// Returns true if building apps that aren't bundled with the platform.
858// UnbundledBuild() is always true when this is true.
859func (c *config) UnbundledBuildApps() bool {
Cole Faust701ca252021-11-23 19:02:08 -0800860 return len(c.productVariables.Unbundled_build_apps) > 0
Martin Stjernholmfd9eb4b2020-06-17 01:13:15 +0100861}
862
Jeongik Cha4b073cd2021-06-08 11:35:00 +0900863// Returns true if building image that aren't bundled with the platform.
864// UnbundledBuild() is always true when this is true.
865func (c *config) UnbundledBuildImage() bool {
866 return Bool(c.productVariables.Unbundled_build_image)
867}
868
Jeongik Cha816a23a2020-07-08 01:09:23 +0900869// Returns true if building modules against prebuilt SDKs.
870func (c *config) AlwaysUsePrebuiltSdks() bool {
871 return Bool(c.productVariables.Always_use_prebuilt_sdks)
Colin Cross1f367bf2018-12-18 22:46:24 -0800872}
873
Colin Cross126a25c2017-10-31 13:55:34 -0700874func (c *config) MinimizeJavaDebugInfo() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800875 return Bool(c.productVariables.MinimizeJavaDebugInfo) && !Bool(c.productVariables.Eng)
Colin Cross126a25c2017-10-31 13:55:34 -0700876}
877
Colin Crossed064c02018-09-05 16:28:13 -0700878func (c *config) Debuggable() bool {
879 return Bool(c.productVariables.Debuggable)
880}
881
Jaewoong Jung1d6eb682018-11-29 15:08:44 -0800882func (c *config) Eng() bool {
883 return Bool(c.productVariables.Eng)
884}
885
Colin Crossc53c37f2021-12-08 15:42:22 -0800886// DevicePrimaryArchType returns the ArchType for the first configured device architecture, or
887// Common if there are no device architectures.
Jiyong Park8d52f862018-07-07 18:02:07 +0900888func (c *config) DevicePrimaryArchType() ArchType {
Colin Crossc53c37f2021-12-08 15:42:22 -0800889 if androidTargets := c.Targets[Android]; len(androidTargets) > 0 {
890 return androidTargets[0].Arch.ArchType
891 }
892 return Common
Jiyong Park8d52f862018-07-07 18:02:07 +0900893}
894
Colin Cross16b23492016-01-06 14:41:07 -0800895func (c *config) SanitizeHost() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800896 return append([]string(nil), c.productVariables.SanitizeHost...)
Colin Cross16b23492016-01-06 14:41:07 -0800897}
898
899func (c *config) SanitizeDevice() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800900 return append([]string(nil), c.productVariables.SanitizeDevice...)
Colin Cross23ae82a2016-11-02 14:34:39 -0700901}
902
Ivan Lozano0c3a1ef2017-06-28 09:10:48 -0700903func (c *config) SanitizeDeviceDiag() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800904 return append([]string(nil), c.productVariables.SanitizeDeviceDiag...)
Ivan Lozano0c3a1ef2017-06-28 09:10:48 -0700905}
906
Colin Cross23ae82a2016-11-02 14:34:39 -0700907func (c *config) SanitizeDeviceArch() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800908 return append([]string(nil), c.productVariables.SanitizeDeviceArch...)
Colin Cross16b23492016-01-06 14:41:07 -0800909}
Colin Crossa1ad8d12016-06-01 17:09:44 -0700910
Vishwath Mohan1b017a72017-01-19 13:54:55 -0800911func (c *config) EnableCFI() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800912 if c.productVariables.EnableCFI == nil {
Vishwath Mohanc32c3eb2017-01-24 14:20:54 -0800913 return true
Vishwath Mohanc32c3eb2017-01-24 14:20:54 -0800914 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500915 return *c.productVariables.EnableCFI
Vishwath Mohan1b017a72017-01-19 13:54:55 -0800916}
917
Kostya Kortchinskyd5275c82019-02-01 08:42:56 -0800918func (c *config) DisableScudo() bool {
919 return Bool(c.productVariables.DisableScudo)
920}
921
Colin Crossa1ad8d12016-06-01 17:09:44 -0700922func (c *config) Android64() bool {
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700923 for _, t := range c.Targets[Android] {
Colin Crossa1ad8d12016-06-01 17:09:44 -0700924 if t.Arch.ArchType.Multilib == "lib64" {
925 return true
926 }
927 }
928
929 return false
930}
Colin Cross9272ade2016-08-17 15:24:12 -0700931
Colin Cross9d45bb72016-08-29 16:14:13 -0700932func (c *config) UseGoma() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800933 return Bool(c.productVariables.UseGoma)
Colin Cross9d45bb72016-08-29 16:14:13 -0700934}
935
Ramy Medhatbbf25672019-07-17 12:30:04 +0000936func (c *config) UseRBE() bool {
937 return Bool(c.productVariables.UseRBE)
938}
939
Ramy Medhat8ea054a2020-01-27 14:19:44 -0500940func (c *config) UseRBEJAVAC() bool {
941 return Bool(c.productVariables.UseRBEJAVAC)
942}
943
944func (c *config) UseRBER8() bool {
945 return Bool(c.productVariables.UseRBER8)
946}
947
948func (c *config) UseRBED8() bool {
949 return Bool(c.productVariables.UseRBED8)
950}
951
Colin Cross8b8bec32019-11-15 13:18:43 -0800952func (c *config) UseRemoteBuild() bool {
953 return c.UseGoma() || c.UseRBE()
954}
955
Colin Cross66548102018-06-19 22:47:35 -0700956func (c *config) RunErrorProne() bool {
957 return c.IsEnvTrue("RUN_ERROR_PRONE")
958}
959
Jingwen Chenc711fec2020-11-22 23:52:50 -0500960// XrefCorpusName returns the Kythe cross-reference corpus name.
Sasha Smundak2a4549e2018-11-05 16:49:08 -0800961func (c *config) XrefCorpusName() string {
962 return c.Getenv("XREF_CORPUS")
963}
964
Jingwen Chenc711fec2020-11-22 23:52:50 -0500965// XrefCuEncoding returns the compilation unit encoding to use for Kythe code
966// xrefs. Can be 'json' (default), 'proto' or 'all'.
Sasha Smundak6c2d4f92020-01-09 17:34:23 -0800967func (c *config) XrefCuEncoding() string {
968 if enc := c.Getenv("KYTHE_KZIP_ENCODING"); enc != "" {
969 return enc
970 }
971 return "json"
972}
973
Sasha Smundakb0addaf2021-02-16 10:39:40 -0800974// XrefCuJavaSourceMax returns the maximum number of the Java source files
975// in a single compilation unit
976const xrefJavaSourceFileMaxDefault = "1000"
977
978func (c Config) XrefCuJavaSourceMax() string {
979 v := c.Getenv("KYTHE_JAVA_SOURCE_BATCH_SIZE")
980 if v == "" {
981 return xrefJavaSourceFileMaxDefault
982 }
983 if _, err := strconv.ParseUint(v, 0, 0); err != nil {
984 fmt.Fprintf(os.Stderr,
985 "bad KYTHE_JAVA_SOURCE_BATCH_SIZE value: %s, will use %s",
986 err, xrefJavaSourceFileMaxDefault)
987 return xrefJavaSourceFileMaxDefault
988 }
989 return v
990
991}
992
Sasha Smundak2a4549e2018-11-05 16:49:08 -0800993func (c *config) EmitXrefRules() bool {
994 return c.XrefCorpusName() != ""
995}
996
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700997func (c *config) ClangTidy() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800998 return Bool(c.productVariables.ClangTidy)
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700999}
1000
1001func (c *config) TidyChecks() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001002 if c.productVariables.TidyChecks == nil {
Dan Willemsena03cf6d2016-09-26 15:45:04 -07001003 return ""
1004 }
Dan Willemsen45133ac2018-03-09 21:22:06 -08001005 return *c.productVariables.TidyChecks
Dan Willemsena03cf6d2016-09-26 15:45:04 -07001006}
1007
Colin Cross0f4e0d62016-07-27 10:56:55 -07001008func (c *config) LibartImgHostBaseAddress() string {
1009 return "0x60000000"
1010}
1011
1012func (c *config) LibartImgDeviceBaseAddress() string {
Elliott Hughesda3a0712020-03-06 16:55:28 -08001013 return "0x70000000"
Colin Cross0f4e0d62016-07-27 10:56:55 -07001014}
1015
Hiroshi Yamauchie2a10632016-12-19 13:44:41 -08001016func (c *config) ArtUseReadBarrier() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001017 return Bool(c.productVariables.ArtUseReadBarrier)
Hiroshi Yamauchie2a10632016-12-19 13:44:41 -08001018}
1019
Jingwen Chenc711fec2020-11-22 23:52:50 -05001020// Enforce Runtime Resource Overlays for a module. RROs supersede static RROs,
1021// but some modules still depend on it.
1022//
1023// More info: https://source.android.com/devices/architecture/rros
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001024func (c *config) EnforceRROForModule(name string) bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001025 enforceList := c.productVariables.EnforceRROTargets
Jeongik Chacee5ba92021-02-19 12:11:51 +09001026
Roland Levillainf6cc2612020-07-09 16:58:14 +01001027 if len(enforceList) > 0 {
Yo Chiang4ebd06a2019-10-01 13:13:41 +08001028 if InList("*", enforceList) {
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001029 return true
1030 }
Colin Crossa74ca042019-01-31 14:31:51 -08001031 return InList(name, enforceList)
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001032 }
1033 return false
1034}
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001035func (c *config) EnforceRROExcludedOverlay(path string) bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001036 excluded := c.productVariables.EnforceRROExcludedOverlays
Roland Levillainf6cc2612020-07-09 16:58:14 +01001037 if len(excluded) > 0 {
Jaewoong Jung3aff5782020-02-11 07:54:35 -08001038 return HasAnyPrefix(path, excluded)
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001039 }
1040 return false
1041}
1042
1043func (c *config) ExportedNamespaces() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001044 return append([]string(nil), c.productVariables.NamespacesToExport...)
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001045}
1046
1047func (c *config) HostStaticBinaries() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001048 return Bool(c.productVariables.HostStaticBinaries)
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001049}
1050
Colin Cross5a0dcd52018-10-05 14:20:06 -07001051func (c *config) UncompressPrivAppDex() bool {
1052 return Bool(c.productVariables.UncompressPrivAppDex)
1053}
1054
1055func (c *config) ModulesLoadedByPrivilegedModules() []string {
1056 return c.productVariables.ModulesLoadedByPrivilegedModules
1057}
1058
Jingwen Chenc711fec2020-11-22 23:52:50 -05001059// DexpreoptGlobalConfigPath returns the path to the dexpreopt.config file in
1060// the output directory, if it was created during the product configuration
1061// phase by Kati.
Jingwen Chenebb0b572020-11-02 00:24:57 -05001062func (c *config) DexpreoptGlobalConfigPath(ctx PathContext) OptionalPath {
Colin Cross988414c2020-01-11 01:11:46 +00001063 if c.productVariables.DexpreoptGlobalConfig == nil {
Jingwen Chenebb0b572020-11-02 00:24:57 -05001064 return OptionalPathForPath(nil)
1065 }
1066 return OptionalPathForPath(
1067 pathForBuildToolDep(ctx, *c.productVariables.DexpreoptGlobalConfig))
1068}
1069
Jingwen Chenc711fec2020-11-22 23:52:50 -05001070// DexpreoptGlobalConfig returns the raw byte contents of the dexpreopt global
1071// configuration. Since the configuration file was created by Kati during
1072// product configuration (externally of soong_build), it's not tracked, so we
1073// also manually add a Ninja file dependency on the configuration file to the
1074// rule that creates the main build.ninja file. This ensures that build.ninja is
1075// regenerated correctly if dexpreopt.config changes.
Jingwen Chenebb0b572020-11-02 00:24:57 -05001076func (c *config) DexpreoptGlobalConfig(ctx PathContext) ([]byte, error) {
1077 path := c.DexpreoptGlobalConfigPath(ctx)
1078 if !path.Valid() {
Colin Cross988414c2020-01-11 01:11:46 +00001079 return nil, nil
1080 }
Jingwen Chenebb0b572020-11-02 00:24:57 -05001081 ctx.AddNinjaFileDeps(path.String())
1082 return ioutil.ReadFile(absolutePath(path.String()))
Colin Cross43f08db2018-11-12 10:13:39 -08001083}
1084
Inseob Kim7b85eeb2021-03-23 20:52:24 +09001085func (c *deviceConfig) WithDexpreopt() bool {
1086 return c.config.productVariables.WithDexpreopt
1087}
1088
David Brazdil91b4e3e2019-01-23 21:04:05 +00001089func (c *config) FrameworksBaseDirExists(ctx PathContext) bool {
Colin Cross5a756a62021-03-16 16:34:46 -07001090 return ExistentPathForSource(ctx, "frameworks", "base", "Android.bp").Valid()
David Brazdil91b4e3e2019-01-23 21:04:05 +00001091}
1092
Inseob Kimae553032019-05-14 18:52:49 +09001093func (c *config) VndkSnapshotBuildArtifacts() bool {
1094 return Bool(c.productVariables.VndkSnapshotBuildArtifacts)
1095}
1096
Colin Cross3b19f5d2019-09-17 14:45:31 -07001097func (c *config) HasMultilibConflict(arch ArchType) bool {
1098 return c.multilibConflicts[arch]
1099}
1100
Bill Peckhambae47492021-01-08 09:34:44 -08001101func (c *config) PrebuiltHiddenApiDir(ctx PathContext) string {
1102 return String(c.productVariables.PrebuiltHiddenApiDir)
1103}
1104
Colin Cross9272ade2016-08-17 15:24:12 -07001105func (c *deviceConfig) Arches() []Arch {
1106 var arches []Arch
Dan Willemsen0ef639b2018-10-10 17:02:29 -07001107 for _, target := range c.config.Targets[Android] {
Colin Cross9272ade2016-08-17 15:24:12 -07001108 arches = append(arches, target.Arch)
1109 }
1110 return arches
1111}
Dan Willemsend2ede872016-11-18 14:54:24 -08001112
Jayant Chowdhary34ce67d2018-03-08 11:00:50 -08001113func (c *deviceConfig) BinderBitness() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001114 is32BitBinder := c.config.productVariables.Binder32bit
Jayant Chowdhary34ce67d2018-03-08 11:00:50 -08001115 if is32BitBinder != nil && *is32BitBinder {
1116 return "32"
1117 }
1118 return "64"
1119}
1120
Dan Willemsen4353bc42016-12-05 17:16:02 -08001121func (c *deviceConfig) VendorPath() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001122 if c.config.productVariables.VendorPath != nil {
1123 return *c.config.productVariables.VendorPath
Dan Willemsen4353bc42016-12-05 17:16:02 -08001124 }
1125 return "vendor"
1126}
1127
Justin Yun71549282017-11-17 12:10:28 +09001128func (c *deviceConfig) VndkVersion() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001129 return String(c.config.productVariables.DeviceVndkVersion)
Justin Yun71549282017-11-17 12:10:28 +09001130}
1131
Jose Galmes6f843bc2020-12-11 13:36:29 -08001132func (c *deviceConfig) RecoverySnapshotVersion() string {
1133 return String(c.config.productVariables.RecoverySnapshotVersion)
1134}
1135
Jeongik Cha219141c2020-08-06 23:00:37 +09001136func (c *deviceConfig) CurrentApiLevelForVendorModules() string {
1137 return StringDefault(c.config.productVariables.DeviceCurrentApiLevelForVendorModules, "current")
1138}
1139
Justin Yun8fe12122017-12-07 17:18:15 +09001140func (c *deviceConfig) PlatformVndkVersion() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001141 return String(c.config.productVariables.Platform_vndk_version)
Justin Yun8fe12122017-12-07 17:18:15 +09001142}
1143
Justin Yun5f7f7e82019-11-18 19:52:14 +09001144func (c *deviceConfig) ProductVndkVersion() string {
1145 return String(c.config.productVariables.ProductVndkVersion)
1146}
1147
Justin Yun71549282017-11-17 12:10:28 +09001148func (c *deviceConfig) ExtraVndkVersions() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001149 return c.config.productVariables.ExtraVndkVersions
Dan Willemsend2ede872016-11-18 14:54:24 -08001150}
Jack He8cc71432016-12-08 15:45:07 -08001151
Vic Yangefd249e2018-11-12 20:19:56 -08001152func (c *deviceConfig) VndkUseCoreVariant() bool {
1153 return Bool(c.config.productVariables.VndkUseCoreVariant)
1154}
1155
Jiyong Park1a5d7b12018-01-15 15:05:10 +09001156func (c *deviceConfig) SystemSdkVersions() []string {
Colin Crossa74ca042019-01-31 14:31:51 -08001157 return c.config.productVariables.DeviceSystemSdkVersions
Jiyong Park1a5d7b12018-01-15 15:05:10 +09001158}
1159
1160func (c *deviceConfig) PlatformSystemSdkVersions() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001161 return c.config.productVariables.Platform_systemsdk_versions
Jiyong Park1a5d7b12018-01-15 15:05:10 +09001162}
1163
Jiyong Park2db76922017-11-08 16:03:48 +09001164func (c *deviceConfig) OdmPath() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001165 if c.config.productVariables.OdmPath != nil {
1166 return *c.config.productVariables.OdmPath
Jiyong Park2db76922017-11-08 16:03:48 +09001167 }
1168 return "odm"
1169}
1170
Jaekyun Seok5cfbfbb2018-01-10 19:00:15 +09001171func (c *deviceConfig) ProductPath() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001172 if c.config.productVariables.ProductPath != nil {
1173 return *c.config.productVariables.ProductPath
Jiyong Park2db76922017-11-08 16:03:48 +09001174 }
Jaekyun Seok5cfbfbb2018-01-10 19:00:15 +09001175 return "product"
Jiyong Park2db76922017-11-08 16:03:48 +09001176}
1177
Justin Yund5f6c822019-06-25 16:47:17 +09001178func (c *deviceConfig) SystemExtPath() string {
1179 if c.config.productVariables.SystemExtPath != nil {
1180 return *c.config.productVariables.SystemExtPath
Dario Frenifd05a742018-05-29 13:28:54 +01001181 }
Justin Yund5f6c822019-06-25 16:47:17 +09001182 return "system_ext"
Dario Frenifd05a742018-05-29 13:28:54 +01001183}
1184
Jack He8cc71432016-12-08 15:45:07 -08001185func (c *deviceConfig) BtConfigIncludeDir() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001186 return String(c.config.productVariables.BtConfigIncludeDir)
Jack He8cc71432016-12-08 15:45:07 -08001187}
Dan Willemsen581341d2017-02-09 16:16:31 -08001188
Jiyong Parkd773eb32017-07-03 13:18:12 +09001189func (c *deviceConfig) DeviceKernelHeaderDirs() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001190 return c.config.productVariables.DeviceKernelHeaders
Jiyong Parkd773eb32017-07-03 13:18:12 +09001191}
1192
Roland Levillainada12702020-06-09 13:07:36 +01001193// JavaCoverageEnabledForPath returns whether Java code coverage is enabled for
1194// path. Coverage is enabled by default when the product variable
1195// JavaCoveragePaths is empty. If JavaCoveragePaths is not empty, coverage is
1196// enabled for any path which is part of this variable (and not part of the
1197// JavaCoverageExcludePaths product variable). Value "*" in JavaCoveragePaths
1198// represents any path.
1199func (c *deviceConfig) JavaCoverageEnabledForPath(path string) bool {
1200 coverage := false
Chris Gross2f748692020-06-24 20:36:59 +00001201 if len(c.config.productVariables.JavaCoveragePaths) == 0 ||
Roland Levillainada12702020-06-09 13:07:36 +01001202 InList("*", c.config.productVariables.JavaCoveragePaths) ||
1203 HasAnyPrefix(path, c.config.productVariables.JavaCoveragePaths) {
1204 coverage = true
1205 }
Roland Levillainf6cc2612020-07-09 16:58:14 +01001206 if coverage && len(c.config.productVariables.JavaCoverageExcludePaths) > 0 {
Roland Levillainada12702020-06-09 13:07:36 +01001207 if HasAnyPrefix(path, c.config.productVariables.JavaCoverageExcludePaths) {
1208 coverage = false
1209 }
1210 }
1211 return coverage
1212}
1213
Colin Cross1a6acd42020-06-16 17:51:46 -07001214// Returns true if gcov or clang coverage is enabled.
Dan Willemsen581341d2017-02-09 16:16:31 -08001215func (c *deviceConfig) NativeCoverageEnabled() bool {
Colin Cross1a6acd42020-06-16 17:51:46 -07001216 return Bool(c.config.productVariables.GcovCoverage) ||
1217 Bool(c.config.productVariables.ClangCoverage)
Dan Willemsen581341d2017-02-09 16:16:31 -08001218}
1219
Oliver Nguyen1382ab62019-12-06 15:22:41 -08001220func (c *deviceConfig) ClangCoverageEnabled() bool {
1221 return Bool(c.config.productVariables.ClangCoverage)
1222}
1223
Colin Cross1a6acd42020-06-16 17:51:46 -07001224func (c *deviceConfig) GcovCoverageEnabled() bool {
1225 return Bool(c.config.productVariables.GcovCoverage)
1226}
1227
Roland Levillain4f5297b2020-06-09 12:44:06 +01001228// NativeCoverageEnabledForPath returns whether (GCOV- or Clang-based) native
1229// code coverage is enabled for path. By default, coverage is not enabled for a
1230// given path unless it is part of the NativeCoveragePaths product variable (and
1231// not part of the NativeCoverageExcludePaths product variable). Value "*" in
1232// NativeCoveragePaths represents any path.
1233func (c *deviceConfig) NativeCoverageEnabledForPath(path string) bool {
Ryan Campbell469a18a2017-02-27 09:01:54 -08001234 coverage := false
Roland Levillainf6cc2612020-07-09 16:58:14 +01001235 if len(c.config.productVariables.NativeCoveragePaths) > 0 {
Roland Levillain4f5297b2020-06-09 12:44:06 +01001236 if InList("*", c.config.productVariables.NativeCoveragePaths) || HasAnyPrefix(path, c.config.productVariables.NativeCoveragePaths) {
Ivan Lozano5f595532017-07-13 14:46:05 -07001237 coverage = true
Dan Willemsen581341d2017-02-09 16:16:31 -08001238 }
1239 }
Roland Levillainf6cc2612020-07-09 16:58:14 +01001240 if coverage && len(c.config.productVariables.NativeCoverageExcludePaths) > 0 {
Roland Levillain4f5297b2020-06-09 12:44:06 +01001241 if HasAnyPrefix(path, c.config.productVariables.NativeCoverageExcludePaths) {
Ivan Lozano5f595532017-07-13 14:46:05 -07001242 coverage = false
Ryan Campbell469a18a2017-02-27 09:01:54 -08001243 }
1244 }
1245 return coverage
Dan Willemsen581341d2017-02-09 16:16:31 -08001246}
Ivan Lozano5f595532017-07-13 14:46:05 -07001247
Yi Kongeb8efc92021-12-09 18:06:29 +08001248func (c *deviceConfig) AfdoAdditionalProfileDirs() []string {
1249 return c.config.productVariables.AfdoAdditionalProfileDirs
1250}
1251
Pirama Arumuga Nainar49540802018-01-29 23:11:42 -08001252func (c *deviceConfig) PgoAdditionalProfileDirs() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001253 return c.config.productVariables.PgoAdditionalProfileDirs
Pirama Arumuga Nainar49540802018-01-29 23:11:42 -08001254}
1255
Tri Vo35a51432018-03-25 20:00:00 -07001256func (c *deviceConfig) VendorSepolicyDirs() []string {
1257 return c.config.productVariables.BoardVendorSepolicyDirs
1258}
1259
1260func (c *deviceConfig) OdmSepolicyDirs() []string {
1261 return c.config.productVariables.BoardOdmSepolicyDirs
1262}
1263
Felixa20a8752020-05-17 18:28:35 +02001264func (c *deviceConfig) SystemExtPublicSepolicyDirs() []string {
1265 return c.config.productVariables.SystemExtPublicSepolicyDirs
Tri Vo35a51432018-03-25 20:00:00 -07001266}
1267
Felixa20a8752020-05-17 18:28:35 +02001268func (c *deviceConfig) SystemExtPrivateSepolicyDirs() []string {
1269 return c.config.productVariables.SystemExtPrivateSepolicyDirs
Tri Vo35a51432018-03-25 20:00:00 -07001270}
1271
Inseob Kim0866b002019-04-15 20:21:29 +09001272func (c *deviceConfig) SepolicyM4Defs() []string {
1273 return c.config.productVariables.BoardSepolicyM4Defs
1274}
1275
Jiyong Park7f67f482019-01-05 12:57:48 +09001276func (c *deviceConfig) OverrideManifestPackageNameFor(name string) (manifestName string, overridden bool) {
Jaewoong Jung2ad817c2019-01-18 14:27:16 -08001277 return findOverrideValue(c.config.productVariables.ManifestPackageNameOverrides, name,
1278 "invalid override rule %q in PRODUCT_MANIFEST_PACKAGE_NAME_OVERRIDES should be <module_name>:<manifest_name>")
1279}
1280
1281func (c *deviceConfig) OverrideCertificateFor(name string) (certificatePath string, overridden bool) {
Jaewoong Jungacb6db32019-02-28 16:22:30 +00001282 return findOverrideValue(c.config.productVariables.CertificateOverrides, name,
Jaewoong Jung2ad817c2019-01-18 14:27:16 -08001283 "invalid override rule %q in PRODUCT_CERTIFICATE_OVERRIDES should be <module_name>:<certificate_module_name>")
1284}
1285
Jaewoong Jung9d22a912019-01-23 16:27:47 -08001286func (c *deviceConfig) OverridePackageNameFor(name string) string {
1287 newName, overridden := findOverrideValue(
1288 c.config.productVariables.PackageNameOverrides,
1289 name,
1290 "invalid override rule %q in PRODUCT_PACKAGE_NAME_OVERRIDES should be <module_name>:<package_name>")
1291 if overridden {
1292 return newName
1293 }
1294 return name
1295}
1296
Jaewoong Jung2ad817c2019-01-18 14:27:16 -08001297func findOverrideValue(overrides []string, name string, errorMsg string) (newValue string, overridden bool) {
Jiyong Park7f67f482019-01-05 12:57:48 +09001298 if overrides == nil || len(overrides) == 0 {
1299 return "", false
1300 }
1301 for _, o := range overrides {
1302 split := strings.Split(o, ":")
1303 if len(split) != 2 {
1304 // This shouldn't happen as this is first checked in make, but just in case.
Jaewoong Jung2ad817c2019-01-18 14:27:16 -08001305 panic(fmt.Errorf(errorMsg, o))
Jiyong Park7f67f482019-01-05 12:57:48 +09001306 }
1307 if matchPattern(split[0], name) {
1308 return substPattern(split[0], split[1], name), true
1309 }
1310 }
1311 return "", false
1312}
1313
Ivan Lozano5f595532017-07-13 14:46:05 -07001314func (c *config) IntegerOverflowDisabledForPath(path string) bool {
Roland Levillainf6cc2612020-07-09 16:58:14 +01001315 if len(c.productVariables.IntegerOverflowExcludePaths) == 0 {
Ivan Lozano5f595532017-07-13 14:46:05 -07001316 return false
1317 }
Jaewoong Jung3aff5782020-02-11 07:54:35 -08001318 return HasAnyPrefix(path, c.productVariables.IntegerOverflowExcludePaths)
Ivan Lozano5f595532017-07-13 14:46:05 -07001319}
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001320
1321func (c *config) CFIDisabledForPath(path string) bool {
Roland Levillainf6cc2612020-07-09 16:58:14 +01001322 if len(c.productVariables.CFIExcludePaths) == 0 {
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001323 return false
1324 }
Jaewoong Jung3aff5782020-02-11 07:54:35 -08001325 return HasAnyPrefix(path, c.productVariables.CFIExcludePaths)
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001326}
1327
1328func (c *config) CFIEnabledForPath(path string) bool {
Roland Levillainf6cc2612020-07-09 16:58:14 +01001329 if len(c.productVariables.CFIIncludePaths) == 0 {
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001330 return false
1331 }
Evgenii Stepanov779b64e2021-04-09 14:33:10 -07001332 return HasAnyPrefix(path, c.productVariables.CFIIncludePaths) && !c.CFIDisabledForPath(path)
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001333}
Colin Crosse15ddaf2017-12-04 11:24:31 -08001334
Evgenii Stepanov4beaa0c2021-01-05 16:41:26 -08001335func (c *config) MemtagHeapDisabledForPath(path string) bool {
1336 if len(c.productVariables.MemtagHeapExcludePaths) == 0 {
1337 return false
1338 }
1339 return HasAnyPrefix(path, c.productVariables.MemtagHeapExcludePaths)
1340}
1341
1342func (c *config) MemtagHeapAsyncEnabledForPath(path string) bool {
1343 if len(c.productVariables.MemtagHeapAsyncIncludePaths) == 0 {
1344 return false
1345 }
Evgenii Stepanov779b64e2021-04-09 14:33:10 -07001346 return HasAnyPrefix(path, c.productVariables.MemtagHeapAsyncIncludePaths) && !c.MemtagHeapDisabledForPath(path)
Evgenii Stepanov4beaa0c2021-01-05 16:41:26 -08001347}
1348
1349func (c *config) MemtagHeapSyncEnabledForPath(path string) bool {
1350 if len(c.productVariables.MemtagHeapSyncIncludePaths) == 0 {
1351 return false
1352 }
Evgenii Stepanov779b64e2021-04-09 14:33:10 -07001353 return HasAnyPrefix(path, c.productVariables.MemtagHeapSyncIncludePaths) && !c.MemtagHeapDisabledForPath(path)
Evgenii Stepanov4beaa0c2021-01-05 16:41:26 -08001354}
1355
Dan Willemsen0fe78662018-03-26 12:41:18 -07001356func (c *config) VendorConfig(name string) VendorConfig {
Colin Cross9d34f352019-11-22 16:03:51 -08001357 return soongconfig.Config(c.productVariables.VendorVars[name])
Dan Willemsen0fe78662018-03-26 12:41:18 -07001358}
1359
Colin Cross395f2cf2018-10-24 16:10:32 -07001360func (c *config) NdkAbis() bool {
1361 return Bool(c.productVariables.Ndk_abis)
1362}
1363
Martin Stjernholmc1ecc432019-11-15 15:00:31 +00001364func (c *config) AmlAbis() bool {
1365 return Bool(c.productVariables.Aml_abis)
1366}
1367
Jiyong Park8fd61922018-11-08 02:50:25 +09001368func (c *config) FlattenApex() bool {
Roland Levillaina3863212019-08-12 19:56:16 +01001369 return Bool(c.productVariables.Flatten_apex)
Jiyong Park8fd61922018-11-08 02:50:25 +09001370}
1371
Jiyong Park4da07972021-01-05 21:01:11 +09001372func (c *config) ForceApexSymlinkOptimization() bool {
1373 return Bool(c.productVariables.ForceApexSymlinkOptimization)
1374}
1375
Mohammad Samiul Islam3cd005d2020-11-26 13:32:26 +00001376func (c *config) CompressedApex() bool {
1377 return Bool(c.productVariables.CompressedApex)
1378}
1379
Jeongik Chac9464142019-01-07 12:07:27 +09001380func (c *config) EnforceSystemCertificate() bool {
1381 return Bool(c.productVariables.EnforceSystemCertificate)
1382}
1383
Colin Cross440e0d02020-06-11 11:32:11 -07001384func (c *config) EnforceSystemCertificateAllowList() []string {
1385 return c.productVariables.EnforceSystemCertificateAllowList
Jeongik Chac9464142019-01-07 12:07:27 +09001386}
1387
Jeongik Cha2cc570d2019-10-29 15:44:45 +09001388func (c *config) EnforceProductPartitionInterface() bool {
1389 return Bool(c.productVariables.EnforceProductPartitionInterface)
1390}
1391
JaeMan Parkff715562020-10-19 17:25:58 +09001392func (c *config) EnforceInterPartitionJavaSdkLibrary() bool {
1393 return Bool(c.productVariables.EnforceInterPartitionJavaSdkLibrary)
1394}
1395
1396func (c *config) InterPartitionJavaLibraryAllowList() []string {
1397 return c.productVariables.InterPartitionJavaLibraryAllowList
1398}
1399
Jooyung Han3ab2c3e2019-12-05 16:27:44 +09001400func (c *config) InstallExtraFlattenedApexes() bool {
1401 return Bool(c.productVariables.InstallExtraFlattenedApexes)
1402}
1403
Colin Crossf24a22a2019-01-31 14:12:44 -08001404func (c *config) ProductHiddenAPIStubs() []string {
1405 return c.productVariables.ProductHiddenAPIStubs
Colin Cross8faf8fc2019-01-16 15:15:52 -08001406}
1407
Colin Crossf24a22a2019-01-31 14:12:44 -08001408func (c *config) ProductHiddenAPIStubsSystem() []string {
1409 return c.productVariables.ProductHiddenAPIStubsSystem
Colin Cross8faf8fc2019-01-16 15:15:52 -08001410}
1411
Colin Crossf24a22a2019-01-31 14:12:44 -08001412func (c *config) ProductHiddenAPIStubsTest() []string {
1413 return c.productVariables.ProductHiddenAPIStubsTest
Colin Cross8faf8fc2019-01-16 15:15:52 -08001414}
Dan Willemsen71c74602019-04-10 12:27:35 -07001415
Dan Willemsen54879d12019-04-18 10:08:46 -07001416func (c *deviceConfig) TargetFSConfigGen() []string {
Dan Willemsen71c74602019-04-10 12:27:35 -07001417 return c.config.productVariables.TargetFSConfigGen
1418}
Inseob Kim0866b002019-04-15 20:21:29 +09001419
1420func (c *config) ProductPublicSepolicyDirs() []string {
1421 return c.productVariables.ProductPublicSepolicyDirs
1422}
1423
1424func (c *config) ProductPrivateSepolicyDirs() []string {
1425 return c.productVariables.ProductPrivateSepolicyDirs
1426}
1427
Colin Cross50ddcc42019-05-16 12:28:22 -07001428func (c *config) MissingUsesLibraries() []string {
1429 return c.productVariables.MissingUsesLibraries
1430}
1431
Inseob Kim1f086e22019-05-09 13:29:15 +09001432func (c *deviceConfig) DeviceArch() string {
1433 return String(c.config.productVariables.DeviceArch)
1434}
1435
1436func (c *deviceConfig) DeviceArchVariant() string {
1437 return String(c.config.productVariables.DeviceArchVariant)
1438}
1439
1440func (c *deviceConfig) DeviceSecondaryArch() string {
1441 return String(c.config.productVariables.DeviceSecondaryArch)
1442}
1443
1444func (c *deviceConfig) DeviceSecondaryArchVariant() string {
1445 return String(c.config.productVariables.DeviceSecondaryArchVariant)
1446}
Yifan Hong82db7352020-01-21 16:12:26 -08001447
1448func (c *deviceConfig) BoardUsesRecoveryAsBoot() bool {
1449 return Bool(c.config.productVariables.BoardUsesRecoveryAsBoot)
1450}
Yifan Hong97365ee2020-07-29 09:51:57 -07001451
1452func (c *deviceConfig) BoardKernelBinaries() []string {
1453 return c.config.productVariables.BoardKernelBinaries
1454}
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001455
Yifan Hong42bef8d2020-08-05 14:36:09 -07001456func (c *deviceConfig) BoardKernelModuleInterfaceVersions() []string {
1457 return c.config.productVariables.BoardKernelModuleInterfaceVersions
1458}
1459
Yifan Hongdd8dacc2020-10-21 15:40:17 -07001460func (c *deviceConfig) BoardMoveRecoveryResourcesToVendorBoot() bool {
1461 return Bool(c.config.productVariables.BoardMoveRecoveryResourcesToVendorBoot)
1462}
1463
Inseob Kim16ebd5a2020-12-09 23:08:17 +09001464func (c *deviceConfig) PlatformSepolicyVersion() string {
1465 return String(c.config.productVariables.PlatformSepolicyVersion)
1466}
1467
Inseob Kima10ef272021-09-15 03:04:53 +00001468func (c *deviceConfig) TotSepolicyVersion() string {
1469 return String(c.config.productVariables.TotSepolicyVersion)
1470}
1471
Inseob Kim843f6642022-01-07 09:11:23 +09001472func (c *deviceConfig) PlatformSepolicyCompatVersions() []string {
1473 return c.config.productVariables.PlatformSepolicyCompatVersions
1474}
1475
Inseob Kim16ebd5a2020-12-09 23:08:17 +09001476func (c *deviceConfig) BoardSepolicyVers() string {
Inseob Kim0c4eec82021-03-22 22:33:40 +09001477 if ver := String(c.config.productVariables.BoardSepolicyVers); ver != "" {
1478 return ver
1479 }
1480 return c.PlatformSepolicyVersion()
Inseob Kim16ebd5a2020-12-09 23:08:17 +09001481}
1482
Inseob Kim14178802021-12-08 22:53:31 +09001483func (c *deviceConfig) BoardPlatVendorPolicy() []string {
1484 return c.config.productVariables.BoardPlatVendorPolicy
1485}
1486
Inseob Kim16ebd5a2020-12-09 23:08:17 +09001487func (c *deviceConfig) BoardReqdMaskPolicy() []string {
1488 return c.config.productVariables.BoardReqdMaskPolicy
1489}
1490
Inseob Kim0f46e7c2021-12-15 22:48:14 +09001491func (c *deviceConfig) BoardSystemExtPublicPrebuiltDirs() []string {
1492 return c.config.productVariables.BoardSystemExtPublicPrebuiltDirs
1493}
1494
1495func (c *deviceConfig) BoardSystemExtPrivatePrebuiltDirs() []string {
1496 return c.config.productVariables.BoardSystemExtPrivatePrebuiltDirs
1497}
1498
1499func (c *deviceConfig) BoardProductPublicPrebuiltDirs() []string {
1500 return c.config.productVariables.BoardProductPublicPrebuiltDirs
1501}
1502
1503func (c *deviceConfig) BoardProductPrivatePrebuiltDirs() []string {
1504 return c.config.productVariables.BoardProductPrivatePrebuiltDirs
1505}
1506
Inseob Kim7cf14652021-01-06 23:06:52 +09001507func (c *deviceConfig) DirectedVendorSnapshot() bool {
1508 return c.config.productVariables.DirectedVendorSnapshot
1509}
1510
1511func (c *deviceConfig) VendorSnapshotModules() map[string]bool {
1512 return c.config.productVariables.VendorSnapshotModules
1513}
1514
Jose Galmes4c6895e2021-02-09 07:44:30 -08001515func (c *deviceConfig) DirectedRecoverySnapshot() bool {
1516 return c.config.productVariables.DirectedRecoverySnapshot
1517}
1518
1519func (c *deviceConfig) RecoverySnapshotModules() map[string]bool {
1520 return c.config.productVariables.RecoverySnapshotModules
1521}
1522
Justin DeMartino383bfb32021-02-24 10:49:43 -08001523func createDirsMap(previous map[string]bool, dirs []string) (map[string]bool, error) {
1524 var ret = make(map[string]bool)
1525 for _, dir := range dirs {
1526 clean := filepath.Clean(dir)
1527 if previous[clean] || ret[clean] {
1528 return nil, fmt.Errorf("Duplicate entry %s", dir)
1529 }
1530 ret[clean] = true
1531 }
1532 return ret, nil
1533}
1534
1535func (c *deviceConfig) createDirsMapOnce(onceKey OnceKey, previous map[string]bool, dirs []string) map[string]bool {
1536 dirMap := c.Once(onceKey, func() interface{} {
1537 ret, err := createDirsMap(previous, dirs)
1538 if err != nil {
1539 panic(fmt.Errorf("%s: %w", onceKey.key, err))
1540 }
1541 return ret
1542 })
1543 if dirMap == nil {
1544 return nil
1545 }
1546 return dirMap.(map[string]bool)
1547}
1548
1549var vendorSnapshotDirsExcludedKey = NewOnceKey("VendorSnapshotDirsExcludedMap")
1550
1551func (c *deviceConfig) VendorSnapshotDirsExcludedMap() map[string]bool {
1552 return c.createDirsMapOnce(vendorSnapshotDirsExcludedKey, nil,
1553 c.config.productVariables.VendorSnapshotDirsExcluded)
1554}
1555
1556var vendorSnapshotDirsIncludedKey = NewOnceKey("VendorSnapshotDirsIncludedMap")
1557
1558func (c *deviceConfig) VendorSnapshotDirsIncludedMap() map[string]bool {
1559 excludedMap := c.VendorSnapshotDirsExcludedMap()
1560 return c.createDirsMapOnce(vendorSnapshotDirsIncludedKey, excludedMap,
1561 c.config.productVariables.VendorSnapshotDirsIncluded)
1562}
1563
1564var recoverySnapshotDirsExcludedKey = NewOnceKey("RecoverySnapshotDirsExcludedMap")
1565
1566func (c *deviceConfig) RecoverySnapshotDirsExcludedMap() map[string]bool {
1567 return c.createDirsMapOnce(recoverySnapshotDirsExcludedKey, nil,
1568 c.config.productVariables.RecoverySnapshotDirsExcluded)
1569}
1570
1571var recoverySnapshotDirsIncludedKey = NewOnceKey("RecoverySnapshotDirsIncludedMap")
1572
1573func (c *deviceConfig) RecoverySnapshotDirsIncludedMap() map[string]bool {
1574 excludedMap := c.RecoverySnapshotDirsExcludedMap()
1575 return c.createDirsMapOnce(recoverySnapshotDirsIncludedKey, excludedMap,
1576 c.config.productVariables.RecoverySnapshotDirsIncluded)
1577}
1578
Rob Seymour925aa092021-08-10 20:42:03 +00001579func (c *deviceConfig) HostFakeSnapshotEnabled() bool {
1580 return c.config.productVariables.HostFakeSnapshotEnabled
1581}
1582
Inseob Kim60c32f02020-12-21 22:53:05 +09001583func (c *deviceConfig) ShippingApiLevel() ApiLevel {
1584 if c.config.productVariables.ShippingApiLevel == nil {
1585 return NoneApiLevel
1586 }
1587 apiLevel, _ := strconv.Atoi(*c.config.productVariables.ShippingApiLevel)
1588 return uncheckedFinalApiLevel(apiLevel)
1589}
1590
Inseob Kim67e5add192021-03-17 18:05:33 +09001591func (c *deviceConfig) BuildBrokenEnforceSyspropOwner() bool {
1592 return c.config.productVariables.BuildBrokenEnforceSyspropOwner
1593}
1594
1595func (c *deviceConfig) BuildBrokenTrebleSyspropNeverallow() bool {
1596 return c.config.productVariables.BuildBrokenTrebleSyspropNeverallow
1597}
1598
Hridya Valsaraju5a5c7d52021-04-02 16:45:24 -07001599func (c *deviceConfig) BuildDebugfsRestrictionsEnabled() bool {
1600 return c.config.productVariables.BuildDebugfsRestrictionsEnabled
1601}
1602
Inseob Kim0cac7b42021-02-03 18:16:46 +09001603func (c *deviceConfig) BuildBrokenVendorPropertyNamespace() bool {
1604 return c.config.productVariables.BuildBrokenVendorPropertyNamespace
1605}
1606
Inseob Kim67e5add192021-03-17 18:05:33 +09001607func (c *deviceConfig) RequiresInsecureExecmemForSwiftshader() bool {
1608 return c.config.productVariables.RequiresInsecureExecmemForSwiftshader
1609}
1610
1611func (c *config) SelinuxIgnoreNeverallows() bool {
1612 return c.productVariables.SelinuxIgnoreNeverallows
1613}
1614
1615func (c *deviceConfig) SepolicySplit() bool {
1616 return c.config.productVariables.SepolicySplit
1617}
1618
Inseob Kima10ef272021-09-15 03:04:53 +00001619func (c *deviceConfig) SepolicyFreezeTestExtraDirs() []string {
1620 return c.config.productVariables.SepolicyFreezeTestExtraDirs
1621}
1622
1623func (c *deviceConfig) SepolicyFreezeTestExtraPrebuiltDirs() []string {
1624 return c.config.productVariables.SepolicyFreezeTestExtraPrebuiltDirs
1625}
1626
Jiyong Parkd163d4d2021-10-12 16:47:43 +09001627func (c *deviceConfig) GenerateAidlNdkPlatformBackend() bool {
1628 return c.config.productVariables.GenerateAidlNdkPlatformBackend
1629}
1630
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001631// The ConfiguredJarList struct provides methods for handling a list of (apex, jar) pairs.
1632// Such lists are used in the build system for things like bootclasspath jars or system server jars.
1633// The apex part is either an apex name, or a special names "platform" or "system_ext". Jar is a
1634// module name. The pairs come from Make product variables as a list of colon-separated strings.
1635//
1636// Examples:
1637// - "com.android.art:core-oj"
1638// - "platform:framework"
1639// - "system_ext:foo"
1640//
1641type ConfiguredJarList struct {
Jingwen Chenc711fec2020-11-22 23:52:50 -05001642 // A list of apex components, which can be an apex name,
1643 // or special names like "platform" or "system_ext".
1644 apexes []string
1645
1646 // A list of jar module name components.
1647 jars []string
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001648}
1649
Jingwen Chenc711fec2020-11-22 23:52:50 -05001650// Len returns the length of the list of jars.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001651func (l *ConfiguredJarList) Len() int {
1652 return len(l.jars)
1653}
1654
Jingwen Chenc711fec2020-11-22 23:52:50 -05001655// Jar returns the idx-th jar component of (apex, jar) pairs.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001656func (l *ConfiguredJarList) Jar(idx int) string {
1657 return l.jars[idx]
1658}
1659
Jingwen Chenc711fec2020-11-22 23:52:50 -05001660// Apex returns the idx-th apex component of (apex, jar) pairs.
Paul Duffin9a89a2a2020-10-28 19:20:06 +00001661func (l *ConfiguredJarList) Apex(idx int) string {
1662 return l.apexes[idx]
1663}
1664
Jingwen Chenc711fec2020-11-22 23:52:50 -05001665// ContainsJar returns true if the (apex, jar) pairs contains a pair with the
1666// given jar module name.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001667func (l *ConfiguredJarList) ContainsJar(jar string) bool {
1668 return InList(jar, l.jars)
1669}
1670
1671// If the list contains the given (apex, jar) pair.
1672func (l *ConfiguredJarList) containsApexJarPair(apex, jar string) bool {
1673 for i := 0; i < l.Len(); i++ {
Paul Duffin1e8c6072020-10-23 18:28:55 +01001674 if apex == l.apexes[i] && jar == l.jars[i] {
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001675 return true
1676 }
1677 }
1678 return false
1679}
1680
satayev3db35472021-05-06 23:59:58 +01001681// ApexOfJar returns the apex component of the first pair with the given jar name on the list, or
1682// an empty string if not found.
1683func (l *ConfiguredJarList) ApexOfJar(jar string) string {
1684 if idx := IndexList(jar, l.jars); idx != -1 {
1685 return l.Apex(IndexList(jar, l.jars))
1686 }
1687 return ""
1688}
1689
Jingwen Chenc711fec2020-11-22 23:52:50 -05001690// IndexOfJar returns the first pair with the given jar name on the list, or -1
1691// if not found.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001692func (l *ConfiguredJarList) IndexOfJar(jar string) int {
1693 return IndexList(jar, l.jars)
1694}
1695
Paul Duffin7d584e92020-10-23 18:26:03 +01001696func copyAndAppend(list []string, item string) []string {
1697 // Create the result list to be 1 longer than the input.
1698 result := make([]string, len(list)+1)
1699
1700 // Copy the whole input list into the result.
1701 count := copy(result, list)
1702
1703 // Insert the extra item at the end.
1704 result[count] = item
1705
1706 return result
1707}
1708
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001709// Append an (apex, jar) pair to the list.
Paul Duffin7d584e92020-10-23 18:26:03 +01001710func (l *ConfiguredJarList) Append(apex string, jar string) ConfiguredJarList {
1711 // Create a copy of the backing arrays before appending to avoid sharing backing
1712 // arrays that are mutated across instances.
1713 apexes := copyAndAppend(l.apexes, apex)
1714 jars := copyAndAppend(l.jars, jar)
1715
1716 return ConfiguredJarList{apexes, jars}
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001717}
1718
Jiakai Zhang519c5c82021-09-16 06:15:39 +00001719// Append a list of (apex, jar) pairs to the list.
Jiakai Zhang389a6472021-12-14 18:54:06 +00001720func (l *ConfiguredJarList) AppendList(other *ConfiguredJarList) ConfiguredJarList {
Jiakai Zhang519c5c82021-09-16 06:15:39 +00001721 apexes := make([]string, 0, l.Len()+other.Len())
1722 jars := make([]string, 0, l.Len()+other.Len())
1723
1724 apexes = append(apexes, l.apexes...)
1725 jars = append(jars, l.jars...)
1726
1727 apexes = append(apexes, other.apexes...)
1728 jars = append(jars, other.jars...)
1729
1730 return ConfiguredJarList{apexes, jars}
1731}
1732
Jingwen Chenc711fec2020-11-22 23:52:50 -05001733// RemoveList filters out a list of (apex, jar) pairs from the receiving list of pairs.
Paul Duffin7d584e92020-10-23 18:26:03 +01001734func (l *ConfiguredJarList) RemoveList(list ConfiguredJarList) ConfiguredJarList {
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001735 apexes := make([]string, 0, l.Len())
1736 jars := make([]string, 0, l.Len())
1737
1738 for i, jar := range l.jars {
Paul Duffin1e8c6072020-10-23 18:28:55 +01001739 apex := l.apexes[i]
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001740 if !list.containsApexJarPair(apex, jar) {
1741 apexes = append(apexes, apex)
1742 jars = append(jars, jar)
1743 }
1744 }
1745
Paul Duffin7d584e92020-10-23 18:26:03 +01001746 return ConfiguredJarList{apexes, jars}
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001747}
1748
satayevd34eb0c2021-08-06 13:20:28 +01001749// Filter keeps the entries if a jar appears in the given list of jars to keep. Returns a new list
1750// and any remaining jars that are not on this list.
1751func (l *ConfiguredJarList) Filter(jarsToKeep []string) (ConfiguredJarList, []string) {
satayev8fab6f82021-05-07 00:10:33 +01001752 var apexes []string
1753 var jars []string
1754
1755 for i, jar := range l.jars {
1756 if InList(jar, jarsToKeep) {
1757 apexes = append(apexes, l.apexes[i])
1758 jars = append(jars, jar)
1759 }
1760 }
1761
satayevd34eb0c2021-08-06 13:20:28 +01001762 return ConfiguredJarList{apexes, jars}, RemoveListFromList(jarsToKeep, jars)
satayev8fab6f82021-05-07 00:10:33 +01001763}
1764
Jingwen Chenc711fec2020-11-22 23:52:50 -05001765// CopyOfJars returns a copy of the list of strings containing jar module name
1766// components.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001767func (l *ConfiguredJarList) CopyOfJars() []string {
1768 return CopyOf(l.jars)
1769}
1770
Jingwen Chenc711fec2020-11-22 23:52:50 -05001771// CopyOfApexJarPairs returns a copy of the list of strings with colon-separated
1772// (apex, jar) pairs.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001773func (l *ConfiguredJarList) CopyOfApexJarPairs() []string {
1774 pairs := make([]string, 0, l.Len())
1775
1776 for i, jar := range l.jars {
Paul Duffin1e8c6072020-10-23 18:28:55 +01001777 apex := l.apexes[i]
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001778 pairs = append(pairs, apex+":"+jar)
1779 }
1780
1781 return pairs
1782}
1783
Jingwen Chenc711fec2020-11-22 23:52:50 -05001784// BuildPaths returns a list of build paths based on the given directory prefix.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001785func (l *ConfiguredJarList) BuildPaths(ctx PathContext, dir OutputPath) WritablePaths {
1786 paths := make(WritablePaths, l.Len())
1787 for i, jar := range l.jars {
1788 paths[i] = dir.Join(ctx, ModuleStem(jar)+".jar")
1789 }
1790 return paths
1791}
1792
Paul Duffin5f148ca2021-06-02 17:24:22 +01001793// BuildPathsByModule returns a map from module name to build paths based on the given directory
1794// prefix.
1795func (l *ConfiguredJarList) BuildPathsByModule(ctx PathContext, dir OutputPath) map[string]WritablePath {
1796 paths := map[string]WritablePath{}
1797 for _, jar := range l.jars {
1798 paths[jar] = dir.Join(ctx, ModuleStem(jar)+".jar")
1799 }
1800 return paths
1801}
1802
Jingwen Chenc711fec2020-11-22 23:52:50 -05001803// UnmarshalJSON converts JSON configuration from raw bytes into a
1804// ConfiguredJarList structure.
Paul Duffin69d1fb12020-10-23 21:14:20 +01001805func (l *ConfiguredJarList) UnmarshalJSON(b []byte) error {
1806 // Try and unmarshal into a []string each item of which contains a pair
1807 // <apex>:<jar>.
1808 var list []string
1809 err := json.Unmarshal(b, &list)
1810 if err != nil {
1811 // Did not work so return
1812 return err
1813 }
1814
1815 apexes, jars, err := splitListOfPairsIntoPairOfLists(list)
1816 if err != nil {
1817 return err
1818 }
1819 l.apexes = apexes
1820 l.jars = jars
1821 return nil
1822}
1823
Lukacs T. Berki720b3962021-03-17 13:34:30 +01001824func (l *ConfiguredJarList) MarshalJSON() ([]byte, error) {
1825 if len(l.apexes) != len(l.jars) {
1826 return nil, errors.New(fmt.Sprintf("Inconsistent ConfiguredJarList: apexes: %q, jars: %q", l.apexes, l.jars))
1827 }
1828
1829 list := make([]string, 0, len(l.apexes))
1830
1831 for i := 0; i < len(l.apexes); i++ {
1832 list = append(list, l.apexes[i]+":"+l.jars[i])
1833 }
1834
1835 return json.Marshal(list)
1836}
1837
Jingwen Chenc711fec2020-11-22 23:52:50 -05001838// ModuleStem hardcodes the stem of framework-minus-apex to return "framework".
1839//
1840// TODO(b/139391334): hard coded until we find a good way to query the stem of a
1841// module before any other mutators are run.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001842func ModuleStem(module string) string {
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001843 if module == "framework-minus-apex" {
1844 return "framework"
1845 }
1846 return module
1847}
1848
Jingwen Chenc711fec2020-11-22 23:52:50 -05001849// DevicePaths computes the on-device paths for the list of (apex, jar) pairs,
1850// based on the operating system.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001851func (l *ConfiguredJarList) DevicePaths(cfg Config, ostype OsType) []string {
1852 paths := make([]string, l.Len())
1853 for i, jar := range l.jars {
1854 apex := l.apexes[i]
1855 name := ModuleStem(jar) + ".jar"
1856
1857 var subdir string
1858 if apex == "platform" {
1859 subdir = "system/framework"
1860 } else if apex == "system_ext" {
1861 subdir = "system_ext/framework"
1862 } else {
1863 subdir = filepath.Join("apex", apex, "javalib")
1864 }
1865
1866 if ostype.Class == Host {
1867 paths[i] = filepath.Join(cfg.Getenv("OUT_DIR"), "host", cfg.PrebuiltOS(), subdir, name)
1868 } else {
1869 paths[i] = filepath.Join("/", subdir, name)
1870 }
1871 }
1872 return paths
1873}
1874
Paul Duffin7d584e92020-10-23 18:26:03 +01001875func (l *ConfiguredJarList) String() string {
1876 var pairs []string
1877 for i := 0; i < l.Len(); i++ {
1878 pairs = append(pairs, l.apexes[i]+":"+l.jars[i])
1879 }
1880 return strings.Join(pairs, ",")
1881}
1882
Paul Duffin01416602020-10-23 21:04:03 +01001883func splitListOfPairsIntoPairOfLists(list []string) ([]string, []string, error) {
1884 // Now we need to populate this list by splitting each item in the slice of
1885 // pairs and appending them to the appropriate list of apexes or jars.
1886 apexes := make([]string, len(list))
1887 jars := make([]string, len(list))
1888
1889 for i, apexjar := range list {
1890 apex, jar, err := splitConfiguredJarPair(apexjar)
1891 if err != nil {
1892 return nil, nil, err
1893 }
1894 apexes[i] = apex
1895 jars[i] = jar
1896 }
1897
1898 return apexes, jars, nil
1899}
1900
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001901// Expected format for apexJarValue = <apex name>:<jar name>
Paul Duffin01416602020-10-23 21:04:03 +01001902func splitConfiguredJarPair(str string) (string, string, error) {
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001903 pair := strings.SplitN(str, ":", 2)
1904 if len(pair) == 2 {
Paul Duffin9c3ac962021-02-03 14:11:27 +00001905 apex := pair[0]
1906 jar := pair[1]
1907 if apex == "" {
1908 return apex, jar, fmt.Errorf("invalid apex '%s' in <apex>:<jar> pair '%s', expected format: <apex>:<jar>", apex, str)
1909 }
1910 return apex, jar, nil
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001911 } else {
Paul Duffin01416602020-10-23 21:04:03 +01001912 return "error-apex", "error-jar", fmt.Errorf("malformed (apex, jar) pair: '%s', expected format: <apex>:<jar>", str)
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001913 }
1914}
1915
Paul Duffin9c3ac962021-02-03 14:11:27 +00001916// CreateTestConfiguredJarList is a function to create ConfiguredJarList for tests.
Paul Duffine10dfa42020-10-23 21:23:44 +01001917func CreateTestConfiguredJarList(list []string) ConfiguredJarList {
Paul Duffin9c3ac962021-02-03 14:11:27 +00001918 // Create the ConfiguredJarList in as similar way as it is created at runtime by marshalling to
1919 // a json list of strings and then unmarshalling into a ConfiguredJarList instance.
1920 b, err := json.Marshal(list)
Paul Duffin01416602020-10-23 21:04:03 +01001921 if err != nil {
Paul Duffine10dfa42020-10-23 21:23:44 +01001922 panic(err)
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001923 }
1924
Paul Duffin9c3ac962021-02-03 14:11:27 +00001925 var jarList ConfiguredJarList
1926 err = json.Unmarshal(b, &jarList)
1927 if err != nil {
1928 panic(err)
1929 }
1930
1931 return jarList
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001932}
1933
Jingwen Chenc711fec2020-11-22 23:52:50 -05001934// EmptyConfiguredJarList returns an empty jar list.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001935func EmptyConfiguredJarList() ConfiguredJarList {
1936 return ConfiguredJarList{}
1937}
1938
1939var earlyBootJarsKey = NewOnceKey("earlyBootJars")
1940
1941func (c *config) BootJars() []string {
1942 return c.Once(earlyBootJarsKey, func() interface{} {
Paul Duffin69d1fb12020-10-23 21:14:20 +01001943 list := c.productVariables.BootJars.CopyOfJars()
satayevd604b212021-07-21 14:23:52 +01001944 return append(list, c.productVariables.ApexBootJars.CopyOfJars()...)
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001945 }).([]string)
1946}
Paul Duffin9a89a2a2020-10-28 19:20:06 +00001947
satayevd604b212021-07-21 14:23:52 +01001948func (c *config) NonApexBootJars() ConfiguredJarList {
Paul Duffin9a89a2a2020-10-28 19:20:06 +00001949 return c.productVariables.BootJars
1950}
1951
satayevd604b212021-07-21 14:23:52 +01001952func (c *config) ApexBootJars() ConfiguredJarList {
1953 return c.productVariables.ApexBootJars
Paul Duffin9a89a2a2020-10-28 19:20:06 +00001954}
Colin Cross77cdcfd2021-03-12 11:28:25 -08001955
1956func (c *config) RBEWrapper() string {
1957 return c.GetenvWithDefault("RBE_WRAPPER", remoteexec.DefaultWrapperPath)
1958}