blob: 21e0366ba79248ec6f6b4047b26993e3f7a5d0bb [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
Paul Duffin30c830b2021-09-22 11:49:47 +0100541var registeredSdkMemberTraits = &SdkMemberTraitsRegistry{}
542
543// RegisteredSdkMemberTraits returns a OnceKey and a sorted list of registered traits.
544//
545// The key uniquely identifies the array of traits and can be used with OncePer.Once() to cache
546// information derived from the array of traits.
547func RegisteredSdkMemberTraits() (OnceKey, []SdkMemberTrait) {
548 return registeredSdkMemberTraits.UniqueOnceKey(), registeredSdkMemberTraits.RegisteredTraits()
549}
Paul Duffind19f8942021-07-14 12:08:37 +0100550
551// RegisterSdkMemberTrait registers an SdkMemberTrait object to allow them to be used in the
552// module_exports, module_exports_snapshot, sdk and sdk_snapshot module types.
553func RegisterSdkMemberTrait(trait SdkMemberTrait) {
Paul Duffin30c830b2021-09-22 11:49:47 +0100554 registeredSdkMemberTraits = registeredSdkMemberTraits.copyAndAppend(trait)
Paul Duffind19f8942021-07-14 12:08:37 +0100555}
556
Paul Duffin94289702021-09-09 15:38:32 +0100557// SdkMember is an individual member of the SDK.
558//
559// It includes all of the variants that the SDK depends upon.
Paul Duffin13879572019-11-28 14:31:38 +0000560type SdkMember interface {
Paul Duffin94289702021-09-09 15:38:32 +0100561 // Name returns the name of the member.
Paul Duffin13879572019-11-28 14:31:38 +0000562 Name() string
563
Paul Duffin94289702021-09-09 15:38:32 +0100564 // Variants returns all the variants of this module depended upon by the SDK.
Paul Duffin13879572019-11-28 14:31:38 +0000565 Variants() []SdkAware
566}
567
Paul Duffinf7b3d0d2021-09-02 14:29:21 +0100568// SdkMemberDependencyTag is the interface that a tag must implement in order to allow the
Paul Duffin2d3da312021-05-06 12:02:27 +0100569// dependent module to be automatically added to the sdk.
Paul Duffinf7b3d0d2021-09-02 14:29:21 +0100570type SdkMemberDependencyTag interface {
Paul Duffinf8539922019-11-19 19:44:10 +0000571 blueprint.DependencyTag
572
Paul Duffina7208112021-04-23 21:20:20 +0100573 // SdkMemberType returns the SdkMemberType that will be used to automatically add the child module
574 // to the sdk.
Paul Duffin5cca7c42021-05-26 10:16:01 +0100575 //
576 // Returning nil will prevent the module being added to the sdk.
Paul Duffineee466e2021-04-27 23:17:56 +0100577 SdkMemberType(child Module) SdkMemberType
Paul Duffina7208112021-04-23 21:20:20 +0100578
579 // ExportMember determines whether a module added to the sdk through this tag will be exported
580 // from the sdk or not.
581 //
582 // An exported member is added to the sdk using its own name, e.g. if "foo" was exported from sdk
583 // "bar" then its prebuilt would be simply called "foo". A member can be added to the sdk via
584 // multiple tags and if any of those tags returns true from this method then the membe will be
585 // exported. Every module added directly to the sdk via one of the member type specific
586 // properties, e.g. java_libs, will automatically be exported.
587 //
588 // If a member is not exported then it is treated as an internal implementation detail of the
589 // sdk and so will be added with an sdk specific name. e.g. if "foo" was an internal member of sdk
590 // "bar" then its prebuilt would be called "bar_foo". Additionally its visibility will be set to
591 // "//visibility:private" so it will not be accessible from outside its Android.bp file.
592 ExportMember() bool
Paul Duffinf8539922019-11-19 19:44:10 +0000593}
594
Paul Duffinf7b3d0d2021-09-02 14:29:21 +0100595var _ SdkMemberDependencyTag = (*sdkMemberDependencyTag)(nil)
596var _ ReplaceSourceWithPrebuilt = (*sdkMemberDependencyTag)(nil)
Paul Duffincee7e662020-07-09 17:32:57 +0100597
Paul Duffinf7b3d0d2021-09-02 14:29:21 +0100598type sdkMemberDependencyTag struct {
Paul Duffinf8539922019-11-19 19:44:10 +0000599 blueprint.BaseDependencyTag
600 memberType SdkMemberType
Paul Duffina7208112021-04-23 21:20:20 +0100601 export bool
Paul Duffinf8539922019-11-19 19:44:10 +0000602}
603
Paul Duffinf7b3d0d2021-09-02 14:29:21 +0100604func (t *sdkMemberDependencyTag) SdkMemberType(_ Module) SdkMemberType {
Paul Duffinf8539922019-11-19 19:44:10 +0000605 return t.memberType
606}
607
Paul Duffinf7b3d0d2021-09-02 14:29:21 +0100608func (t *sdkMemberDependencyTag) ExportMember() bool {
Paul Duffina7208112021-04-23 21:20:20 +0100609 return t.export
610}
611
Paul Duffin94289702021-09-09 15:38:32 +0100612// ReplaceSourceWithPrebuilt prevents dependencies from the sdk/module_exports onto their members
613// from being replaced with a preferred prebuilt.
Paul Duffinf7b3d0d2021-09-02 14:29:21 +0100614func (t *sdkMemberDependencyTag) ReplaceSourceWithPrebuilt() bool {
Paul Duffincee7e662020-07-09 17:32:57 +0100615 return false
616}
617
Paul Duffinf7b3d0d2021-09-02 14:29:21 +0100618// DependencyTagForSdkMemberType creates an SdkMemberDependencyTag that will cause any
Paul Duffina7208112021-04-23 21:20:20 +0100619// dependencies added by the tag to be added to the sdk as the specified SdkMemberType and exported
620// (or not) as specified by the export parameter.
Paul Duffinf7b3d0d2021-09-02 14:29:21 +0100621func DependencyTagForSdkMemberType(memberType SdkMemberType, export bool) SdkMemberDependencyTag {
622 return &sdkMemberDependencyTag{memberType: memberType, export: export}
Paul Duffinf8539922019-11-19 19:44:10 +0000623}
624
Paul Duffin94289702021-09-09 15:38:32 +0100625// 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 +0000626// sdk.
627//
628// The basic implementation should look something like this, where ModuleType is
629// the name of the module type being supported.
630//
Paul Duffin255f18e2019-12-13 11:22:16 +0000631// type moduleTypeSdkMemberType struct {
632// android.SdkMemberTypeBase
Paul Duffin13879572019-11-28 14:31:38 +0000633// }
634//
Paul Duffin255f18e2019-12-13 11:22:16 +0000635// func init() {
636// android.RegisterSdkMemberType(&moduleTypeSdkMemberType{
637// SdkMemberTypeBase: android.SdkMemberTypeBase{
638// PropertyName: "module_types",
639// },
640// }
Paul Duffin13879572019-11-28 14:31:38 +0000641// }
642//
643// ...methods...
644//
645type SdkMemberType interface {
Paul Duffin94289702021-09-09 15:38:32 +0100646 // SdkPropertyName returns the name of the member type property on an sdk module.
Paul Duffin255f18e2019-12-13 11:22:16 +0000647 SdkPropertyName() string
648
Paul Duffin13082052021-05-11 00:31:38 +0100649 // RequiresBpProperty returns true if this member type requires its property to be usable within
650 // an Android.bp file.
651 RequiresBpProperty() bool
652
Paul Duffin94289702021-09-09 15:38:32 +0100653 // UsableWithSdkAndSdkSnapshot returns true if the member type supports the sdk/sdk_snapshot,
654 // false otherwise.
Paul Duffine6029182019-12-16 17:43:48 +0000655 UsableWithSdkAndSdkSnapshot() bool
656
Paul Duffin94289702021-09-09 15:38:32 +0100657 // IsHostOsDependent returns true if prebuilt host artifacts may be specific to the host OS. Only
658 // applicable to modules where HostSupported() is true. If this is true, snapshots will list each
659 // host OS variant explicitly and disable all other host OS'es.
Martin Stjernholmcaa47d72020-07-11 04:52:24 +0100660 IsHostOsDependent() bool
661
Paul Duffin94289702021-09-09 15:38:32 +0100662 // AddDependencies adds dependencies from the SDK module to all the module variants the member
663 // type contributes to the SDK. `names` is the list of module names given in the member type
664 // property (as returned by SdkPropertyName()) in the SDK module. The exact set of variants
665 // required is determined by the SDK and its properties. The dependencies must be added with the
666 // supplied tag.
Paul Duffin13879572019-11-28 14:31:38 +0000667 //
668 // The BottomUpMutatorContext provided is for the SDK module.
Paul Duffin296701e2021-07-14 10:29:36 +0100669 AddDependencies(ctx SdkDependencyContext, dependencyTag blueprint.DependencyTag, names []string)
Paul Duffin13879572019-11-28 14:31:38 +0000670
Paul Duffin94289702021-09-09 15:38:32 +0100671 // IsInstance returns true if the supplied module is an instance of this member type.
Paul Duffin13879572019-11-28 14:31:38 +0000672 //
Paul Duffin94289702021-09-09 15:38:32 +0100673 // This is used to check the type of each variant before added to the SdkMember. Returning false
674 // will cause an error to be logged explaining that the module is not allowed in whichever sdk
675 // property it was added.
Paul Duffin13879572019-11-28 14:31:38 +0000676 IsInstance(module Module) bool
677
Paul Duffin0d4ed0a2021-05-10 23:58:40 +0100678 // UsesSourceModuleTypeInSnapshot returns true when the AddPrebuiltModule() method returns a
679 // source module type.
680 UsesSourceModuleTypeInSnapshot() bool
681
Paul Duffin94289702021-09-09 15:38:32 +0100682 // AddPrebuiltModule is called to add a prebuilt module that the sdk will populate.
Paul Duffin88f2fbe2020-02-27 16:00:53 +0000683 //
Paul Duffin425b0ea2020-05-06 12:41:39 +0100684 // The sdk module code generates the snapshot as follows:
Paul Duffin88f2fbe2020-02-27 16:00:53 +0000685 //
686 // * A properties struct of type SdkMemberProperties is created for each variant and
687 // populated with information from the variant by calling PopulateFromVariant(SdkAware)
688 // on the struct.
689 //
690 // * An additional properties struct is created into which the common properties will be
691 // added.
692 //
693 // * The variant property structs are analysed to find exported (capitalized) fields which
694 // have common values. Those fields are cleared and the common value added to the common
Paul Duffin864e1b42020-05-06 10:23:19 +0100695 // properties.
696 //
697 // A field annotated with a tag of `sdk:"keep"` will be treated as if it
Paul Duffinb07fa512020-03-10 22:17:04 +0000698 // was not capitalized, i.e. not optimized for common values.
Paul Duffin88f2fbe2020-02-27 16:00:53 +0000699 //
Paul Duffin864e1b42020-05-06 10:23:19 +0100700 // A field annotated with a tag of `android:"arch_variant"` will be allowed to have
701 // values that differ by arch, fields not tagged as such must have common values across
702 // all variants.
703 //
Paul Duffinc459f892020-04-30 18:08:29 +0100704 // * Additional field tags can be specified on a field that will ignore certain values
705 // for the purpose of common value optimization. A value that is ignored must have the
706 // default value for the property type. This is to ensure that significant value are not
707 // ignored by accident. The purpose of this is to allow the snapshot generation to reflect
708 // the behavior of the runtime. e.g. if a property is ignored on the host then a property
709 // that is common for android can be treated as if it was common for android and host as
710 // the setting for host is ignored anyway.
711 // * `sdk:"ignored-on-host" - this indicates the property is ignored on the host variant.
712 //
Paul Duffin88f2fbe2020-02-27 16:00:53 +0000713 // * The sdk module type populates the BpModule structure, creating the arch specific
714 // structure and calls AddToPropertySet(...) on the properties struct to add the member
715 // specific properties in the correct place in the structure.
716 //
Paul Duffin3a4eb502020-03-19 16:11:18 +0000717 AddPrebuiltModule(ctx SdkMemberContext, member SdkMember) BpModule
Paul Duffin88f2fbe2020-02-27 16:00:53 +0000718
Paul Duffin94289702021-09-09 15:38:32 +0100719 // CreateVariantPropertiesStruct creates a structure into which variant specific properties can be
720 // added.
Paul Duffin88f2fbe2020-02-27 16:00:53 +0000721 CreateVariantPropertiesStruct() SdkMemberProperties
Paul Duffind19f8942021-07-14 12:08:37 +0100722
723 // SupportedTraits returns the set of traits supported by this member type.
724 SupportedTraits() SdkMemberTraitSet
Paul Duffin13879572019-11-28 14:31:38 +0000725}
Paul Duffin255f18e2019-12-13 11:22:16 +0000726
Paul Duffin296701e2021-07-14 10:29:36 +0100727// SdkDependencyContext provides access to information needed by the SdkMemberType.AddDependencies()
728// implementations.
729type SdkDependencyContext interface {
730 BottomUpMutatorContext
Paul Duffind19f8942021-07-14 12:08:37 +0100731
732 // RequiredTraits returns the set of SdkMemberTrait instances that the sdk requires the named
733 // member to provide.
734 RequiredTraits(name string) SdkMemberTraitSet
735
736 // RequiresTrait returns true if the sdk requires the member with the supplied name to provide the
737 // supplied trait.
738 RequiresTrait(name string, trait SdkMemberTrait) bool
Paul Duffin296701e2021-07-14 10:29:36 +0100739}
740
Paul Duffin94289702021-09-09 15:38:32 +0100741// SdkMemberTypeBase is the base type for SdkMemberType implementations and must be embedded in any
742// struct that implements SdkMemberType.
Paul Duffin255f18e2019-12-13 11:22:16 +0000743type SdkMemberTypeBase struct {
Paul Duffin13082052021-05-11 00:31:38 +0100744 PropertyName string
745
746 // When set to true BpPropertyNotRequired indicates that the member type does not require the
747 // property to be specifiable in an Android.bp file.
748 BpPropertyNotRequired bool
749
Paul Duffin2d3da312021-05-06 12:02:27 +0100750 SupportsSdk bool
751 HostOsDependent bool
Paul Duffin0d4ed0a2021-05-10 23:58:40 +0100752
753 // When set to true UseSourceModuleTypeInSnapshot indicates that the member type creates a source
754 // module type in its SdkMemberType.AddPrebuiltModule() method. That prevents the sdk snapshot
755 // code from automatically adding a prefer: true flag.
756 UseSourceModuleTypeInSnapshot bool
Paul Duffind19f8942021-07-14 12:08:37 +0100757
758 // The list of supported traits.
759 Traits []SdkMemberTrait
Paul Duffin255f18e2019-12-13 11:22:16 +0000760}
761
762func (b *SdkMemberTypeBase) SdkPropertyName() string {
763 return b.PropertyName
764}
765
Paul Duffin13082052021-05-11 00:31:38 +0100766func (b *SdkMemberTypeBase) RequiresBpProperty() bool {
767 return !b.BpPropertyNotRequired
768}
769
Paul Duffine6029182019-12-16 17:43:48 +0000770func (b *SdkMemberTypeBase) UsableWithSdkAndSdkSnapshot() bool {
771 return b.SupportsSdk
772}
773
Martin Stjernholmcaa47d72020-07-11 04:52:24 +0100774func (b *SdkMemberTypeBase) IsHostOsDependent() bool {
775 return b.HostOsDependent
776}
777
Paul Duffin0d4ed0a2021-05-10 23:58:40 +0100778func (b *SdkMemberTypeBase) UsesSourceModuleTypeInSnapshot() bool {
779 return b.UseSourceModuleTypeInSnapshot
780}
781
Paul Duffind19f8942021-07-14 12:08:37 +0100782func (b *SdkMemberTypeBase) SupportedTraits() SdkMemberTraitSet {
783 return NewSdkMemberTraitSet(b.Traits)
784}
785
Paul Duffin94289702021-09-09 15:38:32 +0100786// SdkMemberTypesRegistry encapsulates the information about registered SdkMemberTypes.
Paul Duffin255f18e2019-12-13 11:22:16 +0000787type SdkMemberTypesRegistry struct {
788 // The list of types sorted by property name.
789 list []SdkMemberType
Paul Duffin255f18e2019-12-13 11:22:16 +0000790}
791
Paul Duffine6029182019-12-16 17:43:48 +0000792func (r *SdkMemberTypesRegistry) copyAndAppend(memberType SdkMemberType) *SdkMemberTypesRegistry {
793 oldList := r.list
Paul Duffin255f18e2019-12-13 11:22:16 +0000794
795 // Copy the slice just in case this is being read while being modified, e.g. when testing.
796 list := make([]SdkMemberType, 0, len(oldList)+1)
797 list = append(list, oldList...)
798 list = append(list, memberType)
799
800 // Sort the member types by their property name to ensure that registry order has no effect
801 // on behavior.
802 sort.Slice(list, func(i1, i2 int) bool {
803 t1 := list[i1]
804 t2 := list[i2]
805
806 return t1.SdkPropertyName() < t2.SdkPropertyName()
807 })
808
Paul Duffin255f18e2019-12-13 11:22:16 +0000809 // Create a new registry so the pointer uniquely identifies the set of registered types.
Paul Duffine6029182019-12-16 17:43:48 +0000810 return &SdkMemberTypesRegistry{
Paul Duffin255f18e2019-12-13 11:22:16 +0000811 list: list,
Paul Duffin255f18e2019-12-13 11:22:16 +0000812 }
813}
Paul Duffine6029182019-12-16 17:43:48 +0000814
815func (r *SdkMemberTypesRegistry) RegisteredTypes() []SdkMemberType {
816 return r.list
817}
818
819func (r *SdkMemberTypesRegistry) UniqueOnceKey() OnceKey {
820 // Use the pointer to the registry as the unique key.
821 return NewCustomOnceKey(r)
822}
823
Paul Duffin30c830b2021-09-22 11:49:47 +0100824// registeredModuleExportsMemberTypes is the set of registered SdkMemberTypes for module_exports
825// modules.
826var registeredModuleExportsMemberTypes = &SdkMemberTypesRegistry{}
Paul Duffin62782de2021-07-14 12:05:16 +0100827
Paul Duffin30c830b2021-09-22 11:49:47 +0100828// registeredSdkMemberTypes is the set of registered SdkMemberTypes for sdk modules.
829var registeredSdkMemberTypes = &SdkMemberTypesRegistry{}
830
831// RegisteredSdkMemberTypes returns a OnceKey and a sorted list of registered types.
832//
833// If moduleExports is true then the slice of types includes all registered types that can be used
834// with the module_exports and module_exports_snapshot module types. Otherwise, the slice of types
835// only includes those registered types that can be used with the sdk and sdk_snapshot module
836// types.
837//
838// The key uniquely identifies the array of types and can be used with OncePer.Once() to cache
839// information derived from the array of types.
840func RegisteredSdkMemberTypes(moduleExports bool) (OnceKey, []SdkMemberType) {
841 var registry *SdkMemberTypesRegistry
842 if moduleExports {
843 registry = registeredModuleExportsMemberTypes
844 } else {
845 registry = registeredSdkMemberTypes
846 }
847
848 return registry.UniqueOnceKey(), registry.RegisteredTypes()
849}
Paul Duffine6029182019-12-16 17:43:48 +0000850
Paul Duffin94289702021-09-09 15:38:32 +0100851// RegisterSdkMemberType registers an SdkMemberType object to allow them to be used in the
852// module_exports, module_exports_snapshot and (depending on the value returned from
853// SdkMemberType.UsableWithSdkAndSdkSnapshot) the sdk and sdk_snapshot module types.
Paul Duffine6029182019-12-16 17:43:48 +0000854func RegisterSdkMemberType(memberType SdkMemberType) {
855 // All member types are usable with module_exports.
Paul Duffin30c830b2021-09-22 11:49:47 +0100856 registeredModuleExportsMemberTypes = registeredModuleExportsMemberTypes.copyAndAppend(memberType)
Paul Duffine6029182019-12-16 17:43:48 +0000857
858 // Only those that explicitly indicate it are usable with sdk.
859 if memberType.UsableWithSdkAndSdkSnapshot() {
Paul Duffin30c830b2021-09-22 11:49:47 +0100860 registeredSdkMemberTypes = registeredSdkMemberTypes.copyAndAppend(memberType)
Paul Duffine6029182019-12-16 17:43:48 +0000861 }
862}
Paul Duffin88f2fbe2020-02-27 16:00:53 +0000863
Paul Duffin94289702021-09-09 15:38:32 +0100864// SdkMemberPropertiesBase is the base structure for all implementations of SdkMemberProperties and
865// must be embedded in any struct that implements SdkMemberProperties.
Paul Duffin88f2fbe2020-02-27 16:00:53 +0000866//
Martin Stjernholm89238f42020-07-10 00:14:03 +0100867// Contains common properties that apply across many different member types.
Paul Duffin88f2fbe2020-02-27 16:00:53 +0000868type SdkMemberPropertiesBase struct {
Paul Duffina04c1072020-03-02 10:16:35 +0000869 // The number of unique os types supported by the member variants.
Paul Duffina551a1c2020-03-17 21:04:24 +0000870 //
871 // If a member has a variant with more than one os type then it will need to differentiate
872 // the locations of any of their prebuilt files in the snapshot by os type to prevent them
873 // from colliding. See OsPrefix().
874 //
875 // This property is the same for all variants of a member and so would be optimized away
876 // if it was not explicitly kept.
Paul Duffinb07fa512020-03-10 22:17:04 +0000877 Os_count int `sdk:"keep"`
Paul Duffina04c1072020-03-02 10:16:35 +0000878
879 // The os type for which these properties refer.
Paul Duffina551a1c2020-03-17 21:04:24 +0000880 //
881 // Provided to allow a member to differentiate between os types in the locations of their
882 // prebuilt files when it supports more than one os type.
883 //
884 // This property is the same for all os type specific variants of a member and so would be
885 // optimized away if it was not explicitly kept.
Paul Duffinb07fa512020-03-10 22:17:04 +0000886 Os OsType `sdk:"keep"`
Paul Duffina551a1c2020-03-17 21:04:24 +0000887
888 // The setting to use for the compile_multilib property.
Martin Stjernholm89238f42020-07-10 00:14:03 +0100889 Compile_multilib string `android:"arch_variant"`
Paul Duffina04c1072020-03-02 10:16:35 +0000890}
891
Paul Duffin94289702021-09-09 15:38:32 +0100892// OsPrefix returns the os prefix to use for any file paths in the sdk.
Paul Duffina04c1072020-03-02 10:16:35 +0000893//
894// Is an empty string if the member only provides variants for a single os type, otherwise
895// is the OsType.Name.
896func (b *SdkMemberPropertiesBase) OsPrefix() string {
897 if b.Os_count == 1 {
898 return ""
899 } else {
900 return b.Os.Name
901 }
Paul Duffin88f2fbe2020-02-27 16:00:53 +0000902}
903
904func (b *SdkMemberPropertiesBase) Base() *SdkMemberPropertiesBase {
905 return b
906}
907
Paul Duffin94289702021-09-09 15:38:32 +0100908// SdkMemberProperties is the interface to be implemented on top of a structure that contains
909// variant specific information.
Paul Duffin88f2fbe2020-02-27 16:00:53 +0000910//
Paul Duffin94289702021-09-09 15:38:32 +0100911// Struct fields that are capitalized are examined for common values to extract. Fields that are not
912// capitalized are assumed to be arch specific.
Paul Duffin88f2fbe2020-02-27 16:00:53 +0000913type SdkMemberProperties interface {
Paul Duffin94289702021-09-09 15:38:32 +0100914 // Base returns the base structure.
Paul Duffin88f2fbe2020-02-27 16:00:53 +0000915 Base() *SdkMemberPropertiesBase
916
Paul Duffin94289702021-09-09 15:38:32 +0100917 // PopulateFromVariant populates this structure with information from a module variant.
918 //
919 // 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 +0000920 PopulateFromVariant(ctx SdkMemberContext, variant Module)
Paul Duffin88f2fbe2020-02-27 16:00:53 +0000921
Paul Duffin94289702021-09-09 15:38:32 +0100922 // AddToPropertySet adds the information from this structure to the property set.
923 //
924 // This will be called for each instance of this structure on which the PopulateFromVariant method
925 // was called and also on a number of different instances of this structure into which properties
926 // common to one or more variants have been copied. Therefore, implementations of this must handle
927 // the case when this structure is only partially populated.
Paul Duffin3a4eb502020-03-19 16:11:18 +0000928 AddToPropertySet(ctx SdkMemberContext, propertySet BpPropertySet)
929}
930
Paul Duffin94289702021-09-09 15:38:32 +0100931// SdkMemberContext provides access to information common to a specific member.
Paul Duffin3a4eb502020-03-19 16:11:18 +0000932type SdkMemberContext interface {
933
Paul Duffin94289702021-09-09 15:38:32 +0100934 // SdkModuleContext returns the module context of the sdk common os variant which is creating the
935 // snapshot.
936 //
937 // This is common to all members of the sdk and is not specific to the member being processed.
938 // If information about the member being processed needs to be obtained from this ModuleContext it
939 // must be obtained using one of the OtherModule... methods not the Module... methods.
Paul Duffin3a4eb502020-03-19 16:11:18 +0000940 SdkModuleContext() ModuleContext
941
Paul Duffin94289702021-09-09 15:38:32 +0100942 // SnapshotBuilder the builder of the snapshot.
Paul Duffin3a4eb502020-03-19 16:11:18 +0000943 SnapshotBuilder() SnapshotBuilder
Paul Duffina551a1c2020-03-17 21:04:24 +0000944
Paul Duffin94289702021-09-09 15:38:32 +0100945 // MemberType returns the type of the member currently being processed.
Paul Duffina551a1c2020-03-17 21:04:24 +0000946 MemberType() SdkMemberType
947
Paul Duffin94289702021-09-09 15:38:32 +0100948 // Name returns the name of the member currently being processed.
Paul Duffina551a1c2020-03-17 21:04:24 +0000949 //
950 // Provided for use by sdk members to create a member specific location within the snapshot
951 // into which to copy the prebuilt files.
952 Name() string
Paul Duffind19f8942021-07-14 12:08:37 +0100953
954 // RequiresTrait returns true if this member is expected to provide the specified trait.
955 RequiresTrait(trait SdkMemberTrait) bool
Paul Duffin88f2fbe2020-02-27 16:00:53 +0000956}
Paul Duffinb97b1572021-04-29 21:50:40 +0100957
958// ExportedComponentsInfo contains information about the components that this module exports to an
959// sdk snapshot.
960//
961// A component of a module is a child module that the module creates and which forms an integral
962// part of the functionality that the creating module provides. A component module is essentially
963// owned by its creator and is tightly coupled to the creator and other components.
964//
965// e.g. the child modules created by prebuilt_apis are not components because they are not tightly
966// coupled to the prebuilt_apis module. Once they are created the prebuilt_apis ignores them. The
967// child impl and stub library created by java_sdk_library (and corresponding import) are components
968// because the creating module depends upon them in order to provide some of its own functionality.
969//
970// A component is exported if it is part of an sdk snapshot. e.g. The xml and impl child modules are
971// components but they are not exported as they are not part of an sdk snapshot.
972//
973// This information is used by the sdk snapshot generation code to ensure that it does not create
974// an sdk snapshot that contains a declaration of the component module and the module that creates
975// it as that would result in duplicate modules when attempting to use the snapshot. e.g. a snapshot
976// that included the java_sdk_library_import "foo" and also a java_import "foo.stubs" would fail
977// as there would be two modules called "foo.stubs".
978type ExportedComponentsInfo struct {
979 // The names of the exported components.
980 Components []string
981}
982
983var ExportedComponentsInfoProvider = blueprint.NewProvider(ExportedComponentsInfo{})