blob: b9b8199d36f684ea8c11654ed6b3fb8baef72bdc [file] [log] [blame]
Jiyong Parkd1063c12019-07-17 20:08:41 +09001// 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
15package sdk
16
17import (
Jiyong Park9b409bc2019-10-11 14:59:13 +090018 "fmt"
Paul Duffin504b4612019-11-22 14:52:29 +000019 "io"
Paul Duffin255f18e2019-12-13 11:22:16 +000020 "reflect"
Jiyong Park9b409bc2019-10-11 14:59:13 +090021 "strconv"
22
Jiyong Parkd1063c12019-07-17 20:08:41 +090023 "github.com/google/blueprint"
Jiyong Park100f3fd2019-11-06 16:03:32 +090024 "github.com/google/blueprint/proptools"
Jiyong Parkd1063c12019-07-17 20:08:41 +090025
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
32func init() {
Jiyong Park232e7852019-11-04 12:23:40 +090033 pctx.Import("android/soong/android")
Paul Duffin375058f2019-11-29 20:17:53 +000034 pctx.Import("android/soong/java/config")
35
Paul Duffin8150da62019-12-16 17:21:27 +000036 android.RegisterModuleType("sdk", SdkModuleFactory)
Jiyong Park9b409bc2019-10-11 14:59:13 +090037 android.RegisterModuleType("sdk_snapshot", SnapshotModuleFactory)
Jiyong Parkd1063c12019-07-17 20:08:41 +090038 android.PreDepsMutators(RegisterPreDepsMutators)
39 android.PostDepsMutators(RegisterPostDepsMutators)
40}
41
42type sdk struct {
43 android.ModuleBase
44 android.DefaultableModuleBase
45
Paul Duffin255f18e2019-12-13 11:22:16 +000046 // 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 Duffin1356d8c2020-02-25 19:26:33 +000053 // Information about the OsType specific member variants associated with this variant.
54 //
Paul Duffin6a7e9532020-03-20 17:50:07 +000055 // Set by OsType specific variants in the collectMembers() method and used by the
56 // CommonOS variant when building the snapshot. That work is all done on separate
57 // calls to the sdk.GenerateAndroidBuildActions method which is guaranteed to be
58 // called for the OsType specific variants before the CommonOS variant (because
59 // the latter depends on the former).
Paul Duffin1356d8c2020-02-25 19:26:33 +000060 memberRefs []sdkMemberRef
61
Paul Duffin6a7e9532020-03-20 17:50:07 +000062 // The multilib variants that are used by this sdk variant.
63 multilibUsages multilibUsage
64
Jiyong Parkd1063c12019-07-17 20:08:41 +090065 properties sdkProperties
Jiyong Park9b409bc2019-10-11 14:59:13 +090066
Jiyong Park232e7852019-11-04 12:23:40 +090067 snapshotFile android.OptionalPath
Paul Duffinac37c502019-11-26 18:02:20 +000068
69 // The builder, preserved for testing.
70 builderForTests *snapshotBuilder
Jiyong Parkd1063c12019-07-17 20:08:41 +090071}
72
73type sdkProperties struct {
Jiyong Park9b409bc2019-10-11 14:59:13 +090074 Snapshot bool `blueprint:"mutated"`
Paul Duffin8150da62019-12-16 17:21:27 +000075
76 // True if this is a module_exports (or module_exports_snapshot) module type.
77 Module_exports bool `blueprint:"mutated"`
Jiyong Parkd1063c12019-07-17 20:08:41 +090078}
79
Paul Duffin13879572019-11-28 14:31:38 +000080// Contains information about the sdk properties that list sdk members, e.g.
Paul Duffina0dbf432019-12-05 11:25:53 +000081// Java_header_libs.
Paul Duffin13879572019-11-28 14:31:38 +000082type sdkMemberListProperty struct {
Paul Duffin13879572019-11-28 14:31:38 +000083 // getter for the list of member names
Paul Duffin255f18e2019-12-13 11:22:16 +000084 getter func(properties interface{}) []string
Paul Duffin13879572019-11-28 14:31:38 +000085
86 // the type of member referenced in the list
87 memberType android.SdkMemberType
88
Paul Duffin255f18e2019-12-13 11:22:16 +000089 // the dependency tag used for items in this list that can be used to determine the memberType
90 // for a resolved dependency.
Paul Duffinf8539922019-11-19 19:44:10 +000091 dependencyTag android.SdkMemberTypeDependencyTag
Paul Duffin13879572019-11-28 14:31:38 +000092}
93
Paul Duffin255f18e2019-12-13 11:22:16 +000094func (p *sdkMemberListProperty) propertyName() string {
95 return p.memberType.SdkPropertyName()
96}
97
98// Cache of dynamically generated dynamicSdkMemberTypes objects. The key is the pointer
99// to a slice of SdkMemberType instances held in android.SdkMemberTypes.
100var dynamicSdkMemberTypesMap android.OncePer
101
102// A dynamically generated set of member list properties and associated structure type.
103type dynamicSdkMemberTypes struct {
104 // The dynamically generated structure type.
105 //
106 // Contains one []string exported field for each android.SdkMemberTypes. The name of the field
107 // is the exported form of the value returned by SdkMemberType.SdkPropertyName().
108 propertiesStructType reflect.Type
109
110 // Information about each of the member type specific list properties.
111 memberListProperties []*sdkMemberListProperty
112}
113
114func (d *dynamicSdkMemberTypes) createMemberListProperties() interface{} {
115 return reflect.New(d.propertiesStructType).Interface()
116}
117
118func getDynamicSdkMemberTypes(registry *android.SdkMemberTypesRegistry) *dynamicSdkMemberTypes {
119
120 // Get a key that uniquely identifies the registry contents.
121 key := registry.UniqueOnceKey()
122
123 // Get the registered types.
124 registeredTypes := registry.RegisteredTypes()
125
126 // Get the cached value, creating new instance if necessary.
127 return dynamicSdkMemberTypesMap.Once(key, func() interface{} {
128 return createDynamicSdkMemberTypes(registeredTypes)
129 }).(*dynamicSdkMemberTypes)
130}
131
132// Create the dynamicSdkMemberTypes from the list of registered member types.
Paul Duffina6e737b2019-11-29 11:55:51 +0000133//
Paul Duffin255f18e2019-12-13 11:22:16 +0000134// A struct is created which contains one exported field per member type corresponding to
135// the SdkMemberType.SdkPropertyName() value.
136//
137// A list of sdkMemberListProperty instances is created, one per member type that provides:
138// * a reference to the member type.
139// * a getter for the corresponding field in the properties struct.
140// * a dependency tag that identifies the member type of a resolved dependency.
141//
142func createDynamicSdkMemberTypes(sdkMemberTypes []android.SdkMemberType) *dynamicSdkMemberTypes {
Paul Duffine6029182019-12-16 17:43:48 +0000143
Paul Duffin255f18e2019-12-13 11:22:16 +0000144 var listProperties []*sdkMemberListProperty
145 var fields []reflect.StructField
146
147 // Iterate over the member types creating StructField and sdkMemberListProperty objects.
148 for f, memberType := range sdkMemberTypes {
149 p := memberType.SdkPropertyName()
150
151 // Create a dynamic exported field for the member type's property.
152 fields = append(fields, reflect.StructField{
153 Name: proptools.FieldNameForProperty(p),
154 Type: reflect.TypeOf([]string{}),
Paul Duffin865171e2020-03-02 18:38:15 +0000155 Tag: `android:"arch_variant"`,
Paul Duffin255f18e2019-12-13 11:22:16 +0000156 })
157
158 // Copy the field index for use in the getter func as using the loop variable directly will
159 // cause all funcs to use the last value.
160 fieldIndex := f
161
162 // Create an sdkMemberListProperty for the member type.
163 memberListProperty := &sdkMemberListProperty{
164 getter: func(properties interface{}) []string {
165 // The properties is expected to be of the following form (where
166 // <Module_types> is the name of an SdkMemberType.SdkPropertyName().
167 // properties *struct {<Module_types> []string, ....}
168 //
169 // Although it accesses the field by index the following reflection code is equivalent to:
170 // *properties.<Module_types>
171 //
172 list := reflect.ValueOf(properties).Elem().Field(fieldIndex).Interface().([]string)
173 return list
174 },
175
176 memberType: memberType,
177
Paul Duffinf8539922019-11-19 19:44:10 +0000178 dependencyTag: android.DependencyTagForSdkMemberType(memberType),
Paul Duffin255f18e2019-12-13 11:22:16 +0000179 }
180
181 listProperties = append(listProperties, memberListProperty)
182 }
183
184 // Create a dynamic struct from the collated fields.
185 propertiesStructType := reflect.StructOf(fields)
186
187 return &dynamicSdkMemberTypes{
188 memberListProperties: listProperties,
189 propertiesStructType: propertiesStructType,
190 }
Paul Duffin13879572019-11-28 14:31:38 +0000191}
192
Jiyong Parkd1063c12019-07-17 20:08:41 +0900193// sdk defines an SDK which is a logical group of modules (e.g. native libs, headers, java libs, etc.)
194// which Mainline modules like APEX can choose to build with.
Paul Duffin8150da62019-12-16 17:21:27 +0000195func SdkModuleFactory() android.Module {
Paul Duffine6029182019-12-16 17:43:48 +0000196 return newSdkModule(false)
Paul Duffin8150da62019-12-16 17:21:27 +0000197}
Paul Duffin255f18e2019-12-13 11:22:16 +0000198
Paul Duffine6029182019-12-16 17:43:48 +0000199func newSdkModule(moduleExports bool) *sdk {
Paul Duffin8150da62019-12-16 17:21:27 +0000200 s := &sdk{}
Paul Duffine6029182019-12-16 17:43:48 +0000201 s.properties.Module_exports = moduleExports
Paul Duffin255f18e2019-12-13 11:22:16 +0000202 // Get the dynamic sdk member type data for the currently registered sdk member types.
Paul Duffine6029182019-12-16 17:43:48 +0000203 var registry *android.SdkMemberTypesRegistry
204 if moduleExports {
205 registry = android.ModuleExportsMemberTypes
206 } else {
207 registry = android.SdkMemberTypes
208 }
209 s.dynamicSdkMemberTypes = getDynamicSdkMemberTypes(registry)
Paul Duffin255f18e2019-12-13 11:22:16 +0000210 // Create an instance of the dynamically created struct that contains all the
211 // properties for the member type specific list properties.
212 s.dynamicMemberTypeListProperties = s.dynamicSdkMemberTypes.createMemberListProperties()
Paul Duffin255f18e2019-12-13 11:22:16 +0000213 s.AddProperties(&s.properties, s.dynamicMemberTypeListProperties)
Paul Duffin1356d8c2020-02-25 19:26:33 +0000214 android.InitCommonOSAndroidMultiTargetsArchModule(s, android.HostAndDeviceSupported, android.MultilibCommon)
Jiyong Parkd1063c12019-07-17 20:08:41 +0900215 android.InitDefaultableModule(s)
Jiyong Park100f3fd2019-11-06 16:03:32 +0900216 android.AddLoadHook(s, func(ctx android.LoadHookContext) {
217 type props struct {
218 Compile_multilib *string
219 }
220 p := &props{Compile_multilib: proptools.StringPtr("both")}
221 ctx.AppendProperties(p)
222 })
Jiyong Parkd1063c12019-07-17 20:08:41 +0900223 return s
224}
225
Jiyong Park9b409bc2019-10-11 14:59:13 +0900226// sdk_snapshot is a versioned snapshot of an SDK. This is an auto-generated module.
227func SnapshotModuleFactory() android.Module {
Paul Duffine6029182019-12-16 17:43:48 +0000228 s := newSdkModule(false)
Paul Duffin8150da62019-12-16 17:21:27 +0000229 s.properties.Snapshot = true
Jiyong Park9b409bc2019-10-11 14:59:13 +0900230 return s
231}
232
Paul Duffin72910952020-01-20 18:16:30 +0000233func (s *sdk) memberListProperties() []*sdkMemberListProperty {
234 return s.dynamicSdkMemberTypes.memberListProperties
235}
236
237func (s *sdk) getExportedMembers() map[string]struct{} {
Paul Duffin13f02712020-03-06 12:30:43 +0000238 // Collect all the exported members.
239 exportedMembers := make(map[string]struct{})
Paul Duffin72910952020-01-20 18:16:30 +0000240
Paul Duffin13f02712020-03-06 12:30:43 +0000241 for _, memberListProperty := range s.memberListProperties() {
242 names := memberListProperty.getter(s.dynamicMemberTypeListProperties)
Paul Duffin72910952020-01-20 18:16:30 +0000243
Paul Duffin13f02712020-03-06 12:30:43 +0000244 // Every member specified explicitly in the properties is exported by the sdk.
245 for _, name := range names {
246 exportedMembers[name] = struct{}{}
Paul Duffin72910952020-01-20 18:16:30 +0000247 }
248 }
249
Paul Duffin13f02712020-03-06 12:30:43 +0000250 return exportedMembers
Paul Duffin72910952020-01-20 18:16:30 +0000251}
252
Jiyong Park9b409bc2019-10-11 14:59:13 +0900253func (s *sdk) snapshot() bool {
254 return s.properties.Snapshot
255}
256
Jiyong Parkd1063c12019-07-17 20:08:41 +0900257func (s *sdk) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Paul Duffin1356d8c2020-02-25 19:26:33 +0000258 if s.snapshot() {
Jiyong Park232e7852019-11-04 12:23:40 +0900259 // We don't need to create a snapshot out of sdk_snapshot.
260 // That doesn't make sense. We need a snapshot to create sdk_snapshot.
Paul Duffin1356d8c2020-02-25 19:26:33 +0000261 return
262 }
263
264 // This method is guaranteed to be called on OsType specific variants before it is called
265 // on their corresponding CommonOS variant.
266 if !s.IsCommonOSVariant() {
Paul Duffin6a7e9532020-03-20 17:50:07 +0000267 // Update the OsType specific sdk variant with information about its members.
268 s.collectMembers(ctx)
Paul Duffin1356d8c2020-02-25 19:26:33 +0000269 } else {
270 // Get the OsType specific variants on which the CommonOS depends.
271 osSpecificVariants := android.GetOsSpecificVariantsOfCommonOSVariant(ctx)
272 var sdkVariants []*sdk
273 for _, m := range osSpecificVariants {
274 if sdkVariant, ok := m.(*sdk); ok {
275 sdkVariants = append(sdkVariants, sdkVariant)
276 }
277 }
278
279 // Generate the snapshot from the member info.
Nicolas Geoffray1228e9c2020-02-27 13:45:35 +0000280 p := s.buildSnapshot(ctx, sdkVariants)
281 s.snapshotFile = android.OptionalPathForPath(p)
282 ctx.InstallFile(android.PathForMainlineSdksInstall(ctx), s.Name()+"-current.zip", p)
Jiyong Park232e7852019-11-04 12:23:40 +0900283 }
Jiyong Park9b409bc2019-10-11 14:59:13 +0900284}
285
Jiyong Park0b0e1b92019-12-03 13:24:29 +0900286func (s *sdk) AndroidMkEntries() []android.AndroidMkEntries {
Jiyong Park232e7852019-11-04 12:23:40 +0900287 if !s.snapshotFile.Valid() {
Jiyong Park0b0e1b92019-12-03 13:24:29 +0900288 return []android.AndroidMkEntries{}
Jiyong Park232e7852019-11-04 12:23:40 +0900289 }
290
Jiyong Park0b0e1b92019-12-03 13:24:29 +0900291 return []android.AndroidMkEntries{android.AndroidMkEntries{
Jiyong Park232e7852019-11-04 12:23:40 +0900292 Class: "FAKE",
293 OutputFile: s.snapshotFile,
Jingwen Chen40fd90a2020-06-15 05:24:19 +0000294 DistFiles: android.MakeDefaultDistFiles(s.snapshotFile.Path()),
Jiyong Park232e7852019-11-04 12:23:40 +0900295 Include: "$(BUILD_PHONY_PACKAGE)",
Paul Duffin504b4612019-11-22 14:52:29 +0000296 ExtraFooters: []android.AndroidMkExtraFootersFunc{
297 func(w io.Writer, name, prefix, moduleDir string, entries *android.AndroidMkEntries) {
298 // Allow the sdk to be built by simply passing its name on the command line.
299 fmt.Fprintln(w, ".PHONY:", s.Name())
300 fmt.Fprintln(w, s.Name()+":", s.snapshotFile.String())
301 },
302 },
Jiyong Park0b0e1b92019-12-03 13:24:29 +0900303 }}
Jiyong Parkd1063c12019-07-17 20:08:41 +0900304}
305
306// RegisterPreDepsMutators registers pre-deps mutators to support modules implementing SdkAware
307// interface and the sdk module type. This function has been made public to be called by tests
308// outside of the sdk package
309func RegisterPreDepsMutators(ctx android.RegisterMutatorsContext) {
310 ctx.BottomUp("SdkMember", memberMutator).Parallel()
311 ctx.TopDown("SdkMember_deps", memberDepsMutator).Parallel()
312 ctx.BottomUp("SdkMemberInterVersion", memberInterVersionMutator).Parallel()
313}
314
Paul Duffin65347702020-03-31 15:23:40 +0100315// RegisterPostDepsMutators registers post-deps mutators to support modules implementing SdkAware
Jiyong Parkd1063c12019-07-17 20:08:41 +0900316// interface and the sdk module type. This function has been made public to be called by tests
317// outside of the sdk package
318func RegisterPostDepsMutators(ctx android.RegisterMutatorsContext) {
319 // These must run AFTER apexMutator. Note that the apex package is imported even though there is
320 // no direct dependency to the package here. sdkDepsMutator sets the SDK requirements from an
321 // APEX to its dependents. Since different versions of the same SDK can be used by different
322 // APEXes, the apex and its dependents (which includes the dependencies to the sdk members)
323 // should have been mutated for the apex before the SDK requirements are set.
324 ctx.TopDown("SdkDepsMutator", sdkDepsMutator).Parallel()
325 ctx.BottomUp("SdkDepsReplaceMutator", sdkDepsReplaceMutator).Parallel()
Jiyong Parka7bc8ad2019-10-15 15:20:07 +0900326 ctx.TopDown("SdkRequirementCheck", sdkRequirementsMutator).Parallel()
Jiyong Parkd1063c12019-07-17 20:08:41 +0900327}
328
329type dependencyTag struct {
330 blueprint.BaseDependencyTag
331}
332
Jiyong Parkd1063c12019-07-17 20:08:41 +0900333// For dependencies from an in-development version of an SDK member to frozen versions of the same member
334// e.g. libfoo -> libfoo.mysdk.11 and libfoo.mysdk.12
Paul Duffinfe149222020-01-14 14:06:09 +0000335type sdkMemberVersionedDepTag struct {
Jiyong Parkd1063c12019-07-17 20:08:41 +0900336 dependencyTag
337 member string
338 version string
339}
340
Paul Duffinfe149222020-01-14 14:06:09 +0000341// Mark this tag so dependencies that use it are excluded from visibility enforcement.
342func (t sdkMemberVersionedDepTag) ExcludeFromVisibilityEnforcement() {}
343
Jiyong Parkd1063c12019-07-17 20:08:41 +0900344// Step 1: create dependencies from an SDK module to its members.
345func memberMutator(mctx android.BottomUpMutatorContext) {
Paul Duffin255f18e2019-12-13 11:22:16 +0000346 if s, ok := mctx.Module().(*sdk); ok {
Paul Duffin1356d8c2020-02-25 19:26:33 +0000347 // Add dependencies from enabled and non CommonOS variants to the sdk member variants.
348 if s.Enabled() && !s.IsCommonOSVariant() {
Paul Duffin583bf7e2020-02-20 13:39:41 +0000349 for _, memberListProperty := range s.memberListProperties() {
350 names := memberListProperty.getter(s.dynamicMemberTypeListProperties)
Paul Duffincc1b3da2020-02-27 13:29:56 +0000351 if len(names) > 0 {
352 tag := memberListProperty.dependencyTag
353 memberListProperty.memberType.AddDependencies(mctx, tag, names)
354 }
Paul Duffin583bf7e2020-02-20 13:39:41 +0000355 }
Jiyong Parkd1063c12019-07-17 20:08:41 +0900356 }
357 }
358}
359
360// Step 2: record that dependencies of SDK modules are members of the SDK modules
361func memberDepsMutator(mctx android.TopDownMutatorContext) {
Jiyong Park9b409bc2019-10-11 14:59:13 +0900362 if s, ok := mctx.Module().(*sdk); ok {
Jiyong Parkd1063c12019-07-17 20:08:41 +0900363 mySdkRef := android.ParseSdkRef(mctx, mctx.ModuleName(), "name")
Jiyong Park9b409bc2019-10-11 14:59:13 +0900364 if s.snapshot() && mySdkRef.Unversioned() {
365 mctx.PropertyErrorf("name", "sdk_snapshot should be named as <name>@<version>. "+
366 "Did you manually modify Android.bp?")
367 }
368 if !s.snapshot() && !mySdkRef.Unversioned() {
369 mctx.PropertyErrorf("name", "sdk shouldn't be named as <name>@<version>.")
370 }
371 if mySdkRef.Version != "" && mySdkRef.Version != "current" {
372 if _, err := strconv.Atoi(mySdkRef.Version); err != nil {
373 mctx.PropertyErrorf("name", "version %q is neither a number nor \"current\"", mySdkRef.Version)
374 }
375 }
376
Jiyong Parkd1063c12019-07-17 20:08:41 +0900377 mctx.VisitDirectDeps(func(child android.Module) {
378 if member, ok := child.(android.SdkAware); ok {
379 member.MakeMemberOf(mySdkRef)
380 }
381 })
382 }
383}
384
Jiyong Park9b409bc2019-10-11 14:59:13 +0900385// Step 3: create dependencies from the unversioned SDK member to snapshot versions
Jiyong Parkd1063c12019-07-17 20:08:41 +0900386// of the same member. By having these dependencies, they are mutated for multiple Mainline modules
387// (apex and apk), each of which might want different sdks to be built with. For example, if both
388// apex A and B are referencing libfoo which is a member of sdk 'mysdk', the two APEXes can be
389// built with libfoo.mysdk.11 and libfoo.mysdk.12, respectively depending on which sdk they are
390// using.
391func memberInterVersionMutator(mctx android.BottomUpMutatorContext) {
392 if m, ok := mctx.Module().(android.SdkAware); ok && m.IsInAnySdk() {
Jiyong Park9b409bc2019-10-11 14:59:13 +0900393 if !m.ContainingSdk().Unversioned() {
Jiyong Parkd1063c12019-07-17 20:08:41 +0900394 memberName := m.MemberName()
Paul Duffinfe149222020-01-14 14:06:09 +0000395 tag := sdkMemberVersionedDepTag{member: memberName, version: m.ContainingSdk().Version}
Jiyong Parkd1063c12019-07-17 20:08:41 +0900396 mctx.AddReverseDependency(mctx.Module(), tag, memberName)
397 }
398 }
399}
400
401// Step 4: transitively ripple down the SDK requirements from the root modules like APEX to its
402// descendants
403func sdkDepsMutator(mctx android.TopDownMutatorContext) {
404 if m, ok := mctx.Module().(android.SdkAware); ok {
405 // Module types for Mainline modules (e.g. APEX) are expected to implement RequiredSdks()
406 // by reading its own properties like `uses_sdks`.
407 requiredSdks := m.RequiredSdks()
408 if len(requiredSdks) > 0 {
409 mctx.VisitDirectDeps(func(m android.Module) {
410 if dep, ok := m.(android.SdkAware); ok {
411 dep.BuildWithSdks(requiredSdks)
412 }
413 })
414 }
415 }
416}
417
418// Step 5: if libfoo.mysdk.11 is in the context where version 11 of mysdk is requested, the
419// versioned module is used instead of the un-versioned (in-development) module libfoo
420func sdkDepsReplaceMutator(mctx android.BottomUpMutatorContext) {
421 if m, ok := mctx.Module().(android.SdkAware); ok && m.IsInAnySdk() {
Jiyong Park9b409bc2019-10-11 14:59:13 +0900422 if sdk := m.ContainingSdk(); !sdk.Unversioned() {
Jiyong Parkd1063c12019-07-17 20:08:41 +0900423 if m.RequiredSdks().Contains(sdk) {
424 // Note that this replacement is done only for the modules that have the same
425 // variations as the current module. Since current module is already mutated for
426 // apex references in other APEXes are not affected by this replacement.
427 memberName := m.MemberName()
428 mctx.ReplaceDependencies(memberName)
429 }
430 }
431 }
432}
Jiyong Parka7bc8ad2019-10-15 15:20:07 +0900433
Paul Duffin65347702020-03-31 15:23:40 +0100434// Step 6: ensure that the dependencies outside of the APEX are all from the required SDKs
Jiyong Parka7bc8ad2019-10-15 15:20:07 +0900435func sdkRequirementsMutator(mctx android.TopDownMutatorContext) {
436 if m, ok := mctx.Module().(interface {
Paul Duffin923e8a52020-03-30 15:33:32 +0100437 android.DepIsInSameApex
438 android.RequiredSdks
Jiyong Parka7bc8ad2019-10-15 15:20:07 +0900439 }); ok {
440 requiredSdks := m.RequiredSdks()
441 if len(requiredSdks) == 0 {
442 return
443 }
444 mctx.VisitDirectDeps(func(dep android.Module) {
Paul Duffin65347702020-03-31 15:23:40 +0100445 tag := mctx.OtherModuleDependencyTag(dep)
446 if tag == android.DefaultsDepTag {
Jiyong Parka7bc8ad2019-10-15 15:20:07 +0900447 // dependency to defaults is always okay
448 return
449 }
450
Paul Duffin65347702020-03-31 15:23:40 +0100451 // Ignore the dependency from the unversioned member to any versioned members as an
452 // apex that depends on the unversioned member will not also be depending on a versioned
453 // member.
454 if _, ok := tag.(sdkMemberVersionedDepTag); ok {
455 return
456 }
457
458 // If the dep is outside of the APEX, but is not in any of the
Jiyong Parka7bc8ad2019-10-15 15:20:07 +0900459 // required SDKs, we know that the dep is a violation.
460 if sa, ok := dep.(android.SdkAware); ok {
461 if !m.DepIsInSameApex(mctx, dep) && !requiredSdks.Contains(sa.ContainingSdk()) {
462 mctx.ModuleErrorf("depends on %q (in SDK %q) that isn't part of the required SDKs: %v",
463 sa.Name(), sa.ContainingSdk(), requiredSdks)
464 }
465 }
466 })
467 }
468}