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