blob: 73a03088a0eaca044f9cbe1c7bb1716346a7b9ef [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 android
16
17import (
Paul Duffind19f8942021-07-14 12:08:37 +010018 "fmt"
Paul Duffin255f18e2019-12-13 11:22:16 +000019 "sort"
Jiyong Parkd1063c12019-07-17 20:08:41 +090020 "strings"
21
Paul Duffin13879572019-11-28 14:31:38 +000022 "github.com/google/blueprint"
Jiyong Parkd1063c12019-07-17 20:08:41 +090023 "github.com/google/blueprint/proptools"
24)
25
Paul Duffin94289702021-09-09 15:38:32 +010026// RequiredSdks provides access to the set of SDKs required by an APEX and its contents.
27//
Paul Duffin923e8a52020-03-30 15:33:32 +010028// Extracted from SdkAware to make it easier to define custom subsets of the
29// SdkAware interface and improve code navigation within the IDE.
30//
31// In addition to its use in SdkAware this interface must also be implemented by
32// APEX to specify the SDKs required by that module and its contents. e.g. APEX
33// is expected to implement RequiredSdks() by reading its own properties like
34// `uses_sdks`.
35type RequiredSdks interface {
Paul Duffin94289702021-09-09 15:38:32 +010036 // RequiredSdks returns the set of SDKs required by an APEX and its contents.
Paul Duffin923e8a52020-03-30 15:33:32 +010037 RequiredSdks() SdkRefs
38}
39
Paul Duffin94289702021-09-09 15:38:32 +010040// sdkAwareWithoutModule is provided simply to improve code navigation with the IDE.
Paul Duffin50f0da42020-07-22 13:52:01 +010041type sdkAwareWithoutModule interface {
Paul Duffin923e8a52020-03-30 15:33:32 +010042 RequiredSdks
43
Paul Duffinb97b1572021-04-29 21:50:40 +010044 // SdkMemberComponentName will return the name to use for a component of this module based on the
45 // base name of this module.
46 //
47 // The baseName is the name returned by ModuleBase.BaseModuleName(), i.e. the name specified in
48 // the name property in the .bp file so will not include the prebuilt_ prefix.
49 //
50 // The componentNameCreator is a func for creating the name of a component from the base name of
51 // the module, e.g. it could just append ".component" to the name passed in.
52 //
53 // This is intended to be called by prebuilt modules that create component models. It is because
54 // prebuilt module base names come in a variety of different forms:
55 // * unversioned - this is the same as the source module.
56 // * internal to an sdk - this is the unversioned name prefixed by the base name of the sdk
57 // module.
58 // * versioned - this is the same as the internal with the addition of an "@<version>" suffix.
59 //
60 // While this can be called from a source module in that case it will behave the same way as the
61 // unversioned name and return the result of calling the componentNameCreator func on the supplied
62 // base name.
63 //
64 // e.g. Assuming the componentNameCreator func simply appends ".component" to the name passed in
65 // then this will work as follows:
66 // * An unversioned name of "foo" will return "foo.component".
67 // * An internal to the sdk name of "sdk_foo" will return "sdk_foo.component".
68 // * A versioned name of "sdk_foo@current" will return "sdk_foo.component@current".
69 //
70 // Note that in the latter case the ".component" suffix is added before the version. Adding it
71 // after would change the version.
72 SdkMemberComponentName(baseName string, componentNameCreator func(string) string) string
73
Jiyong Parkd1063c12019-07-17 20:08:41 +090074 sdkBase() *SdkBase
75 MakeMemberOf(sdk SdkRef)
76 IsInAnySdk() bool
Paul Duffinb9e7a3c2021-05-06 15:53:19 +010077
78 // IsVersioned determines whether the module is versioned, i.e. has a name of the form
79 // <name>@<version>
80 IsVersioned() bool
81
Jiyong Parkd1063c12019-07-17 20:08:41 +090082 ContainingSdk() SdkRef
83 MemberName() string
84 BuildWithSdks(sdks SdkRefs)
Jiyong Parkd1063c12019-07-17 20:08:41 +090085}
86
Paul Duffin50f0da42020-07-22 13:52:01 +010087// SdkAware is the interface that must be supported by any module to become a member of SDK or to be
88// built with SDK
89type SdkAware interface {
90 Module
91 sdkAwareWithoutModule
92}
93
Jiyong Parkd1063c12019-07-17 20:08:41 +090094// SdkRef refers to a version of an SDK
95type SdkRef struct {
96 Name string
97 Version string
98}
99
Jiyong Park9b409bc2019-10-11 14:59:13 +0900100// Unversioned determines if the SdkRef is referencing to the unversioned SDK module
101func (s SdkRef) Unversioned() bool {
102 return s.Version == ""
Jiyong Parkd1063c12019-07-17 20:08:41 +0900103}
104
Jiyong Parka7bc8ad2019-10-15 15:20:07 +0900105// String returns string representation of this SdkRef for debugging purpose
106func (s SdkRef) String() string {
107 if s.Name == "" {
108 return "(No Sdk)"
109 }
110 if s.Unversioned() {
111 return s.Name
112 }
113 return s.Name + string(SdkVersionSeparator) + s.Version
114}
115
Jiyong Park9b409bc2019-10-11 14:59:13 +0900116// SdkVersionSeparator is a character used to separate an sdk name and its version
117const SdkVersionSeparator = '@'
Jiyong Parkd1063c12019-07-17 20:08:41 +0900118
Jiyong Park9b409bc2019-10-11 14:59:13 +0900119// ParseSdkRef parses a `name@version` style string into a corresponding SdkRef struct
Jiyong Parkd1063c12019-07-17 20:08:41 +0900120func ParseSdkRef(ctx BaseModuleContext, str string, property string) SdkRef {
Jiyong Park9b409bc2019-10-11 14:59:13 +0900121 tokens := strings.Split(str, string(SdkVersionSeparator))
Jiyong Parkd1063c12019-07-17 20:08:41 +0900122 if len(tokens) < 1 || len(tokens) > 2 {
Paul Duffin525a5902021-05-06 16:33:52 +0100123 ctx.PropertyErrorf(property, "%q does not follow name@version syntax", str)
Jiyong Parkd1063c12019-07-17 20:08:41 +0900124 return SdkRef{Name: "invalid sdk name", Version: "invalid sdk version"}
125 }
126
127 name := tokens[0]
128
Jiyong Park9b409bc2019-10-11 14:59:13 +0900129 var version string
Jiyong Parkd1063c12019-07-17 20:08:41 +0900130 if len(tokens) == 2 {
131 version = tokens[1]
132 }
133
134 return SdkRef{Name: name, Version: version}
135}
136
137type SdkRefs []SdkRef
138
Jiyong Park9b409bc2019-10-11 14:59:13 +0900139// Contains tells if the given SdkRef is in this list of SdkRef's
Jiyong Parkd1063c12019-07-17 20:08:41 +0900140func (refs SdkRefs) Contains(s SdkRef) bool {
141 for _, r := range refs {
142 if r == s {
143 return true
144 }
145 }
146 return false
147}
148
149type sdkProperties struct {
150 // The SDK that this module is a member of. nil if it is not a member of any SDK
151 ContainingSdk *SdkRef `blueprint:"mutated"`
152
153 // The list of SDK names and versions that are used to build this module
154 RequiredSdks SdkRefs `blueprint:"mutated"`
155
156 // Name of the module that this sdk member is representing
157 Sdk_member_name *string
158}
159
160// SdkBase is a struct that is expected to be included in module types to implement the SdkAware
161// interface. InitSdkAwareModule should be called to initialize this struct.
162type SdkBase struct {
163 properties sdkProperties
Paul Duffin0e0cf1d2019-11-12 19:39:25 +0000164 module SdkAware
Jiyong Parkd1063c12019-07-17 20:08:41 +0900165}
166
167func (s *SdkBase) sdkBase() *SdkBase {
168 return s
169}
170
Paul Duffinb97b1572021-04-29 21:50:40 +0100171func (s *SdkBase) SdkMemberComponentName(baseName string, componentNameCreator func(string) string) string {
172 if s.MemberName() == "" {
173 return componentNameCreator(baseName)
174 } else {
175 index := strings.LastIndex(baseName, "@")
176 unversionedName := baseName[:index]
177 unversionedComponentName := componentNameCreator(unversionedName)
178 versionSuffix := baseName[index:]
179 return unversionedComponentName + versionSuffix
180 }
181}
182
Jiyong Park9b409bc2019-10-11 14:59:13 +0900183// MakeMemberOf sets this module to be a member of a specific SDK
Jiyong Parkd1063c12019-07-17 20:08:41 +0900184func (s *SdkBase) MakeMemberOf(sdk SdkRef) {
185 s.properties.ContainingSdk = &sdk
186}
187
188// IsInAnySdk returns true if this module is a member of any SDK
189func (s *SdkBase) IsInAnySdk() bool {
190 return s.properties.ContainingSdk != nil
191}
192
Paul Duffinb9e7a3c2021-05-06 15:53:19 +0100193// IsVersioned returns true if this module is versioned.
194func (s *SdkBase) IsVersioned() bool {
195 return strings.Contains(s.module.Name(), "@")
196}
197
Jiyong Parkd1063c12019-07-17 20:08:41 +0900198// ContainingSdk returns the SDK that this module is a member of
199func (s *SdkBase) ContainingSdk() SdkRef {
200 if s.properties.ContainingSdk != nil {
201 return *s.properties.ContainingSdk
202 }
Jiyong Park9b409bc2019-10-11 14:59:13 +0900203 return SdkRef{Name: "", Version: ""}
Jiyong Parkd1063c12019-07-17 20:08:41 +0900204}
205
Jiyong Park9b409bc2019-10-11 14:59:13 +0900206// MemberName returns the name of the module that this SDK member is overriding
Jiyong Parkd1063c12019-07-17 20:08:41 +0900207func (s *SdkBase) MemberName() string {
208 return proptools.String(s.properties.Sdk_member_name)
209}
210
211// BuildWithSdks is used to mark that this module has to be built with the given SDK(s).
212func (s *SdkBase) BuildWithSdks(sdks SdkRefs) {
213 s.properties.RequiredSdks = sdks
214}
215
216// RequiredSdks returns the SDK(s) that this module has to be built with
217func (s *SdkBase) RequiredSdks() SdkRefs {
218 return s.properties.RequiredSdks
219}
220
221// InitSdkAwareModule initializes the SdkBase struct. This must be called by all modules including
222// SdkBase.
223func InitSdkAwareModule(m SdkAware) {
224 base := m.sdkBase()
Paul Duffin0e0cf1d2019-11-12 19:39:25 +0000225 base.module = m
Jiyong Parkd1063c12019-07-17 20:08:41 +0900226 m.AddProperties(&base.properties)
227}
Paul Duffin0e0cf1d2019-11-12 19:39:25 +0000228
Paul Duffin0c2e0832021-04-28 00:39:52 +0100229// IsModuleInVersionedSdk returns true if the module is an versioned sdk.
230func IsModuleInVersionedSdk(module Module) bool {
231 if s, ok := module.(SdkAware); ok {
232 if !s.ContainingSdk().Unversioned() {
233 return true
234 }
235 }
236 return false
237}
238
Paul Duffin94289702021-09-09 15:38:32 +0100239// SnapshotBuilder provides support for generating the build rules which will build the snapshot.
Paul Duffin0e0cf1d2019-11-12 19:39:25 +0000240type SnapshotBuilder interface {
Paul Duffin94289702021-09-09 15:38:32 +0100241 // CopyToSnapshot generates a rule that will copy the src to the dest (which is a snapshot
242 // relative path) and add the dest to the zip.
Paul Duffin0e0cf1d2019-11-12 19:39:25 +0000243 CopyToSnapshot(src Path, dest string)
244
Paul Duffin94289702021-09-09 15:38:32 +0100245 // EmptyFile returns the path to an empty file.
Paul Duffin5c211452021-07-15 12:42:44 +0100246 //
247 // This can be used by sdk member types that need to create an empty file in the snapshot, simply
248 // pass the value returned from this to the CopyToSnapshot() method.
249 EmptyFile() Path
250
Paul Duffin94289702021-09-09 15:38:32 +0100251 // UnzipToSnapshot generates a rule that will unzip the supplied zip into the snapshot relative
252 // directory destDir.
Paul Duffin91547182019-11-12 19:39:36 +0000253 UnzipToSnapshot(zipPath Path, destDir string)
254
Paul Duffin94289702021-09-09 15:38:32 +0100255 // AddPrebuiltModule adds a new prebuilt module to the snapshot.
256 //
257 // It is intended to be called from SdkMemberType.AddPrebuiltModule which can add module type
258 // specific properties that are not variant specific. The following properties will be
259 // automatically populated before returning.
Paul Duffinb645ec82019-11-27 17:43:54 +0000260 //
261 // * name
262 // * sdk_member_name
263 // * prefer
264 //
Paul Duffin94289702021-09-09 15:38:32 +0100265 // Properties that are variant specific will be handled by SdkMemberProperties structure.
266 //
267 // Each module created by this method can be output to the generated Android.bp file in two
268 // different forms, depending on the setting of the SOONG_SDK_SNAPSHOT_VERSION build property.
269 // The two forms are:
270 // 1. A versioned Soong module that is referenced from a corresponding similarly versioned
271 // snapshot module.
272 // 2. An unversioned Soong module that.
273 //
274 // See sdk/update.go for more information.
Paul Duffin9d8d6092019-12-05 18:19:29 +0000275 AddPrebuiltModule(member SdkMember, moduleType string) BpModule
Paul Duffin7b81f5e2020-01-13 21:03:22 +0000276
Paul Duffin94289702021-09-09 15:38:32 +0100277 // SdkMemberReferencePropertyTag returns a property tag to use when adding a property to a
278 // BpModule that contains references to other sdk members.
Paul Duffin7b81f5e2020-01-13 21:03:22 +0000279 //
Paul Duffin94289702021-09-09 15:38:32 +0100280 // Using this will ensure that the reference is correctly output for both versioned and
281 // unversioned prebuilts in the snapshot.
Paul Duffin13f02712020-03-06 12:30:43 +0000282 //
Paul Duffin94289702021-09-09 15:38:32 +0100283 // "required: true" means that the property must only contain references to other members of the
284 // sdk. Passing a reference to a module that is not a member of the sdk will result in a build
285 // error.
Paul Duffin13f02712020-03-06 12:30:43 +0000286 //
Paul Duffin94289702021-09-09 15:38:32 +0100287 // "required: false" means that the property can contain references to modules that are either
288 // members or not members of the sdk. If a reference is to a module that is a non member then the
289 // reference is left unchanged, i.e. it is not transformed as references to members are.
290 //
291 // The handling of the member names is dependent on whether it is an internal or exported member.
292 // An exported member is one whose name is specified in one of the member type specific
293 // properties. An internal member is one that is added due to being a part of an exported (or
294 // other internal) member and is not itself an exported member.
Paul Duffin13f02712020-03-06 12:30:43 +0000295 //
296 // Member names are handled as follows:
Paul Duffin94289702021-09-09 15:38:32 +0100297 // * When creating the unversioned form of the module the name is left unchecked unless the member
298 // is internal in which case it is transformed into an sdk specific name, i.e. by prefixing with
299 // the sdk name.
Paul Duffin13f02712020-03-06 12:30:43 +0000300 //
Paul Duffin94289702021-09-09 15:38:32 +0100301 // * When creating the versioned form of the module the name is transformed into a versioned sdk
302 // specific name, i.e. by prefixing with the sdk name and suffixing with the version.
Paul Duffin13f02712020-03-06 12:30:43 +0000303 //
Paul Duffin7b81f5e2020-01-13 21:03:22 +0000304 // e.g.
Paul Duffin13f02712020-03-06 12:30:43 +0000305 // bpPropertySet.AddPropertyWithTag("libs", []string{"member1", "member2"}, builder.SdkMemberReferencePropertyTag(true))
306 SdkMemberReferencePropertyTag(required bool) BpPropertyTag
Paul Duffin0e0cf1d2019-11-12 19:39:25 +0000307}
308
Paul Duffin94289702021-09-09 15:38:32 +0100309// BpPropertyTag is a marker interface that can be associated with properties in a BpPropertySet to
310// provide additional information which can be used to customize their behavior.
Paul Duffin5b511a22020-01-15 14:23:52 +0000311type BpPropertyTag interface{}
312
Paul Duffin94289702021-09-09 15:38:32 +0100313// BpPropertySet is a set of properties for use in a .bp file.
Paul Duffinb645ec82019-11-27 17:43:54 +0000314type BpPropertySet interface {
Paul Duffin94289702021-09-09 15:38:32 +0100315 // AddProperty adds a property.
316 //
317 // The value can be one of the following types:
Paul Duffinb645ec82019-11-27 17:43:54 +0000318 // * string
319 // * array of the above
320 // * bool
Martin Stjernholm191c25f2020-09-10 00:40:37 +0100321 // For these types it is an error if multiple properties with the same name
322 // are added.
323 //
324 // * pointer to a struct
Paul Duffinb645ec82019-11-27 17:43:54 +0000325 // * BpPropertySet
326 //
Martin Stjernholm191c25f2020-09-10 00:40:37 +0100327 // A pointer to a Blueprint-style property struct is first converted into a
328 // BpPropertySet by traversing the fields and adding their values as
329 // properties in a BpPropertySet. A field with a struct value is itself
330 // converted into a BpPropertySet before adding.
331 //
332 // Adding a BpPropertySet is done as follows:
333 // * If no property with the name exists then the BpPropertySet is added
334 // directly to this property. Care must be taken to ensure that it does not
335 // introduce a cycle.
336 // * If a property exists with the name and the current value is a
337 // BpPropertySet then every property of the new BpPropertySet is added to
338 // the existing BpPropertySet.
339 // * Otherwise, if a property exists with the name then it is an error.
Paul Duffinb645ec82019-11-27 17:43:54 +0000340 AddProperty(name string, value interface{})
341
Paul Duffin94289702021-09-09 15:38:32 +0100342 // AddPropertyWithTag adds a property with an associated property tag.
Paul Duffin5b511a22020-01-15 14:23:52 +0000343 AddPropertyWithTag(name string, value interface{}, tag BpPropertyTag)
344
Paul Duffin94289702021-09-09 15:38:32 +0100345 // AddPropertySet adds a property set with the specified name and returns it so that additional
346 // properties can be added to it.
Paul Duffinb645ec82019-11-27 17:43:54 +0000347 AddPropertySet(name string) BpPropertySet
Paul Duffin0df49682021-05-07 01:10:01 +0100348
Paul Duffin94289702021-09-09 15:38:32 +0100349 // AddCommentForProperty adds a comment for the named property (or property set).
Paul Duffin0df49682021-05-07 01:10:01 +0100350 AddCommentForProperty(name, text string)
Paul Duffinb645ec82019-11-27 17:43:54 +0000351}
352
Paul Duffin94289702021-09-09 15:38:32 +0100353// BpModule represents a module definition in a .bp file.
Paul Duffinb645ec82019-11-27 17:43:54 +0000354type BpModule interface {
355 BpPropertySet
Paul Duffin0df49682021-05-07 01:10:01 +0100356
357 // ModuleType returns the module type of the module
358 ModuleType() string
359
360 // Name returns the name of the module or "" if no name has been specified.
361 Name() string
Paul Duffin0e0cf1d2019-11-12 19:39:25 +0000362}
Paul Duffin13879572019-11-28 14:31:38 +0000363
Paul Duffin51227d82021-05-18 12:54:27 +0100364// BpPrintable is a marker interface that must be implemented by any struct that is added as a
365// property value.
366type BpPrintable interface {
367 bpPrintable()
368}
369
370// BpPrintableBase must be embedded within any struct that is added as a
371// property value.
372type BpPrintableBase struct {
373}
374
375func (b BpPrintableBase) bpPrintable() {
376}
377
378var _ BpPrintable = BpPrintableBase{}
379
Paul Duffind19f8942021-07-14 12:08:37 +0100380// SdkMemberTrait represents a trait that members of an sdk module can contribute to the sdk
381// snapshot.
382//
383// A trait is simply a characteristic of sdk member that is not required by default which may be
384// required for some members but not others. Traits can cause additional information to be output
385// to the sdk snapshot or replace the default information exported for a member with something else.
386// e.g.
387// * By default cc libraries only export the default image variants to the SDK. However, for some
388// members it may be necessary to export specific image variants, e.g. vendor, or recovery.
389// * By default cc libraries export all the configured architecture variants except for the native
390// bridge architecture variants. However, for some members it may be necessary to export the
391// native bridge architecture variants as well.
392// * By default cc libraries export the platform variant (i.e. sdk:). However, for some members it
393// may be necessary to export the sdk variant (i.e. sdk:sdk).
394//
395// A sdk can request a module to provide no traits, one trait or a collection of traits. The exact
396// behavior of a trait is determined by how SdkMemberType implementations handle the traits. A trait
397// could be specific to one SdkMemberType or many. Some trait combinations could be incompatible.
398//
399// The sdk module type will create a special traits structure that contains a property for each
400// trait registered with RegisterSdkMemberTrait(). The property names are those returned from
401// SdkPropertyName(). Each property contains a list of modules that are required to have that trait.
402// e.g. something like this:
403//
404// sdk {
405// name: "sdk",
406// ...
407// traits: {
408// recovery_image: ["module1", "module4", "module5"],
409// native_bridge: ["module1", "module2"],
410// native_sdk: ["module1", "module3"],
411// ...
412// },
413// ...
414// }
415type SdkMemberTrait interface {
416 // SdkPropertyName returns the name of the traits property on an sdk module.
417 SdkPropertyName() string
418}
419
420// SdkMemberTraitBase is the base struct that must be embedded within any type that implements
421// SdkMemberTrait.
422type SdkMemberTraitBase struct {
423 // PropertyName is the name of the property
424 PropertyName string
425}
426
427func (b *SdkMemberTraitBase) SdkPropertyName() string {
428 return b.PropertyName
429}
430
431// SdkMemberTraitSet is a set of SdkMemberTrait instances.
432type SdkMemberTraitSet interface {
433 // Empty returns true if this set is empty.
434 Empty() bool
435
436 // Contains returns true if this set contains the specified trait.
437 Contains(trait SdkMemberTrait) bool
438
439 // Subtract returns a new set containing all elements of this set except for those in the
440 // other set.
441 Subtract(other SdkMemberTraitSet) SdkMemberTraitSet
442
443 // String returns a string representation of the set and its contents.
444 String() string
445}
446
447func NewSdkMemberTraitSet(traits []SdkMemberTrait) SdkMemberTraitSet {
448 if len(traits) == 0 {
449 return EmptySdkMemberTraitSet()
450 }
451
452 m := sdkMemberTraitSet{}
453 for _, trait := range traits {
454 m[trait] = true
455 }
456 return m
457}
458
459func EmptySdkMemberTraitSet() SdkMemberTraitSet {
460 return (sdkMemberTraitSet)(nil)
461}
462
463type sdkMemberTraitSet map[SdkMemberTrait]bool
464
465var _ SdkMemberTraitSet = (sdkMemberTraitSet{})
466
467func (s sdkMemberTraitSet) Empty() bool {
468 return len(s) == 0
469}
470
471func (s sdkMemberTraitSet) Contains(trait SdkMemberTrait) bool {
472 return s[trait]
473}
474
475func (s sdkMemberTraitSet) Subtract(other SdkMemberTraitSet) SdkMemberTraitSet {
476 if other.Empty() {
477 return s
478 }
479
480 var remainder []SdkMemberTrait
481 for trait, _ := range s {
482 if !other.Contains(trait) {
483 remainder = append(remainder, trait)
484 }
485 }
486
487 return NewSdkMemberTraitSet(remainder)
488}
489
490func (s sdkMemberTraitSet) String() string {
491 list := []string{}
492 for trait, _ := range s {
493 list = append(list, trait.SdkPropertyName())
494 }
495 sort.Strings(list)
496 return fmt.Sprintf("[%s]", strings.Join(list, ","))
497}
498
499// SdkMemberTraitsRegistry is a registry of SdkMemberTrait instances.
500type SdkMemberTraitsRegistry struct {
501 // The list of traits sorted by property name.
502 list []SdkMemberTrait
503}
504
505// copyAndAppend creates a new SdkMemberTraitsRegistry that includes all the traits registered in
506// this registry plus the supplied trait.
507func (r *SdkMemberTraitsRegistry) copyAndAppend(trait SdkMemberTrait) *SdkMemberTraitsRegistry {
508 oldList := r.list
509
510 // Copy the slice just in case this is being read while being modified, e.g. when testing.
511 list := make([]SdkMemberTrait, 0, len(oldList)+1)
512 list = append(list, oldList...)
513 list = append(list, trait)
514
515 // Sort the member types by their property name to ensure that registry order has no effect
516 // on behavior.
517 sort.Slice(list, func(i1, i2 int) bool {
518 t1 := list[i1]
519 t2 := list[i2]
520
521 return t1.SdkPropertyName() < t2.SdkPropertyName()
522 })
523
524 // Create a new registry so the pointer uniquely identifies the set of registered types.
525 return &SdkMemberTraitsRegistry{
526 list: list,
527 }
528}
529
530// RegisteredTraits returns the list of registered SdkMemberTrait instances.
531func (r *SdkMemberTraitsRegistry) RegisteredTraits() []SdkMemberTrait {
532 return r.list
533}
534
535// UniqueOnceKey returns a key to use with Config.Once that uniquely identifies this instance.
536func (r *SdkMemberTraitsRegistry) UniqueOnceKey() OnceKey {
537 // Use the pointer to the registry as the unique key.
538 return NewCustomOnceKey(r)
539}
540
541var RegisteredSdkMemberTraits = &SdkMemberTraitsRegistry{}
542
543// RegisterSdkMemberTrait registers an SdkMemberTrait object to allow them to be used in the
544// module_exports, module_exports_snapshot, sdk and sdk_snapshot module types.
545func RegisterSdkMemberTrait(trait SdkMemberTrait) {
546 RegisteredSdkMemberTraits = RegisteredSdkMemberTraits.copyAndAppend(trait)
547}
548
Paul Duffin94289702021-09-09 15:38:32 +0100549// SdkMember is an individual member of the SDK.
550//
551// It includes all of the variants that the SDK depends upon.
Paul Duffin13879572019-11-28 14:31:38 +0000552type SdkMember interface {
Paul Duffin94289702021-09-09 15:38:32 +0100553 // Name returns the name of the member.
Paul Duffin13879572019-11-28 14:31:38 +0000554 Name() string
555
Paul Duffin94289702021-09-09 15:38:32 +0100556 // Variants returns all the variants of this module depended upon by the SDK.
Paul Duffin13879572019-11-28 14:31:38 +0000557 Variants() []SdkAware
558}
559
Paul Duffinf7b3d0d2021-09-02 14:29:21 +0100560// SdkMemberDependencyTag is the interface that a tag must implement in order to allow the
Paul Duffin2d3da312021-05-06 12:02:27 +0100561// dependent module to be automatically added to the sdk.
Paul Duffinf7b3d0d2021-09-02 14:29:21 +0100562type SdkMemberDependencyTag interface {
Paul Duffinf8539922019-11-19 19:44:10 +0000563 blueprint.DependencyTag
564
Paul Duffina7208112021-04-23 21:20:20 +0100565 // SdkMemberType returns the SdkMemberType that will be used to automatically add the child module
566 // to the sdk.
Paul Duffin5cca7c42021-05-26 10:16:01 +0100567 //
568 // Returning nil will prevent the module being added to the sdk.
Paul Duffineee466e2021-04-27 23:17:56 +0100569 SdkMemberType(child Module) SdkMemberType
Paul Duffina7208112021-04-23 21:20:20 +0100570
571 // ExportMember determines whether a module added to the sdk through this tag will be exported
572 // from the sdk or not.
573 //
574 // An exported member is added to the sdk using its own name, e.g. if "foo" was exported from sdk
575 // "bar" then its prebuilt would be simply called "foo". A member can be added to the sdk via
576 // multiple tags and if any of those tags returns true from this method then the membe will be
577 // exported. Every module added directly to the sdk via one of the member type specific
578 // properties, e.g. java_libs, will automatically be exported.
579 //
580 // If a member is not exported then it is treated as an internal implementation detail of the
581 // sdk and so will be added with an sdk specific name. e.g. if "foo" was an internal member of sdk
582 // "bar" then its prebuilt would be called "bar_foo". Additionally its visibility will be set to
583 // "//visibility:private" so it will not be accessible from outside its Android.bp file.
584 ExportMember() bool
Paul Duffinf8539922019-11-19 19:44:10 +0000585}
586
Paul Duffinf7b3d0d2021-09-02 14:29:21 +0100587var _ SdkMemberDependencyTag = (*sdkMemberDependencyTag)(nil)
588var _ ReplaceSourceWithPrebuilt = (*sdkMemberDependencyTag)(nil)
Paul Duffincee7e662020-07-09 17:32:57 +0100589
Paul Duffinf7b3d0d2021-09-02 14:29:21 +0100590type sdkMemberDependencyTag struct {
Paul Duffinf8539922019-11-19 19:44:10 +0000591 blueprint.BaseDependencyTag
592 memberType SdkMemberType
Paul Duffina7208112021-04-23 21:20:20 +0100593 export bool
Paul Duffinf8539922019-11-19 19:44:10 +0000594}
595
Paul Duffinf7b3d0d2021-09-02 14:29:21 +0100596func (t *sdkMemberDependencyTag) SdkMemberType(_ Module) SdkMemberType {
Paul Duffinf8539922019-11-19 19:44:10 +0000597 return t.memberType
598}
599
Paul Duffinf7b3d0d2021-09-02 14:29:21 +0100600func (t *sdkMemberDependencyTag) ExportMember() bool {
Paul Duffina7208112021-04-23 21:20:20 +0100601 return t.export
602}
603
Paul Duffin94289702021-09-09 15:38:32 +0100604// ReplaceSourceWithPrebuilt prevents dependencies from the sdk/module_exports onto their members
605// from being replaced with a preferred prebuilt.
Paul Duffinf7b3d0d2021-09-02 14:29:21 +0100606func (t *sdkMemberDependencyTag) ReplaceSourceWithPrebuilt() bool {
Paul Duffincee7e662020-07-09 17:32:57 +0100607 return false
608}
609
Paul Duffinf7b3d0d2021-09-02 14:29:21 +0100610// DependencyTagForSdkMemberType creates an SdkMemberDependencyTag that will cause any
Paul Duffina7208112021-04-23 21:20:20 +0100611// dependencies added by the tag to be added to the sdk as the specified SdkMemberType and exported
612// (or not) as specified by the export parameter.
Paul Duffinf7b3d0d2021-09-02 14:29:21 +0100613func DependencyTagForSdkMemberType(memberType SdkMemberType, export bool) SdkMemberDependencyTag {
614 return &sdkMemberDependencyTag{memberType: memberType, export: export}
Paul Duffinf8539922019-11-19 19:44:10 +0000615}
616
Paul Duffin94289702021-09-09 15:38:32 +0100617// SdkMemberType is the interface that must be implemented for every type that can be a member of an
Paul Duffin13879572019-11-28 14:31:38 +0000618// sdk.
619//
620// The basic implementation should look something like this, where ModuleType is
621// the name of the module type being supported.
622//
Paul Duffin255f18e2019-12-13 11:22:16 +0000623// type moduleTypeSdkMemberType struct {
624// android.SdkMemberTypeBase
Paul Duffin13879572019-11-28 14:31:38 +0000625// }
626//
Paul Duffin255f18e2019-12-13 11:22:16 +0000627// func init() {
628// android.RegisterSdkMemberType(&moduleTypeSdkMemberType{
629// SdkMemberTypeBase: android.SdkMemberTypeBase{
630// PropertyName: "module_types",
631// },
632// }
Paul Duffin13879572019-11-28 14:31:38 +0000633// }
634//
635// ...methods...
636//
637type SdkMemberType interface {
Paul Duffin94289702021-09-09 15:38:32 +0100638 // SdkPropertyName returns the name of the member type property on an sdk module.
Paul Duffin255f18e2019-12-13 11:22:16 +0000639 SdkPropertyName() string
640
Paul Duffin13082052021-05-11 00:31:38 +0100641 // RequiresBpProperty returns true if this member type requires its property to be usable within
642 // an Android.bp file.
643 RequiresBpProperty() bool
644
Paul Duffin94289702021-09-09 15:38:32 +0100645 // UsableWithSdkAndSdkSnapshot returns true if the member type supports the sdk/sdk_snapshot,
646 // false otherwise.
Paul Duffine6029182019-12-16 17:43:48 +0000647 UsableWithSdkAndSdkSnapshot() bool
648
Paul Duffin94289702021-09-09 15:38:32 +0100649 // IsHostOsDependent returns true if prebuilt host artifacts may be specific to the host OS. Only
650 // applicable to modules where HostSupported() is true. If this is true, snapshots will list each
651 // host OS variant explicitly and disable all other host OS'es.
Martin Stjernholmcaa47d72020-07-11 04:52:24 +0100652 IsHostOsDependent() bool
653
Paul Duffin94289702021-09-09 15:38:32 +0100654 // AddDependencies adds dependencies from the SDK module to all the module variants the member
655 // type contributes to the SDK. `names` is the list of module names given in the member type
656 // property (as returned by SdkPropertyName()) in the SDK module. The exact set of variants
657 // required is determined by the SDK and its properties. The dependencies must be added with the
658 // supplied tag.
Paul Duffin13879572019-11-28 14:31:38 +0000659 //
660 // The BottomUpMutatorContext provided is for the SDK module.
Paul Duffin296701e2021-07-14 10:29:36 +0100661 AddDependencies(ctx SdkDependencyContext, dependencyTag blueprint.DependencyTag, names []string)
Paul Duffin13879572019-11-28 14:31:38 +0000662
Paul Duffin94289702021-09-09 15:38:32 +0100663 // IsInstance returns true if the supplied module is an instance of this member type.
Paul Duffin13879572019-11-28 14:31:38 +0000664 //
Paul Duffin94289702021-09-09 15:38:32 +0100665 // This is used to check the type of each variant before added to the SdkMember. Returning false
666 // will cause an error to be logged explaining that the module is not allowed in whichever sdk
667 // property it was added.
Paul Duffin13879572019-11-28 14:31:38 +0000668 IsInstance(module Module) bool
669
Paul Duffin0d4ed0a2021-05-10 23:58:40 +0100670 // UsesSourceModuleTypeInSnapshot returns true when the AddPrebuiltModule() method returns a
671 // source module type.
672 UsesSourceModuleTypeInSnapshot() bool
673
Paul Duffin94289702021-09-09 15:38:32 +0100674 // AddPrebuiltModule is called to add a prebuilt module that the sdk will populate.
Paul Duffin88f2fbe2020-02-27 16:00:53 +0000675 //
Paul Duffin425b0ea2020-05-06 12:41:39 +0100676 // The sdk module code generates the snapshot as follows:
Paul Duffin88f2fbe2020-02-27 16:00:53 +0000677 //
678 // * A properties struct of type SdkMemberProperties is created for each variant and
679 // populated with information from the variant by calling PopulateFromVariant(SdkAware)
680 // on the struct.
681 //
682 // * An additional properties struct is created into which the common properties will be
683 // added.
684 //
685 // * The variant property structs are analysed to find exported (capitalized) fields which
686 // have common values. Those fields are cleared and the common value added to the common
Paul Duffin864e1b42020-05-06 10:23:19 +0100687 // properties.
688 //
689 // A field annotated with a tag of `sdk:"keep"` will be treated as if it
Paul Duffinb07fa512020-03-10 22:17:04 +0000690 // was not capitalized, i.e. not optimized for common values.
Paul Duffin88f2fbe2020-02-27 16:00:53 +0000691 //
Paul Duffin864e1b42020-05-06 10:23:19 +0100692 // A field annotated with a tag of `android:"arch_variant"` will be allowed to have
693 // values that differ by arch, fields not tagged as such must have common values across
694 // all variants.
695 //
Paul Duffinc459f892020-04-30 18:08:29 +0100696 // * Additional field tags can be specified on a field that will ignore certain values
697 // for the purpose of common value optimization. A value that is ignored must have the
698 // default value for the property type. This is to ensure that significant value are not
699 // ignored by accident. The purpose of this is to allow the snapshot generation to reflect
700 // the behavior of the runtime. e.g. if a property is ignored on the host then a property
701 // that is common for android can be treated as if it was common for android and host as
702 // the setting for host is ignored anyway.
703 // * `sdk:"ignored-on-host" - this indicates the property is ignored on the host variant.
704 //
Paul Duffin88f2fbe2020-02-27 16:00:53 +0000705 // * The sdk module type populates the BpModule structure, creating the arch specific
706 // structure and calls AddToPropertySet(...) on the properties struct to add the member
707 // specific properties in the correct place in the structure.
708 //
Paul Duffin3a4eb502020-03-19 16:11:18 +0000709 AddPrebuiltModule(ctx SdkMemberContext, member SdkMember) BpModule
Paul Duffin88f2fbe2020-02-27 16:00:53 +0000710
Paul Duffin94289702021-09-09 15:38:32 +0100711 // CreateVariantPropertiesStruct creates a structure into which variant specific properties can be
712 // added.
Paul Duffin88f2fbe2020-02-27 16:00:53 +0000713 CreateVariantPropertiesStruct() SdkMemberProperties
Paul Duffind19f8942021-07-14 12:08:37 +0100714
715 // SupportedTraits returns the set of traits supported by this member type.
716 SupportedTraits() SdkMemberTraitSet
Paul Duffin13879572019-11-28 14:31:38 +0000717}
Paul Duffin255f18e2019-12-13 11:22:16 +0000718
Paul Duffin296701e2021-07-14 10:29:36 +0100719// SdkDependencyContext provides access to information needed by the SdkMemberType.AddDependencies()
720// implementations.
721type SdkDependencyContext interface {
722 BottomUpMutatorContext
Paul Duffind19f8942021-07-14 12:08:37 +0100723
724 // RequiredTraits returns the set of SdkMemberTrait instances that the sdk requires the named
725 // member to provide.
726 RequiredTraits(name string) SdkMemberTraitSet
727
728 // RequiresTrait returns true if the sdk requires the member with the supplied name to provide the
729 // supplied trait.
730 RequiresTrait(name string, trait SdkMemberTrait) bool
Paul Duffin296701e2021-07-14 10:29:36 +0100731}
732
Paul Duffin94289702021-09-09 15:38:32 +0100733// SdkMemberTypeBase is the base type for SdkMemberType implementations and must be embedded in any
734// struct that implements SdkMemberType.
Paul Duffin255f18e2019-12-13 11:22:16 +0000735type SdkMemberTypeBase struct {
Paul Duffin13082052021-05-11 00:31:38 +0100736 PropertyName string
737
738 // When set to true BpPropertyNotRequired indicates that the member type does not require the
739 // property to be specifiable in an Android.bp file.
740 BpPropertyNotRequired bool
741
Paul Duffin2d3da312021-05-06 12:02:27 +0100742 SupportsSdk bool
743 HostOsDependent bool
Paul Duffin0d4ed0a2021-05-10 23:58:40 +0100744
745 // When set to true UseSourceModuleTypeInSnapshot indicates that the member type creates a source
746 // module type in its SdkMemberType.AddPrebuiltModule() method. That prevents the sdk snapshot
747 // code from automatically adding a prefer: true flag.
748 UseSourceModuleTypeInSnapshot bool
Paul Duffind19f8942021-07-14 12:08:37 +0100749
750 // The list of supported traits.
751 Traits []SdkMemberTrait
Paul Duffin255f18e2019-12-13 11:22:16 +0000752}
753
754func (b *SdkMemberTypeBase) SdkPropertyName() string {
755 return b.PropertyName
756}
757
Paul Duffin13082052021-05-11 00:31:38 +0100758func (b *SdkMemberTypeBase) RequiresBpProperty() bool {
759 return !b.BpPropertyNotRequired
760}
761
Paul Duffine6029182019-12-16 17:43:48 +0000762func (b *SdkMemberTypeBase) UsableWithSdkAndSdkSnapshot() bool {
763 return b.SupportsSdk
764}
765
Martin Stjernholmcaa47d72020-07-11 04:52:24 +0100766func (b *SdkMemberTypeBase) IsHostOsDependent() bool {
767 return b.HostOsDependent
768}
769
Paul Duffin0d4ed0a2021-05-10 23:58:40 +0100770func (b *SdkMemberTypeBase) UsesSourceModuleTypeInSnapshot() bool {
771 return b.UseSourceModuleTypeInSnapshot
772}
773
Paul Duffind19f8942021-07-14 12:08:37 +0100774func (b *SdkMemberTypeBase) SupportedTraits() SdkMemberTraitSet {
775 return NewSdkMemberTraitSet(b.Traits)
776}
777
Paul Duffin94289702021-09-09 15:38:32 +0100778// SdkMemberTypesRegistry encapsulates the information about registered SdkMemberTypes.
Paul Duffin255f18e2019-12-13 11:22:16 +0000779type SdkMemberTypesRegistry struct {
780 // The list of types sorted by property name.
781 list []SdkMemberType
Paul Duffin255f18e2019-12-13 11:22:16 +0000782}
783
Paul Duffine6029182019-12-16 17:43:48 +0000784func (r *SdkMemberTypesRegistry) copyAndAppend(memberType SdkMemberType) *SdkMemberTypesRegistry {
785 oldList := r.list
Paul Duffin255f18e2019-12-13 11:22:16 +0000786
787 // Copy the slice just in case this is being read while being modified, e.g. when testing.
788 list := make([]SdkMemberType, 0, len(oldList)+1)
789 list = append(list, oldList...)
790 list = append(list, memberType)
791
792 // Sort the member types by their property name to ensure that registry order has no effect
793 // on behavior.
794 sort.Slice(list, func(i1, i2 int) bool {
795 t1 := list[i1]
796 t2 := list[i2]
797
798 return t1.SdkPropertyName() < t2.SdkPropertyName()
799 })
800
Paul Duffin255f18e2019-12-13 11:22:16 +0000801 // Create a new registry so the pointer uniquely identifies the set of registered types.
Paul Duffine6029182019-12-16 17:43:48 +0000802 return &SdkMemberTypesRegistry{
Paul Duffin255f18e2019-12-13 11:22:16 +0000803 list: list,
Paul Duffin255f18e2019-12-13 11:22:16 +0000804 }
805}
Paul Duffine6029182019-12-16 17:43:48 +0000806
807func (r *SdkMemberTypesRegistry) RegisteredTypes() []SdkMemberType {
808 return r.list
809}
810
811func (r *SdkMemberTypesRegistry) UniqueOnceKey() OnceKey {
812 // Use the pointer to the registry as the unique key.
813 return NewCustomOnceKey(r)
814}
815
Paul Duffin94289702021-09-09 15:38:32 +0100816// ModuleExportsMemberTypes is the set of registered SdkMemberTypes for module_exports modules.
Paul Duffine6029182019-12-16 17:43:48 +0000817var ModuleExportsMemberTypes = &SdkMemberTypesRegistry{}
Paul Duffin62782de2021-07-14 12:05:16 +0100818
Paul Duffin94289702021-09-09 15:38:32 +0100819// SdkMemberTypes is the set of registered SdkMemberTypes for sdk modules.
Paul Duffine6029182019-12-16 17:43:48 +0000820var SdkMemberTypes = &SdkMemberTypesRegistry{}
821
Paul Duffin94289702021-09-09 15:38:32 +0100822// RegisterSdkMemberType registers an SdkMemberType object to allow them to be used in the
823// module_exports, module_exports_snapshot and (depending on the value returned from
824// SdkMemberType.UsableWithSdkAndSdkSnapshot) the sdk and sdk_snapshot module types.
Paul Duffine6029182019-12-16 17:43:48 +0000825func RegisterSdkMemberType(memberType SdkMemberType) {
826 // All member types are usable with module_exports.
827 ModuleExportsMemberTypes = ModuleExportsMemberTypes.copyAndAppend(memberType)
828
829 // Only those that explicitly indicate it are usable with sdk.
830 if memberType.UsableWithSdkAndSdkSnapshot() {
831 SdkMemberTypes = SdkMemberTypes.copyAndAppend(memberType)
832 }
833}
Paul Duffin88f2fbe2020-02-27 16:00:53 +0000834
Paul Duffin94289702021-09-09 15:38:32 +0100835// SdkMemberPropertiesBase is the base structure for all implementations of SdkMemberProperties and
836// must be embedded in any struct that implements SdkMemberProperties.
Paul Duffin88f2fbe2020-02-27 16:00:53 +0000837//
Martin Stjernholm89238f42020-07-10 00:14:03 +0100838// Contains common properties that apply across many different member types.
Paul Duffin88f2fbe2020-02-27 16:00:53 +0000839type SdkMemberPropertiesBase struct {
Paul Duffina04c1072020-03-02 10:16:35 +0000840 // The number of unique os types supported by the member variants.
Paul Duffina551a1c2020-03-17 21:04:24 +0000841 //
842 // If a member has a variant with more than one os type then it will need to differentiate
843 // the locations of any of their prebuilt files in the snapshot by os type to prevent them
844 // from colliding. See OsPrefix().
845 //
846 // This property is the same for all variants of a member and so would be optimized away
847 // if it was not explicitly kept.
Paul Duffinb07fa512020-03-10 22:17:04 +0000848 Os_count int `sdk:"keep"`
Paul Duffina04c1072020-03-02 10:16:35 +0000849
850 // The os type for which these properties refer.
Paul Duffina551a1c2020-03-17 21:04:24 +0000851 //
852 // Provided to allow a member to differentiate between os types in the locations of their
853 // prebuilt files when it supports more than one os type.
854 //
855 // This property is the same for all os type specific variants of a member and so would be
856 // optimized away if it was not explicitly kept.
Paul Duffinb07fa512020-03-10 22:17:04 +0000857 Os OsType `sdk:"keep"`
Paul Duffina551a1c2020-03-17 21:04:24 +0000858
859 // The setting to use for the compile_multilib property.
Martin Stjernholm89238f42020-07-10 00:14:03 +0100860 Compile_multilib string `android:"arch_variant"`
Paul Duffina04c1072020-03-02 10:16:35 +0000861}
862
Paul Duffin94289702021-09-09 15:38:32 +0100863// OsPrefix returns the os prefix to use for any file paths in the sdk.
Paul Duffina04c1072020-03-02 10:16:35 +0000864//
865// Is an empty string if the member only provides variants for a single os type, otherwise
866// is the OsType.Name.
867func (b *SdkMemberPropertiesBase) OsPrefix() string {
868 if b.Os_count == 1 {
869 return ""
870 } else {
871 return b.Os.Name
872 }
Paul Duffin88f2fbe2020-02-27 16:00:53 +0000873}
874
875func (b *SdkMemberPropertiesBase) Base() *SdkMemberPropertiesBase {
876 return b
877}
878
Paul Duffin94289702021-09-09 15:38:32 +0100879// SdkMemberProperties is the interface to be implemented on top of a structure that contains
880// variant specific information.
Paul Duffin88f2fbe2020-02-27 16:00:53 +0000881//
Paul Duffin94289702021-09-09 15:38:32 +0100882// Struct fields that are capitalized are examined for common values to extract. Fields that are not
883// capitalized are assumed to be arch specific.
Paul Duffin88f2fbe2020-02-27 16:00:53 +0000884type SdkMemberProperties interface {
Paul Duffin94289702021-09-09 15:38:32 +0100885 // Base returns the base structure.
Paul Duffin88f2fbe2020-02-27 16:00:53 +0000886 Base() *SdkMemberPropertiesBase
887
Paul Duffin94289702021-09-09 15:38:32 +0100888 // PopulateFromVariant populates this structure with information from a module variant.
889 //
890 // It will typically be called once for each variant of a member module that the SDK depends upon.
Paul Duffin3a4eb502020-03-19 16:11:18 +0000891 PopulateFromVariant(ctx SdkMemberContext, variant Module)
Paul Duffin88f2fbe2020-02-27 16:00:53 +0000892
Paul Duffin94289702021-09-09 15:38:32 +0100893 // AddToPropertySet adds the information from this structure to the property set.
894 //
895 // This will be called for each instance of this structure on which the PopulateFromVariant method
896 // was called and also on a number of different instances of this structure into which properties
897 // common to one or more variants have been copied. Therefore, implementations of this must handle
898 // the case when this structure is only partially populated.
Paul Duffin3a4eb502020-03-19 16:11:18 +0000899 AddToPropertySet(ctx SdkMemberContext, propertySet BpPropertySet)
900}
901
Paul Duffin94289702021-09-09 15:38:32 +0100902// SdkMemberContext provides access to information common to a specific member.
Paul Duffin3a4eb502020-03-19 16:11:18 +0000903type SdkMemberContext interface {
904
Paul Duffin94289702021-09-09 15:38:32 +0100905 // SdkModuleContext returns the module context of the sdk common os variant which is creating the
906 // snapshot.
907 //
908 // This is common to all members of the sdk and is not specific to the member being processed.
909 // If information about the member being processed needs to be obtained from this ModuleContext it
910 // must be obtained using one of the OtherModule... methods not the Module... methods.
Paul Duffin3a4eb502020-03-19 16:11:18 +0000911 SdkModuleContext() ModuleContext
912
Paul Duffin94289702021-09-09 15:38:32 +0100913 // SnapshotBuilder the builder of the snapshot.
Paul Duffin3a4eb502020-03-19 16:11:18 +0000914 SnapshotBuilder() SnapshotBuilder
Paul Duffina551a1c2020-03-17 21:04:24 +0000915
Paul Duffin94289702021-09-09 15:38:32 +0100916 // MemberType returns the type of the member currently being processed.
Paul Duffina551a1c2020-03-17 21:04:24 +0000917 MemberType() SdkMemberType
918
Paul Duffin94289702021-09-09 15:38:32 +0100919 // Name returns the name of the member currently being processed.
Paul Duffina551a1c2020-03-17 21:04:24 +0000920 //
921 // Provided for use by sdk members to create a member specific location within the snapshot
922 // into which to copy the prebuilt files.
923 Name() string
Paul Duffind19f8942021-07-14 12:08:37 +0100924
925 // RequiresTrait returns true if this member is expected to provide the specified trait.
926 RequiresTrait(trait SdkMemberTrait) bool
Paul Duffin88f2fbe2020-02-27 16:00:53 +0000927}
Paul Duffinb97b1572021-04-29 21:50:40 +0100928
929// ExportedComponentsInfo contains information about the components that this module exports to an
930// sdk snapshot.
931//
932// A component of a module is a child module that the module creates and which forms an integral
933// part of the functionality that the creating module provides. A component module is essentially
934// owned by its creator and is tightly coupled to the creator and other components.
935//
936// e.g. the child modules created by prebuilt_apis are not components because they are not tightly
937// coupled to the prebuilt_apis module. Once they are created the prebuilt_apis ignores them. The
938// child impl and stub library created by java_sdk_library (and corresponding import) are components
939// because the creating module depends upon them in order to provide some of its own functionality.
940//
941// A component is exported if it is part of an sdk snapshot. e.g. The xml and impl child modules are
942// components but they are not exported as they are not part of an sdk snapshot.
943//
944// This information is used by the sdk snapshot generation code to ensure that it does not create
945// an sdk snapshot that contains a declaration of the component module and the module that creates
946// it as that would result in duplicate modules when attempting to use the snapshot. e.g. a snapshot
947// that included the java_sdk_library_import "foo" and also a java_import "foo.stubs" would fail
948// as there would be two modules called "foo.stubs".
949type ExportedComponentsInfo struct {
950 // The names of the exported components.
951 Components []string
952}
953
954var ExportedComponentsInfoProvider = blueprint.NewProvider(ExportedComponentsInfo{})