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
|
|
|
|
}
|
|
|
|
|
|
|
|
type DefaultableModule struct {
|
|
|
|
defaultsProperties defaultsProperties
|
|
|
|
defaultableProperties []interface{}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *DefaultableModule) defaults() *defaultsProperties {
|
|
|
|
return &d.defaultsProperties
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *DefaultableModule) setProperties(props []interface{}) {
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
var _ Defaultable = (*DefaultableModule)(nil)
|
|
|
|
|
2017-06-24 06:06:31 +08:00
|
|
|
func InitDefaultableModule(module Module, d Defaultable) {
|
2015-11-03 08:43:11 +08:00
|
|
|
|
2017-06-24 06:06:31 +08:00
|
|
|
d.setProperties(module.GetProperties())
|
2015-11-03 08:43:11 +08:00
|
|
|
|
2017-06-24 06:06:31 +08:00
|
|
|
module.AddProperties(d.defaults())
|
2015-11-03 08:43:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
type DefaultsModule struct {
|
2016-07-28 01:15:06 +08:00
|
|
|
DefaultableModule
|
2015-11-03 08:43:11 +08:00
|
|
|
defaultProperties []interface{}
|
|
|
|
}
|
|
|
|
|
|
|
|
type Defaults interface {
|
2016-07-28 01:15:06 +08:00
|
|
|
Defaultable
|
2015-11-03 08:43:11 +08:00
|
|
|
isDefaults() bool
|
|
|
|
properties() []interface{}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *DefaultsModule) isDefaults() bool {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *DefaultsModule) properties() []interface{} {
|
2016-07-28 01:15:06 +08:00
|
|
|
return d.defaultableProperties
|
2015-11-03 08:43:11 +08:00
|
|
|
}
|
|
|
|
|
2017-06-24 06:06:31 +08:00
|
|
|
func InitDefaultsModule(module Module, d Defaults) {
|
|
|
|
module.AddProperties(
|
2016-05-18 07:34:16 +08:00
|
|
|
&hostAndDeviceProperties{},
|
|
|
|
&commonProperties{},
|
|
|
|
&variableProperties{})
|
|
|
|
|
2017-06-24 06:06:31 +08:00
|
|
|
InitArchModule(module)
|
|
|
|
InitDefaultableModule(module, d)
|
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
|
|
|
}
|
|
|
|
|
|
|
|
var _ Defaults = (*DefaultsModule)(nil)
|
|
|
|
|
2016-08-10 03:00:45 +08:00
|
|
|
func (defaultable *DefaultableModule) applyDefaults(ctx TopDownMutatorContext,
|
|
|
|
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-14 05:43:27 +08:00
|
|
|
func registerDefaultsPreArchMutators(ctx RegisterMutatorsContext) {
|
|
|
|
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
|
|
|
|
ctx.WalkDeps(func(module, parent blueprint.Module) bool {
|
|
|
|
if ctx.OtherModuleDependencyTag(module) == DefaultsDepTag {
|
|
|
|
if defaults, ok := module.(Defaults); ok {
|
|
|
|
defaultsList = append(defaultsList, defaults)
|
|
|
|
return len(defaults.defaults().Defaults) > 0
|
|
|
|
} 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
|
|
|
}
|
|
|
|
}
|