Colin Cross | ce75d2c | 2016-10-06 16:12:58 -0700 | [diff] [blame] | 1 | // Copyright 2016 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 | |
| 15 | package android |
| 16 | |
Colin Cross | 74d73e2 | 2017-08-02 11:05:49 -0700 | [diff] [blame] | 17 | import ( |
| 18 | "fmt" |
Jaewoong Jung | 3e18b19 | 2019-06-11 12:25:34 -0700 | [diff] [blame] | 19 | "reflect" |
Paul Duffin | d23c726 | 2020-12-11 18:13:08 +0000 | [diff] [blame] | 20 | "strings" |
Colin Cross | 74d73e2 | 2017-08-02 11:05:49 -0700 | [diff] [blame] | 21 | |
| 22 | "github.com/google/blueprint" |
Jaewoong Jung | 939ebd5 | 2019-03-26 15:07:36 -0700 | [diff] [blame] | 23 | "github.com/google/blueprint/proptools" |
Colin Cross | 74d73e2 | 2017-08-02 11:05:49 -0700 | [diff] [blame] | 24 | ) |
Colin Cross | ce75d2c | 2016-10-06 16:12:58 -0700 | [diff] [blame] | 25 | |
| 26 | // This file implements common functionality for handling modules that may exist as prebuilts, |
| 27 | // source, or both. |
| 28 | |
Paul Duffin | 0c4979b | 2019-12-19 15:11:53 +0000 | [diff] [blame] | 29 | func RegisterPrebuiltMutators(ctx RegistrationContext) { |
| 30 | ctx.PreArchMutators(RegisterPrebuiltsPreArchMutators) |
| 31 | ctx.PostDepsMutators(RegisterPrebuiltsPostDepsMutators) |
| 32 | } |
| 33 | |
Paul Duffin | 80342d7 | 2020-06-26 22:08:43 +0100 | [diff] [blame] | 34 | // Marks a dependency tag as possibly preventing a reference to a source from being |
| 35 | // replaced with the prebuilt. |
| 36 | type ReplaceSourceWithPrebuilt interface { |
| 37 | blueprint.DependencyTag |
| 38 | |
| 39 | // Return true if the dependency defined by this tag should be replaced with the |
| 40 | // prebuilt. |
| 41 | ReplaceSourceWithPrebuilt() bool |
| 42 | } |
| 43 | |
Nan Zhang | 2502e12 | 2017-03-09 18:43:01 -0800 | [diff] [blame] | 44 | type prebuiltDependencyTag struct { |
| 45 | blueprint.BaseDependencyTag |
| 46 | } |
| 47 | |
Jiyong Park | 03b68dd | 2019-07-26 23:20:40 +0900 | [diff] [blame] | 48 | var PrebuiltDepTag prebuiltDependencyTag |
Colin Cross | ce75d2c | 2016-10-06 16:12:58 -0700 | [diff] [blame] | 49 | |
Paul Duffin | 78ac5b9 | 2020-01-14 12:42:08 +0000 | [diff] [blame] | 50 | // Mark this tag so dependencies that use it are excluded from visibility enforcement. |
| 51 | func (t prebuiltDependencyTag) ExcludeFromVisibilityEnforcement() {} |
| 52 | |
Paul Duffin | dddd546 | 2020-04-07 15:25:44 +0100 | [diff] [blame] | 53 | // Mark this tag so dependencies that use it are excluded from APEX contents. |
| 54 | func (t prebuiltDependencyTag) ExcludeFromApexContents() {} |
| 55 | |
| 56 | var _ ExcludeFromVisibilityEnforcementTag = PrebuiltDepTag |
| 57 | var _ ExcludeFromApexContentsTag = PrebuiltDepTag |
| 58 | |
Colin Cross | 74d73e2 | 2017-08-02 11:05:49 -0700 | [diff] [blame] | 59 | type PrebuiltProperties struct { |
| 60 | // When prefer is set to true the prebuilt will be used instead of any source module with |
| 61 | // a matching name. |
Nan Zhang | 0007d81 | 2017-11-07 10:57:05 -0800 | [diff] [blame] | 62 | Prefer *bool `android:"arch_variant"` |
Colin Cross | ce75d2c | 2016-10-06 16:12:58 -0700 | [diff] [blame] | 63 | |
Paul Duffin | 0c52c7b | 2021-07-06 17:15:25 +0100 | [diff] [blame] | 64 | // When specified this names a Soong config variable that controls the prefer property. |
| 65 | // |
| 66 | // If the value of the named Soong config variable is true then prefer is set to false and vice |
| 67 | // versa. If the Soong config variable is not set then it defaults to false, so prefer defaults |
| 68 | // to true. |
| 69 | // |
| 70 | // If specified then the prefer property is ignored in favor of the value of the Soong config |
| 71 | // variable. |
| 72 | Use_source_config_var *ConfigVarProperties |
| 73 | |
Colin Cross | 74d73e2 | 2017-08-02 11:05:49 -0700 | [diff] [blame] | 74 | SourceExists bool `blueprint:"mutated"` |
| 75 | UsePrebuilt bool `blueprint:"mutated"` |
Martin Stjernholm | 009a9dc | 2020-03-05 17:34:13 +0000 | [diff] [blame] | 76 | |
| 77 | // Set if the module has been renamed to remove the "prebuilt_" prefix. |
| 78 | PrebuiltRenamedToSource bool `blueprint:"mutated"` |
Colin Cross | 74d73e2 | 2017-08-02 11:05:49 -0700 | [diff] [blame] | 79 | } |
| 80 | |
Paul Duffin | 0c52c7b | 2021-07-06 17:15:25 +0100 | [diff] [blame] | 81 | // Properties that can be used to select a Soong config variable. |
| 82 | type ConfigVarProperties struct { |
| 83 | // Allow instances of this struct to be used as a property value in a BpPropertySet. |
| 84 | BpPrintableBase |
| 85 | |
| 86 | // The name of the configuration namespace. |
| 87 | // |
| 88 | // As passed to add_soong_config_namespace in Make. |
| 89 | Config_namespace *string |
| 90 | |
| 91 | // The name of the configuration variable. |
| 92 | // |
| 93 | // As passed to add_soong_config_var_value in Make. |
| 94 | Var_name *string |
| 95 | } |
| 96 | |
Colin Cross | 74d73e2 | 2017-08-02 11:05:49 -0700 | [diff] [blame] | 97 | type Prebuilt struct { |
| 98 | properties PrebuiltProperties |
Jaewoong Jung | 3e18b19 | 2019-06-11 12:25:34 -0700 | [diff] [blame] | 99 | |
Martin Stjernholm | e65c3ae | 2021-11-23 01:24:06 +0000 | [diff] [blame] | 100 | // nil if the prebuilt has no srcs property at all. See InitPrebuiltModuleWithoutSrcs. |
| 101 | srcsSupplier PrebuiltSrcsSupplier |
| 102 | |
| 103 | // "-" if the prebuilt has no srcs property at all. See InitPrebuiltModuleWithoutSrcs. |
Paul Duffin | dcb4bd6 | 2020-03-12 23:43:52 +0000 | [diff] [blame] | 104 | srcsPropertyName string |
Colin Cross | ce75d2c | 2016-10-06 16:12:58 -0700 | [diff] [blame] | 105 | } |
| 106 | |
Paul Duffin | d23c726 | 2020-12-11 18:13:08 +0000 | [diff] [blame] | 107 | // RemoveOptionalPrebuiltPrefix returns the result of removing the "prebuilt_" prefix from the |
| 108 | // supplied name if it has one, or returns the name unmodified if it does not. |
| 109 | func RemoveOptionalPrebuiltPrefix(name string) string { |
| 110 | return strings.TrimPrefix(name, "prebuilt_") |
| 111 | } |
| 112 | |
Trevor Radcliffe | 5d6fa4d | 2022-05-17 21:59:36 +0000 | [diff] [blame] | 113 | // RemoveOptionalPrebuiltPrefixFromBazelLabel removes the "prebuilt_" prefix from the *target name* of a Bazel label. |
| 114 | // This differs from RemoveOptionalPrebuiltPrefix in that it does not remove it from the start of the string, but |
| 115 | // instead removes it from the target name itself. |
| 116 | func RemoveOptionalPrebuiltPrefixFromBazelLabel(label string) string { |
| 117 | splitLabel := strings.Split(label, ":") |
| 118 | bazelModuleNameNoPrebuilt := RemoveOptionalPrebuiltPrefix(splitLabel[1]) |
| 119 | return strings.Join([]string{ |
| 120 | splitLabel[0], |
| 121 | bazelModuleNameNoPrebuilt, |
| 122 | }, ":") |
| 123 | } |
| 124 | |
Colin Cross | ce75d2c | 2016-10-06 16:12:58 -0700 | [diff] [blame] | 125 | func (p *Prebuilt) Name(name string) string { |
Paul Duffin | 864116c | 2021-04-02 10:24:13 +0100 | [diff] [blame] | 126 | return PrebuiltNameFromSource(name) |
| 127 | } |
| 128 | |
| 129 | // PrebuiltNameFromSource returns the result of prepending the "prebuilt_" prefix to the supplied |
| 130 | // name. |
| 131 | func PrebuiltNameFromSource(name string) string { |
Colin Cross | ce75d2c | 2016-10-06 16:12:58 -0700 | [diff] [blame] | 132 | return "prebuilt_" + name |
| 133 | } |
| 134 | |
Paul Duffin | 5006151 | 2020-01-21 16:31:05 +0000 | [diff] [blame] | 135 | func (p *Prebuilt) ForcePrefer() { |
| 136 | p.properties.Prefer = proptools.BoolPtr(true) |
| 137 | } |
| 138 | |
Paul Duffin | 38b5785 | 2020-05-13 16:08:09 +0100 | [diff] [blame] | 139 | func (p *Prebuilt) Prefer() bool { |
| 140 | return proptools.Bool(p.properties.Prefer) |
| 141 | } |
| 142 | |
Paul Duffin | 56dc66e | 2021-03-01 13:18:44 +0000 | [diff] [blame] | 143 | // SingleSourcePathFromSupplier invokes the supplied supplier for the current module in the |
| 144 | // supplied context to retrieve a list of file paths, ensures that the returned list of file paths |
| 145 | // contains a single value and then assumes that is a module relative file path and converts it to |
| 146 | // a Path accordingly. |
| 147 | // |
| 148 | // Any issues, such as nil supplier or not exactly one file path will be reported as errors on the |
| 149 | // supplied context and this will return nil. |
| 150 | func SingleSourcePathFromSupplier(ctx ModuleContext, srcsSupplier PrebuiltSrcsSupplier, srcsPropertyName string) Path { |
| 151 | if srcsSupplier != nil { |
| 152 | srcs := srcsSupplier(ctx, ctx.Module()) |
Paul Duffin | dcb4bd6 | 2020-03-12 23:43:52 +0000 | [diff] [blame] | 153 | |
| 154 | if len(srcs) == 0 { |
Paul Duffin | 56dc66e | 2021-03-01 13:18:44 +0000 | [diff] [blame] | 155 | ctx.PropertyErrorf(srcsPropertyName, "missing prebuilt source file") |
Jaewoong Jung | 939ebd5 | 2019-03-26 15:07:36 -0700 | [diff] [blame] | 156 | return nil |
| 157 | } |
Colin Cross | ce75d2c | 2016-10-06 16:12:58 -0700 | [diff] [blame] | 158 | |
Paul Duffin | dcb4bd6 | 2020-03-12 23:43:52 +0000 | [diff] [blame] | 159 | if len(srcs) > 1 { |
Paul Duffin | 56dc66e | 2021-03-01 13:18:44 +0000 | [diff] [blame] | 160 | ctx.PropertyErrorf(srcsPropertyName, "multiple prebuilt source files") |
Jaewoong Jung | 939ebd5 | 2019-03-26 15:07:36 -0700 | [diff] [blame] | 161 | return nil |
| 162 | } |
Colin Cross | ce75d2c | 2016-10-06 16:12:58 -0700 | [diff] [blame] | 163 | |
Jaewoong Jung | 939ebd5 | 2019-03-26 15:07:36 -0700 | [diff] [blame] | 164 | // Return the singleton source after expanding any filegroup in the |
| 165 | // sources. |
Paul Duffin | dcb4bd6 | 2020-03-12 23:43:52 +0000 | [diff] [blame] | 166 | src := srcs[0] |
Jaewoong Jung | 3e18b19 | 2019-06-11 12:25:34 -0700 | [diff] [blame] | 167 | return PathForModuleSrc(ctx, src) |
Paul Duffin | dcb4bd6 | 2020-03-12 23:43:52 +0000 | [diff] [blame] | 168 | } else { |
| 169 | ctx.ModuleErrorf("prebuilt source was not set") |
| 170 | return nil |
Jaewoong Jung | 939ebd5 | 2019-03-26 15:07:36 -0700 | [diff] [blame] | 171 | } |
Colin Cross | 74d73e2 | 2017-08-02 11:05:49 -0700 | [diff] [blame] | 172 | } |
| 173 | |
Paul Duffin | 56dc66e | 2021-03-01 13:18:44 +0000 | [diff] [blame] | 174 | // The below source-related functions and the srcs, src fields are based on an assumption that |
| 175 | // prebuilt modules have a static source property at the moment. Currently there is only one |
| 176 | // exception, android_app_import, which chooses a source file depending on the product's DPI |
| 177 | // preference configs. We'll want to add native support for dynamic source cases if we end up having |
| 178 | // more modules like this. |
| 179 | func (p *Prebuilt) SingleSourcePath(ctx ModuleContext) Path { |
| 180 | return SingleSourcePathFromSupplier(ctx, p.srcsSupplier, p.srcsPropertyName) |
| 181 | } |
| 182 | |
Jiyong Park | 4d27704 | 2019-04-23 18:00:10 +0900 | [diff] [blame] | 183 | func (p *Prebuilt) UsePrebuilt() bool { |
| 184 | return p.properties.UsePrebuilt |
| 185 | } |
| 186 | |
Paul Duffin | dcb4bd6 | 2020-03-12 23:43:52 +0000 | [diff] [blame] | 187 | // Called to provide the srcs value for the prebuilt module. |
| 188 | // |
Paul Duffin | c04fb9e | 2021-03-01 12:25:10 +0000 | [diff] [blame] | 189 | // This can be called with a context for any module not just the prebuilt one itself. It can also be |
| 190 | // called concurrently. |
| 191 | // |
Paul Duffin | dcb4bd6 | 2020-03-12 23:43:52 +0000 | [diff] [blame] | 192 | // Return the src value or nil if it is not available. |
Paul Duffin | c04fb9e | 2021-03-01 12:25:10 +0000 | [diff] [blame] | 193 | type PrebuiltSrcsSupplier func(ctx BaseModuleContext, prebuilt Module) []string |
Paul Duffin | dcb4bd6 | 2020-03-12 23:43:52 +0000 | [diff] [blame] | 194 | |
Martin Stjernholm | e65c3ae | 2021-11-23 01:24:06 +0000 | [diff] [blame] | 195 | func initPrebuiltModuleCommon(module PrebuiltInterface) *Prebuilt { |
| 196 | p := module.Prebuilt() |
| 197 | module.AddProperties(&p.properties) |
Martin Stjernholm | e65c3ae | 2021-11-23 01:24:06 +0000 | [diff] [blame] | 198 | return p |
| 199 | } |
| 200 | |
| 201 | // Initialize the module as a prebuilt module that has no dedicated property that lists its |
| 202 | // sources. SingleSourcePathFromSupplier should not be called for this module. |
| 203 | // |
| 204 | // This is the case e.g. for header modules, which provides the headers in source form |
| 205 | // regardless whether they are prebuilt or not. |
| 206 | func InitPrebuiltModuleWithoutSrcs(module PrebuiltInterface) { |
| 207 | p := initPrebuiltModuleCommon(module) |
| 208 | p.srcsPropertyName = "-" |
| 209 | } |
| 210 | |
Paul Duffin | dcb4bd6 | 2020-03-12 23:43:52 +0000 | [diff] [blame] | 211 | // Initialize the module as a prebuilt module that uses the provided supplier to access the |
| 212 | // prebuilt sources of the module. |
| 213 | // |
| 214 | // The supplier will be called multiple times and must return the same values each time it |
| 215 | // is called. If it returns an empty array (or nil) then the prebuilt module will not be used |
| 216 | // as a replacement for a source module with the same name even if prefer = true. |
| 217 | // |
| 218 | // If the Prebuilt.SingleSourcePath() is called on the module then this must return an array |
| 219 | // containing exactly one source file. |
| 220 | // |
| 221 | // The provided property name is used to provide helpful error messages in the event that |
| 222 | // a problem arises, e.g. calling SingleSourcePath() when more than one source is provided. |
| 223 | func InitPrebuiltModuleWithSrcSupplier(module PrebuiltInterface, srcsSupplier PrebuiltSrcsSupplier, srcsPropertyName string) { |
Paul Duffin | dcb4bd6 | 2020-03-12 23:43:52 +0000 | [diff] [blame] | 224 | if srcsSupplier == nil { |
| 225 | panic(fmt.Errorf("srcsSupplier must not be nil")) |
| 226 | } |
| 227 | if srcsPropertyName == "" { |
| 228 | panic(fmt.Errorf("srcsPropertyName must not be empty")) |
| 229 | } |
| 230 | |
Martin Stjernholm | e65c3ae | 2021-11-23 01:24:06 +0000 | [diff] [blame] | 231 | p := initPrebuiltModuleCommon(module) |
Paul Duffin | dcb4bd6 | 2020-03-12 23:43:52 +0000 | [diff] [blame] | 232 | p.srcsSupplier = srcsSupplier |
| 233 | p.srcsPropertyName = srcsPropertyName |
| 234 | } |
| 235 | |
| 236 | func InitPrebuiltModule(module PrebuiltInterface, srcs *[]string) { |
| 237 | if srcs == nil { |
| 238 | panic(fmt.Errorf("srcs must not be nil")) |
| 239 | } |
| 240 | |
Paul Duffin | c04fb9e | 2021-03-01 12:25:10 +0000 | [diff] [blame] | 241 | srcsSupplier := func(ctx BaseModuleContext, _ Module) []string { |
Paul Duffin | dcb4bd6 | 2020-03-12 23:43:52 +0000 | [diff] [blame] | 242 | return *srcs |
| 243 | } |
| 244 | |
| 245 | InitPrebuiltModuleWithSrcSupplier(module, srcsSupplier, "srcs") |
Colin Cross | ce75d2c | 2016-10-06 16:12:58 -0700 | [diff] [blame] | 246 | } |
| 247 | |
Jaewoong Jung | 3e18b19 | 2019-06-11 12:25:34 -0700 | [diff] [blame] | 248 | func InitSingleSourcePrebuiltModule(module PrebuiltInterface, srcProps interface{}, srcField string) { |
Paul Duffin | dcb4bd6 | 2020-03-12 23:43:52 +0000 | [diff] [blame] | 249 | srcPropsValue := reflect.ValueOf(srcProps).Elem() |
| 250 | srcStructField, _ := srcPropsValue.Type().FieldByName(srcField) |
| 251 | if !srcPropsValue.IsValid() || srcStructField.Name == "" { |
| 252 | panic(fmt.Errorf("invalid single source prebuilt %+v", module)) |
| 253 | } |
| 254 | |
| 255 | if srcPropsValue.Kind() != reflect.Struct && srcPropsValue.Kind() != reflect.Interface { |
| 256 | panic(fmt.Errorf("invalid single source prebuilt %+v", srcProps)) |
| 257 | } |
| 258 | |
| 259 | srcFieldIndex := srcStructField.Index |
| 260 | srcPropertyName := proptools.PropertyNameForField(srcField) |
| 261 | |
Paul Duffin | c04fb9e | 2021-03-01 12:25:10 +0000 | [diff] [blame] | 262 | srcsSupplier := func(ctx BaseModuleContext, _ Module) []string { |
Jaewoong Jung | 729c0bd | 2020-12-08 19:11:54 -0800 | [diff] [blame] | 263 | if !module.Enabled() { |
Jaewoong Jung | 84f1b80 | 2020-12-04 11:51:29 -0800 | [diff] [blame] | 264 | return nil |
| 265 | } |
Paul Duffin | dcb4bd6 | 2020-03-12 23:43:52 +0000 | [diff] [blame] | 266 | value := srcPropsValue.FieldByIndex(srcFieldIndex) |
| 267 | if value.Kind() == reflect.Ptr { |
| 268 | value = value.Elem() |
| 269 | } |
| 270 | if value.Kind() != reflect.String { |
Martin Stjernholm | 25a69de | 2021-09-09 02:48:30 +0100 | [diff] [blame] | 271 | panic(fmt.Errorf("prebuilt src field %q in %T in module %s should be a string or a pointer to one but was %v", srcField, srcProps, module, value)) |
Paul Duffin | dcb4bd6 | 2020-03-12 23:43:52 +0000 | [diff] [blame] | 272 | } |
| 273 | src := value.String() |
| 274 | if src == "" { |
| 275 | return nil |
| 276 | } |
| 277 | return []string{src} |
| 278 | } |
| 279 | |
| 280 | InitPrebuiltModuleWithSrcSupplier(module, srcsSupplier, srcPropertyName) |
Jaewoong Jung | 939ebd5 | 2019-03-26 15:07:36 -0700 | [diff] [blame] | 281 | } |
| 282 | |
Colin Cross | ce75d2c | 2016-10-06 16:12:58 -0700 | [diff] [blame] | 283 | type PrebuiltInterface interface { |
| 284 | Module |
| 285 | Prebuilt() *Prebuilt |
Colin Cross | ce75d2c | 2016-10-06 16:12:58 -0700 | [diff] [blame] | 286 | } |
| 287 | |
Paul Duffin | e1d3837 | 2021-04-02 10:35:24 +0100 | [diff] [blame] | 288 | // IsModulePreferred returns true if the given module is preferred. |
| 289 | // |
| 290 | // A source module is preferred if there is no corresponding prebuilt module or the prebuilt module |
| 291 | // does not have "prefer: true". |
| 292 | // |
| 293 | // A prebuilt module is preferred if there is no corresponding source module or the prebuilt module |
| 294 | // has "prefer: true". |
| 295 | func IsModulePreferred(module Module) bool { |
| 296 | if module.IsReplacedByPrebuilt() { |
| 297 | // A source module that has been replaced by a prebuilt counterpart. |
| 298 | return false |
| 299 | } |
Paul Duffin | f7c99f5 | 2021-04-28 10:41:21 +0100 | [diff] [blame] | 300 | if p := GetEmbeddedPrebuilt(module); p != nil { |
| 301 | return p.UsePrebuilt() |
Paul Duffin | e1d3837 | 2021-04-02 10:35:24 +0100 | [diff] [blame] | 302 | } |
| 303 | return true |
| 304 | } |
| 305 | |
Paul Duffin | f7c99f5 | 2021-04-28 10:41:21 +0100 | [diff] [blame] | 306 | // IsModulePrebuilt returns true if the module implements PrebuiltInterface and |
| 307 | // has been initialized as a prebuilt and so returns a non-nil value from the |
| 308 | // PrebuiltInterface.Prebuilt() method. |
| 309 | func IsModulePrebuilt(module Module) bool { |
| 310 | return GetEmbeddedPrebuilt(module) != nil |
| 311 | } |
| 312 | |
| 313 | // GetEmbeddedPrebuilt returns a pointer to the embedded Prebuilt structure or |
| 314 | // nil if the module does not implement PrebuiltInterface or has not been |
| 315 | // initialized as a prebuilt module. |
| 316 | func GetEmbeddedPrebuilt(module Module) *Prebuilt { |
| 317 | if p, ok := module.(PrebuiltInterface); ok { |
| 318 | return p.Prebuilt() |
| 319 | } |
| 320 | |
| 321 | return nil |
| 322 | } |
| 323 | |
Martin Stjernholm | dbd814d | 2022-01-12 23:18:30 +0000 | [diff] [blame] | 324 | // PrebuiltGetPreferred returns the module that is preferred for the given |
| 325 | // module. That is either the module itself or the prebuilt counterpart that has |
| 326 | // taken its place. The given module must be a direct dependency of the current |
| 327 | // context module, and it must be the source module if both source and prebuilt |
| 328 | // exist. |
| 329 | // |
| 330 | // This function is for use on dependencies after PrebuiltPostDepsMutator has |
| 331 | // run - any dependency that is registered before that will already reference |
| 332 | // the right module. This function is only safe to call after all mutators that |
| 333 | // may call CreateVariations, e.g. in GenerateAndroidBuildActions. |
| 334 | func PrebuiltGetPreferred(ctx BaseModuleContext, module Module) Module { |
| 335 | if !module.IsReplacedByPrebuilt() { |
| 336 | return module |
| 337 | } |
| 338 | if IsModulePrebuilt(module) { |
| 339 | // If we're given a prebuilt then assume there's no source module around. |
| 340 | return module |
| 341 | } |
| 342 | |
| 343 | sourceModDepFound := false |
| 344 | var prebuiltMod Module |
| 345 | |
| 346 | ctx.WalkDeps(func(child, parent Module) bool { |
| 347 | if prebuiltMod != nil { |
| 348 | return false |
| 349 | } |
| 350 | if parent == ctx.Module() { |
| 351 | // First level: Only recurse if the module is found as a direct dependency. |
| 352 | sourceModDepFound = child == module |
| 353 | return sourceModDepFound |
| 354 | } |
| 355 | // Second level: Follow PrebuiltDepTag to the prebuilt. |
| 356 | if t := ctx.OtherModuleDependencyTag(child); t == PrebuiltDepTag { |
| 357 | prebuiltMod = child |
| 358 | } |
| 359 | return false |
| 360 | }) |
| 361 | |
| 362 | if prebuiltMod == nil { |
| 363 | if !sourceModDepFound { |
| 364 | panic(fmt.Errorf("Failed to find source module as a direct dependency: %s", module)) |
| 365 | } else { |
| 366 | panic(fmt.Errorf("Failed to find prebuilt for source module: %s", module)) |
| 367 | } |
| 368 | } |
| 369 | return prebuiltMod |
| 370 | } |
| 371 | |
Colin Cross | 5ea9bcc | 2017-07-27 15:41:32 -0700 | [diff] [blame] | 372 | func RegisterPrebuiltsPreArchMutators(ctx RegisterMutatorsContext) { |
Martin Stjernholm | 009a9dc | 2020-03-05 17:34:13 +0000 | [diff] [blame] | 373 | ctx.BottomUp("prebuilt_rename", PrebuiltRenameMutator).Parallel() |
Colin Cross | cec8171 | 2017-07-13 14:43:27 -0700 | [diff] [blame] | 374 | } |
| 375 | |
Colin Cross | 5ea9bcc | 2017-07-27 15:41:32 -0700 | [diff] [blame] | 376 | func RegisterPrebuiltsPostDepsMutators(ctx RegisterMutatorsContext) { |
Martin Stjernholm | 009a9dc | 2020-03-05 17:34:13 +0000 | [diff] [blame] | 377 | ctx.BottomUp("prebuilt_source", PrebuiltSourceDepsMutator).Parallel() |
Colin Cross | cec8171 | 2017-07-13 14:43:27 -0700 | [diff] [blame] | 378 | ctx.TopDown("prebuilt_select", PrebuiltSelectModuleMutator).Parallel() |
Pirama Arumuga Nainar | 955dc49 | 2018-04-17 14:58:42 -0700 | [diff] [blame] | 379 | ctx.BottomUp("prebuilt_postdeps", PrebuiltPostDepsMutator).Parallel() |
Colin Cross | cec8171 | 2017-07-13 14:43:27 -0700 | [diff] [blame] | 380 | } |
| 381 | |
Martin Stjernholm | 009a9dc | 2020-03-05 17:34:13 +0000 | [diff] [blame] | 382 | // PrebuiltRenameMutator ensures that there always is a module with an |
| 383 | // undecorated name. |
| 384 | func PrebuiltRenameMutator(ctx BottomUpMutatorContext) { |
Paul Duffin | f7c99f5 | 2021-04-28 10:41:21 +0100 | [diff] [blame] | 385 | m := ctx.Module() |
| 386 | if p := GetEmbeddedPrebuilt(m); p != nil { |
Martin Stjernholm | 009a9dc | 2020-03-05 17:34:13 +0000 | [diff] [blame] | 387 | name := m.base().BaseModuleName() |
| 388 | if !ctx.OtherModuleExists(name) { |
| 389 | ctx.Rename(name) |
Paul Duffin | f7c99f5 | 2021-04-28 10:41:21 +0100 | [diff] [blame] | 390 | p.properties.PrebuiltRenamedToSource = true |
Martin Stjernholm | 009a9dc | 2020-03-05 17:34:13 +0000 | [diff] [blame] | 391 | } |
| 392 | } |
| 393 | } |
| 394 | |
| 395 | // PrebuiltSourceDepsMutator adds dependencies to the prebuilt module from the |
| 396 | // corresponding source module, if one exists for the same variant. |
| 397 | func PrebuiltSourceDepsMutator(ctx BottomUpMutatorContext) { |
Paul Duffin | f7c99f5 | 2021-04-28 10:41:21 +0100 | [diff] [blame] | 398 | m := ctx.Module() |
| 399 | // If this module is a prebuilt, is enabled and has not been renamed to source then add a |
| 400 | // dependency onto the source if it is present. |
| 401 | if p := GetEmbeddedPrebuilt(m); p != nil && m.Enabled() && !p.properties.PrebuiltRenamedToSource { |
| 402 | name := m.base().BaseModuleName() |
| 403 | if ctx.OtherModuleReverseDependencyVariantExists(name) { |
| 404 | ctx.AddReverseDependency(ctx.Module(), PrebuiltDepTag, name) |
| 405 | p.properties.SourceExists = true |
Colin Cross | ce75d2c | 2016-10-06 16:12:58 -0700 | [diff] [blame] | 406 | } |
| 407 | } |
| 408 | } |
| 409 | |
Colin Cross | c3e7fa6 | 2017-03-17 13:14:32 -0700 | [diff] [blame] | 410 | // PrebuiltSelectModuleMutator marks prebuilts that are used, either overriding source modules or |
| 411 | // because the source module doesn't exist. It also disables installing overridden source modules. |
Colin Cross | a2f296f | 2016-11-29 15:16:18 -0800 | [diff] [blame] | 412 | func PrebuiltSelectModuleMutator(ctx TopDownMutatorContext) { |
Paul Duffin | f7c99f5 | 2021-04-28 10:41:21 +0100 | [diff] [blame] | 413 | m := ctx.Module() |
| 414 | if p := GetEmbeddedPrebuilt(m); p != nil { |
Martin Stjernholm | e65c3ae | 2021-11-23 01:24:06 +0000 | [diff] [blame] | 415 | if p.srcsSupplier == nil && p.srcsPropertyName == "" { |
Colin Cross | 74d73e2 | 2017-08-02 11:05:49 -0700 | [diff] [blame] | 416 | panic(fmt.Errorf("prebuilt module did not have InitPrebuiltModule called on it")) |
| 417 | } |
| 418 | if !p.properties.SourceExists { |
Paul Duffin | c04fb9e | 2021-03-01 12:25:10 +0000 | [diff] [blame] | 419 | p.properties.UsePrebuilt = p.usePrebuilt(ctx, nil, m) |
Colin Cross | c3e7fa6 | 2017-03-17 13:14:32 -0700 | [diff] [blame] | 420 | } |
| 421 | } else if s, ok := ctx.Module().(Module); ok { |
Paul Duffin | f7c99f5 | 2021-04-28 10:41:21 +0100 | [diff] [blame] | 422 | ctx.VisitDirectDepsWithTag(PrebuiltDepTag, func(prebuiltModule Module) { |
| 423 | p := GetEmbeddedPrebuilt(prebuiltModule) |
| 424 | if p.usePrebuilt(ctx, s, prebuiltModule) { |
Colin Cross | ee6143c | 2017-12-30 17:54:27 -0800 | [diff] [blame] | 425 | p.properties.UsePrebuilt = true |
Liz Kammer | 5ca3a62 | 2020-08-05 15:40:41 -0700 | [diff] [blame] | 426 | s.ReplacedByPrebuilt() |
Colin Cross | a2f296f | 2016-11-29 15:16:18 -0800 | [diff] [blame] | 427 | } |
| 428 | }) |
| 429 | } |
| 430 | } |
| 431 | |
Jaewoong Jung | 6158dfe | 2021-03-23 14:08:29 -0700 | [diff] [blame] | 432 | // PrebuiltPostDepsMutator replaces dependencies on the source module with dependencies on the |
| 433 | // prebuilt when both modules exist and the prebuilt should be used. When the prebuilt should not |
| 434 | // be used, disable installing it. |
Pirama Arumuga Nainar | 955dc49 | 2018-04-17 14:58:42 -0700 | [diff] [blame] | 435 | func PrebuiltPostDepsMutator(ctx BottomUpMutatorContext) { |
Paul Duffin | f7c99f5 | 2021-04-28 10:41:21 +0100 | [diff] [blame] | 436 | m := ctx.Module() |
| 437 | if p := GetEmbeddedPrebuilt(m); p != nil { |
Colin Cross | ce75d2c | 2016-10-06 16:12:58 -0700 | [diff] [blame] | 438 | name := m.base().BaseModuleName() |
Colin Cross | 74d73e2 | 2017-08-02 11:05:49 -0700 | [diff] [blame] | 439 | if p.properties.UsePrebuilt { |
| 440 | if p.properties.SourceExists { |
Paul Duffin | 80342d7 | 2020-06-26 22:08:43 +0100 | [diff] [blame] | 441 | ctx.ReplaceDependenciesIf(name, func(from blueprint.Module, tag blueprint.DependencyTag, to blueprint.Module) bool { |
| 442 | if t, ok := tag.(ReplaceSourceWithPrebuilt); ok { |
| 443 | return t.ReplaceSourceWithPrebuilt() |
| 444 | } |
| 445 | |
| 446 | return true |
| 447 | }) |
Colin Cross | 0f3c72f | 2016-11-23 15:44:07 -0800 | [diff] [blame] | 448 | } |
| 449 | } else { |
Colin Cross | a9c8c9f | 2020-12-16 10:20:23 -0800 | [diff] [blame] | 450 | m.HideFromMake() |
Colin Cross | ce75d2c | 2016-10-06 16:12:58 -0700 | [diff] [blame] | 451 | } |
| 452 | } |
| 453 | } |
| 454 | |
Colin Cross | a2f296f | 2016-11-29 15:16:18 -0800 | [diff] [blame] | 455 | // usePrebuilt returns true if a prebuilt should be used instead of the source module. The prebuilt |
| 456 | // will be used if it is marked "prefer" or if the source module is disabled. |
Paul Duffin | c04fb9e | 2021-03-01 12:25:10 +0000 | [diff] [blame] | 457 | func (p *Prebuilt) usePrebuilt(ctx TopDownMutatorContext, source Module, prebuilt Module) bool { |
| 458 | if p.srcsSupplier != nil && len(p.srcsSupplier(ctx, prebuilt)) == 0 { |
Colin Cross | a2f296f | 2016-11-29 15:16:18 -0800 | [diff] [blame] | 459 | return false |
Colin Cross | ce75d2c | 2016-10-06 16:12:58 -0700 | [diff] [blame] | 460 | } |
Colin Cross | ce75d2c | 2016-10-06 16:12:58 -0700 | [diff] [blame] | 461 | |
LuK1337 | fb545bf | 2021-01-10 17:47:46 +0100 | [diff] [blame] | 462 | // Skip prebuilt modules under unexported namespaces so that we won't |
| 463 | // end up shadowing non-prebuilt module when prebuilt module under same |
| 464 | // name happens to have a `Prefer` property set to true. |
| 465 | if ctx.Config().KatiEnabled() && !prebuilt.ExportedToMake() { |
| 466 | return false |
| 467 | } |
| 468 | |
Paul Duffin | 0c52c7b | 2021-07-06 17:15:25 +0100 | [diff] [blame] | 469 | // If source is not available or is disabled then always use the prebuilt. |
| 470 | if source == nil || !source.Enabled() { |
Colin Cross | a2f296f | 2016-11-29 15:16:18 -0800 | [diff] [blame] | 471 | return true |
| 472 | } |
| 473 | |
Paul Duffin | 0c52c7b | 2021-07-06 17:15:25 +0100 | [diff] [blame] | 474 | // If the use_source_config_var property is set then it overrides the prefer property setting. |
| 475 | if configVar := p.properties.Use_source_config_var; configVar != nil { |
| 476 | return !ctx.Config().VendorConfig(proptools.String(configVar.Config_namespace)).Bool(proptools.String(configVar.Var_name)) |
| 477 | } |
| 478 | |
| 479 | // TODO: use p.Properties.Name and ctx.ModuleDir to override preference |
| 480 | return Bool(p.properties.Prefer) |
Colin Cross | ce75d2c | 2016-10-06 16:12:58 -0700 | [diff] [blame] | 481 | } |
Jiyong Park | 0a573d7 | 2019-07-07 12:39:16 +0900 | [diff] [blame] | 482 | |
| 483 | func (p *Prebuilt) SourceExists() bool { |
| 484 | return p.properties.SourceExists |
| 485 | } |