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-07-28 01:15:06 +08:00
|
|
|
applyDefaults(BottomUpMutatorContext, Defaults)
|
2015-11-03 08:43:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
var _ Defaultable = (*DefaultableModule)(nil)
|
|
|
|
|
2016-05-19 06:37:25 +08:00
|
|
|
func InitDefaultableModule(module Module, d Defaultable,
|
2015-11-03 08:43:11 +08:00
|
|
|
props ...interface{}) (blueprint.Module, []interface{}) {
|
|
|
|
|
|
|
|
d.setProperties(props)
|
|
|
|
|
|
|
|
props = append(props, d.defaults())
|
|
|
|
|
|
|
|
return module, props
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2016-05-19 06:37:25 +08:00
|
|
|
func InitDefaultsModule(module Module, d Defaults, props ...interface{}) (blueprint.Module, []interface{}) {
|
2016-07-28 01:15:06 +08:00
|
|
|
return InitDefaultableModule(module, d, props...)
|
2015-11-03 08:43:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
var _ Defaults = (*DefaultsModule)(nil)
|
|
|
|
|
2016-07-28 01:15:06 +08:00
|
|
|
func (defaultable *DefaultableModule) applyDefaults(ctx BottomUpMutatorContext,
|
2015-11-03 08:43:11 +08:00
|
|
|
defaults Defaults) {
|
|
|
|
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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-07-28 01:15:06 +08:00
|
|
|
func defaultsMutator(ctx BottomUpMutatorContext) {
|
2015-11-03 08:43:11 +08:00
|
|
|
if defaultable, ok := ctx.Module().(Defaultable); ok {
|
|
|
|
for _, defaultsDep := range defaultable.defaults().Defaults {
|
|
|
|
ctx.VisitDirectDeps(func(m blueprint.Module) {
|
|
|
|
if ctx.OtherModuleName(m) == defaultsDep {
|
|
|
|
if defaultsModule, ok := m.(Defaults); ok {
|
|
|
|
defaultable.applyDefaults(ctx, defaultsModule)
|
|
|
|
} else {
|
|
|
|
ctx.PropertyErrorf("defaults", "module %s is not an defaults module",
|
|
|
|
ctx.OtherModuleName(m))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|