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