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 (
|
2019-09-25 07:19:02 +02:00
|
|
|
"reflect"
|
|
|
|
|
2017-03-17 00:50:10 +01:00
|
|
|
"github.com/google/blueprint"
|
2017-11-03 00:35:56 +01:00
|
|
|
"github.com/google/blueprint/proptools"
|
2017-03-17 00:50:10 +01:00
|
|
|
)
|
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
|
2020-01-16 16:12:04 +01:00
|
|
|
// run FinalDeps mutators (CreateVariations disallowed in this phase)
|
2017-09-28 02:01:44 +02:00
|
|
|
// 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
|
|
|
}
|
|
|
|
|
2020-01-16 16:12:04 +01:00
|
|
|
func registerMutators(ctx *blueprint.Context, preArch, preDeps, postDeps, finalDeps []RegisterMutatorFunc) {
|
2017-07-13 23:43:27 +02:00
|
|
|
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
|
|
|
|
2020-01-16 16:12:04 +01:00
|
|
|
mctx.finalPhase = true
|
|
|
|
register(finalDeps)
|
|
|
|
|
2017-07-13 23:43:27 +02:00
|
|
|
registerMutatorsToContext(ctx, mctx.mutators)
|
2017-03-17 00:50:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
type registerMutatorsContext struct {
|
2020-01-16 16:12:04 +01:00
|
|
|
mutators []*mutator
|
|
|
|
finalPhase bool
|
2017-03-17 00:50:10 +01:00
|
|
|
}
|
2016-10-12 23:38:15 +02:00
|
|
|
|
|
|
|
type RegisterMutatorsContext interface {
|
2019-06-06 23:29:25 +02:00
|
|
|
TopDown(name string, m TopDownMutator) MutatorHandle
|
|
|
|
BottomUp(name string, m BottomUpMutator) MutatorHandle
|
2016-10-12 23:38:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
type RegisterMutatorFunc func(RegisterMutatorsContext)
|
|
|
|
|
2017-07-13 23:43:27 +02:00
|
|
|
var preArch = []RegisterMutatorFunc{
|
2018-01-27 03:27:02 +01:00
|
|
|
RegisterNamespaceMutator,
|
2020-05-05 12:35:43 +02:00
|
|
|
|
|
|
|
// Check the visibility rules are valid.
|
|
|
|
//
|
|
|
|
// This must run after the package renamer mutators so that any issues found during
|
|
|
|
// validation of the package's default_visibility property are reported using the
|
|
|
|
// correct package name and not the synthetic name.
|
|
|
|
//
|
|
|
|
// This must also be run before defaults mutators as the rules for validation are
|
|
|
|
// different before checking the rules than they are afterwards. e.g.
|
|
|
|
// visibility: ["//visibility:private", "//visibility:public"]
|
|
|
|
// would be invalid if specified in a module definition but is valid if it results
|
|
|
|
// from something like this:
|
|
|
|
//
|
|
|
|
// defaults {
|
|
|
|
// name: "defaults",
|
|
|
|
// // Be inaccessible outside a package by default.
|
|
|
|
// visibility: ["//visibility:private"]
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// defaultable_module {
|
|
|
|
// name: "defaultable_module",
|
|
|
|
// defaults: ["defaults"],
|
|
|
|
// // Override the default.
|
|
|
|
// visibility: ["//visibility:public"]
|
|
|
|
// }
|
|
|
|
//
|
2019-12-05 15:31:48 +01:00
|
|
|
RegisterVisibilityRuleChecker,
|
2020-05-05 12:35:43 +02:00
|
|
|
|
|
|
|
// Apply properties from defaults modules to the referencing modules.
|
2020-04-29 17:47:28 +02:00
|
|
|
//
|
|
|
|
// Any mutators that are added before this will not see any modules created by
|
|
|
|
// a DefaultableHook.
|
2017-07-07 23:35:50 +02:00
|
|
|
RegisterDefaultsPreArchMutators,
|
2020-05-05 12:35:43 +02:00
|
|
|
|
2020-06-26 21:17:02 +02:00
|
|
|
// Add dependencies on any components so that any component references can be
|
|
|
|
// resolved within the deps mutator.
|
|
|
|
//
|
|
|
|
// Must be run after defaults so it can be used to create dependencies on the
|
|
|
|
// component modules that are creating in a DefaultableHook.
|
|
|
|
//
|
|
|
|
// Must be run before RegisterPrebuiltsPreArchMutators, i.e. before prebuilts are
|
|
|
|
// renamed. That is so that if a module creates components using a prebuilt module
|
|
|
|
// type that any dependencies (which must use prebuilt_ prefixes) are resolved to
|
|
|
|
// the prebuilt module and not the source module.
|
|
|
|
RegisterComponentsMutator,
|
|
|
|
|
2020-04-29 19:27:14 +02:00
|
|
|
// Create an association between prebuilt modules and their corresponding source
|
|
|
|
// modules (if any).
|
2020-04-29 17:47:28 +02:00
|
|
|
//
|
|
|
|
// Must be run after defaults mutators to ensure that any modules created by
|
|
|
|
// a DefaultableHook can be either a prebuilt or a source module with a matching
|
|
|
|
// prebuilt.
|
2020-04-29 19:27:14 +02:00
|
|
|
RegisterPrebuiltsPreArchMutators,
|
|
|
|
|
2020-05-05 12:35:43 +02:00
|
|
|
// Gather the visibility rules for all modules for us during visibility enforcement.
|
|
|
|
//
|
|
|
|
// This must come after the defaults mutators to ensure that any visibility supplied
|
|
|
|
// in a defaults module has been successfully applied before the rules are gathered.
|
2019-12-05 15:31:48 +01:00
|
|
|
RegisterVisibilityRuleGatherer,
|
2017-07-13 23:43:27 +02:00
|
|
|
}
|
|
|
|
|
2017-09-16 02:33:55 +02:00
|
|
|
func registerArchMutator(ctx RegisterMutatorsContext) {
|
2019-10-16 20:07:20 +02:00
|
|
|
ctx.BottomUp("os", osMutator).Parallel()
|
2019-11-21 02:12:35 +01:00
|
|
|
ctx.BottomUp("image", imageMutator).Parallel()
|
2017-09-16 02:33:55 +02:00
|
|
|
ctx.BottomUp("arch", archMutator).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{
|
2019-03-05 07:33:56 +01:00
|
|
|
registerPathDepsMutator,
|
2017-07-28 00:41:32 +02:00
|
|
|
RegisterPrebuiltsPostDepsMutators,
|
2019-12-05 15:31:48 +01:00
|
|
|
RegisterVisibilityRuleEnforcer,
|
2020-04-09 17:06:36 +02:00
|
|
|
RegisterNeverallowMutator,
|
2019-05-11 00:16:29 +02:00
|
|
|
RegisterOverridePostDepsMutators,
|
2017-07-13 23:43:27 +02:00
|
|
|
}
|
2016-10-12 23:38:15 +02:00
|
|
|
|
2020-01-16 16:12:04 +01:00
|
|
|
var finalDeps = []RegisterMutatorFunc{}
|
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
|
2020-01-16 16:12:04 +01:00
|
|
|
func FinalDepsMutators(f RegisterMutatorFunc) {
|
|
|
|
finalDeps = append(finalDeps, f)
|
|
|
|
}
|
|
|
|
|
2019-06-06 23:29:25 +02:00
|
|
|
type TopDownMutator func(TopDownMutatorContext)
|
2015-10-29 23:25:03 +01:00
|
|
|
|
2016-05-19 00:37:25 +02:00
|
|
|
type TopDownMutatorContext interface {
|
2017-11-29 09:27:14 +01:00
|
|
|
BaseModuleContext
|
2017-10-24 02:10:29 +02:00
|
|
|
|
2019-07-02 00:32:31 +02:00
|
|
|
MutatorName() string
|
|
|
|
|
2017-10-24 02:10:29 +02:00
|
|
|
Rename(name string)
|
|
|
|
|
2019-09-25 21:58:36 +02:00
|
|
|
CreateModule(ModuleFactory, ...interface{}) Module
|
2015-10-29 23:25:03 +01:00
|
|
|
}
|
|
|
|
|
2019-06-06 23:29:25 +02:00
|
|
|
type topDownMutatorContext struct {
|
2019-06-07 01:13:11 +02:00
|
|
|
bp blueprint.TopDownMutatorContext
|
2019-06-06 23:33:29 +02:00
|
|
|
baseModuleContext
|
2015-10-29 23:25:03 +01:00
|
|
|
}
|
|
|
|
|
2019-06-06 23:29:25 +02:00
|
|
|
type BottomUpMutator func(BottomUpMutatorContext)
|
2015-10-29 23:25:03 +01:00
|
|
|
|
2016-05-19 00:37:25 +02:00
|
|
|
type BottomUpMutatorContext interface {
|
2017-11-29 09:27:14 +01:00
|
|
|
BaseModuleContext
|
|
|
|
|
2019-07-02 00:32:31 +02:00
|
|
|
MutatorName() string
|
|
|
|
|
2017-11-29 09:27:14 +01:00
|
|
|
Rename(name string)
|
|
|
|
|
|
|
|
AddDependency(module blueprint.Module, tag blueprint.DependencyTag, name ...string)
|
|
|
|
AddReverseDependency(module blueprint.Module, tag blueprint.DependencyTag, name string)
|
2019-11-19 00:28:57 +01:00
|
|
|
CreateVariations(...string) []Module
|
|
|
|
CreateLocalVariations(...string) []Module
|
2017-11-29 09:27:14 +01:00
|
|
|
SetDependencyVariation(string)
|
2019-07-29 14:27:18 +02:00
|
|
|
SetDefaultDependencyVariation(*string)
|
2017-11-29 09:27:14 +01:00
|
|
|
AddVariationDependencies([]blueprint.Variation, blueprint.DependencyTag, ...string)
|
|
|
|
AddFarVariationDependencies([]blueprint.Variation, blueprint.DependencyTag, ...string)
|
|
|
|
AddInterVariantDependency(tag blueprint.DependencyTag, from, to blueprint.Module)
|
|
|
|
ReplaceDependencies(string)
|
2020-06-26 23:08:43 +02:00
|
|
|
ReplaceDependenciesIf(string, blueprint.ReplaceDependencyPredicate)
|
2019-11-15 19:57:34 +01:00
|
|
|
AliasVariation(variationName string)
|
2015-10-29 23:25:03 +01:00
|
|
|
}
|
|
|
|
|
2019-06-06 23:29:25 +02:00
|
|
|
type bottomUpMutatorContext struct {
|
2019-06-07 01:13:11 +02:00
|
|
|
bp blueprint.BottomUpMutatorContext
|
2019-06-06 23:33:29 +02:00
|
|
|
baseModuleContext
|
2020-01-16 16:12:04 +01:00
|
|
|
finalPhase bool
|
2015-10-29 23:25:03 +01:00
|
|
|
}
|
|
|
|
|
2019-06-06 23:29:25 +02:00
|
|
|
func (x *registerMutatorsContext) BottomUp(name string, m BottomUpMutator) MutatorHandle {
|
2020-01-16 16:12:04 +01:00
|
|
|
finalPhase := x.finalPhase
|
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 {
|
2019-06-06 23:29:25 +02:00
|
|
|
actx := &bottomUpMutatorContext{
|
2019-06-07 01:13:11 +02:00
|
|
|
bp: ctx,
|
|
|
|
baseModuleContext: a.base().baseModuleContextFactory(ctx),
|
2020-01-16 16:12:04 +01:00
|
|
|
finalPhase: finalPhase,
|
2015-10-29 23:25:03 +01:00
|
|
|
}
|
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
|
|
|
}
|
|
|
|
|
2019-06-06 23:29:25 +02:00
|
|
|
func (x *registerMutatorsContext) TopDown(name string, m TopDownMutator) 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 {
|
2019-06-06 23:29:25 +02:00
|
|
|
actx := &topDownMutatorContext{
|
2019-06-07 01:13:11 +02:00
|
|
|
bp: ctx,
|
|
|
|
baseModuleContext: a.base().baseModuleContextFactory(ctx),
|
2015-10-29 23:25:03 +01:00
|
|
|
}
|
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
|
|
|
|
2020-06-26 21:17:02 +02:00
|
|
|
func RegisterComponentsMutator(ctx RegisterMutatorsContext) {
|
|
|
|
ctx.BottomUp("component-deps", componentDepsMutator).Parallel()
|
|
|
|
}
|
|
|
|
|
|
|
|
// A special mutator that runs just prior to the deps mutator to allow the dependencies
|
|
|
|
// on component modules to be added so that they can depend directly on a prebuilt
|
|
|
|
// module.
|
|
|
|
func componentDepsMutator(ctx BottomUpMutatorContext) {
|
|
|
|
if m := ctx.Module(); m.Enabled() {
|
|
|
|
m.ComponentDepsMutator(ctx)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-12 23:38:15 +02:00
|
|
|
func depsMutator(ctx BottomUpMutatorContext) {
|
2020-06-26 21:17:02 +02:00
|
|
|
if m := ctx.Module(); m.Enabled() {
|
2016-10-12 23:38:15 +02:00
|
|
|
m.DepsMutator(ctx)
|
|
|
|
}
|
|
|
|
}
|
2017-10-24 02:59:01 +02:00
|
|
|
|
2019-06-06 23:29:25 +02:00
|
|
|
func (t *topDownMutatorContext) AppendProperties(props ...interface{}) {
|
2017-11-03 00:35:56 +01:00
|
|
|
for _, p := range props {
|
2019-06-06 23:29:25 +02:00
|
|
|
err := proptools.AppendMatchingProperties(t.Module().base().customizableProperties,
|
2017-11-03 00:35:56 +01:00
|
|
|
p, nil)
|
|
|
|
if err != nil {
|
|
|
|
if propertyErr, ok := err.(*proptools.ExtendPropertyError); ok {
|
2019-06-06 23:29:25 +02:00
|
|
|
t.PropertyErrorf(propertyErr.Property, "%s", propertyErr.Err.Error())
|
2017-11-03 00:35:56 +01:00
|
|
|
} else {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-06 23:29:25 +02:00
|
|
|
func (t *topDownMutatorContext) PrependProperties(props ...interface{}) {
|
2017-11-03 00:35:56 +01:00
|
|
|
for _, p := range props {
|
2019-06-06 23:29:25 +02:00
|
|
|
err := proptools.PrependMatchingProperties(t.Module().base().customizableProperties,
|
2017-11-03 00:35:56 +01:00
|
|
|
p, nil)
|
|
|
|
if err != nil {
|
|
|
|
if propertyErr, ok := err.(*proptools.ExtendPropertyError); ok {
|
2019-06-06 23:29:25 +02:00
|
|
|
t.PropertyErrorf(propertyErr.Property, "%s", propertyErr.Err.Error())
|
2017-11-03 00:35:56 +01:00
|
|
|
} else {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-06-07 01:13:11 +02:00
|
|
|
|
|
|
|
// android.topDownMutatorContext either has to embed blueprint.TopDownMutatorContext, in which case every method that
|
|
|
|
// has an overridden version in android.BaseModuleContext has to be manually forwarded to BaseModuleContext to avoid
|
|
|
|
// ambiguous method errors, or it has to store a blueprint.TopDownMutatorContext non-embedded, in which case every
|
|
|
|
// non-overridden method has to be forwarded. There are fewer non-overridden methods, so use the latter. The following
|
|
|
|
// methods forward to the identical blueprint versions for topDownMutatorContext and bottomUpMutatorContext.
|
|
|
|
|
2019-07-02 00:32:31 +02:00
|
|
|
func (t *topDownMutatorContext) MutatorName() string {
|
|
|
|
return t.bp.MutatorName()
|
|
|
|
}
|
|
|
|
|
2019-06-07 01:13:11 +02:00
|
|
|
func (t *topDownMutatorContext) Rename(name string) {
|
|
|
|
t.bp.Rename(name)
|
2019-07-02 00:32:45 +02:00
|
|
|
t.Module().base().commonProperties.DebugName = name
|
2019-06-07 01:13:11 +02:00
|
|
|
}
|
|
|
|
|
2019-09-25 21:58:36 +02:00
|
|
|
func (t *topDownMutatorContext) CreateModule(factory ModuleFactory, props ...interface{}) Module {
|
2019-09-25 07:19:02 +02:00
|
|
|
inherited := []interface{}{&t.Module().base().commonProperties}
|
2019-09-25 21:58:36 +02:00
|
|
|
module := t.bp.CreateModule(ModuleFactoryAdaptor(factory), append(inherited, props...)...).(Module)
|
2019-09-25 07:19:02 +02:00
|
|
|
|
|
|
|
if t.Module().base().variableProperties != nil && module.base().variableProperties != nil {
|
|
|
|
src := t.Module().base().variableProperties
|
|
|
|
dst := []interface{}{
|
|
|
|
module.base().variableProperties,
|
|
|
|
// Put an empty copy of the src properties into dst so that properties in src that are not in dst
|
|
|
|
// don't cause a "failed to find property to extend" error.
|
2020-01-28 18:46:50 +01:00
|
|
|
proptools.CloneEmptyProperties(reflect.ValueOf(src)).Interface(),
|
2019-09-25 07:19:02 +02:00
|
|
|
}
|
|
|
|
err := proptools.AppendMatchingProperties(dst, src, nil)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-25 21:58:36 +02:00
|
|
|
return module
|
2019-06-07 01:13:11 +02:00
|
|
|
}
|
|
|
|
|
2019-07-02 00:32:31 +02:00
|
|
|
func (b *bottomUpMutatorContext) MutatorName() string {
|
|
|
|
return b.bp.MutatorName()
|
|
|
|
}
|
|
|
|
|
2019-06-07 01:13:11 +02:00
|
|
|
func (b *bottomUpMutatorContext) Rename(name string) {
|
|
|
|
b.bp.Rename(name)
|
2019-07-02 00:32:45 +02:00
|
|
|
b.Module().base().commonProperties.DebugName = name
|
2019-06-07 01:13:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (b *bottomUpMutatorContext) AddDependency(module blueprint.Module, tag blueprint.DependencyTag, name ...string) {
|
|
|
|
b.bp.AddDependency(module, tag, name...)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *bottomUpMutatorContext) AddReverseDependency(module blueprint.Module, tag blueprint.DependencyTag, name string) {
|
|
|
|
b.bp.AddReverseDependency(module, tag, name)
|
|
|
|
}
|
|
|
|
|
2019-11-19 00:28:57 +01:00
|
|
|
func (b *bottomUpMutatorContext) CreateVariations(variations ...string) []Module {
|
2020-01-16 16:12:04 +01:00
|
|
|
if b.finalPhase {
|
|
|
|
panic("CreateVariations not allowed in FinalDepsMutators")
|
|
|
|
}
|
|
|
|
|
2019-07-02 00:32:45 +02:00
|
|
|
modules := b.bp.CreateVariations(variations...)
|
|
|
|
|
2019-11-19 00:28:57 +01:00
|
|
|
aModules := make([]Module, len(modules))
|
2019-07-02 00:32:45 +02:00
|
|
|
for i := range variations {
|
2019-11-19 00:28:57 +01:00
|
|
|
aModules[i] = modules[i].(Module)
|
|
|
|
base := aModules[i].base()
|
2019-07-02 00:32:45 +02:00
|
|
|
base.commonProperties.DebugMutators = append(base.commonProperties.DebugMutators, b.MutatorName())
|
|
|
|
base.commonProperties.DebugVariations = append(base.commonProperties.DebugVariations, variations[i])
|
|
|
|
}
|
|
|
|
|
2019-11-19 00:28:57 +01:00
|
|
|
return aModules
|
2019-06-07 01:13:11 +02:00
|
|
|
}
|
|
|
|
|
2019-11-19 00:28:57 +01:00
|
|
|
func (b *bottomUpMutatorContext) CreateLocalVariations(variations ...string) []Module {
|
2020-01-16 16:12:04 +01:00
|
|
|
if b.finalPhase {
|
|
|
|
panic("CreateLocalVariations not allowed in FinalDepsMutators")
|
|
|
|
}
|
|
|
|
|
2019-07-02 00:32:45 +02:00
|
|
|
modules := b.bp.CreateLocalVariations(variations...)
|
|
|
|
|
2019-11-19 00:28:57 +01:00
|
|
|
aModules := make([]Module, len(modules))
|
2019-07-02 00:32:45 +02:00
|
|
|
for i := range variations {
|
2019-11-19 00:28:57 +01:00
|
|
|
aModules[i] = modules[i].(Module)
|
|
|
|
base := aModules[i].base()
|
2019-07-02 00:32:45 +02:00
|
|
|
base.commonProperties.DebugMutators = append(base.commonProperties.DebugMutators, b.MutatorName())
|
|
|
|
base.commonProperties.DebugVariations = append(base.commonProperties.DebugVariations, variations[i])
|
|
|
|
}
|
|
|
|
|
2019-11-19 00:28:57 +01:00
|
|
|
return aModules
|
2019-06-07 01:13:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (b *bottomUpMutatorContext) SetDependencyVariation(variation string) {
|
|
|
|
b.bp.SetDependencyVariation(variation)
|
|
|
|
}
|
|
|
|
|
2019-07-29 14:27:18 +02:00
|
|
|
func (b *bottomUpMutatorContext) SetDefaultDependencyVariation(variation *string) {
|
|
|
|
b.bp.SetDefaultDependencyVariation(variation)
|
|
|
|
}
|
|
|
|
|
2019-06-07 01:13:11 +02:00
|
|
|
func (b *bottomUpMutatorContext) AddVariationDependencies(variations []blueprint.Variation, tag blueprint.DependencyTag,
|
|
|
|
names ...string) {
|
|
|
|
|
|
|
|
b.bp.AddVariationDependencies(variations, tag, names...)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *bottomUpMutatorContext) AddFarVariationDependencies(variations []blueprint.Variation,
|
|
|
|
tag blueprint.DependencyTag, names ...string) {
|
|
|
|
|
|
|
|
b.bp.AddFarVariationDependencies(variations, tag, names...)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *bottomUpMutatorContext) AddInterVariantDependency(tag blueprint.DependencyTag, from, to blueprint.Module) {
|
|
|
|
b.bp.AddInterVariantDependency(tag, from, to)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *bottomUpMutatorContext) ReplaceDependencies(name string) {
|
|
|
|
b.bp.ReplaceDependencies(name)
|
|
|
|
}
|
2019-11-15 19:57:34 +01:00
|
|
|
|
2020-06-26 23:08:43 +02:00
|
|
|
func (b *bottomUpMutatorContext) ReplaceDependenciesIf(name string, predicate blueprint.ReplaceDependencyPredicate) {
|
|
|
|
b.bp.ReplaceDependenciesIf(name, predicate)
|
|
|
|
}
|
|
|
|
|
2019-11-15 19:57:34 +01:00
|
|
|
func (b *bottomUpMutatorContext) AliasVariation(variationName string) {
|
|
|
|
b.bp.AliasVariation(variationName)
|
|
|
|
}
|