blob: 043cbcad53e9bcb137e0391be21e5c7f3832e5f1 [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
Lukacs T. Berki89e9a162021-03-12 08:31:32 +010071func (c Config) NinjaBuildDir() string {
72 return c.buildDir
73}
74
Lukacs T. Berki5f6cb1d2021-03-17 15:03:14 +010075func (c Config) DebugCompilation() bool {
76 return false // Never compile Go code in the main build for debugging
77}
78
Lukacs T. Berki89e9a162021-03-12 08:31:32 +010079func (c Config) SrcDir() string {
80 return c.srcDir
81}
82
Jingwen Chenc711fec2020-11-22 23:52:50 -050083// A DeviceConfig object represents the configuration for a particular device
84// being built. For now there will only be one of these, but in the future there
85// may be multiple devices being built.
Colin Cross9272ade2016-08-17 15:24:12 -070086type DeviceConfig struct {
87 *deviceConfig
88}
89
Jingwen Chenc711fec2020-11-22 23:52:50 -050090// VendorConfig represents the configuration for vendor-specific behavior.
Colin Cross9d34f352019-11-22 16:03:51 -080091type VendorConfig soongconfig.SoongConfig
Dan Willemsen0fe78662018-03-26 12:41:18 -070092
Jingwen Chenc711fec2020-11-22 23:52:50 -050093// Definition of general build configuration for soong_build. Some of these
Jingwen Chenc4d91bc2020-11-24 22:59:26 -050094// product configuration values are read from Kati-generated soong.variables.
Colin Cross1332b002015-04-07 17:11:30 -070095type config struct {
Jingwen Chenc711fec2020-11-22 23:52:50 -050096 // Options configurable with soong.variables
Dan Willemsen45133ac2018-03-09 21:22:06 -080097 productVariables productVariables
Colin Cross3f40fa42015-01-30 17:27:36 -080098
Dan Willemsen674dc7f2018-03-12 18:06:05 -070099 // Only available on configs created by TestConfig
100 TestProductVariables *productVariables
101
Jingwen Chenc711fec2020-11-22 23:52:50 -0500102 // A specialized context object for Bazel/Soong mixed builds and migration
103 // purposes.
Chris Parsonsf3c96ef2020-09-29 02:23:17 -0400104 BazelContext BazelContext
105
Dan Willemsen87b17d12015-07-14 00:39:06 -0700106 ProductVariablesFileName string
107
Jaewoong Jung642916f2020-10-09 17:25:15 -0700108 Targets map[OsType][]Target
109 BuildOSTarget Target // the Target for tools run on the build machine
110 BuildOSCommonTarget Target // the Target for common (java) tools run on the build machine
111 AndroidCommonTarget Target // the Target for common modules for the Android device
112 AndroidFirstDeviceTarget Target // the first Target for modules for the Android device
Dan Willemsen218f6562015-07-08 18:13:11 -0700113
Jingwen Chenc711fec2020-11-22 23:52:50 -0500114 // multilibConflicts for an ArchType is true if there is earlier configured
115 // device architecture with the same multilib value.
Colin Cross3b19f5d2019-09-17 14:45:31 -0700116 multilibConflicts map[ArchType]bool
117
Colin Cross9272ade2016-08-17 15:24:12 -0700118 deviceConfig *deviceConfig
119
Chris Parsons8f232a22020-06-23 17:37:05 -0400120 srcDir string // the path of the root source directory
121 buildDir string // the path of the build output directory
122 moduleListFile string // the path to the file which lists blueprint files to parse.
Colin Crossc1e86a32015-04-15 12:33:28 -0700123
Colin Cross6ccbc912017-10-10 23:07:38 -0700124 env map[string]string
Dan Willemsene7680ba2015-09-11 17:06:19 -0700125 envLock sync.Mutex
126 envDeps map[string]string
127 envFrozen bool
Dan Willemsen5ba07e82015-12-11 13:51:06 -0800128
Jingwen Chencda22c92020-11-23 00:22:30 -0500129 // Changes behavior based on whether Kati runs after soong_build, or if soong_build
130 // runs standalone.
131 katiEnabled bool
Colin Cross1e7d3702016-08-24 15:25:47 -0700132
Colin Cross32616ed2017-09-05 21:56:44 -0700133 captureBuild bool // true for tests, saves build parameters for each module
134 ignoreEnvironment bool // true for tests, returns empty from all Getenv calls
Colin Crosscec81712017-07-13 14:43:27 -0700135
Colin Crosse87040b2017-12-11 15:52:26 -0800136 stopBefore bootstrap.StopBefore
137
Colin Cross98be1bb2019-12-13 20:41:13 -0800138 fs pathtools.FileSystem
139 mockBpList string
140
Colin Cross5e6a7972020-06-07 16:56:32 -0700141 // If testAllowNonExistentPaths is true then PathForSource and PathForModuleSrc won't error
142 // in tests when a path doesn't exist.
Pedro Loureiro5d190cc2021-02-15 15:41:33 +0000143 TestAllowNonExistentPaths bool
Colin Cross5e6a7972020-06-07 16:56:32 -0700144
Jingwen Chenc711fec2020-11-22 23:52:50 -0500145 // The list of files that when changed, must invalidate soong_build to
146 // regenerate build.ninja.
Colin Cross12129292020-10-29 18:23:58 -0700147 ninjaFileDepsSet sync.Map
148
Colin Cross9272ade2016-08-17 15:24:12 -0700149 OncePer
150}
151
152type deviceConfig struct {
Dan Willemsen00269f22017-07-06 16:59:48 -0700153 config *config
Colin Cross9272ade2016-08-17 15:24:12 -0700154 OncePer
Colin Cross3f40fa42015-01-30 17:27:36 -0800155}
156
Colin Cross485e5722015-08-27 13:28:01 -0700157type jsonConfigurable interface {
Colin Cross27385972015-09-18 10:57:10 -0700158 SetDefaultConfig()
Colin Cross485e5722015-08-27 13:28:01 -0700159}
Colin Cross3f40fa42015-01-30 17:27:36 -0800160
Colin Cross485e5722015-08-27 13:28:01 -0700161func loadConfig(config *config) error {
Colin Cross988414c2020-01-11 01:11:46 +0000162 return loadFromConfigFile(&config.productVariables, absolutePath(config.ProductVariablesFileName))
Colin Cross485e5722015-08-27 13:28:01 -0700163}
164
Jingwen Chenc711fec2020-11-22 23:52:50 -0500165// loadFromConfigFile loads and decodes configuration options from a JSON file
166// in the current working directory.
Colin Cross485e5722015-08-27 13:28:01 -0700167func loadFromConfigFile(configurable jsonConfigurable, filename string) error {
Colin Cross3f40fa42015-01-30 17:27:36 -0800168 // Try to open the file
Colin Cross485e5722015-08-27 13:28:01 -0700169 configFileReader, err := os.Open(filename)
Colin Cross3f40fa42015-01-30 17:27:36 -0800170 defer configFileReader.Close()
171 if os.IsNotExist(err) {
172 // Need to create a file, so that blueprint & ninja don't get in
173 // a dependency tracking loop.
174 // Make a file-configurable-options with defaults, write it out using
175 // a json writer.
Colin Cross27385972015-09-18 10:57:10 -0700176 configurable.SetDefaultConfig()
177 err = saveToConfigFile(configurable, filename)
Colin Cross3f40fa42015-01-30 17:27:36 -0800178 if err != nil {
179 return err
180 }
Colin Cross15cd21a2018-02-27 11:26:02 -0800181 } else if err != nil {
182 return fmt.Errorf("config file: could not open %s: %s", filename, err.Error())
Colin Cross3f40fa42015-01-30 17:27:36 -0800183 } else {
184 // Make a decoder for it
185 jsonDecoder := json.NewDecoder(configFileReader)
Colin Cross485e5722015-08-27 13:28:01 -0700186 err = jsonDecoder.Decode(configurable)
Colin Cross3f40fa42015-01-30 17:27:36 -0800187 if err != nil {
Colin Cross15cd21a2018-02-27 11:26:02 -0800188 return fmt.Errorf("config file: %s did not parse correctly: %s", filename, err.Error())
Colin Cross3f40fa42015-01-30 17:27:36 -0800189 }
190 }
191
Colin Cross3f40fa42015-01-30 17:27:36 -0800192 // No error
193 return nil
194}
195
Colin Crossd8f20142016-11-03 09:43:26 -0700196// atomically writes the config file in case two copies of soong_build are running simultaneously
197// (for example, docs generation and ninja manifest generation)
Colin Cross485e5722015-08-27 13:28:01 -0700198func saveToConfigFile(config jsonConfigurable, filename string) error {
Colin Cross3f40fa42015-01-30 17:27:36 -0800199 data, err := json.MarshalIndent(&config, "", " ")
200 if err != nil {
201 return fmt.Errorf("cannot marshal config data: %s", err.Error())
202 }
203
Colin Crossd8f20142016-11-03 09:43:26 -0700204 f, err := ioutil.TempFile(filepath.Dir(filename), "config")
Colin Cross3f40fa42015-01-30 17:27:36 -0800205 if err != nil {
Jingwen Chenc711fec2020-11-22 23:52:50 -0500206 return fmt.Errorf("cannot create empty config file %s: %s", filename, err.Error())
Colin Cross3f40fa42015-01-30 17:27:36 -0800207 }
Colin Crossd8f20142016-11-03 09:43:26 -0700208 defer os.Remove(f.Name())
209 defer f.Close()
Colin Cross3f40fa42015-01-30 17:27:36 -0800210
Colin Crossd8f20142016-11-03 09:43:26 -0700211 _, err = f.Write(data)
Colin Cross3f40fa42015-01-30 17:27:36 -0800212 if err != nil {
Colin Cross485e5722015-08-27 13:28:01 -0700213 return fmt.Errorf("default config file: %s could not be written: %s", filename, err.Error())
214 }
215
Colin Crossd8f20142016-11-03 09:43:26 -0700216 _, err = f.WriteString("\n")
Colin Cross485e5722015-08-27 13:28:01 -0700217 if err != nil {
218 return fmt.Errorf("default config file: %s could not be written: %s", filename, err.Error())
Colin Cross3f40fa42015-01-30 17:27:36 -0800219 }
220
Colin Crossd8f20142016-11-03 09:43:26 -0700221 f.Close()
222 os.Rename(f.Name(), filename)
223
Colin Cross3f40fa42015-01-30 17:27:36 -0800224 return nil
225}
226
Colin Cross988414c2020-01-11 01:11:46 +0000227// NullConfig returns a mostly empty Config for use by standalone tools like dexpreopt_gen that
228// use the android package.
229func NullConfig(buildDir string) Config {
230 return Config{
231 config: &config{
232 buildDir: buildDir,
233 fs: pathtools.OsFs,
234 },
235 }
236}
237
Jingwen Chenc711fec2020-11-22 23:52:50 -0500238// TestConfig returns a Config object for testing.
Colin Cross98be1bb2019-12-13 20:41:13 -0800239func TestConfig(buildDir string, env map[string]string, bp string, fs map[string][]byte) Config {
Colin Cross9c6241f2019-04-22 15:51:26 -0700240 envCopy := make(map[string]string)
241 for k, v := range env {
242 envCopy[k] = v
243 }
244
Jingwen Chen2838c812020-11-23 01:06:40 -0500245 // Copy the real PATH value to the test environment, it's needed by
246 // NonHermeticHostSystemTool() used in x86_darwin_host.go
Lukacs T. Berkideba7212021-03-04 10:50:10 +0100247 envCopy["PATH"] = os.Getenv("PATH")
Colin Cross9c6241f2019-04-22 15:51:26 -0700248
Dan Willemsen00269f22017-07-06 16:59:48 -0700249 config := &config{
Dan Willemsen45133ac2018-03-09 21:22:06 -0800250 productVariables: productVariables{
Dan Albert4f378d72020-07-23 17:32:15 -0700251 DeviceName: stringPtr("test_device"),
252 Platform_sdk_version: intPtr(30),
253 Platform_sdk_codename: stringPtr("S"),
254 Platform_version_active_codenames: []string{"S"},
255 DeviceSystemSdkVersions: []string{"14", "15"},
256 Platform_systemsdk_versions: []string{"29", "30"},
257 AAPTConfig: []string{"normal", "large", "xlarge", "hdpi", "xhdpi", "xxhdpi"},
258 AAPTPreferredConfig: stringPtr("xhdpi"),
259 AAPTCharacteristics: stringPtr("nosdcard"),
260 AAPTPrebuiltDPI: []string{"xhdpi", "xxhdpi"},
261 UncompressPrivAppDex: boolPtr(true),
Inseob Kim60c32f02020-12-21 22:53:05 +0900262 ShippingApiLevel: stringPtr("30"),
Dan Willemsen00269f22017-07-06 16:59:48 -0700263 },
264
Colin Cross6ccbc912017-10-10 23:07:38 -0700265 buildDir: buildDir,
266 captureBuild: true,
Colin Cross9c6241f2019-04-22 15:51:26 -0700267 env: envCopy,
Colin Cross5e6a7972020-06-07 16:56:32 -0700268
269 // Set testAllowNonExistentPaths so that test contexts don't need to specify every path
270 // passed to PathForSource or PathForModuleSrc.
Pedro Loureiro5d190cc2021-02-15 15:41:33 +0000271 TestAllowNonExistentPaths: true,
Chris Parsonsf3c96ef2020-09-29 02:23:17 -0400272
273 BazelContext: noopBazelContext{},
Dan Willemsen00269f22017-07-06 16:59:48 -0700274 }
275 config.deviceConfig = &deviceConfig{
276 config: config,
277 }
Dan Willemsen45133ac2018-03-09 21:22:06 -0800278 config.TestProductVariables = &config.productVariables
Dan Willemsen00269f22017-07-06 16:59:48 -0700279
Colin Cross98be1bb2019-12-13 20:41:13 -0800280 config.mockFileSystem(bp, fs)
281
Dan Willemsen00269f22017-07-06 16:59:48 -0700282 return Config{config}
Colin Crossce75d2c2016-10-06 16:12:58 -0700283}
284
Jingwen Chenc711fec2020-11-22 23:52:50 -0500285// TestArchConfigNativeBridge returns a Config object suitable for using
286// for tests that need to run the arch mutator for native bridge supported
287// archs.
Colin Cross98be1bb2019-12-13 20:41:13 -0800288func TestArchConfigNativeBridge(buildDir string, env map[string]string, bp string, fs map[string][]byte) Config {
289 testConfig := TestArchConfig(buildDir, env, bp, fs)
dimitry1f33e402019-03-26 12:39:31 +0100290 config := testConfig.config
291
Colin Cross0d99f7c2019-05-14 16:01:24 -0700292 config.Targets[Android] = []Target{
Jiyong Park1613e552020-09-14 19:43:17 +0900293 {Android, Arch{ArchType: X86_64, ArchVariant: "silvermont", Abi: []string{"arm64-v8a"}}, NativeBridgeDisabled, "", "", false},
294 {Android, Arch{ArchType: X86, ArchVariant: "silvermont", Abi: []string{"armeabi-v7a"}}, NativeBridgeDisabled, "", "", false},
295 {Android, Arch{ArchType: Arm64, ArchVariant: "armv8-a", Abi: []string{"arm64-v8a"}}, NativeBridgeEnabled, "x86_64", "arm64", false},
296 {Android, Arch{ArchType: Arm, ArchVariant: "armv7-a-neon", Abi: []string{"armeabi-v7a"}}, NativeBridgeEnabled, "x86", "arm", false},
dimitry1f33e402019-03-26 12:39:31 +0100297 }
298
299 return testConfig
300}
301
Paul Duffinecdac8a2021-02-24 19:18:42 +0000302func fuchsiaTargets() map[OsType][]Target {
303 return map[OsType][]Target{
304 Fuchsia: {
Jiyong Park1613e552020-09-14 19:43:17 +0900305 {Fuchsia, Arch{ArchType: Arm64, ArchVariant: "", Abi: []string{"arm64-v8a"}}, NativeBridgeDisabled, "", "", false},
Doug Hornc32c6b02019-01-17 14:44:05 -0800306 },
Paul Duffinecdac8a2021-02-24 19:18:42 +0000307 BuildOs: {
Jiyong Park1613e552020-09-14 19:43:17 +0900308 {BuildOs, Arch{ArchType: X86_64}, NativeBridgeDisabled, "", "", false},
Doug Hornc32c6b02019-01-17 14:44:05 -0800309 },
310 }
Doug Hornc32c6b02019-01-17 14:44:05 -0800311}
312
Paul Duffinecdac8a2021-02-24 19:18:42 +0000313var PrepareForTestSetDeviceToFuchsia = FixtureModifyConfig(func(config Config) {
314 config.Targets = fuchsiaTargets()
315})
316
Paul Duffin35816122021-02-24 01:49:52 +0000317func modifyTestConfigToSupportArchMutator(testConfig Config) {
Colin Crossae4c6182017-09-15 17:33:55 -0700318 config := testConfig.config
319
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700320 config.Targets = map[OsType][]Target{
321 Android: []Target{
Jiyong Park1613e552020-09-14 19:43:17 +0900322 {Android, Arch{ArchType: Arm64, ArchVariant: "armv8-a", Abi: []string{"arm64-v8a"}}, NativeBridgeDisabled, "", "", false},
323 {Android, Arch{ArchType: Arm, ArchVariant: "armv7-a-neon", Abi: []string{"armeabi-v7a"}}, NativeBridgeDisabled, "", "", false},
Colin Crossae4c6182017-09-15 17:33:55 -0700324 },
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700325 BuildOs: []Target{
Jiyong Park1613e552020-09-14 19:43:17 +0900326 {BuildOs, Arch{ArchType: X86_64}, NativeBridgeDisabled, "", "", false},
327 {BuildOs, Arch{ArchType: X86}, NativeBridgeDisabled, "", "", false},
Colin Crossae4c6182017-09-15 17:33:55 -0700328 },
329 }
330
Colin Cross0d99f7c2019-05-14 16:01:24 -0700331 if runtime.GOOS == "darwin" {
332 config.Targets[BuildOs] = config.Targets[BuildOs][:1]
333 }
334
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700335 config.BuildOSTarget = config.Targets[BuildOs][0]
336 config.BuildOSCommonTarget = getCommonTargets(config.Targets[BuildOs])[0]
337 config.AndroidCommonTarget = getCommonTargets(config.Targets[Android])[0]
Jaewoong Jung642916f2020-10-09 17:25:15 -0700338 config.AndroidFirstDeviceTarget = firstTarget(config.Targets[Android], "lib64", "lib32")[0]
Inseob Kim1f086e22019-05-09 13:29:15 +0900339 config.TestProductVariables.DeviceArch = proptools.StringPtr("arm64")
340 config.TestProductVariables.DeviceArchVariant = proptools.StringPtr("armv8-a")
341 config.TestProductVariables.DeviceSecondaryArch = proptools.StringPtr("arm")
342 config.TestProductVariables.DeviceSecondaryArchVariant = proptools.StringPtr("armv7-a-neon")
Paul Duffin35816122021-02-24 01:49:52 +0000343}
Colin Cross2a076922018-10-04 23:28:25 -0700344
Paul Duffin35816122021-02-24 01:49:52 +0000345// TestArchConfig returns a Config object suitable for using for tests that
346// need to run the arch mutator.
347func TestArchConfig(buildDir string, env map[string]string, bp string, fs map[string][]byte) Config {
348 testConfig := TestConfig(buildDir, env, bp, fs)
349 modifyTestConfigToSupportArchMutator(testConfig)
Colin Crossae4c6182017-09-15 17:33:55 -0700350 return testConfig
351}
352
Jingwen Chenc711fec2020-11-22 23:52:50 -0500353// ConfigForAdditionalRun is a config object which is "reset" for another
354// bootstrap run. Only per-run data is reset. Data which needs to persist across
355// multiple runs in the same program execution is carried over (such as Bazel
356// context or environment deps).
Chris Parsonsf3c96ef2020-09-29 02:23:17 -0400357func ConfigForAdditionalRun(c Config) (Config, error) {
358 newConfig, err := NewConfig(c.srcDir, c.buildDir, c.moduleListFile)
359 if err != nil {
360 return Config{}, err
361 }
362 newConfig.BazelContext = c.BazelContext
363 newConfig.envDeps = c.envDeps
364 return newConfig, nil
365}
366
Jingwen Chenc711fec2020-11-22 23:52:50 -0500367// NewConfig creates a new Config object. The srcDir argument specifies the path
368// to the root source directory. It also loads the config file, if found.
Chris Parsons8f232a22020-06-23 17:37:05 -0400369func NewConfig(srcDir, buildDir string, moduleListFile string) (Config, error) {
Jingwen Chenc711fec2020-11-22 23:52:50 -0500370 // Make a config with default options.
Colin Cross9272ade2016-08-17 15:24:12 -0700371 config := &config{
Colin Cross9272ade2016-08-17 15:24:12 -0700372 ProductVariablesFileName: filepath.Join(buildDir, productVariablesFileName),
Dan Willemsen87b17d12015-07-14 00:39:06 -0700373
Colin Cross6ccbc912017-10-10 23:07:38 -0700374 env: originalEnv,
375
Colin Cross3b19f5d2019-09-17 14:45:31 -0700376 srcDir: srcDir,
377 buildDir: buildDir,
378 multilibConflicts: make(map[ArchType]bool),
Colin Cross98be1bb2019-12-13 20:41:13 -0800379
Chris Parsons8f232a22020-06-23 17:37:05 -0400380 moduleListFile: moduleListFile,
381 fs: pathtools.NewOsFs(absSrcDir),
Colin Cross68f55102015-03-25 14:43:57 -0700382 }
Colin Cross3f40fa42015-01-30 17:27:36 -0800383
Dan Willemsen00269f22017-07-06 16:59:48 -0700384 config.deviceConfig = &deviceConfig{
Colin Cross9272ade2016-08-17 15:24:12 -0700385 config: config,
386 }
387
Liz Kammer7941b302020-07-28 13:27:34 -0700388 // Soundness check of the build and source directories. This won't catch strange
389 // configurations with symlinks, but at least checks the obvious case.
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700390 absBuildDir, err := filepath.Abs(buildDir)
391 if err != nil {
392 return Config{}, err
393 }
394
395 absSrcDir, err := filepath.Abs(srcDir)
396 if err != nil {
397 return Config{}, err
398 }
399
400 if strings.HasPrefix(absSrcDir, absBuildDir) {
401 return Config{}, fmt.Errorf("Build dir must not contain source directory")
402 }
403
Colin Cross3f40fa42015-01-30 17:27:36 -0800404 // Load any configurable options from the configuration file
Colin Cross9272ade2016-08-17 15:24:12 -0700405 err = loadConfig(config)
Colin Cross3f40fa42015-01-30 17:27:36 -0800406 if err != nil {
Colin Crossc3c0a492015-04-10 15:43:55 -0700407 return Config{}, err
Colin Cross3f40fa42015-01-30 17:27:36 -0800408 }
409
Jingwen Chencda22c92020-11-23 00:22:30 -0500410 KatiEnabledMarkerFile := filepath.Join(buildDir, ".soong.kati_enabled")
411 if _, err := os.Stat(absolutePath(KatiEnabledMarkerFile)); err == nil {
412 config.katiEnabled = true
Dan Willemsen5ba07e82015-12-11 13:51:06 -0800413 }
414
Jingwen Chenc711fec2020-11-22 23:52:50 -0500415 // Sets up the map of target OSes to the finer grained compilation targets
416 // that are configured from the product variables.
Colin Crossa1ad8d12016-06-01 17:09:44 -0700417 targets, err := decodeTargetProductVariables(config)
Dan Willemsen218f6562015-07-08 18:13:11 -0700418 if err != nil {
419 return Config{}, err
420 }
421
Paul Duffin1356d8c2020-02-25 19:26:33 +0000422 // Make the CommonOS OsType available for all products.
423 targets[CommonOS] = []Target{commonTargetMap[CommonOS.Name]}
424
Dan Albert4098deb2016-10-19 14:04:41 -0700425 var archConfig []archConfig
Jingwen Chenc4d91bc2020-11-24 22:59:26 -0500426 if config.NdkAbis() {
Dan Albert4098deb2016-10-19 14:04:41 -0700427 archConfig = getNdkAbisConfig()
Martin Stjernholmc1ecc432019-11-15 15:00:31 +0000428 } else if config.AmlAbis() {
429 archConfig = getAmlAbisConfig()
Dan Albert4098deb2016-10-19 14:04:41 -0700430 }
431
432 if archConfig != nil {
Dan Willemsen01a3c252019-01-11 19:02:16 -0800433 androidTargets, err := decodeArchSettings(Android, archConfig)
Dan Willemsen322acaf2016-01-12 23:07:05 -0800434 if err != nil {
435 return Config{}, err
436 }
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700437 targets[Android] = androidTargets
Dan Willemsen322acaf2016-01-12 23:07:05 -0800438 }
439
Colin Cross3b19f5d2019-09-17 14:45:31 -0700440 multilib := make(map[string]bool)
441 for _, target := range targets[Android] {
442 if seen := multilib[target.Arch.ArchType.Multilib]; seen {
443 config.multilibConflicts[target.Arch.ArchType] = true
444 }
445 multilib[target.Arch.ArchType.Multilib] = true
446 }
447
Jingwen Chenc711fec2020-11-22 23:52:50 -0500448 // Map of OS to compilation targets.
Colin Crossa1ad8d12016-06-01 17:09:44 -0700449 config.Targets = targets
Jingwen Chenc711fec2020-11-22 23:52:50 -0500450
451 // Compilation targets for host tools.
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700452 config.BuildOSTarget = config.Targets[BuildOs][0]
453 config.BuildOSCommonTarget = getCommonTargets(config.Targets[BuildOs])[0]
Jingwen Chenc711fec2020-11-22 23:52:50 -0500454
455 // Compilation targets for Android.
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700456 if len(config.Targets[Android]) > 0 {
457 config.AndroidCommonTarget = getCommonTargets(config.Targets[Android])[0]
Jaewoong Jung642916f2020-10-09 17:25:15 -0700458 config.AndroidFirstDeviceTarget = firstTarget(config.Targets[Android], "lib64", "lib32")[0]
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700459 }
Dan Willemsen218f6562015-07-08 18:13:11 -0700460
Colin Cross1a6acd42020-06-16 17:51:46 -0700461 if Bool(config.productVariables.GcovCoverage) && Bool(config.productVariables.ClangCoverage) {
462 return Config{}, fmt.Errorf("GcovCoverage and ClangCoverage cannot both be set")
463 }
464
465 config.productVariables.Native_coverage = proptools.BoolPtr(
466 Bool(config.productVariables.GcovCoverage) ||
467 Bool(config.productVariables.ClangCoverage))
468
Chris Parsonsf3c96ef2020-09-29 02:23:17 -0400469 config.BazelContext, err = NewBazelContext(config)
Colin Cross3f40fa42015-01-30 17:27:36 -0800470
Jingwen Chenc711fec2020-11-22 23:52:50 -0500471 return Config{config}, err
472}
Colin Cross988414c2020-01-11 01:11:46 +0000473
Colin Cross98be1bb2019-12-13 20:41:13 -0800474// mockFileSystem replaces all reads with accesses to the provided map of
475// filenames to contents stored as a byte slice.
476func (c *config) mockFileSystem(bp string, fs map[string][]byte) {
477 mockFS := map[string][]byte{}
478
479 if _, exists := mockFS["Android.bp"]; !exists {
480 mockFS["Android.bp"] = []byte(bp)
481 }
482
483 for k, v := range fs {
484 mockFS[k] = v
485 }
486
487 // no module list file specified; find every file named Blueprints or Android.bp
488 pathsToParse := []string{}
489 for candidate := range mockFS {
490 base := filepath.Base(candidate)
491 if base == "Blueprints" || base == "Android.bp" {
492 pathsToParse = append(pathsToParse, candidate)
493 }
494 }
495 if len(pathsToParse) < 1 {
496 panic(fmt.Sprintf("No Blueprint or Android.bp files found in mock filesystem: %v\n", mockFS))
497 }
498 mockFS[blueprint.MockModuleListFile] = []byte(strings.Join(pathsToParse, "\n"))
499
500 c.fs = pathtools.MockFs(mockFS)
501 c.mockBpList = blueprint.MockModuleListFile
502}
503
Colin Crosse87040b2017-12-11 15:52:26 -0800504func (c *config) StopBefore() bootstrap.StopBefore {
505 return c.stopBefore
Dan Willemsen218f6562015-07-08 18:13:11 -0700506}
507
Jingwen Chenc711fec2020-11-22 23:52:50 -0500508// SetStopBefore configures soong_build to exit earlier at a specific point.
Colin Crosse87040b2017-12-11 15:52:26 -0800509func (c *config) SetStopBefore(stopBefore bootstrap.StopBefore) {
510 c.stopBefore = stopBefore
511}
512
Lukacs T. Berkid1e3f1f2021-03-16 08:55:23 +0100513func (c *config) SetAllowMissingDependencies() {
514 c.productVariables.Allow_missing_dependencies = proptools.BoolPtr(true)
515}
516
Colin Crosse87040b2017-12-11 15:52:26 -0800517var _ bootstrap.ConfigStopBefore = (*config)(nil)
518
Jingwen Chenc711fec2020-11-22 23:52:50 -0500519// BlueprintToolLocation returns the directory containing build system tools
520// from Blueprint, like soong_zip and merge_zips.
Dan Willemsenc2aa4a92016-05-26 15:13:03 -0700521func (c *config) BlueprintToolLocation() string {
522 return filepath.Join(c.buildDir, "host", c.PrebuiltOS(), "bin")
523}
524
Colin Crosse87040b2017-12-11 15:52:26 -0800525var _ bootstrap.ConfigBlueprintToolLocation = (*config)(nil)
526
Dan Willemsen60e62f02018-11-16 21:05:32 -0800527func (c *config) HostToolPath(ctx PathContext, tool string) Path {
528 return PathForOutput(ctx, "host", c.PrebuiltOS(), "bin", tool)
529}
530
Martin Stjernholm7260d062019-12-09 21:47:14 +0000531func (c *config) HostJNIToolPath(ctx PathContext, path string) Path {
532 ext := ".so"
533 if runtime.GOOS == "darwin" {
534 ext = ".dylib"
535 }
536 return PathForOutput(ctx, "host", c.PrebuiltOS(), "lib64", path+ext)
537}
538
539func (c *config) HostJavaToolPath(ctx PathContext, path string) Path {
540 return PathForOutput(ctx, "host", c.PrebuiltOS(), "framework", path)
541}
542
Jingwen Chenc711fec2020-11-22 23:52:50 -0500543// PrebuiltOS returns the name of the host OS used in prebuilts directories.
Colin Cross1332b002015-04-07 17:11:30 -0700544func (c *config) PrebuiltOS() string {
Colin Cross3f40fa42015-01-30 17:27:36 -0800545 switch runtime.GOOS {
546 case "linux":
547 return "linux-x86"
548 case "darwin":
549 return "darwin-x86"
550 default:
551 panic("Unknown GOOS")
552 }
553}
554
555// GoRoot returns the path to the root directory of the Go toolchain.
Colin Cross1332b002015-04-07 17:11:30 -0700556func (c *config) GoRoot() string {
Colin Cross3f40fa42015-01-30 17:27:36 -0800557 return fmt.Sprintf("%s/prebuilts/go/%s", c.srcDir, c.PrebuiltOS())
558}
559
Jingwen Chenc711fec2020-11-22 23:52:50 -0500560// PrebuiltBuildTool returns the path to a tool in the prebuilts directory containing
561// checked-in tools, like Kati, Ninja or Toybox, for the current host OS.
Dan Willemsen4e0aa232019-04-10 22:59:54 -0700562func (c *config) PrebuiltBuildTool(ctx PathContext, tool string) Path {
563 return PathForSource(ctx, "prebuilts/build-tools", c.PrebuiltOS(), "bin", tool)
564}
565
Jingwen Chenc711fec2020-11-22 23:52:50 -0500566// CpPreserveSymlinksFlags returns the host-specific flag for the cp(1) command
567// to preserve symlinks.
Colin Cross1332b002015-04-07 17:11:30 -0700568func (c *config) CpPreserveSymlinksFlags() string {
Colin Cross485e5722015-08-27 13:28:01 -0700569 switch runtime.GOOS {
Colin Cross3f40fa42015-01-30 17:27:36 -0800570 case "darwin":
571 return "-R"
572 case "linux":
573 return "-d"
574 default:
575 return ""
576 }
577}
Colin Cross68f55102015-03-25 14:43:57 -0700578
Colin Cross1332b002015-04-07 17:11:30 -0700579func (c *config) Getenv(key string) string {
Colin Cross68f55102015-03-25 14:43:57 -0700580 var val string
581 var exists bool
Colin Crossc1e86a32015-04-15 12:33:28 -0700582 c.envLock.Lock()
Colin Crossc0d58b42017-02-06 15:40:41 -0800583 defer c.envLock.Unlock()
584 if c.envDeps == nil {
585 c.envDeps = make(map[string]string)
586 }
Colin Cross68f55102015-03-25 14:43:57 -0700587 if val, exists = c.envDeps[key]; !exists {
Dan Willemsene7680ba2015-09-11 17:06:19 -0700588 if c.envFrozen {
589 panic("Cannot access new environment variables after envdeps are frozen")
590 }
Colin Cross6ccbc912017-10-10 23:07:38 -0700591 val, _ = c.env[key]
Colin Cross68f55102015-03-25 14:43:57 -0700592 c.envDeps[key] = val
593 }
594 return val
595}
596
Colin Cross99d7c232016-11-23 16:52:04 -0800597func (c *config) GetenvWithDefault(key string, defaultValue string) string {
598 ret := c.Getenv(key)
599 if ret == "" {
600 return defaultValue
601 }
602 return ret
603}
604
605func (c *config) IsEnvTrue(key string) bool {
606 value := c.Getenv(key)
607 return value == "1" || value == "y" || value == "yes" || value == "on" || value == "true"
608}
609
610func (c *config) IsEnvFalse(key string) bool {
611 value := c.Getenv(key)
612 return value == "0" || value == "n" || value == "no" || value == "off" || value == "false"
613}
614
Jingwen Chenc711fec2020-11-22 23:52:50 -0500615// EnvDeps returns the environment variables this build depends on. The first
616// call to this function blocks future reads from the environment.
Colin Cross1332b002015-04-07 17:11:30 -0700617func (c *config) EnvDeps() map[string]string {
Dan Willemsene7680ba2015-09-11 17:06:19 -0700618 c.envLock.Lock()
Colin Crossc0d58b42017-02-06 15:40:41 -0800619 defer c.envLock.Unlock()
Dan Willemsene7680ba2015-09-11 17:06:19 -0700620 c.envFrozen = true
Colin Cross68f55102015-03-25 14:43:57 -0700621 return c.envDeps
622}
Colin Cross35cec122015-04-02 14:37:16 -0700623
Jingwen Chencda22c92020-11-23 00:22:30 -0500624func (c *config) KatiEnabled() bool {
625 return c.katiEnabled
Dan Willemsen5ba07e82015-12-11 13:51:06 -0800626}
627
Nan Zhang581fd212018-01-10 16:06:12 -0800628func (c *config) BuildId() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800629 return String(c.productVariables.BuildId)
Nan Zhang581fd212018-01-10 16:06:12 -0800630}
631
Jingwen Chenc711fec2020-11-22 23:52:50 -0500632// BuildNumberFile returns the path to a text file containing metadata
633// representing the current build's number.
634//
635// Rules that want to reference the build number should read from this file
636// without depending on it. They will run whenever their other dependencies
637// require them to run and get the current build number. This ensures they don't
638// rebuild on every incremental build when the build number changes.
Colin Cross2a2e0db2020-02-21 16:55:46 -0800639func (c *config) BuildNumberFile(ctx PathContext) Path {
640 return PathForOutput(ctx, String(c.productVariables.BuildNumberFile))
Nan Zhang581fd212018-01-10 16:06:12 -0800641}
642
Jingwen Chenc711fec2020-11-22 23:52:50 -0500643// DeviceName returns the name of the current device target.
Colin Cross35cec122015-04-02 14:37:16 -0700644// TODO: take an AndroidModuleContext to select the device name for multi-device builds
Colin Cross1332b002015-04-07 17:11:30 -0700645func (c *config) DeviceName() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800646 return *c.productVariables.DeviceName
Colin Cross35cec122015-04-02 14:37:16 -0700647}
648
Anton Hansson53c88442019-03-18 15:53:16 +0000649func (c *config) DeviceResourceOverlays() []string {
650 return c.productVariables.DeviceResourceOverlays
651}
652
653func (c *config) ProductResourceOverlays() []string {
654 return c.productVariables.ProductResourceOverlays
Colin Cross30e076a2015-04-13 13:58:27 -0700655}
656
Colin Crossbfd347d2018-05-09 11:11:35 -0700657func (c *config) PlatformVersionName() string {
658 return String(c.productVariables.Platform_version_name)
659}
660
Dan Albert4f378d72020-07-23 17:32:15 -0700661func (c *config) PlatformSdkVersion() ApiLevel {
662 return uncheckedFinalApiLevel(*c.productVariables.Platform_sdk_version)
Colin Cross30e076a2015-04-13 13:58:27 -0700663}
664
Colin Crossd09b0b62018-04-18 11:06:47 -0700665func (c *config) PlatformSdkCodename() string {
666 return String(c.productVariables.Platform_sdk_codename)
667}
668
Colin Cross092c9da2019-04-02 22:56:43 -0700669func (c *config) PlatformSecurityPatch() string {
670 return String(c.productVariables.Platform_security_patch)
671}
672
673func (c *config) PlatformPreviewSdkVersion() string {
674 return String(c.productVariables.Platform_preview_sdk_version)
675}
676
677func (c *config) PlatformMinSupportedTargetSdkVersion() string {
678 return String(c.productVariables.Platform_min_supported_target_sdk_version)
679}
680
681func (c *config) PlatformBaseOS() string {
682 return String(c.productVariables.Platform_base_os)
683}
684
Dan Albert1a246272020-07-06 14:49:35 -0700685func (c *config) MinSupportedSdkVersion() ApiLevel {
686 return uncheckedFinalApiLevel(16)
687}
688
689func (c *config) FinalApiLevels() []ApiLevel {
690 var levels []ApiLevel
Dan Albert4f378d72020-07-23 17:32:15 -0700691 for i := 1; i <= c.PlatformSdkVersion().FinalOrFutureInt(); i++ {
Dan Albert1a246272020-07-06 14:49:35 -0700692 levels = append(levels, uncheckedFinalApiLevel(i))
693 }
694 return levels
695}
696
697func (c *config) PreviewApiLevels() []ApiLevel {
698 var levels []ApiLevel
699 for i, codename := range c.PlatformVersionActiveCodenames() {
700 levels = append(levels, ApiLevel{
701 value: codename,
702 number: i,
703 isPreview: true,
704 })
705 }
706 return levels
707}
708
709func (c *config) AllSupportedApiLevels() []ApiLevel {
710 var levels []ApiLevel
711 levels = append(levels, c.FinalApiLevels()...)
712 return append(levels, c.PreviewApiLevels()...)
Dan Albertf5415d72017-08-17 16:19:59 -0700713}
714
Jingwen Chenc711fec2020-11-22 23:52:50 -0500715// DefaultAppTargetSdk returns the API level that platform apps are targeting.
716// This converts a codename to the exact ApiLevel it represents.
Dan Albert4f378d72020-07-23 17:32:15 -0700717func (c *config) DefaultAppTargetSdk(ctx EarlyModuleContext) ApiLevel {
Colin Crossd09b0b62018-04-18 11:06:47 -0700718 if Bool(c.productVariables.Platform_sdk_final) {
719 return c.PlatformSdkVersion()
Colin Crossd09b0b62018-04-18 11:06:47 -0700720 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500721 codename := c.PlatformSdkCodename()
722 if codename == "" {
723 return NoneApiLevel
724 }
725 if codename == "REL" {
726 panic("Platform_sdk_codename should not be REL when Platform_sdk_final is true")
727 }
728 return ApiLevelOrPanic(ctx, codename)
Colin Crossd09b0b62018-04-18 11:06:47 -0700729}
730
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800731func (c *config) AppsDefaultVersionName() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800732 return String(c.productVariables.AppsDefaultVersionName)
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800733}
734
Dan Albert31384de2017-07-28 12:39:46 -0700735// Codenames that are active in the current lunch target.
736func (c *config) PlatformVersionActiveCodenames() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800737 return c.productVariables.Platform_version_active_codenames
Dan Albert31384de2017-07-28 12:39:46 -0700738}
739
Colin Crossface4e42017-10-30 17:32:15 -0700740func (c *config) ProductAAPTConfig() []string {
Colin Crossa74ca042019-01-31 14:31:51 -0800741 return c.productVariables.AAPTConfig
Colin Cross30e076a2015-04-13 13:58:27 -0700742}
743
Colin Crossface4e42017-10-30 17:32:15 -0700744func (c *config) ProductAAPTPreferredConfig() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800745 return String(c.productVariables.AAPTPreferredConfig)
Colin Cross30e076a2015-04-13 13:58:27 -0700746}
747
Colin Crossface4e42017-10-30 17:32:15 -0700748func (c *config) ProductAAPTCharacteristics() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800749 return String(c.productVariables.AAPTCharacteristics)
Colin Crossface4e42017-10-30 17:32:15 -0700750}
751
752func (c *config) ProductAAPTPrebuiltDPI() []string {
Colin Crossa74ca042019-01-31 14:31:51 -0800753 return c.productVariables.AAPTPrebuiltDPI
Colin Cross30e076a2015-04-13 13:58:27 -0700754}
755
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700756func (c *config) DefaultAppCertificateDir(ctx PathContext) SourcePath {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800757 defaultCert := String(c.productVariables.DefaultAppCertificate)
Colin Cross61ae0b72017-12-01 17:16:02 -0800758 if defaultCert != "" {
759 return PathForSource(ctx, filepath.Dir(defaultCert))
Colin Cross61ae0b72017-12-01 17:16:02 -0800760 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500761 return PathForSource(ctx, "build/make/target/product/security")
Colin Cross30e076a2015-04-13 13:58:27 -0700762}
763
Colin Crosse1731a52017-12-14 11:22:55 -0800764func (c *config) DefaultAppCertificate(ctx PathContext) (pem, key SourcePath) {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800765 defaultCert := String(c.productVariables.DefaultAppCertificate)
Colin Cross61ae0b72017-12-01 17:16:02 -0800766 if defaultCert != "" {
Colin Crosse1731a52017-12-14 11:22:55 -0800767 return PathForSource(ctx, defaultCert+".x509.pem"), PathForSource(ctx, defaultCert+".pk8")
Colin Cross61ae0b72017-12-01 17:16:02 -0800768 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500769 defaultDir := c.DefaultAppCertificateDir(ctx)
770 return defaultDir.Join(ctx, "testkey.x509.pem"), defaultDir.Join(ctx, "testkey.pk8")
Colin Cross30e076a2015-04-13 13:58:27 -0700771}
Colin Cross6ff51382015-12-17 16:39:19 -0800772
Jiyong Park9335a262018-12-24 11:31:58 +0900773func (c *config) ApexKeyDir(ctx ModuleContext) SourcePath {
774 // TODO(b/121224311): define another variable such as TARGET_APEX_KEY_OVERRIDE
775 defaultCert := String(c.productVariables.DefaultAppCertificate)
Dan Willemsen412160e2019-04-09 21:36:26 -0700776 if defaultCert == "" || filepath.Dir(defaultCert) == "build/make/target/product/security" {
Jiyong Park9335a262018-12-24 11:31:58 +0900777 // When defaultCert is unset or is set to the testkeys path, use the APEX keys
778 // that is under the module dir
Colin Cross07e51612019-03-05 12:46:40 -0800779 return pathForModuleSrc(ctx)
Jiyong Park9335a262018-12-24 11:31:58 +0900780 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500781 // If not, APEX keys are under the specified directory
782 return PathForSource(ctx, filepath.Dir(defaultCert))
Jiyong Park9335a262018-12-24 11:31:58 +0900783}
784
Jingwen Chenc711fec2020-11-22 23:52:50 -0500785// AllowMissingDependencies configures Blueprint/Soong to not fail when modules
786// are configured to depend on non-existent modules. Note that this does not
787// affect missing input dependencies at the Ninja level.
Colin Cross6ff51382015-12-17 16:39:19 -0800788func (c *config) AllowMissingDependencies() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800789 return Bool(c.productVariables.Allow_missing_dependencies)
Colin Cross6ff51382015-12-17 16:39:19 -0800790}
Dan Willemsen322acaf2016-01-12 23:07:05 -0800791
Jeongik Cha816a23a2020-07-08 01:09:23 +0900792// Returns true if a full platform source tree cannot be assumed.
Colin Crossfc3674a2017-09-18 17:41:52 -0700793func (c *config) UnbundledBuild() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800794 return Bool(c.productVariables.Unbundled_build)
Colin Crossfc3674a2017-09-18 17:41:52 -0700795}
796
Martin Stjernholmfd9eb4b2020-06-17 01:13:15 +0100797// Returns true if building apps that aren't bundled with the platform.
798// UnbundledBuild() is always true when this is true.
799func (c *config) UnbundledBuildApps() bool {
800 return Bool(c.productVariables.Unbundled_build_apps)
801}
802
Jeongik Cha816a23a2020-07-08 01:09:23 +0900803// Returns true if building modules against prebuilt SDKs.
804func (c *config) AlwaysUsePrebuiltSdks() bool {
805 return Bool(c.productVariables.Always_use_prebuilt_sdks)
Colin Cross1f367bf2018-12-18 22:46:24 -0800806}
807
Paul Duffin9a89a2a2020-10-28 19:20:06 +0000808// Returns true if the boot jars check should be skipped.
809func (c *config) SkipBootJarsCheck() bool {
810 return Bool(c.productVariables.Skip_boot_jars_check)
811}
812
Doug Horn21b94272019-01-16 12:06:11 -0800813func (c *config) Fuchsia() bool {
814 return Bool(c.productVariables.Fuchsia)
815}
816
Colin Cross126a25c2017-10-31 13:55:34 -0700817func (c *config) MinimizeJavaDebugInfo() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800818 return Bool(c.productVariables.MinimizeJavaDebugInfo) && !Bool(c.productVariables.Eng)
Colin Cross126a25c2017-10-31 13:55:34 -0700819}
820
Colin Crossed064c02018-09-05 16:28:13 -0700821func (c *config) Debuggable() bool {
822 return Bool(c.productVariables.Debuggable)
823}
824
Jaewoong Jung1d6eb682018-11-29 15:08:44 -0800825func (c *config) Eng() bool {
826 return Bool(c.productVariables.Eng)
827}
828
Jiyong Park8d52f862018-07-07 18:02:07 +0900829func (c *config) DevicePrimaryArchType() ArchType {
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700830 return c.Targets[Android][0].Arch.ArchType
Jiyong Park8d52f862018-07-07 18:02:07 +0900831}
832
Colin Cross16b23492016-01-06 14:41:07 -0800833func (c *config) SanitizeHost() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800834 return append([]string(nil), c.productVariables.SanitizeHost...)
Colin Cross16b23492016-01-06 14:41:07 -0800835}
836
837func (c *config) SanitizeDevice() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800838 return append([]string(nil), c.productVariables.SanitizeDevice...)
Colin Cross23ae82a2016-11-02 14:34:39 -0700839}
840
Ivan Lozano0c3a1ef2017-06-28 09:10:48 -0700841func (c *config) SanitizeDeviceDiag() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800842 return append([]string(nil), c.productVariables.SanitizeDeviceDiag...)
Ivan Lozano0c3a1ef2017-06-28 09:10:48 -0700843}
844
Colin Cross23ae82a2016-11-02 14:34:39 -0700845func (c *config) SanitizeDeviceArch() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800846 return append([]string(nil), c.productVariables.SanitizeDeviceArch...)
Colin Cross16b23492016-01-06 14:41:07 -0800847}
Colin Crossa1ad8d12016-06-01 17:09:44 -0700848
Vishwath Mohan1b017a72017-01-19 13:54:55 -0800849func (c *config) EnableCFI() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800850 if c.productVariables.EnableCFI == nil {
Vishwath Mohanc32c3eb2017-01-24 14:20:54 -0800851 return true
Vishwath Mohanc32c3eb2017-01-24 14:20:54 -0800852 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500853 return *c.productVariables.EnableCFI
Vishwath Mohan1b017a72017-01-19 13:54:55 -0800854}
855
Kostya Kortchinskyd5275c82019-02-01 08:42:56 -0800856func (c *config) DisableScudo() bool {
857 return Bool(c.productVariables.DisableScudo)
858}
859
Colin Crossa1ad8d12016-06-01 17:09:44 -0700860func (c *config) Android64() bool {
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700861 for _, t := range c.Targets[Android] {
Colin Crossa1ad8d12016-06-01 17:09:44 -0700862 if t.Arch.ArchType.Multilib == "lib64" {
863 return true
864 }
865 }
866
867 return false
868}
Colin Cross9272ade2016-08-17 15:24:12 -0700869
Colin Cross9d45bb72016-08-29 16:14:13 -0700870func (c *config) UseGoma() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800871 return Bool(c.productVariables.UseGoma)
Colin Cross9d45bb72016-08-29 16:14:13 -0700872}
873
Ramy Medhatbbf25672019-07-17 12:30:04 +0000874func (c *config) UseRBE() bool {
875 return Bool(c.productVariables.UseRBE)
876}
877
Ramy Medhat8ea054a2020-01-27 14:19:44 -0500878func (c *config) UseRBEJAVAC() bool {
879 return Bool(c.productVariables.UseRBEJAVAC)
880}
881
882func (c *config) UseRBER8() bool {
883 return Bool(c.productVariables.UseRBER8)
884}
885
886func (c *config) UseRBED8() bool {
887 return Bool(c.productVariables.UseRBED8)
888}
889
Colin Cross8b8bec32019-11-15 13:18:43 -0800890func (c *config) UseRemoteBuild() bool {
891 return c.UseGoma() || c.UseRBE()
892}
893
Colin Cross66548102018-06-19 22:47:35 -0700894func (c *config) RunErrorProne() bool {
895 return c.IsEnvTrue("RUN_ERROR_PRONE")
896}
897
Jingwen Chenc711fec2020-11-22 23:52:50 -0500898// XrefCorpusName returns the Kythe cross-reference corpus name.
Sasha Smundak2a4549e2018-11-05 16:49:08 -0800899func (c *config) XrefCorpusName() string {
900 return c.Getenv("XREF_CORPUS")
901}
902
Jingwen Chenc711fec2020-11-22 23:52:50 -0500903// XrefCuEncoding returns the compilation unit encoding to use for Kythe code
904// xrefs. Can be 'json' (default), 'proto' or 'all'.
Sasha Smundak6c2d4f92020-01-09 17:34:23 -0800905func (c *config) XrefCuEncoding() string {
906 if enc := c.Getenv("KYTHE_KZIP_ENCODING"); enc != "" {
907 return enc
908 }
909 return "json"
910}
911
Sasha Smundakb0addaf2021-02-16 10:39:40 -0800912// XrefCuJavaSourceMax returns the maximum number of the Java source files
913// in a single compilation unit
914const xrefJavaSourceFileMaxDefault = "1000"
915
916func (c Config) XrefCuJavaSourceMax() string {
917 v := c.Getenv("KYTHE_JAVA_SOURCE_BATCH_SIZE")
918 if v == "" {
919 return xrefJavaSourceFileMaxDefault
920 }
921 if _, err := strconv.ParseUint(v, 0, 0); err != nil {
922 fmt.Fprintf(os.Stderr,
923 "bad KYTHE_JAVA_SOURCE_BATCH_SIZE value: %s, will use %s",
924 err, xrefJavaSourceFileMaxDefault)
925 return xrefJavaSourceFileMaxDefault
926 }
927 return v
928
929}
930
Sasha Smundak2a4549e2018-11-05 16:49:08 -0800931func (c *config) EmitXrefRules() bool {
932 return c.XrefCorpusName() != ""
933}
934
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700935func (c *config) ClangTidy() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800936 return Bool(c.productVariables.ClangTidy)
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700937}
938
939func (c *config) TidyChecks() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800940 if c.productVariables.TidyChecks == nil {
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700941 return ""
942 }
Dan Willemsen45133ac2018-03-09 21:22:06 -0800943 return *c.productVariables.TidyChecks
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700944}
945
Colin Cross0f4e0d62016-07-27 10:56:55 -0700946func (c *config) LibartImgHostBaseAddress() string {
947 return "0x60000000"
948}
949
950func (c *config) LibartImgDeviceBaseAddress() string {
Elliott Hughesda3a0712020-03-06 16:55:28 -0800951 return "0x70000000"
Colin Cross0f4e0d62016-07-27 10:56:55 -0700952}
953
Hiroshi Yamauchie2a10632016-12-19 13:44:41 -0800954func (c *config) ArtUseReadBarrier() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800955 return Bool(c.productVariables.ArtUseReadBarrier)
Hiroshi Yamauchie2a10632016-12-19 13:44:41 -0800956}
957
Jingwen Chenc711fec2020-11-22 23:52:50 -0500958// Enforce Runtime Resource Overlays for a module. RROs supersede static RROs,
959// but some modules still depend on it.
960//
961// More info: https://source.android.com/devices/architecture/rros
Dan Willemsen3fb1fae2018-03-12 15:30:26 -0700962func (c *config) EnforceRROForModule(name string) bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800963 enforceList := c.productVariables.EnforceRROTargets
Jeongik Chacee5ba92021-02-19 12:11:51 +0900964
Roland Levillainf6cc2612020-07-09 16:58:14 +0100965 if len(enforceList) > 0 {
Yo Chiang4ebd06a2019-10-01 13:13:41 +0800966 if InList("*", enforceList) {
Dan Willemsen3fb1fae2018-03-12 15:30:26 -0700967 return true
968 }
Colin Crossa74ca042019-01-31 14:31:51 -0800969 return InList(name, enforceList)
Dan Willemsen3fb1fae2018-03-12 15:30:26 -0700970 }
971 return false
972}
Dan Willemsen3fb1fae2018-03-12 15:30:26 -0700973func (c *config) EnforceRROExcludedOverlay(path string) bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800974 excluded := c.productVariables.EnforceRROExcludedOverlays
Roland Levillainf6cc2612020-07-09 16:58:14 +0100975 if len(excluded) > 0 {
Jaewoong Jung3aff5782020-02-11 07:54:35 -0800976 return HasAnyPrefix(path, excluded)
Dan Willemsen3fb1fae2018-03-12 15:30:26 -0700977 }
978 return false
979}
980
981func (c *config) ExportedNamespaces() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800982 return append([]string(nil), c.productVariables.NamespacesToExport...)
Dan Willemsen3fb1fae2018-03-12 15:30:26 -0700983}
984
985func (c *config) HostStaticBinaries() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800986 return Bool(c.productVariables.HostStaticBinaries)
Dan Willemsen3fb1fae2018-03-12 15:30:26 -0700987}
988
Colin Cross5a0dcd52018-10-05 14:20:06 -0700989func (c *config) UncompressPrivAppDex() bool {
990 return Bool(c.productVariables.UncompressPrivAppDex)
991}
992
993func (c *config) ModulesLoadedByPrivilegedModules() []string {
994 return c.productVariables.ModulesLoadedByPrivilegedModules
995}
996
Jingwen Chenc711fec2020-11-22 23:52:50 -0500997// DexpreoptGlobalConfigPath returns the path to the dexpreopt.config file in
998// the output directory, if it was created during the product configuration
999// phase by Kati.
Jingwen Chenebb0b572020-11-02 00:24:57 -05001000func (c *config) DexpreoptGlobalConfigPath(ctx PathContext) OptionalPath {
Colin Cross988414c2020-01-11 01:11:46 +00001001 if c.productVariables.DexpreoptGlobalConfig == nil {
Jingwen Chenebb0b572020-11-02 00:24:57 -05001002 return OptionalPathForPath(nil)
1003 }
1004 return OptionalPathForPath(
1005 pathForBuildToolDep(ctx, *c.productVariables.DexpreoptGlobalConfig))
1006}
1007
Jingwen Chenc711fec2020-11-22 23:52:50 -05001008// DexpreoptGlobalConfig returns the raw byte contents of the dexpreopt global
1009// configuration. Since the configuration file was created by Kati during
1010// product configuration (externally of soong_build), it's not tracked, so we
1011// also manually add a Ninja file dependency on the configuration file to the
1012// rule that creates the main build.ninja file. This ensures that build.ninja is
1013// regenerated correctly if dexpreopt.config changes.
Jingwen Chenebb0b572020-11-02 00:24:57 -05001014func (c *config) DexpreoptGlobalConfig(ctx PathContext) ([]byte, error) {
1015 path := c.DexpreoptGlobalConfigPath(ctx)
1016 if !path.Valid() {
Colin Cross988414c2020-01-11 01:11:46 +00001017 return nil, nil
1018 }
Jingwen Chenebb0b572020-11-02 00:24:57 -05001019 ctx.AddNinjaFileDeps(path.String())
1020 return ioutil.ReadFile(absolutePath(path.String()))
Colin Cross43f08db2018-11-12 10:13:39 -08001021}
1022
David Brazdil91b4e3e2019-01-23 21:04:05 +00001023func (c *config) FrameworksBaseDirExists(ctx PathContext) bool {
1024 return ExistentPathForSource(ctx, "frameworks", "base").Valid()
1025}
1026
Inseob Kimae553032019-05-14 18:52:49 +09001027func (c *config) VndkSnapshotBuildArtifacts() bool {
1028 return Bool(c.productVariables.VndkSnapshotBuildArtifacts)
1029}
1030
Colin Cross3b19f5d2019-09-17 14:45:31 -07001031func (c *config) HasMultilibConflict(arch ArchType) bool {
1032 return c.multilibConflicts[arch]
1033}
1034
Bill Peckhambae47492021-01-08 09:34:44 -08001035func (c *config) PrebuiltHiddenApiDir(ctx PathContext) string {
1036 return String(c.productVariables.PrebuiltHiddenApiDir)
1037}
1038
Colin Cross9272ade2016-08-17 15:24:12 -07001039func (c *deviceConfig) Arches() []Arch {
1040 var arches []Arch
Dan Willemsen0ef639b2018-10-10 17:02:29 -07001041 for _, target := range c.config.Targets[Android] {
Colin Cross9272ade2016-08-17 15:24:12 -07001042 arches = append(arches, target.Arch)
1043 }
1044 return arches
1045}
Dan Willemsend2ede872016-11-18 14:54:24 -08001046
Jayant Chowdhary34ce67d2018-03-08 11:00:50 -08001047func (c *deviceConfig) BinderBitness() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001048 is32BitBinder := c.config.productVariables.Binder32bit
Jayant Chowdhary34ce67d2018-03-08 11:00:50 -08001049 if is32BitBinder != nil && *is32BitBinder {
1050 return "32"
1051 }
1052 return "64"
1053}
1054
Dan Willemsen4353bc42016-12-05 17:16:02 -08001055func (c *deviceConfig) VendorPath() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001056 if c.config.productVariables.VendorPath != nil {
1057 return *c.config.productVariables.VendorPath
Dan Willemsen4353bc42016-12-05 17:16:02 -08001058 }
1059 return "vendor"
1060}
1061
Justin Yun71549282017-11-17 12:10:28 +09001062func (c *deviceConfig) VndkVersion() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001063 return String(c.config.productVariables.DeviceVndkVersion)
Justin Yun71549282017-11-17 12:10:28 +09001064}
1065
Jose Galmes6f843bc2020-12-11 13:36:29 -08001066func (c *deviceConfig) RecoverySnapshotVersion() string {
1067 return String(c.config.productVariables.RecoverySnapshotVersion)
1068}
1069
Jeongik Cha219141c2020-08-06 23:00:37 +09001070func (c *deviceConfig) CurrentApiLevelForVendorModules() string {
1071 return StringDefault(c.config.productVariables.DeviceCurrentApiLevelForVendorModules, "current")
1072}
1073
Justin Yun8fe12122017-12-07 17:18:15 +09001074func (c *deviceConfig) PlatformVndkVersion() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001075 return String(c.config.productVariables.Platform_vndk_version)
Justin Yun8fe12122017-12-07 17:18:15 +09001076}
1077
Justin Yun5f7f7e82019-11-18 19:52:14 +09001078func (c *deviceConfig) ProductVndkVersion() string {
1079 return String(c.config.productVariables.ProductVndkVersion)
1080}
1081
Justin Yun71549282017-11-17 12:10:28 +09001082func (c *deviceConfig) ExtraVndkVersions() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001083 return c.config.productVariables.ExtraVndkVersions
Dan Willemsend2ede872016-11-18 14:54:24 -08001084}
Jack He8cc71432016-12-08 15:45:07 -08001085
Vic Yangefd249e2018-11-12 20:19:56 -08001086func (c *deviceConfig) VndkUseCoreVariant() bool {
1087 return Bool(c.config.productVariables.VndkUseCoreVariant)
1088}
1089
Jiyong Park1a5d7b12018-01-15 15:05:10 +09001090func (c *deviceConfig) SystemSdkVersions() []string {
Colin Crossa74ca042019-01-31 14:31:51 -08001091 return c.config.productVariables.DeviceSystemSdkVersions
Jiyong Park1a5d7b12018-01-15 15:05:10 +09001092}
1093
1094func (c *deviceConfig) PlatformSystemSdkVersions() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001095 return c.config.productVariables.Platform_systemsdk_versions
Jiyong Park1a5d7b12018-01-15 15:05:10 +09001096}
1097
Jiyong Park2db76922017-11-08 16:03:48 +09001098func (c *deviceConfig) OdmPath() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001099 if c.config.productVariables.OdmPath != nil {
1100 return *c.config.productVariables.OdmPath
Jiyong Park2db76922017-11-08 16:03:48 +09001101 }
1102 return "odm"
1103}
1104
Jaekyun Seok5cfbfbb2018-01-10 19:00:15 +09001105func (c *deviceConfig) ProductPath() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001106 if c.config.productVariables.ProductPath != nil {
1107 return *c.config.productVariables.ProductPath
Jiyong Park2db76922017-11-08 16:03:48 +09001108 }
Jaekyun Seok5cfbfbb2018-01-10 19:00:15 +09001109 return "product"
Jiyong Park2db76922017-11-08 16:03:48 +09001110}
1111
Justin Yund5f6c822019-06-25 16:47:17 +09001112func (c *deviceConfig) SystemExtPath() string {
1113 if c.config.productVariables.SystemExtPath != nil {
1114 return *c.config.productVariables.SystemExtPath
Dario Frenifd05a742018-05-29 13:28:54 +01001115 }
Justin Yund5f6c822019-06-25 16:47:17 +09001116 return "system_ext"
Dario Frenifd05a742018-05-29 13:28:54 +01001117}
1118
Jack He8cc71432016-12-08 15:45:07 -08001119func (c *deviceConfig) BtConfigIncludeDir() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001120 return String(c.config.productVariables.BtConfigIncludeDir)
Jack He8cc71432016-12-08 15:45:07 -08001121}
Dan Willemsen581341d2017-02-09 16:16:31 -08001122
Jiyong Parkd773eb32017-07-03 13:18:12 +09001123func (c *deviceConfig) DeviceKernelHeaderDirs() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001124 return c.config.productVariables.DeviceKernelHeaders
Jiyong Parkd773eb32017-07-03 13:18:12 +09001125}
1126
Yi Kongceb5b762020-03-20 15:22:27 +08001127func (c *deviceConfig) SamplingPGO() bool {
1128 return Bool(c.config.productVariables.SamplingPGO)
1129}
1130
Roland Levillainada12702020-06-09 13:07:36 +01001131// JavaCoverageEnabledForPath returns whether Java code coverage is enabled for
1132// path. Coverage is enabled by default when the product variable
1133// JavaCoveragePaths is empty. If JavaCoveragePaths is not empty, coverage is
1134// enabled for any path which is part of this variable (and not part of the
1135// JavaCoverageExcludePaths product variable). Value "*" in JavaCoveragePaths
1136// represents any path.
1137func (c *deviceConfig) JavaCoverageEnabledForPath(path string) bool {
1138 coverage := false
Chris Gross2f748692020-06-24 20:36:59 +00001139 if len(c.config.productVariables.JavaCoveragePaths) == 0 ||
Roland Levillainada12702020-06-09 13:07:36 +01001140 InList("*", c.config.productVariables.JavaCoveragePaths) ||
1141 HasAnyPrefix(path, c.config.productVariables.JavaCoveragePaths) {
1142 coverage = true
1143 }
Roland Levillainf6cc2612020-07-09 16:58:14 +01001144 if coverage && len(c.config.productVariables.JavaCoverageExcludePaths) > 0 {
Roland Levillainada12702020-06-09 13:07:36 +01001145 if HasAnyPrefix(path, c.config.productVariables.JavaCoverageExcludePaths) {
1146 coverage = false
1147 }
1148 }
1149 return coverage
1150}
1151
Colin Cross1a6acd42020-06-16 17:51:46 -07001152// Returns true if gcov or clang coverage is enabled.
Dan Willemsen581341d2017-02-09 16:16:31 -08001153func (c *deviceConfig) NativeCoverageEnabled() bool {
Colin Cross1a6acd42020-06-16 17:51:46 -07001154 return Bool(c.config.productVariables.GcovCoverage) ||
1155 Bool(c.config.productVariables.ClangCoverage)
Dan Willemsen581341d2017-02-09 16:16:31 -08001156}
1157
Oliver Nguyen1382ab62019-12-06 15:22:41 -08001158func (c *deviceConfig) ClangCoverageEnabled() bool {
1159 return Bool(c.config.productVariables.ClangCoverage)
1160}
1161
Colin Cross1a6acd42020-06-16 17:51:46 -07001162func (c *deviceConfig) GcovCoverageEnabled() bool {
1163 return Bool(c.config.productVariables.GcovCoverage)
1164}
1165
Roland Levillain4f5297b2020-06-09 12:44:06 +01001166// NativeCoverageEnabledForPath returns whether (GCOV- or Clang-based) native
1167// code coverage is enabled for path. By default, coverage is not enabled for a
1168// given path unless it is part of the NativeCoveragePaths product variable (and
1169// not part of the NativeCoverageExcludePaths product variable). Value "*" in
1170// NativeCoveragePaths represents any path.
1171func (c *deviceConfig) NativeCoverageEnabledForPath(path string) bool {
Ryan Campbell469a18a2017-02-27 09:01:54 -08001172 coverage := false
Roland Levillainf6cc2612020-07-09 16:58:14 +01001173 if len(c.config.productVariables.NativeCoveragePaths) > 0 {
Roland Levillain4f5297b2020-06-09 12:44:06 +01001174 if InList("*", c.config.productVariables.NativeCoveragePaths) || HasAnyPrefix(path, c.config.productVariables.NativeCoveragePaths) {
Ivan Lozano5f595532017-07-13 14:46:05 -07001175 coverage = true
Dan Willemsen581341d2017-02-09 16:16:31 -08001176 }
1177 }
Roland Levillainf6cc2612020-07-09 16:58:14 +01001178 if coverage && len(c.config.productVariables.NativeCoverageExcludePaths) > 0 {
Roland Levillain4f5297b2020-06-09 12:44:06 +01001179 if HasAnyPrefix(path, c.config.productVariables.NativeCoverageExcludePaths) {
Ivan Lozano5f595532017-07-13 14:46:05 -07001180 coverage = false
Ryan Campbell469a18a2017-02-27 09:01:54 -08001181 }
1182 }
1183 return coverage
Dan Willemsen581341d2017-02-09 16:16:31 -08001184}
Ivan Lozano5f595532017-07-13 14:46:05 -07001185
Pirama Arumuga Nainar49540802018-01-29 23:11:42 -08001186func (c *deviceConfig) PgoAdditionalProfileDirs() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001187 return c.config.productVariables.PgoAdditionalProfileDirs
Pirama Arumuga Nainar49540802018-01-29 23:11:42 -08001188}
1189
Tri Vo35a51432018-03-25 20:00:00 -07001190func (c *deviceConfig) VendorSepolicyDirs() []string {
1191 return c.config.productVariables.BoardVendorSepolicyDirs
1192}
1193
1194func (c *deviceConfig) OdmSepolicyDirs() []string {
1195 return c.config.productVariables.BoardOdmSepolicyDirs
1196}
1197
Felixa20a8752020-05-17 18:28:35 +02001198func (c *deviceConfig) SystemExtPublicSepolicyDirs() []string {
1199 return c.config.productVariables.SystemExtPublicSepolicyDirs
Tri Vo35a51432018-03-25 20:00:00 -07001200}
1201
Felixa20a8752020-05-17 18:28:35 +02001202func (c *deviceConfig) SystemExtPrivateSepolicyDirs() []string {
1203 return c.config.productVariables.SystemExtPrivateSepolicyDirs
Tri Vo35a51432018-03-25 20:00:00 -07001204}
1205
Inseob Kim0866b002019-04-15 20:21:29 +09001206func (c *deviceConfig) SepolicyM4Defs() []string {
1207 return c.config.productVariables.BoardSepolicyM4Defs
1208}
1209
Jiyong Park7f67f482019-01-05 12:57:48 +09001210func (c *deviceConfig) OverrideManifestPackageNameFor(name string) (manifestName string, overridden bool) {
Jaewoong Jung2ad817c2019-01-18 14:27:16 -08001211 return findOverrideValue(c.config.productVariables.ManifestPackageNameOverrides, name,
1212 "invalid override rule %q in PRODUCT_MANIFEST_PACKAGE_NAME_OVERRIDES should be <module_name>:<manifest_name>")
1213}
1214
1215func (c *deviceConfig) OverrideCertificateFor(name string) (certificatePath string, overridden bool) {
Jaewoong Jungacb6db32019-02-28 16:22:30 +00001216 return findOverrideValue(c.config.productVariables.CertificateOverrides, name,
Jaewoong Jung2ad817c2019-01-18 14:27:16 -08001217 "invalid override rule %q in PRODUCT_CERTIFICATE_OVERRIDES should be <module_name>:<certificate_module_name>")
1218}
1219
Jaewoong Jung9d22a912019-01-23 16:27:47 -08001220func (c *deviceConfig) OverridePackageNameFor(name string) string {
1221 newName, overridden := findOverrideValue(
1222 c.config.productVariables.PackageNameOverrides,
1223 name,
1224 "invalid override rule %q in PRODUCT_PACKAGE_NAME_OVERRIDES should be <module_name>:<package_name>")
1225 if overridden {
1226 return newName
1227 }
1228 return name
1229}
1230
Jaewoong Jung2ad817c2019-01-18 14:27:16 -08001231func findOverrideValue(overrides []string, name string, errorMsg string) (newValue string, overridden bool) {
Jiyong Park7f67f482019-01-05 12:57:48 +09001232 if overrides == nil || len(overrides) == 0 {
1233 return "", false
1234 }
1235 for _, o := range overrides {
1236 split := strings.Split(o, ":")
1237 if len(split) != 2 {
1238 // This shouldn't happen as this is first checked in make, but just in case.
Jaewoong Jung2ad817c2019-01-18 14:27:16 -08001239 panic(fmt.Errorf(errorMsg, o))
Jiyong Park7f67f482019-01-05 12:57:48 +09001240 }
1241 if matchPattern(split[0], name) {
1242 return substPattern(split[0], split[1], name), true
1243 }
1244 }
1245 return "", false
1246}
1247
Ivan Lozano5f595532017-07-13 14:46:05 -07001248func (c *config) IntegerOverflowDisabledForPath(path string) bool {
Roland Levillainf6cc2612020-07-09 16:58:14 +01001249 if len(c.productVariables.IntegerOverflowExcludePaths) == 0 {
Ivan Lozano5f595532017-07-13 14:46:05 -07001250 return false
1251 }
Jaewoong Jung3aff5782020-02-11 07:54:35 -08001252 return HasAnyPrefix(path, c.productVariables.IntegerOverflowExcludePaths)
Ivan Lozano5f595532017-07-13 14:46:05 -07001253}
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001254
1255func (c *config) CFIDisabledForPath(path string) bool {
Roland Levillainf6cc2612020-07-09 16:58:14 +01001256 if len(c.productVariables.CFIExcludePaths) == 0 {
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001257 return false
1258 }
Jaewoong Jung3aff5782020-02-11 07:54:35 -08001259 return HasAnyPrefix(path, c.productVariables.CFIExcludePaths)
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001260}
1261
1262func (c *config) CFIEnabledForPath(path string) bool {
Roland Levillainf6cc2612020-07-09 16:58:14 +01001263 if len(c.productVariables.CFIIncludePaths) == 0 {
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001264 return false
1265 }
Jaewoong Jung3aff5782020-02-11 07:54:35 -08001266 return HasAnyPrefix(path, c.productVariables.CFIIncludePaths)
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001267}
Colin Crosse15ddaf2017-12-04 11:24:31 -08001268
Evgenii Stepanov4beaa0c2021-01-05 16:41:26 -08001269func (c *config) MemtagHeapDisabledForPath(path string) bool {
1270 if len(c.productVariables.MemtagHeapExcludePaths) == 0 {
1271 return false
1272 }
1273 return HasAnyPrefix(path, c.productVariables.MemtagHeapExcludePaths)
1274}
1275
1276func (c *config) MemtagHeapAsyncEnabledForPath(path string) bool {
1277 if len(c.productVariables.MemtagHeapAsyncIncludePaths) == 0 {
1278 return false
1279 }
1280 return HasAnyPrefix(path, c.productVariables.MemtagHeapAsyncIncludePaths)
1281}
1282
1283func (c *config) MemtagHeapSyncEnabledForPath(path string) bool {
1284 if len(c.productVariables.MemtagHeapSyncIncludePaths) == 0 {
1285 return false
1286 }
1287 return HasAnyPrefix(path, c.productVariables.MemtagHeapSyncIncludePaths)
1288}
1289
Dan Willemsen0fe78662018-03-26 12:41:18 -07001290func (c *config) VendorConfig(name string) VendorConfig {
Colin Cross9d34f352019-11-22 16:03:51 -08001291 return soongconfig.Config(c.productVariables.VendorVars[name])
Dan Willemsen0fe78662018-03-26 12:41:18 -07001292}
1293
Colin Cross395f2cf2018-10-24 16:10:32 -07001294func (c *config) NdkAbis() bool {
1295 return Bool(c.productVariables.Ndk_abis)
1296}
1297
Martin Stjernholmc1ecc432019-11-15 15:00:31 +00001298func (c *config) AmlAbis() bool {
1299 return Bool(c.productVariables.Aml_abis)
1300}
1301
Dan Albert23d37e02018-11-28 08:30:10 -08001302func (c *config) ExcludeDraftNdkApis() bool {
1303 return Bool(c.productVariables.Exclude_draft_ndk_apis)
1304}
1305
Jiyong Park8fd61922018-11-08 02:50:25 +09001306func (c *config) FlattenApex() bool {
Roland Levillaina3863212019-08-12 19:56:16 +01001307 return Bool(c.productVariables.Flatten_apex)
Jiyong Park8fd61922018-11-08 02:50:25 +09001308}
1309
Jiyong Park4da07972021-01-05 21:01:11 +09001310func (c *config) ForceApexSymlinkOptimization() bool {
1311 return Bool(c.productVariables.ForceApexSymlinkOptimization)
1312}
1313
Mohammad Samiul Islam3cd005d2020-11-26 13:32:26 +00001314func (c *config) CompressedApex() bool {
1315 return Bool(c.productVariables.CompressedApex)
1316}
1317
Jeongik Chac9464142019-01-07 12:07:27 +09001318func (c *config) EnforceSystemCertificate() bool {
1319 return Bool(c.productVariables.EnforceSystemCertificate)
1320}
1321
Colin Cross440e0d02020-06-11 11:32:11 -07001322func (c *config) EnforceSystemCertificateAllowList() []string {
1323 return c.productVariables.EnforceSystemCertificateAllowList
Jeongik Chac9464142019-01-07 12:07:27 +09001324}
1325
Jeongik Cha2cc570d2019-10-29 15:44:45 +09001326func (c *config) EnforceProductPartitionInterface() bool {
1327 return Bool(c.productVariables.EnforceProductPartitionInterface)
1328}
1329
JaeMan Parkff715562020-10-19 17:25:58 +09001330func (c *config) EnforceInterPartitionJavaSdkLibrary() bool {
1331 return Bool(c.productVariables.EnforceInterPartitionJavaSdkLibrary)
1332}
1333
1334func (c *config) InterPartitionJavaLibraryAllowList() []string {
1335 return c.productVariables.InterPartitionJavaLibraryAllowList
1336}
1337
Jooyung Han3ab2c3e2019-12-05 16:27:44 +09001338func (c *config) InstallExtraFlattenedApexes() bool {
1339 return Bool(c.productVariables.InstallExtraFlattenedApexes)
1340}
1341
Colin Crossf24a22a2019-01-31 14:12:44 -08001342func (c *config) ProductHiddenAPIStubs() []string {
1343 return c.productVariables.ProductHiddenAPIStubs
Colin Cross8faf8fc2019-01-16 15:15:52 -08001344}
1345
Colin Crossf24a22a2019-01-31 14:12:44 -08001346func (c *config) ProductHiddenAPIStubsSystem() []string {
1347 return c.productVariables.ProductHiddenAPIStubsSystem
Colin Cross8faf8fc2019-01-16 15:15:52 -08001348}
1349
Colin Crossf24a22a2019-01-31 14:12:44 -08001350func (c *config) ProductHiddenAPIStubsTest() []string {
1351 return c.productVariables.ProductHiddenAPIStubsTest
Colin Cross8faf8fc2019-01-16 15:15:52 -08001352}
Dan Willemsen71c74602019-04-10 12:27:35 -07001353
Dan Willemsen54879d12019-04-18 10:08:46 -07001354func (c *deviceConfig) TargetFSConfigGen() []string {
Dan Willemsen71c74602019-04-10 12:27:35 -07001355 return c.config.productVariables.TargetFSConfigGen
1356}
Inseob Kim0866b002019-04-15 20:21:29 +09001357
1358func (c *config) ProductPublicSepolicyDirs() []string {
1359 return c.productVariables.ProductPublicSepolicyDirs
1360}
1361
1362func (c *config) ProductPrivateSepolicyDirs() []string {
1363 return c.productVariables.ProductPrivateSepolicyDirs
1364}
1365
Colin Cross50ddcc42019-05-16 12:28:22 -07001366func (c *config) MissingUsesLibraries() []string {
1367 return c.productVariables.MissingUsesLibraries
1368}
1369
Inseob Kim1f086e22019-05-09 13:29:15 +09001370func (c *deviceConfig) DeviceArch() string {
1371 return String(c.config.productVariables.DeviceArch)
1372}
1373
1374func (c *deviceConfig) DeviceArchVariant() string {
1375 return String(c.config.productVariables.DeviceArchVariant)
1376}
1377
1378func (c *deviceConfig) DeviceSecondaryArch() string {
1379 return String(c.config.productVariables.DeviceSecondaryArch)
1380}
1381
1382func (c *deviceConfig) DeviceSecondaryArchVariant() string {
1383 return String(c.config.productVariables.DeviceSecondaryArchVariant)
1384}
Yifan Hong82db7352020-01-21 16:12:26 -08001385
1386func (c *deviceConfig) BoardUsesRecoveryAsBoot() bool {
1387 return Bool(c.config.productVariables.BoardUsesRecoveryAsBoot)
1388}
Yifan Hong97365ee2020-07-29 09:51:57 -07001389
1390func (c *deviceConfig) BoardKernelBinaries() []string {
1391 return c.config.productVariables.BoardKernelBinaries
1392}
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001393
Yifan Hong42bef8d2020-08-05 14:36:09 -07001394func (c *deviceConfig) BoardKernelModuleInterfaceVersions() []string {
1395 return c.config.productVariables.BoardKernelModuleInterfaceVersions
1396}
1397
Yifan Hongdd8dacc2020-10-21 15:40:17 -07001398func (c *deviceConfig) BoardMoveRecoveryResourcesToVendorBoot() bool {
1399 return Bool(c.config.productVariables.BoardMoveRecoveryResourcesToVendorBoot)
1400}
1401
Inseob Kim16ebd5a2020-12-09 23:08:17 +09001402func (c *deviceConfig) PlatformSepolicyVersion() string {
1403 return String(c.config.productVariables.PlatformSepolicyVersion)
1404}
1405
1406func (c *deviceConfig) BoardSepolicyVers() string {
1407 return String(c.config.productVariables.BoardSepolicyVers)
1408}
1409
1410func (c *deviceConfig) BoardReqdMaskPolicy() []string {
1411 return c.config.productVariables.BoardReqdMaskPolicy
1412}
1413
Inseob Kim7cf14652021-01-06 23:06:52 +09001414func (c *deviceConfig) DirectedVendorSnapshot() bool {
1415 return c.config.productVariables.DirectedVendorSnapshot
1416}
1417
1418func (c *deviceConfig) VendorSnapshotModules() map[string]bool {
1419 return c.config.productVariables.VendorSnapshotModules
1420}
1421
Jose Galmes4c6895e2021-02-09 07:44:30 -08001422func (c *deviceConfig) DirectedRecoverySnapshot() bool {
1423 return c.config.productVariables.DirectedRecoverySnapshot
1424}
1425
1426func (c *deviceConfig) RecoverySnapshotModules() map[string]bool {
1427 return c.config.productVariables.RecoverySnapshotModules
1428}
1429
Justin DeMartino383bfb32021-02-24 10:49:43 -08001430func createDirsMap(previous map[string]bool, dirs []string) (map[string]bool, error) {
1431 var ret = make(map[string]bool)
1432 for _, dir := range dirs {
1433 clean := filepath.Clean(dir)
1434 if previous[clean] || ret[clean] {
1435 return nil, fmt.Errorf("Duplicate entry %s", dir)
1436 }
1437 ret[clean] = true
1438 }
1439 return ret, nil
1440}
1441
1442func (c *deviceConfig) createDirsMapOnce(onceKey OnceKey, previous map[string]bool, dirs []string) map[string]bool {
1443 dirMap := c.Once(onceKey, func() interface{} {
1444 ret, err := createDirsMap(previous, dirs)
1445 if err != nil {
1446 panic(fmt.Errorf("%s: %w", onceKey.key, err))
1447 }
1448 return ret
1449 })
1450 if dirMap == nil {
1451 return nil
1452 }
1453 return dirMap.(map[string]bool)
1454}
1455
1456var vendorSnapshotDirsExcludedKey = NewOnceKey("VendorSnapshotDirsExcludedMap")
1457
1458func (c *deviceConfig) VendorSnapshotDirsExcludedMap() map[string]bool {
1459 return c.createDirsMapOnce(vendorSnapshotDirsExcludedKey, nil,
1460 c.config.productVariables.VendorSnapshotDirsExcluded)
1461}
1462
1463var vendorSnapshotDirsIncludedKey = NewOnceKey("VendorSnapshotDirsIncludedMap")
1464
1465func (c *deviceConfig) VendorSnapshotDirsIncludedMap() map[string]bool {
1466 excludedMap := c.VendorSnapshotDirsExcludedMap()
1467 return c.createDirsMapOnce(vendorSnapshotDirsIncludedKey, excludedMap,
1468 c.config.productVariables.VendorSnapshotDirsIncluded)
1469}
1470
1471var recoverySnapshotDirsExcludedKey = NewOnceKey("RecoverySnapshotDirsExcludedMap")
1472
1473func (c *deviceConfig) RecoverySnapshotDirsExcludedMap() map[string]bool {
1474 return c.createDirsMapOnce(recoverySnapshotDirsExcludedKey, nil,
1475 c.config.productVariables.RecoverySnapshotDirsExcluded)
1476}
1477
1478var recoverySnapshotDirsIncludedKey = NewOnceKey("RecoverySnapshotDirsIncludedMap")
1479
1480func (c *deviceConfig) RecoverySnapshotDirsIncludedMap() map[string]bool {
1481 excludedMap := c.RecoverySnapshotDirsExcludedMap()
1482 return c.createDirsMapOnce(recoverySnapshotDirsIncludedKey, excludedMap,
1483 c.config.productVariables.RecoverySnapshotDirsIncluded)
1484}
1485
Inseob Kim60c32f02020-12-21 22:53:05 +09001486func (c *deviceConfig) ShippingApiLevel() ApiLevel {
1487 if c.config.productVariables.ShippingApiLevel == nil {
1488 return NoneApiLevel
1489 }
1490 apiLevel, _ := strconv.Atoi(*c.config.productVariables.ShippingApiLevel)
1491 return uncheckedFinalApiLevel(apiLevel)
1492}
1493
Inseob Kim0cac7b42021-02-03 18:16:46 +09001494func (c *deviceConfig) BuildBrokenVendorPropertyNamespace() bool {
1495 return c.config.productVariables.BuildBrokenVendorPropertyNamespace
1496}
1497
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001498// The ConfiguredJarList struct provides methods for handling a list of (apex, jar) pairs.
1499// Such lists are used in the build system for things like bootclasspath jars or system server jars.
1500// The apex part is either an apex name, or a special names "platform" or "system_ext". Jar is a
1501// module name. The pairs come from Make product variables as a list of colon-separated strings.
1502//
1503// Examples:
1504// - "com.android.art:core-oj"
1505// - "platform:framework"
1506// - "system_ext:foo"
1507//
1508type ConfiguredJarList struct {
Jingwen Chenc711fec2020-11-22 23:52:50 -05001509 // A list of apex components, which can be an apex name,
1510 // or special names like "platform" or "system_ext".
1511 apexes []string
1512
1513 // A list of jar module name components.
1514 jars []string
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001515}
1516
Jingwen Chenc711fec2020-11-22 23:52:50 -05001517// Len returns the length of the list of jars.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001518func (l *ConfiguredJarList) Len() int {
1519 return len(l.jars)
1520}
1521
Jingwen Chenc711fec2020-11-22 23:52:50 -05001522// Jar returns the idx-th jar component of (apex, jar) pairs.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001523func (l *ConfiguredJarList) Jar(idx int) string {
1524 return l.jars[idx]
1525}
1526
Jingwen Chenc711fec2020-11-22 23:52:50 -05001527// Apex returns the idx-th apex component of (apex, jar) pairs.
Paul Duffin9a89a2a2020-10-28 19:20:06 +00001528func (l *ConfiguredJarList) Apex(idx int) string {
1529 return l.apexes[idx]
1530}
1531
Jingwen Chenc711fec2020-11-22 23:52:50 -05001532// ContainsJar returns true if the (apex, jar) pairs contains a pair with the
1533// given jar module name.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001534func (l *ConfiguredJarList) ContainsJar(jar string) bool {
1535 return InList(jar, l.jars)
1536}
1537
1538// If the list contains the given (apex, jar) pair.
1539func (l *ConfiguredJarList) containsApexJarPair(apex, jar string) bool {
1540 for i := 0; i < l.Len(); i++ {
Paul Duffin1e8c6072020-10-23 18:28:55 +01001541 if apex == l.apexes[i] && jar == l.jars[i] {
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001542 return true
1543 }
1544 }
1545 return false
1546}
1547
Jingwen Chenc711fec2020-11-22 23:52:50 -05001548// IndexOfJar returns the first pair with the given jar name on the list, or -1
1549// if not found.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001550func (l *ConfiguredJarList) IndexOfJar(jar string) int {
1551 return IndexList(jar, l.jars)
1552}
1553
Paul Duffin7d584e92020-10-23 18:26:03 +01001554func copyAndAppend(list []string, item string) []string {
1555 // Create the result list to be 1 longer than the input.
1556 result := make([]string, len(list)+1)
1557
1558 // Copy the whole input list into the result.
1559 count := copy(result, list)
1560
1561 // Insert the extra item at the end.
1562 result[count] = item
1563
1564 return result
1565}
1566
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001567// Append an (apex, jar) pair to the list.
Paul Duffin7d584e92020-10-23 18:26:03 +01001568func (l *ConfiguredJarList) Append(apex string, jar string) ConfiguredJarList {
1569 // Create a copy of the backing arrays before appending to avoid sharing backing
1570 // arrays that are mutated across instances.
1571 apexes := copyAndAppend(l.apexes, apex)
1572 jars := copyAndAppend(l.jars, jar)
1573
1574 return ConfiguredJarList{apexes, jars}
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001575}
1576
Jingwen Chenc711fec2020-11-22 23:52:50 -05001577// RemoveList filters out a list of (apex, jar) pairs from the receiving list of pairs.
Paul Duffin7d584e92020-10-23 18:26:03 +01001578func (l *ConfiguredJarList) RemoveList(list ConfiguredJarList) ConfiguredJarList {
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001579 apexes := make([]string, 0, l.Len())
1580 jars := make([]string, 0, l.Len())
1581
1582 for i, jar := range l.jars {
Paul Duffin1e8c6072020-10-23 18:28:55 +01001583 apex := l.apexes[i]
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001584 if !list.containsApexJarPair(apex, jar) {
1585 apexes = append(apexes, apex)
1586 jars = append(jars, jar)
1587 }
1588 }
1589
Paul Duffin7d584e92020-10-23 18:26:03 +01001590 return ConfiguredJarList{apexes, jars}
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001591}
1592
Jingwen Chenc711fec2020-11-22 23:52:50 -05001593// CopyOfJars returns a copy of the list of strings containing jar module name
1594// components.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001595func (l *ConfiguredJarList) CopyOfJars() []string {
1596 return CopyOf(l.jars)
1597}
1598
Jingwen Chenc711fec2020-11-22 23:52:50 -05001599// CopyOfApexJarPairs returns a copy of the list of strings with colon-separated
1600// (apex, jar) pairs.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001601func (l *ConfiguredJarList) CopyOfApexJarPairs() []string {
1602 pairs := make([]string, 0, l.Len())
1603
1604 for i, jar := range l.jars {
Paul Duffin1e8c6072020-10-23 18:28:55 +01001605 apex := l.apexes[i]
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001606 pairs = append(pairs, apex+":"+jar)
1607 }
1608
1609 return pairs
1610}
1611
Jingwen Chenc711fec2020-11-22 23:52:50 -05001612// BuildPaths returns a list of build paths based on the given directory prefix.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001613func (l *ConfiguredJarList) BuildPaths(ctx PathContext, dir OutputPath) WritablePaths {
1614 paths := make(WritablePaths, l.Len())
1615 for i, jar := range l.jars {
1616 paths[i] = dir.Join(ctx, ModuleStem(jar)+".jar")
1617 }
1618 return paths
1619}
1620
Jingwen Chenc711fec2020-11-22 23:52:50 -05001621// UnmarshalJSON converts JSON configuration from raw bytes into a
1622// ConfiguredJarList structure.
Paul Duffin69d1fb12020-10-23 21:14:20 +01001623func (l *ConfiguredJarList) UnmarshalJSON(b []byte) error {
1624 // Try and unmarshal into a []string each item of which contains a pair
1625 // <apex>:<jar>.
1626 var list []string
1627 err := json.Unmarshal(b, &list)
1628 if err != nil {
1629 // Did not work so return
1630 return err
1631 }
1632
1633 apexes, jars, err := splitListOfPairsIntoPairOfLists(list)
1634 if err != nil {
1635 return err
1636 }
1637 l.apexes = apexes
1638 l.jars = jars
1639 return nil
1640}
1641
Jingwen Chenc711fec2020-11-22 23:52:50 -05001642// ModuleStem hardcodes the stem of framework-minus-apex to return "framework".
1643//
1644// TODO(b/139391334): hard coded until we find a good way to query the stem of a
1645// module before any other mutators are run.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001646func ModuleStem(module string) string {
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001647 if module == "framework-minus-apex" {
1648 return "framework"
1649 }
1650 return module
1651}
1652
Jingwen Chenc711fec2020-11-22 23:52:50 -05001653// DevicePaths computes the on-device paths for the list of (apex, jar) pairs,
1654// based on the operating system.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001655func (l *ConfiguredJarList) DevicePaths(cfg Config, ostype OsType) []string {
1656 paths := make([]string, l.Len())
1657 for i, jar := range l.jars {
1658 apex := l.apexes[i]
1659 name := ModuleStem(jar) + ".jar"
1660
1661 var subdir string
1662 if apex == "platform" {
1663 subdir = "system/framework"
1664 } else if apex == "system_ext" {
1665 subdir = "system_ext/framework"
1666 } else {
1667 subdir = filepath.Join("apex", apex, "javalib")
1668 }
1669
1670 if ostype.Class == Host {
1671 paths[i] = filepath.Join(cfg.Getenv("OUT_DIR"), "host", cfg.PrebuiltOS(), subdir, name)
1672 } else {
1673 paths[i] = filepath.Join("/", subdir, name)
1674 }
1675 }
1676 return paths
1677}
1678
Paul Duffin7d584e92020-10-23 18:26:03 +01001679func (l *ConfiguredJarList) String() string {
1680 var pairs []string
1681 for i := 0; i < l.Len(); i++ {
1682 pairs = append(pairs, l.apexes[i]+":"+l.jars[i])
1683 }
1684 return strings.Join(pairs, ",")
1685}
1686
Paul Duffin01416602020-10-23 21:04:03 +01001687func splitListOfPairsIntoPairOfLists(list []string) ([]string, []string, error) {
1688 // Now we need to populate this list by splitting each item in the slice of
1689 // pairs and appending them to the appropriate list of apexes or jars.
1690 apexes := make([]string, len(list))
1691 jars := make([]string, len(list))
1692
1693 for i, apexjar := range list {
1694 apex, jar, err := splitConfiguredJarPair(apexjar)
1695 if err != nil {
1696 return nil, nil, err
1697 }
1698 apexes[i] = apex
1699 jars[i] = jar
1700 }
1701
1702 return apexes, jars, nil
1703}
1704
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001705// Expected format for apexJarValue = <apex name>:<jar name>
Paul Duffin01416602020-10-23 21:04:03 +01001706func splitConfiguredJarPair(str string) (string, string, error) {
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001707 pair := strings.SplitN(str, ":", 2)
1708 if len(pair) == 2 {
Paul Duffin9c3ac962021-02-03 14:11:27 +00001709 apex := pair[0]
1710 jar := pair[1]
1711 if apex == "" {
1712 return apex, jar, fmt.Errorf("invalid apex '%s' in <apex>:<jar> pair '%s', expected format: <apex>:<jar>", apex, str)
1713 }
1714 return apex, jar, nil
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001715 } else {
Paul Duffin01416602020-10-23 21:04:03 +01001716 return "error-apex", "error-jar", fmt.Errorf("malformed (apex, jar) pair: '%s', expected format: <apex>:<jar>", str)
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001717 }
1718}
1719
Paul Duffin9c3ac962021-02-03 14:11:27 +00001720// CreateTestConfiguredJarList is a function to create ConfiguredJarList for tests.
Paul Duffine10dfa42020-10-23 21:23:44 +01001721func CreateTestConfiguredJarList(list []string) ConfiguredJarList {
Paul Duffin9c3ac962021-02-03 14:11:27 +00001722 // Create the ConfiguredJarList in as similar way as it is created at runtime by marshalling to
1723 // a json list of strings and then unmarshalling into a ConfiguredJarList instance.
1724 b, err := json.Marshal(list)
Paul Duffin01416602020-10-23 21:04:03 +01001725 if err != nil {
Paul Duffine10dfa42020-10-23 21:23:44 +01001726 panic(err)
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001727 }
1728
Paul Duffin9c3ac962021-02-03 14:11:27 +00001729 var jarList ConfiguredJarList
1730 err = json.Unmarshal(b, &jarList)
1731 if err != nil {
1732 panic(err)
1733 }
1734
1735 return jarList
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001736}
1737
Jingwen Chenc711fec2020-11-22 23:52:50 -05001738// EmptyConfiguredJarList returns an empty jar list.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001739func EmptyConfiguredJarList() ConfiguredJarList {
1740 return ConfiguredJarList{}
1741}
1742
1743var earlyBootJarsKey = NewOnceKey("earlyBootJars")
1744
1745func (c *config) BootJars() []string {
1746 return c.Once(earlyBootJarsKey, func() interface{} {
Paul Duffin69d1fb12020-10-23 21:14:20 +01001747 list := c.productVariables.BootJars.CopyOfJars()
Jingwen Chenc711fec2020-11-22 23:52:50 -05001748 return append(list, c.productVariables.UpdatableBootJars.CopyOfJars()...)
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001749 }).([]string)
1750}
Paul Duffin9a89a2a2020-10-28 19:20:06 +00001751
1752func (c *config) NonUpdatableBootJars() ConfiguredJarList {
1753 return c.productVariables.BootJars
1754}
1755
1756func (c *config) UpdatableBootJars() ConfiguredJarList {
1757 return c.productVariables.UpdatableBootJars
1758}