blob: da78c7a12d524408506999b6ba6c07c2629d8b8c [file] [log] [blame]
Colin Cross3f40fa42015-01-30 17:27:36 -08001// Copyright 2015 Google Inc. All rights reserved.
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
Colin Cross635c3b02016-05-18 15:37:25 -070015package android
Colin Cross3f40fa42015-01-30 17:27:36 -080016
Jingwen Chenc711fec2020-11-22 23:52:50 -050017// This is the primary location to write and read all configuration values and
18// product variables necessary for soong_build's operation.
19
Colin Cross3f40fa42015-01-30 17:27:36 -080020import (
Colin Cross3f40fa42015-01-30 17:27:36 -080021 "encoding/json"
Lukacs T. Berki720b3962021-03-17 13:34:30 +010022 "errors"
Colin Cross3f40fa42015-01-30 17:27:36 -080023 "fmt"
Colin Crossd8f20142016-11-03 09:43:26 -070024 "io/ioutil"
Colin Cross3f40fa42015-01-30 17:27:36 -080025 "os"
Colin Cross35cec122015-04-02 14:37:16 -070026 "path/filepath"
Colin Cross3f40fa42015-01-30 17:27:36 -080027 "runtime"
Inseob Kim60c32f02020-12-21 22:53:05 +090028 "strconv"
Dan Willemsen34cc69e2015-09-23 15:26:20 -070029 "strings"
Colin Crossc1e86a32015-04-15 12:33:28 -070030 "sync"
Colin Cross6ff51382015-12-17 16:39:19 -080031
Colin Cross98be1bb2019-12-13 20:41:13 -080032 "github.com/google/blueprint"
Colin Crosse87040b2017-12-11 15:52:26 -080033 "github.com/google/blueprint/bootstrap"
Colin Cross98be1bb2019-12-13 20:41:13 -080034 "github.com/google/blueprint/pathtools"
Colin Cross6ff51382015-12-17 16:39:19 -080035 "github.com/google/blueprint/proptools"
Colin Cross9d34f352019-11-22 16:03:51 -080036
37 "android/soong/android/soongconfig"
Liz Kammer09f947d2021-05-12 14:51:49 -040038 "android/soong/bazel"
Colin Cross77cdcfd2021-03-12 11:28:25 -080039 "android/soong/remoteexec"
Colin Cross3f40fa42015-01-30 17:27:36 -080040)
41
Jingwen Chenc711fec2020-11-22 23:52:50 -050042// Bool re-exports proptools.Bool for the android package.
Colin Cross6ff51382015-12-17 16:39:19 -080043var Bool = proptools.Bool
Jingwen Chenc711fec2020-11-22 23:52:50 -050044
45// String re-exports proptools.String for the android package.
Jack He8cc71432016-12-08 15:45:07 -080046var String = proptools.String
Jingwen Chenc711fec2020-11-22 23:52:50 -050047
48// StringDefault re-exports proptools.StringDefault for the android package.
Jeongik Cha219141c2020-08-06 23:00:37 +090049var StringDefault = proptools.StringDefault
Jiyong Park6a927c42020-01-21 02:03:43 +090050
Jingwen Chenc711fec2020-11-22 23:52:50 -050051// FutureApiLevelInt is a placeholder constant for unreleased API levels.
Dan Albert0b176c82020-07-23 16:43:25 -070052const FutureApiLevelInt = 10000
53
Jingwen Chenc711fec2020-11-22 23:52:50 -050054// FutureApiLevel represents unreleased API levels.
Dan Albert0b176c82020-07-23 16:43:25 -070055var FutureApiLevel = ApiLevel{
56 value: "current",
57 number: FutureApiLevelInt,
58 isPreview: true,
59}
Colin Cross6ff51382015-12-17 16:39:19 -080060
Jingwen Chenc4d91bc2020-11-24 22:59:26 -050061// The product variables file name, containing product config from Kati.
Dan Willemsen87b17d12015-07-14 00:39:06 -070062const productVariablesFileName = "soong.variables"
Colin Cross3f40fa42015-01-30 17:27:36 -080063
Colin Cross9272ade2016-08-17 15:24:12 -070064// A Config object represents the entire build configuration for Android.
Colin Crossc3c0a492015-04-10 15:43:55 -070065type Config struct {
66 *config
67}
68
Jingwen Chenc711fec2020-11-22 23:52:50 -050069// BuildDir returns the build output directory for the configuration.
Jeff Gastonefc1b412017-03-29 17:29:06 -070070func (c Config) BuildDir() string {
71 return c.buildDir
72}
73
Lukacs T. Berki89e9a162021-03-12 08:31:32 +010074func (c Config) NinjaBuildDir() string {
75 return c.buildDir
76}
77
Lukacs T. Berki5f6cb1d2021-03-17 15:03:14 +010078func (c Config) DebugCompilation() bool {
79 return false // Never compile Go code in the main build for debugging
80}
81
Lukacs T. Berki89e9a162021-03-12 08:31:32 +010082func (c Config) SrcDir() string {
83 return c.srcDir
84}
85
Jingwen Chenc711fec2020-11-22 23:52:50 -050086// A DeviceConfig object represents the configuration for a particular device
87// being built. For now there will only be one of these, but in the future there
88// may be multiple devices being built.
Colin Cross9272ade2016-08-17 15:24:12 -070089type DeviceConfig struct {
90 *deviceConfig
91}
92
Jingwen Chenc711fec2020-11-22 23:52:50 -050093// VendorConfig represents the configuration for vendor-specific behavior.
Colin Cross9d34f352019-11-22 16:03:51 -080094type VendorConfig soongconfig.SoongConfig
Dan Willemsen0fe78662018-03-26 12:41:18 -070095
Jingwen Chenc711fec2020-11-22 23:52:50 -050096// Definition of general build configuration for soong_build. Some of these
Jingwen Chenc4d91bc2020-11-24 22:59:26 -050097// product configuration values are read from Kati-generated soong.variables.
Colin Cross1332b002015-04-07 17:11:30 -070098type config struct {
Jingwen Chenc711fec2020-11-22 23:52:50 -050099 // Options configurable with soong.variables
Dan Willemsen45133ac2018-03-09 21:22:06 -0800100 productVariables productVariables
Colin Cross3f40fa42015-01-30 17:27:36 -0800101
Dan Willemsen674dc7f2018-03-12 18:06:05 -0700102 // Only available on configs created by TestConfig
103 TestProductVariables *productVariables
104
Jingwen Chenc711fec2020-11-22 23:52:50 -0500105 // A specialized context object for Bazel/Soong mixed builds and migration
106 // purposes.
Chris Parsonsf3c96ef2020-09-29 02:23:17 -0400107 BazelContext BazelContext
108
Dan Willemsen87b17d12015-07-14 00:39:06 -0700109 ProductVariablesFileName string
110
Jaewoong Jung642916f2020-10-09 17:25:15 -0700111 Targets map[OsType][]Target
112 BuildOSTarget Target // the Target for tools run on the build machine
113 BuildOSCommonTarget Target // the Target for common (java) tools run on the build machine
114 AndroidCommonTarget Target // the Target for common modules for the Android device
115 AndroidFirstDeviceTarget Target // the first Target for modules for the Android device
Dan Willemsen218f6562015-07-08 18:13:11 -0700116
Jingwen Chenc711fec2020-11-22 23:52:50 -0500117 // multilibConflicts for an ArchType is true if there is earlier configured
118 // device architecture with the same multilib value.
Colin Cross3b19f5d2019-09-17 14:45:31 -0700119 multilibConflicts map[ArchType]bool
120
Colin Cross9272ade2016-08-17 15:24:12 -0700121 deviceConfig *deviceConfig
122
Chris Parsons8f232a22020-06-23 17:37:05 -0400123 srcDir string // the path of the root source directory
124 buildDir string // the path of the build output directory
125 moduleListFile string // the path to the file which lists blueprint files to parse.
Colin Crossc1e86a32015-04-15 12:33:28 -0700126
Colin Cross6ccbc912017-10-10 23:07:38 -0700127 env map[string]string
Dan Willemsene7680ba2015-09-11 17:06:19 -0700128 envLock sync.Mutex
129 envDeps map[string]string
130 envFrozen bool
Dan Willemsen5ba07e82015-12-11 13:51:06 -0800131
Jingwen Chencda22c92020-11-23 00:22:30 -0500132 // Changes behavior based on whether Kati runs after soong_build, or if soong_build
133 // runs standalone.
134 katiEnabled bool
Colin Cross1e7d3702016-08-24 15:25:47 -0700135
Colin Cross32616ed2017-09-05 21:56:44 -0700136 captureBuild bool // true for tests, saves build parameters for each module
137 ignoreEnvironment bool // true for tests, returns empty from all Getenv calls
Colin Crosscec81712017-07-13 14:43:27 -0700138
Colin Crosse87040b2017-12-11 15:52:26 -0800139 stopBefore bootstrap.StopBefore
140
Colin Cross98be1bb2019-12-13 20:41:13 -0800141 fs pathtools.FileSystem
142 mockBpList string
143
Jingwen Chen12b4c272021-03-10 02:05:59 -0500144 bp2buildPackageConfig Bp2BuildConfig
145 bp2buildModuleTypeConfig map[string]bool
146
Colin Cross5e6a7972020-06-07 16:56:32 -0700147 // If testAllowNonExistentPaths is true then PathForSource and PathForModuleSrc won't error
148 // in tests when a path doesn't exist.
Pedro Loureiro5d190cc2021-02-15 15:41:33 +0000149 TestAllowNonExistentPaths bool
Colin Cross5e6a7972020-06-07 16:56:32 -0700150
Jingwen Chenc711fec2020-11-22 23:52:50 -0500151 // The list of files that when changed, must invalidate soong_build to
152 // regenerate build.ninja.
Colin Cross12129292020-10-29 18:23:58 -0700153 ninjaFileDepsSet sync.Map
154
Colin Cross9272ade2016-08-17 15:24:12 -0700155 OncePer
156}
157
158type deviceConfig struct {
Dan Willemsen00269f22017-07-06 16:59:48 -0700159 config *config
Colin Cross9272ade2016-08-17 15:24:12 -0700160 OncePer
Colin Cross3f40fa42015-01-30 17:27:36 -0800161}
162
Colin Cross485e5722015-08-27 13:28:01 -0700163type jsonConfigurable interface {
Colin Cross27385972015-09-18 10:57:10 -0700164 SetDefaultConfig()
Colin Cross485e5722015-08-27 13:28:01 -0700165}
Colin Cross3f40fa42015-01-30 17:27:36 -0800166
Colin Cross485e5722015-08-27 13:28:01 -0700167func loadConfig(config *config) error {
Colin Cross988414c2020-01-11 01:11:46 +0000168 return loadFromConfigFile(&config.productVariables, absolutePath(config.ProductVariablesFileName))
Colin Cross485e5722015-08-27 13:28:01 -0700169}
170
Jingwen Chenc711fec2020-11-22 23:52:50 -0500171// loadFromConfigFile loads and decodes configuration options from a JSON file
172// in the current working directory.
Liz Kammer09f947d2021-05-12 14:51:49 -0400173func loadFromConfigFile(configurable *productVariables, filename string) error {
Colin Cross3f40fa42015-01-30 17:27:36 -0800174 // Try to open the file
Colin Cross485e5722015-08-27 13:28:01 -0700175 configFileReader, err := os.Open(filename)
Colin Cross3f40fa42015-01-30 17:27:36 -0800176 defer configFileReader.Close()
177 if os.IsNotExist(err) {
178 // Need to create a file, so that blueprint & ninja don't get in
179 // a dependency tracking loop.
180 // Make a file-configurable-options with defaults, write it out using
181 // a json writer.
Colin Cross27385972015-09-18 10:57:10 -0700182 configurable.SetDefaultConfig()
183 err = saveToConfigFile(configurable, filename)
Colin Cross3f40fa42015-01-30 17:27:36 -0800184 if err != nil {
185 return err
186 }
Colin Cross15cd21a2018-02-27 11:26:02 -0800187 } else if err != nil {
188 return fmt.Errorf("config file: could not open %s: %s", filename, err.Error())
Colin Cross3f40fa42015-01-30 17:27:36 -0800189 } else {
190 // Make a decoder for it
191 jsonDecoder := json.NewDecoder(configFileReader)
Colin Cross485e5722015-08-27 13:28:01 -0700192 err = jsonDecoder.Decode(configurable)
Colin Cross3f40fa42015-01-30 17:27:36 -0800193 if err != nil {
Colin Cross15cd21a2018-02-27 11:26:02 -0800194 return fmt.Errorf("config file: %s did not parse correctly: %s", filename, err.Error())
Colin Cross3f40fa42015-01-30 17:27:36 -0800195 }
196 }
197
Liz Kammer09f947d2021-05-12 14:51:49 -0400198 if Bool(configurable.GcovCoverage) && Bool(configurable.ClangCoverage) {
199 return fmt.Errorf("GcovCoverage and ClangCoverage cannot both be set")
200 }
201
202 configurable.Native_coverage = proptools.BoolPtr(
203 Bool(configurable.GcovCoverage) ||
204 Bool(configurable.ClangCoverage))
205
206 return saveToBazelConfigFile(configurable, filepath.Dir(filename))
Colin Cross3f40fa42015-01-30 17:27:36 -0800207}
208
Colin Crossd8f20142016-11-03 09:43:26 -0700209// atomically writes the config file in case two copies of soong_build are running simultaneously
210// (for example, docs generation and ninja manifest generation)
Liz Kammer09f947d2021-05-12 14:51:49 -0400211func saveToConfigFile(config *productVariables, filename string) error {
Colin Cross3f40fa42015-01-30 17:27:36 -0800212 data, err := json.MarshalIndent(&config, "", " ")
213 if err != nil {
214 return fmt.Errorf("cannot marshal config data: %s", err.Error())
215 }
216
Colin Crossd8f20142016-11-03 09:43:26 -0700217 f, err := ioutil.TempFile(filepath.Dir(filename), "config")
Colin Cross3f40fa42015-01-30 17:27:36 -0800218 if err != nil {
Jingwen Chenc711fec2020-11-22 23:52:50 -0500219 return fmt.Errorf("cannot create empty config file %s: %s", filename, err.Error())
Colin Cross3f40fa42015-01-30 17:27:36 -0800220 }
Colin Crossd8f20142016-11-03 09:43:26 -0700221 defer os.Remove(f.Name())
222 defer f.Close()
Colin Cross3f40fa42015-01-30 17:27:36 -0800223
Colin Crossd8f20142016-11-03 09:43:26 -0700224 _, err = f.Write(data)
Colin Cross3f40fa42015-01-30 17:27:36 -0800225 if err != nil {
Colin Cross485e5722015-08-27 13:28:01 -0700226 return fmt.Errorf("default config file: %s could not be written: %s", filename, err.Error())
227 }
228
Colin Crossd8f20142016-11-03 09:43:26 -0700229 _, err = f.WriteString("\n")
Colin Cross485e5722015-08-27 13:28:01 -0700230 if err != nil {
231 return fmt.Errorf("default config file: %s could not be written: %s", filename, err.Error())
Colin Cross3f40fa42015-01-30 17:27:36 -0800232 }
233
Colin Crossd8f20142016-11-03 09:43:26 -0700234 f.Close()
235 os.Rename(f.Name(), filename)
236
Colin Cross3f40fa42015-01-30 17:27:36 -0800237 return nil
238}
239
Liz Kammer09f947d2021-05-12 14:51:49 -0400240func saveToBazelConfigFile(config *productVariables, outDir string) error {
241 dir := filepath.Join(outDir, bazel.SoongInjectionDirName, "product_config")
242 err := createDirIfNonexistent(dir, os.ModePerm)
243 if err != nil {
244 return fmt.Errorf("Could not create dir %s: %s", dir, err)
245 }
246
247 data, err := json.MarshalIndent(&config, "", " ")
248 if err != nil {
249 return fmt.Errorf("cannot marshal config data: %s", err.Error())
250 }
251
252 bzl := []string{
253 bazel.GeneratedBazelFileWarning,
254 fmt.Sprintf(`_product_vars = json.decode("""%s""")`, data),
255 "product_vars = _product_vars\n",
256 }
257 err = ioutil.WriteFile(filepath.Join(dir, "product_variables.bzl"), []byte(strings.Join(bzl, "\n")), 0644)
258 if err != nil {
259 return fmt.Errorf("Could not write .bzl config file %s", err)
260 }
261 err = ioutil.WriteFile(filepath.Join(dir, "BUILD"), []byte(bazel.GeneratedBazelFileWarning), 0644)
262 if err != nil {
263 return fmt.Errorf("Could not write BUILD config file %s", err)
264 }
265
266 return nil
267}
268
Colin Cross988414c2020-01-11 01:11:46 +0000269// NullConfig returns a mostly empty Config for use by standalone tools like dexpreopt_gen that
270// use the android package.
271func NullConfig(buildDir string) Config {
272 return Config{
273 config: &config{
274 buildDir: buildDir,
275 fs: pathtools.OsFs,
276 },
277 }
278}
279
Jingwen Chenc711fec2020-11-22 23:52:50 -0500280// TestConfig returns a Config object for testing.
Colin Cross98be1bb2019-12-13 20:41:13 -0800281func TestConfig(buildDir string, env map[string]string, bp string, fs map[string][]byte) Config {
Colin Cross9c6241f2019-04-22 15:51:26 -0700282 envCopy := make(map[string]string)
283 for k, v := range env {
284 envCopy[k] = v
285 }
286
Jingwen Chen2838c812020-11-23 01:06:40 -0500287 // Copy the real PATH value to the test environment, it's needed by
288 // NonHermeticHostSystemTool() used in x86_darwin_host.go
Lukacs T. Berkideba7212021-03-04 10:50:10 +0100289 envCopy["PATH"] = os.Getenv("PATH")
Colin Cross9c6241f2019-04-22 15:51:26 -0700290
Dan Willemsen00269f22017-07-06 16:59:48 -0700291 config := &config{
Dan Willemsen45133ac2018-03-09 21:22:06 -0800292 productVariables: productVariables{
Dan Albert4f378d72020-07-23 17:32:15 -0700293 DeviceName: stringPtr("test_device"),
294 Platform_sdk_version: intPtr(30),
295 Platform_sdk_codename: stringPtr("S"),
296 Platform_version_active_codenames: []string{"S"},
297 DeviceSystemSdkVersions: []string{"14", "15"},
298 Platform_systemsdk_versions: []string{"29", "30"},
299 AAPTConfig: []string{"normal", "large", "xlarge", "hdpi", "xhdpi", "xxhdpi"},
300 AAPTPreferredConfig: stringPtr("xhdpi"),
301 AAPTCharacteristics: stringPtr("nosdcard"),
302 AAPTPrebuiltDPI: []string{"xhdpi", "xxhdpi"},
303 UncompressPrivAppDex: boolPtr(true),
Inseob Kim60c32f02020-12-21 22:53:05 +0900304 ShippingApiLevel: stringPtr("30"),
Dan Willemsen00269f22017-07-06 16:59:48 -0700305 },
306
Colin Cross6ccbc912017-10-10 23:07:38 -0700307 buildDir: buildDir,
308 captureBuild: true,
Colin Cross9c6241f2019-04-22 15:51:26 -0700309 env: envCopy,
Colin Cross5e6a7972020-06-07 16:56:32 -0700310
311 // Set testAllowNonExistentPaths so that test contexts don't need to specify every path
312 // passed to PathForSource or PathForModuleSrc.
Pedro Loureiro5d190cc2021-02-15 15:41:33 +0000313 TestAllowNonExistentPaths: true,
Chris Parsonsf3c96ef2020-09-29 02:23:17 -0400314
315 BazelContext: noopBazelContext{},
Dan Willemsen00269f22017-07-06 16:59:48 -0700316 }
317 config.deviceConfig = &deviceConfig{
318 config: config,
319 }
Dan Willemsen45133ac2018-03-09 21:22:06 -0800320 config.TestProductVariables = &config.productVariables
Dan Willemsen00269f22017-07-06 16:59:48 -0700321
Colin Cross98be1bb2019-12-13 20:41:13 -0800322 config.mockFileSystem(bp, fs)
323
Jingwen Chen12b4c272021-03-10 02:05:59 -0500324 config.bp2buildModuleTypeConfig = map[string]bool{}
325
Dan Willemsen00269f22017-07-06 16:59:48 -0700326 return Config{config}
Colin Crossce75d2c2016-10-06 16:12:58 -0700327}
328
Paul Duffinecdac8a2021-02-24 19:18:42 +0000329func fuchsiaTargets() map[OsType][]Target {
330 return map[OsType][]Target{
331 Fuchsia: {
Jiyong Park1613e552020-09-14 19:43:17 +0900332 {Fuchsia, Arch{ArchType: Arm64, ArchVariant: "", Abi: []string{"arm64-v8a"}}, NativeBridgeDisabled, "", "", false},
Doug Hornc32c6b02019-01-17 14:44:05 -0800333 },
Paul Duffinecdac8a2021-02-24 19:18:42 +0000334 BuildOs: {
Jiyong Park1613e552020-09-14 19:43:17 +0900335 {BuildOs, Arch{ArchType: X86_64}, NativeBridgeDisabled, "", "", false},
Doug Hornc32c6b02019-01-17 14:44:05 -0800336 },
337 }
Doug Hornc32c6b02019-01-17 14:44:05 -0800338}
339
Paul Duffinecdac8a2021-02-24 19:18:42 +0000340var PrepareForTestSetDeviceToFuchsia = FixtureModifyConfig(func(config Config) {
341 config.Targets = fuchsiaTargets()
342})
343
Paul Duffin35816122021-02-24 01:49:52 +0000344func modifyTestConfigToSupportArchMutator(testConfig Config) {
Colin Crossae4c6182017-09-15 17:33:55 -0700345 config := testConfig.config
346
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700347 config.Targets = map[OsType][]Target{
348 Android: []Target{
Jiyong Park1613e552020-09-14 19:43:17 +0900349 {Android, Arch{ArchType: Arm64, ArchVariant: "armv8-a", Abi: []string{"arm64-v8a"}}, NativeBridgeDisabled, "", "", false},
350 {Android, Arch{ArchType: Arm, ArchVariant: "armv7-a-neon", Abi: []string{"armeabi-v7a"}}, NativeBridgeDisabled, "", "", false},
Colin Crossae4c6182017-09-15 17:33:55 -0700351 },
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700352 BuildOs: []Target{
Jiyong Park1613e552020-09-14 19:43:17 +0900353 {BuildOs, Arch{ArchType: X86_64}, NativeBridgeDisabled, "", "", false},
354 {BuildOs, Arch{ArchType: X86}, NativeBridgeDisabled, "", "", false},
Colin Crossae4c6182017-09-15 17:33:55 -0700355 },
356 }
357
Colin Cross0d99f7c2019-05-14 16:01:24 -0700358 if runtime.GOOS == "darwin" {
359 config.Targets[BuildOs] = config.Targets[BuildOs][:1]
360 }
361
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700362 config.BuildOSTarget = config.Targets[BuildOs][0]
363 config.BuildOSCommonTarget = getCommonTargets(config.Targets[BuildOs])[0]
364 config.AndroidCommonTarget = getCommonTargets(config.Targets[Android])[0]
Jaewoong Jung642916f2020-10-09 17:25:15 -0700365 config.AndroidFirstDeviceTarget = firstTarget(config.Targets[Android], "lib64", "lib32")[0]
Inseob Kim1f086e22019-05-09 13:29:15 +0900366 config.TestProductVariables.DeviceArch = proptools.StringPtr("arm64")
367 config.TestProductVariables.DeviceArchVariant = proptools.StringPtr("armv8-a")
368 config.TestProductVariables.DeviceSecondaryArch = proptools.StringPtr("arm")
369 config.TestProductVariables.DeviceSecondaryArchVariant = proptools.StringPtr("armv7-a-neon")
Paul Duffin35816122021-02-24 01:49:52 +0000370}
Colin Cross2a076922018-10-04 23:28:25 -0700371
Paul Duffin35816122021-02-24 01:49:52 +0000372// TestArchConfig returns a Config object suitable for using for tests that
373// need to run the arch mutator.
374func TestArchConfig(buildDir string, env map[string]string, bp string, fs map[string][]byte) Config {
375 testConfig := TestConfig(buildDir, env, bp, fs)
376 modifyTestConfigToSupportArchMutator(testConfig)
Colin Crossae4c6182017-09-15 17:33:55 -0700377 return testConfig
378}
379
Jingwen Chenc711fec2020-11-22 23:52:50 -0500380// ConfigForAdditionalRun is a config object which is "reset" for another
381// bootstrap run. Only per-run data is reset. Data which needs to persist across
382// multiple runs in the same program execution is carried over (such as Bazel
383// context or environment deps).
Chris Parsonsf3c96ef2020-09-29 02:23:17 -0400384func ConfigForAdditionalRun(c Config) (Config, error) {
Lukacs T. Berki53b2f362021-04-12 14:04:24 +0200385 newConfig, err := NewConfig(c.srcDir, c.buildDir, c.moduleListFile, c.env)
Chris Parsonsf3c96ef2020-09-29 02:23:17 -0400386 if err != nil {
387 return Config{}, err
388 }
389 newConfig.BazelContext = c.BazelContext
390 newConfig.envDeps = c.envDeps
391 return newConfig, nil
392}
393
Jingwen Chenc711fec2020-11-22 23:52:50 -0500394// NewConfig creates a new Config object. The srcDir argument specifies the path
395// to the root source directory. It also loads the config file, if found.
Lukacs T. Berki53b2f362021-04-12 14:04:24 +0200396func NewConfig(srcDir, buildDir string, moduleListFile string, availableEnv map[string]string) (Config, error) {
Jingwen Chenc711fec2020-11-22 23:52:50 -0500397 // Make a config with default options.
Colin Cross9272ade2016-08-17 15:24:12 -0700398 config := &config{
Colin Cross9272ade2016-08-17 15:24:12 -0700399 ProductVariablesFileName: filepath.Join(buildDir, productVariablesFileName),
Dan Willemsen87b17d12015-07-14 00:39:06 -0700400
Lukacs T. Berki53b2f362021-04-12 14:04:24 +0200401 env: availableEnv,
Colin Cross6ccbc912017-10-10 23:07:38 -0700402
Colin Cross3b19f5d2019-09-17 14:45:31 -0700403 srcDir: srcDir,
404 buildDir: buildDir,
405 multilibConflicts: make(map[ArchType]bool),
Colin Cross98be1bb2019-12-13 20:41:13 -0800406
Chris Parsons8f232a22020-06-23 17:37:05 -0400407 moduleListFile: moduleListFile,
408 fs: pathtools.NewOsFs(absSrcDir),
Colin Cross68f55102015-03-25 14:43:57 -0700409 }
Colin Cross3f40fa42015-01-30 17:27:36 -0800410
Dan Willemsen00269f22017-07-06 16:59:48 -0700411 config.deviceConfig = &deviceConfig{
Colin Cross9272ade2016-08-17 15:24:12 -0700412 config: config,
413 }
414
Liz Kammer7941b302020-07-28 13:27:34 -0700415 // Soundness check of the build and source directories. This won't catch strange
416 // configurations with symlinks, but at least checks the obvious case.
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700417 absBuildDir, err := filepath.Abs(buildDir)
418 if err != nil {
419 return Config{}, err
420 }
421
422 absSrcDir, err := filepath.Abs(srcDir)
423 if err != nil {
424 return Config{}, err
425 }
426
427 if strings.HasPrefix(absSrcDir, absBuildDir) {
428 return Config{}, fmt.Errorf("Build dir must not contain source directory")
429 }
430
Colin Cross3f40fa42015-01-30 17:27:36 -0800431 // Load any configurable options from the configuration file
Colin Cross9272ade2016-08-17 15:24:12 -0700432 err = loadConfig(config)
Colin Cross3f40fa42015-01-30 17:27:36 -0800433 if err != nil {
Colin Crossc3c0a492015-04-10 15:43:55 -0700434 return Config{}, err
Colin Cross3f40fa42015-01-30 17:27:36 -0800435 }
436
Jingwen Chencda22c92020-11-23 00:22:30 -0500437 KatiEnabledMarkerFile := filepath.Join(buildDir, ".soong.kati_enabled")
438 if _, err := os.Stat(absolutePath(KatiEnabledMarkerFile)); err == nil {
439 config.katiEnabled = true
Dan Willemsen5ba07e82015-12-11 13:51:06 -0800440 }
441
Jingwen Chenc711fec2020-11-22 23:52:50 -0500442 // Sets up the map of target OSes to the finer grained compilation targets
443 // that are configured from the product variables.
Colin Crossa1ad8d12016-06-01 17:09:44 -0700444 targets, err := decodeTargetProductVariables(config)
Dan Willemsen218f6562015-07-08 18:13:11 -0700445 if err != nil {
446 return Config{}, err
447 }
448
Paul Duffin1356d8c2020-02-25 19:26:33 +0000449 // Make the CommonOS OsType available for all products.
450 targets[CommonOS] = []Target{commonTargetMap[CommonOS.Name]}
451
Dan Albert4098deb2016-10-19 14:04:41 -0700452 var archConfig []archConfig
Jingwen Chenc4d91bc2020-11-24 22:59:26 -0500453 if config.NdkAbis() {
Dan Albert4098deb2016-10-19 14:04:41 -0700454 archConfig = getNdkAbisConfig()
Martin Stjernholmc1ecc432019-11-15 15:00:31 +0000455 } else if config.AmlAbis() {
456 archConfig = getAmlAbisConfig()
Dan Albert4098deb2016-10-19 14:04:41 -0700457 }
458
459 if archConfig != nil {
Dan Willemsen01a3c252019-01-11 19:02:16 -0800460 androidTargets, err := decodeArchSettings(Android, archConfig)
Dan Willemsen322acaf2016-01-12 23:07:05 -0800461 if err != nil {
462 return Config{}, err
463 }
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700464 targets[Android] = androidTargets
Dan Willemsen322acaf2016-01-12 23:07:05 -0800465 }
466
Colin Cross3b19f5d2019-09-17 14:45:31 -0700467 multilib := make(map[string]bool)
468 for _, target := range targets[Android] {
469 if seen := multilib[target.Arch.ArchType.Multilib]; seen {
470 config.multilibConflicts[target.Arch.ArchType] = true
471 }
472 multilib[target.Arch.ArchType.Multilib] = true
473 }
474
Jingwen Chenc711fec2020-11-22 23:52:50 -0500475 // Map of OS to compilation targets.
Colin Crossa1ad8d12016-06-01 17:09:44 -0700476 config.Targets = targets
Jingwen Chenc711fec2020-11-22 23:52:50 -0500477
478 // Compilation targets for host tools.
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700479 config.BuildOSTarget = config.Targets[BuildOs][0]
480 config.BuildOSCommonTarget = getCommonTargets(config.Targets[BuildOs])[0]
Jingwen Chenc711fec2020-11-22 23:52:50 -0500481
482 // Compilation targets for Android.
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700483 if len(config.Targets[Android]) > 0 {
484 config.AndroidCommonTarget = getCommonTargets(config.Targets[Android])[0]
Jaewoong Jung642916f2020-10-09 17:25:15 -0700485 config.AndroidFirstDeviceTarget = firstTarget(config.Targets[Android], "lib64", "lib32")[0]
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700486 }
Dan Willemsen218f6562015-07-08 18:13:11 -0700487
Chris Parsonsf3c96ef2020-09-29 02:23:17 -0400488 config.BazelContext, err = NewBazelContext(config)
Jingwen Chen12b4c272021-03-10 02:05:59 -0500489 config.bp2buildPackageConfig = bp2buildDefaultConfig
490 config.bp2buildModuleTypeConfig = make(map[string]bool)
Colin Cross3f40fa42015-01-30 17:27:36 -0800491
Jingwen Chenc711fec2020-11-22 23:52:50 -0500492 return Config{config}, err
493}
Colin Cross988414c2020-01-11 01:11:46 +0000494
Colin Cross98be1bb2019-12-13 20:41:13 -0800495// mockFileSystem replaces all reads with accesses to the provided map of
496// filenames to contents stored as a byte slice.
497func (c *config) mockFileSystem(bp string, fs map[string][]byte) {
498 mockFS := map[string][]byte{}
499
500 if _, exists := mockFS["Android.bp"]; !exists {
501 mockFS["Android.bp"] = []byte(bp)
502 }
503
504 for k, v := range fs {
505 mockFS[k] = v
506 }
507
508 // no module list file specified; find every file named Blueprints or Android.bp
509 pathsToParse := []string{}
510 for candidate := range mockFS {
511 base := filepath.Base(candidate)
512 if base == "Blueprints" || base == "Android.bp" {
513 pathsToParse = append(pathsToParse, candidate)
514 }
515 }
516 if len(pathsToParse) < 1 {
517 panic(fmt.Sprintf("No Blueprint or Android.bp files found in mock filesystem: %v\n", mockFS))
518 }
519 mockFS[blueprint.MockModuleListFile] = []byte(strings.Join(pathsToParse, "\n"))
520
521 c.fs = pathtools.MockFs(mockFS)
522 c.mockBpList = blueprint.MockModuleListFile
523}
524
Colin Crosse87040b2017-12-11 15:52:26 -0800525func (c *config) StopBefore() bootstrap.StopBefore {
526 return c.stopBefore
Dan Willemsen218f6562015-07-08 18:13:11 -0700527}
528
Jingwen Chenc711fec2020-11-22 23:52:50 -0500529// SetStopBefore configures soong_build to exit earlier at a specific point.
Colin Crosse87040b2017-12-11 15:52:26 -0800530func (c *config) SetStopBefore(stopBefore bootstrap.StopBefore) {
531 c.stopBefore = stopBefore
532}
533
Lukacs T. Berkid1e3f1f2021-03-16 08:55:23 +0100534func (c *config) SetAllowMissingDependencies() {
535 c.productVariables.Allow_missing_dependencies = proptools.BoolPtr(true)
536}
537
Colin Crosse87040b2017-12-11 15:52:26 -0800538var _ bootstrap.ConfigStopBefore = (*config)(nil)
539
Jingwen Chenc711fec2020-11-22 23:52:50 -0500540// BlueprintToolLocation returns the directory containing build system tools
541// from Blueprint, like soong_zip and merge_zips.
Dan Willemsenc2aa4a92016-05-26 15:13:03 -0700542func (c *config) BlueprintToolLocation() string {
543 return filepath.Join(c.buildDir, "host", c.PrebuiltOS(), "bin")
544}
545
Colin Crosse87040b2017-12-11 15:52:26 -0800546var _ bootstrap.ConfigBlueprintToolLocation = (*config)(nil)
547
Dan Willemsen60e62f02018-11-16 21:05:32 -0800548func (c *config) HostToolPath(ctx PathContext, tool string) Path {
549 return PathForOutput(ctx, "host", c.PrebuiltOS(), "bin", tool)
550}
551
Martin Stjernholm7260d062019-12-09 21:47:14 +0000552func (c *config) HostJNIToolPath(ctx PathContext, path string) Path {
553 ext := ".so"
554 if runtime.GOOS == "darwin" {
555 ext = ".dylib"
556 }
557 return PathForOutput(ctx, "host", c.PrebuiltOS(), "lib64", path+ext)
558}
559
560func (c *config) HostJavaToolPath(ctx PathContext, path string) Path {
561 return PathForOutput(ctx, "host", c.PrebuiltOS(), "framework", path)
562}
563
Jingwen Chenc711fec2020-11-22 23:52:50 -0500564// PrebuiltOS returns the name of the host OS used in prebuilts directories.
Colin Cross1332b002015-04-07 17:11:30 -0700565func (c *config) PrebuiltOS() string {
Colin Cross3f40fa42015-01-30 17:27:36 -0800566 switch runtime.GOOS {
567 case "linux":
568 return "linux-x86"
569 case "darwin":
570 return "darwin-x86"
571 default:
572 panic("Unknown GOOS")
573 }
574}
575
576// GoRoot returns the path to the root directory of the Go toolchain.
Colin Cross1332b002015-04-07 17:11:30 -0700577func (c *config) GoRoot() string {
Colin Cross3f40fa42015-01-30 17:27:36 -0800578 return fmt.Sprintf("%s/prebuilts/go/%s", c.srcDir, c.PrebuiltOS())
579}
580
Jingwen Chenc711fec2020-11-22 23:52:50 -0500581// PrebuiltBuildTool returns the path to a tool in the prebuilts directory containing
582// checked-in tools, like Kati, Ninja or Toybox, for the current host OS.
Dan Willemsen4e0aa232019-04-10 22:59:54 -0700583func (c *config) PrebuiltBuildTool(ctx PathContext, tool string) Path {
584 return PathForSource(ctx, "prebuilts/build-tools", c.PrebuiltOS(), "bin", tool)
585}
586
Jingwen Chenc711fec2020-11-22 23:52:50 -0500587// CpPreserveSymlinksFlags returns the host-specific flag for the cp(1) command
588// to preserve symlinks.
Colin Cross1332b002015-04-07 17:11:30 -0700589func (c *config) CpPreserveSymlinksFlags() string {
Colin Cross485e5722015-08-27 13:28:01 -0700590 switch runtime.GOOS {
Colin Cross3f40fa42015-01-30 17:27:36 -0800591 case "darwin":
592 return "-R"
593 case "linux":
594 return "-d"
595 default:
596 return ""
597 }
598}
Colin Cross68f55102015-03-25 14:43:57 -0700599
Colin Cross1332b002015-04-07 17:11:30 -0700600func (c *config) Getenv(key string) string {
Colin Cross68f55102015-03-25 14:43:57 -0700601 var val string
602 var exists bool
Colin Crossc1e86a32015-04-15 12:33:28 -0700603 c.envLock.Lock()
Colin Crossc0d58b42017-02-06 15:40:41 -0800604 defer c.envLock.Unlock()
605 if c.envDeps == nil {
606 c.envDeps = make(map[string]string)
607 }
Colin Cross68f55102015-03-25 14:43:57 -0700608 if val, exists = c.envDeps[key]; !exists {
Dan Willemsene7680ba2015-09-11 17:06:19 -0700609 if c.envFrozen {
610 panic("Cannot access new environment variables after envdeps are frozen")
611 }
Colin Cross6ccbc912017-10-10 23:07:38 -0700612 val, _ = c.env[key]
Colin Cross68f55102015-03-25 14:43:57 -0700613 c.envDeps[key] = val
614 }
615 return val
616}
617
Colin Cross99d7c232016-11-23 16:52:04 -0800618func (c *config) GetenvWithDefault(key string, defaultValue string) string {
619 ret := c.Getenv(key)
620 if ret == "" {
621 return defaultValue
622 }
623 return ret
624}
625
626func (c *config) IsEnvTrue(key string) bool {
627 value := c.Getenv(key)
628 return value == "1" || value == "y" || value == "yes" || value == "on" || value == "true"
629}
630
631func (c *config) IsEnvFalse(key string) bool {
632 value := c.Getenv(key)
633 return value == "0" || value == "n" || value == "no" || value == "off" || value == "false"
634}
635
Jingwen Chenc711fec2020-11-22 23:52:50 -0500636// EnvDeps returns the environment variables this build depends on. The first
637// call to this function blocks future reads from the environment.
Colin Cross1332b002015-04-07 17:11:30 -0700638func (c *config) EnvDeps() map[string]string {
Dan Willemsene7680ba2015-09-11 17:06:19 -0700639 c.envLock.Lock()
Colin Crossc0d58b42017-02-06 15:40:41 -0800640 defer c.envLock.Unlock()
Dan Willemsene7680ba2015-09-11 17:06:19 -0700641 c.envFrozen = true
Colin Cross68f55102015-03-25 14:43:57 -0700642 return c.envDeps
643}
Colin Cross35cec122015-04-02 14:37:16 -0700644
Jingwen Chencda22c92020-11-23 00:22:30 -0500645func (c *config) KatiEnabled() bool {
646 return c.katiEnabled
Dan Willemsen5ba07e82015-12-11 13:51:06 -0800647}
648
Nan Zhang581fd212018-01-10 16:06:12 -0800649func (c *config) BuildId() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800650 return String(c.productVariables.BuildId)
Nan Zhang581fd212018-01-10 16:06:12 -0800651}
652
Jingwen Chenc711fec2020-11-22 23:52:50 -0500653// BuildNumberFile returns the path to a text file containing metadata
654// representing the current build's number.
655//
656// Rules that want to reference the build number should read from this file
657// without depending on it. They will run whenever their other dependencies
658// require them to run and get the current build number. This ensures they don't
659// rebuild on every incremental build when the build number changes.
Colin Cross2a2e0db2020-02-21 16:55:46 -0800660func (c *config) BuildNumberFile(ctx PathContext) Path {
661 return PathForOutput(ctx, String(c.productVariables.BuildNumberFile))
Nan Zhang581fd212018-01-10 16:06:12 -0800662}
663
Jingwen Chenc711fec2020-11-22 23:52:50 -0500664// DeviceName returns the name of the current device target.
Colin Cross35cec122015-04-02 14:37:16 -0700665// TODO: take an AndroidModuleContext to select the device name for multi-device builds
Colin Cross1332b002015-04-07 17:11:30 -0700666func (c *config) DeviceName() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800667 return *c.productVariables.DeviceName
Colin Cross35cec122015-04-02 14:37:16 -0700668}
669
Anton Hansson53c88442019-03-18 15:53:16 +0000670func (c *config) DeviceResourceOverlays() []string {
671 return c.productVariables.DeviceResourceOverlays
672}
673
674func (c *config) ProductResourceOverlays() []string {
675 return c.productVariables.ProductResourceOverlays
Colin Cross30e076a2015-04-13 13:58:27 -0700676}
677
Colin Crossbfd347d2018-05-09 11:11:35 -0700678func (c *config) PlatformVersionName() string {
679 return String(c.productVariables.Platform_version_name)
680}
681
Dan Albert4f378d72020-07-23 17:32:15 -0700682func (c *config) PlatformSdkVersion() ApiLevel {
683 return uncheckedFinalApiLevel(*c.productVariables.Platform_sdk_version)
Colin Cross30e076a2015-04-13 13:58:27 -0700684}
685
Colin Crossd09b0b62018-04-18 11:06:47 -0700686func (c *config) PlatformSdkCodename() string {
687 return String(c.productVariables.Platform_sdk_codename)
688}
689
Colin Cross092c9da2019-04-02 22:56:43 -0700690func (c *config) PlatformSecurityPatch() string {
691 return String(c.productVariables.Platform_security_patch)
692}
693
694func (c *config) PlatformPreviewSdkVersion() string {
695 return String(c.productVariables.Platform_preview_sdk_version)
696}
697
698func (c *config) PlatformMinSupportedTargetSdkVersion() string {
699 return String(c.productVariables.Platform_min_supported_target_sdk_version)
700}
701
702func (c *config) PlatformBaseOS() string {
703 return String(c.productVariables.Platform_base_os)
704}
705
Dan Albert1a246272020-07-06 14:49:35 -0700706func (c *config) MinSupportedSdkVersion() ApiLevel {
707 return uncheckedFinalApiLevel(16)
708}
709
710func (c *config) FinalApiLevels() []ApiLevel {
711 var levels []ApiLevel
Dan Albert4f378d72020-07-23 17:32:15 -0700712 for i := 1; i <= c.PlatformSdkVersion().FinalOrFutureInt(); i++ {
Dan Albert1a246272020-07-06 14:49:35 -0700713 levels = append(levels, uncheckedFinalApiLevel(i))
714 }
715 return levels
716}
717
718func (c *config) PreviewApiLevels() []ApiLevel {
719 var levels []ApiLevel
720 for i, codename := range c.PlatformVersionActiveCodenames() {
721 levels = append(levels, ApiLevel{
722 value: codename,
723 number: i,
724 isPreview: true,
725 })
726 }
727 return levels
728}
729
730func (c *config) AllSupportedApiLevels() []ApiLevel {
731 var levels []ApiLevel
732 levels = append(levels, c.FinalApiLevels()...)
733 return append(levels, c.PreviewApiLevels()...)
Dan Albertf5415d72017-08-17 16:19:59 -0700734}
735
Jingwen Chenc711fec2020-11-22 23:52:50 -0500736// DefaultAppTargetSdk returns the API level that platform apps are targeting.
737// This converts a codename to the exact ApiLevel it represents.
Dan Albert4f378d72020-07-23 17:32:15 -0700738func (c *config) DefaultAppTargetSdk(ctx EarlyModuleContext) ApiLevel {
Colin Crossd09b0b62018-04-18 11:06:47 -0700739 if Bool(c.productVariables.Platform_sdk_final) {
740 return c.PlatformSdkVersion()
Colin Crossd09b0b62018-04-18 11:06:47 -0700741 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500742 codename := c.PlatformSdkCodename()
743 if codename == "" {
744 return NoneApiLevel
745 }
746 if codename == "REL" {
747 panic("Platform_sdk_codename should not be REL when Platform_sdk_final is true")
748 }
749 return ApiLevelOrPanic(ctx, codename)
Colin Crossd09b0b62018-04-18 11:06:47 -0700750}
751
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800752func (c *config) AppsDefaultVersionName() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800753 return String(c.productVariables.AppsDefaultVersionName)
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800754}
755
Dan Albert31384de2017-07-28 12:39:46 -0700756// Codenames that are active in the current lunch target.
757func (c *config) PlatformVersionActiveCodenames() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800758 return c.productVariables.Platform_version_active_codenames
Dan Albert31384de2017-07-28 12:39:46 -0700759}
760
Colin Crossface4e42017-10-30 17:32:15 -0700761func (c *config) ProductAAPTConfig() []string {
Colin Crossa74ca042019-01-31 14:31:51 -0800762 return c.productVariables.AAPTConfig
Colin Cross30e076a2015-04-13 13:58:27 -0700763}
764
Colin Crossface4e42017-10-30 17:32:15 -0700765func (c *config) ProductAAPTPreferredConfig() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800766 return String(c.productVariables.AAPTPreferredConfig)
Colin Cross30e076a2015-04-13 13:58:27 -0700767}
768
Colin Crossface4e42017-10-30 17:32:15 -0700769func (c *config) ProductAAPTCharacteristics() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800770 return String(c.productVariables.AAPTCharacteristics)
Colin Crossface4e42017-10-30 17:32:15 -0700771}
772
773func (c *config) ProductAAPTPrebuiltDPI() []string {
Colin Crossa74ca042019-01-31 14:31:51 -0800774 return c.productVariables.AAPTPrebuiltDPI
Colin Cross30e076a2015-04-13 13:58:27 -0700775}
776
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700777func (c *config) DefaultAppCertificateDir(ctx PathContext) SourcePath {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800778 defaultCert := String(c.productVariables.DefaultAppCertificate)
Colin Cross61ae0b72017-12-01 17:16:02 -0800779 if defaultCert != "" {
780 return PathForSource(ctx, filepath.Dir(defaultCert))
Colin Cross61ae0b72017-12-01 17:16:02 -0800781 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500782 return PathForSource(ctx, "build/make/target/product/security")
Colin Cross30e076a2015-04-13 13:58:27 -0700783}
784
Colin Crosse1731a52017-12-14 11:22:55 -0800785func (c *config) DefaultAppCertificate(ctx PathContext) (pem, key SourcePath) {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800786 defaultCert := String(c.productVariables.DefaultAppCertificate)
Colin Cross61ae0b72017-12-01 17:16:02 -0800787 if defaultCert != "" {
Colin Crosse1731a52017-12-14 11:22:55 -0800788 return PathForSource(ctx, defaultCert+".x509.pem"), PathForSource(ctx, defaultCert+".pk8")
Colin Cross61ae0b72017-12-01 17:16:02 -0800789 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500790 defaultDir := c.DefaultAppCertificateDir(ctx)
791 return defaultDir.Join(ctx, "testkey.x509.pem"), defaultDir.Join(ctx, "testkey.pk8")
Colin Cross30e076a2015-04-13 13:58:27 -0700792}
Colin Cross6ff51382015-12-17 16:39:19 -0800793
Jiyong Park9335a262018-12-24 11:31:58 +0900794func (c *config) ApexKeyDir(ctx ModuleContext) SourcePath {
795 // TODO(b/121224311): define another variable such as TARGET_APEX_KEY_OVERRIDE
796 defaultCert := String(c.productVariables.DefaultAppCertificate)
Dan Willemsen412160e2019-04-09 21:36:26 -0700797 if defaultCert == "" || filepath.Dir(defaultCert) == "build/make/target/product/security" {
Jiyong Park9335a262018-12-24 11:31:58 +0900798 // When defaultCert is unset or is set to the testkeys path, use the APEX keys
799 // that is under the module dir
Colin Cross07e51612019-03-05 12:46:40 -0800800 return pathForModuleSrc(ctx)
Jiyong Park9335a262018-12-24 11:31:58 +0900801 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500802 // If not, APEX keys are under the specified directory
803 return PathForSource(ctx, filepath.Dir(defaultCert))
Jiyong Park9335a262018-12-24 11:31:58 +0900804}
805
Jingwen Chenc711fec2020-11-22 23:52:50 -0500806// AllowMissingDependencies configures Blueprint/Soong to not fail when modules
807// are configured to depend on non-existent modules. Note that this does not
808// affect missing input dependencies at the Ninja level.
Colin Cross6ff51382015-12-17 16:39:19 -0800809func (c *config) AllowMissingDependencies() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800810 return Bool(c.productVariables.Allow_missing_dependencies)
Colin Cross6ff51382015-12-17 16:39:19 -0800811}
Dan Willemsen322acaf2016-01-12 23:07:05 -0800812
Jeongik Cha816a23a2020-07-08 01:09:23 +0900813// Returns true if a full platform source tree cannot be assumed.
Colin Crossfc3674a2017-09-18 17:41:52 -0700814func (c *config) UnbundledBuild() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800815 return Bool(c.productVariables.Unbundled_build)
Colin Crossfc3674a2017-09-18 17:41:52 -0700816}
817
Martin Stjernholmfd9eb4b2020-06-17 01:13:15 +0100818// Returns true if building apps that aren't bundled with the platform.
819// UnbundledBuild() is always true when this is true.
820func (c *config) UnbundledBuildApps() bool {
821 return Bool(c.productVariables.Unbundled_build_apps)
822}
823
Jeongik Cha816a23a2020-07-08 01:09:23 +0900824// Returns true if building modules against prebuilt SDKs.
825func (c *config) AlwaysUsePrebuiltSdks() bool {
826 return Bool(c.productVariables.Always_use_prebuilt_sdks)
Colin Cross1f367bf2018-12-18 22:46:24 -0800827}
828
Paul Duffin9a89a2a2020-10-28 19:20:06 +0000829// Returns true if the boot jars check should be skipped.
830func (c *config) SkipBootJarsCheck() bool {
831 return Bool(c.productVariables.Skip_boot_jars_check)
832}
833
Doug Horn21b94272019-01-16 12:06:11 -0800834func (c *config) Fuchsia() bool {
835 return Bool(c.productVariables.Fuchsia)
836}
837
Colin Cross126a25c2017-10-31 13:55:34 -0700838func (c *config) MinimizeJavaDebugInfo() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800839 return Bool(c.productVariables.MinimizeJavaDebugInfo) && !Bool(c.productVariables.Eng)
Colin Cross126a25c2017-10-31 13:55:34 -0700840}
841
Colin Crossed064c02018-09-05 16:28:13 -0700842func (c *config) Debuggable() bool {
843 return Bool(c.productVariables.Debuggable)
844}
845
Jaewoong Jung1d6eb682018-11-29 15:08:44 -0800846func (c *config) Eng() bool {
847 return Bool(c.productVariables.Eng)
848}
849
Jiyong Park8d52f862018-07-07 18:02:07 +0900850func (c *config) DevicePrimaryArchType() ArchType {
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700851 return c.Targets[Android][0].Arch.ArchType
Jiyong Park8d52f862018-07-07 18:02:07 +0900852}
853
Colin Cross16b23492016-01-06 14:41:07 -0800854func (c *config) SanitizeHost() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800855 return append([]string(nil), c.productVariables.SanitizeHost...)
Colin Cross16b23492016-01-06 14:41:07 -0800856}
857
858func (c *config) SanitizeDevice() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800859 return append([]string(nil), c.productVariables.SanitizeDevice...)
Colin Cross23ae82a2016-11-02 14:34:39 -0700860}
861
Ivan Lozano0c3a1ef2017-06-28 09:10:48 -0700862func (c *config) SanitizeDeviceDiag() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800863 return append([]string(nil), c.productVariables.SanitizeDeviceDiag...)
Ivan Lozano0c3a1ef2017-06-28 09:10:48 -0700864}
865
Colin Cross23ae82a2016-11-02 14:34:39 -0700866func (c *config) SanitizeDeviceArch() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800867 return append([]string(nil), c.productVariables.SanitizeDeviceArch...)
Colin Cross16b23492016-01-06 14:41:07 -0800868}
Colin Crossa1ad8d12016-06-01 17:09:44 -0700869
Vishwath Mohan1b017a72017-01-19 13:54:55 -0800870func (c *config) EnableCFI() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800871 if c.productVariables.EnableCFI == nil {
Vishwath Mohanc32c3eb2017-01-24 14:20:54 -0800872 return true
Vishwath Mohanc32c3eb2017-01-24 14:20:54 -0800873 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500874 return *c.productVariables.EnableCFI
Vishwath Mohan1b017a72017-01-19 13:54:55 -0800875}
876
Kostya Kortchinskyd5275c82019-02-01 08:42:56 -0800877func (c *config) DisableScudo() bool {
878 return Bool(c.productVariables.DisableScudo)
879}
880
Colin Crossa1ad8d12016-06-01 17:09:44 -0700881func (c *config) Android64() bool {
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700882 for _, t := range c.Targets[Android] {
Colin Crossa1ad8d12016-06-01 17:09:44 -0700883 if t.Arch.ArchType.Multilib == "lib64" {
884 return true
885 }
886 }
887
888 return false
889}
Colin Cross9272ade2016-08-17 15:24:12 -0700890
Colin Cross9d45bb72016-08-29 16:14:13 -0700891func (c *config) UseGoma() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800892 return Bool(c.productVariables.UseGoma)
Colin Cross9d45bb72016-08-29 16:14:13 -0700893}
894
Ramy Medhatbbf25672019-07-17 12:30:04 +0000895func (c *config) UseRBE() bool {
896 return Bool(c.productVariables.UseRBE)
897}
898
Ramy Medhat8ea054a2020-01-27 14:19:44 -0500899func (c *config) UseRBEJAVAC() bool {
900 return Bool(c.productVariables.UseRBEJAVAC)
901}
902
903func (c *config) UseRBER8() bool {
904 return Bool(c.productVariables.UseRBER8)
905}
906
907func (c *config) UseRBED8() bool {
908 return Bool(c.productVariables.UseRBED8)
909}
910
Colin Cross8b8bec32019-11-15 13:18:43 -0800911func (c *config) UseRemoteBuild() bool {
912 return c.UseGoma() || c.UseRBE()
913}
914
Colin Cross66548102018-06-19 22:47:35 -0700915func (c *config) RunErrorProne() bool {
916 return c.IsEnvTrue("RUN_ERROR_PRONE")
917}
918
Jingwen Chenc711fec2020-11-22 23:52:50 -0500919// XrefCorpusName returns the Kythe cross-reference corpus name.
Sasha Smundak2a4549e2018-11-05 16:49:08 -0800920func (c *config) XrefCorpusName() string {
921 return c.Getenv("XREF_CORPUS")
922}
923
Jingwen Chenc711fec2020-11-22 23:52:50 -0500924// XrefCuEncoding returns the compilation unit encoding to use for Kythe code
925// xrefs. Can be 'json' (default), 'proto' or 'all'.
Sasha Smundak6c2d4f92020-01-09 17:34:23 -0800926func (c *config) XrefCuEncoding() string {
927 if enc := c.Getenv("KYTHE_KZIP_ENCODING"); enc != "" {
928 return enc
929 }
930 return "json"
931}
932
Sasha Smundakb0addaf2021-02-16 10:39:40 -0800933// XrefCuJavaSourceMax returns the maximum number of the Java source files
934// in a single compilation unit
935const xrefJavaSourceFileMaxDefault = "1000"
936
937func (c Config) XrefCuJavaSourceMax() string {
938 v := c.Getenv("KYTHE_JAVA_SOURCE_BATCH_SIZE")
939 if v == "" {
940 return xrefJavaSourceFileMaxDefault
941 }
942 if _, err := strconv.ParseUint(v, 0, 0); err != nil {
943 fmt.Fprintf(os.Stderr,
944 "bad KYTHE_JAVA_SOURCE_BATCH_SIZE value: %s, will use %s",
945 err, xrefJavaSourceFileMaxDefault)
946 return xrefJavaSourceFileMaxDefault
947 }
948 return v
949
950}
951
Sasha Smundak2a4549e2018-11-05 16:49:08 -0800952func (c *config) EmitXrefRules() bool {
953 return c.XrefCorpusName() != ""
954}
955
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700956func (c *config) ClangTidy() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800957 return Bool(c.productVariables.ClangTidy)
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700958}
959
960func (c *config) TidyChecks() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800961 if c.productVariables.TidyChecks == nil {
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700962 return ""
963 }
Dan Willemsen45133ac2018-03-09 21:22:06 -0800964 return *c.productVariables.TidyChecks
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700965}
966
Colin Cross0f4e0d62016-07-27 10:56:55 -0700967func (c *config) LibartImgHostBaseAddress() string {
968 return "0x60000000"
969}
970
971func (c *config) LibartImgDeviceBaseAddress() string {
Elliott Hughesda3a0712020-03-06 16:55:28 -0800972 return "0x70000000"
Colin Cross0f4e0d62016-07-27 10:56:55 -0700973}
974
Hiroshi Yamauchie2a10632016-12-19 13:44:41 -0800975func (c *config) ArtUseReadBarrier() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800976 return Bool(c.productVariables.ArtUseReadBarrier)
Hiroshi Yamauchie2a10632016-12-19 13:44:41 -0800977}
978
Jingwen Chenc711fec2020-11-22 23:52:50 -0500979// Enforce Runtime Resource Overlays for a module. RROs supersede static RROs,
980// but some modules still depend on it.
981//
982// More info: https://source.android.com/devices/architecture/rros
Dan Willemsen3fb1fae2018-03-12 15:30:26 -0700983func (c *config) EnforceRROForModule(name string) bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800984 enforceList := c.productVariables.EnforceRROTargets
Jeongik Chacee5ba92021-02-19 12:11:51 +0900985
Roland Levillainf6cc2612020-07-09 16:58:14 +0100986 if len(enforceList) > 0 {
Yo Chiang4ebd06a2019-10-01 13:13:41 +0800987 if InList("*", enforceList) {
Dan Willemsen3fb1fae2018-03-12 15:30:26 -0700988 return true
989 }
Colin Crossa74ca042019-01-31 14:31:51 -0800990 return InList(name, enforceList)
Dan Willemsen3fb1fae2018-03-12 15:30:26 -0700991 }
992 return false
993}
Dan Willemsen3fb1fae2018-03-12 15:30:26 -0700994func (c *config) EnforceRROExcludedOverlay(path string) bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800995 excluded := c.productVariables.EnforceRROExcludedOverlays
Roland Levillainf6cc2612020-07-09 16:58:14 +0100996 if len(excluded) > 0 {
Jaewoong Jung3aff5782020-02-11 07:54:35 -0800997 return HasAnyPrefix(path, excluded)
Dan Willemsen3fb1fae2018-03-12 15:30:26 -0700998 }
999 return false
1000}
1001
1002func (c *config) ExportedNamespaces() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001003 return append([]string(nil), c.productVariables.NamespacesToExport...)
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001004}
1005
1006func (c *config) HostStaticBinaries() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001007 return Bool(c.productVariables.HostStaticBinaries)
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001008}
1009
Colin Cross5a0dcd52018-10-05 14:20:06 -07001010func (c *config) UncompressPrivAppDex() bool {
1011 return Bool(c.productVariables.UncompressPrivAppDex)
1012}
1013
1014func (c *config) ModulesLoadedByPrivilegedModules() []string {
1015 return c.productVariables.ModulesLoadedByPrivilegedModules
1016}
1017
Jingwen Chenc711fec2020-11-22 23:52:50 -05001018// DexpreoptGlobalConfigPath returns the path to the dexpreopt.config file in
1019// the output directory, if it was created during the product configuration
1020// phase by Kati.
Jingwen Chenebb0b572020-11-02 00:24:57 -05001021func (c *config) DexpreoptGlobalConfigPath(ctx PathContext) OptionalPath {
Colin Cross988414c2020-01-11 01:11:46 +00001022 if c.productVariables.DexpreoptGlobalConfig == nil {
Jingwen Chenebb0b572020-11-02 00:24:57 -05001023 return OptionalPathForPath(nil)
1024 }
1025 return OptionalPathForPath(
1026 pathForBuildToolDep(ctx, *c.productVariables.DexpreoptGlobalConfig))
1027}
1028
Jingwen Chenc711fec2020-11-22 23:52:50 -05001029// DexpreoptGlobalConfig returns the raw byte contents of the dexpreopt global
1030// configuration. Since the configuration file was created by Kati during
1031// product configuration (externally of soong_build), it's not tracked, so we
1032// also manually add a Ninja file dependency on the configuration file to the
1033// rule that creates the main build.ninja file. This ensures that build.ninja is
1034// regenerated correctly if dexpreopt.config changes.
Jingwen Chenebb0b572020-11-02 00:24:57 -05001035func (c *config) DexpreoptGlobalConfig(ctx PathContext) ([]byte, error) {
1036 path := c.DexpreoptGlobalConfigPath(ctx)
1037 if !path.Valid() {
Colin Cross988414c2020-01-11 01:11:46 +00001038 return nil, nil
1039 }
Jingwen Chenebb0b572020-11-02 00:24:57 -05001040 ctx.AddNinjaFileDeps(path.String())
1041 return ioutil.ReadFile(absolutePath(path.String()))
Colin Cross43f08db2018-11-12 10:13:39 -08001042}
1043
Inseob Kim7b85eeb2021-03-23 20:52:24 +09001044func (c *deviceConfig) WithDexpreopt() bool {
1045 return c.config.productVariables.WithDexpreopt
1046}
1047
David Brazdil91b4e3e2019-01-23 21:04:05 +00001048func (c *config) FrameworksBaseDirExists(ctx PathContext) bool {
Colin Cross5a756a62021-03-16 16:34:46 -07001049 return ExistentPathForSource(ctx, "frameworks", "base", "Android.bp").Valid()
David Brazdil91b4e3e2019-01-23 21:04:05 +00001050}
1051
Inseob Kimae553032019-05-14 18:52:49 +09001052func (c *config) VndkSnapshotBuildArtifacts() bool {
1053 return Bool(c.productVariables.VndkSnapshotBuildArtifacts)
1054}
1055
Colin Cross3b19f5d2019-09-17 14:45:31 -07001056func (c *config) HasMultilibConflict(arch ArchType) bool {
1057 return c.multilibConflicts[arch]
1058}
1059
Bill Peckhambae47492021-01-08 09:34:44 -08001060func (c *config) PrebuiltHiddenApiDir(ctx PathContext) string {
1061 return String(c.productVariables.PrebuiltHiddenApiDir)
1062}
1063
Colin Cross9272ade2016-08-17 15:24:12 -07001064func (c *deviceConfig) Arches() []Arch {
1065 var arches []Arch
Dan Willemsen0ef639b2018-10-10 17:02:29 -07001066 for _, target := range c.config.Targets[Android] {
Colin Cross9272ade2016-08-17 15:24:12 -07001067 arches = append(arches, target.Arch)
1068 }
1069 return arches
1070}
Dan Willemsend2ede872016-11-18 14:54:24 -08001071
Jayant Chowdhary34ce67d2018-03-08 11:00:50 -08001072func (c *deviceConfig) BinderBitness() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001073 is32BitBinder := c.config.productVariables.Binder32bit
Jayant Chowdhary34ce67d2018-03-08 11:00:50 -08001074 if is32BitBinder != nil && *is32BitBinder {
1075 return "32"
1076 }
1077 return "64"
1078}
1079
Dan Willemsen4353bc42016-12-05 17:16:02 -08001080func (c *deviceConfig) VendorPath() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001081 if c.config.productVariables.VendorPath != nil {
1082 return *c.config.productVariables.VendorPath
Dan Willemsen4353bc42016-12-05 17:16:02 -08001083 }
1084 return "vendor"
1085}
1086
Justin Yun71549282017-11-17 12:10:28 +09001087func (c *deviceConfig) VndkVersion() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001088 return String(c.config.productVariables.DeviceVndkVersion)
Justin Yun71549282017-11-17 12:10:28 +09001089}
1090
Jose Galmes6f843bc2020-12-11 13:36:29 -08001091func (c *deviceConfig) RecoverySnapshotVersion() string {
1092 return String(c.config.productVariables.RecoverySnapshotVersion)
1093}
1094
Jeongik Cha219141c2020-08-06 23:00:37 +09001095func (c *deviceConfig) CurrentApiLevelForVendorModules() string {
1096 return StringDefault(c.config.productVariables.DeviceCurrentApiLevelForVendorModules, "current")
1097}
1098
Justin Yun8fe12122017-12-07 17:18:15 +09001099func (c *deviceConfig) PlatformVndkVersion() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001100 return String(c.config.productVariables.Platform_vndk_version)
Justin Yun8fe12122017-12-07 17:18:15 +09001101}
1102
Justin Yun5f7f7e82019-11-18 19:52:14 +09001103func (c *deviceConfig) ProductVndkVersion() string {
1104 return String(c.config.productVariables.ProductVndkVersion)
1105}
1106
Justin Yun71549282017-11-17 12:10:28 +09001107func (c *deviceConfig) ExtraVndkVersions() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001108 return c.config.productVariables.ExtraVndkVersions
Dan Willemsend2ede872016-11-18 14:54:24 -08001109}
Jack He8cc71432016-12-08 15:45:07 -08001110
Vic Yangefd249e2018-11-12 20:19:56 -08001111func (c *deviceConfig) VndkUseCoreVariant() bool {
1112 return Bool(c.config.productVariables.VndkUseCoreVariant)
1113}
1114
Jiyong Park1a5d7b12018-01-15 15:05:10 +09001115func (c *deviceConfig) SystemSdkVersions() []string {
Colin Crossa74ca042019-01-31 14:31:51 -08001116 return c.config.productVariables.DeviceSystemSdkVersions
Jiyong Park1a5d7b12018-01-15 15:05:10 +09001117}
1118
1119func (c *deviceConfig) PlatformSystemSdkVersions() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001120 return c.config.productVariables.Platform_systemsdk_versions
Jiyong Park1a5d7b12018-01-15 15:05:10 +09001121}
1122
Jiyong Park2db76922017-11-08 16:03:48 +09001123func (c *deviceConfig) OdmPath() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001124 if c.config.productVariables.OdmPath != nil {
1125 return *c.config.productVariables.OdmPath
Jiyong Park2db76922017-11-08 16:03:48 +09001126 }
1127 return "odm"
1128}
1129
Jaekyun Seok5cfbfbb2018-01-10 19:00:15 +09001130func (c *deviceConfig) ProductPath() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001131 if c.config.productVariables.ProductPath != nil {
1132 return *c.config.productVariables.ProductPath
Jiyong Park2db76922017-11-08 16:03:48 +09001133 }
Jaekyun Seok5cfbfbb2018-01-10 19:00:15 +09001134 return "product"
Jiyong Park2db76922017-11-08 16:03:48 +09001135}
1136
Justin Yund5f6c822019-06-25 16:47:17 +09001137func (c *deviceConfig) SystemExtPath() string {
1138 if c.config.productVariables.SystemExtPath != nil {
1139 return *c.config.productVariables.SystemExtPath
Dario Frenifd05a742018-05-29 13:28:54 +01001140 }
Justin Yund5f6c822019-06-25 16:47:17 +09001141 return "system_ext"
Dario Frenifd05a742018-05-29 13:28:54 +01001142}
1143
Jack He8cc71432016-12-08 15:45:07 -08001144func (c *deviceConfig) BtConfigIncludeDir() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001145 return String(c.config.productVariables.BtConfigIncludeDir)
Jack He8cc71432016-12-08 15:45:07 -08001146}
Dan Willemsen581341d2017-02-09 16:16:31 -08001147
Jiyong Parkd773eb32017-07-03 13:18:12 +09001148func (c *deviceConfig) DeviceKernelHeaderDirs() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001149 return c.config.productVariables.DeviceKernelHeaders
Jiyong Parkd773eb32017-07-03 13:18:12 +09001150}
1151
Yi Kongceb5b762020-03-20 15:22:27 +08001152func (c *deviceConfig) SamplingPGO() bool {
1153 return Bool(c.config.productVariables.SamplingPGO)
1154}
1155
Roland Levillainada12702020-06-09 13:07:36 +01001156// JavaCoverageEnabledForPath returns whether Java code coverage is enabled for
1157// path. Coverage is enabled by default when the product variable
1158// JavaCoveragePaths is empty. If JavaCoveragePaths is not empty, coverage is
1159// enabled for any path which is part of this variable (and not part of the
1160// JavaCoverageExcludePaths product variable). Value "*" in JavaCoveragePaths
1161// represents any path.
1162func (c *deviceConfig) JavaCoverageEnabledForPath(path string) bool {
1163 coverage := false
Chris Gross2f748692020-06-24 20:36:59 +00001164 if len(c.config.productVariables.JavaCoveragePaths) == 0 ||
Roland Levillainada12702020-06-09 13:07:36 +01001165 InList("*", c.config.productVariables.JavaCoveragePaths) ||
1166 HasAnyPrefix(path, c.config.productVariables.JavaCoveragePaths) {
1167 coverage = true
1168 }
Roland Levillainf6cc2612020-07-09 16:58:14 +01001169 if coverage && len(c.config.productVariables.JavaCoverageExcludePaths) > 0 {
Roland Levillainada12702020-06-09 13:07:36 +01001170 if HasAnyPrefix(path, c.config.productVariables.JavaCoverageExcludePaths) {
1171 coverage = false
1172 }
1173 }
1174 return coverage
1175}
1176
Colin Cross1a6acd42020-06-16 17:51:46 -07001177// Returns true if gcov or clang coverage is enabled.
Dan Willemsen581341d2017-02-09 16:16:31 -08001178func (c *deviceConfig) NativeCoverageEnabled() bool {
Colin Cross1a6acd42020-06-16 17:51:46 -07001179 return Bool(c.config.productVariables.GcovCoverage) ||
1180 Bool(c.config.productVariables.ClangCoverage)
Dan Willemsen581341d2017-02-09 16:16:31 -08001181}
1182
Oliver Nguyen1382ab62019-12-06 15:22:41 -08001183func (c *deviceConfig) ClangCoverageEnabled() bool {
1184 return Bool(c.config.productVariables.ClangCoverage)
1185}
1186
Colin Cross1a6acd42020-06-16 17:51:46 -07001187func (c *deviceConfig) GcovCoverageEnabled() bool {
1188 return Bool(c.config.productVariables.GcovCoverage)
1189}
1190
Roland Levillain4f5297b2020-06-09 12:44:06 +01001191// NativeCoverageEnabledForPath returns whether (GCOV- or Clang-based) native
1192// code coverage is enabled for path. By default, coverage is not enabled for a
1193// given path unless it is part of the NativeCoveragePaths product variable (and
1194// not part of the NativeCoverageExcludePaths product variable). Value "*" in
1195// NativeCoveragePaths represents any path.
1196func (c *deviceConfig) NativeCoverageEnabledForPath(path string) bool {
Ryan Campbell469a18a2017-02-27 09:01:54 -08001197 coverage := false
Roland Levillainf6cc2612020-07-09 16:58:14 +01001198 if len(c.config.productVariables.NativeCoveragePaths) > 0 {
Roland Levillain4f5297b2020-06-09 12:44:06 +01001199 if InList("*", c.config.productVariables.NativeCoveragePaths) || HasAnyPrefix(path, c.config.productVariables.NativeCoveragePaths) {
Ivan Lozano5f595532017-07-13 14:46:05 -07001200 coverage = true
Dan Willemsen581341d2017-02-09 16:16:31 -08001201 }
1202 }
Roland Levillainf6cc2612020-07-09 16:58:14 +01001203 if coverage && len(c.config.productVariables.NativeCoverageExcludePaths) > 0 {
Roland Levillain4f5297b2020-06-09 12:44:06 +01001204 if HasAnyPrefix(path, c.config.productVariables.NativeCoverageExcludePaths) {
Ivan Lozano5f595532017-07-13 14:46:05 -07001205 coverage = false
Ryan Campbell469a18a2017-02-27 09:01:54 -08001206 }
1207 }
1208 return coverage
Dan Willemsen581341d2017-02-09 16:16:31 -08001209}
Ivan Lozano5f595532017-07-13 14:46:05 -07001210
Pirama Arumuga Nainar49540802018-01-29 23:11:42 -08001211func (c *deviceConfig) PgoAdditionalProfileDirs() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001212 return c.config.productVariables.PgoAdditionalProfileDirs
Pirama Arumuga Nainar49540802018-01-29 23:11:42 -08001213}
1214
Tri Vo35a51432018-03-25 20:00:00 -07001215func (c *deviceConfig) VendorSepolicyDirs() []string {
1216 return c.config.productVariables.BoardVendorSepolicyDirs
1217}
1218
1219func (c *deviceConfig) OdmSepolicyDirs() []string {
1220 return c.config.productVariables.BoardOdmSepolicyDirs
1221}
1222
Felixa20a8752020-05-17 18:28:35 +02001223func (c *deviceConfig) SystemExtPublicSepolicyDirs() []string {
1224 return c.config.productVariables.SystemExtPublicSepolicyDirs
Tri Vo35a51432018-03-25 20:00:00 -07001225}
1226
Felixa20a8752020-05-17 18:28:35 +02001227func (c *deviceConfig) SystemExtPrivateSepolicyDirs() []string {
1228 return c.config.productVariables.SystemExtPrivateSepolicyDirs
Tri Vo35a51432018-03-25 20:00:00 -07001229}
1230
Inseob Kim0866b002019-04-15 20:21:29 +09001231func (c *deviceConfig) SepolicyM4Defs() []string {
1232 return c.config.productVariables.BoardSepolicyM4Defs
1233}
1234
Jiyong Park7f67f482019-01-05 12:57:48 +09001235func (c *deviceConfig) OverrideManifestPackageNameFor(name string) (manifestName string, overridden bool) {
Jaewoong Jung2ad817c2019-01-18 14:27:16 -08001236 return findOverrideValue(c.config.productVariables.ManifestPackageNameOverrides, name,
1237 "invalid override rule %q in PRODUCT_MANIFEST_PACKAGE_NAME_OVERRIDES should be <module_name>:<manifest_name>")
1238}
1239
1240func (c *deviceConfig) OverrideCertificateFor(name string) (certificatePath string, overridden bool) {
Jaewoong Jungacb6db32019-02-28 16:22:30 +00001241 return findOverrideValue(c.config.productVariables.CertificateOverrides, name,
Jaewoong Jung2ad817c2019-01-18 14:27:16 -08001242 "invalid override rule %q in PRODUCT_CERTIFICATE_OVERRIDES should be <module_name>:<certificate_module_name>")
1243}
1244
Jaewoong Jung9d22a912019-01-23 16:27:47 -08001245func (c *deviceConfig) OverridePackageNameFor(name string) string {
1246 newName, overridden := findOverrideValue(
1247 c.config.productVariables.PackageNameOverrides,
1248 name,
1249 "invalid override rule %q in PRODUCT_PACKAGE_NAME_OVERRIDES should be <module_name>:<package_name>")
1250 if overridden {
1251 return newName
1252 }
1253 return name
1254}
1255
Jaewoong Jung2ad817c2019-01-18 14:27:16 -08001256func findOverrideValue(overrides []string, name string, errorMsg string) (newValue string, overridden bool) {
Jiyong Park7f67f482019-01-05 12:57:48 +09001257 if overrides == nil || len(overrides) == 0 {
1258 return "", false
1259 }
1260 for _, o := range overrides {
1261 split := strings.Split(o, ":")
1262 if len(split) != 2 {
1263 // This shouldn't happen as this is first checked in make, but just in case.
Jaewoong Jung2ad817c2019-01-18 14:27:16 -08001264 panic(fmt.Errorf(errorMsg, o))
Jiyong Park7f67f482019-01-05 12:57:48 +09001265 }
1266 if matchPattern(split[0], name) {
1267 return substPattern(split[0], split[1], name), true
1268 }
1269 }
1270 return "", false
1271}
1272
Ivan Lozano5f595532017-07-13 14:46:05 -07001273func (c *config) IntegerOverflowDisabledForPath(path string) bool {
Roland Levillainf6cc2612020-07-09 16:58:14 +01001274 if len(c.productVariables.IntegerOverflowExcludePaths) == 0 {
Ivan Lozano5f595532017-07-13 14:46:05 -07001275 return false
1276 }
Jaewoong Jung3aff5782020-02-11 07:54:35 -08001277 return HasAnyPrefix(path, c.productVariables.IntegerOverflowExcludePaths)
Ivan Lozano5f595532017-07-13 14:46:05 -07001278}
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001279
1280func (c *config) CFIDisabledForPath(path string) bool {
Roland Levillainf6cc2612020-07-09 16:58:14 +01001281 if len(c.productVariables.CFIExcludePaths) == 0 {
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001282 return false
1283 }
Jaewoong Jung3aff5782020-02-11 07:54:35 -08001284 return HasAnyPrefix(path, c.productVariables.CFIExcludePaths)
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001285}
1286
1287func (c *config) CFIEnabledForPath(path string) bool {
Roland Levillainf6cc2612020-07-09 16:58:14 +01001288 if len(c.productVariables.CFIIncludePaths) == 0 {
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001289 return false
1290 }
Evgenii Stepanov779b64e2021-04-09 14:33:10 -07001291 return HasAnyPrefix(path, c.productVariables.CFIIncludePaths) && !c.CFIDisabledForPath(path)
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001292}
Colin Crosse15ddaf2017-12-04 11:24:31 -08001293
Evgenii Stepanov4beaa0c2021-01-05 16:41:26 -08001294func (c *config) MemtagHeapDisabledForPath(path string) bool {
1295 if len(c.productVariables.MemtagHeapExcludePaths) == 0 {
1296 return false
1297 }
1298 return HasAnyPrefix(path, c.productVariables.MemtagHeapExcludePaths)
1299}
1300
1301func (c *config) MemtagHeapAsyncEnabledForPath(path string) bool {
1302 if len(c.productVariables.MemtagHeapAsyncIncludePaths) == 0 {
1303 return false
1304 }
Evgenii Stepanov779b64e2021-04-09 14:33:10 -07001305 return HasAnyPrefix(path, c.productVariables.MemtagHeapAsyncIncludePaths) && !c.MemtagHeapDisabledForPath(path)
Evgenii Stepanov4beaa0c2021-01-05 16:41:26 -08001306}
1307
1308func (c *config) MemtagHeapSyncEnabledForPath(path string) bool {
1309 if len(c.productVariables.MemtagHeapSyncIncludePaths) == 0 {
1310 return false
1311 }
Evgenii Stepanov779b64e2021-04-09 14:33:10 -07001312 return HasAnyPrefix(path, c.productVariables.MemtagHeapSyncIncludePaths) && !c.MemtagHeapDisabledForPath(path)
Evgenii Stepanov4beaa0c2021-01-05 16:41:26 -08001313}
1314
Dan Willemsen0fe78662018-03-26 12:41:18 -07001315func (c *config) VendorConfig(name string) VendorConfig {
Colin Cross9d34f352019-11-22 16:03:51 -08001316 return soongconfig.Config(c.productVariables.VendorVars[name])
Dan Willemsen0fe78662018-03-26 12:41:18 -07001317}
1318
Colin Cross395f2cf2018-10-24 16:10:32 -07001319func (c *config) NdkAbis() bool {
1320 return Bool(c.productVariables.Ndk_abis)
1321}
1322
Martin Stjernholmc1ecc432019-11-15 15:00:31 +00001323func (c *config) AmlAbis() bool {
1324 return Bool(c.productVariables.Aml_abis)
1325}
1326
Jiyong Park8fd61922018-11-08 02:50:25 +09001327func (c *config) FlattenApex() bool {
Roland Levillaina3863212019-08-12 19:56:16 +01001328 return Bool(c.productVariables.Flatten_apex)
Jiyong Park8fd61922018-11-08 02:50:25 +09001329}
1330
Jiyong Park4da07972021-01-05 21:01:11 +09001331func (c *config) ForceApexSymlinkOptimization() bool {
1332 return Bool(c.productVariables.ForceApexSymlinkOptimization)
1333}
1334
Mohammad Samiul Islam3cd005d2020-11-26 13:32:26 +00001335func (c *config) CompressedApex() bool {
1336 return Bool(c.productVariables.CompressedApex)
1337}
1338
Jeongik Chac9464142019-01-07 12:07:27 +09001339func (c *config) EnforceSystemCertificate() bool {
1340 return Bool(c.productVariables.EnforceSystemCertificate)
1341}
1342
Colin Cross440e0d02020-06-11 11:32:11 -07001343func (c *config) EnforceSystemCertificateAllowList() []string {
1344 return c.productVariables.EnforceSystemCertificateAllowList
Jeongik Chac9464142019-01-07 12:07:27 +09001345}
1346
Jeongik Cha2cc570d2019-10-29 15:44:45 +09001347func (c *config) EnforceProductPartitionInterface() bool {
1348 return Bool(c.productVariables.EnforceProductPartitionInterface)
1349}
1350
JaeMan Parkff715562020-10-19 17:25:58 +09001351func (c *config) EnforceInterPartitionJavaSdkLibrary() bool {
1352 return Bool(c.productVariables.EnforceInterPartitionJavaSdkLibrary)
1353}
1354
1355func (c *config) InterPartitionJavaLibraryAllowList() []string {
1356 return c.productVariables.InterPartitionJavaLibraryAllowList
1357}
1358
Jooyung Han3ab2c3e2019-12-05 16:27:44 +09001359func (c *config) InstallExtraFlattenedApexes() bool {
1360 return Bool(c.productVariables.InstallExtraFlattenedApexes)
1361}
1362
Colin Crossf24a22a2019-01-31 14:12:44 -08001363func (c *config) ProductHiddenAPIStubs() []string {
1364 return c.productVariables.ProductHiddenAPIStubs
Colin Cross8faf8fc2019-01-16 15:15:52 -08001365}
1366
Colin Crossf24a22a2019-01-31 14:12:44 -08001367func (c *config) ProductHiddenAPIStubsSystem() []string {
1368 return c.productVariables.ProductHiddenAPIStubsSystem
Colin Cross8faf8fc2019-01-16 15:15:52 -08001369}
1370
Colin Crossf24a22a2019-01-31 14:12:44 -08001371func (c *config) ProductHiddenAPIStubsTest() []string {
1372 return c.productVariables.ProductHiddenAPIStubsTest
Colin Cross8faf8fc2019-01-16 15:15:52 -08001373}
Dan Willemsen71c74602019-04-10 12:27:35 -07001374
Dan Willemsen54879d12019-04-18 10:08:46 -07001375func (c *deviceConfig) TargetFSConfigGen() []string {
Dan Willemsen71c74602019-04-10 12:27:35 -07001376 return c.config.productVariables.TargetFSConfigGen
1377}
Inseob Kim0866b002019-04-15 20:21:29 +09001378
1379func (c *config) ProductPublicSepolicyDirs() []string {
1380 return c.productVariables.ProductPublicSepolicyDirs
1381}
1382
1383func (c *config) ProductPrivateSepolicyDirs() []string {
1384 return c.productVariables.ProductPrivateSepolicyDirs
1385}
1386
Colin Cross50ddcc42019-05-16 12:28:22 -07001387func (c *config) MissingUsesLibraries() []string {
1388 return c.productVariables.MissingUsesLibraries
1389}
1390
Inseob Kim1f086e22019-05-09 13:29:15 +09001391func (c *deviceConfig) DeviceArch() string {
1392 return String(c.config.productVariables.DeviceArch)
1393}
1394
1395func (c *deviceConfig) DeviceArchVariant() string {
1396 return String(c.config.productVariables.DeviceArchVariant)
1397}
1398
1399func (c *deviceConfig) DeviceSecondaryArch() string {
1400 return String(c.config.productVariables.DeviceSecondaryArch)
1401}
1402
1403func (c *deviceConfig) DeviceSecondaryArchVariant() string {
1404 return String(c.config.productVariables.DeviceSecondaryArchVariant)
1405}
Yifan Hong82db7352020-01-21 16:12:26 -08001406
1407func (c *deviceConfig) BoardUsesRecoveryAsBoot() bool {
1408 return Bool(c.config.productVariables.BoardUsesRecoveryAsBoot)
1409}
Yifan Hong97365ee2020-07-29 09:51:57 -07001410
1411func (c *deviceConfig) BoardKernelBinaries() []string {
1412 return c.config.productVariables.BoardKernelBinaries
1413}
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001414
Yifan Hong42bef8d2020-08-05 14:36:09 -07001415func (c *deviceConfig) BoardKernelModuleInterfaceVersions() []string {
1416 return c.config.productVariables.BoardKernelModuleInterfaceVersions
1417}
1418
Yifan Hongdd8dacc2020-10-21 15:40:17 -07001419func (c *deviceConfig) BoardMoveRecoveryResourcesToVendorBoot() bool {
1420 return Bool(c.config.productVariables.BoardMoveRecoveryResourcesToVendorBoot)
1421}
1422
Inseob Kim16ebd5a2020-12-09 23:08:17 +09001423func (c *deviceConfig) PlatformSepolicyVersion() string {
1424 return String(c.config.productVariables.PlatformSepolicyVersion)
1425}
1426
1427func (c *deviceConfig) BoardSepolicyVers() string {
Inseob Kim0c4eec82021-03-22 22:33:40 +09001428 if ver := String(c.config.productVariables.BoardSepolicyVers); ver != "" {
1429 return ver
1430 }
1431 return c.PlatformSepolicyVersion()
Inseob Kim16ebd5a2020-12-09 23:08:17 +09001432}
1433
1434func (c *deviceConfig) BoardReqdMaskPolicy() []string {
1435 return c.config.productVariables.BoardReqdMaskPolicy
1436}
1437
Inseob Kim7cf14652021-01-06 23:06:52 +09001438func (c *deviceConfig) DirectedVendorSnapshot() bool {
1439 return c.config.productVariables.DirectedVendorSnapshot
1440}
1441
1442func (c *deviceConfig) VendorSnapshotModules() map[string]bool {
1443 return c.config.productVariables.VendorSnapshotModules
1444}
1445
Jose Galmes4c6895e2021-02-09 07:44:30 -08001446func (c *deviceConfig) DirectedRecoverySnapshot() bool {
1447 return c.config.productVariables.DirectedRecoverySnapshot
1448}
1449
1450func (c *deviceConfig) RecoverySnapshotModules() map[string]bool {
1451 return c.config.productVariables.RecoverySnapshotModules
1452}
1453
Justin DeMartino383bfb32021-02-24 10:49:43 -08001454func createDirsMap(previous map[string]bool, dirs []string) (map[string]bool, error) {
1455 var ret = make(map[string]bool)
1456 for _, dir := range dirs {
1457 clean := filepath.Clean(dir)
1458 if previous[clean] || ret[clean] {
1459 return nil, fmt.Errorf("Duplicate entry %s", dir)
1460 }
1461 ret[clean] = true
1462 }
1463 return ret, nil
1464}
1465
1466func (c *deviceConfig) createDirsMapOnce(onceKey OnceKey, previous map[string]bool, dirs []string) map[string]bool {
1467 dirMap := c.Once(onceKey, func() interface{} {
1468 ret, err := createDirsMap(previous, dirs)
1469 if err != nil {
1470 panic(fmt.Errorf("%s: %w", onceKey.key, err))
1471 }
1472 return ret
1473 })
1474 if dirMap == nil {
1475 return nil
1476 }
1477 return dirMap.(map[string]bool)
1478}
1479
1480var vendorSnapshotDirsExcludedKey = NewOnceKey("VendorSnapshotDirsExcludedMap")
1481
1482func (c *deviceConfig) VendorSnapshotDirsExcludedMap() map[string]bool {
1483 return c.createDirsMapOnce(vendorSnapshotDirsExcludedKey, nil,
1484 c.config.productVariables.VendorSnapshotDirsExcluded)
1485}
1486
1487var vendorSnapshotDirsIncludedKey = NewOnceKey("VendorSnapshotDirsIncludedMap")
1488
1489func (c *deviceConfig) VendorSnapshotDirsIncludedMap() map[string]bool {
1490 excludedMap := c.VendorSnapshotDirsExcludedMap()
1491 return c.createDirsMapOnce(vendorSnapshotDirsIncludedKey, excludedMap,
1492 c.config.productVariables.VendorSnapshotDirsIncluded)
1493}
1494
1495var recoverySnapshotDirsExcludedKey = NewOnceKey("RecoverySnapshotDirsExcludedMap")
1496
1497func (c *deviceConfig) RecoverySnapshotDirsExcludedMap() map[string]bool {
1498 return c.createDirsMapOnce(recoverySnapshotDirsExcludedKey, nil,
1499 c.config.productVariables.RecoverySnapshotDirsExcluded)
1500}
1501
1502var recoverySnapshotDirsIncludedKey = NewOnceKey("RecoverySnapshotDirsIncludedMap")
1503
1504func (c *deviceConfig) RecoverySnapshotDirsIncludedMap() map[string]bool {
1505 excludedMap := c.RecoverySnapshotDirsExcludedMap()
1506 return c.createDirsMapOnce(recoverySnapshotDirsIncludedKey, excludedMap,
1507 c.config.productVariables.RecoverySnapshotDirsIncluded)
1508}
1509
Inseob Kim60c32f02020-12-21 22:53:05 +09001510func (c *deviceConfig) ShippingApiLevel() ApiLevel {
1511 if c.config.productVariables.ShippingApiLevel == nil {
1512 return NoneApiLevel
1513 }
1514 apiLevel, _ := strconv.Atoi(*c.config.productVariables.ShippingApiLevel)
1515 return uncheckedFinalApiLevel(apiLevel)
1516}
1517
Inseob Kim67e5add192021-03-17 18:05:33 +09001518func (c *deviceConfig) BuildBrokenEnforceSyspropOwner() bool {
1519 return c.config.productVariables.BuildBrokenEnforceSyspropOwner
1520}
1521
1522func (c *deviceConfig) BuildBrokenTrebleSyspropNeverallow() bool {
1523 return c.config.productVariables.BuildBrokenTrebleSyspropNeverallow
1524}
1525
Hridya Valsaraju5a5c7d52021-04-02 16:45:24 -07001526func (c *deviceConfig) BuildDebugfsRestrictionsEnabled() bool {
1527 return c.config.productVariables.BuildDebugfsRestrictionsEnabled
1528}
1529
Inseob Kim0cac7b42021-02-03 18:16:46 +09001530func (c *deviceConfig) BuildBrokenVendorPropertyNamespace() bool {
1531 return c.config.productVariables.BuildBrokenVendorPropertyNamespace
1532}
1533
Inseob Kim67e5add192021-03-17 18:05:33 +09001534func (c *deviceConfig) RequiresInsecureExecmemForSwiftshader() bool {
1535 return c.config.productVariables.RequiresInsecureExecmemForSwiftshader
1536}
1537
1538func (c *config) SelinuxIgnoreNeverallows() bool {
1539 return c.productVariables.SelinuxIgnoreNeverallows
1540}
1541
1542func (c *deviceConfig) SepolicySplit() bool {
1543 return c.config.productVariables.SepolicySplit
1544}
1545
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001546// The ConfiguredJarList struct provides methods for handling a list of (apex, jar) pairs.
1547// Such lists are used in the build system for things like bootclasspath jars or system server jars.
1548// The apex part is either an apex name, or a special names "platform" or "system_ext". Jar is a
1549// module name. The pairs come from Make product variables as a list of colon-separated strings.
1550//
1551// Examples:
1552// - "com.android.art:core-oj"
1553// - "platform:framework"
1554// - "system_ext:foo"
1555//
1556type ConfiguredJarList struct {
Jingwen Chenc711fec2020-11-22 23:52:50 -05001557 // A list of apex components, which can be an apex name,
1558 // or special names like "platform" or "system_ext".
1559 apexes []string
1560
1561 // A list of jar module name components.
1562 jars []string
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001563}
1564
Jingwen Chenc711fec2020-11-22 23:52:50 -05001565// Len returns the length of the list of jars.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001566func (l *ConfiguredJarList) Len() int {
1567 return len(l.jars)
1568}
1569
Jingwen Chenc711fec2020-11-22 23:52:50 -05001570// Jar returns the idx-th jar component of (apex, jar) pairs.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001571func (l *ConfiguredJarList) Jar(idx int) string {
1572 return l.jars[idx]
1573}
1574
Jingwen Chenc711fec2020-11-22 23:52:50 -05001575// Apex returns the idx-th apex component of (apex, jar) pairs.
Paul Duffin9a89a2a2020-10-28 19:20:06 +00001576func (l *ConfiguredJarList) Apex(idx int) string {
1577 return l.apexes[idx]
1578}
1579
Jingwen Chenc711fec2020-11-22 23:52:50 -05001580// ContainsJar returns true if the (apex, jar) pairs contains a pair with the
1581// given jar module name.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001582func (l *ConfiguredJarList) ContainsJar(jar string) bool {
1583 return InList(jar, l.jars)
1584}
1585
1586// If the list contains the given (apex, jar) pair.
1587func (l *ConfiguredJarList) containsApexJarPair(apex, jar string) bool {
1588 for i := 0; i < l.Len(); i++ {
Paul Duffin1e8c6072020-10-23 18:28:55 +01001589 if apex == l.apexes[i] && jar == l.jars[i] {
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001590 return true
1591 }
1592 }
1593 return false
1594}
1595
satayev3db35472021-05-06 23:59:58 +01001596// ApexOfJar returns the apex component of the first pair with the given jar name on the list, or
1597// an empty string if not found.
1598func (l *ConfiguredJarList) ApexOfJar(jar string) string {
1599 if idx := IndexList(jar, l.jars); idx != -1 {
1600 return l.Apex(IndexList(jar, l.jars))
1601 }
1602 return ""
1603}
1604
Jingwen Chenc711fec2020-11-22 23:52:50 -05001605// IndexOfJar returns the first pair with the given jar name on the list, or -1
1606// if not found.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001607func (l *ConfiguredJarList) IndexOfJar(jar string) int {
1608 return IndexList(jar, l.jars)
1609}
1610
Paul Duffin7d584e92020-10-23 18:26:03 +01001611func copyAndAppend(list []string, item string) []string {
1612 // Create the result list to be 1 longer than the input.
1613 result := make([]string, len(list)+1)
1614
1615 // Copy the whole input list into the result.
1616 count := copy(result, list)
1617
1618 // Insert the extra item at the end.
1619 result[count] = item
1620
1621 return result
1622}
1623
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001624// Append an (apex, jar) pair to the list.
Paul Duffin7d584e92020-10-23 18:26:03 +01001625func (l *ConfiguredJarList) Append(apex string, jar string) ConfiguredJarList {
1626 // Create a copy of the backing arrays before appending to avoid sharing backing
1627 // arrays that are mutated across instances.
1628 apexes := copyAndAppend(l.apexes, apex)
1629 jars := copyAndAppend(l.jars, jar)
1630
1631 return ConfiguredJarList{apexes, jars}
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001632}
1633
Jingwen Chenc711fec2020-11-22 23:52:50 -05001634// RemoveList filters out a list of (apex, jar) pairs from the receiving list of pairs.
Paul Duffin7d584e92020-10-23 18:26:03 +01001635func (l *ConfiguredJarList) RemoveList(list ConfiguredJarList) ConfiguredJarList {
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001636 apexes := make([]string, 0, l.Len())
1637 jars := make([]string, 0, l.Len())
1638
1639 for i, jar := range l.jars {
Paul Duffin1e8c6072020-10-23 18:28:55 +01001640 apex := l.apexes[i]
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001641 if !list.containsApexJarPair(apex, jar) {
1642 apexes = append(apexes, apex)
1643 jars = append(jars, jar)
1644 }
1645 }
1646
Paul Duffin7d584e92020-10-23 18:26:03 +01001647 return ConfiguredJarList{apexes, jars}
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001648}
1649
satayev8fab6f82021-05-07 00:10:33 +01001650// Filter keeps the entries if a jar appears in the given list of jars to keep; returns a new list.
1651func (l *ConfiguredJarList) Filter(jarsToKeep []string) ConfiguredJarList {
1652 var apexes []string
1653 var jars []string
1654
1655 for i, jar := range l.jars {
1656 if InList(jar, jarsToKeep) {
1657 apexes = append(apexes, l.apexes[i])
1658 jars = append(jars, jar)
1659 }
1660 }
1661
1662 return ConfiguredJarList{apexes, jars}
1663}
1664
Jingwen Chenc711fec2020-11-22 23:52:50 -05001665// CopyOfJars returns a copy of the list of strings containing jar module name
1666// components.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001667func (l *ConfiguredJarList) CopyOfJars() []string {
1668 return CopyOf(l.jars)
1669}
1670
Jingwen Chenc711fec2020-11-22 23:52:50 -05001671// CopyOfApexJarPairs returns a copy of the list of strings with colon-separated
1672// (apex, jar) pairs.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001673func (l *ConfiguredJarList) CopyOfApexJarPairs() []string {
1674 pairs := make([]string, 0, l.Len())
1675
1676 for i, jar := range l.jars {
Paul Duffin1e8c6072020-10-23 18:28:55 +01001677 apex := l.apexes[i]
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001678 pairs = append(pairs, apex+":"+jar)
1679 }
1680
1681 return pairs
1682}
1683
Jingwen Chenc711fec2020-11-22 23:52:50 -05001684// BuildPaths returns a list of build paths based on the given directory prefix.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001685func (l *ConfiguredJarList) BuildPaths(ctx PathContext, dir OutputPath) WritablePaths {
1686 paths := make(WritablePaths, l.Len())
1687 for i, jar := range l.jars {
1688 paths[i] = dir.Join(ctx, ModuleStem(jar)+".jar")
1689 }
1690 return paths
1691}
1692
Jingwen Chenc711fec2020-11-22 23:52:50 -05001693// UnmarshalJSON converts JSON configuration from raw bytes into a
1694// ConfiguredJarList structure.
Paul Duffin69d1fb12020-10-23 21:14:20 +01001695func (l *ConfiguredJarList) UnmarshalJSON(b []byte) error {
1696 // Try and unmarshal into a []string each item of which contains a pair
1697 // <apex>:<jar>.
1698 var list []string
1699 err := json.Unmarshal(b, &list)
1700 if err != nil {
1701 // Did not work so return
1702 return err
1703 }
1704
1705 apexes, jars, err := splitListOfPairsIntoPairOfLists(list)
1706 if err != nil {
1707 return err
1708 }
1709 l.apexes = apexes
1710 l.jars = jars
1711 return nil
1712}
1713
Lukacs T. Berki720b3962021-03-17 13:34:30 +01001714func (l *ConfiguredJarList) MarshalJSON() ([]byte, error) {
1715 if len(l.apexes) != len(l.jars) {
1716 return nil, errors.New(fmt.Sprintf("Inconsistent ConfiguredJarList: apexes: %q, jars: %q", l.apexes, l.jars))
1717 }
1718
1719 list := make([]string, 0, len(l.apexes))
1720
1721 for i := 0; i < len(l.apexes); i++ {
1722 list = append(list, l.apexes[i]+":"+l.jars[i])
1723 }
1724
1725 return json.Marshal(list)
1726}
1727
Jingwen Chenc711fec2020-11-22 23:52:50 -05001728// ModuleStem hardcodes the stem of framework-minus-apex to return "framework".
1729//
1730// TODO(b/139391334): hard coded until we find a good way to query the stem of a
1731// module before any other mutators are run.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001732func ModuleStem(module string) string {
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001733 if module == "framework-minus-apex" {
1734 return "framework"
1735 }
1736 return module
1737}
1738
Jingwen Chenc711fec2020-11-22 23:52:50 -05001739// DevicePaths computes the on-device paths for the list of (apex, jar) pairs,
1740// based on the operating system.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001741func (l *ConfiguredJarList) DevicePaths(cfg Config, ostype OsType) []string {
1742 paths := make([]string, l.Len())
1743 for i, jar := range l.jars {
1744 apex := l.apexes[i]
1745 name := ModuleStem(jar) + ".jar"
1746
1747 var subdir string
1748 if apex == "platform" {
1749 subdir = "system/framework"
1750 } else if apex == "system_ext" {
1751 subdir = "system_ext/framework"
1752 } else {
1753 subdir = filepath.Join("apex", apex, "javalib")
1754 }
1755
1756 if ostype.Class == Host {
1757 paths[i] = filepath.Join(cfg.Getenv("OUT_DIR"), "host", cfg.PrebuiltOS(), subdir, name)
1758 } else {
1759 paths[i] = filepath.Join("/", subdir, name)
1760 }
1761 }
1762 return paths
1763}
1764
Paul Duffin7d584e92020-10-23 18:26:03 +01001765func (l *ConfiguredJarList) String() string {
1766 var pairs []string
1767 for i := 0; i < l.Len(); i++ {
1768 pairs = append(pairs, l.apexes[i]+":"+l.jars[i])
1769 }
1770 return strings.Join(pairs, ",")
1771}
1772
Paul Duffin01416602020-10-23 21:04:03 +01001773func splitListOfPairsIntoPairOfLists(list []string) ([]string, []string, error) {
1774 // Now we need to populate this list by splitting each item in the slice of
1775 // pairs and appending them to the appropriate list of apexes or jars.
1776 apexes := make([]string, len(list))
1777 jars := make([]string, len(list))
1778
1779 for i, apexjar := range list {
1780 apex, jar, err := splitConfiguredJarPair(apexjar)
1781 if err != nil {
1782 return nil, nil, err
1783 }
1784 apexes[i] = apex
1785 jars[i] = jar
1786 }
1787
1788 return apexes, jars, nil
1789}
1790
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001791// Expected format for apexJarValue = <apex name>:<jar name>
Paul Duffin01416602020-10-23 21:04:03 +01001792func splitConfiguredJarPair(str string) (string, string, error) {
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001793 pair := strings.SplitN(str, ":", 2)
1794 if len(pair) == 2 {
Paul Duffin9c3ac962021-02-03 14:11:27 +00001795 apex := pair[0]
1796 jar := pair[1]
1797 if apex == "" {
1798 return apex, jar, fmt.Errorf("invalid apex '%s' in <apex>:<jar> pair '%s', expected format: <apex>:<jar>", apex, str)
1799 }
1800 return apex, jar, nil
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001801 } else {
Paul Duffin01416602020-10-23 21:04:03 +01001802 return "error-apex", "error-jar", fmt.Errorf("malformed (apex, jar) pair: '%s', expected format: <apex>:<jar>", str)
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001803 }
1804}
1805
Paul Duffin9c3ac962021-02-03 14:11:27 +00001806// CreateTestConfiguredJarList is a function to create ConfiguredJarList for tests.
Paul Duffine10dfa42020-10-23 21:23:44 +01001807func CreateTestConfiguredJarList(list []string) ConfiguredJarList {
Paul Duffin9c3ac962021-02-03 14:11:27 +00001808 // Create the ConfiguredJarList in as similar way as it is created at runtime by marshalling to
1809 // a json list of strings and then unmarshalling into a ConfiguredJarList instance.
1810 b, err := json.Marshal(list)
Paul Duffin01416602020-10-23 21:04:03 +01001811 if err != nil {
Paul Duffine10dfa42020-10-23 21:23:44 +01001812 panic(err)
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001813 }
1814
Paul Duffin9c3ac962021-02-03 14:11:27 +00001815 var jarList ConfiguredJarList
1816 err = json.Unmarshal(b, &jarList)
1817 if err != nil {
1818 panic(err)
1819 }
1820
1821 return jarList
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001822}
1823
Jingwen Chenc711fec2020-11-22 23:52:50 -05001824// EmptyConfiguredJarList returns an empty jar list.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001825func EmptyConfiguredJarList() ConfiguredJarList {
1826 return ConfiguredJarList{}
1827}
1828
1829var earlyBootJarsKey = NewOnceKey("earlyBootJars")
1830
1831func (c *config) BootJars() []string {
1832 return c.Once(earlyBootJarsKey, func() interface{} {
Paul Duffin69d1fb12020-10-23 21:14:20 +01001833 list := c.productVariables.BootJars.CopyOfJars()
Jingwen Chenc711fec2020-11-22 23:52:50 -05001834 return append(list, c.productVariables.UpdatableBootJars.CopyOfJars()...)
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001835 }).([]string)
1836}
Paul Duffin9a89a2a2020-10-28 19:20:06 +00001837
1838func (c *config) NonUpdatableBootJars() ConfiguredJarList {
1839 return c.productVariables.BootJars
1840}
1841
1842func (c *config) UpdatableBootJars() ConfiguredJarList {
1843 return c.productVariables.UpdatableBootJars
1844}
Colin Cross77cdcfd2021-03-12 11:28:25 -08001845
1846func (c *config) RBEWrapper() string {
1847 return c.GetenvWithDefault("RBE_WRAPPER", remoteexec.DefaultWrapperPath)
1848}