Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1 | // 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 Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 15 | package android |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 16 | |
Jingwen Chen | c711fec | 2020-11-22 23:52:50 -0500 | [diff] [blame] | 17 | // This is the primary location to write and read all configuration values and |
| 18 | // product variables necessary for soong_build's operation. |
| 19 | |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 20 | import ( |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 21 | "encoding/json" |
Lukacs T. Berki | 720b396 | 2021-03-17 13:34:30 +0100 | [diff] [blame] | 22 | "errors" |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 23 | "fmt" |
Colin Cross | d8f2014 | 2016-11-03 09:43:26 -0700 | [diff] [blame] | 24 | "io/ioutil" |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 25 | "os" |
Colin Cross | 35cec12 | 2015-04-02 14:37:16 -0700 | [diff] [blame] | 26 | "path/filepath" |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 27 | "runtime" |
Inseob Kim | 60c32f0 | 2020-12-21 22:53:05 +0900 | [diff] [blame] | 28 | "strconv" |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 29 | "strings" |
Colin Cross | c1e86a3 | 2015-04-15 12:33:28 -0700 | [diff] [blame] | 30 | "sync" |
Colin Cross | 6ff5138 | 2015-12-17 16:39:19 -0800 | [diff] [blame] | 31 | |
Colin Cross | 98be1bb | 2019-12-13 20:41:13 -0800 | [diff] [blame] | 32 | "github.com/google/blueprint" |
Colin Cross | e87040b | 2017-12-11 15:52:26 -0800 | [diff] [blame] | 33 | "github.com/google/blueprint/bootstrap" |
Colin Cross | 98be1bb | 2019-12-13 20:41:13 -0800 | [diff] [blame] | 34 | "github.com/google/blueprint/pathtools" |
Colin Cross | 6ff5138 | 2015-12-17 16:39:19 -0800 | [diff] [blame] | 35 | "github.com/google/blueprint/proptools" |
Colin Cross | 9d34f35 | 2019-11-22 16:03:51 -0800 | [diff] [blame] | 36 | |
| 37 | "android/soong/android/soongconfig" |
Liz Kammer | 09f947d | 2021-05-12 14:51:49 -0400 | [diff] [blame] | 38 | "android/soong/bazel" |
Colin Cross | 77cdcfd | 2021-03-12 11:28:25 -0800 | [diff] [blame] | 39 | "android/soong/remoteexec" |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 40 | ) |
| 41 | |
Jingwen Chen | c711fec | 2020-11-22 23:52:50 -0500 | [diff] [blame] | 42 | // Bool re-exports proptools.Bool for the android package. |
Colin Cross | 6ff5138 | 2015-12-17 16:39:19 -0800 | [diff] [blame] | 43 | var Bool = proptools.Bool |
Jingwen Chen | c711fec | 2020-11-22 23:52:50 -0500 | [diff] [blame] | 44 | |
| 45 | // String re-exports proptools.String for the android package. |
Jack He | 8cc7143 | 2016-12-08 15:45:07 -0800 | [diff] [blame] | 46 | var String = proptools.String |
Jingwen Chen | c711fec | 2020-11-22 23:52:50 -0500 | [diff] [blame] | 47 | |
| 48 | // StringDefault re-exports proptools.StringDefault for the android package. |
Jeongik Cha | 219141c | 2020-08-06 23:00:37 +0900 | [diff] [blame] | 49 | var StringDefault = proptools.StringDefault |
Jiyong Park | 6a927c4 | 2020-01-21 02:03:43 +0900 | [diff] [blame] | 50 | |
Jingwen Chen | c711fec | 2020-11-22 23:52:50 -0500 | [diff] [blame] | 51 | // FutureApiLevelInt is a placeholder constant for unreleased API levels. |
Dan Albert | 0b176c8 | 2020-07-23 16:43:25 -0700 | [diff] [blame] | 52 | const FutureApiLevelInt = 10000 |
| 53 | |
Jingwen Chen | c711fec | 2020-11-22 23:52:50 -0500 | [diff] [blame] | 54 | // FutureApiLevel represents unreleased API levels. |
Dan Albert | 0b176c8 | 2020-07-23 16:43:25 -0700 | [diff] [blame] | 55 | var FutureApiLevel = ApiLevel{ |
| 56 | value: "current", |
| 57 | number: FutureApiLevelInt, |
| 58 | isPreview: true, |
| 59 | } |
Colin Cross | 6ff5138 | 2015-12-17 16:39:19 -0800 | [diff] [blame] | 60 | |
Jingwen Chen | c4d91bc | 2020-11-24 22:59:26 -0500 | [diff] [blame] | 61 | // The product variables file name, containing product config from Kati. |
Dan Willemsen | 87b17d1 | 2015-07-14 00:39:06 -0700 | [diff] [blame] | 62 | const productVariablesFileName = "soong.variables" |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 63 | |
Colin Cross | 9272ade | 2016-08-17 15:24:12 -0700 | [diff] [blame] | 64 | // A Config object represents the entire build configuration for Android. |
Colin Cross | c3c0a49 | 2015-04-10 15:43:55 -0700 | [diff] [blame] | 65 | type Config struct { |
| 66 | *config |
| 67 | } |
| 68 | |
Lukacs T. Berki | b078ade | 2021-08-31 10:42:08 +0200 | [diff] [blame] | 69 | // SoongOutDir returns the build output directory for the configuration. |
Lukacs T. Berki | 9f6c24a | 2021-08-26 15:07:24 +0200 | [diff] [blame] | 70 | func (c Config) SoongOutDir() string { |
| 71 | return c.soongOutDir |
Jeff Gaston | efc1b41 | 2017-03-29 17:29:06 -0700 | [diff] [blame] | 72 | } |
| 73 | |
Lukacs T. Berki | 9f6c24a | 2021-08-26 15:07:24 +0200 | [diff] [blame] | 74 | func (c Config) OutDir() string { |
Lukacs T. Berki | d6cee7e | 2021-09-01 16:25:51 +0200 | [diff] [blame^] | 75 | return c.outDir |
Lukacs T. Berki | 89e9a16 | 2021-03-12 08:31:32 +0100 | [diff] [blame] | 76 | } |
| 77 | |
Lukacs T. Berki | ea1a31c | 2021-09-02 09:58:09 +0200 | [diff] [blame] | 78 | func (c Config) RunGoTests() bool { |
| 79 | return c.runGoTests |
| 80 | } |
| 81 | |
| 82 | func (c Config) UseValidationsForGoTests() bool { |
| 83 | return c.useValidationsForGoTests |
| 84 | } |
| 85 | |
Lukacs T. Berki | 5f6cb1d | 2021-03-17 15:03:14 +0100 | [diff] [blame] | 86 | func (c Config) DebugCompilation() bool { |
| 87 | return false // Never compile Go code in the main build for debugging |
| 88 | } |
| 89 | |
Lukacs T. Berki | ea1a31c | 2021-09-02 09:58:09 +0200 | [diff] [blame] | 90 | func (c Config) Subninjas() []string { |
| 91 | return []string{} |
| 92 | } |
| 93 | |
| 94 | func (c Config) PrimaryBuilderInvocations() []bootstrap.PrimaryBuilderInvocation { |
| 95 | return []bootstrap.PrimaryBuilderInvocation{} |
| 96 | } |
| 97 | |
Jingwen Chen | c711fec | 2020-11-22 23:52:50 -0500 | [diff] [blame] | 98 | // A DeviceConfig object represents the configuration for a particular device |
| 99 | // being built. For now there will only be one of these, but in the future there |
| 100 | // may be multiple devices being built. |
Colin Cross | 9272ade | 2016-08-17 15:24:12 -0700 | [diff] [blame] | 101 | type DeviceConfig struct { |
| 102 | *deviceConfig |
| 103 | } |
| 104 | |
Jingwen Chen | c711fec | 2020-11-22 23:52:50 -0500 | [diff] [blame] | 105 | // VendorConfig represents the configuration for vendor-specific behavior. |
Colin Cross | 9d34f35 | 2019-11-22 16:03:51 -0800 | [diff] [blame] | 106 | type VendorConfig soongconfig.SoongConfig |
Dan Willemsen | 0fe7866 | 2018-03-26 12:41:18 -0700 | [diff] [blame] | 107 | |
Jingwen Chen | c711fec | 2020-11-22 23:52:50 -0500 | [diff] [blame] | 108 | // Definition of general build configuration for soong_build. Some of these |
Jingwen Chen | c4d91bc | 2020-11-24 22:59:26 -0500 | [diff] [blame] | 109 | // product configuration values are read from Kati-generated soong.variables. |
Colin Cross | 1332b00 | 2015-04-07 17:11:30 -0700 | [diff] [blame] | 110 | type config struct { |
Jingwen Chen | c711fec | 2020-11-22 23:52:50 -0500 | [diff] [blame] | 111 | // Options configurable with soong.variables |
Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 112 | productVariables productVariables |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 113 | |
Dan Willemsen | 674dc7f | 2018-03-12 18:06:05 -0700 | [diff] [blame] | 114 | // Only available on configs created by TestConfig |
| 115 | TestProductVariables *productVariables |
| 116 | |
Jingwen Chen | c711fec | 2020-11-22 23:52:50 -0500 | [diff] [blame] | 117 | // A specialized context object for Bazel/Soong mixed builds and migration |
| 118 | // purposes. |
Chris Parsons | f3c96ef | 2020-09-29 02:23:17 -0400 | [diff] [blame] | 119 | BazelContext BazelContext |
| 120 | |
Dan Willemsen | 87b17d1 | 2015-07-14 00:39:06 -0700 | [diff] [blame] | 121 | ProductVariablesFileName string |
| 122 | |
Colin Cross | 0c66bc6 | 2021-07-20 09:47:41 -0700 | [diff] [blame] | 123 | // BuildOS stores the OsType for the OS that the build is running on. |
| 124 | BuildOS OsType |
| 125 | |
| 126 | // BuildArch stores the ArchType for the CPU that the build is running on. |
| 127 | BuildArch ArchType |
| 128 | |
Jaewoong Jung | 642916f | 2020-10-09 17:25:15 -0700 | [diff] [blame] | 129 | Targets map[OsType][]Target |
| 130 | BuildOSTarget Target // the Target for tools run on the build machine |
| 131 | BuildOSCommonTarget Target // the Target for common (java) tools run on the build machine |
| 132 | AndroidCommonTarget Target // the Target for common modules for the Android device |
| 133 | AndroidFirstDeviceTarget Target // the first Target for modules for the Android device |
Dan Willemsen | 218f656 | 2015-07-08 18:13:11 -0700 | [diff] [blame] | 134 | |
Jingwen Chen | c711fec | 2020-11-22 23:52:50 -0500 | [diff] [blame] | 135 | // multilibConflicts for an ArchType is true if there is earlier configured |
| 136 | // device architecture with the same multilib value. |
Colin Cross | 3b19f5d | 2019-09-17 14:45:31 -0700 | [diff] [blame] | 137 | multilibConflicts map[ArchType]bool |
| 138 | |
Colin Cross | 9272ade | 2016-08-17 15:24:12 -0700 | [diff] [blame] | 139 | deviceConfig *deviceConfig |
| 140 | |
Lukacs T. Berki | d6cee7e | 2021-09-01 16:25:51 +0200 | [diff] [blame^] | 141 | outDir string // The output directory (usually out/) |
| 142 | soongOutDir string |
Chris Parsons | 8f232a2 | 2020-06-23 17:37:05 -0400 | [diff] [blame] | 143 | moduleListFile string // the path to the file which lists blueprint files to parse. |
Colin Cross | c1e86a3 | 2015-04-15 12:33:28 -0700 | [diff] [blame] | 144 | |
Lukacs T. Berki | ea1a31c | 2021-09-02 09:58:09 +0200 | [diff] [blame] | 145 | runGoTests bool |
| 146 | useValidationsForGoTests bool |
| 147 | |
Colin Cross | 6ccbc91 | 2017-10-10 23:07:38 -0700 | [diff] [blame] | 148 | env map[string]string |
Dan Willemsen | e7680ba | 2015-09-11 17:06:19 -0700 | [diff] [blame] | 149 | envLock sync.Mutex |
| 150 | envDeps map[string]string |
| 151 | envFrozen bool |
Dan Willemsen | 5ba07e8 | 2015-12-11 13:51:06 -0800 | [diff] [blame] | 152 | |
Jingwen Chen | cda22c9 | 2020-11-23 00:22:30 -0500 | [diff] [blame] | 153 | // Changes behavior based on whether Kati runs after soong_build, or if soong_build |
| 154 | // runs standalone. |
| 155 | katiEnabled bool |
Colin Cross | 1e7d370 | 2016-08-24 15:25:47 -0700 | [diff] [blame] | 156 | |
Colin Cross | 32616ed | 2017-09-05 21:56:44 -0700 | [diff] [blame] | 157 | captureBuild bool // true for tests, saves build parameters for each module |
| 158 | ignoreEnvironment bool // true for tests, returns empty from all Getenv calls |
Colin Cross | cec8171 | 2017-07-13 14:43:27 -0700 | [diff] [blame] | 159 | |
Colin Cross | e87040b | 2017-12-11 15:52:26 -0800 | [diff] [blame] | 160 | stopBefore bootstrap.StopBefore |
| 161 | |
Colin Cross | 98be1bb | 2019-12-13 20:41:13 -0800 | [diff] [blame] | 162 | fs pathtools.FileSystem |
| 163 | mockBpList string |
| 164 | |
Jingwen Chen | 12b4c27 | 2021-03-10 02:05:59 -0500 | [diff] [blame] | 165 | bp2buildPackageConfig Bp2BuildConfig |
| 166 | bp2buildModuleTypeConfig map[string]bool |
| 167 | |
Colin Cross | 5e6a797 | 2020-06-07 16:56:32 -0700 | [diff] [blame] | 168 | // If testAllowNonExistentPaths is true then PathForSource and PathForModuleSrc won't error |
| 169 | // in tests when a path doesn't exist. |
Pedro Loureiro | 5d190cc | 2021-02-15 15:41:33 +0000 | [diff] [blame] | 170 | TestAllowNonExistentPaths bool |
Colin Cross | 5e6a797 | 2020-06-07 16:56:32 -0700 | [diff] [blame] | 171 | |
Jingwen Chen | c711fec | 2020-11-22 23:52:50 -0500 | [diff] [blame] | 172 | // The list of files that when changed, must invalidate soong_build to |
| 173 | // regenerate build.ninja. |
Colin Cross | 1212929 | 2020-10-29 18:23:58 -0700 | [diff] [blame] | 174 | ninjaFileDepsSet sync.Map |
| 175 | |
Colin Cross | 9272ade | 2016-08-17 15:24:12 -0700 | [diff] [blame] | 176 | OncePer |
| 177 | } |
| 178 | |
| 179 | type deviceConfig struct { |
Dan Willemsen | 00269f2 | 2017-07-06 16:59:48 -0700 | [diff] [blame] | 180 | config *config |
Colin Cross | 9272ade | 2016-08-17 15:24:12 -0700 | [diff] [blame] | 181 | OncePer |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 182 | } |
| 183 | |
Colin Cross | 485e572 | 2015-08-27 13:28:01 -0700 | [diff] [blame] | 184 | type jsonConfigurable interface { |
Colin Cross | 2738597 | 2015-09-18 10:57:10 -0700 | [diff] [blame] | 185 | SetDefaultConfig() |
Colin Cross | 485e572 | 2015-08-27 13:28:01 -0700 | [diff] [blame] | 186 | } |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 187 | |
Colin Cross | 485e572 | 2015-08-27 13:28:01 -0700 | [diff] [blame] | 188 | func loadConfig(config *config) error { |
Colin Cross | 988414c | 2020-01-11 01:11:46 +0000 | [diff] [blame] | 189 | return loadFromConfigFile(&config.productVariables, absolutePath(config.ProductVariablesFileName)) |
Colin Cross | 485e572 | 2015-08-27 13:28:01 -0700 | [diff] [blame] | 190 | } |
| 191 | |
Jingwen Chen | c711fec | 2020-11-22 23:52:50 -0500 | [diff] [blame] | 192 | // loadFromConfigFile loads and decodes configuration options from a JSON file |
| 193 | // in the current working directory. |
Liz Kammer | 09f947d | 2021-05-12 14:51:49 -0400 | [diff] [blame] | 194 | func loadFromConfigFile(configurable *productVariables, filename string) error { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 195 | // Try to open the file |
Colin Cross | 485e572 | 2015-08-27 13:28:01 -0700 | [diff] [blame] | 196 | configFileReader, err := os.Open(filename) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 197 | defer configFileReader.Close() |
| 198 | if os.IsNotExist(err) { |
| 199 | // Need to create a file, so that blueprint & ninja don't get in |
| 200 | // a dependency tracking loop. |
| 201 | // Make a file-configurable-options with defaults, write it out using |
| 202 | // a json writer. |
Colin Cross | 2738597 | 2015-09-18 10:57:10 -0700 | [diff] [blame] | 203 | configurable.SetDefaultConfig() |
| 204 | err = saveToConfigFile(configurable, filename) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 205 | if err != nil { |
| 206 | return err |
| 207 | } |
Colin Cross | 15cd21a | 2018-02-27 11:26:02 -0800 | [diff] [blame] | 208 | } else if err != nil { |
| 209 | return fmt.Errorf("config file: could not open %s: %s", filename, err.Error()) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 210 | } else { |
| 211 | // Make a decoder for it |
| 212 | jsonDecoder := json.NewDecoder(configFileReader) |
Colin Cross | 485e572 | 2015-08-27 13:28:01 -0700 | [diff] [blame] | 213 | err = jsonDecoder.Decode(configurable) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 214 | if err != nil { |
Colin Cross | 15cd21a | 2018-02-27 11:26:02 -0800 | [diff] [blame] | 215 | return fmt.Errorf("config file: %s did not parse correctly: %s", filename, err.Error()) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 216 | } |
| 217 | } |
| 218 | |
Liz Kammer | 09f947d | 2021-05-12 14:51:49 -0400 | [diff] [blame] | 219 | if Bool(configurable.GcovCoverage) && Bool(configurable.ClangCoverage) { |
| 220 | return fmt.Errorf("GcovCoverage and ClangCoverage cannot both be set") |
| 221 | } |
| 222 | |
| 223 | configurable.Native_coverage = proptools.BoolPtr( |
| 224 | Bool(configurable.GcovCoverage) || |
| 225 | Bool(configurable.ClangCoverage)) |
| 226 | |
Yuntao Xu | 402e9b0 | 2021-08-09 15:44:44 -0700 | [diff] [blame] | 227 | // when Platform_sdk_final is true (or PLATFORM_VERSION_CODENAME is REL), use Platform_sdk_version; |
| 228 | // if false (pre-released version, for example), use Platform_sdk_codename. |
| 229 | if Bool(configurable.Platform_sdk_final) { |
| 230 | if configurable.Platform_sdk_version != nil { |
| 231 | configurable.Platform_sdk_version_or_codename = |
| 232 | proptools.StringPtr(strconv.Itoa(*(configurable.Platform_sdk_version))) |
| 233 | } else { |
| 234 | return fmt.Errorf("Platform_sdk_version cannot be pointed by a NULL pointer") |
| 235 | } |
| 236 | } else { |
| 237 | configurable.Platform_sdk_version_or_codename = |
| 238 | proptools.StringPtr(String(configurable.Platform_sdk_codename)) |
| 239 | } |
| 240 | |
Liz Kammer | 09f947d | 2021-05-12 14:51:49 -0400 | [diff] [blame] | 241 | return saveToBazelConfigFile(configurable, filepath.Dir(filename)) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 242 | } |
| 243 | |
Colin Cross | d8f2014 | 2016-11-03 09:43:26 -0700 | [diff] [blame] | 244 | // atomically writes the config file in case two copies of soong_build are running simultaneously |
| 245 | // (for example, docs generation and ninja manifest generation) |
Liz Kammer | 09f947d | 2021-05-12 14:51:49 -0400 | [diff] [blame] | 246 | func saveToConfigFile(config *productVariables, filename string) error { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 247 | data, err := json.MarshalIndent(&config, "", " ") |
| 248 | if err != nil { |
| 249 | return fmt.Errorf("cannot marshal config data: %s", err.Error()) |
| 250 | } |
| 251 | |
Colin Cross | d8f2014 | 2016-11-03 09:43:26 -0700 | [diff] [blame] | 252 | f, err := ioutil.TempFile(filepath.Dir(filename), "config") |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 253 | if err != nil { |
Jingwen Chen | c711fec | 2020-11-22 23:52:50 -0500 | [diff] [blame] | 254 | return fmt.Errorf("cannot create empty config file %s: %s", filename, err.Error()) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 255 | } |
Colin Cross | d8f2014 | 2016-11-03 09:43:26 -0700 | [diff] [blame] | 256 | defer os.Remove(f.Name()) |
| 257 | defer f.Close() |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 258 | |
Colin Cross | d8f2014 | 2016-11-03 09:43:26 -0700 | [diff] [blame] | 259 | _, err = f.Write(data) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 260 | if err != nil { |
Colin Cross | 485e572 | 2015-08-27 13:28:01 -0700 | [diff] [blame] | 261 | return fmt.Errorf("default config file: %s could not be written: %s", filename, err.Error()) |
| 262 | } |
| 263 | |
Colin Cross | d8f2014 | 2016-11-03 09:43:26 -0700 | [diff] [blame] | 264 | _, err = f.WriteString("\n") |
Colin Cross | 485e572 | 2015-08-27 13:28:01 -0700 | [diff] [blame] | 265 | if err != nil { |
| 266 | return fmt.Errorf("default config file: %s could not be written: %s", filename, err.Error()) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 267 | } |
| 268 | |
Colin Cross | d8f2014 | 2016-11-03 09:43:26 -0700 | [diff] [blame] | 269 | f.Close() |
| 270 | os.Rename(f.Name(), filename) |
| 271 | |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 272 | return nil |
| 273 | } |
| 274 | |
Liz Kammer | 09f947d | 2021-05-12 14:51:49 -0400 | [diff] [blame] | 275 | func saveToBazelConfigFile(config *productVariables, outDir string) error { |
| 276 | dir := filepath.Join(outDir, bazel.SoongInjectionDirName, "product_config") |
| 277 | err := createDirIfNonexistent(dir, os.ModePerm) |
| 278 | if err != nil { |
| 279 | return fmt.Errorf("Could not create dir %s: %s", dir, err) |
| 280 | } |
| 281 | |
| 282 | data, err := json.MarshalIndent(&config, "", " ") |
| 283 | if err != nil { |
| 284 | return fmt.Errorf("cannot marshal config data: %s", err.Error()) |
| 285 | } |
| 286 | |
| 287 | bzl := []string{ |
| 288 | bazel.GeneratedBazelFileWarning, |
| 289 | fmt.Sprintf(`_product_vars = json.decode("""%s""")`, data), |
| 290 | "product_vars = _product_vars\n", |
| 291 | } |
| 292 | err = ioutil.WriteFile(filepath.Join(dir, "product_variables.bzl"), []byte(strings.Join(bzl, "\n")), 0644) |
| 293 | if err != nil { |
| 294 | return fmt.Errorf("Could not write .bzl config file %s", err) |
| 295 | } |
| 296 | err = ioutil.WriteFile(filepath.Join(dir, "BUILD"), []byte(bazel.GeneratedBazelFileWarning), 0644) |
| 297 | if err != nil { |
| 298 | return fmt.Errorf("Could not write BUILD config file %s", err) |
| 299 | } |
| 300 | |
| 301 | return nil |
| 302 | } |
| 303 | |
Colin Cross | 988414c | 2020-01-11 01:11:46 +0000 | [diff] [blame] | 304 | // NullConfig returns a mostly empty Config for use by standalone tools like dexpreopt_gen that |
| 305 | // use the android package. |
Lukacs T. Berki | d6cee7e | 2021-09-01 16:25:51 +0200 | [diff] [blame^] | 306 | func NullConfig(outDir, soongOutDir string) Config { |
Colin Cross | 988414c | 2020-01-11 01:11:46 +0000 | [diff] [blame] | 307 | return Config{ |
| 308 | config: &config{ |
Lukacs T. Berki | d6cee7e | 2021-09-01 16:25:51 +0200 | [diff] [blame^] | 309 | outDir: outDir, |
Lukacs T. Berki | 9f6c24a | 2021-08-26 15:07:24 +0200 | [diff] [blame] | 310 | soongOutDir: soongOutDir, |
| 311 | fs: pathtools.OsFs, |
Colin Cross | 988414c | 2020-01-11 01:11:46 +0000 | [diff] [blame] | 312 | }, |
| 313 | } |
| 314 | } |
| 315 | |
Jingwen Chen | c711fec | 2020-11-22 23:52:50 -0500 | [diff] [blame] | 316 | // TestConfig returns a Config object for testing. |
Colin Cross | 98be1bb | 2019-12-13 20:41:13 -0800 | [diff] [blame] | 317 | func TestConfig(buildDir string, env map[string]string, bp string, fs map[string][]byte) Config { |
Colin Cross | 9c6241f | 2019-04-22 15:51:26 -0700 | [diff] [blame] | 318 | envCopy := make(map[string]string) |
| 319 | for k, v := range env { |
| 320 | envCopy[k] = v |
| 321 | } |
| 322 | |
Jingwen Chen | 2838c81 | 2020-11-23 01:06:40 -0500 | [diff] [blame] | 323 | // Copy the real PATH value to the test environment, it's needed by |
| 324 | // NonHermeticHostSystemTool() used in x86_darwin_host.go |
Lukacs T. Berki | deba721 | 2021-03-04 10:50:10 +0100 | [diff] [blame] | 325 | envCopy["PATH"] = os.Getenv("PATH") |
Colin Cross | 9c6241f | 2019-04-22 15:51:26 -0700 | [diff] [blame] | 326 | |
Dan Willemsen | 00269f2 | 2017-07-06 16:59:48 -0700 | [diff] [blame] | 327 | config := &config{ |
Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 328 | productVariables: productVariables{ |
Dan Albert | 4f378d7 | 2020-07-23 17:32:15 -0700 | [diff] [blame] | 329 | DeviceName: stringPtr("test_device"), |
| 330 | Platform_sdk_version: intPtr(30), |
| 331 | Platform_sdk_codename: stringPtr("S"), |
| 332 | Platform_version_active_codenames: []string{"S"}, |
| 333 | DeviceSystemSdkVersions: []string{"14", "15"}, |
| 334 | Platform_systemsdk_versions: []string{"29", "30"}, |
| 335 | AAPTConfig: []string{"normal", "large", "xlarge", "hdpi", "xhdpi", "xxhdpi"}, |
| 336 | AAPTPreferredConfig: stringPtr("xhdpi"), |
| 337 | AAPTCharacteristics: stringPtr("nosdcard"), |
| 338 | AAPTPrebuiltDPI: []string{"xhdpi", "xxhdpi"}, |
| 339 | UncompressPrivAppDex: boolPtr(true), |
Inseob Kim | 60c32f0 | 2020-12-21 22:53:05 +0900 | [diff] [blame] | 340 | ShippingApiLevel: stringPtr("30"), |
Dan Willemsen | 00269f2 | 2017-07-06 16:59:48 -0700 | [diff] [blame] | 341 | }, |
| 342 | |
Lukacs T. Berki | d6cee7e | 2021-09-01 16:25:51 +0200 | [diff] [blame^] | 343 | outDir: buildDir, |
| 344 | // soongOutDir is inconsistent with production (it should be buildDir + "/soong") |
| 345 | // but a lot of tests assume this :( |
Lukacs T. Berki | 9f6c24a | 2021-08-26 15:07:24 +0200 | [diff] [blame] | 346 | soongOutDir: buildDir, |
Colin Cross | 6ccbc91 | 2017-10-10 23:07:38 -0700 | [diff] [blame] | 347 | captureBuild: true, |
Colin Cross | 9c6241f | 2019-04-22 15:51:26 -0700 | [diff] [blame] | 348 | env: envCopy, |
Colin Cross | 5e6a797 | 2020-06-07 16:56:32 -0700 | [diff] [blame] | 349 | |
| 350 | // Set testAllowNonExistentPaths so that test contexts don't need to specify every path |
| 351 | // passed to PathForSource or PathForModuleSrc. |
Pedro Loureiro | 5d190cc | 2021-02-15 15:41:33 +0000 | [diff] [blame] | 352 | TestAllowNonExistentPaths: true, |
Chris Parsons | f3c96ef | 2020-09-29 02:23:17 -0400 | [diff] [blame] | 353 | |
| 354 | BazelContext: noopBazelContext{}, |
Dan Willemsen | 00269f2 | 2017-07-06 16:59:48 -0700 | [diff] [blame] | 355 | } |
| 356 | config.deviceConfig = &deviceConfig{ |
| 357 | config: config, |
| 358 | } |
Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 359 | config.TestProductVariables = &config.productVariables |
Dan Willemsen | 00269f2 | 2017-07-06 16:59:48 -0700 | [diff] [blame] | 360 | |
Colin Cross | 98be1bb | 2019-12-13 20:41:13 -0800 | [diff] [blame] | 361 | config.mockFileSystem(bp, fs) |
| 362 | |
Jingwen Chen | 12b4c27 | 2021-03-10 02:05:59 -0500 | [diff] [blame] | 363 | config.bp2buildModuleTypeConfig = map[string]bool{} |
| 364 | |
Dan Willemsen | 00269f2 | 2017-07-06 16:59:48 -0700 | [diff] [blame] | 365 | return Config{config} |
Colin Cross | ce75d2c | 2016-10-06 16:12:58 -0700 | [diff] [blame] | 366 | } |
| 367 | |
Paul Duffin | 3581612 | 2021-02-24 01:49:52 +0000 | [diff] [blame] | 368 | func modifyTestConfigToSupportArchMutator(testConfig Config) { |
Colin Cross | ae4c618 | 2017-09-15 17:33:55 -0700 | [diff] [blame] | 369 | config := testConfig.config |
| 370 | |
Colin Cross | 0c66bc6 | 2021-07-20 09:47:41 -0700 | [diff] [blame] | 371 | determineBuildOS(config) |
| 372 | |
Dan Willemsen | 0ef639b | 2018-10-10 17:02:29 -0700 | [diff] [blame] | 373 | config.Targets = map[OsType][]Target{ |
| 374 | Android: []Target{ |
Jiyong Park | 1613e55 | 2020-09-14 19:43:17 +0900 | [diff] [blame] | 375 | {Android, Arch{ArchType: Arm64, ArchVariant: "armv8-a", Abi: []string{"arm64-v8a"}}, NativeBridgeDisabled, "", "", false}, |
| 376 | {Android, Arch{ArchType: Arm, ArchVariant: "armv7-a-neon", Abi: []string{"armeabi-v7a"}}, NativeBridgeDisabled, "", "", false}, |
Colin Cross | ae4c618 | 2017-09-15 17:33:55 -0700 | [diff] [blame] | 377 | }, |
Colin Cross | 0c66bc6 | 2021-07-20 09:47:41 -0700 | [diff] [blame] | 378 | config.BuildOS: []Target{ |
| 379 | {config.BuildOS, Arch{ArchType: X86_64}, NativeBridgeDisabled, "", "", false}, |
| 380 | {config.BuildOS, Arch{ArchType: X86}, NativeBridgeDisabled, "", "", false}, |
Colin Cross | ae4c618 | 2017-09-15 17:33:55 -0700 | [diff] [blame] | 381 | }, |
| 382 | } |
| 383 | |
Colin Cross | 0d99f7c | 2019-05-14 16:01:24 -0700 | [diff] [blame] | 384 | if runtime.GOOS == "darwin" { |
Colin Cross | 0c66bc6 | 2021-07-20 09:47:41 -0700 | [diff] [blame] | 385 | config.Targets[config.BuildOS] = config.Targets[config.BuildOS][:1] |
Colin Cross | 0d99f7c | 2019-05-14 16:01:24 -0700 | [diff] [blame] | 386 | } |
| 387 | |
Colin Cross | 0c66bc6 | 2021-07-20 09:47:41 -0700 | [diff] [blame] | 388 | config.BuildOSTarget = config.Targets[config.BuildOS][0] |
| 389 | config.BuildOSCommonTarget = getCommonTargets(config.Targets[config.BuildOS])[0] |
Colin Cross | 0f7d2ef | 2019-10-16 11:03:10 -0700 | [diff] [blame] | 390 | config.AndroidCommonTarget = getCommonTargets(config.Targets[Android])[0] |
Jaewoong Jung | 642916f | 2020-10-09 17:25:15 -0700 | [diff] [blame] | 391 | config.AndroidFirstDeviceTarget = firstTarget(config.Targets[Android], "lib64", "lib32")[0] |
Inseob Kim | 1f086e2 | 2019-05-09 13:29:15 +0900 | [diff] [blame] | 392 | config.TestProductVariables.DeviceArch = proptools.StringPtr("arm64") |
| 393 | config.TestProductVariables.DeviceArchVariant = proptools.StringPtr("armv8-a") |
| 394 | config.TestProductVariables.DeviceSecondaryArch = proptools.StringPtr("arm") |
| 395 | config.TestProductVariables.DeviceSecondaryArchVariant = proptools.StringPtr("armv7-a-neon") |
Paul Duffin | 3581612 | 2021-02-24 01:49:52 +0000 | [diff] [blame] | 396 | } |
Colin Cross | 2a07692 | 2018-10-04 23:28:25 -0700 | [diff] [blame] | 397 | |
Colin Cross | 528d67e | 2021-07-23 22:23:07 +0000 | [diff] [blame] | 398 | func modifyTestConfigForMusl(config Config) { |
| 399 | delete(config.Targets, config.BuildOS) |
| 400 | config.productVariables.HostMusl = boolPtr(true) |
| 401 | determineBuildOS(config.config) |
| 402 | config.Targets[config.BuildOS] = []Target{ |
| 403 | {config.BuildOS, Arch{ArchType: X86_64}, NativeBridgeDisabled, "", "", false}, |
| 404 | {config.BuildOS, Arch{ArchType: X86}, NativeBridgeDisabled, "", "", false}, |
| 405 | } |
| 406 | |
| 407 | config.BuildOSTarget = config.Targets[config.BuildOS][0] |
| 408 | config.BuildOSCommonTarget = getCommonTargets(config.Targets[config.BuildOS])[0] |
| 409 | } |
| 410 | |
Paul Duffin | 3581612 | 2021-02-24 01:49:52 +0000 | [diff] [blame] | 411 | // TestArchConfig returns a Config object suitable for using for tests that |
| 412 | // need to run the arch mutator. |
| 413 | func TestArchConfig(buildDir string, env map[string]string, bp string, fs map[string][]byte) Config { |
| 414 | testConfig := TestConfig(buildDir, env, bp, fs) |
| 415 | modifyTestConfigToSupportArchMutator(testConfig) |
Colin Cross | ae4c618 | 2017-09-15 17:33:55 -0700 | [diff] [blame] | 416 | return testConfig |
| 417 | } |
| 418 | |
Jingwen Chen | c711fec | 2020-11-22 23:52:50 -0500 | [diff] [blame] | 419 | // ConfigForAdditionalRun is a config object which is "reset" for another |
| 420 | // bootstrap run. Only per-run data is reset. Data which needs to persist across |
| 421 | // multiple runs in the same program execution is carried over (such as Bazel |
| 422 | // context or environment deps). |
Lukacs T. Berki | ea1a31c | 2021-09-02 09:58:09 +0200 | [diff] [blame] | 423 | func ConfigForAdditionalRun(cmdlineArgs bootstrap.Args, c Config) (Config, error) { |
| 424 | newConfig, err := NewConfig(cmdlineArgs, c.soongOutDir, c.env) |
Chris Parsons | f3c96ef | 2020-09-29 02:23:17 -0400 | [diff] [blame] | 425 | if err != nil { |
| 426 | return Config{}, err |
| 427 | } |
| 428 | newConfig.BazelContext = c.BazelContext |
| 429 | newConfig.envDeps = c.envDeps |
| 430 | return newConfig, nil |
| 431 | } |
| 432 | |
Jingwen Chen | c711fec | 2020-11-22 23:52:50 -0500 | [diff] [blame] | 433 | // NewConfig creates a new Config object. The srcDir argument specifies the path |
| 434 | // to the root source directory. It also loads the config file, if found. |
Lukacs T. Berki | ea1a31c | 2021-09-02 09:58:09 +0200 | [diff] [blame] | 435 | func NewConfig(cmdlineArgs bootstrap.Args, soongOutDir string, availableEnv map[string]string) (Config, error) { |
Jingwen Chen | c711fec | 2020-11-22 23:52:50 -0500 | [diff] [blame] | 436 | // Make a config with default options. |
Colin Cross | 9272ade | 2016-08-17 15:24:12 -0700 | [diff] [blame] | 437 | config := &config{ |
Lukacs T. Berki | 9f6c24a | 2021-08-26 15:07:24 +0200 | [diff] [blame] | 438 | ProductVariablesFileName: filepath.Join(soongOutDir, productVariablesFileName), |
Dan Willemsen | 87b17d1 | 2015-07-14 00:39:06 -0700 | [diff] [blame] | 439 | |
Lukacs T. Berki | 53b2f36 | 2021-04-12 14:04:24 +0200 | [diff] [blame] | 440 | env: availableEnv, |
Colin Cross | 6ccbc91 | 2017-10-10 23:07:38 -0700 | [diff] [blame] | 441 | |
Lukacs T. Berki | d6cee7e | 2021-09-01 16:25:51 +0200 | [diff] [blame^] | 442 | outDir: cmdlineArgs.OutDir, |
Lukacs T. Berki | ea1a31c | 2021-09-02 09:58:09 +0200 | [diff] [blame] | 443 | soongOutDir: soongOutDir, |
| 444 | runGoTests: cmdlineArgs.RunGoTests, |
| 445 | useValidationsForGoTests: cmdlineArgs.UseValidations, |
| 446 | multilibConflicts: make(map[ArchType]bool), |
Colin Cross | 98be1bb | 2019-12-13 20:41:13 -0800 | [diff] [blame] | 447 | |
Lukacs T. Berki | ea1a31c | 2021-09-02 09:58:09 +0200 | [diff] [blame] | 448 | moduleListFile: cmdlineArgs.ModuleListFile, |
Chris Parsons | 8f232a2 | 2020-06-23 17:37:05 -0400 | [diff] [blame] | 449 | fs: pathtools.NewOsFs(absSrcDir), |
Colin Cross | 68f5510 | 2015-03-25 14:43:57 -0700 | [diff] [blame] | 450 | } |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 451 | |
Dan Willemsen | 00269f2 | 2017-07-06 16:59:48 -0700 | [diff] [blame] | 452 | config.deviceConfig = &deviceConfig{ |
Colin Cross | 9272ade | 2016-08-17 15:24:12 -0700 | [diff] [blame] | 453 | config: config, |
| 454 | } |
| 455 | |
Liz Kammer | 7941b30 | 2020-07-28 13:27:34 -0700 | [diff] [blame] | 456 | // Soundness check of the build and source directories. This won't catch strange |
| 457 | // configurations with symlinks, but at least checks the obvious case. |
Lukacs T. Berki | 9f6c24a | 2021-08-26 15:07:24 +0200 | [diff] [blame] | 458 | absBuildDir, err := filepath.Abs(soongOutDir) |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 459 | if err != nil { |
| 460 | return Config{}, err |
| 461 | } |
| 462 | |
Lukacs T. Berki | f7e36d8 | 2021-08-16 17:05:09 +0200 | [diff] [blame] | 463 | absSrcDir, err := filepath.Abs(".") |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 464 | if err != nil { |
| 465 | return Config{}, err |
| 466 | } |
| 467 | |
| 468 | if strings.HasPrefix(absSrcDir, absBuildDir) { |
| 469 | return Config{}, fmt.Errorf("Build dir must not contain source directory") |
| 470 | } |
| 471 | |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 472 | // Load any configurable options from the configuration file |
Colin Cross | 9272ade | 2016-08-17 15:24:12 -0700 | [diff] [blame] | 473 | err = loadConfig(config) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 474 | if err != nil { |
Colin Cross | c3c0a49 | 2015-04-10 15:43:55 -0700 | [diff] [blame] | 475 | return Config{}, err |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 476 | } |
| 477 | |
Lukacs T. Berki | 9f6c24a | 2021-08-26 15:07:24 +0200 | [diff] [blame] | 478 | KatiEnabledMarkerFile := filepath.Join(soongOutDir, ".soong.kati_enabled") |
Jingwen Chen | cda22c9 | 2020-11-23 00:22:30 -0500 | [diff] [blame] | 479 | if _, err := os.Stat(absolutePath(KatiEnabledMarkerFile)); err == nil { |
| 480 | config.katiEnabled = true |
Dan Willemsen | 5ba07e8 | 2015-12-11 13:51:06 -0800 | [diff] [blame] | 481 | } |
| 482 | |
Colin Cross | 0c66bc6 | 2021-07-20 09:47:41 -0700 | [diff] [blame] | 483 | determineBuildOS(config) |
| 484 | |
Jingwen Chen | c711fec | 2020-11-22 23:52:50 -0500 | [diff] [blame] | 485 | // Sets up the map of target OSes to the finer grained compilation targets |
| 486 | // that are configured from the product variables. |
Colin Cross | a1ad8d1 | 2016-06-01 17:09:44 -0700 | [diff] [blame] | 487 | targets, err := decodeTargetProductVariables(config) |
Dan Willemsen | 218f656 | 2015-07-08 18:13:11 -0700 | [diff] [blame] | 488 | if err != nil { |
| 489 | return Config{}, err |
| 490 | } |
| 491 | |
Paul Duffin | 1356d8c | 2020-02-25 19:26:33 +0000 | [diff] [blame] | 492 | // Make the CommonOS OsType available for all products. |
| 493 | targets[CommonOS] = []Target{commonTargetMap[CommonOS.Name]} |
| 494 | |
Dan Albert | 4098deb | 2016-10-19 14:04:41 -0700 | [diff] [blame] | 495 | var archConfig []archConfig |
Jingwen Chen | c4d91bc | 2020-11-24 22:59:26 -0500 | [diff] [blame] | 496 | if config.NdkAbis() { |
Dan Albert | 4098deb | 2016-10-19 14:04:41 -0700 | [diff] [blame] | 497 | archConfig = getNdkAbisConfig() |
Martin Stjernholm | c1ecc43 | 2019-11-15 15:00:31 +0000 | [diff] [blame] | 498 | } else if config.AmlAbis() { |
| 499 | archConfig = getAmlAbisConfig() |
Dan Albert | 4098deb | 2016-10-19 14:04:41 -0700 | [diff] [blame] | 500 | } |
| 501 | |
| 502 | if archConfig != nil { |
Dan Willemsen | 01a3c25 | 2019-01-11 19:02:16 -0800 | [diff] [blame] | 503 | androidTargets, err := decodeArchSettings(Android, archConfig) |
Dan Willemsen | 322acaf | 2016-01-12 23:07:05 -0800 | [diff] [blame] | 504 | if err != nil { |
| 505 | return Config{}, err |
| 506 | } |
Dan Willemsen | 0ef639b | 2018-10-10 17:02:29 -0700 | [diff] [blame] | 507 | targets[Android] = androidTargets |
Dan Willemsen | 322acaf | 2016-01-12 23:07:05 -0800 | [diff] [blame] | 508 | } |
| 509 | |
Colin Cross | 3b19f5d | 2019-09-17 14:45:31 -0700 | [diff] [blame] | 510 | multilib := make(map[string]bool) |
| 511 | for _, target := range targets[Android] { |
| 512 | if seen := multilib[target.Arch.ArchType.Multilib]; seen { |
| 513 | config.multilibConflicts[target.Arch.ArchType] = true |
| 514 | } |
| 515 | multilib[target.Arch.ArchType.Multilib] = true |
| 516 | } |
| 517 | |
Jingwen Chen | c711fec | 2020-11-22 23:52:50 -0500 | [diff] [blame] | 518 | // Map of OS to compilation targets. |
Colin Cross | a1ad8d1 | 2016-06-01 17:09:44 -0700 | [diff] [blame] | 519 | config.Targets = targets |
Jingwen Chen | c711fec | 2020-11-22 23:52:50 -0500 | [diff] [blame] | 520 | |
| 521 | // Compilation targets for host tools. |
Colin Cross | 0c66bc6 | 2021-07-20 09:47:41 -0700 | [diff] [blame] | 522 | config.BuildOSTarget = config.Targets[config.BuildOS][0] |
| 523 | config.BuildOSCommonTarget = getCommonTargets(config.Targets[config.BuildOS])[0] |
Jingwen Chen | c711fec | 2020-11-22 23:52:50 -0500 | [diff] [blame] | 524 | |
| 525 | // Compilation targets for Android. |
Colin Cross | 0f7d2ef | 2019-10-16 11:03:10 -0700 | [diff] [blame] | 526 | if len(config.Targets[Android]) > 0 { |
| 527 | config.AndroidCommonTarget = getCommonTargets(config.Targets[Android])[0] |
Jaewoong Jung | 642916f | 2020-10-09 17:25:15 -0700 | [diff] [blame] | 528 | config.AndroidFirstDeviceTarget = firstTarget(config.Targets[Android], "lib64", "lib32")[0] |
Colin Cross | 0f7d2ef | 2019-10-16 11:03:10 -0700 | [diff] [blame] | 529 | } |
Dan Willemsen | 218f656 | 2015-07-08 18:13:11 -0700 | [diff] [blame] | 530 | |
Chris Parsons | f3c96ef | 2020-09-29 02:23:17 -0400 | [diff] [blame] | 531 | config.BazelContext, err = NewBazelContext(config) |
Jingwen Chen | 12b4c27 | 2021-03-10 02:05:59 -0500 | [diff] [blame] | 532 | config.bp2buildPackageConfig = bp2buildDefaultConfig |
| 533 | config.bp2buildModuleTypeConfig = make(map[string]bool) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 534 | |
Jingwen Chen | c711fec | 2020-11-22 23:52:50 -0500 | [diff] [blame] | 535 | return Config{config}, err |
| 536 | } |
Colin Cross | 988414c | 2020-01-11 01:11:46 +0000 | [diff] [blame] | 537 | |
Colin Cross | 98be1bb | 2019-12-13 20:41:13 -0800 | [diff] [blame] | 538 | // mockFileSystem replaces all reads with accesses to the provided map of |
| 539 | // filenames to contents stored as a byte slice. |
| 540 | func (c *config) mockFileSystem(bp string, fs map[string][]byte) { |
| 541 | mockFS := map[string][]byte{} |
| 542 | |
| 543 | if _, exists := mockFS["Android.bp"]; !exists { |
| 544 | mockFS["Android.bp"] = []byte(bp) |
| 545 | } |
| 546 | |
| 547 | for k, v := range fs { |
| 548 | mockFS[k] = v |
| 549 | } |
| 550 | |
| 551 | // no module list file specified; find every file named Blueprints or Android.bp |
| 552 | pathsToParse := []string{} |
| 553 | for candidate := range mockFS { |
| 554 | base := filepath.Base(candidate) |
| 555 | if base == "Blueprints" || base == "Android.bp" { |
| 556 | pathsToParse = append(pathsToParse, candidate) |
| 557 | } |
| 558 | } |
| 559 | if len(pathsToParse) < 1 { |
| 560 | panic(fmt.Sprintf("No Blueprint or Android.bp files found in mock filesystem: %v\n", mockFS)) |
| 561 | } |
| 562 | mockFS[blueprint.MockModuleListFile] = []byte(strings.Join(pathsToParse, "\n")) |
| 563 | |
| 564 | c.fs = pathtools.MockFs(mockFS) |
| 565 | c.mockBpList = blueprint.MockModuleListFile |
| 566 | } |
| 567 | |
Colin Cross | e87040b | 2017-12-11 15:52:26 -0800 | [diff] [blame] | 568 | func (c *config) StopBefore() bootstrap.StopBefore { |
| 569 | return c.stopBefore |
Dan Willemsen | 218f656 | 2015-07-08 18:13:11 -0700 | [diff] [blame] | 570 | } |
| 571 | |
Jingwen Chen | c711fec | 2020-11-22 23:52:50 -0500 | [diff] [blame] | 572 | // SetStopBefore configures soong_build to exit earlier at a specific point. |
Colin Cross | e87040b | 2017-12-11 15:52:26 -0800 | [diff] [blame] | 573 | func (c *config) SetStopBefore(stopBefore bootstrap.StopBefore) { |
| 574 | c.stopBefore = stopBefore |
| 575 | } |
| 576 | |
Lukacs T. Berki | d1e3f1f | 2021-03-16 08:55:23 +0100 | [diff] [blame] | 577 | func (c *config) SetAllowMissingDependencies() { |
| 578 | c.productVariables.Allow_missing_dependencies = proptools.BoolPtr(true) |
| 579 | } |
| 580 | |
Colin Cross | e87040b | 2017-12-11 15:52:26 -0800 | [diff] [blame] | 581 | var _ bootstrap.ConfigStopBefore = (*config)(nil) |
| 582 | |
Jingwen Chen | c711fec | 2020-11-22 23:52:50 -0500 | [diff] [blame] | 583 | // BlueprintToolLocation returns the directory containing build system tools |
| 584 | // from Blueprint, like soong_zip and merge_zips. |
Lukacs T. Berki | a806e41 | 2021-09-01 08:57:48 +0200 | [diff] [blame] | 585 | func (c *config) HostToolDir() string { |
Lukacs T. Berki | 9f6c24a | 2021-08-26 15:07:24 +0200 | [diff] [blame] | 586 | return filepath.Join(c.soongOutDir, "host", c.PrebuiltOS(), "bin") |
Dan Willemsen | c2aa4a9 | 2016-05-26 15:13:03 -0700 | [diff] [blame] | 587 | } |
| 588 | |
Dan Willemsen | 60e62f0 | 2018-11-16 21:05:32 -0800 | [diff] [blame] | 589 | func (c *config) HostToolPath(ctx PathContext, tool string) Path { |
| 590 | return PathForOutput(ctx, "host", c.PrebuiltOS(), "bin", tool) |
| 591 | } |
| 592 | |
Martin Stjernholm | 7260d06 | 2019-12-09 21:47:14 +0000 | [diff] [blame] | 593 | func (c *config) HostJNIToolPath(ctx PathContext, path string) Path { |
| 594 | ext := ".so" |
| 595 | if runtime.GOOS == "darwin" { |
| 596 | ext = ".dylib" |
| 597 | } |
| 598 | return PathForOutput(ctx, "host", c.PrebuiltOS(), "lib64", path+ext) |
| 599 | } |
| 600 | |
| 601 | func (c *config) HostJavaToolPath(ctx PathContext, path string) Path { |
| 602 | return PathForOutput(ctx, "host", c.PrebuiltOS(), "framework", path) |
| 603 | } |
| 604 | |
Jingwen Chen | c711fec | 2020-11-22 23:52:50 -0500 | [diff] [blame] | 605 | // PrebuiltOS returns the name of the host OS used in prebuilts directories. |
Colin Cross | 1332b00 | 2015-04-07 17:11:30 -0700 | [diff] [blame] | 606 | func (c *config) PrebuiltOS() string { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 607 | switch runtime.GOOS { |
| 608 | case "linux": |
| 609 | return "linux-x86" |
| 610 | case "darwin": |
| 611 | return "darwin-x86" |
| 612 | default: |
| 613 | panic("Unknown GOOS") |
| 614 | } |
| 615 | } |
| 616 | |
| 617 | // GoRoot returns the path to the root directory of the Go toolchain. |
Colin Cross | 1332b00 | 2015-04-07 17:11:30 -0700 | [diff] [blame] | 618 | func (c *config) GoRoot() string { |
Lukacs T. Berki | f7e36d8 | 2021-08-16 17:05:09 +0200 | [diff] [blame] | 619 | return fmt.Sprintf("prebuilts/go/%s", c.PrebuiltOS()) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 620 | } |
| 621 | |
Jingwen Chen | c711fec | 2020-11-22 23:52:50 -0500 | [diff] [blame] | 622 | // PrebuiltBuildTool returns the path to a tool in the prebuilts directory containing |
| 623 | // checked-in tools, like Kati, Ninja or Toybox, for the current host OS. |
Dan Willemsen | 4e0aa23 | 2019-04-10 22:59:54 -0700 | [diff] [blame] | 624 | func (c *config) PrebuiltBuildTool(ctx PathContext, tool string) Path { |
| 625 | return PathForSource(ctx, "prebuilts/build-tools", c.PrebuiltOS(), "bin", tool) |
| 626 | } |
| 627 | |
Jingwen Chen | c711fec | 2020-11-22 23:52:50 -0500 | [diff] [blame] | 628 | // CpPreserveSymlinksFlags returns the host-specific flag for the cp(1) command |
| 629 | // to preserve symlinks. |
Colin Cross | 1332b00 | 2015-04-07 17:11:30 -0700 | [diff] [blame] | 630 | func (c *config) CpPreserveSymlinksFlags() string { |
Colin Cross | 485e572 | 2015-08-27 13:28:01 -0700 | [diff] [blame] | 631 | switch runtime.GOOS { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 632 | case "darwin": |
| 633 | return "-R" |
| 634 | case "linux": |
| 635 | return "-d" |
| 636 | default: |
| 637 | return "" |
| 638 | } |
| 639 | } |
Colin Cross | 68f5510 | 2015-03-25 14:43:57 -0700 | [diff] [blame] | 640 | |
Colin Cross | 1332b00 | 2015-04-07 17:11:30 -0700 | [diff] [blame] | 641 | func (c *config) Getenv(key string) string { |
Colin Cross | 68f5510 | 2015-03-25 14:43:57 -0700 | [diff] [blame] | 642 | var val string |
| 643 | var exists bool |
Colin Cross | c1e86a3 | 2015-04-15 12:33:28 -0700 | [diff] [blame] | 644 | c.envLock.Lock() |
Colin Cross | c0d58b4 | 2017-02-06 15:40:41 -0800 | [diff] [blame] | 645 | defer c.envLock.Unlock() |
| 646 | if c.envDeps == nil { |
| 647 | c.envDeps = make(map[string]string) |
| 648 | } |
Colin Cross | 68f5510 | 2015-03-25 14:43:57 -0700 | [diff] [blame] | 649 | if val, exists = c.envDeps[key]; !exists { |
Dan Willemsen | e7680ba | 2015-09-11 17:06:19 -0700 | [diff] [blame] | 650 | if c.envFrozen { |
| 651 | panic("Cannot access new environment variables after envdeps are frozen") |
| 652 | } |
Colin Cross | 6ccbc91 | 2017-10-10 23:07:38 -0700 | [diff] [blame] | 653 | val, _ = c.env[key] |
Colin Cross | 68f5510 | 2015-03-25 14:43:57 -0700 | [diff] [blame] | 654 | c.envDeps[key] = val |
| 655 | } |
| 656 | return val |
| 657 | } |
| 658 | |
Colin Cross | 99d7c23 | 2016-11-23 16:52:04 -0800 | [diff] [blame] | 659 | func (c *config) GetenvWithDefault(key string, defaultValue string) string { |
| 660 | ret := c.Getenv(key) |
| 661 | if ret == "" { |
| 662 | return defaultValue |
| 663 | } |
| 664 | return ret |
| 665 | } |
| 666 | |
| 667 | func (c *config) IsEnvTrue(key string) bool { |
| 668 | value := c.Getenv(key) |
| 669 | return value == "1" || value == "y" || value == "yes" || value == "on" || value == "true" |
| 670 | } |
| 671 | |
| 672 | func (c *config) IsEnvFalse(key string) bool { |
| 673 | value := c.Getenv(key) |
| 674 | return value == "0" || value == "n" || value == "no" || value == "off" || value == "false" |
| 675 | } |
| 676 | |
Jingwen Chen | c711fec | 2020-11-22 23:52:50 -0500 | [diff] [blame] | 677 | // EnvDeps returns the environment variables this build depends on. The first |
| 678 | // call to this function blocks future reads from the environment. |
Colin Cross | 1332b00 | 2015-04-07 17:11:30 -0700 | [diff] [blame] | 679 | func (c *config) EnvDeps() map[string]string { |
Dan Willemsen | e7680ba | 2015-09-11 17:06:19 -0700 | [diff] [blame] | 680 | c.envLock.Lock() |
Colin Cross | c0d58b4 | 2017-02-06 15:40:41 -0800 | [diff] [blame] | 681 | defer c.envLock.Unlock() |
Dan Willemsen | e7680ba | 2015-09-11 17:06:19 -0700 | [diff] [blame] | 682 | c.envFrozen = true |
Colin Cross | 68f5510 | 2015-03-25 14:43:57 -0700 | [diff] [blame] | 683 | return c.envDeps |
| 684 | } |
Colin Cross | 35cec12 | 2015-04-02 14:37:16 -0700 | [diff] [blame] | 685 | |
Jingwen Chen | cda22c9 | 2020-11-23 00:22:30 -0500 | [diff] [blame] | 686 | func (c *config) KatiEnabled() bool { |
| 687 | return c.katiEnabled |
Dan Willemsen | 5ba07e8 | 2015-12-11 13:51:06 -0800 | [diff] [blame] | 688 | } |
| 689 | |
Nan Zhang | 581fd21 | 2018-01-10 16:06:12 -0800 | [diff] [blame] | 690 | func (c *config) BuildId() string { |
Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 691 | return String(c.productVariables.BuildId) |
Nan Zhang | 581fd21 | 2018-01-10 16:06:12 -0800 | [diff] [blame] | 692 | } |
| 693 | |
Jingwen Chen | c711fec | 2020-11-22 23:52:50 -0500 | [diff] [blame] | 694 | // BuildNumberFile returns the path to a text file containing metadata |
| 695 | // representing the current build's number. |
| 696 | // |
| 697 | // Rules that want to reference the build number should read from this file |
| 698 | // without depending on it. They will run whenever their other dependencies |
| 699 | // require them to run and get the current build number. This ensures they don't |
| 700 | // rebuild on every incremental build when the build number changes. |
Colin Cross | 2a2e0db | 2020-02-21 16:55:46 -0800 | [diff] [blame] | 701 | func (c *config) BuildNumberFile(ctx PathContext) Path { |
| 702 | return PathForOutput(ctx, String(c.productVariables.BuildNumberFile)) |
Nan Zhang | 581fd21 | 2018-01-10 16:06:12 -0800 | [diff] [blame] | 703 | } |
| 704 | |
Jingwen Chen | c711fec | 2020-11-22 23:52:50 -0500 | [diff] [blame] | 705 | // DeviceName returns the name of the current device target. |
Colin Cross | 35cec12 | 2015-04-02 14:37:16 -0700 | [diff] [blame] | 706 | // TODO: take an AndroidModuleContext to select the device name for multi-device builds |
Colin Cross | 1332b00 | 2015-04-07 17:11:30 -0700 | [diff] [blame] | 707 | func (c *config) DeviceName() string { |
Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 708 | return *c.productVariables.DeviceName |
Colin Cross | 35cec12 | 2015-04-02 14:37:16 -0700 | [diff] [blame] | 709 | } |
| 710 | |
Anton Hansson | 53c8844 | 2019-03-18 15:53:16 +0000 | [diff] [blame] | 711 | func (c *config) DeviceResourceOverlays() []string { |
| 712 | return c.productVariables.DeviceResourceOverlays |
| 713 | } |
| 714 | |
| 715 | func (c *config) ProductResourceOverlays() []string { |
| 716 | return c.productVariables.ProductResourceOverlays |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 717 | } |
| 718 | |
Colin Cross | bfd347d | 2018-05-09 11:11:35 -0700 | [diff] [blame] | 719 | func (c *config) PlatformVersionName() string { |
| 720 | return String(c.productVariables.Platform_version_name) |
| 721 | } |
| 722 | |
Dan Albert | 4f378d7 | 2020-07-23 17:32:15 -0700 | [diff] [blame] | 723 | func (c *config) PlatformSdkVersion() ApiLevel { |
| 724 | return uncheckedFinalApiLevel(*c.productVariables.Platform_sdk_version) |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 725 | } |
| 726 | |
Colin Cross | d09b0b6 | 2018-04-18 11:06:47 -0700 | [diff] [blame] | 727 | func (c *config) PlatformSdkCodename() string { |
| 728 | return String(c.productVariables.Platform_sdk_codename) |
| 729 | } |
| 730 | |
Colin Cross | 092c9da | 2019-04-02 22:56:43 -0700 | [diff] [blame] | 731 | func (c *config) PlatformSecurityPatch() string { |
| 732 | return String(c.productVariables.Platform_security_patch) |
| 733 | } |
| 734 | |
| 735 | func (c *config) PlatformPreviewSdkVersion() string { |
| 736 | return String(c.productVariables.Platform_preview_sdk_version) |
| 737 | } |
| 738 | |
| 739 | func (c *config) PlatformMinSupportedTargetSdkVersion() string { |
| 740 | return String(c.productVariables.Platform_min_supported_target_sdk_version) |
| 741 | } |
| 742 | |
| 743 | func (c *config) PlatformBaseOS() string { |
| 744 | return String(c.productVariables.Platform_base_os) |
| 745 | } |
| 746 | |
Dan Albert | 1a24627 | 2020-07-06 14:49:35 -0700 | [diff] [blame] | 747 | func (c *config) MinSupportedSdkVersion() ApiLevel { |
| 748 | return uncheckedFinalApiLevel(16) |
| 749 | } |
| 750 | |
| 751 | func (c *config) FinalApiLevels() []ApiLevel { |
| 752 | var levels []ApiLevel |
Dan Albert | 4f378d7 | 2020-07-23 17:32:15 -0700 | [diff] [blame] | 753 | for i := 1; i <= c.PlatformSdkVersion().FinalOrFutureInt(); i++ { |
Dan Albert | 1a24627 | 2020-07-06 14:49:35 -0700 | [diff] [blame] | 754 | levels = append(levels, uncheckedFinalApiLevel(i)) |
| 755 | } |
| 756 | return levels |
| 757 | } |
| 758 | |
| 759 | func (c *config) PreviewApiLevels() []ApiLevel { |
| 760 | var levels []ApiLevel |
| 761 | for i, codename := range c.PlatformVersionActiveCodenames() { |
| 762 | levels = append(levels, ApiLevel{ |
| 763 | value: codename, |
| 764 | number: i, |
| 765 | isPreview: true, |
| 766 | }) |
| 767 | } |
| 768 | return levels |
| 769 | } |
| 770 | |
| 771 | func (c *config) AllSupportedApiLevels() []ApiLevel { |
| 772 | var levels []ApiLevel |
| 773 | levels = append(levels, c.FinalApiLevels()...) |
| 774 | return append(levels, c.PreviewApiLevels()...) |
Dan Albert | f5415d7 | 2017-08-17 16:19:59 -0700 | [diff] [blame] | 775 | } |
| 776 | |
Jingwen Chen | c711fec | 2020-11-22 23:52:50 -0500 | [diff] [blame] | 777 | // DefaultAppTargetSdk returns the API level that platform apps are targeting. |
| 778 | // This converts a codename to the exact ApiLevel it represents. |
Dan Albert | 4f378d7 | 2020-07-23 17:32:15 -0700 | [diff] [blame] | 779 | func (c *config) DefaultAppTargetSdk(ctx EarlyModuleContext) ApiLevel { |
Colin Cross | d09b0b6 | 2018-04-18 11:06:47 -0700 | [diff] [blame] | 780 | if Bool(c.productVariables.Platform_sdk_final) { |
| 781 | return c.PlatformSdkVersion() |
Colin Cross | d09b0b6 | 2018-04-18 11:06:47 -0700 | [diff] [blame] | 782 | } |
Jingwen Chen | c711fec | 2020-11-22 23:52:50 -0500 | [diff] [blame] | 783 | codename := c.PlatformSdkCodename() |
| 784 | if codename == "" { |
| 785 | return NoneApiLevel |
| 786 | } |
| 787 | if codename == "REL" { |
| 788 | panic("Platform_sdk_codename should not be REL when Platform_sdk_final is true") |
| 789 | } |
| 790 | return ApiLevelOrPanic(ctx, codename) |
Colin Cross | d09b0b6 | 2018-04-18 11:06:47 -0700 | [diff] [blame] | 791 | } |
| 792 | |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 793 | func (c *config) AppsDefaultVersionName() string { |
Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 794 | return String(c.productVariables.AppsDefaultVersionName) |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 795 | } |
| 796 | |
Dan Albert | 31384de | 2017-07-28 12:39:46 -0700 | [diff] [blame] | 797 | // Codenames that are active in the current lunch target. |
| 798 | func (c *config) PlatformVersionActiveCodenames() []string { |
Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 799 | return c.productVariables.Platform_version_active_codenames |
Dan Albert | 31384de | 2017-07-28 12:39:46 -0700 | [diff] [blame] | 800 | } |
| 801 | |
Colin Cross | face4e4 | 2017-10-30 17:32:15 -0700 | [diff] [blame] | 802 | func (c *config) ProductAAPTConfig() []string { |
Colin Cross | a74ca04 | 2019-01-31 14:31:51 -0800 | [diff] [blame] | 803 | return c.productVariables.AAPTConfig |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 804 | } |
| 805 | |
Colin Cross | face4e4 | 2017-10-30 17:32:15 -0700 | [diff] [blame] | 806 | func (c *config) ProductAAPTPreferredConfig() string { |
Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 807 | return String(c.productVariables.AAPTPreferredConfig) |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 808 | } |
| 809 | |
Colin Cross | face4e4 | 2017-10-30 17:32:15 -0700 | [diff] [blame] | 810 | func (c *config) ProductAAPTCharacteristics() string { |
Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 811 | return String(c.productVariables.AAPTCharacteristics) |
Colin Cross | face4e4 | 2017-10-30 17:32:15 -0700 | [diff] [blame] | 812 | } |
| 813 | |
| 814 | func (c *config) ProductAAPTPrebuiltDPI() []string { |
Colin Cross | a74ca04 | 2019-01-31 14:31:51 -0800 | [diff] [blame] | 815 | return c.productVariables.AAPTPrebuiltDPI |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 816 | } |
| 817 | |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 818 | func (c *config) DefaultAppCertificateDir(ctx PathContext) SourcePath { |
Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 819 | defaultCert := String(c.productVariables.DefaultAppCertificate) |
Colin Cross | 61ae0b7 | 2017-12-01 17:16:02 -0800 | [diff] [blame] | 820 | if defaultCert != "" { |
| 821 | return PathForSource(ctx, filepath.Dir(defaultCert)) |
Colin Cross | 61ae0b7 | 2017-12-01 17:16:02 -0800 | [diff] [blame] | 822 | } |
Jingwen Chen | c711fec | 2020-11-22 23:52:50 -0500 | [diff] [blame] | 823 | return PathForSource(ctx, "build/make/target/product/security") |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 824 | } |
| 825 | |
Colin Cross | e1731a5 | 2017-12-14 11:22:55 -0800 | [diff] [blame] | 826 | func (c *config) DefaultAppCertificate(ctx PathContext) (pem, key SourcePath) { |
Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 827 | defaultCert := String(c.productVariables.DefaultAppCertificate) |
Colin Cross | 61ae0b7 | 2017-12-01 17:16:02 -0800 | [diff] [blame] | 828 | if defaultCert != "" { |
Colin Cross | e1731a5 | 2017-12-14 11:22:55 -0800 | [diff] [blame] | 829 | return PathForSource(ctx, defaultCert+".x509.pem"), PathForSource(ctx, defaultCert+".pk8") |
Colin Cross | 61ae0b7 | 2017-12-01 17:16:02 -0800 | [diff] [blame] | 830 | } |
Jingwen Chen | c711fec | 2020-11-22 23:52:50 -0500 | [diff] [blame] | 831 | defaultDir := c.DefaultAppCertificateDir(ctx) |
| 832 | return defaultDir.Join(ctx, "testkey.x509.pem"), defaultDir.Join(ctx, "testkey.pk8") |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 833 | } |
Colin Cross | 6ff5138 | 2015-12-17 16:39:19 -0800 | [diff] [blame] | 834 | |
Jiyong Park | 9335a26 | 2018-12-24 11:31:58 +0900 | [diff] [blame] | 835 | func (c *config) ApexKeyDir(ctx ModuleContext) SourcePath { |
| 836 | // TODO(b/121224311): define another variable such as TARGET_APEX_KEY_OVERRIDE |
| 837 | defaultCert := String(c.productVariables.DefaultAppCertificate) |
Dan Willemsen | 412160e | 2019-04-09 21:36:26 -0700 | [diff] [blame] | 838 | if defaultCert == "" || filepath.Dir(defaultCert) == "build/make/target/product/security" { |
Jiyong Park | 9335a26 | 2018-12-24 11:31:58 +0900 | [diff] [blame] | 839 | // When defaultCert is unset or is set to the testkeys path, use the APEX keys |
| 840 | // that is under the module dir |
Colin Cross | 07e5161 | 2019-03-05 12:46:40 -0800 | [diff] [blame] | 841 | return pathForModuleSrc(ctx) |
Jiyong Park | 9335a26 | 2018-12-24 11:31:58 +0900 | [diff] [blame] | 842 | } |
Jingwen Chen | c711fec | 2020-11-22 23:52:50 -0500 | [diff] [blame] | 843 | // If not, APEX keys are under the specified directory |
| 844 | return PathForSource(ctx, filepath.Dir(defaultCert)) |
Jiyong Park | 9335a26 | 2018-12-24 11:31:58 +0900 | [diff] [blame] | 845 | } |
| 846 | |
Jingwen Chen | c711fec | 2020-11-22 23:52:50 -0500 | [diff] [blame] | 847 | // AllowMissingDependencies configures Blueprint/Soong to not fail when modules |
| 848 | // are configured to depend on non-existent modules. Note that this does not |
| 849 | // affect missing input dependencies at the Ninja level. |
Colin Cross | 6ff5138 | 2015-12-17 16:39:19 -0800 | [diff] [blame] | 850 | func (c *config) AllowMissingDependencies() bool { |
Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 851 | return Bool(c.productVariables.Allow_missing_dependencies) |
Colin Cross | 6ff5138 | 2015-12-17 16:39:19 -0800 | [diff] [blame] | 852 | } |
Dan Willemsen | 322acaf | 2016-01-12 23:07:05 -0800 | [diff] [blame] | 853 | |
Jeongik Cha | 816a23a | 2020-07-08 01:09:23 +0900 | [diff] [blame] | 854 | // Returns true if a full platform source tree cannot be assumed. |
Colin Cross | fc3674a | 2017-09-18 17:41:52 -0700 | [diff] [blame] | 855 | func (c *config) UnbundledBuild() bool { |
Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 856 | return Bool(c.productVariables.Unbundled_build) |
Colin Cross | fc3674a | 2017-09-18 17:41:52 -0700 | [diff] [blame] | 857 | } |
| 858 | |
Martin Stjernholm | fd9eb4b | 2020-06-17 01:13:15 +0100 | [diff] [blame] | 859 | // Returns true if building apps that aren't bundled with the platform. |
| 860 | // UnbundledBuild() is always true when this is true. |
| 861 | func (c *config) UnbundledBuildApps() bool { |
| 862 | return Bool(c.productVariables.Unbundled_build_apps) |
| 863 | } |
| 864 | |
Jeongik Cha | 4b073cd | 2021-06-08 11:35:00 +0900 | [diff] [blame] | 865 | // Returns true if building image that aren't bundled with the platform. |
| 866 | // UnbundledBuild() is always true when this is true. |
| 867 | func (c *config) UnbundledBuildImage() bool { |
| 868 | return Bool(c.productVariables.Unbundled_build_image) |
| 869 | } |
| 870 | |
Jeongik Cha | 816a23a | 2020-07-08 01:09:23 +0900 | [diff] [blame] | 871 | // Returns true if building modules against prebuilt SDKs. |
| 872 | func (c *config) AlwaysUsePrebuiltSdks() bool { |
| 873 | return Bool(c.productVariables.Always_use_prebuilt_sdks) |
Colin Cross | 1f367bf | 2018-12-18 22:46:24 -0800 | [diff] [blame] | 874 | } |
| 875 | |
Paul Duffin | 9a89a2a | 2020-10-28 19:20:06 +0000 | [diff] [blame] | 876 | // Returns true if the boot jars check should be skipped. |
| 877 | func (c *config) SkipBootJarsCheck() bool { |
| 878 | return Bool(c.productVariables.Skip_boot_jars_check) |
| 879 | } |
| 880 | |
Colin Cross | 126a25c | 2017-10-31 13:55:34 -0700 | [diff] [blame] | 881 | func (c *config) MinimizeJavaDebugInfo() bool { |
Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 882 | return Bool(c.productVariables.MinimizeJavaDebugInfo) && !Bool(c.productVariables.Eng) |
Colin Cross | 126a25c | 2017-10-31 13:55:34 -0700 | [diff] [blame] | 883 | } |
| 884 | |
Colin Cross | ed064c0 | 2018-09-05 16:28:13 -0700 | [diff] [blame] | 885 | func (c *config) Debuggable() bool { |
| 886 | return Bool(c.productVariables.Debuggable) |
| 887 | } |
| 888 | |
Jaewoong Jung | 1d6eb68 | 2018-11-29 15:08:44 -0800 | [diff] [blame] | 889 | func (c *config) Eng() bool { |
| 890 | return Bool(c.productVariables.Eng) |
| 891 | } |
| 892 | |
Jiyong Park | 8d52f86 | 2018-07-07 18:02:07 +0900 | [diff] [blame] | 893 | func (c *config) DevicePrimaryArchType() ArchType { |
Dan Willemsen | 0ef639b | 2018-10-10 17:02:29 -0700 | [diff] [blame] | 894 | return c.Targets[Android][0].Arch.ArchType |
Jiyong Park | 8d52f86 | 2018-07-07 18:02:07 +0900 | [diff] [blame] | 895 | } |
| 896 | |
Colin Cross | 16b2349 | 2016-01-06 14:41:07 -0800 | [diff] [blame] | 897 | func (c *config) SanitizeHost() []string { |
Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 898 | return append([]string(nil), c.productVariables.SanitizeHost...) |
Colin Cross | 16b2349 | 2016-01-06 14:41:07 -0800 | [diff] [blame] | 899 | } |
| 900 | |
| 901 | func (c *config) SanitizeDevice() []string { |
Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 902 | return append([]string(nil), c.productVariables.SanitizeDevice...) |
Colin Cross | 23ae82a | 2016-11-02 14:34:39 -0700 | [diff] [blame] | 903 | } |
| 904 | |
Ivan Lozano | 0c3a1ef | 2017-06-28 09:10:48 -0700 | [diff] [blame] | 905 | func (c *config) SanitizeDeviceDiag() []string { |
Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 906 | return append([]string(nil), c.productVariables.SanitizeDeviceDiag...) |
Ivan Lozano | 0c3a1ef | 2017-06-28 09:10:48 -0700 | [diff] [blame] | 907 | } |
| 908 | |
Colin Cross | 23ae82a | 2016-11-02 14:34:39 -0700 | [diff] [blame] | 909 | func (c *config) SanitizeDeviceArch() []string { |
Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 910 | return append([]string(nil), c.productVariables.SanitizeDeviceArch...) |
Colin Cross | 16b2349 | 2016-01-06 14:41:07 -0800 | [diff] [blame] | 911 | } |
Colin Cross | a1ad8d1 | 2016-06-01 17:09:44 -0700 | [diff] [blame] | 912 | |
Vishwath Mohan | 1b017a7 | 2017-01-19 13:54:55 -0800 | [diff] [blame] | 913 | func (c *config) EnableCFI() bool { |
Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 914 | if c.productVariables.EnableCFI == nil { |
Vishwath Mohan | c32c3eb | 2017-01-24 14:20:54 -0800 | [diff] [blame] | 915 | return true |
Vishwath Mohan | c32c3eb | 2017-01-24 14:20:54 -0800 | [diff] [blame] | 916 | } |
Jingwen Chen | c711fec | 2020-11-22 23:52:50 -0500 | [diff] [blame] | 917 | return *c.productVariables.EnableCFI |
Vishwath Mohan | 1b017a7 | 2017-01-19 13:54:55 -0800 | [diff] [blame] | 918 | } |
| 919 | |
Kostya Kortchinsky | d5275c8 | 2019-02-01 08:42:56 -0800 | [diff] [blame] | 920 | func (c *config) DisableScudo() bool { |
| 921 | return Bool(c.productVariables.DisableScudo) |
| 922 | } |
| 923 | |
Colin Cross | a1ad8d1 | 2016-06-01 17:09:44 -0700 | [diff] [blame] | 924 | func (c *config) Android64() bool { |
Dan Willemsen | 0ef639b | 2018-10-10 17:02:29 -0700 | [diff] [blame] | 925 | for _, t := range c.Targets[Android] { |
Colin Cross | a1ad8d1 | 2016-06-01 17:09:44 -0700 | [diff] [blame] | 926 | if t.Arch.ArchType.Multilib == "lib64" { |
| 927 | return true |
| 928 | } |
| 929 | } |
| 930 | |
| 931 | return false |
| 932 | } |
Colin Cross | 9272ade | 2016-08-17 15:24:12 -0700 | [diff] [blame] | 933 | |
Colin Cross | 9d45bb7 | 2016-08-29 16:14:13 -0700 | [diff] [blame] | 934 | func (c *config) UseGoma() bool { |
Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 935 | return Bool(c.productVariables.UseGoma) |
Colin Cross | 9d45bb7 | 2016-08-29 16:14:13 -0700 | [diff] [blame] | 936 | } |
| 937 | |
Ramy Medhat | bbf2567 | 2019-07-17 12:30:04 +0000 | [diff] [blame] | 938 | func (c *config) UseRBE() bool { |
| 939 | return Bool(c.productVariables.UseRBE) |
| 940 | } |
| 941 | |
Ramy Medhat | 8ea054a | 2020-01-27 14:19:44 -0500 | [diff] [blame] | 942 | func (c *config) UseRBEJAVAC() bool { |
| 943 | return Bool(c.productVariables.UseRBEJAVAC) |
| 944 | } |
| 945 | |
| 946 | func (c *config) UseRBER8() bool { |
| 947 | return Bool(c.productVariables.UseRBER8) |
| 948 | } |
| 949 | |
| 950 | func (c *config) UseRBED8() bool { |
| 951 | return Bool(c.productVariables.UseRBED8) |
| 952 | } |
| 953 | |
Colin Cross | 8b8bec3 | 2019-11-15 13:18:43 -0800 | [diff] [blame] | 954 | func (c *config) UseRemoteBuild() bool { |
| 955 | return c.UseGoma() || c.UseRBE() |
| 956 | } |
| 957 | |
Colin Cross | 6654810 | 2018-06-19 22:47:35 -0700 | [diff] [blame] | 958 | func (c *config) RunErrorProne() bool { |
| 959 | return c.IsEnvTrue("RUN_ERROR_PRONE") |
| 960 | } |
| 961 | |
Jingwen Chen | c711fec | 2020-11-22 23:52:50 -0500 | [diff] [blame] | 962 | // XrefCorpusName returns the Kythe cross-reference corpus name. |
Sasha Smundak | 2a4549e | 2018-11-05 16:49:08 -0800 | [diff] [blame] | 963 | func (c *config) XrefCorpusName() string { |
| 964 | return c.Getenv("XREF_CORPUS") |
| 965 | } |
| 966 | |
Jingwen Chen | c711fec | 2020-11-22 23:52:50 -0500 | [diff] [blame] | 967 | // XrefCuEncoding returns the compilation unit encoding to use for Kythe code |
| 968 | // xrefs. Can be 'json' (default), 'proto' or 'all'. |
Sasha Smundak | 6c2d4f9 | 2020-01-09 17:34:23 -0800 | [diff] [blame] | 969 | func (c *config) XrefCuEncoding() string { |
| 970 | if enc := c.Getenv("KYTHE_KZIP_ENCODING"); enc != "" { |
| 971 | return enc |
| 972 | } |
| 973 | return "json" |
| 974 | } |
| 975 | |
Sasha Smundak | b0addaf | 2021-02-16 10:39:40 -0800 | [diff] [blame] | 976 | // XrefCuJavaSourceMax returns the maximum number of the Java source files |
| 977 | // in a single compilation unit |
| 978 | const xrefJavaSourceFileMaxDefault = "1000" |
| 979 | |
| 980 | func (c Config) XrefCuJavaSourceMax() string { |
| 981 | v := c.Getenv("KYTHE_JAVA_SOURCE_BATCH_SIZE") |
| 982 | if v == "" { |
| 983 | return xrefJavaSourceFileMaxDefault |
| 984 | } |
| 985 | if _, err := strconv.ParseUint(v, 0, 0); err != nil { |
| 986 | fmt.Fprintf(os.Stderr, |
| 987 | "bad KYTHE_JAVA_SOURCE_BATCH_SIZE value: %s, will use %s", |
| 988 | err, xrefJavaSourceFileMaxDefault) |
| 989 | return xrefJavaSourceFileMaxDefault |
| 990 | } |
| 991 | return v |
| 992 | |
| 993 | } |
| 994 | |
Sasha Smundak | 2a4549e | 2018-11-05 16:49:08 -0800 | [diff] [blame] | 995 | func (c *config) EmitXrefRules() bool { |
| 996 | return c.XrefCorpusName() != "" |
| 997 | } |
| 998 | |
Dan Willemsen | a03cf6d | 2016-09-26 15:45:04 -0700 | [diff] [blame] | 999 | func (c *config) ClangTidy() bool { |
Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 1000 | return Bool(c.productVariables.ClangTidy) |
Dan Willemsen | a03cf6d | 2016-09-26 15:45:04 -0700 | [diff] [blame] | 1001 | } |
| 1002 | |
| 1003 | func (c *config) TidyChecks() string { |
Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 1004 | if c.productVariables.TidyChecks == nil { |
Dan Willemsen | a03cf6d | 2016-09-26 15:45:04 -0700 | [diff] [blame] | 1005 | return "" |
| 1006 | } |
Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 1007 | return *c.productVariables.TidyChecks |
Dan Willemsen | a03cf6d | 2016-09-26 15:45:04 -0700 | [diff] [blame] | 1008 | } |
| 1009 | |
Colin Cross | 0f4e0d6 | 2016-07-27 10:56:55 -0700 | [diff] [blame] | 1010 | func (c *config) LibartImgHostBaseAddress() string { |
| 1011 | return "0x60000000" |
| 1012 | } |
| 1013 | |
| 1014 | func (c *config) LibartImgDeviceBaseAddress() string { |
Elliott Hughes | da3a071 | 2020-03-06 16:55:28 -0800 | [diff] [blame] | 1015 | return "0x70000000" |
Colin Cross | 0f4e0d6 | 2016-07-27 10:56:55 -0700 | [diff] [blame] | 1016 | } |
| 1017 | |
Hiroshi Yamauchi | e2a1063 | 2016-12-19 13:44:41 -0800 | [diff] [blame] | 1018 | func (c *config) ArtUseReadBarrier() bool { |
Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 1019 | return Bool(c.productVariables.ArtUseReadBarrier) |
Hiroshi Yamauchi | e2a1063 | 2016-12-19 13:44:41 -0800 | [diff] [blame] | 1020 | } |
| 1021 | |
Jingwen Chen | c711fec | 2020-11-22 23:52:50 -0500 | [diff] [blame] | 1022 | // Enforce Runtime Resource Overlays for a module. RROs supersede static RROs, |
| 1023 | // but some modules still depend on it. |
| 1024 | // |
| 1025 | // More info: https://source.android.com/devices/architecture/rros |
Dan Willemsen | 3fb1fae | 2018-03-12 15:30:26 -0700 | [diff] [blame] | 1026 | func (c *config) EnforceRROForModule(name string) bool { |
Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 1027 | enforceList := c.productVariables.EnforceRROTargets |
Jeongik Cha | cee5ba9 | 2021-02-19 12:11:51 +0900 | [diff] [blame] | 1028 | |
Roland Levillain | f6cc261 | 2020-07-09 16:58:14 +0100 | [diff] [blame] | 1029 | if len(enforceList) > 0 { |
Yo Chiang | 4ebd06a | 2019-10-01 13:13:41 +0800 | [diff] [blame] | 1030 | if InList("*", enforceList) { |
Dan Willemsen | 3fb1fae | 2018-03-12 15:30:26 -0700 | [diff] [blame] | 1031 | return true |
| 1032 | } |
Colin Cross | a74ca04 | 2019-01-31 14:31:51 -0800 | [diff] [blame] | 1033 | return InList(name, enforceList) |
Dan Willemsen | 3fb1fae | 2018-03-12 15:30:26 -0700 | [diff] [blame] | 1034 | } |
| 1035 | return false |
| 1036 | } |
Dan Willemsen | 3fb1fae | 2018-03-12 15:30:26 -0700 | [diff] [blame] | 1037 | func (c *config) EnforceRROExcludedOverlay(path string) bool { |
Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 1038 | excluded := c.productVariables.EnforceRROExcludedOverlays |
Roland Levillain | f6cc261 | 2020-07-09 16:58:14 +0100 | [diff] [blame] | 1039 | if len(excluded) > 0 { |
Jaewoong Jung | 3aff578 | 2020-02-11 07:54:35 -0800 | [diff] [blame] | 1040 | return HasAnyPrefix(path, excluded) |
Dan Willemsen | 3fb1fae | 2018-03-12 15:30:26 -0700 | [diff] [blame] | 1041 | } |
| 1042 | return false |
| 1043 | } |
| 1044 | |
| 1045 | func (c *config) ExportedNamespaces() []string { |
Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 1046 | return append([]string(nil), c.productVariables.NamespacesToExport...) |
Dan Willemsen | 3fb1fae | 2018-03-12 15:30:26 -0700 | [diff] [blame] | 1047 | } |
| 1048 | |
| 1049 | func (c *config) HostStaticBinaries() bool { |
Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 1050 | return Bool(c.productVariables.HostStaticBinaries) |
Dan Willemsen | 3fb1fae | 2018-03-12 15:30:26 -0700 | [diff] [blame] | 1051 | } |
| 1052 | |
Colin Cross | 5a0dcd5 | 2018-10-05 14:20:06 -0700 | [diff] [blame] | 1053 | func (c *config) UncompressPrivAppDex() bool { |
| 1054 | return Bool(c.productVariables.UncompressPrivAppDex) |
| 1055 | } |
| 1056 | |
| 1057 | func (c *config) ModulesLoadedByPrivilegedModules() []string { |
| 1058 | return c.productVariables.ModulesLoadedByPrivilegedModules |
| 1059 | } |
| 1060 | |
Jingwen Chen | c711fec | 2020-11-22 23:52:50 -0500 | [diff] [blame] | 1061 | // DexpreoptGlobalConfigPath returns the path to the dexpreopt.config file in |
| 1062 | // the output directory, if it was created during the product configuration |
| 1063 | // phase by Kati. |
Jingwen Chen | ebb0b57 | 2020-11-02 00:24:57 -0500 | [diff] [blame] | 1064 | func (c *config) DexpreoptGlobalConfigPath(ctx PathContext) OptionalPath { |
Colin Cross | 988414c | 2020-01-11 01:11:46 +0000 | [diff] [blame] | 1065 | if c.productVariables.DexpreoptGlobalConfig == nil { |
Jingwen Chen | ebb0b57 | 2020-11-02 00:24:57 -0500 | [diff] [blame] | 1066 | return OptionalPathForPath(nil) |
| 1067 | } |
| 1068 | return OptionalPathForPath( |
| 1069 | pathForBuildToolDep(ctx, *c.productVariables.DexpreoptGlobalConfig)) |
| 1070 | } |
| 1071 | |
Jingwen Chen | c711fec | 2020-11-22 23:52:50 -0500 | [diff] [blame] | 1072 | // DexpreoptGlobalConfig returns the raw byte contents of the dexpreopt global |
| 1073 | // configuration. Since the configuration file was created by Kati during |
| 1074 | // product configuration (externally of soong_build), it's not tracked, so we |
| 1075 | // also manually add a Ninja file dependency on the configuration file to the |
| 1076 | // rule that creates the main build.ninja file. This ensures that build.ninja is |
| 1077 | // regenerated correctly if dexpreopt.config changes. |
Jingwen Chen | ebb0b57 | 2020-11-02 00:24:57 -0500 | [diff] [blame] | 1078 | func (c *config) DexpreoptGlobalConfig(ctx PathContext) ([]byte, error) { |
| 1079 | path := c.DexpreoptGlobalConfigPath(ctx) |
| 1080 | if !path.Valid() { |
Colin Cross | 988414c | 2020-01-11 01:11:46 +0000 | [diff] [blame] | 1081 | return nil, nil |
| 1082 | } |
Jingwen Chen | ebb0b57 | 2020-11-02 00:24:57 -0500 | [diff] [blame] | 1083 | ctx.AddNinjaFileDeps(path.String()) |
| 1084 | return ioutil.ReadFile(absolutePath(path.String())) |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 1085 | } |
| 1086 | |
Inseob Kim | 7b85eeb | 2021-03-23 20:52:24 +0900 | [diff] [blame] | 1087 | func (c *deviceConfig) WithDexpreopt() bool { |
| 1088 | return c.config.productVariables.WithDexpreopt |
| 1089 | } |
| 1090 | |
David Brazdil | 91b4e3e | 2019-01-23 21:04:05 +0000 | [diff] [blame] | 1091 | func (c *config) FrameworksBaseDirExists(ctx PathContext) bool { |
Colin Cross | 5a756a6 | 2021-03-16 16:34:46 -0700 | [diff] [blame] | 1092 | return ExistentPathForSource(ctx, "frameworks", "base", "Android.bp").Valid() |
David Brazdil | 91b4e3e | 2019-01-23 21:04:05 +0000 | [diff] [blame] | 1093 | } |
| 1094 | |
Inseob Kim | ae55303 | 2019-05-14 18:52:49 +0900 | [diff] [blame] | 1095 | func (c *config) VndkSnapshotBuildArtifacts() bool { |
| 1096 | return Bool(c.productVariables.VndkSnapshotBuildArtifacts) |
| 1097 | } |
| 1098 | |
Colin Cross | 3b19f5d | 2019-09-17 14:45:31 -0700 | [diff] [blame] | 1099 | func (c *config) HasMultilibConflict(arch ArchType) bool { |
| 1100 | return c.multilibConflicts[arch] |
| 1101 | } |
| 1102 | |
Bill Peckham | bae4749 | 2021-01-08 09:34:44 -0800 | [diff] [blame] | 1103 | func (c *config) PrebuiltHiddenApiDir(ctx PathContext) string { |
| 1104 | return String(c.productVariables.PrebuiltHiddenApiDir) |
| 1105 | } |
| 1106 | |
Colin Cross | 9272ade | 2016-08-17 15:24:12 -0700 | [diff] [blame] | 1107 | func (c *deviceConfig) Arches() []Arch { |
| 1108 | var arches []Arch |
Dan Willemsen | 0ef639b | 2018-10-10 17:02:29 -0700 | [diff] [blame] | 1109 | for _, target := range c.config.Targets[Android] { |
Colin Cross | 9272ade | 2016-08-17 15:24:12 -0700 | [diff] [blame] | 1110 | arches = append(arches, target.Arch) |
| 1111 | } |
| 1112 | return arches |
| 1113 | } |
Dan Willemsen | d2ede87 | 2016-11-18 14:54:24 -0800 | [diff] [blame] | 1114 | |
Jayant Chowdhary | 34ce67d | 2018-03-08 11:00:50 -0800 | [diff] [blame] | 1115 | func (c *deviceConfig) BinderBitness() string { |
Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 1116 | is32BitBinder := c.config.productVariables.Binder32bit |
Jayant Chowdhary | 34ce67d | 2018-03-08 11:00:50 -0800 | [diff] [blame] | 1117 | if is32BitBinder != nil && *is32BitBinder { |
| 1118 | return "32" |
| 1119 | } |
| 1120 | return "64" |
| 1121 | } |
| 1122 | |
Dan Willemsen | 4353bc4 | 2016-12-05 17:16:02 -0800 | [diff] [blame] | 1123 | func (c *deviceConfig) VendorPath() string { |
Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 1124 | if c.config.productVariables.VendorPath != nil { |
| 1125 | return *c.config.productVariables.VendorPath |
Dan Willemsen | 4353bc4 | 2016-12-05 17:16:02 -0800 | [diff] [blame] | 1126 | } |
| 1127 | return "vendor" |
| 1128 | } |
| 1129 | |
Justin Yun | 7154928 | 2017-11-17 12:10:28 +0900 | [diff] [blame] | 1130 | func (c *deviceConfig) VndkVersion() string { |
Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 1131 | return String(c.config.productVariables.DeviceVndkVersion) |
Justin Yun | 7154928 | 2017-11-17 12:10:28 +0900 | [diff] [blame] | 1132 | } |
| 1133 | |
Jose Galmes | 6f843bc | 2020-12-11 13:36:29 -0800 | [diff] [blame] | 1134 | func (c *deviceConfig) RecoverySnapshotVersion() string { |
| 1135 | return String(c.config.productVariables.RecoverySnapshotVersion) |
| 1136 | } |
| 1137 | |
Jeongik Cha | 219141c | 2020-08-06 23:00:37 +0900 | [diff] [blame] | 1138 | func (c *deviceConfig) CurrentApiLevelForVendorModules() string { |
| 1139 | return StringDefault(c.config.productVariables.DeviceCurrentApiLevelForVendorModules, "current") |
| 1140 | } |
| 1141 | |
Justin Yun | 8fe1212 | 2017-12-07 17:18:15 +0900 | [diff] [blame] | 1142 | func (c *deviceConfig) PlatformVndkVersion() string { |
Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 1143 | return String(c.config.productVariables.Platform_vndk_version) |
Justin Yun | 8fe1212 | 2017-12-07 17:18:15 +0900 | [diff] [blame] | 1144 | } |
| 1145 | |
Justin Yun | 5f7f7e8 | 2019-11-18 19:52:14 +0900 | [diff] [blame] | 1146 | func (c *deviceConfig) ProductVndkVersion() string { |
| 1147 | return String(c.config.productVariables.ProductVndkVersion) |
| 1148 | } |
| 1149 | |
Justin Yun | 7154928 | 2017-11-17 12:10:28 +0900 | [diff] [blame] | 1150 | func (c *deviceConfig) ExtraVndkVersions() []string { |
Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 1151 | return c.config.productVariables.ExtraVndkVersions |
Dan Willemsen | d2ede87 | 2016-11-18 14:54:24 -0800 | [diff] [blame] | 1152 | } |
Jack He | 8cc7143 | 2016-12-08 15:45:07 -0800 | [diff] [blame] | 1153 | |
Vic Yang | efd249e | 2018-11-12 20:19:56 -0800 | [diff] [blame] | 1154 | func (c *deviceConfig) VndkUseCoreVariant() bool { |
| 1155 | return Bool(c.config.productVariables.VndkUseCoreVariant) |
| 1156 | } |
| 1157 | |
Jiyong Park | 1a5d7b1 | 2018-01-15 15:05:10 +0900 | [diff] [blame] | 1158 | func (c *deviceConfig) SystemSdkVersions() []string { |
Colin Cross | a74ca04 | 2019-01-31 14:31:51 -0800 | [diff] [blame] | 1159 | return c.config.productVariables.DeviceSystemSdkVersions |
Jiyong Park | 1a5d7b1 | 2018-01-15 15:05:10 +0900 | [diff] [blame] | 1160 | } |
| 1161 | |
| 1162 | func (c *deviceConfig) PlatformSystemSdkVersions() []string { |
Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 1163 | return c.config.productVariables.Platform_systemsdk_versions |
Jiyong Park | 1a5d7b1 | 2018-01-15 15:05:10 +0900 | [diff] [blame] | 1164 | } |
| 1165 | |
Jiyong Park | 2db7692 | 2017-11-08 16:03:48 +0900 | [diff] [blame] | 1166 | func (c *deviceConfig) OdmPath() string { |
Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 1167 | if c.config.productVariables.OdmPath != nil { |
| 1168 | return *c.config.productVariables.OdmPath |
Jiyong Park | 2db7692 | 2017-11-08 16:03:48 +0900 | [diff] [blame] | 1169 | } |
| 1170 | return "odm" |
| 1171 | } |
| 1172 | |
Jaekyun Seok | 5cfbfbb | 2018-01-10 19:00:15 +0900 | [diff] [blame] | 1173 | func (c *deviceConfig) ProductPath() string { |
Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 1174 | if c.config.productVariables.ProductPath != nil { |
| 1175 | return *c.config.productVariables.ProductPath |
Jiyong Park | 2db7692 | 2017-11-08 16:03:48 +0900 | [diff] [blame] | 1176 | } |
Jaekyun Seok | 5cfbfbb | 2018-01-10 19:00:15 +0900 | [diff] [blame] | 1177 | return "product" |
Jiyong Park | 2db7692 | 2017-11-08 16:03:48 +0900 | [diff] [blame] | 1178 | } |
| 1179 | |
Justin Yun | d5f6c82 | 2019-06-25 16:47:17 +0900 | [diff] [blame] | 1180 | func (c *deviceConfig) SystemExtPath() string { |
| 1181 | if c.config.productVariables.SystemExtPath != nil { |
| 1182 | return *c.config.productVariables.SystemExtPath |
Dario Freni | fd05a74 | 2018-05-29 13:28:54 +0100 | [diff] [blame] | 1183 | } |
Justin Yun | d5f6c82 | 2019-06-25 16:47:17 +0900 | [diff] [blame] | 1184 | return "system_ext" |
Dario Freni | fd05a74 | 2018-05-29 13:28:54 +0100 | [diff] [blame] | 1185 | } |
| 1186 | |
Jack He | 8cc7143 | 2016-12-08 15:45:07 -0800 | [diff] [blame] | 1187 | func (c *deviceConfig) BtConfigIncludeDir() string { |
Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 1188 | return String(c.config.productVariables.BtConfigIncludeDir) |
Jack He | 8cc7143 | 2016-12-08 15:45:07 -0800 | [diff] [blame] | 1189 | } |
Dan Willemsen | 581341d | 2017-02-09 16:16:31 -0800 | [diff] [blame] | 1190 | |
Jiyong Park | d773eb3 | 2017-07-03 13:18:12 +0900 | [diff] [blame] | 1191 | func (c *deviceConfig) DeviceKernelHeaderDirs() []string { |
Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 1192 | return c.config.productVariables.DeviceKernelHeaders |
Jiyong Park | d773eb3 | 2017-07-03 13:18:12 +0900 | [diff] [blame] | 1193 | } |
| 1194 | |
Yi Kong | ceb5b76 | 2020-03-20 15:22:27 +0800 | [diff] [blame] | 1195 | func (c *deviceConfig) SamplingPGO() bool { |
| 1196 | return Bool(c.config.productVariables.SamplingPGO) |
| 1197 | } |
| 1198 | |
Roland Levillain | ada1270 | 2020-06-09 13:07:36 +0100 | [diff] [blame] | 1199 | // JavaCoverageEnabledForPath returns whether Java code coverage is enabled for |
| 1200 | // path. Coverage is enabled by default when the product variable |
| 1201 | // JavaCoveragePaths is empty. If JavaCoveragePaths is not empty, coverage is |
| 1202 | // enabled for any path which is part of this variable (and not part of the |
| 1203 | // JavaCoverageExcludePaths product variable). Value "*" in JavaCoveragePaths |
| 1204 | // represents any path. |
| 1205 | func (c *deviceConfig) JavaCoverageEnabledForPath(path string) bool { |
| 1206 | coverage := false |
Chris Gross | 2f74869 | 2020-06-24 20:36:59 +0000 | [diff] [blame] | 1207 | if len(c.config.productVariables.JavaCoveragePaths) == 0 || |
Roland Levillain | ada1270 | 2020-06-09 13:07:36 +0100 | [diff] [blame] | 1208 | InList("*", c.config.productVariables.JavaCoveragePaths) || |
| 1209 | HasAnyPrefix(path, c.config.productVariables.JavaCoveragePaths) { |
| 1210 | coverage = true |
| 1211 | } |
Roland Levillain | f6cc261 | 2020-07-09 16:58:14 +0100 | [diff] [blame] | 1212 | if coverage && len(c.config.productVariables.JavaCoverageExcludePaths) > 0 { |
Roland Levillain | ada1270 | 2020-06-09 13:07:36 +0100 | [diff] [blame] | 1213 | if HasAnyPrefix(path, c.config.productVariables.JavaCoverageExcludePaths) { |
| 1214 | coverage = false |
| 1215 | } |
| 1216 | } |
| 1217 | return coverage |
| 1218 | } |
| 1219 | |
Colin Cross | 1a6acd4 | 2020-06-16 17:51:46 -0700 | [diff] [blame] | 1220 | // Returns true if gcov or clang coverage is enabled. |
Dan Willemsen | 581341d | 2017-02-09 16:16:31 -0800 | [diff] [blame] | 1221 | func (c *deviceConfig) NativeCoverageEnabled() bool { |
Colin Cross | 1a6acd4 | 2020-06-16 17:51:46 -0700 | [diff] [blame] | 1222 | return Bool(c.config.productVariables.GcovCoverage) || |
| 1223 | Bool(c.config.productVariables.ClangCoverage) |
Dan Willemsen | 581341d | 2017-02-09 16:16:31 -0800 | [diff] [blame] | 1224 | } |
| 1225 | |
Oliver Nguyen | 1382ab6 | 2019-12-06 15:22:41 -0800 | [diff] [blame] | 1226 | func (c *deviceConfig) ClangCoverageEnabled() bool { |
| 1227 | return Bool(c.config.productVariables.ClangCoverage) |
| 1228 | } |
| 1229 | |
Colin Cross | 1a6acd4 | 2020-06-16 17:51:46 -0700 | [diff] [blame] | 1230 | func (c *deviceConfig) GcovCoverageEnabled() bool { |
| 1231 | return Bool(c.config.productVariables.GcovCoverage) |
| 1232 | } |
| 1233 | |
Roland Levillain | 4f5297b | 2020-06-09 12:44:06 +0100 | [diff] [blame] | 1234 | // NativeCoverageEnabledForPath returns whether (GCOV- or Clang-based) native |
| 1235 | // code coverage is enabled for path. By default, coverage is not enabled for a |
| 1236 | // given path unless it is part of the NativeCoveragePaths product variable (and |
| 1237 | // not part of the NativeCoverageExcludePaths product variable). Value "*" in |
| 1238 | // NativeCoveragePaths represents any path. |
| 1239 | func (c *deviceConfig) NativeCoverageEnabledForPath(path string) bool { |
Ryan Campbell | 469a18a | 2017-02-27 09:01:54 -0800 | [diff] [blame] | 1240 | coverage := false |
Roland Levillain | f6cc261 | 2020-07-09 16:58:14 +0100 | [diff] [blame] | 1241 | if len(c.config.productVariables.NativeCoveragePaths) > 0 { |
Roland Levillain | 4f5297b | 2020-06-09 12:44:06 +0100 | [diff] [blame] | 1242 | if InList("*", c.config.productVariables.NativeCoveragePaths) || HasAnyPrefix(path, c.config.productVariables.NativeCoveragePaths) { |
Ivan Lozano | 5f59553 | 2017-07-13 14:46:05 -0700 | [diff] [blame] | 1243 | coverage = true |
Dan Willemsen | 581341d | 2017-02-09 16:16:31 -0800 | [diff] [blame] | 1244 | } |
| 1245 | } |
Roland Levillain | f6cc261 | 2020-07-09 16:58:14 +0100 | [diff] [blame] | 1246 | if coverage && len(c.config.productVariables.NativeCoverageExcludePaths) > 0 { |
Roland Levillain | 4f5297b | 2020-06-09 12:44:06 +0100 | [diff] [blame] | 1247 | if HasAnyPrefix(path, c.config.productVariables.NativeCoverageExcludePaths) { |
Ivan Lozano | 5f59553 | 2017-07-13 14:46:05 -0700 | [diff] [blame] | 1248 | coverage = false |
Ryan Campbell | 469a18a | 2017-02-27 09:01:54 -0800 | [diff] [blame] | 1249 | } |
| 1250 | } |
| 1251 | return coverage |
Dan Willemsen | 581341d | 2017-02-09 16:16:31 -0800 | [diff] [blame] | 1252 | } |
Ivan Lozano | 5f59553 | 2017-07-13 14:46:05 -0700 | [diff] [blame] | 1253 | |
Pirama Arumuga Nainar | 4954080 | 2018-01-29 23:11:42 -0800 | [diff] [blame] | 1254 | func (c *deviceConfig) PgoAdditionalProfileDirs() []string { |
Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 1255 | return c.config.productVariables.PgoAdditionalProfileDirs |
Pirama Arumuga Nainar | 4954080 | 2018-01-29 23:11:42 -0800 | [diff] [blame] | 1256 | } |
| 1257 | |
Tri Vo | 35a5143 | 2018-03-25 20:00:00 -0700 | [diff] [blame] | 1258 | func (c *deviceConfig) VendorSepolicyDirs() []string { |
| 1259 | return c.config.productVariables.BoardVendorSepolicyDirs |
| 1260 | } |
| 1261 | |
| 1262 | func (c *deviceConfig) OdmSepolicyDirs() []string { |
| 1263 | return c.config.productVariables.BoardOdmSepolicyDirs |
| 1264 | } |
| 1265 | |
Felix | a20a875 | 2020-05-17 18:28:35 +0200 | [diff] [blame] | 1266 | func (c *deviceConfig) SystemExtPublicSepolicyDirs() []string { |
| 1267 | return c.config.productVariables.SystemExtPublicSepolicyDirs |
Tri Vo | 35a5143 | 2018-03-25 20:00:00 -0700 | [diff] [blame] | 1268 | } |
| 1269 | |
Felix | a20a875 | 2020-05-17 18:28:35 +0200 | [diff] [blame] | 1270 | func (c *deviceConfig) SystemExtPrivateSepolicyDirs() []string { |
| 1271 | return c.config.productVariables.SystemExtPrivateSepolicyDirs |
Tri Vo | 35a5143 | 2018-03-25 20:00:00 -0700 | [diff] [blame] | 1272 | } |
| 1273 | |
Inseob Kim | 0866b00 | 2019-04-15 20:21:29 +0900 | [diff] [blame] | 1274 | func (c *deviceConfig) SepolicyM4Defs() []string { |
| 1275 | return c.config.productVariables.BoardSepolicyM4Defs |
| 1276 | } |
| 1277 | |
Jiyong Park | 7f67f48 | 2019-01-05 12:57:48 +0900 | [diff] [blame] | 1278 | func (c *deviceConfig) OverrideManifestPackageNameFor(name string) (manifestName string, overridden bool) { |
Jaewoong Jung | 2ad817c | 2019-01-18 14:27:16 -0800 | [diff] [blame] | 1279 | return findOverrideValue(c.config.productVariables.ManifestPackageNameOverrides, name, |
| 1280 | "invalid override rule %q in PRODUCT_MANIFEST_PACKAGE_NAME_OVERRIDES should be <module_name>:<manifest_name>") |
| 1281 | } |
| 1282 | |
| 1283 | func (c *deviceConfig) OverrideCertificateFor(name string) (certificatePath string, overridden bool) { |
Jaewoong Jung | acb6db3 | 2019-02-28 16:22:30 +0000 | [diff] [blame] | 1284 | return findOverrideValue(c.config.productVariables.CertificateOverrides, name, |
Jaewoong Jung | 2ad817c | 2019-01-18 14:27:16 -0800 | [diff] [blame] | 1285 | "invalid override rule %q in PRODUCT_CERTIFICATE_OVERRIDES should be <module_name>:<certificate_module_name>") |
| 1286 | } |
| 1287 | |
Jaewoong Jung | 9d22a91 | 2019-01-23 16:27:47 -0800 | [diff] [blame] | 1288 | func (c *deviceConfig) OverridePackageNameFor(name string) string { |
| 1289 | newName, overridden := findOverrideValue( |
| 1290 | c.config.productVariables.PackageNameOverrides, |
| 1291 | name, |
| 1292 | "invalid override rule %q in PRODUCT_PACKAGE_NAME_OVERRIDES should be <module_name>:<package_name>") |
| 1293 | if overridden { |
| 1294 | return newName |
| 1295 | } |
| 1296 | return name |
| 1297 | } |
| 1298 | |
Jaewoong Jung | 2ad817c | 2019-01-18 14:27:16 -0800 | [diff] [blame] | 1299 | func findOverrideValue(overrides []string, name string, errorMsg string) (newValue string, overridden bool) { |
Jiyong Park | 7f67f48 | 2019-01-05 12:57:48 +0900 | [diff] [blame] | 1300 | if overrides == nil || len(overrides) == 0 { |
| 1301 | return "", false |
| 1302 | } |
| 1303 | for _, o := range overrides { |
| 1304 | split := strings.Split(o, ":") |
| 1305 | if len(split) != 2 { |
| 1306 | // This shouldn't happen as this is first checked in make, but just in case. |
Jaewoong Jung | 2ad817c | 2019-01-18 14:27:16 -0800 | [diff] [blame] | 1307 | panic(fmt.Errorf(errorMsg, o)) |
Jiyong Park | 7f67f48 | 2019-01-05 12:57:48 +0900 | [diff] [blame] | 1308 | } |
| 1309 | if matchPattern(split[0], name) { |
| 1310 | return substPattern(split[0], split[1], name), true |
| 1311 | } |
| 1312 | } |
| 1313 | return "", false |
| 1314 | } |
| 1315 | |
Ivan Lozano | 5f59553 | 2017-07-13 14:46:05 -0700 | [diff] [blame] | 1316 | func (c *config) IntegerOverflowDisabledForPath(path string) bool { |
Roland Levillain | f6cc261 | 2020-07-09 16:58:14 +0100 | [diff] [blame] | 1317 | if len(c.productVariables.IntegerOverflowExcludePaths) == 0 { |
Ivan Lozano | 5f59553 | 2017-07-13 14:46:05 -0700 | [diff] [blame] | 1318 | return false |
| 1319 | } |
Jaewoong Jung | 3aff578 | 2020-02-11 07:54:35 -0800 | [diff] [blame] | 1320 | return HasAnyPrefix(path, c.productVariables.IntegerOverflowExcludePaths) |
Ivan Lozano | 5f59553 | 2017-07-13 14:46:05 -0700 | [diff] [blame] | 1321 | } |
Vishwath Mohan | 1fa3ac5 | 2017-10-31 02:26:14 -0700 | [diff] [blame] | 1322 | |
| 1323 | func (c *config) CFIDisabledForPath(path string) bool { |
Roland Levillain | f6cc261 | 2020-07-09 16:58:14 +0100 | [diff] [blame] | 1324 | if len(c.productVariables.CFIExcludePaths) == 0 { |
Vishwath Mohan | 1fa3ac5 | 2017-10-31 02:26:14 -0700 | [diff] [blame] | 1325 | return false |
| 1326 | } |
Jaewoong Jung | 3aff578 | 2020-02-11 07:54:35 -0800 | [diff] [blame] | 1327 | return HasAnyPrefix(path, c.productVariables.CFIExcludePaths) |
Vishwath Mohan | 1fa3ac5 | 2017-10-31 02:26:14 -0700 | [diff] [blame] | 1328 | } |
| 1329 | |
| 1330 | func (c *config) CFIEnabledForPath(path string) bool { |
Roland Levillain | f6cc261 | 2020-07-09 16:58:14 +0100 | [diff] [blame] | 1331 | if len(c.productVariables.CFIIncludePaths) == 0 { |
Vishwath Mohan | 1fa3ac5 | 2017-10-31 02:26:14 -0700 | [diff] [blame] | 1332 | return false |
| 1333 | } |
Evgenii Stepanov | 779b64e | 2021-04-09 14:33:10 -0700 | [diff] [blame] | 1334 | return HasAnyPrefix(path, c.productVariables.CFIIncludePaths) && !c.CFIDisabledForPath(path) |
Vishwath Mohan | 1fa3ac5 | 2017-10-31 02:26:14 -0700 | [diff] [blame] | 1335 | } |
Colin Cross | e15ddaf | 2017-12-04 11:24:31 -0800 | [diff] [blame] | 1336 | |
Evgenii Stepanov | 4beaa0c | 2021-01-05 16:41:26 -0800 | [diff] [blame] | 1337 | func (c *config) MemtagHeapDisabledForPath(path string) bool { |
| 1338 | if len(c.productVariables.MemtagHeapExcludePaths) == 0 { |
| 1339 | return false |
| 1340 | } |
| 1341 | return HasAnyPrefix(path, c.productVariables.MemtagHeapExcludePaths) |
| 1342 | } |
| 1343 | |
| 1344 | func (c *config) MemtagHeapAsyncEnabledForPath(path string) bool { |
| 1345 | if len(c.productVariables.MemtagHeapAsyncIncludePaths) == 0 { |
| 1346 | return false |
| 1347 | } |
Evgenii Stepanov | 779b64e | 2021-04-09 14:33:10 -0700 | [diff] [blame] | 1348 | return HasAnyPrefix(path, c.productVariables.MemtagHeapAsyncIncludePaths) && !c.MemtagHeapDisabledForPath(path) |
Evgenii Stepanov | 4beaa0c | 2021-01-05 16:41:26 -0800 | [diff] [blame] | 1349 | } |
| 1350 | |
| 1351 | func (c *config) MemtagHeapSyncEnabledForPath(path string) bool { |
| 1352 | if len(c.productVariables.MemtagHeapSyncIncludePaths) == 0 { |
| 1353 | return false |
| 1354 | } |
Evgenii Stepanov | 779b64e | 2021-04-09 14:33:10 -0700 | [diff] [blame] | 1355 | return HasAnyPrefix(path, c.productVariables.MemtagHeapSyncIncludePaths) && !c.MemtagHeapDisabledForPath(path) |
Evgenii Stepanov | 4beaa0c | 2021-01-05 16:41:26 -0800 | [diff] [blame] | 1356 | } |
| 1357 | |
Dan Willemsen | 0fe7866 | 2018-03-26 12:41:18 -0700 | [diff] [blame] | 1358 | func (c *config) VendorConfig(name string) VendorConfig { |
Colin Cross | 9d34f35 | 2019-11-22 16:03:51 -0800 | [diff] [blame] | 1359 | return soongconfig.Config(c.productVariables.VendorVars[name]) |
Dan Willemsen | 0fe7866 | 2018-03-26 12:41:18 -0700 | [diff] [blame] | 1360 | } |
| 1361 | |
Colin Cross | 395f2cf | 2018-10-24 16:10:32 -0700 | [diff] [blame] | 1362 | func (c *config) NdkAbis() bool { |
| 1363 | return Bool(c.productVariables.Ndk_abis) |
| 1364 | } |
| 1365 | |
Martin Stjernholm | c1ecc43 | 2019-11-15 15:00:31 +0000 | [diff] [blame] | 1366 | func (c *config) AmlAbis() bool { |
| 1367 | return Bool(c.productVariables.Aml_abis) |
| 1368 | } |
| 1369 | |
Jiyong Park | 8fd6192 | 2018-11-08 02:50:25 +0900 | [diff] [blame] | 1370 | func (c *config) FlattenApex() bool { |
Roland Levillain | a386321 | 2019-08-12 19:56:16 +0100 | [diff] [blame] | 1371 | return Bool(c.productVariables.Flatten_apex) |
Jiyong Park | 8fd6192 | 2018-11-08 02:50:25 +0900 | [diff] [blame] | 1372 | } |
| 1373 | |
Jiyong Park | 4da0797 | 2021-01-05 21:01:11 +0900 | [diff] [blame] | 1374 | func (c *config) ForceApexSymlinkOptimization() bool { |
| 1375 | return Bool(c.productVariables.ForceApexSymlinkOptimization) |
| 1376 | } |
| 1377 | |
Mohammad Samiul Islam | 3cd005d | 2020-11-26 13:32:26 +0000 | [diff] [blame] | 1378 | func (c *config) CompressedApex() bool { |
| 1379 | return Bool(c.productVariables.CompressedApex) |
| 1380 | } |
| 1381 | |
Jeongik Cha | c946414 | 2019-01-07 12:07:27 +0900 | [diff] [blame] | 1382 | func (c *config) EnforceSystemCertificate() bool { |
| 1383 | return Bool(c.productVariables.EnforceSystemCertificate) |
| 1384 | } |
| 1385 | |
Colin Cross | 440e0d0 | 2020-06-11 11:32:11 -0700 | [diff] [blame] | 1386 | func (c *config) EnforceSystemCertificateAllowList() []string { |
| 1387 | return c.productVariables.EnforceSystemCertificateAllowList |
Jeongik Cha | c946414 | 2019-01-07 12:07:27 +0900 | [diff] [blame] | 1388 | } |
| 1389 | |
Jeongik Cha | 2cc570d | 2019-10-29 15:44:45 +0900 | [diff] [blame] | 1390 | func (c *config) EnforceProductPartitionInterface() bool { |
| 1391 | return Bool(c.productVariables.EnforceProductPartitionInterface) |
| 1392 | } |
| 1393 | |
JaeMan Park | ff71556 | 2020-10-19 17:25:58 +0900 | [diff] [blame] | 1394 | func (c *config) EnforceInterPartitionJavaSdkLibrary() bool { |
| 1395 | return Bool(c.productVariables.EnforceInterPartitionJavaSdkLibrary) |
| 1396 | } |
| 1397 | |
| 1398 | func (c *config) InterPartitionJavaLibraryAllowList() []string { |
| 1399 | return c.productVariables.InterPartitionJavaLibraryAllowList |
| 1400 | } |
| 1401 | |
Jooyung Han | 3ab2c3e | 2019-12-05 16:27:44 +0900 | [diff] [blame] | 1402 | func (c *config) InstallExtraFlattenedApexes() bool { |
| 1403 | return Bool(c.productVariables.InstallExtraFlattenedApexes) |
| 1404 | } |
| 1405 | |
Colin Cross | f24a22a | 2019-01-31 14:12:44 -0800 | [diff] [blame] | 1406 | func (c *config) ProductHiddenAPIStubs() []string { |
| 1407 | return c.productVariables.ProductHiddenAPIStubs |
Colin Cross | 8faf8fc | 2019-01-16 15:15:52 -0800 | [diff] [blame] | 1408 | } |
| 1409 | |
Colin Cross | f24a22a | 2019-01-31 14:12:44 -0800 | [diff] [blame] | 1410 | func (c *config) ProductHiddenAPIStubsSystem() []string { |
| 1411 | return c.productVariables.ProductHiddenAPIStubsSystem |
Colin Cross | 8faf8fc | 2019-01-16 15:15:52 -0800 | [diff] [blame] | 1412 | } |
| 1413 | |
Colin Cross | f24a22a | 2019-01-31 14:12:44 -0800 | [diff] [blame] | 1414 | func (c *config) ProductHiddenAPIStubsTest() []string { |
| 1415 | return c.productVariables.ProductHiddenAPIStubsTest |
Colin Cross | 8faf8fc | 2019-01-16 15:15:52 -0800 | [diff] [blame] | 1416 | } |
Dan Willemsen | 71c7460 | 2019-04-10 12:27:35 -0700 | [diff] [blame] | 1417 | |
Dan Willemsen | 54879d1 | 2019-04-18 10:08:46 -0700 | [diff] [blame] | 1418 | func (c *deviceConfig) TargetFSConfigGen() []string { |
Dan Willemsen | 71c7460 | 2019-04-10 12:27:35 -0700 | [diff] [blame] | 1419 | return c.config.productVariables.TargetFSConfigGen |
| 1420 | } |
Inseob Kim | 0866b00 | 2019-04-15 20:21:29 +0900 | [diff] [blame] | 1421 | |
| 1422 | func (c *config) ProductPublicSepolicyDirs() []string { |
| 1423 | return c.productVariables.ProductPublicSepolicyDirs |
| 1424 | } |
| 1425 | |
| 1426 | func (c *config) ProductPrivateSepolicyDirs() []string { |
| 1427 | return c.productVariables.ProductPrivateSepolicyDirs |
| 1428 | } |
| 1429 | |
Colin Cross | 50ddcc4 | 2019-05-16 12:28:22 -0700 | [diff] [blame] | 1430 | func (c *config) MissingUsesLibraries() []string { |
| 1431 | return c.productVariables.MissingUsesLibraries |
| 1432 | } |
| 1433 | |
Inseob Kim | 1f086e2 | 2019-05-09 13:29:15 +0900 | [diff] [blame] | 1434 | func (c *deviceConfig) DeviceArch() string { |
| 1435 | return String(c.config.productVariables.DeviceArch) |
| 1436 | } |
| 1437 | |
| 1438 | func (c *deviceConfig) DeviceArchVariant() string { |
| 1439 | return String(c.config.productVariables.DeviceArchVariant) |
| 1440 | } |
| 1441 | |
| 1442 | func (c *deviceConfig) DeviceSecondaryArch() string { |
| 1443 | return String(c.config.productVariables.DeviceSecondaryArch) |
| 1444 | } |
| 1445 | |
| 1446 | func (c *deviceConfig) DeviceSecondaryArchVariant() string { |
| 1447 | return String(c.config.productVariables.DeviceSecondaryArchVariant) |
| 1448 | } |
Yifan Hong | 82db735 | 2020-01-21 16:12:26 -0800 | [diff] [blame] | 1449 | |
| 1450 | func (c *deviceConfig) BoardUsesRecoveryAsBoot() bool { |
| 1451 | return Bool(c.config.productVariables.BoardUsesRecoveryAsBoot) |
| 1452 | } |
Yifan Hong | 97365ee | 2020-07-29 09:51:57 -0700 | [diff] [blame] | 1453 | |
| 1454 | func (c *deviceConfig) BoardKernelBinaries() []string { |
| 1455 | return c.config.productVariables.BoardKernelBinaries |
| 1456 | } |
Ulya Trafimovich | 249386a | 2020-07-01 14:31:13 +0100 | [diff] [blame] | 1457 | |
Yifan Hong | 42bef8d | 2020-08-05 14:36:09 -0700 | [diff] [blame] | 1458 | func (c *deviceConfig) BoardKernelModuleInterfaceVersions() []string { |
| 1459 | return c.config.productVariables.BoardKernelModuleInterfaceVersions |
| 1460 | } |
| 1461 | |
Yifan Hong | dd8dacc | 2020-10-21 15:40:17 -0700 | [diff] [blame] | 1462 | func (c *deviceConfig) BoardMoveRecoveryResourcesToVendorBoot() bool { |
| 1463 | return Bool(c.config.productVariables.BoardMoveRecoveryResourcesToVendorBoot) |
| 1464 | } |
| 1465 | |
Inseob Kim | 16ebd5a | 2020-12-09 23:08:17 +0900 | [diff] [blame] | 1466 | func (c *deviceConfig) PlatformSepolicyVersion() string { |
| 1467 | return String(c.config.productVariables.PlatformSepolicyVersion) |
| 1468 | } |
| 1469 | |
| 1470 | func (c *deviceConfig) BoardSepolicyVers() string { |
Inseob Kim | 0c4eec8 | 2021-03-22 22:33:40 +0900 | [diff] [blame] | 1471 | if ver := String(c.config.productVariables.BoardSepolicyVers); ver != "" { |
| 1472 | return ver |
| 1473 | } |
| 1474 | return c.PlatformSepolicyVersion() |
Inseob Kim | 16ebd5a | 2020-12-09 23:08:17 +0900 | [diff] [blame] | 1475 | } |
| 1476 | |
| 1477 | func (c *deviceConfig) BoardReqdMaskPolicy() []string { |
| 1478 | return c.config.productVariables.BoardReqdMaskPolicy |
| 1479 | } |
| 1480 | |
Inseob Kim | 7cf1465 | 2021-01-06 23:06:52 +0900 | [diff] [blame] | 1481 | func (c *deviceConfig) DirectedVendorSnapshot() bool { |
| 1482 | return c.config.productVariables.DirectedVendorSnapshot |
| 1483 | } |
| 1484 | |
| 1485 | func (c *deviceConfig) VendorSnapshotModules() map[string]bool { |
| 1486 | return c.config.productVariables.VendorSnapshotModules |
| 1487 | } |
| 1488 | |
Jose Galmes | 4c6895e | 2021-02-09 07:44:30 -0800 | [diff] [blame] | 1489 | func (c *deviceConfig) DirectedRecoverySnapshot() bool { |
| 1490 | return c.config.productVariables.DirectedRecoverySnapshot |
| 1491 | } |
| 1492 | |
| 1493 | func (c *deviceConfig) RecoverySnapshotModules() map[string]bool { |
| 1494 | return c.config.productVariables.RecoverySnapshotModules |
| 1495 | } |
| 1496 | |
Justin DeMartino | 383bfb3 | 2021-02-24 10:49:43 -0800 | [diff] [blame] | 1497 | func createDirsMap(previous map[string]bool, dirs []string) (map[string]bool, error) { |
| 1498 | var ret = make(map[string]bool) |
| 1499 | for _, dir := range dirs { |
| 1500 | clean := filepath.Clean(dir) |
| 1501 | if previous[clean] || ret[clean] { |
| 1502 | return nil, fmt.Errorf("Duplicate entry %s", dir) |
| 1503 | } |
| 1504 | ret[clean] = true |
| 1505 | } |
| 1506 | return ret, nil |
| 1507 | } |
| 1508 | |
| 1509 | func (c *deviceConfig) createDirsMapOnce(onceKey OnceKey, previous map[string]bool, dirs []string) map[string]bool { |
| 1510 | dirMap := c.Once(onceKey, func() interface{} { |
| 1511 | ret, err := createDirsMap(previous, dirs) |
| 1512 | if err != nil { |
| 1513 | panic(fmt.Errorf("%s: %w", onceKey.key, err)) |
| 1514 | } |
| 1515 | return ret |
| 1516 | }) |
| 1517 | if dirMap == nil { |
| 1518 | return nil |
| 1519 | } |
| 1520 | return dirMap.(map[string]bool) |
| 1521 | } |
| 1522 | |
| 1523 | var vendorSnapshotDirsExcludedKey = NewOnceKey("VendorSnapshotDirsExcludedMap") |
| 1524 | |
| 1525 | func (c *deviceConfig) VendorSnapshotDirsExcludedMap() map[string]bool { |
| 1526 | return c.createDirsMapOnce(vendorSnapshotDirsExcludedKey, nil, |
| 1527 | c.config.productVariables.VendorSnapshotDirsExcluded) |
| 1528 | } |
| 1529 | |
| 1530 | var vendorSnapshotDirsIncludedKey = NewOnceKey("VendorSnapshotDirsIncludedMap") |
| 1531 | |
| 1532 | func (c *deviceConfig) VendorSnapshotDirsIncludedMap() map[string]bool { |
| 1533 | excludedMap := c.VendorSnapshotDirsExcludedMap() |
| 1534 | return c.createDirsMapOnce(vendorSnapshotDirsIncludedKey, excludedMap, |
| 1535 | c.config.productVariables.VendorSnapshotDirsIncluded) |
| 1536 | } |
| 1537 | |
| 1538 | var recoverySnapshotDirsExcludedKey = NewOnceKey("RecoverySnapshotDirsExcludedMap") |
| 1539 | |
| 1540 | func (c *deviceConfig) RecoverySnapshotDirsExcludedMap() map[string]bool { |
| 1541 | return c.createDirsMapOnce(recoverySnapshotDirsExcludedKey, nil, |
| 1542 | c.config.productVariables.RecoverySnapshotDirsExcluded) |
| 1543 | } |
| 1544 | |
| 1545 | var recoverySnapshotDirsIncludedKey = NewOnceKey("RecoverySnapshotDirsIncludedMap") |
| 1546 | |
| 1547 | func (c *deviceConfig) RecoverySnapshotDirsIncludedMap() map[string]bool { |
| 1548 | excludedMap := c.RecoverySnapshotDirsExcludedMap() |
| 1549 | return c.createDirsMapOnce(recoverySnapshotDirsIncludedKey, excludedMap, |
| 1550 | c.config.productVariables.RecoverySnapshotDirsIncluded) |
| 1551 | } |
| 1552 | |
Inseob Kim | 60c32f0 | 2020-12-21 22:53:05 +0900 | [diff] [blame] | 1553 | func (c *deviceConfig) ShippingApiLevel() ApiLevel { |
| 1554 | if c.config.productVariables.ShippingApiLevel == nil { |
| 1555 | return NoneApiLevel |
| 1556 | } |
| 1557 | apiLevel, _ := strconv.Atoi(*c.config.productVariables.ShippingApiLevel) |
| 1558 | return uncheckedFinalApiLevel(apiLevel) |
| 1559 | } |
| 1560 | |
Inseob Kim | 67e5add | 2021-03-17 18:05:33 +0900 | [diff] [blame] | 1561 | func (c *deviceConfig) BuildBrokenEnforceSyspropOwner() bool { |
| 1562 | return c.config.productVariables.BuildBrokenEnforceSyspropOwner |
| 1563 | } |
| 1564 | |
| 1565 | func (c *deviceConfig) BuildBrokenTrebleSyspropNeverallow() bool { |
| 1566 | return c.config.productVariables.BuildBrokenTrebleSyspropNeverallow |
| 1567 | } |
| 1568 | |
Hridya Valsaraju | 5a5c7d5 | 2021-04-02 16:45:24 -0700 | [diff] [blame] | 1569 | func (c *deviceConfig) BuildDebugfsRestrictionsEnabled() bool { |
| 1570 | return c.config.productVariables.BuildDebugfsRestrictionsEnabled |
| 1571 | } |
| 1572 | |
Inseob Kim | 0cac7b4 | 2021-02-03 18:16:46 +0900 | [diff] [blame] | 1573 | func (c *deviceConfig) BuildBrokenVendorPropertyNamespace() bool { |
| 1574 | return c.config.productVariables.BuildBrokenVendorPropertyNamespace |
| 1575 | } |
| 1576 | |
Inseob Kim | 67e5add | 2021-03-17 18:05:33 +0900 | [diff] [blame] | 1577 | func (c *deviceConfig) RequiresInsecureExecmemForSwiftshader() bool { |
| 1578 | return c.config.productVariables.RequiresInsecureExecmemForSwiftshader |
| 1579 | } |
| 1580 | |
| 1581 | func (c *config) SelinuxIgnoreNeverallows() bool { |
| 1582 | return c.productVariables.SelinuxIgnoreNeverallows |
| 1583 | } |
| 1584 | |
| 1585 | func (c *deviceConfig) SepolicySplit() bool { |
| 1586 | return c.config.productVariables.SepolicySplit |
| 1587 | } |
| 1588 | |
Ulya Trafimovich | 249386a | 2020-07-01 14:31:13 +0100 | [diff] [blame] | 1589 | // The ConfiguredJarList struct provides methods for handling a list of (apex, jar) pairs. |
| 1590 | // Such lists are used in the build system for things like bootclasspath jars or system server jars. |
| 1591 | // The apex part is either an apex name, or a special names "platform" or "system_ext". Jar is a |
| 1592 | // module name. The pairs come from Make product variables as a list of colon-separated strings. |
| 1593 | // |
| 1594 | // Examples: |
| 1595 | // - "com.android.art:core-oj" |
| 1596 | // - "platform:framework" |
| 1597 | // - "system_ext:foo" |
| 1598 | // |
| 1599 | type ConfiguredJarList struct { |
Jingwen Chen | c711fec | 2020-11-22 23:52:50 -0500 | [diff] [blame] | 1600 | // A list of apex components, which can be an apex name, |
| 1601 | // or special names like "platform" or "system_ext". |
| 1602 | apexes []string |
| 1603 | |
| 1604 | // A list of jar module name components. |
| 1605 | jars []string |
Ulya Trafimovich | 249386a | 2020-07-01 14:31:13 +0100 | [diff] [blame] | 1606 | } |
| 1607 | |
Jingwen Chen | c711fec | 2020-11-22 23:52:50 -0500 | [diff] [blame] | 1608 | // Len returns the length of the list of jars. |
Ulya Trafimovich | 249386a | 2020-07-01 14:31:13 +0100 | [diff] [blame] | 1609 | func (l *ConfiguredJarList) Len() int { |
| 1610 | return len(l.jars) |
| 1611 | } |
| 1612 | |
Jingwen Chen | c711fec | 2020-11-22 23:52:50 -0500 | [diff] [blame] | 1613 | // Jar returns the idx-th jar component of (apex, jar) pairs. |
Ulya Trafimovich | 249386a | 2020-07-01 14:31:13 +0100 | [diff] [blame] | 1614 | func (l *ConfiguredJarList) Jar(idx int) string { |
| 1615 | return l.jars[idx] |
| 1616 | } |
| 1617 | |
Jingwen Chen | c711fec | 2020-11-22 23:52:50 -0500 | [diff] [blame] | 1618 | // Apex returns the idx-th apex component of (apex, jar) pairs. |
Paul Duffin | 9a89a2a | 2020-10-28 19:20:06 +0000 | [diff] [blame] | 1619 | func (l *ConfiguredJarList) Apex(idx int) string { |
| 1620 | return l.apexes[idx] |
| 1621 | } |
| 1622 | |
Jingwen Chen | c711fec | 2020-11-22 23:52:50 -0500 | [diff] [blame] | 1623 | // ContainsJar returns true if the (apex, jar) pairs contains a pair with the |
| 1624 | // given jar module name. |
Ulya Trafimovich | 249386a | 2020-07-01 14:31:13 +0100 | [diff] [blame] | 1625 | func (l *ConfiguredJarList) ContainsJar(jar string) bool { |
| 1626 | return InList(jar, l.jars) |
| 1627 | } |
| 1628 | |
| 1629 | // If the list contains the given (apex, jar) pair. |
| 1630 | func (l *ConfiguredJarList) containsApexJarPair(apex, jar string) bool { |
| 1631 | for i := 0; i < l.Len(); i++ { |
Paul Duffin | 1e8c607 | 2020-10-23 18:28:55 +0100 | [diff] [blame] | 1632 | if apex == l.apexes[i] && jar == l.jars[i] { |
Ulya Trafimovich | 249386a | 2020-07-01 14:31:13 +0100 | [diff] [blame] | 1633 | return true |
| 1634 | } |
| 1635 | } |
| 1636 | return false |
| 1637 | } |
| 1638 | |
satayev | 3db3547 | 2021-05-06 23:59:58 +0100 | [diff] [blame] | 1639 | // ApexOfJar returns the apex component of the first pair with the given jar name on the list, or |
| 1640 | // an empty string if not found. |
| 1641 | func (l *ConfiguredJarList) ApexOfJar(jar string) string { |
| 1642 | if idx := IndexList(jar, l.jars); idx != -1 { |
| 1643 | return l.Apex(IndexList(jar, l.jars)) |
| 1644 | } |
| 1645 | return "" |
| 1646 | } |
| 1647 | |
Jingwen Chen | c711fec | 2020-11-22 23:52:50 -0500 | [diff] [blame] | 1648 | // IndexOfJar returns the first pair with the given jar name on the list, or -1 |
| 1649 | // if not found. |
Ulya Trafimovich | 249386a | 2020-07-01 14:31:13 +0100 | [diff] [blame] | 1650 | func (l *ConfiguredJarList) IndexOfJar(jar string) int { |
| 1651 | return IndexList(jar, l.jars) |
| 1652 | } |
| 1653 | |
Paul Duffin | 7d584e9 | 2020-10-23 18:26:03 +0100 | [diff] [blame] | 1654 | func copyAndAppend(list []string, item string) []string { |
| 1655 | // Create the result list to be 1 longer than the input. |
| 1656 | result := make([]string, len(list)+1) |
| 1657 | |
| 1658 | // Copy the whole input list into the result. |
| 1659 | count := copy(result, list) |
| 1660 | |
| 1661 | // Insert the extra item at the end. |
| 1662 | result[count] = item |
| 1663 | |
| 1664 | return result |
| 1665 | } |
| 1666 | |
Ulya Trafimovich | 249386a | 2020-07-01 14:31:13 +0100 | [diff] [blame] | 1667 | // Append an (apex, jar) pair to the list. |
Paul Duffin | 7d584e9 | 2020-10-23 18:26:03 +0100 | [diff] [blame] | 1668 | func (l *ConfiguredJarList) Append(apex string, jar string) ConfiguredJarList { |
| 1669 | // Create a copy of the backing arrays before appending to avoid sharing backing |
| 1670 | // arrays that are mutated across instances. |
| 1671 | apexes := copyAndAppend(l.apexes, apex) |
| 1672 | jars := copyAndAppend(l.jars, jar) |
| 1673 | |
| 1674 | return ConfiguredJarList{apexes, jars} |
Ulya Trafimovich | 249386a | 2020-07-01 14:31:13 +0100 | [diff] [blame] | 1675 | } |
| 1676 | |
Jingwen Chen | c711fec | 2020-11-22 23:52:50 -0500 | [diff] [blame] | 1677 | // RemoveList filters out a list of (apex, jar) pairs from the receiving list of pairs. |
Paul Duffin | 7d584e9 | 2020-10-23 18:26:03 +0100 | [diff] [blame] | 1678 | func (l *ConfiguredJarList) RemoveList(list ConfiguredJarList) ConfiguredJarList { |
Ulya Trafimovich | 249386a | 2020-07-01 14:31:13 +0100 | [diff] [blame] | 1679 | apexes := make([]string, 0, l.Len()) |
| 1680 | jars := make([]string, 0, l.Len()) |
| 1681 | |
| 1682 | for i, jar := range l.jars { |
Paul Duffin | 1e8c607 | 2020-10-23 18:28:55 +0100 | [diff] [blame] | 1683 | apex := l.apexes[i] |
Ulya Trafimovich | 249386a | 2020-07-01 14:31:13 +0100 | [diff] [blame] | 1684 | if !list.containsApexJarPair(apex, jar) { |
| 1685 | apexes = append(apexes, apex) |
| 1686 | jars = append(jars, jar) |
| 1687 | } |
| 1688 | } |
| 1689 | |
Paul Duffin | 7d584e9 | 2020-10-23 18:26:03 +0100 | [diff] [blame] | 1690 | return ConfiguredJarList{apexes, jars} |
Ulya Trafimovich | 249386a | 2020-07-01 14:31:13 +0100 | [diff] [blame] | 1691 | } |
| 1692 | |
satayev | d34eb0c | 2021-08-06 13:20:28 +0100 | [diff] [blame] | 1693 | // Filter keeps the entries if a jar appears in the given list of jars to keep. Returns a new list |
| 1694 | // and any remaining jars that are not on this list. |
| 1695 | func (l *ConfiguredJarList) Filter(jarsToKeep []string) (ConfiguredJarList, []string) { |
satayev | 8fab6f8 | 2021-05-07 00:10:33 +0100 | [diff] [blame] | 1696 | var apexes []string |
| 1697 | var jars []string |
| 1698 | |
| 1699 | for i, jar := range l.jars { |
| 1700 | if InList(jar, jarsToKeep) { |
| 1701 | apexes = append(apexes, l.apexes[i]) |
| 1702 | jars = append(jars, jar) |
| 1703 | } |
| 1704 | } |
| 1705 | |
satayev | d34eb0c | 2021-08-06 13:20:28 +0100 | [diff] [blame] | 1706 | return ConfiguredJarList{apexes, jars}, RemoveListFromList(jarsToKeep, jars) |
satayev | 8fab6f8 | 2021-05-07 00:10:33 +0100 | [diff] [blame] | 1707 | } |
| 1708 | |
Jingwen Chen | c711fec | 2020-11-22 23:52:50 -0500 | [diff] [blame] | 1709 | // CopyOfJars returns a copy of the list of strings containing jar module name |
| 1710 | // components. |
Ulya Trafimovich | 249386a | 2020-07-01 14:31:13 +0100 | [diff] [blame] | 1711 | func (l *ConfiguredJarList) CopyOfJars() []string { |
| 1712 | return CopyOf(l.jars) |
| 1713 | } |
| 1714 | |
Jingwen Chen | c711fec | 2020-11-22 23:52:50 -0500 | [diff] [blame] | 1715 | // CopyOfApexJarPairs returns a copy of the list of strings with colon-separated |
| 1716 | // (apex, jar) pairs. |
Ulya Trafimovich | 249386a | 2020-07-01 14:31:13 +0100 | [diff] [blame] | 1717 | func (l *ConfiguredJarList) CopyOfApexJarPairs() []string { |
| 1718 | pairs := make([]string, 0, l.Len()) |
| 1719 | |
| 1720 | for i, jar := range l.jars { |
Paul Duffin | 1e8c607 | 2020-10-23 18:28:55 +0100 | [diff] [blame] | 1721 | apex := l.apexes[i] |
Ulya Trafimovich | 249386a | 2020-07-01 14:31:13 +0100 | [diff] [blame] | 1722 | pairs = append(pairs, apex+":"+jar) |
| 1723 | } |
| 1724 | |
| 1725 | return pairs |
| 1726 | } |
| 1727 | |
Jingwen Chen | c711fec | 2020-11-22 23:52:50 -0500 | [diff] [blame] | 1728 | // BuildPaths returns a list of build paths based on the given directory prefix. |
Ulya Trafimovich | 249386a | 2020-07-01 14:31:13 +0100 | [diff] [blame] | 1729 | func (l *ConfiguredJarList) BuildPaths(ctx PathContext, dir OutputPath) WritablePaths { |
| 1730 | paths := make(WritablePaths, l.Len()) |
| 1731 | for i, jar := range l.jars { |
| 1732 | paths[i] = dir.Join(ctx, ModuleStem(jar)+".jar") |
| 1733 | } |
| 1734 | return paths |
| 1735 | } |
| 1736 | |
Paul Duffin | 5f148ca | 2021-06-02 17:24:22 +0100 | [diff] [blame] | 1737 | // BuildPathsByModule returns a map from module name to build paths based on the given directory |
| 1738 | // prefix. |
| 1739 | func (l *ConfiguredJarList) BuildPathsByModule(ctx PathContext, dir OutputPath) map[string]WritablePath { |
| 1740 | paths := map[string]WritablePath{} |
| 1741 | for _, jar := range l.jars { |
| 1742 | paths[jar] = dir.Join(ctx, ModuleStem(jar)+".jar") |
| 1743 | } |
| 1744 | return paths |
| 1745 | } |
| 1746 | |
Jingwen Chen | c711fec | 2020-11-22 23:52:50 -0500 | [diff] [blame] | 1747 | // UnmarshalJSON converts JSON configuration from raw bytes into a |
| 1748 | // ConfiguredJarList structure. |
Paul Duffin | 69d1fb1 | 2020-10-23 21:14:20 +0100 | [diff] [blame] | 1749 | func (l *ConfiguredJarList) UnmarshalJSON(b []byte) error { |
| 1750 | // Try and unmarshal into a []string each item of which contains a pair |
| 1751 | // <apex>:<jar>. |
| 1752 | var list []string |
| 1753 | err := json.Unmarshal(b, &list) |
| 1754 | if err != nil { |
| 1755 | // Did not work so return |
| 1756 | return err |
| 1757 | } |
| 1758 | |
| 1759 | apexes, jars, err := splitListOfPairsIntoPairOfLists(list) |
| 1760 | if err != nil { |
| 1761 | return err |
| 1762 | } |
| 1763 | l.apexes = apexes |
| 1764 | l.jars = jars |
| 1765 | return nil |
| 1766 | } |
| 1767 | |
Lukacs T. Berki | 720b396 | 2021-03-17 13:34:30 +0100 | [diff] [blame] | 1768 | func (l *ConfiguredJarList) MarshalJSON() ([]byte, error) { |
| 1769 | if len(l.apexes) != len(l.jars) { |
| 1770 | return nil, errors.New(fmt.Sprintf("Inconsistent ConfiguredJarList: apexes: %q, jars: %q", l.apexes, l.jars)) |
| 1771 | } |
| 1772 | |
| 1773 | list := make([]string, 0, len(l.apexes)) |
| 1774 | |
| 1775 | for i := 0; i < len(l.apexes); i++ { |
| 1776 | list = append(list, l.apexes[i]+":"+l.jars[i]) |
| 1777 | } |
| 1778 | |
| 1779 | return json.Marshal(list) |
| 1780 | } |
| 1781 | |
Jingwen Chen | c711fec | 2020-11-22 23:52:50 -0500 | [diff] [blame] | 1782 | // ModuleStem hardcodes the stem of framework-minus-apex to return "framework". |
| 1783 | // |
| 1784 | // TODO(b/139391334): hard coded until we find a good way to query the stem of a |
| 1785 | // module before any other mutators are run. |
Ulya Trafimovich | 249386a | 2020-07-01 14:31:13 +0100 | [diff] [blame] | 1786 | func ModuleStem(module string) string { |
Ulya Trafimovich | 249386a | 2020-07-01 14:31:13 +0100 | [diff] [blame] | 1787 | if module == "framework-minus-apex" { |
| 1788 | return "framework" |
| 1789 | } |
| 1790 | return module |
| 1791 | } |
| 1792 | |
Jingwen Chen | c711fec | 2020-11-22 23:52:50 -0500 | [diff] [blame] | 1793 | // DevicePaths computes the on-device paths for the list of (apex, jar) pairs, |
| 1794 | // based on the operating system. |
Ulya Trafimovich | 249386a | 2020-07-01 14:31:13 +0100 | [diff] [blame] | 1795 | func (l *ConfiguredJarList) DevicePaths(cfg Config, ostype OsType) []string { |
| 1796 | paths := make([]string, l.Len()) |
| 1797 | for i, jar := range l.jars { |
| 1798 | apex := l.apexes[i] |
| 1799 | name := ModuleStem(jar) + ".jar" |
| 1800 | |
| 1801 | var subdir string |
| 1802 | if apex == "platform" { |
| 1803 | subdir = "system/framework" |
| 1804 | } else if apex == "system_ext" { |
| 1805 | subdir = "system_ext/framework" |
| 1806 | } else { |
| 1807 | subdir = filepath.Join("apex", apex, "javalib") |
| 1808 | } |
| 1809 | |
| 1810 | if ostype.Class == Host { |
| 1811 | paths[i] = filepath.Join(cfg.Getenv("OUT_DIR"), "host", cfg.PrebuiltOS(), subdir, name) |
| 1812 | } else { |
| 1813 | paths[i] = filepath.Join("/", subdir, name) |
| 1814 | } |
| 1815 | } |
| 1816 | return paths |
| 1817 | } |
| 1818 | |
Paul Duffin | 7d584e9 | 2020-10-23 18:26:03 +0100 | [diff] [blame] | 1819 | func (l *ConfiguredJarList) String() string { |
| 1820 | var pairs []string |
| 1821 | for i := 0; i < l.Len(); i++ { |
| 1822 | pairs = append(pairs, l.apexes[i]+":"+l.jars[i]) |
| 1823 | } |
| 1824 | return strings.Join(pairs, ",") |
| 1825 | } |
| 1826 | |
Paul Duffin | 0141660 | 2020-10-23 21:04:03 +0100 | [diff] [blame] | 1827 | func splitListOfPairsIntoPairOfLists(list []string) ([]string, []string, error) { |
| 1828 | // Now we need to populate this list by splitting each item in the slice of |
| 1829 | // pairs and appending them to the appropriate list of apexes or jars. |
| 1830 | apexes := make([]string, len(list)) |
| 1831 | jars := make([]string, len(list)) |
| 1832 | |
| 1833 | for i, apexjar := range list { |
| 1834 | apex, jar, err := splitConfiguredJarPair(apexjar) |
| 1835 | if err != nil { |
| 1836 | return nil, nil, err |
| 1837 | } |
| 1838 | apexes[i] = apex |
| 1839 | jars[i] = jar |
| 1840 | } |
| 1841 | |
| 1842 | return apexes, jars, nil |
| 1843 | } |
| 1844 | |
Ulya Trafimovich | 249386a | 2020-07-01 14:31:13 +0100 | [diff] [blame] | 1845 | // Expected format for apexJarValue = <apex name>:<jar name> |
Paul Duffin | 0141660 | 2020-10-23 21:04:03 +0100 | [diff] [blame] | 1846 | func splitConfiguredJarPair(str string) (string, string, error) { |
Ulya Trafimovich | 249386a | 2020-07-01 14:31:13 +0100 | [diff] [blame] | 1847 | pair := strings.SplitN(str, ":", 2) |
| 1848 | if len(pair) == 2 { |
Paul Duffin | 9c3ac96 | 2021-02-03 14:11:27 +0000 | [diff] [blame] | 1849 | apex := pair[0] |
| 1850 | jar := pair[1] |
| 1851 | if apex == "" { |
| 1852 | return apex, jar, fmt.Errorf("invalid apex '%s' in <apex>:<jar> pair '%s', expected format: <apex>:<jar>", apex, str) |
| 1853 | } |
| 1854 | return apex, jar, nil |
Ulya Trafimovich | 249386a | 2020-07-01 14:31:13 +0100 | [diff] [blame] | 1855 | } else { |
Paul Duffin | 0141660 | 2020-10-23 21:04:03 +0100 | [diff] [blame] | 1856 | return "error-apex", "error-jar", fmt.Errorf("malformed (apex, jar) pair: '%s', expected format: <apex>:<jar>", str) |
Ulya Trafimovich | 249386a | 2020-07-01 14:31:13 +0100 | [diff] [blame] | 1857 | } |
| 1858 | } |
| 1859 | |
Paul Duffin | 9c3ac96 | 2021-02-03 14:11:27 +0000 | [diff] [blame] | 1860 | // CreateTestConfiguredJarList is a function to create ConfiguredJarList for tests. |
Paul Duffin | e10dfa4 | 2020-10-23 21:23:44 +0100 | [diff] [blame] | 1861 | func CreateTestConfiguredJarList(list []string) ConfiguredJarList { |
Paul Duffin | 9c3ac96 | 2021-02-03 14:11:27 +0000 | [diff] [blame] | 1862 | // Create the ConfiguredJarList in as similar way as it is created at runtime by marshalling to |
| 1863 | // a json list of strings and then unmarshalling into a ConfiguredJarList instance. |
| 1864 | b, err := json.Marshal(list) |
Paul Duffin | 0141660 | 2020-10-23 21:04:03 +0100 | [diff] [blame] | 1865 | if err != nil { |
Paul Duffin | e10dfa4 | 2020-10-23 21:23:44 +0100 | [diff] [blame] | 1866 | panic(err) |
Ulya Trafimovich | 249386a | 2020-07-01 14:31:13 +0100 | [diff] [blame] | 1867 | } |
| 1868 | |
Paul Duffin | 9c3ac96 | 2021-02-03 14:11:27 +0000 | [diff] [blame] | 1869 | var jarList ConfiguredJarList |
| 1870 | err = json.Unmarshal(b, &jarList) |
| 1871 | if err != nil { |
| 1872 | panic(err) |
| 1873 | } |
| 1874 | |
| 1875 | return jarList |
Ulya Trafimovich | 249386a | 2020-07-01 14:31:13 +0100 | [diff] [blame] | 1876 | } |
| 1877 | |
Jingwen Chen | c711fec | 2020-11-22 23:52:50 -0500 | [diff] [blame] | 1878 | // EmptyConfiguredJarList returns an empty jar list. |
Ulya Trafimovich | 249386a | 2020-07-01 14:31:13 +0100 | [diff] [blame] | 1879 | func EmptyConfiguredJarList() ConfiguredJarList { |
| 1880 | return ConfiguredJarList{} |
| 1881 | } |
| 1882 | |
| 1883 | var earlyBootJarsKey = NewOnceKey("earlyBootJars") |
| 1884 | |
| 1885 | func (c *config) BootJars() []string { |
| 1886 | return c.Once(earlyBootJarsKey, func() interface{} { |
Paul Duffin | 69d1fb1 | 2020-10-23 21:14:20 +0100 | [diff] [blame] | 1887 | list := c.productVariables.BootJars.CopyOfJars() |
satayev | d604b21 | 2021-07-21 14:23:52 +0100 | [diff] [blame] | 1888 | return append(list, c.productVariables.ApexBootJars.CopyOfJars()...) |
Ulya Trafimovich | 249386a | 2020-07-01 14:31:13 +0100 | [diff] [blame] | 1889 | }).([]string) |
| 1890 | } |
Paul Duffin | 9a89a2a | 2020-10-28 19:20:06 +0000 | [diff] [blame] | 1891 | |
satayev | d604b21 | 2021-07-21 14:23:52 +0100 | [diff] [blame] | 1892 | func (c *config) NonApexBootJars() ConfiguredJarList { |
Paul Duffin | 9a89a2a | 2020-10-28 19:20:06 +0000 | [diff] [blame] | 1893 | return c.productVariables.BootJars |
| 1894 | } |
| 1895 | |
satayev | d604b21 | 2021-07-21 14:23:52 +0100 | [diff] [blame] | 1896 | func (c *config) ApexBootJars() ConfiguredJarList { |
| 1897 | return c.productVariables.ApexBootJars |
Paul Duffin | 9a89a2a | 2020-10-28 19:20:06 +0000 | [diff] [blame] | 1898 | } |
Colin Cross | 77cdcfd | 2021-03-12 11:28:25 -0800 | [diff] [blame] | 1899 | |
| 1900 | func (c *config) RBEWrapper() string { |
| 1901 | return c.GetenvWithDefault("RBE_WRAPPER", remoteexec.DefaultWrapperPath) |
| 1902 | } |