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