2015-10-29 23:25:03 +01: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 00:37:25 +02:00
|
|
|
package android
|
2015-10-29 23:25:03 +01:00
|
|
|
|
2017-03-17 00:50:10 +01:00
|
|
|
import (
|
|
|
|
"github.com/google/blueprint"
|
|
|
|
)
|
2015-10-29 23:25:03 +01:00
|
|
|
|
2017-09-28 02:01:44 +02:00
|
|
|
// Phases:
|
|
|
|
// run Pre-arch mutators
|
|
|
|
// run archMutator
|
|
|
|
// run Pre-deps mutators
|
|
|
|
// run depsMutator
|
|
|
|
// run PostDeps mutators
|
|
|
|
// continue on to GenerateAndroidBuildActions
|
2016-10-12 23:38:15 +02:00
|
|
|
|
2017-03-17 00:50:10 +01:00
|
|
|
func registerMutatorsToContext(ctx *blueprint.Context, mutators []*mutator) {
|
|
|
|
for _, t := range mutators {
|
|
|
|
var handle blueprint.MutatorHandle
|
|
|
|
if t.bottomUpMutator != nil {
|
|
|
|
handle = ctx.RegisterBottomUpMutator(t.name, t.bottomUpMutator)
|
|
|
|
} else if t.topDownMutator != nil {
|
|
|
|
handle = ctx.RegisterTopDownMutator(t.name, t.topDownMutator)
|
|
|
|
}
|
|
|
|
if t.parallel {
|
|
|
|
handle.Parallel()
|
2016-10-12 23:38:15 +02:00
|
|
|
}
|
|
|
|
}
|
2017-03-17 00:50:10 +01:00
|
|
|
}
|
|
|
|
|
2017-07-13 23:43:27 +02:00
|
|
|
func registerMutators(ctx *blueprint.Context, preArch, preDeps, postDeps []RegisterMutatorFunc) {
|
|
|
|
mctx := ®isterMutatorsContext{}
|
2017-02-27 19:12:13 +01:00
|
|
|
|
|
|
|
register := func(funcs []RegisterMutatorFunc) {
|
|
|
|
for _, f := range funcs {
|
2017-07-13 23:43:27 +02:00
|
|
|
f(mctx)
|
2017-02-27 19:12:13 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-13 23:43:27 +02:00
|
|
|
register(preArch)
|
|
|
|
|
|
|
|
register(preDeps)
|
|
|
|
|
|
|
|
mctx.BottomUp("deps", depsMutator).Parallel()
|
|
|
|
|
|
|
|
register(postDeps)
|
2017-02-27 19:12:13 +01:00
|
|
|
|
2017-07-13 23:43:27 +02:00
|
|
|
registerMutatorsToContext(ctx, mctx.mutators)
|
2017-03-17 00:50:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
type registerMutatorsContext struct {
|
|
|
|
mutators []*mutator
|
|
|
|
}
|
2016-10-12 23:38:15 +02:00
|
|
|
|
|
|
|
type RegisterMutatorsContext interface {
|
|
|
|
TopDown(name string, m AndroidTopDownMutator) MutatorHandle
|
|
|
|
BottomUp(name string, m AndroidBottomUpMutator) MutatorHandle
|
|
|
|
}
|
|
|
|
|
|
|
|
type RegisterMutatorFunc func(RegisterMutatorsContext)
|
|
|
|
|
2017-07-13 23:43:27 +02:00
|
|
|
var preArch = []RegisterMutatorFunc{
|
|
|
|
func(ctx RegisterMutatorsContext) {
|
|
|
|
ctx.TopDown("load_hooks", loadHookMutator).Parallel()
|
|
|
|
},
|
2017-07-28 00:41:32 +02:00
|
|
|
RegisterPrebuiltsPreArchMutators,
|
2017-07-07 23:35:50 +02:00
|
|
|
RegisterDefaultsPreArchMutators,
|
2017-07-13 23:43:27 +02:00
|
|
|
}
|
|
|
|
|
2017-09-16 02:33:55 +02:00
|
|
|
func registerArchMutator(ctx RegisterMutatorsContext) {
|
|
|
|
ctx.BottomUp("arch", archMutator).Parallel()
|
|
|
|
ctx.TopDown("arch_hooks", archHookMutator).Parallel()
|
|
|
|
}
|
|
|
|
|
2017-07-13 23:43:27 +02:00
|
|
|
var preDeps = []RegisterMutatorFunc{
|
2017-09-16 02:33:55 +02:00
|
|
|
registerArchMutator,
|
2017-07-13 23:43:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
var postDeps = []RegisterMutatorFunc{
|
2017-07-28 00:41:32 +02:00
|
|
|
RegisterPrebuiltsPostDepsMutators,
|
2017-07-13 23:43:27 +02:00
|
|
|
}
|
2016-10-12 23:38:15 +02:00
|
|
|
|
|
|
|
func PreArchMutators(f RegisterMutatorFunc) {
|
|
|
|
preArch = append(preArch, f)
|
|
|
|
}
|
|
|
|
|
|
|
|
func PreDepsMutators(f RegisterMutatorFunc) {
|
|
|
|
preDeps = append(preDeps, f)
|
|
|
|
}
|
|
|
|
|
|
|
|
func PostDepsMutators(f RegisterMutatorFunc) {
|
|
|
|
postDeps = append(postDeps, f)
|
|
|
|
}
|
|
|
|
|
2016-05-19 00:37:25 +02:00
|
|
|
type AndroidTopDownMutator func(TopDownMutatorContext)
|
2015-10-29 23:25:03 +01:00
|
|
|
|
2016-05-19 00:37:25 +02:00
|
|
|
type TopDownMutatorContext interface {
|
2015-10-29 23:25:03 +01:00
|
|
|
blueprint.TopDownMutatorContext
|
|
|
|
androidBaseContext
|
|
|
|
}
|
|
|
|
|
|
|
|
type androidTopDownMutatorContext struct {
|
|
|
|
blueprint.TopDownMutatorContext
|
|
|
|
androidBaseContextImpl
|
|
|
|
}
|
|
|
|
|
2016-05-19 00:37:25 +02:00
|
|
|
type AndroidBottomUpMutator func(BottomUpMutatorContext)
|
2015-10-29 23:25:03 +01:00
|
|
|
|
2016-05-19 00:37:25 +02:00
|
|
|
type BottomUpMutatorContext interface {
|
2015-10-29 23:25:03 +01:00
|
|
|
blueprint.BottomUpMutatorContext
|
|
|
|
androidBaseContext
|
|
|
|
}
|
|
|
|
|
|
|
|
type androidBottomUpMutatorContext struct {
|
|
|
|
blueprint.BottomUpMutatorContext
|
|
|
|
androidBaseContextImpl
|
|
|
|
}
|
|
|
|
|
2017-03-17 00:50:10 +01:00
|
|
|
func (x *registerMutatorsContext) BottomUp(name string, m AndroidBottomUpMutator) MutatorHandle {
|
2016-10-12 23:28:16 +02:00
|
|
|
f := func(ctx blueprint.BottomUpMutatorContext) {
|
2016-05-19 00:37:25 +02:00
|
|
|
if a, ok := ctx.Module().(Module); ok {
|
2015-10-29 23:25:03 +01:00
|
|
|
actx := &androidBottomUpMutatorContext{
|
|
|
|
BottomUpMutatorContext: ctx,
|
|
|
|
androidBaseContextImpl: a.base().androidBaseContextFactory(ctx),
|
|
|
|
}
|
2016-10-12 23:28:16 +02:00
|
|
|
m(actx)
|
2015-10-29 23:25:03 +01:00
|
|
|
}
|
2016-10-12 23:28:16 +02:00
|
|
|
}
|
|
|
|
mutator := &mutator{name: name, bottomUpMutator: f}
|
2017-03-17 00:50:10 +01:00
|
|
|
x.mutators = append(x.mutators, mutator)
|
2016-10-12 23:28:16 +02:00
|
|
|
return mutator
|
2015-10-29 23:25:03 +01:00
|
|
|
}
|
|
|
|
|
2017-03-17 00:50:10 +01:00
|
|
|
func (x *registerMutatorsContext) TopDown(name string, m AndroidTopDownMutator) MutatorHandle {
|
2016-10-12 23:28:16 +02:00
|
|
|
f := func(ctx blueprint.TopDownMutatorContext) {
|
2016-05-19 00:37:25 +02:00
|
|
|
if a, ok := ctx.Module().(Module); ok {
|
2015-10-29 23:25:03 +01:00
|
|
|
actx := &androidTopDownMutatorContext{
|
|
|
|
TopDownMutatorContext: ctx,
|
|
|
|
androidBaseContextImpl: a.base().androidBaseContextFactory(ctx),
|
|
|
|
}
|
2016-10-12 23:28:16 +02:00
|
|
|
m(actx)
|
2015-10-29 23:25:03 +01:00
|
|
|
}
|
2016-10-12 23:28:16 +02:00
|
|
|
}
|
|
|
|
mutator := &mutator{name: name, topDownMutator: f}
|
2017-03-17 00:50:10 +01:00
|
|
|
x.mutators = append(x.mutators, mutator)
|
2016-10-12 23:28:16 +02:00
|
|
|
return mutator
|
|
|
|
}
|
|
|
|
|
|
|
|
type MutatorHandle interface {
|
|
|
|
Parallel() MutatorHandle
|
|
|
|
}
|
|
|
|
|
|
|
|
func (mutator *mutator) Parallel() MutatorHandle {
|
|
|
|
mutator.parallel = true
|
|
|
|
return mutator
|
2015-10-29 23:25:03 +01:00
|
|
|
}
|
2016-10-12 23:38:15 +02:00
|
|
|
|
|
|
|
func depsMutator(ctx BottomUpMutatorContext) {
|
|
|
|
if m, ok := ctx.Module().(Module); ok {
|
|
|
|
m.DepsMutator(ctx)
|
|
|
|
}
|
|
|
|
}
|