2015-11-03 08:43:11 +08:00
|
|
|
// Copyright 2015 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.
|
|
|
|
|
2016-05-19 06:37:25 +08:00
|
|
|
package android
|
2015-11-03 08:43:11 +08:00
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/google/blueprint"
|
|
|
|
"github.com/google/blueprint/proptools"
|
|
|
|
)
|
|
|
|
|
2016-04-12 06:06:20 +08:00
|
|
|
type defaultsDependencyTag struct {
|
|
|
|
blueprint.BaseDependencyTag
|
|
|
|
}
|
|
|
|
|
|
|
|
var DefaultsDepTag defaultsDependencyTag
|
|
|
|
|
2015-11-03 08:43:11 +08:00
|
|
|
type defaultsProperties struct {
|
|
|
|
Defaults []string
|
|
|
|
}
|
|
|
|
|
2017-07-08 05:33:33 +08:00
|
|
|
type DefaultableModuleBase struct {
|
2015-11-03 08:43:11 +08:00
|
|
|
defaultsProperties defaultsProperties
|
|
|
|
defaultableProperties []interface{}
|
|
|
|
}
|
|
|
|
|
2017-07-08 05:33:33 +08:00
|
|
|
func (d *DefaultableModuleBase) defaults() *defaultsProperties {
|
2015-11-03 08:43:11 +08:00
|
|
|
return &d.defaultsProperties
|
|
|
|
}
|
|
|
|
|
2017-07-08 05:33:33 +08:00
|
|
|
func (d *DefaultableModuleBase) setProperties(props []interface{}) {
|
2015-11-03 08:43:11 +08:00
|
|
|
d.defaultableProperties = props
|
|
|
|
}
|
|
|
|
|
|
|
|
type Defaultable interface {
|
|
|
|
defaults() *defaultsProperties
|
|
|
|
setProperties([]interface{})
|
2016-08-10 03:00:45 +08:00
|
|
|
applyDefaults(TopDownMutatorContext, []Defaults)
|
2015-11-03 08:43:11 +08:00
|
|
|
}
|
|
|
|
|
2017-07-08 05:33:33 +08:00
|
|
|
type DefaultableModule interface {
|
|
|
|
Module
|
|
|
|
Defaultable
|
|
|
|
}
|
2015-11-03 08:43:11 +08:00
|
|
|
|
2017-07-08 05:33:33 +08:00
|
|
|
var _ Defaultable = (*DefaultableModuleBase)(nil)
|
2015-11-03 08:43:11 +08:00
|
|
|
|
2017-07-08 05:33:33 +08:00
|
|
|
func InitDefaultableModule(module DefaultableModule) {
|
|
|
|
module.(Defaultable).setProperties(module.(Module).GetProperties())
|
2015-11-03 08:43:11 +08:00
|
|
|
|
2017-07-08 05:33:33 +08:00
|
|
|
module.AddProperties(module.defaults())
|
2015-11-03 08:43:11 +08:00
|
|
|
}
|
|
|
|
|
2017-07-08 05:33:33 +08:00
|
|
|
type DefaultsModuleBase struct {
|
|
|
|
DefaultableModuleBase
|
2015-11-03 08:43:11 +08:00
|
|
|
}
|
|
|
|
|
2019-05-24 18:00:30 +08:00
|
|
|
// The common pattern for defaults modules is to register separate instances of
|
|
|
|
// the xxxProperties structs in the AddProperties calls, rather than reusing the
|
|
|
|
// ones inherited from Module.
|
|
|
|
//
|
|
|
|
// The effect is that e.g. myDefaultsModuleInstance.base().xxxProperties won't
|
|
|
|
// contain the values that have been set for the defaults module. Rather, to
|
|
|
|
// retrieve the values it is necessary to iterate over properties(). E.g. to get
|
|
|
|
// the commonProperties instance that have the real values:
|
|
|
|
//
|
|
|
|
// d := myModule.(Defaults)
|
|
|
|
// for _, props := range d.properties() {
|
|
|
|
// if cp, ok := props.(*commonProperties); ok {
|
|
|
|
// ... access property values in cp ...
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// The rationale is that the properties on a defaults module apply to the
|
|
|
|
// defaultable modules using it, not to the defaults module itself. E.g. setting
|
|
|
|
// the "enabled" property false makes inheriting modules disabled by default,
|
|
|
|
// rather than disabling the defaults module itself.
|
2015-11-03 08:43:11 +08:00
|
|
|
type Defaults interface {
|
2016-07-28 01:15:06 +08:00
|
|
|
Defaultable
|
2015-11-03 08:43:11 +08:00
|
|
|
isDefaults() bool
|
|
|
|
properties() []interface{}
|
|
|
|
}
|
|
|
|
|
2017-07-08 05:33:33 +08:00
|
|
|
func (d *DefaultsModuleBase) isDefaults() bool {
|
2015-11-03 08:43:11 +08:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2017-07-08 05:33:33 +08:00
|
|
|
func (d *DefaultsModuleBase) properties() []interface{} {
|
2016-07-28 01:15:06 +08:00
|
|
|
return d.defaultableProperties
|
2015-11-03 08:43:11 +08:00
|
|
|
}
|
|
|
|
|
2019-06-11 04:12:56 +08:00
|
|
|
func (d *DefaultsModuleBase) GenerateAndroidBuildActions(ctx ModuleContext) {
|
|
|
|
}
|
|
|
|
|
2017-07-08 05:33:33 +08:00
|
|
|
func InitDefaultsModule(module DefaultableModule) {
|
2017-06-24 06:06:31 +08:00
|
|
|
module.AddProperties(
|
2016-05-18 07:34:16 +08:00
|
|
|
&hostAndDeviceProperties{},
|
|
|
|
&commonProperties{},
|
|
|
|
&variableProperties{})
|
|
|
|
|
2017-06-24 06:06:31 +08:00
|
|
|
InitArchModule(module)
|
2017-07-08 05:33:33 +08:00
|
|
|
InitDefaultableModule(module)
|
2016-05-18 07:34:16 +08:00
|
|
|
|
2017-06-24 06:06:31 +08:00
|
|
|
module.AddProperties(&module.base().nameProperties)
|
2016-05-18 07:34:16 +08:00
|
|
|
|
|
|
|
module.base().module = module
|
2015-11-03 08:43:11 +08:00
|
|
|
}
|
|
|
|
|
2017-07-08 05:33:33 +08:00
|
|
|
var _ Defaults = (*DefaultsModuleBase)(nil)
|
2015-11-03 08:43:11 +08:00
|
|
|
|
2017-07-08 05:33:33 +08:00
|
|
|
func (defaultable *DefaultableModuleBase) applyDefaults(ctx TopDownMutatorContext,
|
2016-08-10 03:00:45 +08:00
|
|
|
defaultsList []Defaults) {
|
|
|
|
|
|
|
|
for _, defaults := range defaultsList {
|
|
|
|
for _, prop := range defaultable.defaultableProperties {
|
|
|
|
for _, def := range defaults.properties() {
|
|
|
|
if proptools.TypeEqual(prop, def) {
|
|
|
|
err := proptools.PrependProperties(prop, def, nil)
|
|
|
|
if err != nil {
|
|
|
|
if propertyErr, ok := err.(*proptools.ExtendPropertyError); ok {
|
|
|
|
ctx.PropertyErrorf(propertyErr.Property, "%s", propertyErr.Err.Error())
|
|
|
|
} else {
|
|
|
|
panic(err)
|
|
|
|
}
|
2015-11-03 08:43:11 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-08 05:35:50 +08:00
|
|
|
func RegisterDefaultsPreArchMutators(ctx RegisterMutatorsContext) {
|
2017-07-14 05:43:27 +08:00
|
|
|
ctx.BottomUp("defaults_deps", defaultsDepsMutator).Parallel()
|
|
|
|
ctx.TopDown("defaults", defaultsMutator).Parallel()
|
|
|
|
}
|
|
|
|
|
2016-05-19 06:37:25 +08:00
|
|
|
func defaultsDepsMutator(ctx BottomUpMutatorContext) {
|
2015-11-03 08:43:11 +08:00
|
|
|
if defaultable, ok := ctx.Module().(Defaultable); ok {
|
2016-04-12 06:06:20 +08:00
|
|
|
ctx.AddDependency(ctx.Module(), DefaultsDepTag, defaultable.defaults().Defaults...)
|
2015-11-03 08:43:11 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-10 03:00:45 +08:00
|
|
|
func defaultsMutator(ctx TopDownMutatorContext) {
|
|
|
|
if defaultable, ok := ctx.Module().(Defaultable); ok && len(defaultable.defaults().Defaults) > 0 {
|
|
|
|
var defaultsList []Defaults
|
2018-06-21 06:19:39 +08:00
|
|
|
seen := make(map[Defaults]bool)
|
|
|
|
|
2017-10-24 08:59:01 +08:00
|
|
|
ctx.WalkDeps(func(module, parent Module) bool {
|
2016-08-10 03:00:45 +08:00
|
|
|
if ctx.OtherModuleDependencyTag(module) == DefaultsDepTag {
|
|
|
|
if defaults, ok := module.(Defaults); ok {
|
2018-06-21 06:19:39 +08:00
|
|
|
if !seen[defaults] {
|
|
|
|
seen[defaults] = true
|
|
|
|
defaultsList = append(defaultsList, defaults)
|
|
|
|
return len(defaults.defaults().Defaults) > 0
|
|
|
|
}
|
2016-08-10 03:00:45 +08:00
|
|
|
} else {
|
|
|
|
ctx.PropertyErrorf("defaults", "module %s is not an defaults module",
|
|
|
|
ctx.OtherModuleName(module))
|
2015-11-03 08:43:11 +08:00
|
|
|
}
|
2016-08-10 03:00:45 +08:00
|
|
|
}
|
|
|
|
return false
|
|
|
|
})
|
|
|
|
defaultable.applyDefaults(ctx, defaultsList)
|
2015-11-03 08:43:11 +08:00
|
|
|
}
|
|
|
|
}
|