blob: ee86d17a4645a6e261cf9fc9ab225d4baba311b9 [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"
Dan Willemsen34cc69e2015-09-23 15:26:20 -070027 "strings"
Colin Crossc1e86a32015-04-15 12:33:28 -070028 "sync"
Colin Cross6ff51382015-12-17 16:39:19 -080029
Colin Cross98be1bb2019-12-13 20:41:13 -080030 "github.com/google/blueprint"
Colin Crosse87040b2017-12-11 15:52:26 -080031 "github.com/google/blueprint/bootstrap"
Colin Cross98be1bb2019-12-13 20:41:13 -080032 "github.com/google/blueprint/pathtools"
Colin Cross6ff51382015-12-17 16:39:19 -080033 "github.com/google/blueprint/proptools"
Colin Cross9d34f352019-11-22 16:03:51 -080034
35 "android/soong/android/soongconfig"
Colin Cross3f40fa42015-01-30 17:27:36 -080036)
37
Jingwen Chenc711fec2020-11-22 23:52:50 -050038// Bool re-exports proptools.Bool for the android package.
Colin Cross6ff51382015-12-17 16:39:19 -080039var Bool = proptools.Bool
Jingwen Chenc711fec2020-11-22 23:52:50 -050040
41// String re-exports proptools.String for the android package.
Jack He8cc71432016-12-08 15:45:07 -080042var String = proptools.String
Jingwen Chenc711fec2020-11-22 23:52:50 -050043
44// StringDefault re-exports proptools.StringDefault for the android package.
Jeongik Cha219141c2020-08-06 23:00:37 +090045var StringDefault = proptools.StringDefault
Jiyong Park6a927c42020-01-21 02:03:43 +090046
Jingwen Chenc711fec2020-11-22 23:52:50 -050047// FutureApiLevelInt is a placeholder constant for unreleased API levels.
Dan Albert0b176c82020-07-23 16:43:25 -070048const FutureApiLevelInt = 10000
49
Jingwen Chenc711fec2020-11-22 23:52:50 -050050// FutureApiLevel represents unreleased API levels.
Dan Albert0b176c82020-07-23 16:43:25 -070051var FutureApiLevel = ApiLevel{
52 value: "current",
53 number: FutureApiLevelInt,
54 isPreview: true,
55}
Colin Cross6ff51382015-12-17 16:39:19 -080056
Jingwen Chenc4d91bc2020-11-24 22:59:26 -050057// The product variables file name, containing product config from Kati.
Dan Willemsen87b17d12015-07-14 00:39:06 -070058const productVariablesFileName = "soong.variables"
Colin Cross3f40fa42015-01-30 17:27:36 -080059
Colin Cross9272ade2016-08-17 15:24:12 -070060// A Config object represents the entire build configuration for Android.
Colin Crossc3c0a492015-04-10 15:43:55 -070061type Config struct {
62 *config
63}
64
Jingwen Chenc711fec2020-11-22 23:52:50 -050065// BuildDir returns the build output directory for the configuration.
Jeff Gastonefc1b412017-03-29 17:29:06 -070066func (c Config) BuildDir() string {
67 return c.buildDir
68}
69
Jingwen Chenc711fec2020-11-22 23:52:50 -050070// A DeviceConfig object represents the configuration for a particular device
71// being built. For now there will only be one of these, but in the future there
72// may be multiple devices being built.
Colin Cross9272ade2016-08-17 15:24:12 -070073type DeviceConfig struct {
74 *deviceConfig
75}
76
Jingwen Chenc711fec2020-11-22 23:52:50 -050077// VendorConfig represents the configuration for vendor-specific behavior.
Colin Cross9d34f352019-11-22 16:03:51 -080078type VendorConfig soongconfig.SoongConfig
Dan Willemsen0fe78662018-03-26 12:41:18 -070079
Jingwen Chenc711fec2020-11-22 23:52:50 -050080// Definition of general build configuration for soong_build. Some of these
Jingwen Chenc4d91bc2020-11-24 22:59:26 -050081// product configuration values are read from Kati-generated soong.variables.
Colin Cross1332b002015-04-07 17:11:30 -070082type config struct {
Jingwen Chenc711fec2020-11-22 23:52:50 -050083 // Options configurable with soong.variables
Dan Willemsen45133ac2018-03-09 21:22:06 -080084 productVariables productVariables
Colin Cross3f40fa42015-01-30 17:27:36 -080085
Dan Willemsen674dc7f2018-03-12 18:06:05 -070086 // Only available on configs created by TestConfig
87 TestProductVariables *productVariables
88
Jingwen Chenc711fec2020-11-22 23:52:50 -050089 // A specialized context object for Bazel/Soong mixed builds and migration
90 // purposes.
Chris Parsonsf3c96ef2020-09-29 02:23:17 -040091 BazelContext BazelContext
92
Dan Willemsen87b17d12015-07-14 00:39:06 -070093 ProductVariablesFileName string
94
Jaewoong Jung642916f2020-10-09 17:25:15 -070095 Targets map[OsType][]Target
96 BuildOSTarget Target // the Target for tools run on the build machine
97 BuildOSCommonTarget Target // the Target for common (java) tools run on the build machine
98 AndroidCommonTarget Target // the Target for common modules for the Android device
99 AndroidFirstDeviceTarget Target // the first Target for modules for the Android device
Dan Willemsen218f6562015-07-08 18:13:11 -0700100
Jingwen Chenc711fec2020-11-22 23:52:50 -0500101 // multilibConflicts for an ArchType is true if there is earlier configured
102 // device architecture with the same multilib value.
Colin Cross3b19f5d2019-09-17 14:45:31 -0700103 multilibConflicts map[ArchType]bool
104
Colin Cross9272ade2016-08-17 15:24:12 -0700105 deviceConfig *deviceConfig
106
Chris Parsons8f232a22020-06-23 17:37:05 -0400107 srcDir string // the path of the root source directory
108 buildDir string // the path of the build output directory
109 moduleListFile string // the path to the file which lists blueprint files to parse.
Colin Crossc1e86a32015-04-15 12:33:28 -0700110
Colin Cross6ccbc912017-10-10 23:07:38 -0700111 env map[string]string
Dan Willemsene7680ba2015-09-11 17:06:19 -0700112 envLock sync.Mutex
113 envDeps map[string]string
114 envFrozen bool
Dan Willemsen5ba07e82015-12-11 13:51:06 -0800115
Jingwen Chencda22c92020-11-23 00:22:30 -0500116 // Changes behavior based on whether Kati runs after soong_build, or if soong_build
117 // runs standalone.
118 katiEnabled bool
Colin Cross1e7d3702016-08-24 15:25:47 -0700119
Colin Cross32616ed2017-09-05 21:56:44 -0700120 captureBuild bool // true for tests, saves build parameters for each module
121 ignoreEnvironment bool // true for tests, returns empty from all Getenv calls
Colin Crosscec81712017-07-13 14:43:27 -0700122
Colin Crosse87040b2017-12-11 15:52:26 -0800123 stopBefore bootstrap.StopBefore
124
Colin Cross98be1bb2019-12-13 20:41:13 -0800125 fs pathtools.FileSystem
126 mockBpList string
127
Colin Cross5e6a7972020-06-07 16:56:32 -0700128 // If testAllowNonExistentPaths is true then PathForSource and PathForModuleSrc won't error
129 // in tests when a path doesn't exist.
130 testAllowNonExistentPaths bool
131
Jingwen Chenc711fec2020-11-22 23:52:50 -0500132 // The list of files that when changed, must invalidate soong_build to
133 // regenerate build.ninja.
Colin Cross12129292020-10-29 18:23:58 -0700134 ninjaFileDepsSet sync.Map
135
Colin Cross9272ade2016-08-17 15:24:12 -0700136 OncePer
137}
138
139type deviceConfig struct {
Dan Willemsen00269f22017-07-06 16:59:48 -0700140 config *config
Colin Cross9272ade2016-08-17 15:24:12 -0700141 OncePer
Colin Cross3f40fa42015-01-30 17:27:36 -0800142}
143
Colin Cross485e5722015-08-27 13:28:01 -0700144type jsonConfigurable interface {
Colin Cross27385972015-09-18 10:57:10 -0700145 SetDefaultConfig()
Colin Cross485e5722015-08-27 13:28:01 -0700146}
Colin Cross3f40fa42015-01-30 17:27:36 -0800147
Colin Cross485e5722015-08-27 13:28:01 -0700148func loadConfig(config *config) error {
Colin Cross988414c2020-01-11 01:11:46 +0000149 return loadFromConfigFile(&config.productVariables, absolutePath(config.ProductVariablesFileName))
Colin Cross485e5722015-08-27 13:28:01 -0700150}
151
Jingwen Chenc711fec2020-11-22 23:52:50 -0500152// loadFromConfigFile loads and decodes configuration options from a JSON file
153// in the current working directory.
Colin Cross485e5722015-08-27 13:28:01 -0700154func loadFromConfigFile(configurable jsonConfigurable, filename string) error {
Colin Cross3f40fa42015-01-30 17:27:36 -0800155 // Try to open the file
Colin Cross485e5722015-08-27 13:28:01 -0700156 configFileReader, err := os.Open(filename)
Colin Cross3f40fa42015-01-30 17:27:36 -0800157 defer configFileReader.Close()
158 if os.IsNotExist(err) {
159 // Need to create a file, so that blueprint & ninja don't get in
160 // a dependency tracking loop.
161 // Make a file-configurable-options with defaults, write it out using
162 // a json writer.
Colin Cross27385972015-09-18 10:57:10 -0700163 configurable.SetDefaultConfig()
164 err = saveToConfigFile(configurable, filename)
Colin Cross3f40fa42015-01-30 17:27:36 -0800165 if err != nil {
166 return err
167 }
Colin Cross15cd21a2018-02-27 11:26:02 -0800168 } else if err != nil {
169 return fmt.Errorf("config file: could not open %s: %s", filename, err.Error())
Colin Cross3f40fa42015-01-30 17:27:36 -0800170 } else {
171 // Make a decoder for it
172 jsonDecoder := json.NewDecoder(configFileReader)
Colin Cross485e5722015-08-27 13:28:01 -0700173 err = jsonDecoder.Decode(configurable)
Colin Cross3f40fa42015-01-30 17:27:36 -0800174 if err != nil {
Colin Cross15cd21a2018-02-27 11:26:02 -0800175 return fmt.Errorf("config file: %s did not parse correctly: %s", filename, err.Error())
Colin Cross3f40fa42015-01-30 17:27:36 -0800176 }
177 }
178
Colin Cross3f40fa42015-01-30 17:27:36 -0800179 // No error
180 return nil
181}
182
Colin Crossd8f20142016-11-03 09:43:26 -0700183// atomically writes the config file in case two copies of soong_build are running simultaneously
184// (for example, docs generation and ninja manifest generation)
Colin Cross485e5722015-08-27 13:28:01 -0700185func saveToConfigFile(config jsonConfigurable, filename string) error {
Colin Cross3f40fa42015-01-30 17:27:36 -0800186 data, err := json.MarshalIndent(&config, "", " ")
187 if err != nil {
188 return fmt.Errorf("cannot marshal config data: %s", err.Error())
189 }
190
Colin Crossd8f20142016-11-03 09:43:26 -0700191 f, err := ioutil.TempFile(filepath.Dir(filename), "config")
Colin Cross3f40fa42015-01-30 17:27:36 -0800192 if err != nil {
Jingwen Chenc711fec2020-11-22 23:52:50 -0500193 return fmt.Errorf("cannot create empty config file %s: %s", filename, err.Error())
Colin Cross3f40fa42015-01-30 17:27:36 -0800194 }
Colin Crossd8f20142016-11-03 09:43:26 -0700195 defer os.Remove(f.Name())
196 defer f.Close()
Colin Cross3f40fa42015-01-30 17:27:36 -0800197
Colin Crossd8f20142016-11-03 09:43:26 -0700198 _, err = f.Write(data)
Colin Cross3f40fa42015-01-30 17:27:36 -0800199 if err != nil {
Colin Cross485e5722015-08-27 13:28:01 -0700200 return fmt.Errorf("default config file: %s could not be written: %s", filename, err.Error())
201 }
202
Colin Crossd8f20142016-11-03 09:43:26 -0700203 _, err = f.WriteString("\n")
Colin Cross485e5722015-08-27 13:28:01 -0700204 if err != nil {
205 return fmt.Errorf("default config file: %s could not be written: %s", filename, err.Error())
Colin Cross3f40fa42015-01-30 17:27:36 -0800206 }
207
Colin Crossd8f20142016-11-03 09:43:26 -0700208 f.Close()
209 os.Rename(f.Name(), filename)
210
Colin Cross3f40fa42015-01-30 17:27:36 -0800211 return nil
212}
213
Colin Cross988414c2020-01-11 01:11:46 +0000214// NullConfig returns a mostly empty Config for use by standalone tools like dexpreopt_gen that
215// use the android package.
216func NullConfig(buildDir string) Config {
217 return Config{
218 config: &config{
219 buildDir: buildDir,
220 fs: pathtools.OsFs,
221 },
222 }
223}
224
Jingwen Chenc711fec2020-11-22 23:52:50 -0500225// TestConfig returns a Config object for testing.
Colin Cross98be1bb2019-12-13 20:41:13 -0800226func TestConfig(buildDir string, env map[string]string, bp string, fs map[string][]byte) Config {
Colin Cross9c6241f2019-04-22 15:51:26 -0700227 envCopy := make(map[string]string)
228 for k, v := range env {
229 envCopy[k] = v
230 }
231
Jingwen Chen2838c812020-11-23 01:06:40 -0500232 // Copy the real PATH value to the test environment, it's needed by
233 // NonHermeticHostSystemTool() used in x86_darwin_host.go
Colin Cross9c6241f2019-04-22 15:51:26 -0700234 envCopy["PATH"] = originalEnv["PATH"]
235
Dan Willemsen00269f22017-07-06 16:59:48 -0700236 config := &config{
Dan Willemsen45133ac2018-03-09 21:22:06 -0800237 productVariables: productVariables{
Dan Albert4f378d72020-07-23 17:32:15 -0700238 DeviceName: stringPtr("test_device"),
239 Platform_sdk_version: intPtr(30),
240 Platform_sdk_codename: stringPtr("S"),
241 Platform_version_active_codenames: []string{"S"},
242 DeviceSystemSdkVersions: []string{"14", "15"},
243 Platform_systemsdk_versions: []string{"29", "30"},
244 AAPTConfig: []string{"normal", "large", "xlarge", "hdpi", "xhdpi", "xxhdpi"},
245 AAPTPreferredConfig: stringPtr("xhdpi"),
246 AAPTCharacteristics: stringPtr("nosdcard"),
247 AAPTPrebuiltDPI: []string{"xhdpi", "xxhdpi"},
248 UncompressPrivAppDex: boolPtr(true),
Dan Willemsen00269f22017-07-06 16:59:48 -0700249 },
250
Colin Cross6ccbc912017-10-10 23:07:38 -0700251 buildDir: buildDir,
252 captureBuild: true,
Colin Cross9c6241f2019-04-22 15:51:26 -0700253 env: envCopy,
Colin Cross5e6a7972020-06-07 16:56:32 -0700254
255 // Set testAllowNonExistentPaths so that test contexts don't need to specify every path
256 // passed to PathForSource or PathForModuleSrc.
257 testAllowNonExistentPaths: true,
Chris Parsonsf3c96ef2020-09-29 02:23:17 -0400258
259 BazelContext: noopBazelContext{},
Dan Willemsen00269f22017-07-06 16:59:48 -0700260 }
261 config.deviceConfig = &deviceConfig{
262 config: config,
263 }
Dan Willemsen45133ac2018-03-09 21:22:06 -0800264 config.TestProductVariables = &config.productVariables
Dan Willemsen00269f22017-07-06 16:59:48 -0700265
Colin Cross98be1bb2019-12-13 20:41:13 -0800266 config.mockFileSystem(bp, fs)
267
Dan Willemsen00269f22017-07-06 16:59:48 -0700268 return Config{config}
Colin Crossce75d2c2016-10-06 16:12:58 -0700269}
270
Jingwen Chenc711fec2020-11-22 23:52:50 -0500271// TestArchConfigNativeBridge returns a Config object suitable for using
272// for tests that need to run the arch mutator for native bridge supported
273// archs.
Colin Cross98be1bb2019-12-13 20:41:13 -0800274func TestArchConfigNativeBridge(buildDir string, env map[string]string, bp string, fs map[string][]byte) Config {
275 testConfig := TestArchConfig(buildDir, env, bp, fs)
dimitry1f33e402019-03-26 12:39:31 +0100276 config := testConfig.config
277
Colin Cross0d99f7c2019-05-14 16:01:24 -0700278 config.Targets[Android] = []Target{
Jiyong Park1613e552020-09-14 19:43:17 +0900279 {Android, Arch{ArchType: X86_64, ArchVariant: "silvermont", Abi: []string{"arm64-v8a"}}, NativeBridgeDisabled, "", "", false},
280 {Android, Arch{ArchType: X86, ArchVariant: "silvermont", Abi: []string{"armeabi-v7a"}}, NativeBridgeDisabled, "", "", false},
281 {Android, Arch{ArchType: Arm64, ArchVariant: "armv8-a", Abi: []string{"arm64-v8a"}}, NativeBridgeEnabled, "x86_64", "arm64", false},
282 {Android, Arch{ArchType: Arm, ArchVariant: "armv7-a-neon", Abi: []string{"armeabi-v7a"}}, NativeBridgeEnabled, "x86", "arm", false},
dimitry1f33e402019-03-26 12:39:31 +0100283 }
284
285 return testConfig
286}
287
Jingwen Chenc711fec2020-11-22 23:52:50 -0500288// TestArchConfigFuchsia returns a Config object suitable for using for
289// tests that need to run the arch mutator for the Fuchsia arch.
Colin Cross98be1bb2019-12-13 20:41:13 -0800290func TestArchConfigFuchsia(buildDir string, env map[string]string, bp string, fs map[string][]byte) Config {
291 testConfig := TestConfig(buildDir, env, bp, fs)
Doug Hornc32c6b02019-01-17 14:44:05 -0800292 config := testConfig.config
293
294 config.Targets = map[OsType][]Target{
295 Fuchsia: []Target{
Jiyong Park1613e552020-09-14 19:43:17 +0900296 {Fuchsia, Arch{ArchType: Arm64, ArchVariant: "", Abi: []string{"arm64-v8a"}}, NativeBridgeDisabled, "", "", false},
Doug Hornc32c6b02019-01-17 14:44:05 -0800297 },
298 BuildOs: []Target{
Jiyong Park1613e552020-09-14 19:43:17 +0900299 {BuildOs, Arch{ArchType: X86_64}, NativeBridgeDisabled, "", "", false},
Doug Hornc32c6b02019-01-17 14:44:05 -0800300 },
301 }
302
303 return testConfig
304}
305
Jingwen Chenc711fec2020-11-22 23:52:50 -0500306// TestArchConfig returns a Config object suitable for using for tests that
307// need to run the arch mutator.
Colin Cross98be1bb2019-12-13 20:41:13 -0800308func TestArchConfig(buildDir string, env map[string]string, bp string, fs map[string][]byte) Config {
309 testConfig := TestConfig(buildDir, env, bp, fs)
Colin Crossae4c6182017-09-15 17:33:55 -0700310 config := testConfig.config
311
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700312 config.Targets = map[OsType][]Target{
313 Android: []Target{
Jiyong Park1613e552020-09-14 19:43:17 +0900314 {Android, Arch{ArchType: Arm64, ArchVariant: "armv8-a", Abi: []string{"arm64-v8a"}}, NativeBridgeDisabled, "", "", false},
315 {Android, Arch{ArchType: Arm, ArchVariant: "armv7-a-neon", Abi: []string{"armeabi-v7a"}}, NativeBridgeDisabled, "", "", false},
Colin Crossae4c6182017-09-15 17:33:55 -0700316 },
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700317 BuildOs: []Target{
Jiyong Park1613e552020-09-14 19:43:17 +0900318 {BuildOs, Arch{ArchType: X86_64}, NativeBridgeDisabled, "", "", false},
319 {BuildOs, Arch{ArchType: X86}, NativeBridgeDisabled, "", "", false},
Colin Crossae4c6182017-09-15 17:33:55 -0700320 },
321 }
322
Colin Cross0d99f7c2019-05-14 16:01:24 -0700323 if runtime.GOOS == "darwin" {
324 config.Targets[BuildOs] = config.Targets[BuildOs][:1]
325 }
326
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700327 config.BuildOSTarget = config.Targets[BuildOs][0]
328 config.BuildOSCommonTarget = getCommonTargets(config.Targets[BuildOs])[0]
329 config.AndroidCommonTarget = getCommonTargets(config.Targets[Android])[0]
Jaewoong Jung642916f2020-10-09 17:25:15 -0700330 config.AndroidFirstDeviceTarget = firstTarget(config.Targets[Android], "lib64", "lib32")[0]
Inseob Kim1f086e22019-05-09 13:29:15 +0900331 config.TestProductVariables.DeviceArch = proptools.StringPtr("arm64")
332 config.TestProductVariables.DeviceArchVariant = proptools.StringPtr("armv8-a")
333 config.TestProductVariables.DeviceSecondaryArch = proptools.StringPtr("arm")
334 config.TestProductVariables.DeviceSecondaryArchVariant = proptools.StringPtr("armv7-a-neon")
Colin Cross2a076922018-10-04 23:28:25 -0700335
Colin Crossae4c6182017-09-15 17:33:55 -0700336 return testConfig
337}
338
Jingwen Chenc711fec2020-11-22 23:52:50 -0500339// ConfigForAdditionalRun is a config object which is "reset" for another
340// bootstrap run. Only per-run data is reset. Data which needs to persist across
341// multiple runs in the same program execution is carried over (such as Bazel
342// context or environment deps).
Chris Parsonsf3c96ef2020-09-29 02:23:17 -0400343func ConfigForAdditionalRun(c Config) (Config, error) {
344 newConfig, err := NewConfig(c.srcDir, c.buildDir, c.moduleListFile)
345 if err != nil {
346 return Config{}, err
347 }
348 newConfig.BazelContext = c.BazelContext
349 newConfig.envDeps = c.envDeps
350 return newConfig, nil
351}
352
Jingwen Chenc711fec2020-11-22 23:52:50 -0500353// NewConfig creates a new Config object. The srcDir argument specifies the path
354// to the root source directory. It also loads the config file, if found.
Chris Parsons8f232a22020-06-23 17:37:05 -0400355func NewConfig(srcDir, buildDir string, moduleListFile string) (Config, error) {
Jingwen Chenc711fec2020-11-22 23:52:50 -0500356 // Make a config with default options.
Colin Cross9272ade2016-08-17 15:24:12 -0700357 config := &config{
Colin Cross9272ade2016-08-17 15:24:12 -0700358 ProductVariablesFileName: filepath.Join(buildDir, productVariablesFileName),
Dan Willemsen87b17d12015-07-14 00:39:06 -0700359
Colin Cross6ccbc912017-10-10 23:07:38 -0700360 env: originalEnv,
361
Colin Cross3b19f5d2019-09-17 14:45:31 -0700362 srcDir: srcDir,
363 buildDir: buildDir,
364 multilibConflicts: make(map[ArchType]bool),
Colin Cross98be1bb2019-12-13 20:41:13 -0800365
Chris Parsons8f232a22020-06-23 17:37:05 -0400366 moduleListFile: moduleListFile,
367 fs: pathtools.NewOsFs(absSrcDir),
Colin Cross68f55102015-03-25 14:43:57 -0700368 }
Colin Cross3f40fa42015-01-30 17:27:36 -0800369
Dan Willemsen00269f22017-07-06 16:59:48 -0700370 config.deviceConfig = &deviceConfig{
Colin Cross9272ade2016-08-17 15:24:12 -0700371 config: config,
372 }
373
Liz Kammer7941b302020-07-28 13:27:34 -0700374 // Soundness check of the build and source directories. This won't catch strange
375 // configurations with symlinks, but at least checks the obvious case.
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700376 absBuildDir, err := filepath.Abs(buildDir)
377 if err != nil {
378 return Config{}, err
379 }
380
381 absSrcDir, err := filepath.Abs(srcDir)
382 if err != nil {
383 return Config{}, err
384 }
385
386 if strings.HasPrefix(absSrcDir, absBuildDir) {
387 return Config{}, fmt.Errorf("Build dir must not contain source directory")
388 }
389
Colin Cross3f40fa42015-01-30 17:27:36 -0800390 // Load any configurable options from the configuration file
Colin Cross9272ade2016-08-17 15:24:12 -0700391 err = loadConfig(config)
Colin Cross3f40fa42015-01-30 17:27:36 -0800392 if err != nil {
Colin Crossc3c0a492015-04-10 15:43:55 -0700393 return Config{}, err
Colin Cross3f40fa42015-01-30 17:27:36 -0800394 }
395
Jingwen Chencda22c92020-11-23 00:22:30 -0500396 KatiEnabledMarkerFile := filepath.Join(buildDir, ".soong.kati_enabled")
397 if _, err := os.Stat(absolutePath(KatiEnabledMarkerFile)); err == nil {
398 config.katiEnabled = true
Dan Willemsen5ba07e82015-12-11 13:51:06 -0800399 }
400
Jingwen Chenc711fec2020-11-22 23:52:50 -0500401 // Sets up the map of target OSes to the finer grained compilation targets
402 // that are configured from the product variables.
Colin Crossa1ad8d12016-06-01 17:09:44 -0700403 targets, err := decodeTargetProductVariables(config)
Dan Willemsen218f6562015-07-08 18:13:11 -0700404 if err != nil {
405 return Config{}, err
406 }
407
Paul Duffin1356d8c2020-02-25 19:26:33 +0000408 // Make the CommonOS OsType available for all products.
409 targets[CommonOS] = []Target{commonTargetMap[CommonOS.Name]}
410
Dan Albert4098deb2016-10-19 14:04:41 -0700411 var archConfig []archConfig
Jingwen Chenc4d91bc2020-11-24 22:59:26 -0500412 if config.NdkAbis() {
Dan Albert4098deb2016-10-19 14:04:41 -0700413 archConfig = getNdkAbisConfig()
Martin Stjernholmc1ecc432019-11-15 15:00:31 +0000414 } else if config.AmlAbis() {
415 archConfig = getAmlAbisConfig()
Dan Albert4098deb2016-10-19 14:04:41 -0700416 }
417
418 if archConfig != nil {
Dan Willemsen01a3c252019-01-11 19:02:16 -0800419 androidTargets, err := decodeArchSettings(Android, archConfig)
Dan Willemsen322acaf2016-01-12 23:07:05 -0800420 if err != nil {
421 return Config{}, err
422 }
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700423 targets[Android] = androidTargets
Dan Willemsen322acaf2016-01-12 23:07:05 -0800424 }
425
Colin Cross3b19f5d2019-09-17 14:45:31 -0700426 multilib := make(map[string]bool)
427 for _, target := range targets[Android] {
428 if seen := multilib[target.Arch.ArchType.Multilib]; seen {
429 config.multilibConflicts[target.Arch.ArchType] = true
430 }
431 multilib[target.Arch.ArchType.Multilib] = true
432 }
433
Jingwen Chenc711fec2020-11-22 23:52:50 -0500434 // Map of OS to compilation targets.
Colin Crossa1ad8d12016-06-01 17:09:44 -0700435 config.Targets = targets
Jingwen Chenc711fec2020-11-22 23:52:50 -0500436
437 // Compilation targets for host tools.
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700438 config.BuildOSTarget = config.Targets[BuildOs][0]
439 config.BuildOSCommonTarget = getCommonTargets(config.Targets[BuildOs])[0]
Jingwen Chenc711fec2020-11-22 23:52:50 -0500440
441 // Compilation targets for Android.
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700442 if len(config.Targets[Android]) > 0 {
443 config.AndroidCommonTarget = getCommonTargets(config.Targets[Android])[0]
Jaewoong Jung642916f2020-10-09 17:25:15 -0700444 config.AndroidFirstDeviceTarget = firstTarget(config.Targets[Android], "lib64", "lib32")[0]
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700445 }
Dan Willemsen218f6562015-07-08 18:13:11 -0700446
Colin Cross1a6acd42020-06-16 17:51:46 -0700447 if Bool(config.productVariables.GcovCoverage) && Bool(config.productVariables.ClangCoverage) {
448 return Config{}, fmt.Errorf("GcovCoverage and ClangCoverage cannot both be set")
449 }
450
451 config.productVariables.Native_coverage = proptools.BoolPtr(
452 Bool(config.productVariables.GcovCoverage) ||
453 Bool(config.productVariables.ClangCoverage))
454
Chris Parsonsf3c96ef2020-09-29 02:23:17 -0400455 config.BazelContext, err = NewBazelContext(config)
Colin Cross3f40fa42015-01-30 17:27:36 -0800456
Jingwen Chenc711fec2020-11-22 23:52:50 -0500457 return Config{config}, err
458}
Colin Cross988414c2020-01-11 01:11:46 +0000459
Colin Cross98be1bb2019-12-13 20:41:13 -0800460// mockFileSystem replaces all reads with accesses to the provided map of
461// filenames to contents stored as a byte slice.
462func (c *config) mockFileSystem(bp string, fs map[string][]byte) {
463 mockFS := map[string][]byte{}
464
465 if _, exists := mockFS["Android.bp"]; !exists {
466 mockFS["Android.bp"] = []byte(bp)
467 }
468
469 for k, v := range fs {
470 mockFS[k] = v
471 }
472
473 // no module list file specified; find every file named Blueprints or Android.bp
474 pathsToParse := []string{}
475 for candidate := range mockFS {
476 base := filepath.Base(candidate)
477 if base == "Blueprints" || base == "Android.bp" {
478 pathsToParse = append(pathsToParse, candidate)
479 }
480 }
481 if len(pathsToParse) < 1 {
482 panic(fmt.Sprintf("No Blueprint or Android.bp files found in mock filesystem: %v\n", mockFS))
483 }
484 mockFS[blueprint.MockModuleListFile] = []byte(strings.Join(pathsToParse, "\n"))
485
486 c.fs = pathtools.MockFs(mockFS)
487 c.mockBpList = blueprint.MockModuleListFile
488}
489
Colin Crosse87040b2017-12-11 15:52:26 -0800490func (c *config) StopBefore() bootstrap.StopBefore {
491 return c.stopBefore
Dan Willemsen218f6562015-07-08 18:13:11 -0700492}
493
Jingwen Chenc711fec2020-11-22 23:52:50 -0500494// SetStopBefore configures soong_build to exit earlier at a specific point.
Colin Crosse87040b2017-12-11 15:52:26 -0800495func (c *config) SetStopBefore(stopBefore bootstrap.StopBefore) {
496 c.stopBefore = stopBefore
497}
498
499var _ bootstrap.ConfigStopBefore = (*config)(nil)
500
Jingwen Chenc711fec2020-11-22 23:52:50 -0500501// BlueprintToolLocation returns the directory containing build system tools
502// from Blueprint, like soong_zip and merge_zips.
Dan Willemsenc2aa4a92016-05-26 15:13:03 -0700503func (c *config) BlueprintToolLocation() string {
504 return filepath.Join(c.buildDir, "host", c.PrebuiltOS(), "bin")
505}
506
Colin Crosse87040b2017-12-11 15:52:26 -0800507var _ bootstrap.ConfigBlueprintToolLocation = (*config)(nil)
508
Dan Willemsen60e62f02018-11-16 21:05:32 -0800509func (c *config) HostToolPath(ctx PathContext, tool string) Path {
510 return PathForOutput(ctx, "host", c.PrebuiltOS(), "bin", tool)
511}
512
Martin Stjernholm7260d062019-12-09 21:47:14 +0000513func (c *config) HostJNIToolPath(ctx PathContext, path string) Path {
514 ext := ".so"
515 if runtime.GOOS == "darwin" {
516 ext = ".dylib"
517 }
518 return PathForOutput(ctx, "host", c.PrebuiltOS(), "lib64", path+ext)
519}
520
521func (c *config) HostJavaToolPath(ctx PathContext, path string) Path {
522 return PathForOutput(ctx, "host", c.PrebuiltOS(), "framework", path)
523}
524
Jingwen Chen2838c812020-11-23 01:06:40 -0500525// NonHermeticHostSystemTool looks for non-hermetic tools from the system we're
526// running on. These tools are not checked-in to AOSP, and therefore could lead
527// to reproducibility problems. Should not be used for other than finding the
528// XCode SDK (xcrun, sw_vers), etc. See ui/build/paths/config.go for the
529// allowlist of host system tools.
530func (c *config) NonHermeticHostSystemTool(name string) string {
Dan Willemsen66068722017-05-08 21:15:59 +0000531 for _, dir := range filepath.SplitList(c.Getenv("PATH")) {
532 path := filepath.Join(dir, name)
533 if s, err := os.Stat(path); err != nil {
534 continue
535 } else if m := s.Mode(); !s.IsDir() && m&0111 != 0 {
536 return path
537 }
538 }
Jingwen Chen2838c812020-11-23 01:06:40 -0500539 panic(fmt.Errorf(
540 "Unable to use '%s' as a host system tool for build system "+
541 "hermeticity reasons. See build/soong/ui/build/paths/config.go "+
542 "for the full list of allowed host tools on your system.", name))
Dan Willemsen66068722017-05-08 21:15:59 +0000543}
544
Jingwen Chenc711fec2020-11-22 23:52:50 -0500545// PrebuiltOS returns the name of the host OS used in prebuilts directories.
Colin Cross1332b002015-04-07 17:11:30 -0700546func (c *config) PrebuiltOS() string {
Colin Cross3f40fa42015-01-30 17:27:36 -0800547 switch runtime.GOOS {
548 case "linux":
549 return "linux-x86"
550 case "darwin":
551 return "darwin-x86"
552 default:
553 panic("Unknown GOOS")
554 }
555}
556
557// GoRoot returns the path to the root directory of the Go toolchain.
Colin Cross1332b002015-04-07 17:11:30 -0700558func (c *config) GoRoot() string {
Colin Cross3f40fa42015-01-30 17:27:36 -0800559 return fmt.Sprintf("%s/prebuilts/go/%s", c.srcDir, c.PrebuiltOS())
560}
561
Jingwen Chenc711fec2020-11-22 23:52:50 -0500562// PrebuiltBuildTool returns the path to a tool in the prebuilts directory containing
563// checked-in tools, like Kati, Ninja or Toybox, for the current host OS.
Dan Willemsen4e0aa232019-04-10 22:59:54 -0700564func (c *config) PrebuiltBuildTool(ctx PathContext, tool string) Path {
565 return PathForSource(ctx, "prebuilts/build-tools", c.PrebuiltOS(), "bin", tool)
566}
567
Jingwen Chenc711fec2020-11-22 23:52:50 -0500568// CpPreserveSymlinksFlags returns the host-specific flag for the cp(1) command
569// to preserve symlinks.
Colin Cross1332b002015-04-07 17:11:30 -0700570func (c *config) CpPreserveSymlinksFlags() string {
Colin Cross485e5722015-08-27 13:28:01 -0700571 switch runtime.GOOS {
Colin Cross3f40fa42015-01-30 17:27:36 -0800572 case "darwin":
573 return "-R"
574 case "linux":
575 return "-d"
576 default:
577 return ""
578 }
579}
Colin Cross68f55102015-03-25 14:43:57 -0700580
Colin Cross1332b002015-04-07 17:11:30 -0700581func (c *config) Getenv(key string) string {
Colin Cross68f55102015-03-25 14:43:57 -0700582 var val string
583 var exists bool
Colin Crossc1e86a32015-04-15 12:33:28 -0700584 c.envLock.Lock()
Colin Crossc0d58b42017-02-06 15:40:41 -0800585 defer c.envLock.Unlock()
586 if c.envDeps == nil {
587 c.envDeps = make(map[string]string)
588 }
Colin Cross68f55102015-03-25 14:43:57 -0700589 if val, exists = c.envDeps[key]; !exists {
Dan Willemsene7680ba2015-09-11 17:06:19 -0700590 if c.envFrozen {
591 panic("Cannot access new environment variables after envdeps are frozen")
592 }
Colin Cross6ccbc912017-10-10 23:07:38 -0700593 val, _ = c.env[key]
Colin Cross68f55102015-03-25 14:43:57 -0700594 c.envDeps[key] = val
595 }
596 return val
597}
598
Colin Cross99d7c232016-11-23 16:52:04 -0800599func (c *config) GetenvWithDefault(key string, defaultValue string) string {
600 ret := c.Getenv(key)
601 if ret == "" {
602 return defaultValue
603 }
604 return ret
605}
606
607func (c *config) IsEnvTrue(key string) bool {
608 value := c.Getenv(key)
609 return value == "1" || value == "y" || value == "yes" || value == "on" || value == "true"
610}
611
612func (c *config) IsEnvFalse(key string) bool {
613 value := c.Getenv(key)
614 return value == "0" || value == "n" || value == "no" || value == "off" || value == "false"
615}
616
Jingwen Chenc711fec2020-11-22 23:52:50 -0500617// EnvDeps returns the environment variables this build depends on. The first
618// call to this function blocks future reads from the environment.
Colin Cross1332b002015-04-07 17:11:30 -0700619func (c *config) EnvDeps() map[string]string {
Dan Willemsene7680ba2015-09-11 17:06:19 -0700620 c.envLock.Lock()
Colin Crossc0d58b42017-02-06 15:40:41 -0800621 defer c.envLock.Unlock()
Dan Willemsene7680ba2015-09-11 17:06:19 -0700622 c.envFrozen = true
Colin Cross68f55102015-03-25 14:43:57 -0700623 return c.envDeps
624}
Colin Cross35cec122015-04-02 14:37:16 -0700625
Jingwen Chencda22c92020-11-23 00:22:30 -0500626func (c *config) KatiEnabled() bool {
627 return c.katiEnabled
Dan Willemsen5ba07e82015-12-11 13:51:06 -0800628}
629
Nan Zhang581fd212018-01-10 16:06:12 -0800630func (c *config) BuildId() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800631 return String(c.productVariables.BuildId)
Nan Zhang581fd212018-01-10 16:06:12 -0800632}
633
Jingwen Chenc711fec2020-11-22 23:52:50 -0500634// BuildNumberFile returns the path to a text file containing metadata
635// representing the current build's number.
636//
637// Rules that want to reference the build number should read from this file
638// without depending on it. They will run whenever their other dependencies
639// require them to run and get the current build number. This ensures they don't
640// rebuild on every incremental build when the build number changes.
Colin Cross2a2e0db2020-02-21 16:55:46 -0800641func (c *config) BuildNumberFile(ctx PathContext) Path {
642 return PathForOutput(ctx, String(c.productVariables.BuildNumberFile))
Nan Zhang581fd212018-01-10 16:06:12 -0800643}
644
Jingwen Chenc711fec2020-11-22 23:52:50 -0500645// DeviceName returns the name of the current device target.
Colin Cross35cec122015-04-02 14:37:16 -0700646// TODO: take an AndroidModuleContext to select the device name for multi-device builds
Colin Cross1332b002015-04-07 17:11:30 -0700647func (c *config) DeviceName() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800648 return *c.productVariables.DeviceName
Colin Cross35cec122015-04-02 14:37:16 -0700649}
650
Anton Hansson53c88442019-03-18 15:53:16 +0000651func (c *config) DeviceResourceOverlays() []string {
652 return c.productVariables.DeviceResourceOverlays
653}
654
655func (c *config) ProductResourceOverlays() []string {
656 return c.productVariables.ProductResourceOverlays
Colin Cross30e076a2015-04-13 13:58:27 -0700657}
658
Colin Crossbfd347d2018-05-09 11:11:35 -0700659func (c *config) PlatformVersionName() string {
660 return String(c.productVariables.Platform_version_name)
661}
662
Dan Albert4f378d72020-07-23 17:32:15 -0700663func (c *config) PlatformSdkVersion() ApiLevel {
664 return uncheckedFinalApiLevel(*c.productVariables.Platform_sdk_version)
Colin Cross30e076a2015-04-13 13:58:27 -0700665}
666
Colin Crossd09b0b62018-04-18 11:06:47 -0700667func (c *config) PlatformSdkCodename() string {
668 return String(c.productVariables.Platform_sdk_codename)
669}
670
Colin Cross092c9da2019-04-02 22:56:43 -0700671func (c *config) PlatformSecurityPatch() string {
672 return String(c.productVariables.Platform_security_patch)
673}
674
675func (c *config) PlatformPreviewSdkVersion() string {
676 return String(c.productVariables.Platform_preview_sdk_version)
677}
678
679func (c *config) PlatformMinSupportedTargetSdkVersion() string {
680 return String(c.productVariables.Platform_min_supported_target_sdk_version)
681}
682
683func (c *config) PlatformBaseOS() string {
684 return String(c.productVariables.Platform_base_os)
685}
686
Dan Albert1a246272020-07-06 14:49:35 -0700687func (c *config) MinSupportedSdkVersion() ApiLevel {
688 return uncheckedFinalApiLevel(16)
689}
690
691func (c *config) FinalApiLevels() []ApiLevel {
692 var levels []ApiLevel
Dan Albert4f378d72020-07-23 17:32:15 -0700693 for i := 1; i <= c.PlatformSdkVersion().FinalOrFutureInt(); i++ {
Dan Albert1a246272020-07-06 14:49:35 -0700694 levels = append(levels, uncheckedFinalApiLevel(i))
695 }
696 return levels
697}
698
699func (c *config) PreviewApiLevels() []ApiLevel {
700 var levels []ApiLevel
701 for i, codename := range c.PlatformVersionActiveCodenames() {
702 levels = append(levels, ApiLevel{
703 value: codename,
704 number: i,
705 isPreview: true,
706 })
707 }
708 return levels
709}
710
711func (c *config) AllSupportedApiLevels() []ApiLevel {
712 var levels []ApiLevel
713 levels = append(levels, c.FinalApiLevels()...)
714 return append(levels, c.PreviewApiLevels()...)
Dan Albertf5415d72017-08-17 16:19:59 -0700715}
716
Jingwen Chenc711fec2020-11-22 23:52:50 -0500717// DefaultAppTargetSdk returns the API level that platform apps are targeting.
718// This converts a codename to the exact ApiLevel it represents.
Dan Albert4f378d72020-07-23 17:32:15 -0700719func (c *config) DefaultAppTargetSdk(ctx EarlyModuleContext) ApiLevel {
Colin Crossd09b0b62018-04-18 11:06:47 -0700720 if Bool(c.productVariables.Platform_sdk_final) {
721 return c.PlatformSdkVersion()
Colin Crossd09b0b62018-04-18 11:06:47 -0700722 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500723 codename := c.PlatformSdkCodename()
724 if codename == "" {
725 return NoneApiLevel
726 }
727 if codename == "REL" {
728 panic("Platform_sdk_codename should not be REL when Platform_sdk_final is true")
729 }
730 return ApiLevelOrPanic(ctx, codename)
Colin Crossd09b0b62018-04-18 11:06:47 -0700731}
732
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800733func (c *config) AppsDefaultVersionName() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800734 return String(c.productVariables.AppsDefaultVersionName)
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800735}
736
Dan Albert31384de2017-07-28 12:39:46 -0700737// Codenames that are active in the current lunch target.
738func (c *config) PlatformVersionActiveCodenames() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800739 return c.productVariables.Platform_version_active_codenames
Dan Albert31384de2017-07-28 12:39:46 -0700740}
741
Colin Crossface4e42017-10-30 17:32:15 -0700742func (c *config) ProductAAPTConfig() []string {
Colin Crossa74ca042019-01-31 14:31:51 -0800743 return c.productVariables.AAPTConfig
Colin Cross30e076a2015-04-13 13:58:27 -0700744}
745
Colin Crossface4e42017-10-30 17:32:15 -0700746func (c *config) ProductAAPTPreferredConfig() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800747 return String(c.productVariables.AAPTPreferredConfig)
Colin Cross30e076a2015-04-13 13:58:27 -0700748}
749
Colin Crossface4e42017-10-30 17:32:15 -0700750func (c *config) ProductAAPTCharacteristics() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800751 return String(c.productVariables.AAPTCharacteristics)
Colin Crossface4e42017-10-30 17:32:15 -0700752}
753
754func (c *config) ProductAAPTPrebuiltDPI() []string {
Colin Crossa74ca042019-01-31 14:31:51 -0800755 return c.productVariables.AAPTPrebuiltDPI
Colin Cross30e076a2015-04-13 13:58:27 -0700756}
757
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700758func (c *config) DefaultAppCertificateDir(ctx PathContext) SourcePath {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800759 defaultCert := String(c.productVariables.DefaultAppCertificate)
Colin Cross61ae0b72017-12-01 17:16:02 -0800760 if defaultCert != "" {
761 return PathForSource(ctx, filepath.Dir(defaultCert))
Colin Cross61ae0b72017-12-01 17:16:02 -0800762 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500763 return PathForSource(ctx, "build/make/target/product/security")
Colin Cross30e076a2015-04-13 13:58:27 -0700764}
765
Colin Crosse1731a52017-12-14 11:22:55 -0800766func (c *config) DefaultAppCertificate(ctx PathContext) (pem, key SourcePath) {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800767 defaultCert := String(c.productVariables.DefaultAppCertificate)
Colin Cross61ae0b72017-12-01 17:16:02 -0800768 if defaultCert != "" {
Colin Crosse1731a52017-12-14 11:22:55 -0800769 return PathForSource(ctx, defaultCert+".x509.pem"), PathForSource(ctx, defaultCert+".pk8")
Colin Cross61ae0b72017-12-01 17:16:02 -0800770 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500771 defaultDir := c.DefaultAppCertificateDir(ctx)
772 return defaultDir.Join(ctx, "testkey.x509.pem"), defaultDir.Join(ctx, "testkey.pk8")
Colin Cross30e076a2015-04-13 13:58:27 -0700773}
Colin Cross6ff51382015-12-17 16:39:19 -0800774
Jiyong Park9335a262018-12-24 11:31:58 +0900775func (c *config) ApexKeyDir(ctx ModuleContext) SourcePath {
776 // TODO(b/121224311): define another variable such as TARGET_APEX_KEY_OVERRIDE
777 defaultCert := String(c.productVariables.DefaultAppCertificate)
Dan Willemsen412160e2019-04-09 21:36:26 -0700778 if defaultCert == "" || filepath.Dir(defaultCert) == "build/make/target/product/security" {
Jiyong Park9335a262018-12-24 11:31:58 +0900779 // When defaultCert is unset or is set to the testkeys path, use the APEX keys
780 // that is under the module dir
Colin Cross07e51612019-03-05 12:46:40 -0800781 return pathForModuleSrc(ctx)
Jiyong Park9335a262018-12-24 11:31:58 +0900782 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500783 // If not, APEX keys are under the specified directory
784 return PathForSource(ctx, filepath.Dir(defaultCert))
Jiyong Park9335a262018-12-24 11:31:58 +0900785}
786
Jingwen Chenc711fec2020-11-22 23:52:50 -0500787// AllowMissingDependencies configures Blueprint/Soong to not fail when modules
788// are configured to depend on non-existent modules. Note that this does not
789// affect missing input dependencies at the Ninja level.
Colin Cross6ff51382015-12-17 16:39:19 -0800790func (c *config) AllowMissingDependencies() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800791 return Bool(c.productVariables.Allow_missing_dependencies)
Colin Cross6ff51382015-12-17 16:39:19 -0800792}
Dan Willemsen322acaf2016-01-12 23:07:05 -0800793
Jeongik Cha816a23a2020-07-08 01:09:23 +0900794// Returns true if a full platform source tree cannot be assumed.
Colin Crossfc3674a2017-09-18 17:41:52 -0700795func (c *config) UnbundledBuild() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800796 return Bool(c.productVariables.Unbundled_build)
Colin Crossfc3674a2017-09-18 17:41:52 -0700797}
798
Martin Stjernholmfd9eb4b2020-06-17 01:13:15 +0100799// Returns true if building apps that aren't bundled with the platform.
800// UnbundledBuild() is always true when this is true.
801func (c *config) UnbundledBuildApps() bool {
802 return Bool(c.productVariables.Unbundled_build_apps)
803}
804
Jeongik Cha816a23a2020-07-08 01:09:23 +0900805// Returns true if building modules against prebuilt SDKs.
806func (c *config) AlwaysUsePrebuiltSdks() bool {
807 return Bool(c.productVariables.Always_use_prebuilt_sdks)
Colin Cross1f367bf2018-12-18 22:46:24 -0800808}
809
Paul Duffin9a89a2a2020-10-28 19:20:06 +0000810// Returns true if the boot jars check should be skipped.
811func (c *config) SkipBootJarsCheck() bool {
812 return Bool(c.productVariables.Skip_boot_jars_check)
813}
814
Doug Horn21b94272019-01-16 12:06:11 -0800815func (c *config) Fuchsia() bool {
816 return Bool(c.productVariables.Fuchsia)
817}
818
Colin Cross126a25c2017-10-31 13:55:34 -0700819func (c *config) MinimizeJavaDebugInfo() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800820 return Bool(c.productVariables.MinimizeJavaDebugInfo) && !Bool(c.productVariables.Eng)
Colin Cross126a25c2017-10-31 13:55:34 -0700821}
822
Colin Crossed064c02018-09-05 16:28:13 -0700823func (c *config) Debuggable() bool {
824 return Bool(c.productVariables.Debuggable)
825}
826
Jaewoong Jung1d6eb682018-11-29 15:08:44 -0800827func (c *config) Eng() bool {
828 return Bool(c.productVariables.Eng)
829}
830
Jiyong Park8d52f862018-07-07 18:02:07 +0900831func (c *config) DevicePrimaryArchType() ArchType {
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700832 return c.Targets[Android][0].Arch.ArchType
Jiyong Park8d52f862018-07-07 18:02:07 +0900833}
834
Colin Cross16b23492016-01-06 14:41:07 -0800835func (c *config) SanitizeHost() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800836 return append([]string(nil), c.productVariables.SanitizeHost...)
Colin Cross16b23492016-01-06 14:41:07 -0800837}
838
839func (c *config) SanitizeDevice() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800840 return append([]string(nil), c.productVariables.SanitizeDevice...)
Colin Cross23ae82a2016-11-02 14:34:39 -0700841}
842
Ivan Lozano0c3a1ef2017-06-28 09:10:48 -0700843func (c *config) SanitizeDeviceDiag() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800844 return append([]string(nil), c.productVariables.SanitizeDeviceDiag...)
Ivan Lozano0c3a1ef2017-06-28 09:10:48 -0700845}
846
Colin Cross23ae82a2016-11-02 14:34:39 -0700847func (c *config) SanitizeDeviceArch() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800848 return append([]string(nil), c.productVariables.SanitizeDeviceArch...)
Colin Cross16b23492016-01-06 14:41:07 -0800849}
Colin Crossa1ad8d12016-06-01 17:09:44 -0700850
Vishwath Mohan1b017a72017-01-19 13:54:55 -0800851func (c *config) EnableCFI() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800852 if c.productVariables.EnableCFI == nil {
Vishwath Mohanc32c3eb2017-01-24 14:20:54 -0800853 return true
Vishwath Mohanc32c3eb2017-01-24 14:20:54 -0800854 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500855 return *c.productVariables.EnableCFI
Vishwath Mohan1b017a72017-01-19 13:54:55 -0800856}
857
Kostya Kortchinskyd5275c82019-02-01 08:42:56 -0800858func (c *config) DisableScudo() bool {
859 return Bool(c.productVariables.DisableScudo)
860}
861
Colin Crossa1ad8d12016-06-01 17:09:44 -0700862func (c *config) Android64() bool {
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700863 for _, t := range c.Targets[Android] {
Colin Crossa1ad8d12016-06-01 17:09:44 -0700864 if t.Arch.ArchType.Multilib == "lib64" {
865 return true
866 }
867 }
868
869 return false
870}
Colin Cross9272ade2016-08-17 15:24:12 -0700871
Colin Cross9d45bb72016-08-29 16:14:13 -0700872func (c *config) UseGoma() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800873 return Bool(c.productVariables.UseGoma)
Colin Cross9d45bb72016-08-29 16:14:13 -0700874}
875
Ramy Medhatbbf25672019-07-17 12:30:04 +0000876func (c *config) UseRBE() bool {
877 return Bool(c.productVariables.UseRBE)
878}
879
Ramy Medhat8ea054a2020-01-27 14:19:44 -0500880func (c *config) UseRBEJAVAC() bool {
881 return Bool(c.productVariables.UseRBEJAVAC)
882}
883
884func (c *config) UseRBER8() bool {
885 return Bool(c.productVariables.UseRBER8)
886}
887
888func (c *config) UseRBED8() bool {
889 return Bool(c.productVariables.UseRBED8)
890}
891
Colin Cross8b8bec32019-11-15 13:18:43 -0800892func (c *config) UseRemoteBuild() bool {
893 return c.UseGoma() || c.UseRBE()
894}
895
Colin Cross66548102018-06-19 22:47:35 -0700896func (c *config) RunErrorProne() bool {
897 return c.IsEnvTrue("RUN_ERROR_PRONE")
898}
899
Jingwen Chenc711fec2020-11-22 23:52:50 -0500900// XrefCorpusName returns the Kythe cross-reference corpus name.
Sasha Smundak2a4549e2018-11-05 16:49:08 -0800901func (c *config) XrefCorpusName() string {
902 return c.Getenv("XREF_CORPUS")
903}
904
Jingwen Chenc711fec2020-11-22 23:52:50 -0500905// XrefCuEncoding returns the compilation unit encoding to use for Kythe code
906// xrefs. Can be 'json' (default), 'proto' or 'all'.
Sasha Smundak6c2d4f92020-01-09 17:34:23 -0800907func (c *config) XrefCuEncoding() string {
908 if enc := c.Getenv("KYTHE_KZIP_ENCODING"); enc != "" {
909 return enc
910 }
911 return "json"
912}
913
Sasha Smundak2a4549e2018-11-05 16:49:08 -0800914func (c *config) EmitXrefRules() bool {
915 return c.XrefCorpusName() != ""
916}
917
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700918func (c *config) ClangTidy() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800919 return Bool(c.productVariables.ClangTidy)
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700920}
921
922func (c *config) TidyChecks() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800923 if c.productVariables.TidyChecks == nil {
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700924 return ""
925 }
Dan Willemsen45133ac2018-03-09 21:22:06 -0800926 return *c.productVariables.TidyChecks
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700927}
928
Colin Cross0f4e0d62016-07-27 10:56:55 -0700929func (c *config) LibartImgHostBaseAddress() string {
930 return "0x60000000"
931}
932
933func (c *config) LibartImgDeviceBaseAddress() string {
Elliott Hughesda3a0712020-03-06 16:55:28 -0800934 return "0x70000000"
Colin Cross0f4e0d62016-07-27 10:56:55 -0700935}
936
Hiroshi Yamauchie2a10632016-12-19 13:44:41 -0800937func (c *config) ArtUseReadBarrier() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800938 return Bool(c.productVariables.ArtUseReadBarrier)
Hiroshi Yamauchie2a10632016-12-19 13:44:41 -0800939}
940
Jingwen Chenc711fec2020-11-22 23:52:50 -0500941// Enforce Runtime Resource Overlays for a module. RROs supersede static RROs,
942// but some modules still depend on it.
943//
944// More info: https://source.android.com/devices/architecture/rros
Dan Willemsen3fb1fae2018-03-12 15:30:26 -0700945func (c *config) EnforceRROForModule(name string) bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800946 enforceList := c.productVariables.EnforceRROTargets
Jeongik Chab9b13272020-03-09 12:37:05 +0900947 // TODO(b/150820813) Some modules depend on static overlay, remove this after eliminating the dependency.
948 exemptedList := c.productVariables.EnforceRROExemptedTargets
Roland Levillainf6cc2612020-07-09 16:58:14 +0100949 if len(exemptedList) > 0 {
Jeongik Chab9b13272020-03-09 12:37:05 +0900950 if InList(name, exemptedList) {
951 return false
952 }
953 }
Roland Levillainf6cc2612020-07-09 16:58:14 +0100954 if len(enforceList) > 0 {
Yo Chiang4ebd06a2019-10-01 13:13:41 +0800955 if InList("*", enforceList) {
Dan Willemsen3fb1fae2018-03-12 15:30:26 -0700956 return true
957 }
Colin Crossa74ca042019-01-31 14:31:51 -0800958 return InList(name, enforceList)
Dan Willemsen3fb1fae2018-03-12 15:30:26 -0700959 }
960 return false
961}
962
Jaewoong Jungc779cd42020-10-06 18:56:10 -0700963func (c *config) EnforceRROExemptedForModule(name string) bool {
964 return InList(name, c.productVariables.EnforceRROExemptedTargets)
965}
966
Dan Willemsen3fb1fae2018-03-12 15:30:26 -0700967func (c *config) EnforceRROExcludedOverlay(path string) bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800968 excluded := c.productVariables.EnforceRROExcludedOverlays
Roland Levillainf6cc2612020-07-09 16:58:14 +0100969 if len(excluded) > 0 {
Jaewoong Jung3aff5782020-02-11 07:54:35 -0800970 return HasAnyPrefix(path, excluded)
Dan Willemsen3fb1fae2018-03-12 15:30:26 -0700971 }
972 return false
973}
974
975func (c *config) ExportedNamespaces() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800976 return append([]string(nil), c.productVariables.NamespacesToExport...)
Dan Willemsen3fb1fae2018-03-12 15:30:26 -0700977}
978
979func (c *config) HostStaticBinaries() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800980 return Bool(c.productVariables.HostStaticBinaries)
Dan Willemsen3fb1fae2018-03-12 15:30:26 -0700981}
982
Colin Cross5a0dcd52018-10-05 14:20:06 -0700983func (c *config) UncompressPrivAppDex() bool {
984 return Bool(c.productVariables.UncompressPrivAppDex)
985}
986
987func (c *config) ModulesLoadedByPrivilegedModules() []string {
988 return c.productVariables.ModulesLoadedByPrivilegedModules
989}
990
Jingwen Chenc711fec2020-11-22 23:52:50 -0500991// DexpreoptGlobalConfigPath returns the path to the dexpreopt.config file in
992// the output directory, if it was created during the product configuration
993// phase by Kati.
Jingwen Chenebb0b572020-11-02 00:24:57 -0500994func (c *config) DexpreoptGlobalConfigPath(ctx PathContext) OptionalPath {
Colin Cross988414c2020-01-11 01:11:46 +0000995 if c.productVariables.DexpreoptGlobalConfig == nil {
Jingwen Chenebb0b572020-11-02 00:24:57 -0500996 return OptionalPathForPath(nil)
997 }
998 return OptionalPathForPath(
999 pathForBuildToolDep(ctx, *c.productVariables.DexpreoptGlobalConfig))
1000}
1001
Jingwen Chenc711fec2020-11-22 23:52:50 -05001002// DexpreoptGlobalConfig returns the raw byte contents of the dexpreopt global
1003// configuration. Since the configuration file was created by Kati during
1004// product configuration (externally of soong_build), it's not tracked, so we
1005// also manually add a Ninja file dependency on the configuration file to the
1006// rule that creates the main build.ninja file. This ensures that build.ninja is
1007// regenerated correctly if dexpreopt.config changes.
Jingwen Chenebb0b572020-11-02 00:24:57 -05001008func (c *config) DexpreoptGlobalConfig(ctx PathContext) ([]byte, error) {
1009 path := c.DexpreoptGlobalConfigPath(ctx)
1010 if !path.Valid() {
Colin Cross988414c2020-01-11 01:11:46 +00001011 return nil, nil
1012 }
Jingwen Chenebb0b572020-11-02 00:24:57 -05001013 ctx.AddNinjaFileDeps(path.String())
1014 return ioutil.ReadFile(absolutePath(path.String()))
Colin Cross43f08db2018-11-12 10:13:39 -08001015}
1016
David Brazdil91b4e3e2019-01-23 21:04:05 +00001017func (c *config) FrameworksBaseDirExists(ctx PathContext) bool {
1018 return ExistentPathForSource(ctx, "frameworks", "base").Valid()
1019}
1020
Inseob Kimae553032019-05-14 18:52:49 +09001021func (c *config) VndkSnapshotBuildArtifacts() bool {
1022 return Bool(c.productVariables.VndkSnapshotBuildArtifacts)
1023}
1024
Colin Cross3b19f5d2019-09-17 14:45:31 -07001025func (c *config) HasMultilibConflict(arch ArchType) bool {
1026 return c.multilibConflicts[arch]
1027}
1028
Bill Peckhambae47492021-01-08 09:34:44 -08001029func (c *config) PrebuiltHiddenApiDir(ctx PathContext) string {
1030 return String(c.productVariables.PrebuiltHiddenApiDir)
1031}
1032
Colin Cross9272ade2016-08-17 15:24:12 -07001033func (c *deviceConfig) Arches() []Arch {
1034 var arches []Arch
Dan Willemsen0ef639b2018-10-10 17:02:29 -07001035 for _, target := range c.config.Targets[Android] {
Colin Cross9272ade2016-08-17 15:24:12 -07001036 arches = append(arches, target.Arch)
1037 }
1038 return arches
1039}
Dan Willemsend2ede872016-11-18 14:54:24 -08001040
Jayant Chowdhary34ce67d2018-03-08 11:00:50 -08001041func (c *deviceConfig) BinderBitness() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001042 is32BitBinder := c.config.productVariables.Binder32bit
Jayant Chowdhary34ce67d2018-03-08 11:00:50 -08001043 if is32BitBinder != nil && *is32BitBinder {
1044 return "32"
1045 }
1046 return "64"
1047}
1048
Dan Willemsen4353bc42016-12-05 17:16:02 -08001049func (c *deviceConfig) VendorPath() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001050 if c.config.productVariables.VendorPath != nil {
1051 return *c.config.productVariables.VendorPath
Dan Willemsen4353bc42016-12-05 17:16:02 -08001052 }
1053 return "vendor"
1054}
1055
Justin Yun71549282017-11-17 12:10:28 +09001056func (c *deviceConfig) VndkVersion() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001057 return String(c.config.productVariables.DeviceVndkVersion)
Justin Yun71549282017-11-17 12:10:28 +09001058}
1059
Jose Galmes6f843bc2020-12-11 13:36:29 -08001060func (c *deviceConfig) RecoverySnapshotVersion() string {
1061 return String(c.config.productVariables.RecoverySnapshotVersion)
1062}
1063
Jeongik Cha219141c2020-08-06 23:00:37 +09001064func (c *deviceConfig) CurrentApiLevelForVendorModules() string {
1065 return StringDefault(c.config.productVariables.DeviceCurrentApiLevelForVendorModules, "current")
1066}
1067
Justin Yun8fe12122017-12-07 17:18:15 +09001068func (c *deviceConfig) PlatformVndkVersion() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001069 return String(c.config.productVariables.Platform_vndk_version)
Justin Yun8fe12122017-12-07 17:18:15 +09001070}
1071
Justin Yun5f7f7e82019-11-18 19:52:14 +09001072func (c *deviceConfig) ProductVndkVersion() string {
1073 return String(c.config.productVariables.ProductVndkVersion)
1074}
1075
Justin Yun71549282017-11-17 12:10:28 +09001076func (c *deviceConfig) ExtraVndkVersions() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001077 return c.config.productVariables.ExtraVndkVersions
Dan Willemsend2ede872016-11-18 14:54:24 -08001078}
Jack He8cc71432016-12-08 15:45:07 -08001079
Vic Yangefd249e2018-11-12 20:19:56 -08001080func (c *deviceConfig) VndkUseCoreVariant() bool {
1081 return Bool(c.config.productVariables.VndkUseCoreVariant)
1082}
1083
Jiyong Park1a5d7b12018-01-15 15:05:10 +09001084func (c *deviceConfig) SystemSdkVersions() []string {
Colin Crossa74ca042019-01-31 14:31:51 -08001085 return c.config.productVariables.DeviceSystemSdkVersions
Jiyong Park1a5d7b12018-01-15 15:05:10 +09001086}
1087
1088func (c *deviceConfig) PlatformSystemSdkVersions() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001089 return c.config.productVariables.Platform_systemsdk_versions
Jiyong Park1a5d7b12018-01-15 15:05:10 +09001090}
1091
Jiyong Park2db76922017-11-08 16:03:48 +09001092func (c *deviceConfig) OdmPath() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001093 if c.config.productVariables.OdmPath != nil {
1094 return *c.config.productVariables.OdmPath
Jiyong Park2db76922017-11-08 16:03:48 +09001095 }
1096 return "odm"
1097}
1098
Jaekyun Seok5cfbfbb2018-01-10 19:00:15 +09001099func (c *deviceConfig) ProductPath() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001100 if c.config.productVariables.ProductPath != nil {
1101 return *c.config.productVariables.ProductPath
Jiyong Park2db76922017-11-08 16:03:48 +09001102 }
Jaekyun Seok5cfbfbb2018-01-10 19:00:15 +09001103 return "product"
Jiyong Park2db76922017-11-08 16:03:48 +09001104}
1105
Justin Yund5f6c822019-06-25 16:47:17 +09001106func (c *deviceConfig) SystemExtPath() string {
1107 if c.config.productVariables.SystemExtPath != nil {
1108 return *c.config.productVariables.SystemExtPath
Dario Frenifd05a742018-05-29 13:28:54 +01001109 }
Justin Yund5f6c822019-06-25 16:47:17 +09001110 return "system_ext"
Dario Frenifd05a742018-05-29 13:28:54 +01001111}
1112
Jack He8cc71432016-12-08 15:45:07 -08001113func (c *deviceConfig) BtConfigIncludeDir() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001114 return String(c.config.productVariables.BtConfigIncludeDir)
Jack He8cc71432016-12-08 15:45:07 -08001115}
Dan Willemsen581341d2017-02-09 16:16:31 -08001116
Jiyong Parkd773eb32017-07-03 13:18:12 +09001117func (c *deviceConfig) DeviceKernelHeaderDirs() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001118 return c.config.productVariables.DeviceKernelHeaders
Jiyong Parkd773eb32017-07-03 13:18:12 +09001119}
1120
Yi Kongceb5b762020-03-20 15:22:27 +08001121func (c *deviceConfig) SamplingPGO() bool {
1122 return Bool(c.config.productVariables.SamplingPGO)
1123}
1124
Roland Levillainada12702020-06-09 13:07:36 +01001125// JavaCoverageEnabledForPath returns whether Java code coverage is enabled for
1126// path. Coverage is enabled by default when the product variable
1127// JavaCoveragePaths is empty. If JavaCoveragePaths is not empty, coverage is
1128// enabled for any path which is part of this variable (and not part of the
1129// JavaCoverageExcludePaths product variable). Value "*" in JavaCoveragePaths
1130// represents any path.
1131func (c *deviceConfig) JavaCoverageEnabledForPath(path string) bool {
1132 coverage := false
Chris Gross2f748692020-06-24 20:36:59 +00001133 if len(c.config.productVariables.JavaCoveragePaths) == 0 ||
Roland Levillainada12702020-06-09 13:07:36 +01001134 InList("*", c.config.productVariables.JavaCoveragePaths) ||
1135 HasAnyPrefix(path, c.config.productVariables.JavaCoveragePaths) {
1136 coverage = true
1137 }
Roland Levillainf6cc2612020-07-09 16:58:14 +01001138 if coverage && len(c.config.productVariables.JavaCoverageExcludePaths) > 0 {
Roland Levillainada12702020-06-09 13:07:36 +01001139 if HasAnyPrefix(path, c.config.productVariables.JavaCoverageExcludePaths) {
1140 coverage = false
1141 }
1142 }
1143 return coverage
1144}
1145
Colin Cross1a6acd42020-06-16 17:51:46 -07001146// Returns true if gcov or clang coverage is enabled.
Dan Willemsen581341d2017-02-09 16:16:31 -08001147func (c *deviceConfig) NativeCoverageEnabled() bool {
Colin Cross1a6acd42020-06-16 17:51:46 -07001148 return Bool(c.config.productVariables.GcovCoverage) ||
1149 Bool(c.config.productVariables.ClangCoverage)
Dan Willemsen581341d2017-02-09 16:16:31 -08001150}
1151
Oliver Nguyen1382ab62019-12-06 15:22:41 -08001152func (c *deviceConfig) ClangCoverageEnabled() bool {
1153 return Bool(c.config.productVariables.ClangCoverage)
1154}
1155
Colin Cross1a6acd42020-06-16 17:51:46 -07001156func (c *deviceConfig) GcovCoverageEnabled() bool {
1157 return Bool(c.config.productVariables.GcovCoverage)
1158}
1159
Roland Levillain4f5297b2020-06-09 12:44:06 +01001160// NativeCoverageEnabledForPath returns whether (GCOV- or Clang-based) native
1161// code coverage is enabled for path. By default, coverage is not enabled for a
1162// given path unless it is part of the NativeCoveragePaths product variable (and
1163// not part of the NativeCoverageExcludePaths product variable). Value "*" in
1164// NativeCoveragePaths represents any path.
1165func (c *deviceConfig) NativeCoverageEnabledForPath(path string) bool {
Ryan Campbell469a18a2017-02-27 09:01:54 -08001166 coverage := false
Roland Levillainf6cc2612020-07-09 16:58:14 +01001167 if len(c.config.productVariables.NativeCoveragePaths) > 0 {
Roland Levillain4f5297b2020-06-09 12:44:06 +01001168 if InList("*", c.config.productVariables.NativeCoveragePaths) || HasAnyPrefix(path, c.config.productVariables.NativeCoveragePaths) {
Ivan Lozano5f595532017-07-13 14:46:05 -07001169 coverage = true
Dan Willemsen581341d2017-02-09 16:16:31 -08001170 }
1171 }
Roland Levillainf6cc2612020-07-09 16:58:14 +01001172 if coverage && len(c.config.productVariables.NativeCoverageExcludePaths) > 0 {
Roland Levillain4f5297b2020-06-09 12:44:06 +01001173 if HasAnyPrefix(path, c.config.productVariables.NativeCoverageExcludePaths) {
Ivan Lozano5f595532017-07-13 14:46:05 -07001174 coverage = false
Ryan Campbell469a18a2017-02-27 09:01:54 -08001175 }
1176 }
1177 return coverage
Dan Willemsen581341d2017-02-09 16:16:31 -08001178}
Ivan Lozano5f595532017-07-13 14:46:05 -07001179
Pirama Arumuga Nainar49540802018-01-29 23:11:42 -08001180func (c *deviceConfig) PgoAdditionalProfileDirs() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001181 return c.config.productVariables.PgoAdditionalProfileDirs
Pirama Arumuga Nainar49540802018-01-29 23:11:42 -08001182}
1183
Tri Vo35a51432018-03-25 20:00:00 -07001184func (c *deviceConfig) VendorSepolicyDirs() []string {
1185 return c.config.productVariables.BoardVendorSepolicyDirs
1186}
1187
1188func (c *deviceConfig) OdmSepolicyDirs() []string {
1189 return c.config.productVariables.BoardOdmSepolicyDirs
1190}
1191
Felixa20a8752020-05-17 18:28:35 +02001192func (c *deviceConfig) SystemExtPublicSepolicyDirs() []string {
1193 return c.config.productVariables.SystemExtPublicSepolicyDirs
Tri Vo35a51432018-03-25 20:00:00 -07001194}
1195
Felixa20a8752020-05-17 18:28:35 +02001196func (c *deviceConfig) SystemExtPrivateSepolicyDirs() []string {
1197 return c.config.productVariables.SystemExtPrivateSepolicyDirs
Tri Vo35a51432018-03-25 20:00:00 -07001198}
1199
Inseob Kim0866b002019-04-15 20:21:29 +09001200func (c *deviceConfig) SepolicyM4Defs() []string {
1201 return c.config.productVariables.BoardSepolicyM4Defs
1202}
1203
Jiyong Park7f67f482019-01-05 12:57:48 +09001204func (c *deviceConfig) OverrideManifestPackageNameFor(name string) (manifestName string, overridden bool) {
Jaewoong Jung2ad817c2019-01-18 14:27:16 -08001205 return findOverrideValue(c.config.productVariables.ManifestPackageNameOverrides, name,
1206 "invalid override rule %q in PRODUCT_MANIFEST_PACKAGE_NAME_OVERRIDES should be <module_name>:<manifest_name>")
1207}
1208
1209func (c *deviceConfig) OverrideCertificateFor(name string) (certificatePath string, overridden bool) {
Jaewoong Jungacb6db32019-02-28 16:22:30 +00001210 return findOverrideValue(c.config.productVariables.CertificateOverrides, name,
Jaewoong Jung2ad817c2019-01-18 14:27:16 -08001211 "invalid override rule %q in PRODUCT_CERTIFICATE_OVERRIDES should be <module_name>:<certificate_module_name>")
1212}
1213
Jaewoong Jung9d22a912019-01-23 16:27:47 -08001214func (c *deviceConfig) OverridePackageNameFor(name string) string {
1215 newName, overridden := findOverrideValue(
1216 c.config.productVariables.PackageNameOverrides,
1217 name,
1218 "invalid override rule %q in PRODUCT_PACKAGE_NAME_OVERRIDES should be <module_name>:<package_name>")
1219 if overridden {
1220 return newName
1221 }
1222 return name
1223}
1224
Jaewoong Jung2ad817c2019-01-18 14:27:16 -08001225func findOverrideValue(overrides []string, name string, errorMsg string) (newValue string, overridden bool) {
Jiyong Park7f67f482019-01-05 12:57:48 +09001226 if overrides == nil || len(overrides) == 0 {
1227 return "", false
1228 }
1229 for _, o := range overrides {
1230 split := strings.Split(o, ":")
1231 if len(split) != 2 {
1232 // This shouldn't happen as this is first checked in make, but just in case.
Jaewoong Jung2ad817c2019-01-18 14:27:16 -08001233 panic(fmt.Errorf(errorMsg, o))
Jiyong Park7f67f482019-01-05 12:57:48 +09001234 }
1235 if matchPattern(split[0], name) {
1236 return substPattern(split[0], split[1], name), true
1237 }
1238 }
1239 return "", false
1240}
1241
Ivan Lozano5f595532017-07-13 14:46:05 -07001242func (c *config) IntegerOverflowDisabledForPath(path string) bool {
Roland Levillainf6cc2612020-07-09 16:58:14 +01001243 if len(c.productVariables.IntegerOverflowExcludePaths) == 0 {
Ivan Lozano5f595532017-07-13 14:46:05 -07001244 return false
1245 }
Jaewoong Jung3aff5782020-02-11 07:54:35 -08001246 return HasAnyPrefix(path, c.productVariables.IntegerOverflowExcludePaths)
Ivan Lozano5f595532017-07-13 14:46:05 -07001247}
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001248
1249func (c *config) CFIDisabledForPath(path string) bool {
Roland Levillainf6cc2612020-07-09 16:58:14 +01001250 if len(c.productVariables.CFIExcludePaths) == 0 {
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001251 return false
1252 }
Jaewoong Jung3aff5782020-02-11 07:54:35 -08001253 return HasAnyPrefix(path, c.productVariables.CFIExcludePaths)
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001254}
1255
1256func (c *config) CFIEnabledForPath(path string) bool {
Roland Levillainf6cc2612020-07-09 16:58:14 +01001257 if len(c.productVariables.CFIIncludePaths) == 0 {
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001258 return false
1259 }
Jaewoong Jung3aff5782020-02-11 07:54:35 -08001260 return HasAnyPrefix(path, c.productVariables.CFIIncludePaths)
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001261}
Colin Crosse15ddaf2017-12-04 11:24:31 -08001262
Evgenii Stepanov4beaa0c2021-01-05 16:41:26 -08001263func (c *config) MemtagHeapDisabledForPath(path string) bool {
1264 if len(c.productVariables.MemtagHeapExcludePaths) == 0 {
1265 return false
1266 }
1267 return HasAnyPrefix(path, c.productVariables.MemtagHeapExcludePaths)
1268}
1269
1270func (c *config) MemtagHeapAsyncEnabledForPath(path string) bool {
1271 if len(c.productVariables.MemtagHeapAsyncIncludePaths) == 0 {
1272 return false
1273 }
1274 return HasAnyPrefix(path, c.productVariables.MemtagHeapAsyncIncludePaths)
1275}
1276
1277func (c *config) MemtagHeapSyncEnabledForPath(path string) bool {
1278 if len(c.productVariables.MemtagHeapSyncIncludePaths) == 0 {
1279 return false
1280 }
1281 return HasAnyPrefix(path, c.productVariables.MemtagHeapSyncIncludePaths)
1282}
1283
Dan Willemsen0fe78662018-03-26 12:41:18 -07001284func (c *config) VendorConfig(name string) VendorConfig {
Colin Cross9d34f352019-11-22 16:03:51 -08001285 return soongconfig.Config(c.productVariables.VendorVars[name])
Dan Willemsen0fe78662018-03-26 12:41:18 -07001286}
1287
Colin Cross395f2cf2018-10-24 16:10:32 -07001288func (c *config) NdkAbis() bool {
1289 return Bool(c.productVariables.Ndk_abis)
1290}
1291
Martin Stjernholmc1ecc432019-11-15 15:00:31 +00001292func (c *config) AmlAbis() bool {
1293 return Bool(c.productVariables.Aml_abis)
1294}
1295
Dan Albert23d37e02018-11-28 08:30:10 -08001296func (c *config) ExcludeDraftNdkApis() bool {
1297 return Bool(c.productVariables.Exclude_draft_ndk_apis)
1298}
1299
Jiyong Park8fd61922018-11-08 02:50:25 +09001300func (c *config) FlattenApex() bool {
Roland Levillaina3863212019-08-12 19:56:16 +01001301 return Bool(c.productVariables.Flatten_apex)
Jiyong Park8fd61922018-11-08 02:50:25 +09001302}
1303
Jiyong Park4da07972021-01-05 21:01:11 +09001304func (c *config) ForceApexSymlinkOptimization() bool {
1305 return Bool(c.productVariables.ForceApexSymlinkOptimization)
1306}
1307
Mohammad Samiul Islam3cd005d2020-11-26 13:32:26 +00001308func (c *config) CompressedApex() bool {
1309 return Bool(c.productVariables.CompressedApex)
1310}
1311
Jeongik Chac9464142019-01-07 12:07:27 +09001312func (c *config) EnforceSystemCertificate() bool {
1313 return Bool(c.productVariables.EnforceSystemCertificate)
1314}
1315
Colin Cross440e0d02020-06-11 11:32:11 -07001316func (c *config) EnforceSystemCertificateAllowList() []string {
1317 return c.productVariables.EnforceSystemCertificateAllowList
Jeongik Chac9464142019-01-07 12:07:27 +09001318}
1319
Jeongik Cha2cc570d2019-10-29 15:44:45 +09001320func (c *config) EnforceProductPartitionInterface() bool {
1321 return Bool(c.productVariables.EnforceProductPartitionInterface)
1322}
1323
JaeMan Parkff715562020-10-19 17:25:58 +09001324func (c *config) EnforceInterPartitionJavaSdkLibrary() bool {
1325 return Bool(c.productVariables.EnforceInterPartitionJavaSdkLibrary)
1326}
1327
1328func (c *config) InterPartitionJavaLibraryAllowList() []string {
1329 return c.productVariables.InterPartitionJavaLibraryAllowList
1330}
1331
Jooyung Han3ab2c3e2019-12-05 16:27:44 +09001332func (c *config) InstallExtraFlattenedApexes() bool {
1333 return Bool(c.productVariables.InstallExtraFlattenedApexes)
1334}
1335
Colin Crossf24a22a2019-01-31 14:12:44 -08001336func (c *config) ProductHiddenAPIStubs() []string {
1337 return c.productVariables.ProductHiddenAPIStubs
Colin Cross8faf8fc2019-01-16 15:15:52 -08001338}
1339
Colin Crossf24a22a2019-01-31 14:12:44 -08001340func (c *config) ProductHiddenAPIStubsSystem() []string {
1341 return c.productVariables.ProductHiddenAPIStubsSystem
Colin Cross8faf8fc2019-01-16 15:15:52 -08001342}
1343
Colin Crossf24a22a2019-01-31 14:12:44 -08001344func (c *config) ProductHiddenAPIStubsTest() []string {
1345 return c.productVariables.ProductHiddenAPIStubsTest
Colin Cross8faf8fc2019-01-16 15:15:52 -08001346}
Dan Willemsen71c74602019-04-10 12:27:35 -07001347
Dan Willemsen54879d12019-04-18 10:08:46 -07001348func (c *deviceConfig) TargetFSConfigGen() []string {
Dan Willemsen71c74602019-04-10 12:27:35 -07001349 return c.config.productVariables.TargetFSConfigGen
1350}
Inseob Kim0866b002019-04-15 20:21:29 +09001351
1352func (c *config) ProductPublicSepolicyDirs() []string {
1353 return c.productVariables.ProductPublicSepolicyDirs
1354}
1355
1356func (c *config) ProductPrivateSepolicyDirs() []string {
1357 return c.productVariables.ProductPrivateSepolicyDirs
1358}
1359
Colin Cross50ddcc42019-05-16 12:28:22 -07001360func (c *config) MissingUsesLibraries() []string {
1361 return c.productVariables.MissingUsesLibraries
1362}
1363
Inseob Kim1f086e22019-05-09 13:29:15 +09001364func (c *deviceConfig) DeviceArch() string {
1365 return String(c.config.productVariables.DeviceArch)
1366}
1367
1368func (c *deviceConfig) DeviceArchVariant() string {
1369 return String(c.config.productVariables.DeviceArchVariant)
1370}
1371
1372func (c *deviceConfig) DeviceSecondaryArch() string {
1373 return String(c.config.productVariables.DeviceSecondaryArch)
1374}
1375
1376func (c *deviceConfig) DeviceSecondaryArchVariant() string {
1377 return String(c.config.productVariables.DeviceSecondaryArchVariant)
1378}
Yifan Hong82db7352020-01-21 16:12:26 -08001379
1380func (c *deviceConfig) BoardUsesRecoveryAsBoot() bool {
1381 return Bool(c.config.productVariables.BoardUsesRecoveryAsBoot)
1382}
Yifan Hong97365ee2020-07-29 09:51:57 -07001383
1384func (c *deviceConfig) BoardKernelBinaries() []string {
1385 return c.config.productVariables.BoardKernelBinaries
1386}
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001387
Yifan Hong42bef8d2020-08-05 14:36:09 -07001388func (c *deviceConfig) BoardKernelModuleInterfaceVersions() []string {
1389 return c.config.productVariables.BoardKernelModuleInterfaceVersions
1390}
1391
Yifan Hongdd8dacc2020-10-21 15:40:17 -07001392func (c *deviceConfig) BoardMoveRecoveryResourcesToVendorBoot() bool {
1393 return Bool(c.config.productVariables.BoardMoveRecoveryResourcesToVendorBoot)
1394}
1395
Inseob Kim16ebd5a2020-12-09 23:08:17 +09001396func (c *deviceConfig) PlatformSepolicyVersion() string {
1397 return String(c.config.productVariables.PlatformSepolicyVersion)
1398}
1399
1400func (c *deviceConfig) BoardSepolicyVers() string {
1401 return String(c.config.productVariables.BoardSepolicyVers)
1402}
1403
1404func (c *deviceConfig) BoardReqdMaskPolicy() []string {
1405 return c.config.productVariables.BoardReqdMaskPolicy
1406}
1407
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001408// The ConfiguredJarList struct provides methods for handling a list of (apex, jar) pairs.
1409// Such lists are used in the build system for things like bootclasspath jars or system server jars.
1410// The apex part is either an apex name, or a special names "platform" or "system_ext". Jar is a
1411// module name. The pairs come from Make product variables as a list of colon-separated strings.
1412//
1413// Examples:
1414// - "com.android.art:core-oj"
1415// - "platform:framework"
1416// - "system_ext:foo"
1417//
1418type ConfiguredJarList struct {
Jingwen Chenc711fec2020-11-22 23:52:50 -05001419 // A list of apex components, which can be an apex name,
1420 // or special names like "platform" or "system_ext".
1421 apexes []string
1422
1423 // A list of jar module name components.
1424 jars []string
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001425}
1426
Jingwen Chenc711fec2020-11-22 23:52:50 -05001427// Len returns the length of the list of jars.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001428func (l *ConfiguredJarList) Len() int {
1429 return len(l.jars)
1430}
1431
Jingwen Chenc711fec2020-11-22 23:52:50 -05001432// Jar returns the idx-th jar component of (apex, jar) pairs.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001433func (l *ConfiguredJarList) Jar(idx int) string {
1434 return l.jars[idx]
1435}
1436
Jingwen Chenc711fec2020-11-22 23:52:50 -05001437// Apex returns the idx-th apex component of (apex, jar) pairs.
Paul Duffin9a89a2a2020-10-28 19:20:06 +00001438func (l *ConfiguredJarList) Apex(idx int) string {
1439 return l.apexes[idx]
1440}
1441
Jingwen Chenc711fec2020-11-22 23:52:50 -05001442// ContainsJar returns true if the (apex, jar) pairs contains a pair with the
1443// given jar module name.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001444func (l *ConfiguredJarList) ContainsJar(jar string) bool {
1445 return InList(jar, l.jars)
1446}
1447
1448// If the list contains the given (apex, jar) pair.
1449func (l *ConfiguredJarList) containsApexJarPair(apex, jar string) bool {
1450 for i := 0; i < l.Len(); i++ {
Paul Duffin1e8c6072020-10-23 18:28:55 +01001451 if apex == l.apexes[i] && jar == l.jars[i] {
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001452 return true
1453 }
1454 }
1455 return false
1456}
1457
Jingwen Chenc711fec2020-11-22 23:52:50 -05001458// IndexOfJar returns the first pair with the given jar name on the list, or -1
1459// if not found.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001460func (l *ConfiguredJarList) IndexOfJar(jar string) int {
1461 return IndexList(jar, l.jars)
1462}
1463
Paul Duffin7d584e92020-10-23 18:26:03 +01001464func copyAndAppend(list []string, item string) []string {
1465 // Create the result list to be 1 longer than the input.
1466 result := make([]string, len(list)+1)
1467
1468 // Copy the whole input list into the result.
1469 count := copy(result, list)
1470
1471 // Insert the extra item at the end.
1472 result[count] = item
1473
1474 return result
1475}
1476
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001477// Append an (apex, jar) pair to the list.
Paul Duffin7d584e92020-10-23 18:26:03 +01001478func (l *ConfiguredJarList) Append(apex string, jar string) ConfiguredJarList {
1479 // Create a copy of the backing arrays before appending to avoid sharing backing
1480 // arrays that are mutated across instances.
1481 apexes := copyAndAppend(l.apexes, apex)
1482 jars := copyAndAppend(l.jars, jar)
1483
1484 return ConfiguredJarList{apexes, jars}
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001485}
1486
Jingwen Chenc711fec2020-11-22 23:52:50 -05001487// RemoveList filters out a list of (apex, jar) pairs from the receiving list of pairs.
Paul Duffin7d584e92020-10-23 18:26:03 +01001488func (l *ConfiguredJarList) RemoveList(list ConfiguredJarList) ConfiguredJarList {
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001489 apexes := make([]string, 0, l.Len())
1490 jars := make([]string, 0, l.Len())
1491
1492 for i, jar := range l.jars {
Paul Duffin1e8c6072020-10-23 18:28:55 +01001493 apex := l.apexes[i]
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001494 if !list.containsApexJarPair(apex, jar) {
1495 apexes = append(apexes, apex)
1496 jars = append(jars, jar)
1497 }
1498 }
1499
Paul Duffin7d584e92020-10-23 18:26:03 +01001500 return ConfiguredJarList{apexes, jars}
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001501}
1502
Jingwen Chenc711fec2020-11-22 23:52:50 -05001503// CopyOfJars returns a copy of the list of strings containing jar module name
1504// components.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001505func (l *ConfiguredJarList) CopyOfJars() []string {
1506 return CopyOf(l.jars)
1507}
1508
Jingwen Chenc711fec2020-11-22 23:52:50 -05001509// CopyOfApexJarPairs returns a copy of the list of strings with colon-separated
1510// (apex, jar) pairs.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001511func (l *ConfiguredJarList) CopyOfApexJarPairs() []string {
1512 pairs := make([]string, 0, l.Len())
1513
1514 for i, jar := range l.jars {
Paul Duffin1e8c6072020-10-23 18:28:55 +01001515 apex := l.apexes[i]
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001516 pairs = append(pairs, apex+":"+jar)
1517 }
1518
1519 return pairs
1520}
1521
Jingwen Chenc711fec2020-11-22 23:52:50 -05001522// BuildPaths returns a list of build paths based on the given directory prefix.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001523func (l *ConfiguredJarList) BuildPaths(ctx PathContext, dir OutputPath) WritablePaths {
1524 paths := make(WritablePaths, l.Len())
1525 for i, jar := range l.jars {
1526 paths[i] = dir.Join(ctx, ModuleStem(jar)+".jar")
1527 }
1528 return paths
1529}
1530
Jingwen Chenc711fec2020-11-22 23:52:50 -05001531// UnmarshalJSON converts JSON configuration from raw bytes into a
1532// ConfiguredJarList structure.
Paul Duffin69d1fb12020-10-23 21:14:20 +01001533func (l *ConfiguredJarList) UnmarshalJSON(b []byte) error {
1534 // Try and unmarshal into a []string each item of which contains a pair
1535 // <apex>:<jar>.
1536 var list []string
1537 err := json.Unmarshal(b, &list)
1538 if err != nil {
1539 // Did not work so return
1540 return err
1541 }
1542
1543 apexes, jars, err := splitListOfPairsIntoPairOfLists(list)
1544 if err != nil {
1545 return err
1546 }
1547 l.apexes = apexes
1548 l.jars = jars
1549 return nil
1550}
1551
Jingwen Chenc711fec2020-11-22 23:52:50 -05001552// ModuleStem hardcodes the stem of framework-minus-apex to return "framework".
1553//
1554// TODO(b/139391334): hard coded until we find a good way to query the stem of a
1555// module before any other mutators are run.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001556func ModuleStem(module string) string {
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001557 if module == "framework-minus-apex" {
1558 return "framework"
1559 }
1560 return module
1561}
1562
Jingwen Chenc711fec2020-11-22 23:52:50 -05001563// DevicePaths computes the on-device paths for the list of (apex, jar) pairs,
1564// based on the operating system.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001565func (l *ConfiguredJarList) DevicePaths(cfg Config, ostype OsType) []string {
1566 paths := make([]string, l.Len())
1567 for i, jar := range l.jars {
1568 apex := l.apexes[i]
1569 name := ModuleStem(jar) + ".jar"
1570
1571 var subdir string
1572 if apex == "platform" {
1573 subdir = "system/framework"
1574 } else if apex == "system_ext" {
1575 subdir = "system_ext/framework"
1576 } else {
1577 subdir = filepath.Join("apex", apex, "javalib")
1578 }
1579
1580 if ostype.Class == Host {
1581 paths[i] = filepath.Join(cfg.Getenv("OUT_DIR"), "host", cfg.PrebuiltOS(), subdir, name)
1582 } else {
1583 paths[i] = filepath.Join("/", subdir, name)
1584 }
1585 }
1586 return paths
1587}
1588
Paul Duffin7d584e92020-10-23 18:26:03 +01001589func (l *ConfiguredJarList) String() string {
1590 var pairs []string
1591 for i := 0; i < l.Len(); i++ {
1592 pairs = append(pairs, l.apexes[i]+":"+l.jars[i])
1593 }
1594 return strings.Join(pairs, ",")
1595}
1596
Paul Duffin01416602020-10-23 21:04:03 +01001597func splitListOfPairsIntoPairOfLists(list []string) ([]string, []string, error) {
1598 // Now we need to populate this list by splitting each item in the slice of
1599 // pairs and appending them to the appropriate list of apexes or jars.
1600 apexes := make([]string, len(list))
1601 jars := make([]string, len(list))
1602
1603 for i, apexjar := range list {
1604 apex, jar, err := splitConfiguredJarPair(apexjar)
1605 if err != nil {
1606 return nil, nil, err
1607 }
1608 apexes[i] = apex
1609 jars[i] = jar
1610 }
1611
1612 return apexes, jars, nil
1613}
1614
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001615// Expected format for apexJarValue = <apex name>:<jar name>
Paul Duffin01416602020-10-23 21:04:03 +01001616func splitConfiguredJarPair(str string) (string, string, error) {
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001617 pair := strings.SplitN(str, ":", 2)
1618 if len(pair) == 2 {
Paul Duffin01416602020-10-23 21:04:03 +01001619 return pair[0], pair[1], nil
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001620 } else {
Paul Duffin01416602020-10-23 21:04:03 +01001621 return "error-apex", "error-jar", fmt.Errorf("malformed (apex, jar) pair: '%s', expected format: <apex>:<jar>", str)
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001622 }
1623}
1624
Jingwen Chenc711fec2020-11-22 23:52:50 -05001625// CreateTestConfiguredJarList is a function to create ConfiguredJarList for
1626// tests.
Paul Duffine10dfa42020-10-23 21:23:44 +01001627func CreateTestConfiguredJarList(list []string) ConfiguredJarList {
Paul Duffin01416602020-10-23 21:04:03 +01001628 apexes, jars, err := splitListOfPairsIntoPairOfLists(list)
1629 if err != nil {
Paul Duffine10dfa42020-10-23 21:23:44 +01001630 panic(err)
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001631 }
1632
Paul Duffin01416602020-10-23 21:04:03 +01001633 return ConfiguredJarList{apexes, jars}
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001634}
1635
Jingwen Chenc711fec2020-11-22 23:52:50 -05001636// EmptyConfiguredJarList returns an empty jar list.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001637func EmptyConfiguredJarList() ConfiguredJarList {
1638 return ConfiguredJarList{}
1639}
1640
1641var earlyBootJarsKey = NewOnceKey("earlyBootJars")
1642
1643func (c *config) BootJars() []string {
1644 return c.Once(earlyBootJarsKey, func() interface{} {
Paul Duffin69d1fb12020-10-23 21:14:20 +01001645 list := c.productVariables.BootJars.CopyOfJars()
Jingwen Chenc711fec2020-11-22 23:52:50 -05001646 return append(list, c.productVariables.UpdatableBootJars.CopyOfJars()...)
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001647 }).([]string)
1648}
Paul Duffin9a89a2a2020-10-28 19:20:06 +00001649
1650func (c *config) NonUpdatableBootJars() ConfiguredJarList {
1651 return c.productVariables.BootJars
1652}
1653
1654func (c *config) UpdatableBootJars() ConfiguredJarList {
1655 return c.productVariables.UpdatableBootJars
1656}