blob: 5a57c9376cd87c4df8dcda76b79b78ca5fe12a4b [file] [log] [blame]
Jaewoong Jung525443a2019-02-28 15:35:54 -08001// Copyright (C) 2019 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15package android
16
17// This file contains all the foundation components for override modules and their base module
18// types. Override modules are a kind of opposite of default modules in that they override certain
19// properties of an existing base module whereas default modules provide base module data to be
20// overridden. However, unlike default and defaultable module pairs, both override and overridable
21// modules generate and output build actions, and it is up to product make vars to decide which one
22// to actually build and install in the end. In other words, default modules and defaultable modules
23// can be compared to abstract classes and concrete classes in C++ and Java. By the same analogy,
24// both override and overridable modules act like concrete classes.
25//
26// There is one more crucial difference from the logic perspective. Unlike default pairs, most Soong
27// actions happen in the base (overridable) module by creating a local variant for each override
28// module based on it.
29
30import (
31 "sync"
32
33 "github.com/google/blueprint"
34 "github.com/google/blueprint/proptools"
35)
36
37// Interface for override module types, e.g. override_android_app, override_apex
38type OverrideModule interface {
39 Module
40
41 getOverridingProperties() []interface{}
42 setOverridingProperties(properties []interface{})
43
44 getOverrideModuleProperties() *OverrideModuleProperties
45}
46
47// Base module struct for override module types
48type OverrideModuleBase struct {
49 moduleProperties OverrideModuleProperties
50
51 overridingProperties []interface{}
52}
53
54type OverrideModuleProperties struct {
55 // Name of the base module to be overridden
56 Base *string
57
58 // TODO(jungjw): Add an optional override_name bool flag.
59}
60
61func (o *OverrideModuleBase) getOverridingProperties() []interface{} {
62 return o.overridingProperties
63}
64
65func (o *OverrideModuleBase) setOverridingProperties(properties []interface{}) {
66 o.overridingProperties = properties
67}
68
69func (o *OverrideModuleBase) getOverrideModuleProperties() *OverrideModuleProperties {
70 return &o.moduleProperties
71}
72
73func InitOverrideModule(m OverrideModule) {
74 m.setOverridingProperties(m.GetProperties())
75
76 m.AddProperties(m.getOverrideModuleProperties())
77}
78
79// Interface for overridable module types, e.g. android_app, apex
80type OverridableModule interface {
81 setOverridableProperties(prop []interface{})
82
83 addOverride(o OverrideModule)
84 getOverrides() []OverrideModule
85
86 override(ctx BaseModuleContext, o OverrideModule)
Jaewoong Jungb639a6a2019-05-10 15:16:29 -070087 getOverriddenBy() string
Jaewoong Jung525443a2019-02-28 15:35:54 -080088
89 setOverridesProperty(overridesProperties *[]string)
Jaewoong Jungb639a6a2019-05-10 15:16:29 -070090
91 // Due to complications with incoming dependencies, overrides are processed after DepsMutator.
92 // So, overridable properties need to be handled in a separate, dedicated deps mutator.
93 OverridablePropertiesDepsMutator(ctx BottomUpMutatorContext)
Jaewoong Jung525443a2019-02-28 15:35:54 -080094}
95
96// Base module struct for overridable module types
97type OverridableModuleBase struct {
98 ModuleBase
99
100 // List of OverrideModules that override this base module
101 overrides []OverrideModule
102 // Used to parallelize registerOverrideMutator executions. Note that only addOverride locks this
103 // mutex. It is because addOverride and getOverride are used in different mutators, and so are
104 // guaranteed to be not mixed. (And, getOverride only reads from overrides, and so don't require
105 // mutex locking.)
106 overridesLock sync.Mutex
107
108 overridableProperties []interface{}
109
110 // If an overridable module has a property to list other modules that itself overrides, it should
111 // set this to a pointer to the property through the InitOverridableModule function, so that
112 // override information is propagated and aggregated correctly.
113 overridesProperty *[]string
Jaewoong Jungb639a6a2019-05-10 15:16:29 -0700114
115 overriddenBy string
Jaewoong Jung525443a2019-02-28 15:35:54 -0800116}
117
118func InitOverridableModule(m OverridableModule, overridesProperty *[]string) {
119 m.setOverridableProperties(m.(Module).GetProperties())
120 m.setOverridesProperty(overridesProperty)
121}
122
123func (b *OverridableModuleBase) setOverridableProperties(prop []interface{}) {
124 b.overridableProperties = prop
125}
126
127func (b *OverridableModuleBase) addOverride(o OverrideModule) {
128 b.overridesLock.Lock()
129 b.overrides = append(b.overrides, o)
130 b.overridesLock.Unlock()
131}
132
133// Should NOT be used in the same mutator as addOverride.
134func (b *OverridableModuleBase) getOverrides() []OverrideModule {
135 return b.overrides
136}
137
138func (b *OverridableModuleBase) setOverridesProperty(overridesProperty *[]string) {
139 b.overridesProperty = overridesProperty
140}
141
142// Overrides a base module with the given OverrideModule.
143func (b *OverridableModuleBase) override(ctx BaseModuleContext, o OverrideModule) {
Jaewoong Junga641ee92019-03-27 11:17:14 -0700144 // Adds the base module to the overrides property, if exists, of the overriding module. See the
145 // comment on OverridableModuleBase.overridesProperty for details.
146 if b.overridesProperty != nil {
147 *b.overridesProperty = append(*b.overridesProperty, b.Name())
148 }
Jaewoong Jung525443a2019-02-28 15:35:54 -0800149 for _, p := range b.overridableProperties {
150 for _, op := range o.getOverridingProperties() {
151 if proptools.TypeEqual(p, op) {
Jaewoong Junga641ee92019-03-27 11:17:14 -0700152 err := proptools.AppendProperties(p, op, nil)
Jaewoong Jung525443a2019-02-28 15:35:54 -0800153 if err != nil {
154 if propertyErr, ok := err.(*proptools.ExtendPropertyError); ok {
155 ctx.PropertyErrorf(propertyErr.Property, "%s", propertyErr.Err.Error())
156 } else {
157 panic(err)
158 }
159 }
160 }
161 }
162 }
Jaewoong Jungb639a6a2019-05-10 15:16:29 -0700163 b.overriddenBy = o.Name()
164}
165
166func (b *OverridableModuleBase) getOverriddenBy() string {
167 return b.overriddenBy
168}
169
170func (b *OverridableModuleBase) OverridablePropertiesDepsMutator(ctx BottomUpMutatorContext) {
Jaewoong Jung525443a2019-02-28 15:35:54 -0800171}
172
173// Mutators for override/overridable modules. All the fun happens in these functions. It is critical
174// to keep them in this order and not put any order mutators between them.
Jaewoong Jungb639a6a2019-05-10 15:16:29 -0700175func RegisterOverridePostDepsMutators(ctx RegisterMutatorsContext) {
Jaewoong Jung525443a2019-02-28 15:35:54 -0800176 ctx.BottomUp("override_deps", overrideModuleDepsMutator).Parallel()
177 ctx.TopDown("register_override", registerOverrideMutator).Parallel()
178 ctx.BottomUp("perform_override", performOverrideMutator).Parallel()
Jaewoong Jungb639a6a2019-05-10 15:16:29 -0700179 ctx.BottomUp("overridable_deps", overridableModuleDepsMutator).Parallel()
Jaewoong Jung525443a2019-02-28 15:35:54 -0800180}
181
182type overrideBaseDependencyTag struct {
183 blueprint.BaseDependencyTag
184}
185
186var overrideBaseDepTag overrideBaseDependencyTag
187
188// Adds dependency on the base module to the overriding module so that they can be visited in the
189// next phase.
190func overrideModuleDepsMutator(ctx BottomUpMutatorContext) {
191 if module, ok := ctx.Module().(OverrideModule); ok {
192 ctx.AddDependency(ctx.Module(), overrideBaseDepTag, *module.getOverrideModuleProperties().Base)
193 }
194}
195
196// Visits the base module added as a dependency above, checks the module type, and registers the
197// overriding module.
198func registerOverrideMutator(ctx TopDownMutatorContext) {
199 ctx.VisitDirectDepsWithTag(overrideBaseDepTag, func(base Module) {
200 if o, ok := base.(OverridableModule); ok {
201 o.addOverride(ctx.Module().(OverrideModule))
202 } else {
203 ctx.PropertyErrorf("base", "unsupported base module type")
204 }
205 })
206}
207
208// Now, goes through all overridable modules, finds all modules overriding them, creates a local
209// variant for each of them, and performs the actual overriding operation by calling override().
210func performOverrideMutator(ctx BottomUpMutatorContext) {
211 if b, ok := ctx.Module().(OverridableModule); ok {
212 overrides := b.getOverrides()
213 if len(overrides) == 0 {
214 return
215 }
216 variants := make([]string, len(overrides)+1)
217 // The first variant is for the original, non-overridden, base module.
218 variants[0] = ""
219 for i, o := range overrides {
220 variants[i+1] = o.(Module).Name()
221 }
222 mods := ctx.CreateLocalVariations(variants...)
223 for i, o := range overrides {
224 mods[i+1].(OverridableModule).override(ctx, o)
225 }
Jaewoong Jungb639a6a2019-05-10 15:16:29 -0700226 } else if o, ok := ctx.Module().(OverrideModule); ok {
227 // Create a variant of the overriding module with its own name. This matches the above local
228 // variant name rule for overridden modules, and thus allows ReplaceDependencies to match the
229 // two.
230 ctx.CreateLocalVariations(o.Name())
231 }
232}
233
234func overridableModuleDepsMutator(ctx BottomUpMutatorContext) {
235 if b, ok := ctx.Module().(OverridableModule); ok {
236 if o := b.getOverriddenBy(); o != "" {
237 // Redirect dependencies on the overriding module to this overridden module. Overriding
238 // modules are basically pseudo modules, and all build actions are associated to overridden
239 // modules. Therefore, dependencies on overriding modules need to be forwarded there as well.
240 ctx.ReplaceDependencies(o)
241 }
242 b.OverridablePropertiesDepsMutator(ctx)
Jaewoong Jung525443a2019-02-28 15:35:54 -0800243 }
244}