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