blob: ae4df1cb056eefff1d401f7fb20ba3319cb4f24a [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"
22 "fmt"
Colin Crossd8f20142016-11-03 09:43:26 -070023 "io/ioutil"
Colin Cross3f40fa42015-01-30 17:27:36 -080024 "os"
Colin Cross35cec122015-04-02 14:37:16 -070025 "path/filepath"
Colin Cross3f40fa42015-01-30 17:27:36 -080026 "runtime"
Inseob Kim60c32f02020-12-21 22:53:05 +090027 "strconv"
Dan Willemsen34cc69e2015-09-23 15:26:20 -070028 "strings"
Colin Crossc1e86a32015-04-15 12:33:28 -070029 "sync"
Colin Cross6ff51382015-12-17 16:39:19 -080030
Colin Cross98be1bb2019-12-13 20:41:13 -080031 "github.com/google/blueprint"
Colin Crosse87040b2017-12-11 15:52:26 -080032 "github.com/google/blueprint/bootstrap"
Colin Cross98be1bb2019-12-13 20:41:13 -080033 "github.com/google/blueprint/pathtools"
Colin Cross6ff51382015-12-17 16:39:19 -080034 "github.com/google/blueprint/proptools"
Colin Cross9d34f352019-11-22 16:03:51 -080035
36 "android/soong/android/soongconfig"
Colin Cross3f40fa42015-01-30 17:27:36 -080037)
38
Jingwen Chenc711fec2020-11-22 23:52:50 -050039// Bool re-exports proptools.Bool for the android package.
Colin Cross6ff51382015-12-17 16:39:19 -080040var Bool = proptools.Bool
Jingwen Chenc711fec2020-11-22 23:52:50 -050041
42// String re-exports proptools.String for the android package.
Jack He8cc71432016-12-08 15:45:07 -080043var String = proptools.String
Jingwen Chenc711fec2020-11-22 23:52:50 -050044
45// StringDefault re-exports proptools.StringDefault for the android package.
Jeongik Cha219141c2020-08-06 23:00:37 +090046var StringDefault = proptools.StringDefault
Jiyong Park6a927c42020-01-21 02:03:43 +090047
Jingwen Chenc711fec2020-11-22 23:52:50 -050048// FutureApiLevelInt is a placeholder constant for unreleased API levels.
Dan Albert0b176c82020-07-23 16:43:25 -070049const FutureApiLevelInt = 10000
50
Jingwen Chenc711fec2020-11-22 23:52:50 -050051// FutureApiLevel represents unreleased API levels.
Dan Albert0b176c82020-07-23 16:43:25 -070052var FutureApiLevel = ApiLevel{
53 value: "current",
54 number: FutureApiLevelInt,
55 isPreview: true,
56}
Colin Cross6ff51382015-12-17 16:39:19 -080057
Jingwen Chenc4d91bc2020-11-24 22:59:26 -050058// The product variables file name, containing product config from Kati.
Dan Willemsen87b17d12015-07-14 00:39:06 -070059const productVariablesFileName = "soong.variables"
Colin Cross3f40fa42015-01-30 17:27:36 -080060
Colin Cross9272ade2016-08-17 15:24:12 -070061// A Config object represents the entire build configuration for Android.
Colin Crossc3c0a492015-04-10 15:43:55 -070062type Config struct {
63 *config
64}
65
Jingwen Chenc711fec2020-11-22 23:52:50 -050066// BuildDir returns the build output directory for the configuration.
Jeff Gastonefc1b412017-03-29 17:29:06 -070067func (c Config) BuildDir() string {
68 return c.buildDir
69}
70
Jingwen Chenc711fec2020-11-22 23:52:50 -050071// A DeviceConfig object represents the configuration for a particular device
72// being built. For now there will only be one of these, but in the future there
73// may be multiple devices being built.
Colin Cross9272ade2016-08-17 15:24:12 -070074type DeviceConfig struct {
75 *deviceConfig
76}
77
Jingwen Chenc711fec2020-11-22 23:52:50 -050078// VendorConfig represents the configuration for vendor-specific behavior.
Colin Cross9d34f352019-11-22 16:03:51 -080079type VendorConfig soongconfig.SoongConfig
Dan Willemsen0fe78662018-03-26 12:41:18 -070080
Jingwen Chenc711fec2020-11-22 23:52:50 -050081// Definition of general build configuration for soong_build. Some of these
Jingwen Chenc4d91bc2020-11-24 22:59:26 -050082// product configuration values are read from Kati-generated soong.variables.
Colin Cross1332b002015-04-07 17:11:30 -070083type config struct {
Jingwen Chenc711fec2020-11-22 23:52:50 -050084 // Options configurable with soong.variables
Dan Willemsen45133ac2018-03-09 21:22:06 -080085 productVariables productVariables
Colin Cross3f40fa42015-01-30 17:27:36 -080086
Dan Willemsen674dc7f2018-03-12 18:06:05 -070087 // Only available on configs created by TestConfig
88 TestProductVariables *productVariables
89
Jingwen Chenc711fec2020-11-22 23:52:50 -050090 // A specialized context object for Bazel/Soong mixed builds and migration
91 // purposes.
Chris Parsonsf3c96ef2020-09-29 02:23:17 -040092 BazelContext BazelContext
93
Dan Willemsen87b17d12015-07-14 00:39:06 -070094 ProductVariablesFileName string
95
Jaewoong Jung642916f2020-10-09 17:25:15 -070096 Targets map[OsType][]Target
97 BuildOSTarget Target // the Target for tools run on the build machine
98 BuildOSCommonTarget Target // the Target for common (java) tools run on the build machine
99 AndroidCommonTarget Target // the Target for common modules for the Android device
100 AndroidFirstDeviceTarget Target // the first Target for modules for the Android device
Dan Willemsen218f6562015-07-08 18:13:11 -0700101
Jingwen Chenc711fec2020-11-22 23:52:50 -0500102 // multilibConflicts for an ArchType is true if there is earlier configured
103 // device architecture with the same multilib value.
Colin Cross3b19f5d2019-09-17 14:45:31 -0700104 multilibConflicts map[ArchType]bool
105
Colin Cross9272ade2016-08-17 15:24:12 -0700106 deviceConfig *deviceConfig
107
Chris Parsons8f232a22020-06-23 17:37:05 -0400108 srcDir string // the path of the root source directory
109 buildDir string // the path of the build output directory
110 moduleListFile string // the path to the file which lists blueprint files to parse.
Colin Crossc1e86a32015-04-15 12:33:28 -0700111
Colin Cross6ccbc912017-10-10 23:07:38 -0700112 env map[string]string
Dan Willemsene7680ba2015-09-11 17:06:19 -0700113 envLock sync.Mutex
114 envDeps map[string]string
115 envFrozen bool
Dan Willemsen5ba07e82015-12-11 13:51:06 -0800116
Jingwen Chencda22c92020-11-23 00:22:30 -0500117 // Changes behavior based on whether Kati runs after soong_build, or if soong_build
118 // runs standalone.
119 katiEnabled bool
Colin Cross1e7d3702016-08-24 15:25:47 -0700120
Colin Cross32616ed2017-09-05 21:56:44 -0700121 captureBuild bool // true for tests, saves build parameters for each module
122 ignoreEnvironment bool // true for tests, returns empty from all Getenv calls
Colin Crosscec81712017-07-13 14:43:27 -0700123
Colin Crosse87040b2017-12-11 15:52:26 -0800124 stopBefore bootstrap.StopBefore
125
Colin Cross98be1bb2019-12-13 20:41:13 -0800126 fs pathtools.FileSystem
127 mockBpList string
128
Colin Cross5e6a7972020-06-07 16:56:32 -0700129 // If testAllowNonExistentPaths is true then PathForSource and PathForModuleSrc won't error
130 // in tests when a path doesn't exist.
Pedro Loureiro5d190cc2021-02-15 15:41:33 +0000131 TestAllowNonExistentPaths bool
Colin Cross5e6a7972020-06-07 16:56:32 -0700132
Jingwen Chenc711fec2020-11-22 23:52:50 -0500133 // The list of files that when changed, must invalidate soong_build to
134 // regenerate build.ninja.
Colin Cross12129292020-10-29 18:23:58 -0700135 ninjaFileDepsSet sync.Map
136
Colin Cross9272ade2016-08-17 15:24:12 -0700137 OncePer
138}
139
140type deviceConfig struct {
Dan Willemsen00269f22017-07-06 16:59:48 -0700141 config *config
Colin Cross9272ade2016-08-17 15:24:12 -0700142 OncePer
Colin Cross3f40fa42015-01-30 17:27:36 -0800143}
144
Colin Cross485e5722015-08-27 13:28:01 -0700145type jsonConfigurable interface {
Colin Cross27385972015-09-18 10:57:10 -0700146 SetDefaultConfig()
Colin Cross485e5722015-08-27 13:28:01 -0700147}
Colin Cross3f40fa42015-01-30 17:27:36 -0800148
Colin Cross485e5722015-08-27 13:28:01 -0700149func loadConfig(config *config) error {
Colin Cross988414c2020-01-11 01:11:46 +0000150 return loadFromConfigFile(&config.productVariables, absolutePath(config.ProductVariablesFileName))
Colin Cross485e5722015-08-27 13:28:01 -0700151}
152
Jingwen Chenc711fec2020-11-22 23:52:50 -0500153// loadFromConfigFile loads and decodes configuration options from a JSON file
154// in the current working directory.
Colin Cross485e5722015-08-27 13:28:01 -0700155func loadFromConfigFile(configurable jsonConfigurable, filename string) error {
Colin Cross3f40fa42015-01-30 17:27:36 -0800156 // Try to open the file
Colin Cross485e5722015-08-27 13:28:01 -0700157 configFileReader, err := os.Open(filename)
Colin Cross3f40fa42015-01-30 17:27:36 -0800158 defer configFileReader.Close()
159 if os.IsNotExist(err) {
160 // Need to create a file, so that blueprint & ninja don't get in
161 // a dependency tracking loop.
162 // Make a file-configurable-options with defaults, write it out using
163 // a json writer.
Colin Cross27385972015-09-18 10:57:10 -0700164 configurable.SetDefaultConfig()
165 err = saveToConfigFile(configurable, filename)
Colin Cross3f40fa42015-01-30 17:27:36 -0800166 if err != nil {
167 return err
168 }
Colin Cross15cd21a2018-02-27 11:26:02 -0800169 } else if err != nil {
170 return fmt.Errorf("config file: could not open %s: %s", filename, err.Error())
Colin Cross3f40fa42015-01-30 17:27:36 -0800171 } else {
172 // Make a decoder for it
173 jsonDecoder := json.NewDecoder(configFileReader)
Colin Cross485e5722015-08-27 13:28:01 -0700174 err = jsonDecoder.Decode(configurable)
Colin Cross3f40fa42015-01-30 17:27:36 -0800175 if err != nil {
Colin Cross15cd21a2018-02-27 11:26:02 -0800176 return fmt.Errorf("config file: %s did not parse correctly: %s", filename, err.Error())
Colin Cross3f40fa42015-01-30 17:27:36 -0800177 }
178 }
179
Colin Cross3f40fa42015-01-30 17:27:36 -0800180 // No error
181 return nil
182}
183
Colin Crossd8f20142016-11-03 09:43:26 -0700184// atomically writes the config file in case two copies of soong_build are running simultaneously
185// (for example, docs generation and ninja manifest generation)
Colin Cross485e5722015-08-27 13:28:01 -0700186func saveToConfigFile(config jsonConfigurable, filename string) error {
Colin Cross3f40fa42015-01-30 17:27:36 -0800187 data, err := json.MarshalIndent(&config, "", " ")
188 if err != nil {
189 return fmt.Errorf("cannot marshal config data: %s", err.Error())
190 }
191
Colin Crossd8f20142016-11-03 09:43:26 -0700192 f, err := ioutil.TempFile(filepath.Dir(filename), "config")
Colin Cross3f40fa42015-01-30 17:27:36 -0800193 if err != nil {
Jingwen Chenc711fec2020-11-22 23:52:50 -0500194 return fmt.Errorf("cannot create empty config file %s: %s", filename, err.Error())
Colin Cross3f40fa42015-01-30 17:27:36 -0800195 }
Colin Crossd8f20142016-11-03 09:43:26 -0700196 defer os.Remove(f.Name())
197 defer f.Close()
Colin Cross3f40fa42015-01-30 17:27:36 -0800198
Colin Crossd8f20142016-11-03 09:43:26 -0700199 _, err = f.Write(data)
Colin Cross3f40fa42015-01-30 17:27:36 -0800200 if err != nil {
Colin Cross485e5722015-08-27 13:28:01 -0700201 return fmt.Errorf("default config file: %s could not be written: %s", filename, err.Error())
202 }
203
Colin Crossd8f20142016-11-03 09:43:26 -0700204 _, err = f.WriteString("\n")
Colin Cross485e5722015-08-27 13:28:01 -0700205 if err != nil {
206 return fmt.Errorf("default config file: %s could not be written: %s", filename, err.Error())
Colin Cross3f40fa42015-01-30 17:27:36 -0800207 }
208
Colin Crossd8f20142016-11-03 09:43:26 -0700209 f.Close()
210 os.Rename(f.Name(), filename)
211
Colin Cross3f40fa42015-01-30 17:27:36 -0800212 return nil
213}
214
Colin Cross988414c2020-01-11 01:11:46 +0000215// NullConfig returns a mostly empty Config for use by standalone tools like dexpreopt_gen that
216// use the android package.
217func NullConfig(buildDir string) Config {
218 return Config{
219 config: &config{
220 buildDir: buildDir,
221 fs: pathtools.OsFs,
222 },
223 }
224}
225
Jingwen Chenc711fec2020-11-22 23:52:50 -0500226// TestConfig returns a Config object for testing.
Colin Cross98be1bb2019-12-13 20:41:13 -0800227func TestConfig(buildDir string, env map[string]string, bp string, fs map[string][]byte) Config {
Colin Cross9c6241f2019-04-22 15:51:26 -0700228 envCopy := make(map[string]string)
229 for k, v := range env {
230 envCopy[k] = v
231 }
232
Jingwen Chen2838c812020-11-23 01:06:40 -0500233 // Copy the real PATH value to the test environment, it's needed by
234 // NonHermeticHostSystemTool() used in x86_darwin_host.go
Lukacs T. Berkideba7212021-03-04 10:50:10 +0100235 envCopy["PATH"] = os.Getenv("PATH")
Colin Cross9c6241f2019-04-22 15:51:26 -0700236
Dan Willemsen00269f22017-07-06 16:59:48 -0700237 config := &config{
Dan Willemsen45133ac2018-03-09 21:22:06 -0800238 productVariables: productVariables{
Dan Albert4f378d72020-07-23 17:32:15 -0700239 DeviceName: stringPtr("test_device"),
240 Platform_sdk_version: intPtr(30),
241 Platform_sdk_codename: stringPtr("S"),
242 Platform_version_active_codenames: []string{"S"},
243 DeviceSystemSdkVersions: []string{"14", "15"},
244 Platform_systemsdk_versions: []string{"29", "30"},
245 AAPTConfig: []string{"normal", "large", "xlarge", "hdpi", "xhdpi", "xxhdpi"},
246 AAPTPreferredConfig: stringPtr("xhdpi"),
247 AAPTCharacteristics: stringPtr("nosdcard"),
248 AAPTPrebuiltDPI: []string{"xhdpi", "xxhdpi"},
249 UncompressPrivAppDex: boolPtr(true),
Inseob Kim60c32f02020-12-21 22:53:05 +0900250 ShippingApiLevel: stringPtr("30"),
Dan Willemsen00269f22017-07-06 16:59:48 -0700251 },
252
Colin Cross6ccbc912017-10-10 23:07:38 -0700253 buildDir: buildDir,
254 captureBuild: true,
Colin Cross9c6241f2019-04-22 15:51:26 -0700255 env: envCopy,
Colin Cross5e6a7972020-06-07 16:56:32 -0700256
257 // Set testAllowNonExistentPaths so that test contexts don't need to specify every path
258 // passed to PathForSource or PathForModuleSrc.
Pedro Loureiro5d190cc2021-02-15 15:41:33 +0000259 TestAllowNonExistentPaths: true,
Chris Parsonsf3c96ef2020-09-29 02:23:17 -0400260
261 BazelContext: noopBazelContext{},
Dan Willemsen00269f22017-07-06 16:59:48 -0700262 }
263 config.deviceConfig = &deviceConfig{
264 config: config,
265 }
Dan Willemsen45133ac2018-03-09 21:22:06 -0800266 config.TestProductVariables = &config.productVariables
Dan Willemsen00269f22017-07-06 16:59:48 -0700267
Colin Cross98be1bb2019-12-13 20:41:13 -0800268 config.mockFileSystem(bp, fs)
269
Dan Willemsen00269f22017-07-06 16:59:48 -0700270 return Config{config}
Colin Crossce75d2c2016-10-06 16:12:58 -0700271}
272
Jingwen Chenc711fec2020-11-22 23:52:50 -0500273// TestArchConfigNativeBridge returns a Config object suitable for using
274// for tests that need to run the arch mutator for native bridge supported
275// archs.
Colin Cross98be1bb2019-12-13 20:41:13 -0800276func TestArchConfigNativeBridge(buildDir string, env map[string]string, bp string, fs map[string][]byte) Config {
277 testConfig := TestArchConfig(buildDir, env, bp, fs)
dimitry1f33e402019-03-26 12:39:31 +0100278 config := testConfig.config
279
Colin Cross0d99f7c2019-05-14 16:01:24 -0700280 config.Targets[Android] = []Target{
Jiyong Park1613e552020-09-14 19:43:17 +0900281 {Android, Arch{ArchType: X86_64, ArchVariant: "silvermont", Abi: []string{"arm64-v8a"}}, NativeBridgeDisabled, "", "", false},
282 {Android, Arch{ArchType: X86, ArchVariant: "silvermont", Abi: []string{"armeabi-v7a"}}, NativeBridgeDisabled, "", "", false},
283 {Android, Arch{ArchType: Arm64, ArchVariant: "armv8-a", Abi: []string{"arm64-v8a"}}, NativeBridgeEnabled, "x86_64", "arm64", false},
284 {Android, Arch{ArchType: Arm, ArchVariant: "armv7-a-neon", Abi: []string{"armeabi-v7a"}}, NativeBridgeEnabled, "x86", "arm", false},
dimitry1f33e402019-03-26 12:39:31 +0100285 }
286
287 return testConfig
288}
289
Jingwen Chenc711fec2020-11-22 23:52:50 -0500290// TestArchConfigFuchsia returns a Config object suitable for using for
291// tests that need to run the arch mutator for the Fuchsia arch.
Colin Cross98be1bb2019-12-13 20:41:13 -0800292func TestArchConfigFuchsia(buildDir string, env map[string]string, bp string, fs map[string][]byte) Config {
293 testConfig := TestConfig(buildDir, env, bp, fs)
Doug Hornc32c6b02019-01-17 14:44:05 -0800294 config := testConfig.config
295
296 config.Targets = map[OsType][]Target{
297 Fuchsia: []Target{
Jiyong Park1613e552020-09-14 19:43:17 +0900298 {Fuchsia, Arch{ArchType: Arm64, ArchVariant: "", Abi: []string{"arm64-v8a"}}, NativeBridgeDisabled, "", "", false},
Doug Hornc32c6b02019-01-17 14:44:05 -0800299 },
300 BuildOs: []Target{
Jiyong Park1613e552020-09-14 19:43:17 +0900301 {BuildOs, Arch{ArchType: X86_64}, NativeBridgeDisabled, "", "", false},
Doug Hornc32c6b02019-01-17 14:44:05 -0800302 },
303 }
304
305 return testConfig
306}
307
Paul Duffin35816122021-02-24 01:49:52 +0000308func modifyTestConfigToSupportArchMutator(testConfig Config) {
Colin Crossae4c6182017-09-15 17:33:55 -0700309 config := testConfig.config
310
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700311 config.Targets = map[OsType][]Target{
312 Android: []Target{
Jiyong Park1613e552020-09-14 19:43:17 +0900313 {Android, Arch{ArchType: Arm64, ArchVariant: "armv8-a", Abi: []string{"arm64-v8a"}}, NativeBridgeDisabled, "", "", false},
314 {Android, Arch{ArchType: Arm, ArchVariant: "armv7-a-neon", Abi: []string{"armeabi-v7a"}}, NativeBridgeDisabled, "", "", false},
Colin Crossae4c6182017-09-15 17:33:55 -0700315 },
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700316 BuildOs: []Target{
Jiyong Park1613e552020-09-14 19:43:17 +0900317 {BuildOs, Arch{ArchType: X86_64}, NativeBridgeDisabled, "", "", false},
318 {BuildOs, Arch{ArchType: X86}, NativeBridgeDisabled, "", "", false},
Colin Crossae4c6182017-09-15 17:33:55 -0700319 },
320 }
321
Colin Cross0d99f7c2019-05-14 16:01:24 -0700322 if runtime.GOOS == "darwin" {
323 config.Targets[BuildOs] = config.Targets[BuildOs][:1]
324 }
325
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700326 config.BuildOSTarget = config.Targets[BuildOs][0]
327 config.BuildOSCommonTarget = getCommonTargets(config.Targets[BuildOs])[0]
328 config.AndroidCommonTarget = getCommonTargets(config.Targets[Android])[0]
Jaewoong Jung642916f2020-10-09 17:25:15 -0700329 config.AndroidFirstDeviceTarget = firstTarget(config.Targets[Android], "lib64", "lib32")[0]
Inseob Kim1f086e22019-05-09 13:29:15 +0900330 config.TestProductVariables.DeviceArch = proptools.StringPtr("arm64")
331 config.TestProductVariables.DeviceArchVariant = proptools.StringPtr("armv8-a")
332 config.TestProductVariables.DeviceSecondaryArch = proptools.StringPtr("arm")
333 config.TestProductVariables.DeviceSecondaryArchVariant = proptools.StringPtr("armv7-a-neon")
Paul Duffin35816122021-02-24 01:49:52 +0000334}
Colin Cross2a076922018-10-04 23:28:25 -0700335
Paul Duffin35816122021-02-24 01:49:52 +0000336// TestArchConfig returns a Config object suitable for using for tests that
337// need to run the arch mutator.
338func TestArchConfig(buildDir string, env map[string]string, bp string, fs map[string][]byte) Config {
339 testConfig := TestConfig(buildDir, env, bp, fs)
340 modifyTestConfigToSupportArchMutator(testConfig)
Colin Crossae4c6182017-09-15 17:33:55 -0700341 return testConfig
342}
343
Jingwen Chenc711fec2020-11-22 23:52:50 -0500344// ConfigForAdditionalRun is a config object which is "reset" for another
345// bootstrap run. Only per-run data is reset. Data which needs to persist across
346// multiple runs in the same program execution is carried over (such as Bazel
347// context or environment deps).
Chris Parsonsf3c96ef2020-09-29 02:23:17 -0400348func ConfigForAdditionalRun(c Config) (Config, error) {
349 newConfig, err := NewConfig(c.srcDir, c.buildDir, c.moduleListFile)
350 if err != nil {
351 return Config{}, err
352 }
353 newConfig.BazelContext = c.BazelContext
354 newConfig.envDeps = c.envDeps
355 return newConfig, nil
356}
357
Jingwen Chenc711fec2020-11-22 23:52:50 -0500358// NewConfig creates a new Config object. The srcDir argument specifies the path
359// to the root source directory. It also loads the config file, if found.
Chris Parsons8f232a22020-06-23 17:37:05 -0400360func NewConfig(srcDir, buildDir string, moduleListFile string) (Config, error) {
Jingwen Chenc711fec2020-11-22 23:52:50 -0500361 // Make a config with default options.
Colin Cross9272ade2016-08-17 15:24:12 -0700362 config := &config{
Colin Cross9272ade2016-08-17 15:24:12 -0700363 ProductVariablesFileName: filepath.Join(buildDir, productVariablesFileName),
Dan Willemsen87b17d12015-07-14 00:39:06 -0700364
Colin Cross6ccbc912017-10-10 23:07:38 -0700365 env: originalEnv,
366
Colin Cross3b19f5d2019-09-17 14:45:31 -0700367 srcDir: srcDir,
368 buildDir: buildDir,
369 multilibConflicts: make(map[ArchType]bool),
Colin Cross98be1bb2019-12-13 20:41:13 -0800370
Chris Parsons8f232a22020-06-23 17:37:05 -0400371 moduleListFile: moduleListFile,
372 fs: pathtools.NewOsFs(absSrcDir),
Colin Cross68f55102015-03-25 14:43:57 -0700373 }
Colin Cross3f40fa42015-01-30 17:27:36 -0800374
Dan Willemsen00269f22017-07-06 16:59:48 -0700375 config.deviceConfig = &deviceConfig{
Colin Cross9272ade2016-08-17 15:24:12 -0700376 config: config,
377 }
378
Liz Kammer7941b302020-07-28 13:27:34 -0700379 // Soundness check of the build and source directories. This won't catch strange
380 // configurations with symlinks, but at least checks the obvious case.
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700381 absBuildDir, err := filepath.Abs(buildDir)
382 if err != nil {
383 return Config{}, err
384 }
385
386 absSrcDir, err := filepath.Abs(srcDir)
387 if err != nil {
388 return Config{}, err
389 }
390
391 if strings.HasPrefix(absSrcDir, absBuildDir) {
392 return Config{}, fmt.Errorf("Build dir must not contain source directory")
393 }
394
Colin Cross3f40fa42015-01-30 17:27:36 -0800395 // Load any configurable options from the configuration file
Colin Cross9272ade2016-08-17 15:24:12 -0700396 err = loadConfig(config)
Colin Cross3f40fa42015-01-30 17:27:36 -0800397 if err != nil {
Colin Crossc3c0a492015-04-10 15:43:55 -0700398 return Config{}, err
Colin Cross3f40fa42015-01-30 17:27:36 -0800399 }
400
Jingwen Chencda22c92020-11-23 00:22:30 -0500401 KatiEnabledMarkerFile := filepath.Join(buildDir, ".soong.kati_enabled")
402 if _, err := os.Stat(absolutePath(KatiEnabledMarkerFile)); err == nil {
403 config.katiEnabled = true
Dan Willemsen5ba07e82015-12-11 13:51:06 -0800404 }
405
Jingwen Chenc711fec2020-11-22 23:52:50 -0500406 // Sets up the map of target OSes to the finer grained compilation targets
407 // that are configured from the product variables.
Colin Crossa1ad8d12016-06-01 17:09:44 -0700408 targets, err := decodeTargetProductVariables(config)
Dan Willemsen218f6562015-07-08 18:13:11 -0700409 if err != nil {
410 return Config{}, err
411 }
412
Paul Duffin1356d8c2020-02-25 19:26:33 +0000413 // Make the CommonOS OsType available for all products.
414 targets[CommonOS] = []Target{commonTargetMap[CommonOS.Name]}
415
Dan Albert4098deb2016-10-19 14:04:41 -0700416 var archConfig []archConfig
Jingwen Chenc4d91bc2020-11-24 22:59:26 -0500417 if config.NdkAbis() {
Dan Albert4098deb2016-10-19 14:04:41 -0700418 archConfig = getNdkAbisConfig()
Martin Stjernholmc1ecc432019-11-15 15:00:31 +0000419 } else if config.AmlAbis() {
420 archConfig = getAmlAbisConfig()
Dan Albert4098deb2016-10-19 14:04:41 -0700421 }
422
423 if archConfig != nil {
Dan Willemsen01a3c252019-01-11 19:02:16 -0800424 androidTargets, err := decodeArchSettings(Android, archConfig)
Dan Willemsen322acaf2016-01-12 23:07:05 -0800425 if err != nil {
426 return Config{}, err
427 }
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700428 targets[Android] = androidTargets
Dan Willemsen322acaf2016-01-12 23:07:05 -0800429 }
430
Colin Cross3b19f5d2019-09-17 14:45:31 -0700431 multilib := make(map[string]bool)
432 for _, target := range targets[Android] {
433 if seen := multilib[target.Arch.ArchType.Multilib]; seen {
434 config.multilibConflicts[target.Arch.ArchType] = true
435 }
436 multilib[target.Arch.ArchType.Multilib] = true
437 }
438
Jingwen Chenc711fec2020-11-22 23:52:50 -0500439 // Map of OS to compilation targets.
Colin Crossa1ad8d12016-06-01 17:09:44 -0700440 config.Targets = targets
Jingwen Chenc711fec2020-11-22 23:52:50 -0500441
442 // Compilation targets for host tools.
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700443 config.BuildOSTarget = config.Targets[BuildOs][0]
444 config.BuildOSCommonTarget = getCommonTargets(config.Targets[BuildOs])[0]
Jingwen Chenc711fec2020-11-22 23:52:50 -0500445
446 // Compilation targets for Android.
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700447 if len(config.Targets[Android]) > 0 {
448 config.AndroidCommonTarget = getCommonTargets(config.Targets[Android])[0]
Jaewoong Jung642916f2020-10-09 17:25:15 -0700449 config.AndroidFirstDeviceTarget = firstTarget(config.Targets[Android], "lib64", "lib32")[0]
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700450 }
Dan Willemsen218f6562015-07-08 18:13:11 -0700451
Colin Cross1a6acd42020-06-16 17:51:46 -0700452 if Bool(config.productVariables.GcovCoverage) && Bool(config.productVariables.ClangCoverage) {
453 return Config{}, fmt.Errorf("GcovCoverage and ClangCoverage cannot both be set")
454 }
455
456 config.productVariables.Native_coverage = proptools.BoolPtr(
457 Bool(config.productVariables.GcovCoverage) ||
458 Bool(config.productVariables.ClangCoverage))
459
Chris Parsonsf3c96ef2020-09-29 02:23:17 -0400460 config.BazelContext, err = NewBazelContext(config)
Colin Cross3f40fa42015-01-30 17:27:36 -0800461
Jingwen Chenc711fec2020-11-22 23:52:50 -0500462 return Config{config}, err
463}
Colin Cross988414c2020-01-11 01:11:46 +0000464
Colin Cross98be1bb2019-12-13 20:41:13 -0800465// mockFileSystem replaces all reads with accesses to the provided map of
466// filenames to contents stored as a byte slice.
467func (c *config) mockFileSystem(bp string, fs map[string][]byte) {
468 mockFS := map[string][]byte{}
469
470 if _, exists := mockFS["Android.bp"]; !exists {
471 mockFS["Android.bp"] = []byte(bp)
472 }
473
474 for k, v := range fs {
475 mockFS[k] = v
476 }
477
478 // no module list file specified; find every file named Blueprints or Android.bp
479 pathsToParse := []string{}
480 for candidate := range mockFS {
481 base := filepath.Base(candidate)
482 if base == "Blueprints" || base == "Android.bp" {
483 pathsToParse = append(pathsToParse, candidate)
484 }
485 }
486 if len(pathsToParse) < 1 {
487 panic(fmt.Sprintf("No Blueprint or Android.bp files found in mock filesystem: %v\n", mockFS))
488 }
489 mockFS[blueprint.MockModuleListFile] = []byte(strings.Join(pathsToParse, "\n"))
490
491 c.fs = pathtools.MockFs(mockFS)
492 c.mockBpList = blueprint.MockModuleListFile
493}
494
Colin Crosse87040b2017-12-11 15:52:26 -0800495func (c *config) StopBefore() bootstrap.StopBefore {
496 return c.stopBefore
Dan Willemsen218f6562015-07-08 18:13:11 -0700497}
498
Jingwen Chenc711fec2020-11-22 23:52:50 -0500499// SetStopBefore configures soong_build to exit earlier at a specific point.
Colin Crosse87040b2017-12-11 15:52:26 -0800500func (c *config) SetStopBefore(stopBefore bootstrap.StopBefore) {
501 c.stopBefore = stopBefore
502}
503
504var _ bootstrap.ConfigStopBefore = (*config)(nil)
505
Jingwen Chenc711fec2020-11-22 23:52:50 -0500506// BlueprintToolLocation returns the directory containing build system tools
507// from Blueprint, like soong_zip and merge_zips.
Dan Willemsenc2aa4a92016-05-26 15:13:03 -0700508func (c *config) BlueprintToolLocation() string {
509 return filepath.Join(c.buildDir, "host", c.PrebuiltOS(), "bin")
510}
511
Colin Crosse87040b2017-12-11 15:52:26 -0800512var _ bootstrap.ConfigBlueprintToolLocation = (*config)(nil)
513
Dan Willemsen60e62f02018-11-16 21:05:32 -0800514func (c *config) HostToolPath(ctx PathContext, tool string) Path {
515 return PathForOutput(ctx, "host", c.PrebuiltOS(), "bin", tool)
516}
517
Martin Stjernholm7260d062019-12-09 21:47:14 +0000518func (c *config) HostJNIToolPath(ctx PathContext, path string) Path {
519 ext := ".so"
520 if runtime.GOOS == "darwin" {
521 ext = ".dylib"
522 }
523 return PathForOutput(ctx, "host", c.PrebuiltOS(), "lib64", path+ext)
524}
525
526func (c *config) HostJavaToolPath(ctx PathContext, path string) Path {
527 return PathForOutput(ctx, "host", c.PrebuiltOS(), "framework", path)
528}
529
Jingwen Chen2838c812020-11-23 01:06:40 -0500530// NonHermeticHostSystemTool looks for non-hermetic tools from the system we're
531// running on. These tools are not checked-in to AOSP, and therefore could lead
532// to reproducibility problems. Should not be used for other than finding the
533// XCode SDK (xcrun, sw_vers), etc. See ui/build/paths/config.go for the
534// allowlist of host system tools.
535func (c *config) NonHermeticHostSystemTool(name string) string {
Dan Willemsen66068722017-05-08 21:15:59 +0000536 for _, dir := range filepath.SplitList(c.Getenv("PATH")) {
537 path := filepath.Join(dir, name)
538 if s, err := os.Stat(path); err != nil {
539 continue
540 } else if m := s.Mode(); !s.IsDir() && m&0111 != 0 {
541 return path
542 }
543 }
Jingwen Chen2838c812020-11-23 01:06:40 -0500544 panic(fmt.Errorf(
Lukacs T. Berki81583562021-03-10 10:43:13 +0100545 "Cannot find non-hermetic system tool '%s' on path '%s'",
546 name, c.Getenv("PATH")))
Dan Willemsen66068722017-05-08 21:15:59 +0000547}
548
Jingwen Chenc711fec2020-11-22 23:52:50 -0500549// PrebuiltOS returns the name of the host OS used in prebuilts directories.
Colin Cross1332b002015-04-07 17:11:30 -0700550func (c *config) PrebuiltOS() string {
Colin Cross3f40fa42015-01-30 17:27:36 -0800551 switch runtime.GOOS {
552 case "linux":
553 return "linux-x86"
554 case "darwin":
555 return "darwin-x86"
556 default:
557 panic("Unknown GOOS")
558 }
559}
560
561// GoRoot returns the path to the root directory of the Go toolchain.
Colin Cross1332b002015-04-07 17:11:30 -0700562func (c *config) GoRoot() string {
Colin Cross3f40fa42015-01-30 17:27:36 -0800563 return fmt.Sprintf("%s/prebuilts/go/%s", c.srcDir, c.PrebuiltOS())
564}
565
Jingwen Chenc711fec2020-11-22 23:52:50 -0500566// PrebuiltBuildTool returns the path to a tool in the prebuilts directory containing
567// checked-in tools, like Kati, Ninja or Toybox, for the current host OS.
Dan Willemsen4e0aa232019-04-10 22:59:54 -0700568func (c *config) PrebuiltBuildTool(ctx PathContext, tool string) Path {
569 return PathForSource(ctx, "prebuilts/build-tools", c.PrebuiltOS(), "bin", tool)
570}
571
Jingwen Chenc711fec2020-11-22 23:52:50 -0500572// CpPreserveSymlinksFlags returns the host-specific flag for the cp(1) command
573// to preserve symlinks.
Colin Cross1332b002015-04-07 17:11:30 -0700574func (c *config) CpPreserveSymlinksFlags() string {
Colin Cross485e5722015-08-27 13:28:01 -0700575 switch runtime.GOOS {
Colin Cross3f40fa42015-01-30 17:27:36 -0800576 case "darwin":
577 return "-R"
578 case "linux":
579 return "-d"
580 default:
581 return ""
582 }
583}
Colin Cross68f55102015-03-25 14:43:57 -0700584
Colin Cross1332b002015-04-07 17:11:30 -0700585func (c *config) Getenv(key string) string {
Colin Cross68f55102015-03-25 14:43:57 -0700586 var val string
587 var exists bool
Colin Crossc1e86a32015-04-15 12:33:28 -0700588 c.envLock.Lock()
Colin Crossc0d58b42017-02-06 15:40:41 -0800589 defer c.envLock.Unlock()
590 if c.envDeps == nil {
591 c.envDeps = make(map[string]string)
592 }
Colin Cross68f55102015-03-25 14:43:57 -0700593 if val, exists = c.envDeps[key]; !exists {
Dan Willemsene7680ba2015-09-11 17:06:19 -0700594 if c.envFrozen {
595 panic("Cannot access new environment variables after envdeps are frozen")
596 }
Colin Cross6ccbc912017-10-10 23:07:38 -0700597 val, _ = c.env[key]
Colin Cross68f55102015-03-25 14:43:57 -0700598 c.envDeps[key] = val
599 }
600 return val
601}
602
Colin Cross99d7c232016-11-23 16:52:04 -0800603func (c *config) GetenvWithDefault(key string, defaultValue string) string {
604 ret := c.Getenv(key)
605 if ret == "" {
606 return defaultValue
607 }
608 return ret
609}
610
611func (c *config) IsEnvTrue(key string) bool {
612 value := c.Getenv(key)
613 return value == "1" || value == "y" || value == "yes" || value == "on" || value == "true"
614}
615
616func (c *config) IsEnvFalse(key string) bool {
617 value := c.Getenv(key)
618 return value == "0" || value == "n" || value == "no" || value == "off" || value == "false"
619}
620
Jingwen Chenc711fec2020-11-22 23:52:50 -0500621// EnvDeps returns the environment variables this build depends on. The first
622// call to this function blocks future reads from the environment.
Colin Cross1332b002015-04-07 17:11:30 -0700623func (c *config) EnvDeps() map[string]string {
Dan Willemsene7680ba2015-09-11 17:06:19 -0700624 c.envLock.Lock()
Colin Crossc0d58b42017-02-06 15:40:41 -0800625 defer c.envLock.Unlock()
Dan Willemsene7680ba2015-09-11 17:06:19 -0700626 c.envFrozen = true
Colin Cross68f55102015-03-25 14:43:57 -0700627 return c.envDeps
628}
Colin Cross35cec122015-04-02 14:37:16 -0700629
Jingwen Chencda22c92020-11-23 00:22:30 -0500630func (c *config) KatiEnabled() bool {
631 return c.katiEnabled
Dan Willemsen5ba07e82015-12-11 13:51:06 -0800632}
633
Nan Zhang581fd212018-01-10 16:06:12 -0800634func (c *config) BuildId() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800635 return String(c.productVariables.BuildId)
Nan Zhang581fd212018-01-10 16:06:12 -0800636}
637
Jingwen Chenc711fec2020-11-22 23:52:50 -0500638// BuildNumberFile returns the path to a text file containing metadata
639// representing the current build's number.
640//
641// Rules that want to reference the build number should read from this file
642// without depending on it. They will run whenever their other dependencies
643// require them to run and get the current build number. This ensures they don't
644// rebuild on every incremental build when the build number changes.
Colin Cross2a2e0db2020-02-21 16:55:46 -0800645func (c *config) BuildNumberFile(ctx PathContext) Path {
646 return PathForOutput(ctx, String(c.productVariables.BuildNumberFile))
Nan Zhang581fd212018-01-10 16:06:12 -0800647}
648
Jingwen Chenc711fec2020-11-22 23:52:50 -0500649// DeviceName returns the name of the current device target.
Colin Cross35cec122015-04-02 14:37:16 -0700650// TODO: take an AndroidModuleContext to select the device name for multi-device builds
Colin Cross1332b002015-04-07 17:11:30 -0700651func (c *config) DeviceName() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800652 return *c.productVariables.DeviceName
Colin Cross35cec122015-04-02 14:37:16 -0700653}
654
Anton Hansson53c88442019-03-18 15:53:16 +0000655func (c *config) DeviceResourceOverlays() []string {
656 return c.productVariables.DeviceResourceOverlays
657}
658
659func (c *config) ProductResourceOverlays() []string {
660 return c.productVariables.ProductResourceOverlays
Colin Cross30e076a2015-04-13 13:58:27 -0700661}
662
Colin Crossbfd347d2018-05-09 11:11:35 -0700663func (c *config) PlatformVersionName() string {
664 return String(c.productVariables.Platform_version_name)
665}
666
Dan Albert4f378d72020-07-23 17:32:15 -0700667func (c *config) PlatformSdkVersion() ApiLevel {
668 return uncheckedFinalApiLevel(*c.productVariables.Platform_sdk_version)
Colin Cross30e076a2015-04-13 13:58:27 -0700669}
670
Colin Crossd09b0b62018-04-18 11:06:47 -0700671func (c *config) PlatformSdkCodename() string {
672 return String(c.productVariables.Platform_sdk_codename)
673}
674
Colin Cross092c9da2019-04-02 22:56:43 -0700675func (c *config) PlatformSecurityPatch() string {
676 return String(c.productVariables.Platform_security_patch)
677}
678
679func (c *config) PlatformPreviewSdkVersion() string {
680 return String(c.productVariables.Platform_preview_sdk_version)
681}
682
683func (c *config) PlatformMinSupportedTargetSdkVersion() string {
684 return String(c.productVariables.Platform_min_supported_target_sdk_version)
685}
686
687func (c *config) PlatformBaseOS() string {
688 return String(c.productVariables.Platform_base_os)
689}
690
Dan Albert1a246272020-07-06 14:49:35 -0700691func (c *config) MinSupportedSdkVersion() ApiLevel {
692 return uncheckedFinalApiLevel(16)
693}
694
695func (c *config) FinalApiLevels() []ApiLevel {
696 var levels []ApiLevel
Dan Albert4f378d72020-07-23 17:32:15 -0700697 for i := 1; i <= c.PlatformSdkVersion().FinalOrFutureInt(); i++ {
Dan Albert1a246272020-07-06 14:49:35 -0700698 levels = append(levels, uncheckedFinalApiLevel(i))
699 }
700 return levels
701}
702
703func (c *config) PreviewApiLevels() []ApiLevel {
704 var levels []ApiLevel
705 for i, codename := range c.PlatformVersionActiveCodenames() {
706 levels = append(levels, ApiLevel{
707 value: codename,
708 number: i,
709 isPreview: true,
710 })
711 }
712 return levels
713}
714
715func (c *config) AllSupportedApiLevels() []ApiLevel {
716 var levels []ApiLevel
717 levels = append(levels, c.FinalApiLevels()...)
718 return append(levels, c.PreviewApiLevels()...)
Dan Albertf5415d72017-08-17 16:19:59 -0700719}
720
Jingwen Chenc711fec2020-11-22 23:52:50 -0500721// DefaultAppTargetSdk returns the API level that platform apps are targeting.
722// This converts a codename to the exact ApiLevel it represents.
Dan Albert4f378d72020-07-23 17:32:15 -0700723func (c *config) DefaultAppTargetSdk(ctx EarlyModuleContext) ApiLevel {
Colin Crossd09b0b62018-04-18 11:06:47 -0700724 if Bool(c.productVariables.Platform_sdk_final) {
725 return c.PlatformSdkVersion()
Colin Crossd09b0b62018-04-18 11:06:47 -0700726 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500727 codename := c.PlatformSdkCodename()
728 if codename == "" {
729 return NoneApiLevel
730 }
731 if codename == "REL" {
732 panic("Platform_sdk_codename should not be REL when Platform_sdk_final is true")
733 }
734 return ApiLevelOrPanic(ctx, codename)
Colin Crossd09b0b62018-04-18 11:06:47 -0700735}
736
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800737func (c *config) AppsDefaultVersionName() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800738 return String(c.productVariables.AppsDefaultVersionName)
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800739}
740
Dan Albert31384de2017-07-28 12:39:46 -0700741// Codenames that are active in the current lunch target.
742func (c *config) PlatformVersionActiveCodenames() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800743 return c.productVariables.Platform_version_active_codenames
Dan Albert31384de2017-07-28 12:39:46 -0700744}
745
Colin Crossface4e42017-10-30 17:32:15 -0700746func (c *config) ProductAAPTConfig() []string {
Colin Crossa74ca042019-01-31 14:31:51 -0800747 return c.productVariables.AAPTConfig
Colin Cross30e076a2015-04-13 13:58:27 -0700748}
749
Colin Crossface4e42017-10-30 17:32:15 -0700750func (c *config) ProductAAPTPreferredConfig() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800751 return String(c.productVariables.AAPTPreferredConfig)
Colin Cross30e076a2015-04-13 13:58:27 -0700752}
753
Colin Crossface4e42017-10-30 17:32:15 -0700754func (c *config) ProductAAPTCharacteristics() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800755 return String(c.productVariables.AAPTCharacteristics)
Colin Crossface4e42017-10-30 17:32:15 -0700756}
757
758func (c *config) ProductAAPTPrebuiltDPI() []string {
Colin Crossa74ca042019-01-31 14:31:51 -0800759 return c.productVariables.AAPTPrebuiltDPI
Colin Cross30e076a2015-04-13 13:58:27 -0700760}
761
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700762func (c *config) DefaultAppCertificateDir(ctx PathContext) SourcePath {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800763 defaultCert := String(c.productVariables.DefaultAppCertificate)
Colin Cross61ae0b72017-12-01 17:16:02 -0800764 if defaultCert != "" {
765 return PathForSource(ctx, filepath.Dir(defaultCert))
Colin Cross61ae0b72017-12-01 17:16:02 -0800766 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500767 return PathForSource(ctx, "build/make/target/product/security")
Colin Cross30e076a2015-04-13 13:58:27 -0700768}
769
Colin Crosse1731a52017-12-14 11:22:55 -0800770func (c *config) DefaultAppCertificate(ctx PathContext) (pem, key SourcePath) {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800771 defaultCert := String(c.productVariables.DefaultAppCertificate)
Colin Cross61ae0b72017-12-01 17:16:02 -0800772 if defaultCert != "" {
Colin Crosse1731a52017-12-14 11:22:55 -0800773 return PathForSource(ctx, defaultCert+".x509.pem"), PathForSource(ctx, defaultCert+".pk8")
Colin Cross61ae0b72017-12-01 17:16:02 -0800774 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500775 defaultDir := c.DefaultAppCertificateDir(ctx)
776 return defaultDir.Join(ctx, "testkey.x509.pem"), defaultDir.Join(ctx, "testkey.pk8")
Colin Cross30e076a2015-04-13 13:58:27 -0700777}
Colin Cross6ff51382015-12-17 16:39:19 -0800778
Jiyong Park9335a262018-12-24 11:31:58 +0900779func (c *config) ApexKeyDir(ctx ModuleContext) SourcePath {
780 // TODO(b/121224311): define another variable such as TARGET_APEX_KEY_OVERRIDE
781 defaultCert := String(c.productVariables.DefaultAppCertificate)
Dan Willemsen412160e2019-04-09 21:36:26 -0700782 if defaultCert == "" || filepath.Dir(defaultCert) == "build/make/target/product/security" {
Jiyong Park9335a262018-12-24 11:31:58 +0900783 // When defaultCert is unset or is set to the testkeys path, use the APEX keys
784 // that is under the module dir
Colin Cross07e51612019-03-05 12:46:40 -0800785 return pathForModuleSrc(ctx)
Jiyong Park9335a262018-12-24 11:31:58 +0900786 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500787 // If not, APEX keys are under the specified directory
788 return PathForSource(ctx, filepath.Dir(defaultCert))
Jiyong Park9335a262018-12-24 11:31:58 +0900789}
790
Jingwen Chenc711fec2020-11-22 23:52:50 -0500791// AllowMissingDependencies configures Blueprint/Soong to not fail when modules
792// are configured to depend on non-existent modules. Note that this does not
793// affect missing input dependencies at the Ninja level.
Colin Cross6ff51382015-12-17 16:39:19 -0800794func (c *config) AllowMissingDependencies() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800795 return Bool(c.productVariables.Allow_missing_dependencies)
Colin Cross6ff51382015-12-17 16:39:19 -0800796}
Dan Willemsen322acaf2016-01-12 23:07:05 -0800797
Jeongik Cha816a23a2020-07-08 01:09:23 +0900798// Returns true if a full platform source tree cannot be assumed.
Colin Crossfc3674a2017-09-18 17:41:52 -0700799func (c *config) UnbundledBuild() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800800 return Bool(c.productVariables.Unbundled_build)
Colin Crossfc3674a2017-09-18 17:41:52 -0700801}
802
Martin Stjernholmfd9eb4b2020-06-17 01:13:15 +0100803// Returns true if building apps that aren't bundled with the platform.
804// UnbundledBuild() is always true when this is true.
805func (c *config) UnbundledBuildApps() bool {
806 return Bool(c.productVariables.Unbundled_build_apps)
807}
808
Jeongik Cha816a23a2020-07-08 01:09:23 +0900809// Returns true if building modules against prebuilt SDKs.
810func (c *config) AlwaysUsePrebuiltSdks() bool {
811 return Bool(c.productVariables.Always_use_prebuilt_sdks)
Colin Cross1f367bf2018-12-18 22:46:24 -0800812}
813
Paul Duffin9a89a2a2020-10-28 19:20:06 +0000814// Returns true if the boot jars check should be skipped.
815func (c *config) SkipBootJarsCheck() bool {
816 return Bool(c.productVariables.Skip_boot_jars_check)
817}
818
Doug Horn21b94272019-01-16 12:06:11 -0800819func (c *config) Fuchsia() bool {
820 return Bool(c.productVariables.Fuchsia)
821}
822
Colin Cross126a25c2017-10-31 13:55:34 -0700823func (c *config) MinimizeJavaDebugInfo() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800824 return Bool(c.productVariables.MinimizeJavaDebugInfo) && !Bool(c.productVariables.Eng)
Colin Cross126a25c2017-10-31 13:55:34 -0700825}
826
Colin Crossed064c02018-09-05 16:28:13 -0700827func (c *config) Debuggable() bool {
828 return Bool(c.productVariables.Debuggable)
829}
830
Jaewoong Jung1d6eb682018-11-29 15:08:44 -0800831func (c *config) Eng() bool {
832 return Bool(c.productVariables.Eng)
833}
834
Jiyong Park8d52f862018-07-07 18:02:07 +0900835func (c *config) DevicePrimaryArchType() ArchType {
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700836 return c.Targets[Android][0].Arch.ArchType
Jiyong Park8d52f862018-07-07 18:02:07 +0900837}
838
Colin Cross16b23492016-01-06 14:41:07 -0800839func (c *config) SanitizeHost() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800840 return append([]string(nil), c.productVariables.SanitizeHost...)
Colin Cross16b23492016-01-06 14:41:07 -0800841}
842
843func (c *config) SanitizeDevice() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800844 return append([]string(nil), c.productVariables.SanitizeDevice...)
Colin Cross23ae82a2016-11-02 14:34:39 -0700845}
846
Ivan Lozano0c3a1ef2017-06-28 09:10:48 -0700847func (c *config) SanitizeDeviceDiag() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800848 return append([]string(nil), c.productVariables.SanitizeDeviceDiag...)
Ivan Lozano0c3a1ef2017-06-28 09:10:48 -0700849}
850
Colin Cross23ae82a2016-11-02 14:34:39 -0700851func (c *config) SanitizeDeviceArch() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800852 return append([]string(nil), c.productVariables.SanitizeDeviceArch...)
Colin Cross16b23492016-01-06 14:41:07 -0800853}
Colin Crossa1ad8d12016-06-01 17:09:44 -0700854
Vishwath Mohan1b017a72017-01-19 13:54:55 -0800855func (c *config) EnableCFI() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800856 if c.productVariables.EnableCFI == nil {
Vishwath Mohanc32c3eb2017-01-24 14:20:54 -0800857 return true
Vishwath Mohanc32c3eb2017-01-24 14:20:54 -0800858 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500859 return *c.productVariables.EnableCFI
Vishwath Mohan1b017a72017-01-19 13:54:55 -0800860}
861
Kostya Kortchinskyd5275c82019-02-01 08:42:56 -0800862func (c *config) DisableScudo() bool {
863 return Bool(c.productVariables.DisableScudo)
864}
865
Colin Crossa1ad8d12016-06-01 17:09:44 -0700866func (c *config) Android64() bool {
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700867 for _, t := range c.Targets[Android] {
Colin Crossa1ad8d12016-06-01 17:09:44 -0700868 if t.Arch.ArchType.Multilib == "lib64" {
869 return true
870 }
871 }
872
873 return false
874}
Colin Cross9272ade2016-08-17 15:24:12 -0700875
Colin Cross9d45bb72016-08-29 16:14:13 -0700876func (c *config) UseGoma() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800877 return Bool(c.productVariables.UseGoma)
Colin Cross9d45bb72016-08-29 16:14:13 -0700878}
879
Ramy Medhatbbf25672019-07-17 12:30:04 +0000880func (c *config) UseRBE() bool {
881 return Bool(c.productVariables.UseRBE)
882}
883
Ramy Medhat8ea054a2020-01-27 14:19:44 -0500884func (c *config) UseRBEJAVAC() bool {
885 return Bool(c.productVariables.UseRBEJAVAC)
886}
887
888func (c *config) UseRBER8() bool {
889 return Bool(c.productVariables.UseRBER8)
890}
891
892func (c *config) UseRBED8() bool {
893 return Bool(c.productVariables.UseRBED8)
894}
895
Colin Cross8b8bec32019-11-15 13:18:43 -0800896func (c *config) UseRemoteBuild() bool {
897 return c.UseGoma() || c.UseRBE()
898}
899
Colin Cross66548102018-06-19 22:47:35 -0700900func (c *config) RunErrorProne() bool {
901 return c.IsEnvTrue("RUN_ERROR_PRONE")
902}
903
Jingwen Chenc711fec2020-11-22 23:52:50 -0500904// XrefCorpusName returns the Kythe cross-reference corpus name.
Sasha Smundak2a4549e2018-11-05 16:49:08 -0800905func (c *config) XrefCorpusName() string {
906 return c.Getenv("XREF_CORPUS")
907}
908
Jingwen Chenc711fec2020-11-22 23:52:50 -0500909// XrefCuEncoding returns the compilation unit encoding to use for Kythe code
910// xrefs. Can be 'json' (default), 'proto' or 'all'.
Sasha Smundak6c2d4f92020-01-09 17:34:23 -0800911func (c *config) XrefCuEncoding() string {
912 if enc := c.Getenv("KYTHE_KZIP_ENCODING"); enc != "" {
913 return enc
914 }
915 return "json"
916}
917
Sasha Smundakb0addaf2021-02-16 10:39:40 -0800918// XrefCuJavaSourceMax returns the maximum number of the Java source files
919// in a single compilation unit
920const xrefJavaSourceFileMaxDefault = "1000"
921
922func (c Config) XrefCuJavaSourceMax() string {
923 v := c.Getenv("KYTHE_JAVA_SOURCE_BATCH_SIZE")
924 if v == "" {
925 return xrefJavaSourceFileMaxDefault
926 }
927 if _, err := strconv.ParseUint(v, 0, 0); err != nil {
928 fmt.Fprintf(os.Stderr,
929 "bad KYTHE_JAVA_SOURCE_BATCH_SIZE value: %s, will use %s",
930 err, xrefJavaSourceFileMaxDefault)
931 return xrefJavaSourceFileMaxDefault
932 }
933 return v
934
935}
936
Sasha Smundak2a4549e2018-11-05 16:49:08 -0800937func (c *config) EmitXrefRules() bool {
938 return c.XrefCorpusName() != ""
939}
940
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700941func (c *config) ClangTidy() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800942 return Bool(c.productVariables.ClangTidy)
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700943}
944
945func (c *config) TidyChecks() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800946 if c.productVariables.TidyChecks == nil {
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700947 return ""
948 }
Dan Willemsen45133ac2018-03-09 21:22:06 -0800949 return *c.productVariables.TidyChecks
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700950}
951
Colin Cross0f4e0d62016-07-27 10:56:55 -0700952func (c *config) LibartImgHostBaseAddress() string {
953 return "0x60000000"
954}
955
956func (c *config) LibartImgDeviceBaseAddress() string {
Elliott Hughesda3a0712020-03-06 16:55:28 -0800957 return "0x70000000"
Colin Cross0f4e0d62016-07-27 10:56:55 -0700958}
959
Hiroshi Yamauchie2a10632016-12-19 13:44:41 -0800960func (c *config) ArtUseReadBarrier() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800961 return Bool(c.productVariables.ArtUseReadBarrier)
Hiroshi Yamauchie2a10632016-12-19 13:44:41 -0800962}
963
Jingwen Chenc711fec2020-11-22 23:52:50 -0500964// Enforce Runtime Resource Overlays for a module. RROs supersede static RROs,
965// but some modules still depend on it.
966//
967// More info: https://source.android.com/devices/architecture/rros
Dan Willemsen3fb1fae2018-03-12 15:30:26 -0700968func (c *config) EnforceRROForModule(name string) bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800969 enforceList := c.productVariables.EnforceRROTargets
Jeongik Chacee5ba92021-02-19 12:11:51 +0900970
Roland Levillainf6cc2612020-07-09 16:58:14 +0100971 if len(enforceList) > 0 {
Yo Chiang4ebd06a2019-10-01 13:13:41 +0800972 if InList("*", enforceList) {
Dan Willemsen3fb1fae2018-03-12 15:30:26 -0700973 return true
974 }
Colin Crossa74ca042019-01-31 14:31:51 -0800975 return InList(name, enforceList)
Dan Willemsen3fb1fae2018-03-12 15:30:26 -0700976 }
977 return false
978}
Dan Willemsen3fb1fae2018-03-12 15:30:26 -0700979func (c *config) EnforceRROExcludedOverlay(path string) bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800980 excluded := c.productVariables.EnforceRROExcludedOverlays
Roland Levillainf6cc2612020-07-09 16:58:14 +0100981 if len(excluded) > 0 {
Jaewoong Jung3aff5782020-02-11 07:54:35 -0800982 return HasAnyPrefix(path, excluded)
Dan Willemsen3fb1fae2018-03-12 15:30:26 -0700983 }
984 return false
985}
986
987func (c *config) ExportedNamespaces() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800988 return append([]string(nil), c.productVariables.NamespacesToExport...)
Dan Willemsen3fb1fae2018-03-12 15:30:26 -0700989}
990
991func (c *config) HostStaticBinaries() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800992 return Bool(c.productVariables.HostStaticBinaries)
Dan Willemsen3fb1fae2018-03-12 15:30:26 -0700993}
994
Colin Cross5a0dcd52018-10-05 14:20:06 -0700995func (c *config) UncompressPrivAppDex() bool {
996 return Bool(c.productVariables.UncompressPrivAppDex)
997}
998
999func (c *config) ModulesLoadedByPrivilegedModules() []string {
1000 return c.productVariables.ModulesLoadedByPrivilegedModules
1001}
1002
Jingwen Chenc711fec2020-11-22 23:52:50 -05001003// DexpreoptGlobalConfigPath returns the path to the dexpreopt.config file in
1004// the output directory, if it was created during the product configuration
1005// phase by Kati.
Jingwen Chenebb0b572020-11-02 00:24:57 -05001006func (c *config) DexpreoptGlobalConfigPath(ctx PathContext) OptionalPath {
Colin Cross988414c2020-01-11 01:11:46 +00001007 if c.productVariables.DexpreoptGlobalConfig == nil {
Jingwen Chenebb0b572020-11-02 00:24:57 -05001008 return OptionalPathForPath(nil)
1009 }
1010 return OptionalPathForPath(
1011 pathForBuildToolDep(ctx, *c.productVariables.DexpreoptGlobalConfig))
1012}
1013
Jingwen Chenc711fec2020-11-22 23:52:50 -05001014// DexpreoptGlobalConfig returns the raw byte contents of the dexpreopt global
1015// configuration. Since the configuration file was created by Kati during
1016// product configuration (externally of soong_build), it's not tracked, so we
1017// also manually add a Ninja file dependency on the configuration file to the
1018// rule that creates the main build.ninja file. This ensures that build.ninja is
1019// regenerated correctly if dexpreopt.config changes.
Jingwen Chenebb0b572020-11-02 00:24:57 -05001020func (c *config) DexpreoptGlobalConfig(ctx PathContext) ([]byte, error) {
1021 path := c.DexpreoptGlobalConfigPath(ctx)
1022 if !path.Valid() {
Colin Cross988414c2020-01-11 01:11:46 +00001023 return nil, nil
1024 }
Jingwen Chenebb0b572020-11-02 00:24:57 -05001025 ctx.AddNinjaFileDeps(path.String())
1026 return ioutil.ReadFile(absolutePath(path.String()))
Colin Cross43f08db2018-11-12 10:13:39 -08001027}
1028
David Brazdil91b4e3e2019-01-23 21:04:05 +00001029func (c *config) FrameworksBaseDirExists(ctx PathContext) bool {
1030 return ExistentPathForSource(ctx, "frameworks", "base").Valid()
1031}
1032
Inseob Kimae553032019-05-14 18:52:49 +09001033func (c *config) VndkSnapshotBuildArtifacts() bool {
1034 return Bool(c.productVariables.VndkSnapshotBuildArtifacts)
1035}
1036
Colin Cross3b19f5d2019-09-17 14:45:31 -07001037func (c *config) HasMultilibConflict(arch ArchType) bool {
1038 return c.multilibConflicts[arch]
1039}
1040
Bill Peckhambae47492021-01-08 09:34:44 -08001041func (c *config) PrebuiltHiddenApiDir(ctx PathContext) string {
1042 return String(c.productVariables.PrebuiltHiddenApiDir)
1043}
1044
Colin Cross9272ade2016-08-17 15:24:12 -07001045func (c *deviceConfig) Arches() []Arch {
1046 var arches []Arch
Dan Willemsen0ef639b2018-10-10 17:02:29 -07001047 for _, target := range c.config.Targets[Android] {
Colin Cross9272ade2016-08-17 15:24:12 -07001048 arches = append(arches, target.Arch)
1049 }
1050 return arches
1051}
Dan Willemsend2ede872016-11-18 14:54:24 -08001052
Jayant Chowdhary34ce67d2018-03-08 11:00:50 -08001053func (c *deviceConfig) BinderBitness() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001054 is32BitBinder := c.config.productVariables.Binder32bit
Jayant Chowdhary34ce67d2018-03-08 11:00:50 -08001055 if is32BitBinder != nil && *is32BitBinder {
1056 return "32"
1057 }
1058 return "64"
1059}
1060
Dan Willemsen4353bc42016-12-05 17:16:02 -08001061func (c *deviceConfig) VendorPath() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001062 if c.config.productVariables.VendorPath != nil {
1063 return *c.config.productVariables.VendorPath
Dan Willemsen4353bc42016-12-05 17:16:02 -08001064 }
1065 return "vendor"
1066}
1067
Justin Yun71549282017-11-17 12:10:28 +09001068func (c *deviceConfig) VndkVersion() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001069 return String(c.config.productVariables.DeviceVndkVersion)
Justin Yun71549282017-11-17 12:10:28 +09001070}
1071
Jose Galmes6f843bc2020-12-11 13:36:29 -08001072func (c *deviceConfig) RecoverySnapshotVersion() string {
1073 return String(c.config.productVariables.RecoverySnapshotVersion)
1074}
1075
Jeongik Cha219141c2020-08-06 23:00:37 +09001076func (c *deviceConfig) CurrentApiLevelForVendorModules() string {
1077 return StringDefault(c.config.productVariables.DeviceCurrentApiLevelForVendorModules, "current")
1078}
1079
Justin Yun8fe12122017-12-07 17:18:15 +09001080func (c *deviceConfig) PlatformVndkVersion() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001081 return String(c.config.productVariables.Platform_vndk_version)
Justin Yun8fe12122017-12-07 17:18:15 +09001082}
1083
Justin Yun5f7f7e82019-11-18 19:52:14 +09001084func (c *deviceConfig) ProductVndkVersion() string {
1085 return String(c.config.productVariables.ProductVndkVersion)
1086}
1087
Justin Yun71549282017-11-17 12:10:28 +09001088func (c *deviceConfig) ExtraVndkVersions() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001089 return c.config.productVariables.ExtraVndkVersions
Dan Willemsend2ede872016-11-18 14:54:24 -08001090}
Jack He8cc71432016-12-08 15:45:07 -08001091
Vic Yangefd249e2018-11-12 20:19:56 -08001092func (c *deviceConfig) VndkUseCoreVariant() bool {
1093 return Bool(c.config.productVariables.VndkUseCoreVariant)
1094}
1095
Jiyong Park1a5d7b12018-01-15 15:05:10 +09001096func (c *deviceConfig) SystemSdkVersions() []string {
Colin Crossa74ca042019-01-31 14:31:51 -08001097 return c.config.productVariables.DeviceSystemSdkVersions
Jiyong Park1a5d7b12018-01-15 15:05:10 +09001098}
1099
1100func (c *deviceConfig) PlatformSystemSdkVersions() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001101 return c.config.productVariables.Platform_systemsdk_versions
Jiyong Park1a5d7b12018-01-15 15:05:10 +09001102}
1103
Jiyong Park2db76922017-11-08 16:03:48 +09001104func (c *deviceConfig) OdmPath() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001105 if c.config.productVariables.OdmPath != nil {
1106 return *c.config.productVariables.OdmPath
Jiyong Park2db76922017-11-08 16:03:48 +09001107 }
1108 return "odm"
1109}
1110
Jaekyun Seok5cfbfbb2018-01-10 19:00:15 +09001111func (c *deviceConfig) ProductPath() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001112 if c.config.productVariables.ProductPath != nil {
1113 return *c.config.productVariables.ProductPath
Jiyong Park2db76922017-11-08 16:03:48 +09001114 }
Jaekyun Seok5cfbfbb2018-01-10 19:00:15 +09001115 return "product"
Jiyong Park2db76922017-11-08 16:03:48 +09001116}
1117
Justin Yund5f6c822019-06-25 16:47:17 +09001118func (c *deviceConfig) SystemExtPath() string {
1119 if c.config.productVariables.SystemExtPath != nil {
1120 return *c.config.productVariables.SystemExtPath
Dario Frenifd05a742018-05-29 13:28:54 +01001121 }
Justin Yund5f6c822019-06-25 16:47:17 +09001122 return "system_ext"
Dario Frenifd05a742018-05-29 13:28:54 +01001123}
1124
Jack He8cc71432016-12-08 15:45:07 -08001125func (c *deviceConfig) BtConfigIncludeDir() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001126 return String(c.config.productVariables.BtConfigIncludeDir)
Jack He8cc71432016-12-08 15:45:07 -08001127}
Dan Willemsen581341d2017-02-09 16:16:31 -08001128
Jiyong Parkd773eb32017-07-03 13:18:12 +09001129func (c *deviceConfig) DeviceKernelHeaderDirs() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001130 return c.config.productVariables.DeviceKernelHeaders
Jiyong Parkd773eb32017-07-03 13:18:12 +09001131}
1132
Yi Kongceb5b762020-03-20 15:22:27 +08001133func (c *deviceConfig) SamplingPGO() bool {
1134 return Bool(c.config.productVariables.SamplingPGO)
1135}
1136
Roland Levillainada12702020-06-09 13:07:36 +01001137// JavaCoverageEnabledForPath returns whether Java code coverage is enabled for
1138// path. Coverage is enabled by default when the product variable
1139// JavaCoveragePaths is empty. If JavaCoveragePaths is not empty, coverage is
1140// enabled for any path which is part of this variable (and not part of the
1141// JavaCoverageExcludePaths product variable). Value "*" in JavaCoveragePaths
1142// represents any path.
1143func (c *deviceConfig) JavaCoverageEnabledForPath(path string) bool {
1144 coverage := false
Chris Gross2f748692020-06-24 20:36:59 +00001145 if len(c.config.productVariables.JavaCoveragePaths) == 0 ||
Roland Levillainada12702020-06-09 13:07:36 +01001146 InList("*", c.config.productVariables.JavaCoveragePaths) ||
1147 HasAnyPrefix(path, c.config.productVariables.JavaCoveragePaths) {
1148 coverage = true
1149 }
Roland Levillainf6cc2612020-07-09 16:58:14 +01001150 if coverage && len(c.config.productVariables.JavaCoverageExcludePaths) > 0 {
Roland Levillainada12702020-06-09 13:07:36 +01001151 if HasAnyPrefix(path, c.config.productVariables.JavaCoverageExcludePaths) {
1152 coverage = false
1153 }
1154 }
1155 return coverage
1156}
1157
Colin Cross1a6acd42020-06-16 17:51:46 -07001158// Returns true if gcov or clang coverage is enabled.
Dan Willemsen581341d2017-02-09 16:16:31 -08001159func (c *deviceConfig) NativeCoverageEnabled() bool {
Colin Cross1a6acd42020-06-16 17:51:46 -07001160 return Bool(c.config.productVariables.GcovCoverage) ||
1161 Bool(c.config.productVariables.ClangCoverage)
Dan Willemsen581341d2017-02-09 16:16:31 -08001162}
1163
Oliver Nguyen1382ab62019-12-06 15:22:41 -08001164func (c *deviceConfig) ClangCoverageEnabled() bool {
1165 return Bool(c.config.productVariables.ClangCoverage)
1166}
1167
Colin Cross1a6acd42020-06-16 17:51:46 -07001168func (c *deviceConfig) GcovCoverageEnabled() bool {
1169 return Bool(c.config.productVariables.GcovCoverage)
1170}
1171
Roland Levillain4f5297b2020-06-09 12:44:06 +01001172// NativeCoverageEnabledForPath returns whether (GCOV- or Clang-based) native
1173// code coverage is enabled for path. By default, coverage is not enabled for a
1174// given path unless it is part of the NativeCoveragePaths product variable (and
1175// not part of the NativeCoverageExcludePaths product variable). Value "*" in
1176// NativeCoveragePaths represents any path.
1177func (c *deviceConfig) NativeCoverageEnabledForPath(path string) bool {
Ryan Campbell469a18a2017-02-27 09:01:54 -08001178 coverage := false
Roland Levillainf6cc2612020-07-09 16:58:14 +01001179 if len(c.config.productVariables.NativeCoveragePaths) > 0 {
Roland Levillain4f5297b2020-06-09 12:44:06 +01001180 if InList("*", c.config.productVariables.NativeCoveragePaths) || HasAnyPrefix(path, c.config.productVariables.NativeCoveragePaths) {
Ivan Lozano5f595532017-07-13 14:46:05 -07001181 coverage = true
Dan Willemsen581341d2017-02-09 16:16:31 -08001182 }
1183 }
Roland Levillainf6cc2612020-07-09 16:58:14 +01001184 if coverage && len(c.config.productVariables.NativeCoverageExcludePaths) > 0 {
Roland Levillain4f5297b2020-06-09 12:44:06 +01001185 if HasAnyPrefix(path, c.config.productVariables.NativeCoverageExcludePaths) {
Ivan Lozano5f595532017-07-13 14:46:05 -07001186 coverage = false
Ryan Campbell469a18a2017-02-27 09:01:54 -08001187 }
1188 }
1189 return coverage
Dan Willemsen581341d2017-02-09 16:16:31 -08001190}
Ivan Lozano5f595532017-07-13 14:46:05 -07001191
Pirama Arumuga Nainar49540802018-01-29 23:11:42 -08001192func (c *deviceConfig) PgoAdditionalProfileDirs() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001193 return c.config.productVariables.PgoAdditionalProfileDirs
Pirama Arumuga Nainar49540802018-01-29 23:11:42 -08001194}
1195
Tri Vo35a51432018-03-25 20:00:00 -07001196func (c *deviceConfig) VendorSepolicyDirs() []string {
1197 return c.config.productVariables.BoardVendorSepolicyDirs
1198}
1199
1200func (c *deviceConfig) OdmSepolicyDirs() []string {
1201 return c.config.productVariables.BoardOdmSepolicyDirs
1202}
1203
Felixa20a8752020-05-17 18:28:35 +02001204func (c *deviceConfig) SystemExtPublicSepolicyDirs() []string {
1205 return c.config.productVariables.SystemExtPublicSepolicyDirs
Tri Vo35a51432018-03-25 20:00:00 -07001206}
1207
Felixa20a8752020-05-17 18:28:35 +02001208func (c *deviceConfig) SystemExtPrivateSepolicyDirs() []string {
1209 return c.config.productVariables.SystemExtPrivateSepolicyDirs
Tri Vo35a51432018-03-25 20:00:00 -07001210}
1211
Inseob Kim0866b002019-04-15 20:21:29 +09001212func (c *deviceConfig) SepolicyM4Defs() []string {
1213 return c.config.productVariables.BoardSepolicyM4Defs
1214}
1215
Jiyong Park7f67f482019-01-05 12:57:48 +09001216func (c *deviceConfig) OverrideManifestPackageNameFor(name string) (manifestName string, overridden bool) {
Jaewoong Jung2ad817c2019-01-18 14:27:16 -08001217 return findOverrideValue(c.config.productVariables.ManifestPackageNameOverrides, name,
1218 "invalid override rule %q in PRODUCT_MANIFEST_PACKAGE_NAME_OVERRIDES should be <module_name>:<manifest_name>")
1219}
1220
1221func (c *deviceConfig) OverrideCertificateFor(name string) (certificatePath string, overridden bool) {
Jaewoong Jungacb6db32019-02-28 16:22:30 +00001222 return findOverrideValue(c.config.productVariables.CertificateOverrides, name,
Jaewoong Jung2ad817c2019-01-18 14:27:16 -08001223 "invalid override rule %q in PRODUCT_CERTIFICATE_OVERRIDES should be <module_name>:<certificate_module_name>")
1224}
1225
Jaewoong Jung9d22a912019-01-23 16:27:47 -08001226func (c *deviceConfig) OverridePackageNameFor(name string) string {
1227 newName, overridden := findOverrideValue(
1228 c.config.productVariables.PackageNameOverrides,
1229 name,
1230 "invalid override rule %q in PRODUCT_PACKAGE_NAME_OVERRIDES should be <module_name>:<package_name>")
1231 if overridden {
1232 return newName
1233 }
1234 return name
1235}
1236
Jaewoong Jung2ad817c2019-01-18 14:27:16 -08001237func findOverrideValue(overrides []string, name string, errorMsg string) (newValue string, overridden bool) {
Jiyong Park7f67f482019-01-05 12:57:48 +09001238 if overrides == nil || len(overrides) == 0 {
1239 return "", false
1240 }
1241 for _, o := range overrides {
1242 split := strings.Split(o, ":")
1243 if len(split) != 2 {
1244 // This shouldn't happen as this is first checked in make, but just in case.
Jaewoong Jung2ad817c2019-01-18 14:27:16 -08001245 panic(fmt.Errorf(errorMsg, o))
Jiyong Park7f67f482019-01-05 12:57:48 +09001246 }
1247 if matchPattern(split[0], name) {
1248 return substPattern(split[0], split[1], name), true
1249 }
1250 }
1251 return "", false
1252}
1253
Ivan Lozano5f595532017-07-13 14:46:05 -07001254func (c *config) IntegerOverflowDisabledForPath(path string) bool {
Roland Levillainf6cc2612020-07-09 16:58:14 +01001255 if len(c.productVariables.IntegerOverflowExcludePaths) == 0 {
Ivan Lozano5f595532017-07-13 14:46:05 -07001256 return false
1257 }
Jaewoong Jung3aff5782020-02-11 07:54:35 -08001258 return HasAnyPrefix(path, c.productVariables.IntegerOverflowExcludePaths)
Ivan Lozano5f595532017-07-13 14:46:05 -07001259}
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001260
1261func (c *config) CFIDisabledForPath(path string) bool {
Roland Levillainf6cc2612020-07-09 16:58:14 +01001262 if len(c.productVariables.CFIExcludePaths) == 0 {
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001263 return false
1264 }
Jaewoong Jung3aff5782020-02-11 07:54:35 -08001265 return HasAnyPrefix(path, c.productVariables.CFIExcludePaths)
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001266}
1267
1268func (c *config) CFIEnabledForPath(path string) bool {
Roland Levillainf6cc2612020-07-09 16:58:14 +01001269 if len(c.productVariables.CFIIncludePaths) == 0 {
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001270 return false
1271 }
Jaewoong Jung3aff5782020-02-11 07:54:35 -08001272 return HasAnyPrefix(path, c.productVariables.CFIIncludePaths)
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001273}
Colin Crosse15ddaf2017-12-04 11:24:31 -08001274
Evgenii Stepanov4beaa0c2021-01-05 16:41:26 -08001275func (c *config) MemtagHeapDisabledForPath(path string) bool {
1276 if len(c.productVariables.MemtagHeapExcludePaths) == 0 {
1277 return false
1278 }
1279 return HasAnyPrefix(path, c.productVariables.MemtagHeapExcludePaths)
1280}
1281
1282func (c *config) MemtagHeapAsyncEnabledForPath(path string) bool {
1283 if len(c.productVariables.MemtagHeapAsyncIncludePaths) == 0 {
1284 return false
1285 }
1286 return HasAnyPrefix(path, c.productVariables.MemtagHeapAsyncIncludePaths)
1287}
1288
1289func (c *config) MemtagHeapSyncEnabledForPath(path string) bool {
1290 if len(c.productVariables.MemtagHeapSyncIncludePaths) == 0 {
1291 return false
1292 }
1293 return HasAnyPrefix(path, c.productVariables.MemtagHeapSyncIncludePaths)
1294}
1295
Dan Willemsen0fe78662018-03-26 12:41:18 -07001296func (c *config) VendorConfig(name string) VendorConfig {
Colin Cross9d34f352019-11-22 16:03:51 -08001297 return soongconfig.Config(c.productVariables.VendorVars[name])
Dan Willemsen0fe78662018-03-26 12:41:18 -07001298}
1299
Colin Cross395f2cf2018-10-24 16:10:32 -07001300func (c *config) NdkAbis() bool {
1301 return Bool(c.productVariables.Ndk_abis)
1302}
1303
Martin Stjernholmc1ecc432019-11-15 15:00:31 +00001304func (c *config) AmlAbis() bool {
1305 return Bool(c.productVariables.Aml_abis)
1306}
1307
Dan Albert23d37e02018-11-28 08:30:10 -08001308func (c *config) ExcludeDraftNdkApis() bool {
1309 return Bool(c.productVariables.Exclude_draft_ndk_apis)
1310}
1311
Jiyong Park8fd61922018-11-08 02:50:25 +09001312func (c *config) FlattenApex() bool {
Roland Levillaina3863212019-08-12 19:56:16 +01001313 return Bool(c.productVariables.Flatten_apex)
Jiyong Park8fd61922018-11-08 02:50:25 +09001314}
1315
Jiyong Park4da07972021-01-05 21:01:11 +09001316func (c *config) ForceApexSymlinkOptimization() bool {
1317 return Bool(c.productVariables.ForceApexSymlinkOptimization)
1318}
1319
Mohammad Samiul Islam3cd005d2020-11-26 13:32:26 +00001320func (c *config) CompressedApex() bool {
1321 return Bool(c.productVariables.CompressedApex)
1322}
1323
Jeongik Chac9464142019-01-07 12:07:27 +09001324func (c *config) EnforceSystemCertificate() bool {
1325 return Bool(c.productVariables.EnforceSystemCertificate)
1326}
1327
Colin Cross440e0d02020-06-11 11:32:11 -07001328func (c *config) EnforceSystemCertificateAllowList() []string {
1329 return c.productVariables.EnforceSystemCertificateAllowList
Jeongik Chac9464142019-01-07 12:07:27 +09001330}
1331
Jeongik Cha2cc570d2019-10-29 15:44:45 +09001332func (c *config) EnforceProductPartitionInterface() bool {
1333 return Bool(c.productVariables.EnforceProductPartitionInterface)
1334}
1335
JaeMan Parkff715562020-10-19 17:25:58 +09001336func (c *config) EnforceInterPartitionJavaSdkLibrary() bool {
1337 return Bool(c.productVariables.EnforceInterPartitionJavaSdkLibrary)
1338}
1339
1340func (c *config) InterPartitionJavaLibraryAllowList() []string {
1341 return c.productVariables.InterPartitionJavaLibraryAllowList
1342}
1343
Jooyung Han3ab2c3e2019-12-05 16:27:44 +09001344func (c *config) InstallExtraFlattenedApexes() bool {
1345 return Bool(c.productVariables.InstallExtraFlattenedApexes)
1346}
1347
Colin Crossf24a22a2019-01-31 14:12:44 -08001348func (c *config) ProductHiddenAPIStubs() []string {
1349 return c.productVariables.ProductHiddenAPIStubs
Colin Cross8faf8fc2019-01-16 15:15:52 -08001350}
1351
Colin Crossf24a22a2019-01-31 14:12:44 -08001352func (c *config) ProductHiddenAPIStubsSystem() []string {
1353 return c.productVariables.ProductHiddenAPIStubsSystem
Colin Cross8faf8fc2019-01-16 15:15:52 -08001354}
1355
Colin Crossf24a22a2019-01-31 14:12:44 -08001356func (c *config) ProductHiddenAPIStubsTest() []string {
1357 return c.productVariables.ProductHiddenAPIStubsTest
Colin Cross8faf8fc2019-01-16 15:15:52 -08001358}
Dan Willemsen71c74602019-04-10 12:27:35 -07001359
Dan Willemsen54879d12019-04-18 10:08:46 -07001360func (c *deviceConfig) TargetFSConfigGen() []string {
Dan Willemsen71c74602019-04-10 12:27:35 -07001361 return c.config.productVariables.TargetFSConfigGen
1362}
Inseob Kim0866b002019-04-15 20:21:29 +09001363
1364func (c *config) ProductPublicSepolicyDirs() []string {
1365 return c.productVariables.ProductPublicSepolicyDirs
1366}
1367
1368func (c *config) ProductPrivateSepolicyDirs() []string {
1369 return c.productVariables.ProductPrivateSepolicyDirs
1370}
1371
Colin Cross50ddcc42019-05-16 12:28:22 -07001372func (c *config) MissingUsesLibraries() []string {
1373 return c.productVariables.MissingUsesLibraries
1374}
1375
Inseob Kim1f086e22019-05-09 13:29:15 +09001376func (c *deviceConfig) DeviceArch() string {
1377 return String(c.config.productVariables.DeviceArch)
1378}
1379
1380func (c *deviceConfig) DeviceArchVariant() string {
1381 return String(c.config.productVariables.DeviceArchVariant)
1382}
1383
1384func (c *deviceConfig) DeviceSecondaryArch() string {
1385 return String(c.config.productVariables.DeviceSecondaryArch)
1386}
1387
1388func (c *deviceConfig) DeviceSecondaryArchVariant() string {
1389 return String(c.config.productVariables.DeviceSecondaryArchVariant)
1390}
Yifan Hong82db7352020-01-21 16:12:26 -08001391
1392func (c *deviceConfig) BoardUsesRecoveryAsBoot() bool {
1393 return Bool(c.config.productVariables.BoardUsesRecoveryAsBoot)
1394}
Yifan Hong97365ee2020-07-29 09:51:57 -07001395
1396func (c *deviceConfig) BoardKernelBinaries() []string {
1397 return c.config.productVariables.BoardKernelBinaries
1398}
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001399
Yifan Hong42bef8d2020-08-05 14:36:09 -07001400func (c *deviceConfig) BoardKernelModuleInterfaceVersions() []string {
1401 return c.config.productVariables.BoardKernelModuleInterfaceVersions
1402}
1403
Yifan Hongdd8dacc2020-10-21 15:40:17 -07001404func (c *deviceConfig) BoardMoveRecoveryResourcesToVendorBoot() bool {
1405 return Bool(c.config.productVariables.BoardMoveRecoveryResourcesToVendorBoot)
1406}
1407
Inseob Kim16ebd5a2020-12-09 23:08:17 +09001408func (c *deviceConfig) PlatformSepolicyVersion() string {
1409 return String(c.config.productVariables.PlatformSepolicyVersion)
1410}
1411
1412func (c *deviceConfig) BoardSepolicyVers() string {
1413 return String(c.config.productVariables.BoardSepolicyVers)
1414}
1415
1416func (c *deviceConfig) BoardReqdMaskPolicy() []string {
1417 return c.config.productVariables.BoardReqdMaskPolicy
1418}
1419
Inseob Kim7cf14652021-01-06 23:06:52 +09001420func (c *deviceConfig) DirectedVendorSnapshot() bool {
1421 return c.config.productVariables.DirectedVendorSnapshot
1422}
1423
1424func (c *deviceConfig) VendorSnapshotModules() map[string]bool {
1425 return c.config.productVariables.VendorSnapshotModules
1426}
1427
Jose Galmes4c6895e2021-02-09 07:44:30 -08001428func (c *deviceConfig) DirectedRecoverySnapshot() bool {
1429 return c.config.productVariables.DirectedRecoverySnapshot
1430}
1431
1432func (c *deviceConfig) RecoverySnapshotModules() map[string]bool {
1433 return c.config.productVariables.RecoverySnapshotModules
1434}
1435
Inseob Kim60c32f02020-12-21 22:53:05 +09001436func (c *deviceConfig) ShippingApiLevel() ApiLevel {
1437 if c.config.productVariables.ShippingApiLevel == nil {
1438 return NoneApiLevel
1439 }
1440 apiLevel, _ := strconv.Atoi(*c.config.productVariables.ShippingApiLevel)
1441 return uncheckedFinalApiLevel(apiLevel)
1442}
1443
Inseob Kim0cac7b42021-02-03 18:16:46 +09001444func (c *deviceConfig) BuildBrokenVendorPropertyNamespace() bool {
1445 return c.config.productVariables.BuildBrokenVendorPropertyNamespace
1446}
1447
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001448// The ConfiguredJarList struct provides methods for handling a list of (apex, jar) pairs.
1449// Such lists are used in the build system for things like bootclasspath jars or system server jars.
1450// The apex part is either an apex name, or a special names "platform" or "system_ext". Jar is a
1451// module name. The pairs come from Make product variables as a list of colon-separated strings.
1452//
1453// Examples:
1454// - "com.android.art:core-oj"
1455// - "platform:framework"
1456// - "system_ext:foo"
1457//
1458type ConfiguredJarList struct {
Jingwen Chenc711fec2020-11-22 23:52:50 -05001459 // A list of apex components, which can be an apex name,
1460 // or special names like "platform" or "system_ext".
1461 apexes []string
1462
1463 // A list of jar module name components.
1464 jars []string
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001465}
1466
Jingwen Chenc711fec2020-11-22 23:52:50 -05001467// Len returns the length of the list of jars.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001468func (l *ConfiguredJarList) Len() int {
1469 return len(l.jars)
1470}
1471
Jingwen Chenc711fec2020-11-22 23:52:50 -05001472// Jar returns the idx-th jar component of (apex, jar) pairs.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001473func (l *ConfiguredJarList) Jar(idx int) string {
1474 return l.jars[idx]
1475}
1476
Jingwen Chenc711fec2020-11-22 23:52:50 -05001477// Apex returns the idx-th apex component of (apex, jar) pairs.
Paul Duffin9a89a2a2020-10-28 19:20:06 +00001478func (l *ConfiguredJarList) Apex(idx int) string {
1479 return l.apexes[idx]
1480}
1481
Jingwen Chenc711fec2020-11-22 23:52:50 -05001482// ContainsJar returns true if the (apex, jar) pairs contains a pair with the
1483// given jar module name.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001484func (l *ConfiguredJarList) ContainsJar(jar string) bool {
1485 return InList(jar, l.jars)
1486}
1487
1488// If the list contains the given (apex, jar) pair.
1489func (l *ConfiguredJarList) containsApexJarPair(apex, jar string) bool {
1490 for i := 0; i < l.Len(); i++ {
Paul Duffin1e8c6072020-10-23 18:28:55 +01001491 if apex == l.apexes[i] && jar == l.jars[i] {
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001492 return true
1493 }
1494 }
1495 return false
1496}
1497
Jingwen Chenc711fec2020-11-22 23:52:50 -05001498// IndexOfJar returns the first pair with the given jar name on the list, or -1
1499// if not found.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001500func (l *ConfiguredJarList) IndexOfJar(jar string) int {
1501 return IndexList(jar, l.jars)
1502}
1503
Paul Duffin7d584e92020-10-23 18:26:03 +01001504func copyAndAppend(list []string, item string) []string {
1505 // Create the result list to be 1 longer than the input.
1506 result := make([]string, len(list)+1)
1507
1508 // Copy the whole input list into the result.
1509 count := copy(result, list)
1510
1511 // Insert the extra item at the end.
1512 result[count] = item
1513
1514 return result
1515}
1516
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001517// Append an (apex, jar) pair to the list.
Paul Duffin7d584e92020-10-23 18:26:03 +01001518func (l *ConfiguredJarList) Append(apex string, jar string) ConfiguredJarList {
1519 // Create a copy of the backing arrays before appending to avoid sharing backing
1520 // arrays that are mutated across instances.
1521 apexes := copyAndAppend(l.apexes, apex)
1522 jars := copyAndAppend(l.jars, jar)
1523
1524 return ConfiguredJarList{apexes, jars}
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001525}
1526
Jingwen Chenc711fec2020-11-22 23:52:50 -05001527// RemoveList filters out a list of (apex, jar) pairs from the receiving list of pairs.
Paul Duffin7d584e92020-10-23 18:26:03 +01001528func (l *ConfiguredJarList) RemoveList(list ConfiguredJarList) ConfiguredJarList {
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001529 apexes := make([]string, 0, l.Len())
1530 jars := make([]string, 0, l.Len())
1531
1532 for i, jar := range l.jars {
Paul Duffin1e8c6072020-10-23 18:28:55 +01001533 apex := l.apexes[i]
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001534 if !list.containsApexJarPair(apex, jar) {
1535 apexes = append(apexes, apex)
1536 jars = append(jars, jar)
1537 }
1538 }
1539
Paul Duffin7d584e92020-10-23 18:26:03 +01001540 return ConfiguredJarList{apexes, jars}
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001541}
1542
Jingwen Chenc711fec2020-11-22 23:52:50 -05001543// CopyOfJars returns a copy of the list of strings containing jar module name
1544// components.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001545func (l *ConfiguredJarList) CopyOfJars() []string {
1546 return CopyOf(l.jars)
1547}
1548
Jingwen Chenc711fec2020-11-22 23:52:50 -05001549// CopyOfApexJarPairs returns a copy of the list of strings with colon-separated
1550// (apex, jar) pairs.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001551func (l *ConfiguredJarList) CopyOfApexJarPairs() []string {
1552 pairs := make([]string, 0, l.Len())
1553
1554 for i, jar := range l.jars {
Paul Duffin1e8c6072020-10-23 18:28:55 +01001555 apex := l.apexes[i]
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001556 pairs = append(pairs, apex+":"+jar)
1557 }
1558
1559 return pairs
1560}
1561
Jingwen Chenc711fec2020-11-22 23:52:50 -05001562// BuildPaths returns a list of build paths based on the given directory prefix.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001563func (l *ConfiguredJarList) BuildPaths(ctx PathContext, dir OutputPath) WritablePaths {
1564 paths := make(WritablePaths, l.Len())
1565 for i, jar := range l.jars {
1566 paths[i] = dir.Join(ctx, ModuleStem(jar)+".jar")
1567 }
1568 return paths
1569}
1570
Jingwen Chenc711fec2020-11-22 23:52:50 -05001571// UnmarshalJSON converts JSON configuration from raw bytes into a
1572// ConfiguredJarList structure.
Paul Duffin69d1fb12020-10-23 21:14:20 +01001573func (l *ConfiguredJarList) UnmarshalJSON(b []byte) error {
1574 // Try and unmarshal into a []string each item of which contains a pair
1575 // <apex>:<jar>.
1576 var list []string
1577 err := json.Unmarshal(b, &list)
1578 if err != nil {
1579 // Did not work so return
1580 return err
1581 }
1582
1583 apexes, jars, err := splitListOfPairsIntoPairOfLists(list)
1584 if err != nil {
1585 return err
1586 }
1587 l.apexes = apexes
1588 l.jars = jars
1589 return nil
1590}
1591
Jingwen Chenc711fec2020-11-22 23:52:50 -05001592// ModuleStem hardcodes the stem of framework-minus-apex to return "framework".
1593//
1594// TODO(b/139391334): hard coded until we find a good way to query the stem of a
1595// module before any other mutators are run.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001596func ModuleStem(module string) string {
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001597 if module == "framework-minus-apex" {
1598 return "framework"
1599 }
1600 return module
1601}
1602
Jingwen Chenc711fec2020-11-22 23:52:50 -05001603// DevicePaths computes the on-device paths for the list of (apex, jar) pairs,
1604// based on the operating system.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001605func (l *ConfiguredJarList) DevicePaths(cfg Config, ostype OsType) []string {
1606 paths := make([]string, l.Len())
1607 for i, jar := range l.jars {
1608 apex := l.apexes[i]
1609 name := ModuleStem(jar) + ".jar"
1610
1611 var subdir string
1612 if apex == "platform" {
1613 subdir = "system/framework"
1614 } else if apex == "system_ext" {
1615 subdir = "system_ext/framework"
1616 } else {
1617 subdir = filepath.Join("apex", apex, "javalib")
1618 }
1619
1620 if ostype.Class == Host {
1621 paths[i] = filepath.Join(cfg.Getenv("OUT_DIR"), "host", cfg.PrebuiltOS(), subdir, name)
1622 } else {
1623 paths[i] = filepath.Join("/", subdir, name)
1624 }
1625 }
1626 return paths
1627}
1628
Paul Duffin7d584e92020-10-23 18:26:03 +01001629func (l *ConfiguredJarList) String() string {
1630 var pairs []string
1631 for i := 0; i < l.Len(); i++ {
1632 pairs = append(pairs, l.apexes[i]+":"+l.jars[i])
1633 }
1634 return strings.Join(pairs, ",")
1635}
1636
Paul Duffin01416602020-10-23 21:04:03 +01001637func splitListOfPairsIntoPairOfLists(list []string) ([]string, []string, error) {
1638 // Now we need to populate this list by splitting each item in the slice of
1639 // pairs and appending them to the appropriate list of apexes or jars.
1640 apexes := make([]string, len(list))
1641 jars := make([]string, len(list))
1642
1643 for i, apexjar := range list {
1644 apex, jar, err := splitConfiguredJarPair(apexjar)
1645 if err != nil {
1646 return nil, nil, err
1647 }
1648 apexes[i] = apex
1649 jars[i] = jar
1650 }
1651
1652 return apexes, jars, nil
1653}
1654
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001655// Expected format for apexJarValue = <apex name>:<jar name>
Paul Duffin01416602020-10-23 21:04:03 +01001656func splitConfiguredJarPair(str string) (string, string, error) {
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001657 pair := strings.SplitN(str, ":", 2)
1658 if len(pair) == 2 {
Paul Duffin9c3ac962021-02-03 14:11:27 +00001659 apex := pair[0]
1660 jar := pair[1]
1661 if apex == "" {
1662 return apex, jar, fmt.Errorf("invalid apex '%s' in <apex>:<jar> pair '%s', expected format: <apex>:<jar>", apex, str)
1663 }
1664 return apex, jar, nil
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001665 } else {
Paul Duffin01416602020-10-23 21:04:03 +01001666 return "error-apex", "error-jar", fmt.Errorf("malformed (apex, jar) pair: '%s', expected format: <apex>:<jar>", str)
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001667 }
1668}
1669
Paul Duffin9c3ac962021-02-03 14:11:27 +00001670// CreateTestConfiguredJarList is a function to create ConfiguredJarList for tests.
Paul Duffine10dfa42020-10-23 21:23:44 +01001671func CreateTestConfiguredJarList(list []string) ConfiguredJarList {
Paul Duffin9c3ac962021-02-03 14:11:27 +00001672 // Create the ConfiguredJarList in as similar way as it is created at runtime by marshalling to
1673 // a json list of strings and then unmarshalling into a ConfiguredJarList instance.
1674 b, err := json.Marshal(list)
Paul Duffin01416602020-10-23 21:04:03 +01001675 if err != nil {
Paul Duffine10dfa42020-10-23 21:23:44 +01001676 panic(err)
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001677 }
1678
Paul Duffin9c3ac962021-02-03 14:11:27 +00001679 var jarList ConfiguredJarList
1680 err = json.Unmarshal(b, &jarList)
1681 if err != nil {
1682 panic(err)
1683 }
1684
1685 return jarList
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001686}
1687
Jingwen Chenc711fec2020-11-22 23:52:50 -05001688// EmptyConfiguredJarList returns an empty jar list.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001689func EmptyConfiguredJarList() ConfiguredJarList {
1690 return ConfiguredJarList{}
1691}
1692
1693var earlyBootJarsKey = NewOnceKey("earlyBootJars")
1694
1695func (c *config) BootJars() []string {
1696 return c.Once(earlyBootJarsKey, func() interface{} {
Paul Duffin69d1fb12020-10-23 21:14:20 +01001697 list := c.productVariables.BootJars.CopyOfJars()
Jingwen Chenc711fec2020-11-22 23:52:50 -05001698 return append(list, c.productVariables.UpdatableBootJars.CopyOfJars()...)
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001699 }).([]string)
1700}
Paul Duffin9a89a2a2020-10-28 19:20:06 +00001701
1702func (c *config) NonUpdatableBootJars() ConfiguredJarList {
1703 return c.productVariables.BootJars
1704}
1705
1706func (c *config) UpdatableBootJars() ConfiguredJarList {
1707 return c.productVariables.UpdatableBootJars
1708}