Jiyong Park | d1063c1 | 2019-07-17 20:08:41 +0900 | [diff] [blame] | 1 | // Copyright (C) 2019 The Android Open Source Project |
| 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 sdk |
| 16 | |
| 17 | import ( |
Jiyong Park | 9b409bc | 2019-10-11 14:59:13 +0900 | [diff] [blame] | 18 | "fmt" |
Paul Duffin | 504b461 | 2019-11-22 14:52:29 +0000 | [diff] [blame] | 19 | "io" |
Paul Duffin | 255f18e | 2019-12-13 11:22:16 +0000 | [diff] [blame] | 20 | "reflect" |
Jiyong Park | 9b409bc | 2019-10-11 14:59:13 +0900 | [diff] [blame] | 21 | "strconv" |
| 22 | |
Jiyong Park | d1063c1 | 2019-07-17 20:08:41 +0900 | [diff] [blame] | 23 | "github.com/google/blueprint" |
Jiyong Park | 100f3fd | 2019-11-06 16:03:32 +0900 | [diff] [blame] | 24 | "github.com/google/blueprint/proptools" |
Jiyong Park | d1063c1 | 2019-07-17 20:08:41 +0900 | [diff] [blame] | 25 | |
| 26 | "android/soong/android" |
| 27 | // This package doesn't depend on the apex package, but import it to make its mutators to be |
| 28 | // registered before mutators in this package. See RegisterPostDepsMutators for more details. |
| 29 | _ "android/soong/apex" |
| 30 | ) |
| 31 | |
| 32 | func init() { |
Jiyong Park | 232e785 | 2019-11-04 12:23:40 +0900 | [diff] [blame] | 33 | pctx.Import("android/soong/android") |
Paul Duffin | 375058f | 2019-11-29 20:17:53 +0000 | [diff] [blame] | 34 | pctx.Import("android/soong/java/config") |
| 35 | |
Paul Duffin | 8150da6 | 2019-12-16 17:21:27 +0000 | [diff] [blame] | 36 | android.RegisterModuleType("sdk", SdkModuleFactory) |
Jiyong Park | 9b409bc | 2019-10-11 14:59:13 +0900 | [diff] [blame] | 37 | android.RegisterModuleType("sdk_snapshot", SnapshotModuleFactory) |
Jiyong Park | d1063c1 | 2019-07-17 20:08:41 +0900 | [diff] [blame] | 38 | android.PreDepsMutators(RegisterPreDepsMutators) |
| 39 | android.PostDepsMutators(RegisterPostDepsMutators) |
| 40 | } |
| 41 | |
| 42 | type sdk struct { |
| 43 | android.ModuleBase |
| 44 | android.DefaultableModuleBase |
| 45 | |
Paul Duffin | 255f18e | 2019-12-13 11:22:16 +0000 | [diff] [blame] | 46 | // The dynamically generated information about the registered SdkMemberType |
| 47 | dynamicSdkMemberTypes *dynamicSdkMemberTypes |
| 48 | |
| 49 | // The dynamically created instance of the properties struct containing the sdk member |
| 50 | // list properties, e.g. java_libs. |
| 51 | dynamicMemberTypeListProperties interface{} |
| 52 | |
Paul Duffin | 7291095 | 2020-01-20 18:16:30 +0000 | [diff] [blame] | 53 | // The set of exported members. |
| 54 | exportedMembers map[string]struct{} |
| 55 | |
Paul Duffin | 1356d8c | 2020-02-25 19:26:33 +0000 | [diff] [blame^] | 56 | // Information about the OsType specific member variants associated with this variant. |
| 57 | // |
| 58 | // Set by OsType specific variants when their GenerateAndroidBuildActions is invoked |
| 59 | // and used by the CommonOS variant when its GenerateAndroidBuildActions is invoked, which |
| 60 | // is guaranteed to occur afterwards. |
| 61 | memberRefs []sdkMemberRef |
| 62 | |
Jiyong Park | d1063c1 | 2019-07-17 20:08:41 +0900 | [diff] [blame] | 63 | properties sdkProperties |
Jiyong Park | 9b409bc | 2019-10-11 14:59:13 +0900 | [diff] [blame] | 64 | |
Jiyong Park | 232e785 | 2019-11-04 12:23:40 +0900 | [diff] [blame] | 65 | snapshotFile android.OptionalPath |
Paul Duffin | ac37c50 | 2019-11-26 18:02:20 +0000 | [diff] [blame] | 66 | |
| 67 | // The builder, preserved for testing. |
| 68 | builderForTests *snapshotBuilder |
Jiyong Park | d1063c1 | 2019-07-17 20:08:41 +0900 | [diff] [blame] | 69 | } |
| 70 | |
| 71 | type sdkProperties struct { |
Jiyong Park | 9b409bc | 2019-10-11 14:59:13 +0900 | [diff] [blame] | 72 | Snapshot bool `blueprint:"mutated"` |
Paul Duffin | 8150da6 | 2019-12-16 17:21:27 +0000 | [diff] [blame] | 73 | |
| 74 | // True if this is a module_exports (or module_exports_snapshot) module type. |
| 75 | Module_exports bool `blueprint:"mutated"` |
Jiyong Park | d1063c1 | 2019-07-17 20:08:41 +0900 | [diff] [blame] | 76 | } |
| 77 | |
Paul Duffin | 1387957 | 2019-11-28 14:31:38 +0000 | [diff] [blame] | 78 | // Contains information about the sdk properties that list sdk members, e.g. |
Paul Duffin | a0dbf43 | 2019-12-05 11:25:53 +0000 | [diff] [blame] | 79 | // Java_header_libs. |
Paul Duffin | 1387957 | 2019-11-28 14:31:38 +0000 | [diff] [blame] | 80 | type sdkMemberListProperty struct { |
Paul Duffin | 1387957 | 2019-11-28 14:31:38 +0000 | [diff] [blame] | 81 | // getter for the list of member names |
Paul Duffin | 255f18e | 2019-12-13 11:22:16 +0000 | [diff] [blame] | 82 | getter func(properties interface{}) []string |
Paul Duffin | 1387957 | 2019-11-28 14:31:38 +0000 | [diff] [blame] | 83 | |
| 84 | // the type of member referenced in the list |
| 85 | memberType android.SdkMemberType |
| 86 | |
Paul Duffin | 255f18e | 2019-12-13 11:22:16 +0000 | [diff] [blame] | 87 | // the dependency tag used for items in this list that can be used to determine the memberType |
| 88 | // for a resolved dependency. |
Paul Duffin | f853992 | 2019-11-19 19:44:10 +0000 | [diff] [blame] | 89 | dependencyTag android.SdkMemberTypeDependencyTag |
Paul Duffin | 1387957 | 2019-11-28 14:31:38 +0000 | [diff] [blame] | 90 | } |
| 91 | |
Paul Duffin | 255f18e | 2019-12-13 11:22:16 +0000 | [diff] [blame] | 92 | func (p *sdkMemberListProperty) propertyName() string { |
| 93 | return p.memberType.SdkPropertyName() |
| 94 | } |
| 95 | |
| 96 | // Cache of dynamically generated dynamicSdkMemberTypes objects. The key is the pointer |
| 97 | // to a slice of SdkMemberType instances held in android.SdkMemberTypes. |
| 98 | var dynamicSdkMemberTypesMap android.OncePer |
| 99 | |
| 100 | // A dynamically generated set of member list properties and associated structure type. |
| 101 | type dynamicSdkMemberTypes struct { |
| 102 | // The dynamically generated structure type. |
| 103 | // |
| 104 | // Contains one []string exported field for each android.SdkMemberTypes. The name of the field |
| 105 | // is the exported form of the value returned by SdkMemberType.SdkPropertyName(). |
| 106 | propertiesStructType reflect.Type |
| 107 | |
| 108 | // Information about each of the member type specific list properties. |
| 109 | memberListProperties []*sdkMemberListProperty |
| 110 | } |
| 111 | |
| 112 | func (d *dynamicSdkMemberTypes) createMemberListProperties() interface{} { |
| 113 | return reflect.New(d.propertiesStructType).Interface() |
| 114 | } |
| 115 | |
| 116 | func getDynamicSdkMemberTypes(registry *android.SdkMemberTypesRegistry) *dynamicSdkMemberTypes { |
| 117 | |
| 118 | // Get a key that uniquely identifies the registry contents. |
| 119 | key := registry.UniqueOnceKey() |
| 120 | |
| 121 | // Get the registered types. |
| 122 | registeredTypes := registry.RegisteredTypes() |
| 123 | |
| 124 | // Get the cached value, creating new instance if necessary. |
| 125 | return dynamicSdkMemberTypesMap.Once(key, func() interface{} { |
| 126 | return createDynamicSdkMemberTypes(registeredTypes) |
| 127 | }).(*dynamicSdkMemberTypes) |
| 128 | } |
| 129 | |
| 130 | // Create the dynamicSdkMemberTypes from the list of registered member types. |
Paul Duffin | a6e737b | 2019-11-29 11:55:51 +0000 | [diff] [blame] | 131 | // |
Paul Duffin | 255f18e | 2019-12-13 11:22:16 +0000 | [diff] [blame] | 132 | // A struct is created which contains one exported field per member type corresponding to |
| 133 | // the SdkMemberType.SdkPropertyName() value. |
| 134 | // |
| 135 | // A list of sdkMemberListProperty instances is created, one per member type that provides: |
| 136 | // * a reference to the member type. |
| 137 | // * a getter for the corresponding field in the properties struct. |
| 138 | // * a dependency tag that identifies the member type of a resolved dependency. |
| 139 | // |
| 140 | func createDynamicSdkMemberTypes(sdkMemberTypes []android.SdkMemberType) *dynamicSdkMemberTypes { |
Paul Duffin | e602918 | 2019-12-16 17:43:48 +0000 | [diff] [blame] | 141 | |
Paul Duffin | 255f18e | 2019-12-13 11:22:16 +0000 | [diff] [blame] | 142 | var listProperties []*sdkMemberListProperty |
| 143 | var fields []reflect.StructField |
| 144 | |
| 145 | // Iterate over the member types creating StructField and sdkMemberListProperty objects. |
| 146 | for f, memberType := range sdkMemberTypes { |
| 147 | p := memberType.SdkPropertyName() |
| 148 | |
| 149 | // Create a dynamic exported field for the member type's property. |
| 150 | fields = append(fields, reflect.StructField{ |
| 151 | Name: proptools.FieldNameForProperty(p), |
| 152 | Type: reflect.TypeOf([]string{}), |
| 153 | }) |
| 154 | |
| 155 | // Copy the field index for use in the getter func as using the loop variable directly will |
| 156 | // cause all funcs to use the last value. |
| 157 | fieldIndex := f |
| 158 | |
| 159 | // Create an sdkMemberListProperty for the member type. |
| 160 | memberListProperty := &sdkMemberListProperty{ |
| 161 | getter: func(properties interface{}) []string { |
| 162 | // The properties is expected to be of the following form (where |
| 163 | // <Module_types> is the name of an SdkMemberType.SdkPropertyName(). |
| 164 | // properties *struct {<Module_types> []string, ....} |
| 165 | // |
| 166 | // Although it accesses the field by index the following reflection code is equivalent to: |
| 167 | // *properties.<Module_types> |
| 168 | // |
| 169 | list := reflect.ValueOf(properties).Elem().Field(fieldIndex).Interface().([]string) |
| 170 | return list |
| 171 | }, |
| 172 | |
| 173 | memberType: memberType, |
| 174 | |
Paul Duffin | f853992 | 2019-11-19 19:44:10 +0000 | [diff] [blame] | 175 | dependencyTag: android.DependencyTagForSdkMemberType(memberType), |
Paul Duffin | 255f18e | 2019-12-13 11:22:16 +0000 | [diff] [blame] | 176 | } |
| 177 | |
| 178 | listProperties = append(listProperties, memberListProperty) |
| 179 | } |
| 180 | |
| 181 | // Create a dynamic struct from the collated fields. |
| 182 | propertiesStructType := reflect.StructOf(fields) |
| 183 | |
| 184 | return &dynamicSdkMemberTypes{ |
| 185 | memberListProperties: listProperties, |
| 186 | propertiesStructType: propertiesStructType, |
| 187 | } |
Paul Duffin | 1387957 | 2019-11-28 14:31:38 +0000 | [diff] [blame] | 188 | } |
| 189 | |
Jiyong Park | d1063c1 | 2019-07-17 20:08:41 +0900 | [diff] [blame] | 190 | // sdk defines an SDK which is a logical group of modules (e.g. native libs, headers, java libs, etc.) |
| 191 | // which Mainline modules like APEX can choose to build with. |
Paul Duffin | 8150da6 | 2019-12-16 17:21:27 +0000 | [diff] [blame] | 192 | func SdkModuleFactory() android.Module { |
Paul Duffin | e602918 | 2019-12-16 17:43:48 +0000 | [diff] [blame] | 193 | return newSdkModule(false) |
Paul Duffin | 8150da6 | 2019-12-16 17:21:27 +0000 | [diff] [blame] | 194 | } |
Paul Duffin | 255f18e | 2019-12-13 11:22:16 +0000 | [diff] [blame] | 195 | |
Paul Duffin | e602918 | 2019-12-16 17:43:48 +0000 | [diff] [blame] | 196 | func newSdkModule(moduleExports bool) *sdk { |
Paul Duffin | 8150da6 | 2019-12-16 17:21:27 +0000 | [diff] [blame] | 197 | s := &sdk{} |
Paul Duffin | e602918 | 2019-12-16 17:43:48 +0000 | [diff] [blame] | 198 | s.properties.Module_exports = moduleExports |
Paul Duffin | 255f18e | 2019-12-13 11:22:16 +0000 | [diff] [blame] | 199 | // Get the dynamic sdk member type data for the currently registered sdk member types. |
Paul Duffin | e602918 | 2019-12-16 17:43:48 +0000 | [diff] [blame] | 200 | var registry *android.SdkMemberTypesRegistry |
| 201 | if moduleExports { |
| 202 | registry = android.ModuleExportsMemberTypes |
| 203 | } else { |
| 204 | registry = android.SdkMemberTypes |
| 205 | } |
| 206 | s.dynamicSdkMemberTypes = getDynamicSdkMemberTypes(registry) |
Paul Duffin | 255f18e | 2019-12-13 11:22:16 +0000 | [diff] [blame] | 207 | // Create an instance of the dynamically created struct that contains all the |
| 208 | // properties for the member type specific list properties. |
| 209 | s.dynamicMemberTypeListProperties = s.dynamicSdkMemberTypes.createMemberListProperties() |
Paul Duffin | 255f18e | 2019-12-13 11:22:16 +0000 | [diff] [blame] | 210 | s.AddProperties(&s.properties, s.dynamicMemberTypeListProperties) |
Paul Duffin | 1356d8c | 2020-02-25 19:26:33 +0000 | [diff] [blame^] | 211 | android.InitCommonOSAndroidMultiTargetsArchModule(s, android.HostAndDeviceSupported, android.MultilibCommon) |
Jiyong Park | d1063c1 | 2019-07-17 20:08:41 +0900 | [diff] [blame] | 212 | android.InitDefaultableModule(s) |
Jiyong Park | 100f3fd | 2019-11-06 16:03:32 +0900 | [diff] [blame] | 213 | android.AddLoadHook(s, func(ctx android.LoadHookContext) { |
| 214 | type props struct { |
| 215 | Compile_multilib *string |
| 216 | } |
| 217 | p := &props{Compile_multilib: proptools.StringPtr("both")} |
| 218 | ctx.AppendProperties(p) |
| 219 | }) |
Jiyong Park | d1063c1 | 2019-07-17 20:08:41 +0900 | [diff] [blame] | 220 | return s |
| 221 | } |
| 222 | |
Jiyong Park | 9b409bc | 2019-10-11 14:59:13 +0900 | [diff] [blame] | 223 | // sdk_snapshot is a versioned snapshot of an SDK. This is an auto-generated module. |
| 224 | func SnapshotModuleFactory() android.Module { |
Paul Duffin | e602918 | 2019-12-16 17:43:48 +0000 | [diff] [blame] | 225 | s := newSdkModule(false) |
Paul Duffin | 8150da6 | 2019-12-16 17:21:27 +0000 | [diff] [blame] | 226 | s.properties.Snapshot = true |
Jiyong Park | 9b409bc | 2019-10-11 14:59:13 +0900 | [diff] [blame] | 227 | return s |
| 228 | } |
| 229 | |
Paul Duffin | 7291095 | 2020-01-20 18:16:30 +0000 | [diff] [blame] | 230 | func (s *sdk) memberListProperties() []*sdkMemberListProperty { |
| 231 | return s.dynamicSdkMemberTypes.memberListProperties |
| 232 | } |
| 233 | |
| 234 | func (s *sdk) getExportedMembers() map[string]struct{} { |
| 235 | if s.exportedMembers == nil { |
| 236 | // Collect all the exported members. |
| 237 | s.exportedMembers = make(map[string]struct{}) |
| 238 | |
| 239 | for _, memberListProperty := range s.memberListProperties() { |
| 240 | names := memberListProperty.getter(s.dynamicMemberTypeListProperties) |
| 241 | |
| 242 | // Every member specified explicitly in the properties is exported by the sdk. |
| 243 | for _, name := range names { |
| 244 | s.exportedMembers[name] = struct{}{} |
| 245 | } |
| 246 | } |
| 247 | } |
| 248 | |
| 249 | return s.exportedMembers |
| 250 | } |
| 251 | |
| 252 | func (s *sdk) isInternalMember(memberName string) bool { |
| 253 | _, ok := s.getExportedMembers()[memberName] |
| 254 | return !ok |
| 255 | } |
| 256 | |
Jiyong Park | 9b409bc | 2019-10-11 14:59:13 +0900 | [diff] [blame] | 257 | func (s *sdk) snapshot() bool { |
| 258 | return s.properties.Snapshot |
| 259 | } |
| 260 | |
Jiyong Park | d1063c1 | 2019-07-17 20:08:41 +0900 | [diff] [blame] | 261 | func (s *sdk) GenerateAndroidBuildActions(ctx android.ModuleContext) { |
Paul Duffin | 1356d8c | 2020-02-25 19:26:33 +0000 | [diff] [blame^] | 262 | if s.snapshot() { |
Jiyong Park | 232e785 | 2019-11-04 12:23:40 +0900 | [diff] [blame] | 263 | // We don't need to create a snapshot out of sdk_snapshot. |
| 264 | // That doesn't make sense. We need a snapshot to create sdk_snapshot. |
Paul Duffin | 1356d8c | 2020-02-25 19:26:33 +0000 | [diff] [blame^] | 265 | return |
| 266 | } |
| 267 | |
| 268 | // This method is guaranteed to be called on OsType specific variants before it is called |
| 269 | // on their corresponding CommonOS variant. |
| 270 | if !s.IsCommonOSVariant() { |
| 271 | // Collect the OsType specific members are add them to the OsType specific variant. |
| 272 | s.memberRefs = s.collectMembers(ctx) |
| 273 | } else { |
| 274 | // Get the OsType specific variants on which the CommonOS depends. |
| 275 | osSpecificVariants := android.GetOsSpecificVariantsOfCommonOSVariant(ctx) |
| 276 | var sdkVariants []*sdk |
| 277 | for _, m := range osSpecificVariants { |
| 278 | if sdkVariant, ok := m.(*sdk); ok { |
| 279 | sdkVariants = append(sdkVariants, sdkVariant) |
| 280 | } |
| 281 | } |
| 282 | |
| 283 | // Generate the snapshot from the member info. |
| 284 | s.snapshotFile = android.OptionalPathForPath(s.buildSnapshot(ctx, sdkVariants)) |
Jiyong Park | 232e785 | 2019-11-04 12:23:40 +0900 | [diff] [blame] | 285 | } |
Jiyong Park | 9b409bc | 2019-10-11 14:59:13 +0900 | [diff] [blame] | 286 | } |
| 287 | |
Jiyong Park | 0b0e1b9 | 2019-12-03 13:24:29 +0900 | [diff] [blame] | 288 | func (s *sdk) AndroidMkEntries() []android.AndroidMkEntries { |
Jiyong Park | 232e785 | 2019-11-04 12:23:40 +0900 | [diff] [blame] | 289 | if !s.snapshotFile.Valid() { |
Jiyong Park | 0b0e1b9 | 2019-12-03 13:24:29 +0900 | [diff] [blame] | 290 | return []android.AndroidMkEntries{} |
Jiyong Park | 232e785 | 2019-11-04 12:23:40 +0900 | [diff] [blame] | 291 | } |
| 292 | |
Jiyong Park | 0b0e1b9 | 2019-12-03 13:24:29 +0900 | [diff] [blame] | 293 | return []android.AndroidMkEntries{android.AndroidMkEntries{ |
Jiyong Park | 232e785 | 2019-11-04 12:23:40 +0900 | [diff] [blame] | 294 | Class: "FAKE", |
| 295 | OutputFile: s.snapshotFile, |
| 296 | DistFile: s.snapshotFile, |
| 297 | Include: "$(BUILD_PHONY_PACKAGE)", |
Paul Duffin | 504b461 | 2019-11-22 14:52:29 +0000 | [diff] [blame] | 298 | ExtraFooters: []android.AndroidMkExtraFootersFunc{ |
| 299 | func(w io.Writer, name, prefix, moduleDir string, entries *android.AndroidMkEntries) { |
| 300 | // Allow the sdk to be built by simply passing its name on the command line. |
| 301 | fmt.Fprintln(w, ".PHONY:", s.Name()) |
| 302 | fmt.Fprintln(w, s.Name()+":", s.snapshotFile.String()) |
| 303 | }, |
| 304 | }, |
Jiyong Park | 0b0e1b9 | 2019-12-03 13:24:29 +0900 | [diff] [blame] | 305 | }} |
Jiyong Park | d1063c1 | 2019-07-17 20:08:41 +0900 | [diff] [blame] | 306 | } |
| 307 | |
| 308 | // RegisterPreDepsMutators registers pre-deps mutators to support modules implementing SdkAware |
| 309 | // interface and the sdk module type. This function has been made public to be called by tests |
| 310 | // outside of the sdk package |
| 311 | func RegisterPreDepsMutators(ctx android.RegisterMutatorsContext) { |
| 312 | ctx.BottomUp("SdkMember", memberMutator).Parallel() |
| 313 | ctx.TopDown("SdkMember_deps", memberDepsMutator).Parallel() |
| 314 | ctx.BottomUp("SdkMemberInterVersion", memberInterVersionMutator).Parallel() |
| 315 | } |
| 316 | |
| 317 | // RegisterPostDepshMutators registers post-deps mutators to support modules implementing SdkAware |
| 318 | // interface and the sdk module type. This function has been made public to be called by tests |
| 319 | // outside of the sdk package |
| 320 | func RegisterPostDepsMutators(ctx android.RegisterMutatorsContext) { |
| 321 | // These must run AFTER apexMutator. Note that the apex package is imported even though there is |
| 322 | // no direct dependency to the package here. sdkDepsMutator sets the SDK requirements from an |
| 323 | // APEX to its dependents. Since different versions of the same SDK can be used by different |
| 324 | // APEXes, the apex and its dependents (which includes the dependencies to the sdk members) |
| 325 | // should have been mutated for the apex before the SDK requirements are set. |
| 326 | ctx.TopDown("SdkDepsMutator", sdkDepsMutator).Parallel() |
| 327 | ctx.BottomUp("SdkDepsReplaceMutator", sdkDepsReplaceMutator).Parallel() |
Jiyong Park | a7bc8ad | 2019-10-15 15:20:07 +0900 | [diff] [blame] | 328 | ctx.TopDown("SdkRequirementCheck", sdkRequirementsMutator).Parallel() |
Jiyong Park | d1063c1 | 2019-07-17 20:08:41 +0900 | [diff] [blame] | 329 | } |
| 330 | |
| 331 | type dependencyTag struct { |
| 332 | blueprint.BaseDependencyTag |
| 333 | } |
| 334 | |
Jiyong Park | d1063c1 | 2019-07-17 20:08:41 +0900 | [diff] [blame] | 335 | // For dependencies from an in-development version of an SDK member to frozen versions of the same member |
| 336 | // e.g. libfoo -> libfoo.mysdk.11 and libfoo.mysdk.12 |
Paul Duffin | fe14922 | 2020-01-14 14:06:09 +0000 | [diff] [blame] | 337 | type sdkMemberVersionedDepTag struct { |
Jiyong Park | d1063c1 | 2019-07-17 20:08:41 +0900 | [diff] [blame] | 338 | dependencyTag |
| 339 | member string |
| 340 | version string |
| 341 | } |
| 342 | |
Paul Duffin | fe14922 | 2020-01-14 14:06:09 +0000 | [diff] [blame] | 343 | // Mark this tag so dependencies that use it are excluded from visibility enforcement. |
| 344 | func (t sdkMemberVersionedDepTag) ExcludeFromVisibilityEnforcement() {} |
| 345 | |
Jiyong Park | d1063c1 | 2019-07-17 20:08:41 +0900 | [diff] [blame] | 346 | // Step 1: create dependencies from an SDK module to its members. |
| 347 | func memberMutator(mctx android.BottomUpMutatorContext) { |
Paul Duffin | 255f18e | 2019-12-13 11:22:16 +0000 | [diff] [blame] | 348 | if s, ok := mctx.Module().(*sdk); ok { |
Paul Duffin | 1356d8c | 2020-02-25 19:26:33 +0000 | [diff] [blame^] | 349 | // Add dependencies from enabled and non CommonOS variants to the sdk member variants. |
| 350 | if s.Enabled() && !s.IsCommonOSVariant() { |
Paul Duffin | 583bf7e | 2020-02-20 13:39:41 +0000 | [diff] [blame] | 351 | for _, memberListProperty := range s.memberListProperties() { |
| 352 | names := memberListProperty.getter(s.dynamicMemberTypeListProperties) |
Paul Duffin | cc1b3da | 2020-02-27 13:29:56 +0000 | [diff] [blame] | 353 | if len(names) > 0 { |
| 354 | tag := memberListProperty.dependencyTag |
| 355 | memberListProperty.memberType.AddDependencies(mctx, tag, names) |
| 356 | } |
Paul Duffin | 583bf7e | 2020-02-20 13:39:41 +0000 | [diff] [blame] | 357 | } |
Jiyong Park | d1063c1 | 2019-07-17 20:08:41 +0900 | [diff] [blame] | 358 | } |
| 359 | } |
| 360 | } |
| 361 | |
| 362 | // Step 2: record that dependencies of SDK modules are members of the SDK modules |
| 363 | func memberDepsMutator(mctx android.TopDownMutatorContext) { |
Jiyong Park | 9b409bc | 2019-10-11 14:59:13 +0900 | [diff] [blame] | 364 | if s, ok := mctx.Module().(*sdk); ok { |
Jiyong Park | d1063c1 | 2019-07-17 20:08:41 +0900 | [diff] [blame] | 365 | mySdkRef := android.ParseSdkRef(mctx, mctx.ModuleName(), "name") |
Jiyong Park | 9b409bc | 2019-10-11 14:59:13 +0900 | [diff] [blame] | 366 | if s.snapshot() && mySdkRef.Unversioned() { |
| 367 | mctx.PropertyErrorf("name", "sdk_snapshot should be named as <name>@<version>. "+ |
| 368 | "Did you manually modify Android.bp?") |
| 369 | } |
| 370 | if !s.snapshot() && !mySdkRef.Unversioned() { |
| 371 | mctx.PropertyErrorf("name", "sdk shouldn't be named as <name>@<version>.") |
| 372 | } |
| 373 | if mySdkRef.Version != "" && mySdkRef.Version != "current" { |
| 374 | if _, err := strconv.Atoi(mySdkRef.Version); err != nil { |
| 375 | mctx.PropertyErrorf("name", "version %q is neither a number nor \"current\"", mySdkRef.Version) |
| 376 | } |
| 377 | } |
| 378 | |
Jiyong Park | d1063c1 | 2019-07-17 20:08:41 +0900 | [diff] [blame] | 379 | mctx.VisitDirectDeps(func(child android.Module) { |
| 380 | if member, ok := child.(android.SdkAware); ok { |
| 381 | member.MakeMemberOf(mySdkRef) |
| 382 | } |
| 383 | }) |
| 384 | } |
| 385 | } |
| 386 | |
Jiyong Park | 9b409bc | 2019-10-11 14:59:13 +0900 | [diff] [blame] | 387 | // Step 3: create dependencies from the unversioned SDK member to snapshot versions |
Jiyong Park | d1063c1 | 2019-07-17 20:08:41 +0900 | [diff] [blame] | 388 | // of the same member. By having these dependencies, they are mutated for multiple Mainline modules |
| 389 | // (apex and apk), each of which might want different sdks to be built with. For example, if both |
| 390 | // apex A and B are referencing libfoo which is a member of sdk 'mysdk', the two APEXes can be |
| 391 | // built with libfoo.mysdk.11 and libfoo.mysdk.12, respectively depending on which sdk they are |
| 392 | // using. |
| 393 | func memberInterVersionMutator(mctx android.BottomUpMutatorContext) { |
| 394 | if m, ok := mctx.Module().(android.SdkAware); ok && m.IsInAnySdk() { |
Jiyong Park | 9b409bc | 2019-10-11 14:59:13 +0900 | [diff] [blame] | 395 | if !m.ContainingSdk().Unversioned() { |
Jiyong Park | d1063c1 | 2019-07-17 20:08:41 +0900 | [diff] [blame] | 396 | memberName := m.MemberName() |
Paul Duffin | fe14922 | 2020-01-14 14:06:09 +0000 | [diff] [blame] | 397 | tag := sdkMemberVersionedDepTag{member: memberName, version: m.ContainingSdk().Version} |
Jiyong Park | d1063c1 | 2019-07-17 20:08:41 +0900 | [diff] [blame] | 398 | mctx.AddReverseDependency(mctx.Module(), tag, memberName) |
| 399 | } |
| 400 | } |
| 401 | } |
| 402 | |
| 403 | // Step 4: transitively ripple down the SDK requirements from the root modules like APEX to its |
| 404 | // descendants |
| 405 | func sdkDepsMutator(mctx android.TopDownMutatorContext) { |
| 406 | if m, ok := mctx.Module().(android.SdkAware); ok { |
| 407 | // Module types for Mainline modules (e.g. APEX) are expected to implement RequiredSdks() |
| 408 | // by reading its own properties like `uses_sdks`. |
| 409 | requiredSdks := m.RequiredSdks() |
| 410 | if len(requiredSdks) > 0 { |
| 411 | mctx.VisitDirectDeps(func(m android.Module) { |
| 412 | if dep, ok := m.(android.SdkAware); ok { |
| 413 | dep.BuildWithSdks(requiredSdks) |
| 414 | } |
| 415 | }) |
| 416 | } |
| 417 | } |
| 418 | } |
| 419 | |
| 420 | // Step 5: if libfoo.mysdk.11 is in the context where version 11 of mysdk is requested, the |
| 421 | // versioned module is used instead of the un-versioned (in-development) module libfoo |
| 422 | func sdkDepsReplaceMutator(mctx android.BottomUpMutatorContext) { |
| 423 | if m, ok := mctx.Module().(android.SdkAware); ok && m.IsInAnySdk() { |
Jiyong Park | 9b409bc | 2019-10-11 14:59:13 +0900 | [diff] [blame] | 424 | if sdk := m.ContainingSdk(); !sdk.Unversioned() { |
Jiyong Park | d1063c1 | 2019-07-17 20:08:41 +0900 | [diff] [blame] | 425 | if m.RequiredSdks().Contains(sdk) { |
| 426 | // Note that this replacement is done only for the modules that have the same |
| 427 | // variations as the current module. Since current module is already mutated for |
| 428 | // apex references in other APEXes are not affected by this replacement. |
| 429 | memberName := m.MemberName() |
| 430 | mctx.ReplaceDependencies(memberName) |
| 431 | } |
| 432 | } |
| 433 | } |
| 434 | } |
Jiyong Park | a7bc8ad | 2019-10-15 15:20:07 +0900 | [diff] [blame] | 435 | |
| 436 | // Step 6: ensure that the dependencies from outside of the APEX are all from the required SDKs |
| 437 | func sdkRequirementsMutator(mctx android.TopDownMutatorContext) { |
| 438 | if m, ok := mctx.Module().(interface { |
| 439 | DepIsInSameApex(ctx android.BaseModuleContext, dep android.Module) bool |
| 440 | RequiredSdks() android.SdkRefs |
| 441 | }); ok { |
| 442 | requiredSdks := m.RequiredSdks() |
| 443 | if len(requiredSdks) == 0 { |
| 444 | return |
| 445 | } |
| 446 | mctx.VisitDirectDeps(func(dep android.Module) { |
| 447 | if mctx.OtherModuleDependencyTag(dep) == android.DefaultsDepTag { |
| 448 | // dependency to defaults is always okay |
| 449 | return |
| 450 | } |
| 451 | |
| 452 | // If the dep is from outside of the APEX, but is not in any of the |
| 453 | // required SDKs, we know that the dep is a violation. |
| 454 | if sa, ok := dep.(android.SdkAware); ok { |
| 455 | if !m.DepIsInSameApex(mctx, dep) && !requiredSdks.Contains(sa.ContainingSdk()) { |
| 456 | mctx.ModuleErrorf("depends on %q (in SDK %q) that isn't part of the required SDKs: %v", |
| 457 | sa.Name(), sa.ContainingSdk(), requiredSdks) |
| 458 | } |
| 459 | } |
| 460 | }) |
| 461 | } |
| 462 | } |