2016-10-07 01:12:58 +02:00
// Copyright 2016 Google Inc. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package android
2017-08-02 20:05:49 +02:00
import (
"fmt"
2019-06-11 21:25:34 +02:00
"reflect"
2020-12-11 19:13:08 +01:00
"strings"
2017-08-02 20:05:49 +02:00
"github.com/google/blueprint"
2019-03-26 23:07:36 +01:00
"github.com/google/blueprint/proptools"
2017-08-02 20:05:49 +02:00
)
2016-10-07 01:12:58 +02:00
// This file implements common functionality for handling modules that may exist as prebuilts,
// source, or both.
2019-12-19 16:11:53 +01:00
func RegisterPrebuiltMutators ( ctx RegistrationContext ) {
ctx . PreArchMutators ( RegisterPrebuiltsPreArchMutators )
ctx . PostDepsMutators ( RegisterPrebuiltsPostDepsMutators )
}
2020-06-26 23:08:43 +02:00
// Marks a dependency tag as possibly preventing a reference to a source from being
// replaced with the prebuilt.
type ReplaceSourceWithPrebuilt interface {
blueprint . DependencyTag
// Return true if the dependency defined by this tag should be replaced with the
// prebuilt.
ReplaceSourceWithPrebuilt ( ) bool
}
2017-03-10 03:43:01 +01:00
type prebuiltDependencyTag struct {
blueprint . BaseDependencyTag
}
2019-07-26 16:20:40 +02:00
var PrebuiltDepTag prebuiltDependencyTag
2016-10-07 01:12:58 +02:00
2020-01-14 13:42:08 +01:00
// Mark this tag so dependencies that use it are excluded from visibility enforcement.
func ( t prebuiltDependencyTag ) ExcludeFromVisibilityEnforcement ( ) { }
2020-04-07 16:25:44 +02:00
// Mark this tag so dependencies that use it are excluded from APEX contents.
func ( t prebuiltDependencyTag ) ExcludeFromApexContents ( ) { }
var _ ExcludeFromVisibilityEnforcementTag = PrebuiltDepTag
var _ ExcludeFromApexContentsTag = PrebuiltDepTag
2022-09-27 13:41:52 +02:00
// UserSuppliedPrebuiltProperties contains the prebuilt properties that can be specified in an
// Android.bp file.
type UserSuppliedPrebuiltProperties struct {
2017-08-02 20:05:49 +02:00
// When prefer is set to true the prebuilt will be used instead of any source module with
// a matching name.
2017-11-07 19:57:05 +01:00
Prefer * bool ` android:"arch_variant" `
2017-08-02 20:05:49 +02:00
2021-07-06 18:15:25 +02:00
// When specified this names a Soong config variable that controls the prefer property.
//
// If the value of the named Soong config variable is true then prefer is set to false and vice
// versa. If the Soong config variable is not set then it defaults to false, so prefer defaults
// to true.
//
// If specified then the prefer property is ignored in favor of the value of the Soong config
// variable.
2024-04-02 00:28:59 +02:00
//
// DEPRECATED: This property is being deprecated b/308188211.
// Use RELEASE_APEX_CONTRIBUTIONS build flags to select prebuilts of mainline modules.
2021-07-06 18:15:25 +02:00
Use_source_config_var * ConfigVarProperties
2022-09-27 13:41:52 +02:00
}
// CopyUserSuppliedPropertiesFromPrebuilt copies the user supplied prebuilt properties from the
// prebuilt properties.
func ( u * UserSuppliedPrebuiltProperties ) CopyUserSuppliedPropertiesFromPrebuilt ( p * Prebuilt ) {
* u = p . properties . UserSuppliedPrebuiltProperties
}
type PrebuiltProperties struct {
UserSuppliedPrebuiltProperties
2021-07-06 18:15:25 +02:00
2017-08-02 20:05:49 +02:00
SourceExists bool ` blueprint:"mutated" `
UsePrebuilt bool ` blueprint:"mutated" `
2020-03-05 18:34:13 +01:00
// Set if the module has been renamed to remove the "prebuilt_" prefix.
PrebuiltRenamedToSource bool ` blueprint:"mutated" `
2017-08-02 20:05:49 +02:00
}
2021-07-06 18:15:25 +02:00
// Properties that can be used to select a Soong config variable.
type ConfigVarProperties struct {
// Allow instances of this struct to be used as a property value in a BpPropertySet.
BpPrintableBase
// The name of the configuration namespace.
//
// As passed to add_soong_config_namespace in Make.
Config_namespace * string
// The name of the configuration variable.
//
// As passed to add_soong_config_var_value in Make.
Var_name * string
}
2016-10-07 01:12:58 +02:00
type Prebuilt struct {
2017-08-02 20:05:49 +02:00
properties PrebuiltProperties
2019-06-11 21:25:34 +02:00
2021-11-23 02:24:06 +01:00
// nil if the prebuilt has no srcs property at all. See InitPrebuiltModuleWithoutSrcs.
srcsSupplier PrebuiltSrcsSupplier
// "-" if the prebuilt has no srcs property at all. See InitPrebuiltModuleWithoutSrcs.
2020-03-13 00:43:52 +01:00
srcsPropertyName string
2016-10-07 01:12:58 +02:00
}
2020-12-11 19:13:08 +01:00
// RemoveOptionalPrebuiltPrefix returns the result of removing the "prebuilt_" prefix from the
// supplied name if it has one, or returns the name unmodified if it does not.
func RemoveOptionalPrebuiltPrefix ( name string ) string {
return strings . TrimPrefix ( name , "prebuilt_" )
}
2022-05-17 23:59:36 +02:00
// RemoveOptionalPrebuiltPrefixFromBazelLabel removes the "prebuilt_" prefix from the *target name* of a Bazel label.
// This differs from RemoveOptionalPrebuiltPrefix in that it does not remove it from the start of the string, but
// instead removes it from the target name itself.
func RemoveOptionalPrebuiltPrefixFromBazelLabel ( label string ) string {
splitLabel := strings . Split ( label , ":" )
bazelModuleNameNoPrebuilt := RemoveOptionalPrebuiltPrefix ( splitLabel [ 1 ] )
return strings . Join ( [ ] string {
splitLabel [ 0 ] ,
bazelModuleNameNoPrebuilt ,
} , ":" )
}
2016-10-07 01:12:58 +02:00
func ( p * Prebuilt ) Name ( name string ) string {
2021-04-02 11:24:13 +02:00
return PrebuiltNameFromSource ( name )
}
// PrebuiltNameFromSource returns the result of prepending the "prebuilt_" prefix to the supplied
// name.
func PrebuiltNameFromSource ( name string ) string {
2016-10-07 01:12:58 +02:00
return "prebuilt_" + name
}
2020-01-21 17:31:05 +01:00
func ( p * Prebuilt ) ForcePrefer ( ) {
p . properties . Prefer = proptools . BoolPtr ( true )
}
2020-05-13 17:08:09 +02:00
func ( p * Prebuilt ) Prefer ( ) bool {
return proptools . Bool ( p . properties . Prefer )
}
2021-03-01 14:18:44 +01:00
// SingleSourcePathFromSupplier invokes the supplied supplier for the current module in the
// supplied context to retrieve a list of file paths, ensures that the returned list of file paths
// contains a single value and then assumes that is a module relative file path and converts it to
// a Path accordingly.
//
// Any issues, such as nil supplier or not exactly one file path will be reported as errors on the
// supplied context and this will return nil.
func SingleSourcePathFromSupplier ( ctx ModuleContext , srcsSupplier PrebuiltSrcsSupplier , srcsPropertyName string ) Path {
if srcsSupplier != nil {
srcs := srcsSupplier ( ctx , ctx . Module ( ) )
2020-03-13 00:43:52 +01:00
if len ( srcs ) == 0 {
2021-03-01 14:18:44 +01:00
ctx . PropertyErrorf ( srcsPropertyName , "missing prebuilt source file" )
2019-03-26 23:07:36 +01:00
return nil
}
2016-10-07 01:12:58 +02:00
2020-03-13 00:43:52 +01:00
if len ( srcs ) > 1 {
2021-03-01 14:18:44 +01:00
ctx . PropertyErrorf ( srcsPropertyName , "multiple prebuilt source files" )
2019-03-26 23:07:36 +01:00
return nil
}
2016-10-07 01:12:58 +02:00
2019-03-26 23:07:36 +01:00
// Return the singleton source after expanding any filegroup in the
// sources.
2020-03-13 00:43:52 +01:00
src := srcs [ 0 ]
2019-06-11 21:25:34 +02:00
return PathForModuleSrc ( ctx , src )
2020-03-13 00:43:52 +01:00
} else {
ctx . ModuleErrorf ( "prebuilt source was not set" )
return nil
2019-03-26 23:07:36 +01:00
}
2017-08-02 20:05:49 +02:00
}
2021-03-01 14:18:44 +01:00
// The below source-related functions and the srcs, src fields are based on an assumption that
// prebuilt modules have a static source property at the moment. Currently there is only one
// exception, android_app_import, which chooses a source file depending on the product's DPI
// preference configs. We'll want to add native support for dynamic source cases if we end up having
// more modules like this.
func ( p * Prebuilt ) SingleSourcePath ( ctx ModuleContext ) Path {
return SingleSourcePathFromSupplier ( ctx , p . srcsSupplier , p . srcsPropertyName )
}
2019-04-23 11:00:10 +02:00
func ( p * Prebuilt ) UsePrebuilt ( ) bool {
return p . properties . UsePrebuilt
}
2020-03-13 00:43:52 +01:00
// Called to provide the srcs value for the prebuilt module.
//
2021-03-01 13:25:10 +01:00
// This can be called with a context for any module not just the prebuilt one itself. It can also be
// called concurrently.
//
2020-03-13 00:43:52 +01:00
// Return the src value or nil if it is not available.
2021-03-01 13:25:10 +01:00
type PrebuiltSrcsSupplier func ( ctx BaseModuleContext , prebuilt Module ) [ ] string
2020-03-13 00:43:52 +01:00
2021-11-23 02:24:06 +01:00
func initPrebuiltModuleCommon ( module PrebuiltInterface ) * Prebuilt {
p := module . Prebuilt ( )
module . AddProperties ( & p . properties )
return p
}
// Initialize the module as a prebuilt module that has no dedicated property that lists its
// sources. SingleSourcePathFromSupplier should not be called for this module.
//
// This is the case e.g. for header modules, which provides the headers in source form
// regardless whether they are prebuilt or not.
func InitPrebuiltModuleWithoutSrcs ( module PrebuiltInterface ) {
p := initPrebuiltModuleCommon ( module )
p . srcsPropertyName = "-"
}
2020-03-13 00:43:52 +01:00
// Initialize the module as a prebuilt module that uses the provided supplier to access the
// prebuilt sources of the module.
//
// The supplier will be called multiple times and must return the same values each time it
// is called. If it returns an empty array (or nil) then the prebuilt module will not be used
// as a replacement for a source module with the same name even if prefer = true.
//
// If the Prebuilt.SingleSourcePath() is called on the module then this must return an array
// containing exactly one source file.
//
// The provided property name is used to provide helpful error messages in the event that
// a problem arises, e.g. calling SingleSourcePath() when more than one source is provided.
func InitPrebuiltModuleWithSrcSupplier ( module PrebuiltInterface , srcsSupplier PrebuiltSrcsSupplier , srcsPropertyName string ) {
if srcsSupplier == nil {
panic ( fmt . Errorf ( "srcsSupplier must not be nil" ) )
}
if srcsPropertyName == "" {
panic ( fmt . Errorf ( "srcsPropertyName must not be empty" ) )
}
2021-11-23 02:24:06 +01:00
p := initPrebuiltModuleCommon ( module )
2020-03-13 00:43:52 +01:00
p . srcsSupplier = srcsSupplier
p . srcsPropertyName = srcsPropertyName
}
func InitPrebuiltModule ( module PrebuiltInterface , srcs * [ ] string ) {
if srcs == nil {
panic ( fmt . Errorf ( "srcs must not be nil" ) )
}
2021-03-01 13:25:10 +01:00
srcsSupplier := func ( ctx BaseModuleContext , _ Module ) [ ] string {
2020-03-13 00:43:52 +01:00
return * srcs
}
InitPrebuiltModuleWithSrcSupplier ( module , srcsSupplier , "srcs" )
2016-10-07 01:12:58 +02:00
}
2019-06-11 21:25:34 +02:00
func InitSingleSourcePrebuiltModule ( module PrebuiltInterface , srcProps interface { } , srcField string ) {
2020-03-13 00:43:52 +01:00
srcPropsValue := reflect . ValueOf ( srcProps ) . Elem ( )
srcStructField , _ := srcPropsValue . Type ( ) . FieldByName ( srcField )
if ! srcPropsValue . IsValid ( ) || srcStructField . Name == "" {
panic ( fmt . Errorf ( "invalid single source prebuilt %+v" , module ) )
}
if srcPropsValue . Kind ( ) != reflect . Struct && srcPropsValue . Kind ( ) != reflect . Interface {
panic ( fmt . Errorf ( "invalid single source prebuilt %+v" , srcProps ) )
}
srcFieldIndex := srcStructField . Index
srcPropertyName := proptools . PropertyNameForField ( srcField )
2021-03-01 13:25:10 +01:00
srcsSupplier := func ( ctx BaseModuleContext , _ Module ) [ ] string {
2024-04-12 02:43:00 +02:00
if ! module . Enabled ( ctx ) {
2020-12-04 20:51:29 +01:00
return nil
}
2020-03-13 00:43:52 +01:00
value := srcPropsValue . FieldByIndex ( srcFieldIndex )
if value . Kind ( ) == reflect . Ptr {
2024-01-12 23:02:47 +01:00
if value . IsNil ( ) {
return nil
}
2020-03-13 00:43:52 +01:00
value = value . Elem ( )
}
if value . Kind ( ) != reflect . String {
2021-09-09 03:48:30 +02:00
panic ( fmt . Errorf ( "prebuilt src field %q in %T in module %s should be a string or a pointer to one but was %v" , srcField , srcProps , module , value ) )
2020-03-13 00:43:52 +01:00
}
src := value . String ( )
if src == "" {
return nil
}
return [ ] string { src }
}
InitPrebuiltModuleWithSrcSupplier ( module , srcsSupplier , srcPropertyName )
2019-03-26 23:07:36 +01:00
}
2016-10-07 01:12:58 +02:00
type PrebuiltInterface interface {
Module
Prebuilt ( ) * Prebuilt
}
2021-04-02 11:35:24 +02:00
// IsModulePreferred returns true if the given module is preferred.
//
// A source module is preferred if there is no corresponding prebuilt module or the prebuilt module
// does not have "prefer: true".
//
// A prebuilt module is preferred if there is no corresponding source module or the prebuilt module
// has "prefer: true".
func IsModulePreferred ( module Module ) bool {
if module . IsReplacedByPrebuilt ( ) {
// A source module that has been replaced by a prebuilt counterpart.
return false
}
2021-04-28 11:41:21 +02:00
if p := GetEmbeddedPrebuilt ( module ) ; p != nil {
return p . UsePrebuilt ( )
2021-04-02 11:35:24 +02:00
}
return true
}
2021-04-28 11:41:21 +02:00
// IsModulePrebuilt returns true if the module implements PrebuiltInterface and
// has been initialized as a prebuilt and so returns a non-nil value from the
// PrebuiltInterface.Prebuilt() method.
func IsModulePrebuilt ( module Module ) bool {
return GetEmbeddedPrebuilt ( module ) != nil
}
// GetEmbeddedPrebuilt returns a pointer to the embedded Prebuilt structure or
// nil if the module does not implement PrebuiltInterface or has not been
// initialized as a prebuilt module.
func GetEmbeddedPrebuilt ( module Module ) * Prebuilt {
if p , ok := module . ( PrebuiltInterface ) ; ok {
return p . Prebuilt ( )
}
return nil
}
2022-01-13 00:18:30 +01:00
// PrebuiltGetPreferred returns the module that is preferred for the given
// module. That is either the module itself or the prebuilt counterpart that has
// taken its place. The given module must be a direct dependency of the current
// context module, and it must be the source module if both source and prebuilt
// exist.
//
// This function is for use on dependencies after PrebuiltPostDepsMutator has
// run - any dependency that is registered before that will already reference
// the right module. This function is only safe to call after all mutators that
// may call CreateVariations, e.g. in GenerateAndroidBuildActions.
func PrebuiltGetPreferred ( ctx BaseModuleContext , module Module ) Module {
if ! module . IsReplacedByPrebuilt ( ) {
return module
}
if IsModulePrebuilt ( module ) {
// If we're given a prebuilt then assume there's no source module around.
return module
}
sourceModDepFound := false
var prebuiltMod Module
ctx . WalkDeps ( func ( child , parent Module ) bool {
if prebuiltMod != nil {
return false
}
if parent == ctx . Module ( ) {
// First level: Only recurse if the module is found as a direct dependency.
sourceModDepFound = child == module
return sourceModDepFound
}
// Second level: Follow PrebuiltDepTag to the prebuilt.
if t := ctx . OtherModuleDependencyTag ( child ) ; t == PrebuiltDepTag {
prebuiltMod = child
}
return false
} )
if prebuiltMod == nil {
if ! sourceModDepFound {
panic ( fmt . Errorf ( "Failed to find source module as a direct dependency: %s" , module ) )
} else {
panic ( fmt . Errorf ( "Failed to find prebuilt for source module: %s" , module ) )
}
}
return prebuiltMod
}
2017-07-28 00:41:32 +02:00
func RegisterPrebuiltsPreArchMutators ( ctx RegisterMutatorsContext ) {
2020-03-05 18:34:13 +01:00
ctx . BottomUp ( "prebuilt_rename" , PrebuiltRenameMutator ) . Parallel ( )
2017-07-13 23:43:27 +02:00
}
2017-07-28 00:41:32 +02:00
func RegisterPrebuiltsPostDepsMutators ( ctx RegisterMutatorsContext ) {
2020-03-05 18:34:13 +01:00
ctx . BottomUp ( "prebuilt_source" , PrebuiltSourceDepsMutator ) . Parallel ( )
2023-10-27 00:38:34 +02:00
ctx . BottomUp ( "prebuilt_select" , PrebuiltSelectModuleMutator ) . Parallel ( )
2018-04-17 23:58:42 +02:00
ctx . BottomUp ( "prebuilt_postdeps" , PrebuiltPostDepsMutator ) . Parallel ( )
2017-07-13 23:43:27 +02:00
}
2024-01-03 19:57:03 +01:00
// Returns the name of the source module corresponding to a prebuilt module
// For source modules, it returns its own name
type baseModuleName interface {
BaseModuleName ( ) string
}
2020-03-05 18:34:13 +01:00
// PrebuiltRenameMutator ensures that there always is a module with an
// undecorated name.
func PrebuiltRenameMutator ( ctx BottomUpMutatorContext ) {
2021-04-28 11:41:21 +02:00
m := ctx . Module ( )
if p := GetEmbeddedPrebuilt ( m ) ; p != nil {
2024-01-03 19:57:03 +01:00
bmn , _ := m . ( baseModuleName )
name := bmn . BaseModuleName ( )
2020-03-05 18:34:13 +01:00
if ! ctx . OtherModuleExists ( name ) {
2016-10-07 01:12:58 +02:00
ctx . Rename ( name )
2021-04-28 11:41:21 +02:00
p . properties . PrebuiltRenamedToSource = true
2020-03-05 18:34:13 +01:00
}
}
}
// PrebuiltSourceDepsMutator adds dependencies to the prebuilt module from the
// corresponding source module, if one exists for the same variant.
2023-10-27 00:38:34 +02:00
// Add a dependency from the prebuilt to `all_apex_contributions`
// The metadata will be used for source vs prebuilts selection
2020-03-05 18:34:13 +01:00
func PrebuiltSourceDepsMutator ( ctx BottomUpMutatorContext ) {
2021-04-28 11:41:21 +02:00
m := ctx . Module ( )
2024-08-01 02:51:20 +02:00
if p := GetEmbeddedPrebuilt ( m ) ; p != nil {
2023-10-27 00:38:34 +02:00
// Add a dependency from the prebuilt to the `all_apex_contributions`
// metadata module
// TODO: When all branches contain this singleton module, make this strict
// TODO: Add this dependency only for mainline prebuilts and not every prebuilt module
if ctx . OtherModuleExists ( "all_apex_contributions" ) {
2024-04-05 02:36:44 +02:00
ctx . AddDependency ( m , AcDepTag , "all_apex_contributions" )
2023-10-27 00:38:34 +02:00
}
2024-08-01 02:51:20 +02:00
if m . Enabled ( ctx ) && ! p . properties . PrebuiltRenamedToSource {
// If this module is a prebuilt, is enabled and has not been renamed to source then add a
// dependency onto the source if it is present.
bmn , _ := m . ( baseModuleName )
name := bmn . BaseModuleName ( )
if ctx . OtherModuleReverseDependencyVariantExists ( name ) {
ctx . AddReverseDependency ( ctx . Module ( ) , PrebuiltDepTag , name )
p . properties . SourceExists = true
}
}
2016-10-07 01:12:58 +02:00
}
}
2023-05-02 04:43:14 +02:00
// checkInvariantsForSourceAndPrebuilt checks if invariants are kept when replacing
// source with prebuilt. Note that the current module for the context is the source module.
func checkInvariantsForSourceAndPrebuilt ( ctx BaseModuleContext , s , p Module ) {
if _ , ok := s . ( OverrideModule ) ; ok {
// skip the check when the source module is `override_X` because it's only a placeholder
// for the actual source module. The check will be invoked for the actual module.
return
}
if sourcePartition , prebuiltPartition := s . PartitionTag ( ctx . DeviceConfig ( ) ) , p . PartitionTag ( ctx . DeviceConfig ( ) ) ; sourcePartition != prebuiltPartition {
ctx . OtherModuleErrorf ( p , "partition is different: %s(%s) != %s(%s)" ,
sourcePartition , ctx . ModuleName ( ) , prebuiltPartition , ctx . OtherModuleName ( p ) )
}
}
2017-03-17 21:14:32 +01:00
// PrebuiltSelectModuleMutator marks prebuilts that are used, either overriding source modules or
// because the source module doesn't exist. It also disables installing overridden source modules.
2023-10-26 22:48:02 +02:00
//
// If the visited module is the metadata module `all_apex_contributions`, it sets a
// provider containing metadata about whether source or prebuilt of mainline modules should be used.
// This logic was added here to prevent the overhead of creating a new mutator.
2023-10-27 00:38:34 +02:00
func PrebuiltSelectModuleMutator ( ctx BottomUpMutatorContext ) {
2021-04-28 11:41:21 +02:00
m := ctx . Module ( )
if p := GetEmbeddedPrebuilt ( m ) ; p != nil {
2021-11-23 02:24:06 +01:00
if p . srcsSupplier == nil && p . srcsPropertyName == "" {
2017-08-02 20:05:49 +02:00
panic ( fmt . Errorf ( "prebuilt module did not have InitPrebuiltModule called on it" ) )
}
if ! p . properties . SourceExists {
2021-03-01 13:25:10 +01:00
p . properties . UsePrebuilt = p . usePrebuilt ( ctx , nil , m )
2017-03-17 21:14:32 +01:00
}
2023-10-27 00:38:34 +02:00
// Propagate the provider received from `all_apex_contributions`
// to the source module
2024-04-05 02:36:44 +02:00
ctx . VisitDirectDepsWithTag ( AcDepTag , func ( am Module ) {
2023-12-13 22:47:44 +01:00
psi , _ := OtherModuleProvider ( ctx , am , PrebuiltSelectionInfoProvider )
SetProvider ( ctx , PrebuiltSelectionInfoProvider , psi )
2023-10-27 00:38:34 +02:00
} )
2017-03-17 21:14:32 +01:00
} else if s , ok := ctx . Module ( ) . ( Module ) ; ok {
2024-01-03 19:57:03 +01:00
// Use `all_apex_contributions` for source vs prebuilt selection.
psi := PrebuiltSelectionInfoMap { }
ctx . VisitDirectDepsWithTag ( PrebuiltDepTag , func ( am Module ) {
// The value of psi gets overwritten with the provider from the last visited prebuilt.
// But all prebuilts have the same value of the provider, so this should be idempontent.
psi , _ = OtherModuleProvider ( ctx , am , PrebuiltSelectionInfoProvider )
} )
2021-04-28 11:41:21 +02:00
ctx . VisitDirectDepsWithTag ( PrebuiltDepTag , func ( prebuiltModule Module ) {
p := GetEmbeddedPrebuilt ( prebuiltModule )
if p . usePrebuilt ( ctx , s , prebuiltModule ) {
2023-05-02 04:43:14 +02:00
checkInvariantsForSourceAndPrebuilt ( ctx , s , prebuiltModule )
2017-12-31 02:54:27 +01:00
p . properties . UsePrebuilt = true
2020-08-06 00:40:41 +02:00
s . ReplacedByPrebuilt ( )
2016-11-30 00:16:18 +01:00
}
} )
2024-01-03 19:57:03 +01:00
// If any module in this mainline module family has been flagged using apex_contributions, disable every other module in that family
// Add source
allModules := [ ] Module { s }
// Add each prebuilt
ctx . VisitDirectDepsWithTag ( PrebuiltDepTag , func ( prebuiltModule Module ) {
allModules = append ( allModules , prebuiltModule )
} )
hideUnflaggedModules ( ctx , psi , allModules )
2016-11-30 00:16:18 +01:00
}
2024-01-03 19:57:03 +01:00
2023-10-26 22:48:02 +02:00
// If this is `all_apex_contributions`, set a provider containing
// metadata about source vs prebuilts selection
if am , ok := m . ( * allApexContributions ) ; ok {
am . SetPrebuiltSelectionInfoProvider ( ctx )
}
2016-11-30 00:16:18 +01:00
}
2024-01-03 19:57:03 +01:00
// If any module in this mainline module family has been flagged using apex_contributions, disable every other module in that family
func hideUnflaggedModules ( ctx BottomUpMutatorContext , psi PrebuiltSelectionInfoMap , allModulesInFamily [ ] Module ) {
var selectedModuleInFamily Module
// query all_apex_contributions to see if any module in this family has been selected
for _ , moduleInFamily := range allModulesInFamily {
// validate that are no duplicates
2024-01-19 01:22:22 +01:00
if isSelected ( psi , moduleInFamily ) {
2024-01-03 19:57:03 +01:00
if selectedModuleInFamily == nil {
// Store this so we can validate that there are no duplicates
selectedModuleInFamily = moduleInFamily
} else {
// There are duplicate modules from the same mainline module family
ctx . ModuleErrorf ( "Found duplicate variations of the same module in apex_contributions: %s and %s. Please remove one of these.\n" , selectedModuleInFamily . Name ( ) , moduleInFamily . Name ( ) )
}
}
}
// If a module has been selected, hide all other modules
if selectedModuleInFamily != nil {
for _ , moduleInFamily := range allModulesInFamily {
if moduleInFamily . Name ( ) != selectedModuleInFamily . Name ( ) {
moduleInFamily . HideFromMake ( )
2024-02-27 05:49:52 +01:00
// If this is a prebuilt module, unset properties.UsePrebuilt
// properties.UsePrebuilt might evaluate to true via soong config var fallback mechanism
// Set it to false explicitly so that the following mutator does not replace rdeps to this unselected prebuilt
if p := GetEmbeddedPrebuilt ( moduleInFamily ) ; p != nil {
p . properties . UsePrebuilt = false
}
}
}
}
// Do a validation pass to make sure that multiple prebuilts of a specific module are not selected.
// This might happen if the prebuilts share the same soong config var namespace.
// This should be an error, unless one of the prebuilts has been explicitly declared in apex_contributions
var selectedPrebuilt Module
for _ , moduleInFamily := range allModulesInFamily {
// Skip if this module is in a different namespace
if ! moduleInFamily . ExportedToMake ( ) {
continue
}
// Skip for the top-level java_sdk_library_(_import). This has some special cases that need to be addressed first.
// This does not run into non-determinism because PrebuiltPostDepsMutator also has the special case
if sdkLibrary , ok := moduleInFamily . ( interface { SdkLibraryName ( ) * string } ) ; ok && sdkLibrary . SdkLibraryName ( ) != nil {
continue
}
if p := GetEmbeddedPrebuilt ( moduleInFamily ) ; p != nil && p . properties . UsePrebuilt {
if selectedPrebuilt == nil {
selectedPrebuilt = moduleInFamily
} else {
ctx . ModuleErrorf ( "Multiple prebuilt modules %v and %v have been marked as preferred for this source module. " +
"Please add the appropriate prebuilt module to apex_contributions for this release config." , selectedPrebuilt . Name ( ) , moduleInFamily . Name ( ) )
2024-01-03 19:57:03 +01:00
}
}
}
}
2021-03-23 22:08:29 +01:00
// PrebuiltPostDepsMutator replaces dependencies on the source module with dependencies on the
// prebuilt when both modules exist and the prebuilt should be used. When the prebuilt should not
// be used, disable installing it.
2018-04-17 23:58:42 +02:00
func PrebuiltPostDepsMutator ( ctx BottomUpMutatorContext ) {
2021-04-28 11:41:21 +02:00
m := ctx . Module ( )
if p := GetEmbeddedPrebuilt ( m ) ; p != nil {
2024-01-03 19:57:03 +01:00
bmn , _ := m . ( baseModuleName )
name := bmn . BaseModuleName ( )
2024-02-02 00:41:11 +01:00
psi := PrebuiltSelectionInfoMap { }
2024-04-05 02:36:44 +02:00
ctx . VisitDirectDepsWithTag ( AcDepTag , func ( am Module ) {
2024-02-02 00:41:11 +01:00
psi , _ = OtherModuleProvider ( ctx , am , PrebuiltSelectionInfoProvider )
} )
2017-08-02 20:05:49 +02:00
if p . properties . UsePrebuilt {
if p . properties . SourceExists {
2020-06-26 23:08:43 +02:00
ctx . ReplaceDependenciesIf ( name , func ( from blueprint . Module , tag blueprint . DependencyTag , to blueprint . Module ) bool {
2024-02-02 00:41:11 +01:00
if sdkLibrary , ok := m . ( interface { SdkLibraryName ( ) * string } ) ; ok && sdkLibrary . SdkLibraryName ( ) != nil {
// Do not replace deps to the top-level prebuilt java_sdk_library hook.
// This hook has been special-cased in #isSelected to be _always_ active, even in next builds
// for dexpreopt and hiddenapi processing.
// If we do not special-case this here, rdeps referring to a java_sdk_library in next builds via libs
// will get prebuilt stubs
// TODO (b/308187268): Remove this after the apexes have been added to apex_contributions
2024-02-27 05:49:52 +01:00
if psi . IsSelected ( name ) {
2024-02-02 00:41:11 +01:00
return false
}
}
2020-06-26 23:08:43 +02:00
if t , ok := tag . ( ReplaceSourceWithPrebuilt ) ; ok {
return t . ReplaceSourceWithPrebuilt ( )
}
return true
} )
2016-11-24 00:44:07 +01:00
}
} else {
2020-12-16 19:20:23 +01:00
m . HideFromMake ( )
2016-10-07 01:12:58 +02:00
}
}
}
2023-10-27 22:06:32 +02:00
// A wrapper around PrebuiltSelectionInfoMap.IsSelected with special handling for java_sdk_library
// java_sdk_library is a macro that creates
// 1. top-level impl library
// 2. stub libraries (suffixed with .stubs...)
//
// java_sdk_library_import is a macro that creates
// 1. top-level "impl" library
// 2. stub libraries (suffixed with .stubs...)
//
// the impl of java_sdk_library_import is a "hook" for hiddenapi and dexpreopt processing. It does not have an impl jar, but acts as a shim
// to provide the jar deapxed from the prebuilt apex
//
// isSelected uses `all_apex_contributions` to supersede source vs prebuilts selection of the stub libraries. It does not supersede the
// selection of the top-level "impl" library so that this hook can work
//
// TODO (b/308174306) - Fix this when we need to support multiple prebuilts in main
func isSelected ( psi PrebuiltSelectionInfoMap , m Module ) bool {
if sdkLibrary , ok := m . ( interface { SdkLibraryName ( ) * string } ) ; ok && sdkLibrary . SdkLibraryName ( ) != nil {
sln := proptools . String ( sdkLibrary . SdkLibraryName ( ) )
2024-01-19 01:22:22 +01:00
2023-10-27 22:06:32 +02:00
// This is the top-level library
// Do not supersede the existing prebuilts vs source selection mechanisms
2024-02-02 00:41:11 +01:00
// TODO (b/308187268): Remove this after the apexes have been added to apex_contributions
2024-01-19 01:22:22 +01:00
if bmn , ok := m . ( baseModuleName ) ; ok && sln == bmn . BaseModuleName ( ) {
2023-10-27 22:06:32 +02:00
return false
}
// Stub library created by java_sdk_library_import
2024-01-19 01:22:22 +01:00
// java_sdk_library creates several child modules (java_import + prebuilt_stubs_sources) dynamically.
// This code block ensures that these child modules are selected if the top-level java_sdk_library_import is listed
// in the selected apex_contributions.
if javaImport , ok := m . ( createdByJavaSdkLibraryName ) ; ok && javaImport . CreatedByJavaSdkLibraryName ( ) != nil {
return psi . IsSelected ( PrebuiltNameFromSource ( proptools . String ( javaImport . CreatedByJavaSdkLibraryName ( ) ) ) )
2023-10-27 22:06:32 +02:00
}
// Stub library created by java_sdk_library
2024-01-03 19:57:03 +01:00
return psi . IsSelected ( sln )
2023-10-27 22:06:32 +02:00
}
2024-01-03 19:57:03 +01:00
return psi . IsSelected ( m . Name ( ) )
2023-10-27 22:06:32 +02:00
}
2024-01-19 01:22:22 +01:00
// implemented by child modules of java_sdk_library_import
type createdByJavaSdkLibraryName interface {
CreatedByJavaSdkLibraryName ( ) * string
}
2024-02-27 10:31:51 +01:00
// Returns true if the prebuilt variant is disabled
// e.g. for a cc_prebuilt_library_shared, this will return
// - true for the static variant of the module
// - false for the shared variant of the module
//
// Even though this is a cc_prebuilt_library_shared, we create both the variants today
// https://source.corp.google.com/h/googleplex-android/platform/build/soong/+/e08e32b45a18a77bc3c3e751f730539b1b374f1b:cc/library.go;l=2113-2116;drc=2c4a9779cd1921d0397a12b3d3521f4c9b30d747;bpv=1;bpt=0
func ( p * Prebuilt ) variantIsDisabled ( ctx BaseMutatorContext , prebuilt Module ) bool {
return p . srcsSupplier != nil && len ( p . srcsSupplier ( ctx , prebuilt ) ) == 0
}
2024-08-01 02:51:20 +02:00
type apexVariationName interface {
ApexVariationName ( ) string
}
2016-11-30 00:16:18 +01:00
// usePrebuilt returns true if a prebuilt should be used instead of the source module. The prebuilt
// will be used if it is marked "prefer" or if the source module is disabled.
2023-10-27 00:38:34 +02:00
func ( p * Prebuilt ) usePrebuilt ( ctx BaseMutatorContext , source Module , prebuilt Module ) bool {
2024-08-01 02:51:20 +02:00
isMainlinePrebuilt := func ( prebuilt Module ) bool {
apex , ok := prebuilt . ( apexVariationName )
if ! ok {
return false
}
// Prebuilts of aosp apexes in prebuilts/runtime
// Used in minimal art branches
if prebuilt . base ( ) . BaseModuleName ( ) == apex . ApexVariationName ( ) {
return false
}
return InList ( apex . ApexVariationName ( ) , ctx . Config ( ) . AllMainlineApexNames ( ) )
}
2023-10-27 00:38:34 +02:00
// Use `all_apex_contributions` for source vs prebuilt selection.
psi := PrebuiltSelectionInfoMap { }
2024-08-01 02:51:20 +02:00
var psiDepTag blueprint . DependencyTag
if p := GetEmbeddedPrebuilt ( ctx . Module ( ) ) ; p != nil {
// This is a prebuilt module, visit all_apex_contributions to get the info
psiDepTag = AcDepTag
} else {
// This is a source module, visit any of its prebuilts to get the info
psiDepTag = PrebuiltDepTag
}
ctx . VisitDirectDepsWithTag ( psiDepTag , func ( am Module ) {
2023-12-13 22:47:44 +01:00
psi , _ = OtherModuleProvider ( ctx , am , PrebuiltSelectionInfoProvider )
2023-10-27 00:38:34 +02:00
} )
2023-10-27 22:06:32 +02:00
2023-10-27 00:38:34 +02:00
// If the source module is explicitly listed in the metadata module, use that
2023-10-27 22:06:32 +02:00
if source != nil && isSelected ( psi , source ) {
2023-10-27 00:38:34 +02:00
return false
}
// If the prebuilt module is explicitly listed in the metadata module, use that
2024-02-27 10:31:51 +01:00
if isSelected ( psi , prebuilt ) && ! p . variantIsDisabled ( ctx , prebuilt ) {
2023-10-27 00:38:34 +02:00
return true
}
2023-10-27 22:06:32 +02:00
2024-08-01 02:51:20 +02:00
// If this is a mainline prebuilt, but has not been flagged, hide it.
if isMainlinePrebuilt ( prebuilt ) {
return false
}
2023-10-27 00:38:34 +02:00
// If the baseModuleName could not be found in the metadata module,
// fall back to the existing source vs prebuilt selection.
// TODO: Drop the fallback mechanisms
2024-02-27 10:31:51 +01:00
if p . variantIsDisabled ( ctx , prebuilt ) {
2023-12-08 01:54:51 +01:00
return false
}
2016-11-30 00:16:18 +01:00
2023-12-08 01:54:51 +01:00
// Skip prebuilt modules under unexported namespaces so that we won't
// end up shadowing non-prebuilt module when prebuilt module under same
// name happens to have a `Prefer` property set to true.
if ctx . Config ( ) . KatiEnabled ( ) && ! prebuilt . ExportedToMake ( ) {
return false
2021-01-10 17:47:46 +01:00
}
2021-07-06 18:15:25 +02:00
// If source is not available or is disabled then always use the prebuilt.
2024-04-12 02:43:00 +02:00
if source == nil || ! source . Enabled ( ctx ) {
2023-12-08 01:54:51 +01:00
return true
2016-10-07 01:12:58 +02:00
}
2021-07-06 18:15:25 +02:00
// TODO: use p.Properties.Name and ctx.ModuleDir to override preference
return Bool ( p . properties . Prefer )
2016-10-07 01:12:58 +02:00
}
2019-07-07 05:39:16 +02:00
func ( p * Prebuilt ) SourceExists ( ) bool {
return p . properties . SourceExists
}