blob: ba474530d211d13c7fe0f97887de8500e56b36ff [file] [log] [blame]
Colin Cross3f40fa42015-01-30 17:27:36 -08001// Copyright 2015 Google Inc. All rights reserved.
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
Colin Cross635c3b02016-05-18 15:37:25 -070015package android
Colin Cross3f40fa42015-01-30 17:27:36 -080016
17import (
Colin Cross6ff51382015-12-17 16:39:19 -080018 "fmt"
Bob Badour4101c712022-02-09 11:54:35 -080019 "net/url"
Colin Cross988414c2020-01-11 01:11:46 +000020 "os"
Alex Lightfb4353d2019-01-17 13:57:45 -080021 "path"
Colin Cross3f40fa42015-01-30 17:27:36 -080022 "path/filepath"
Liz Kammer9525e712022-01-05 13:46:24 -050023 "reflect"
Jiyong Park1c7e9622020-05-07 16:12:13 +090024 "regexp"
Bob Badour4101c712022-02-09 11:54:35 -080025 "sort"
Colin Cross6ff51382015-12-17 16:39:19 -080026 "strings"
Colin Crossaabf6792017-11-29 00:27:14 -080027 "text/scanner"
Colin Crossf6566ed2015-03-24 11:13:38 -070028
Paul Duffinb42fa672021-09-09 16:37:49 +010029 "android/soong/bazel"
Tahsin Loqman77dc7d02022-12-19 16:27:25 +000030
Colin Crossf6566ed2015-03-24 11:13:38 -070031 "github.com/google/blueprint"
Colin Crossfe4bc362018-09-12 10:02:13 -070032 "github.com/google/blueprint/proptools"
Colin Cross3f40fa42015-01-30 17:27:36 -080033)
34
35var (
36 DeviceSharedLibrary = "shared_library"
37 DeviceStaticLibrary = "static_library"
Colin Cross3f40fa42015-01-30 17:27:36 -080038)
39
Liz Kammerdaefe0c2023-03-15 16:50:18 -040040// BuildParameters describes the set of potential parameters to build a Ninja rule.
41// In general, these correspond to a Ninja concept.
Colin Crossae887032017-10-23 17:16:14 -070042type BuildParams struct {
Liz Kammerdaefe0c2023-03-15 16:50:18 -040043 // A Ninja Rule that will be written to the Ninja file. This allows factoring out common code
44 // among multiple modules to reduce repetition in the Ninja file of action requirements. A rule
45 // can contain variables that should be provided in Args.
46 Rule blueprint.Rule
47 // Deps represents the depfile format. When using RuleBuilder, this defaults to GCC when depfiles
48 // are used.
49 Deps blueprint.Deps
50 // Depfile is a writeable path that allows correct incremental builds when the inputs have not
51 // been fully specified by the Ninja rule. Ninja supports a subset of the Makefile depfile syntax.
52 Depfile WritablePath
53 // A description of the build action.
54 Description string
55 // Output is an output file of the action. When using this field, references to $out in the Ninja
56 // command will refer to this file.
57 Output WritablePath
58 // Outputs is a slice of output file of the action. When using this field, references to $out in
59 // the Ninja command will refer to these files.
60 Outputs WritablePaths
61 // SymlinkOutput is an output file specifically that is a symlink.
62 SymlinkOutput WritablePath
63 // SymlinkOutputs is a slice of output files specifically that is a symlink.
64 SymlinkOutputs WritablePaths
65 // ImplicitOutput is an output file generated by the action. Note: references to `$out` in the
66 // Ninja command will NOT include references to this file.
67 ImplicitOutput WritablePath
68 // ImplicitOutputs is a slice of output files generated by the action. Note: references to `$out`
69 // in the Ninja command will NOT include references to these files.
Dan Willemsen9f3c5742016-11-03 14:28:31 -070070 ImplicitOutputs WritablePaths
Liz Kammerdaefe0c2023-03-15 16:50:18 -040071 // Input is an input file to the Ninja action. When using this field, references to $in in the
72 // Ninja command will refer to this file.
73 Input Path
74 // Inputs is a slice of input files to the Ninja action. When using this field, references to $in
75 // in the Ninja command will refer to these files.
76 Inputs Paths
77 // Implicit is an input file to the Ninja action. Note: references to `$in` in the Ninja command
78 // will NOT include references to this file.
79 Implicit Path
80 // Implicits is a slice of input files to the Ninja action. Note: references to `$in` in the Ninja
81 // command will NOT include references to these files.
82 Implicits Paths
83 // OrderOnly are Ninja order-only inputs to the action. When these are out of date, the output is
84 // not rebuilt until they are built, but changes in order-only dependencies alone do not cause the
85 // output to be rebuilt.
86 OrderOnly Paths
87 // Validation is an output path for a validation action. Validation outputs imply lower
88 // non-blocking priority to building non-validation outputs.
89 Validation Path
90 // Validations is a slice of output path for a validation action. Validation outputs imply lower
91 // non-blocking priority to building non-validation outputs.
92 Validations Paths
93 // Whether to skip outputting a default target statement which will be built by Ninja when no
94 // targets are specified on Ninja's command line.
95 Default bool
96 // Args is a key value mapping for replacements of variables within the Rule
97 Args map[string]string
Dan Willemsen34cc69e2015-09-23 15:26:20 -070098}
99
Colin Crossae887032017-10-23 17:16:14 -0700100type ModuleBuildParams BuildParams
101
Colin Cross1184b642019-12-30 18:43:07 -0800102// EarlyModuleContext provides methods that can be called early, as soon as the properties have
103// been parsed into the module and before any mutators have run.
104type EarlyModuleContext interface {
Colin Cross9f35c3d2020-09-16 19:04:41 -0700105 // Module returns the current module as a Module. It should rarely be necessary, as the module already has a
106 // reference to itself.
Colin Cross1184b642019-12-30 18:43:07 -0800107 Module() Module
Colin Cross9f35c3d2020-09-16 19:04:41 -0700108
109 // ModuleName returns the name of the module. This is generally the value that was returned by Module.Name() when
110 // the module was created, but may have been modified by calls to BaseMutatorContext.Rename.
Colin Cross1184b642019-12-30 18:43:07 -0800111 ModuleName() string
Colin Cross9f35c3d2020-09-16 19:04:41 -0700112
113 // ModuleDir returns the path to the directory that contains the definition of the module.
Colin Cross1184b642019-12-30 18:43:07 -0800114 ModuleDir() string
Colin Cross9f35c3d2020-09-16 19:04:41 -0700115
116 // ModuleType returns the name of the module type that was used to create the module, as specified in
117 // RegisterModuleType.
Colin Cross1184b642019-12-30 18:43:07 -0800118 ModuleType() string
Colin Cross9f35c3d2020-09-16 19:04:41 -0700119
120 // BlueprintFile returns the name of the blueprint file that contains the definition of this
121 // module.
Colin Cross9d34f352019-11-22 16:03:51 -0800122 BlueprintsFile() string
Colin Cross1184b642019-12-30 18:43:07 -0800123
Colin Cross9f35c3d2020-09-16 19:04:41 -0700124 // ContainsProperty returns true if the specified property name was set in the module definition.
Colin Cross1184b642019-12-30 18:43:07 -0800125 ContainsProperty(name string) bool
Colin Cross9f35c3d2020-09-16 19:04:41 -0700126
127 // Errorf reports an error at the specified position of the module definition file.
Colin Cross1184b642019-12-30 18:43:07 -0800128 Errorf(pos scanner.Position, fmt string, args ...interface{})
Colin Cross9f35c3d2020-09-16 19:04:41 -0700129
130 // ModuleErrorf reports an error at the line number of the module type in the module definition.
Colin Cross1184b642019-12-30 18:43:07 -0800131 ModuleErrorf(fmt string, args ...interface{})
Colin Cross9f35c3d2020-09-16 19:04:41 -0700132
133 // PropertyErrorf reports an error at the line number of a property in the module definition.
Colin Cross1184b642019-12-30 18:43:07 -0800134 PropertyErrorf(property, fmt string, args ...interface{})
Colin Cross9f35c3d2020-09-16 19:04:41 -0700135
136 // Failed returns true if any errors have been reported. In most cases the module can continue with generating
137 // build rules after an error, allowing it to report additional errors in a single run, but in cases where the error
138 // has prevented the module from creating necessary data it can return early when Failed returns true.
Colin Cross1184b642019-12-30 18:43:07 -0800139 Failed() bool
140
Colin Cross9f35c3d2020-09-16 19:04:41 -0700141 // AddNinjaFileDeps adds dependencies on the specified files to the rule that creates the ninja manifest. The
142 // primary builder will be rerun whenever the specified files are modified.
Colin Cross1184b642019-12-30 18:43:07 -0800143 AddNinjaFileDeps(deps ...string)
144
145 DeviceSpecific() bool
146 SocSpecific() bool
147 ProductSpecific() bool
148 SystemExtSpecific() bool
149 Platform() bool
150
151 Config() Config
152 DeviceConfig() DeviceConfig
153
154 // Deprecated: use Config()
155 AConfig() Config
156
157 // GlobWithDeps returns a list of files that match the specified pattern but do not match any
158 // of the patterns in excludes. It also adds efficient dependencies to rerun the primary
159 // builder whenever a file matching the pattern as added or removed, without rerunning if a
160 // file that does not match the pattern is added to a searched directory.
161 GlobWithDeps(pattern string, excludes []string) ([]string, error)
162
163 Glob(globPattern string, excludes []string) Paths
164 GlobFiles(globPattern string, excludes []string) Paths
Colin Cross988414c2020-01-11 01:11:46 +0000165 IsSymlink(path Path) bool
166 Readlink(path Path) string
Colin Cross133ebef2020-08-14 17:38:45 -0700167
Colin Cross9f35c3d2020-09-16 19:04:41 -0700168 // Namespace returns the Namespace object provided by the NameInterface set by Context.SetNameInterface, or the
169 // default SimpleNameInterface if Context.SetNameInterface was not called.
Colin Cross133ebef2020-08-14 17:38:45 -0700170 Namespace() *Namespace
Colin Cross1184b642019-12-30 18:43:07 -0800171}
172
Colin Cross0ea8ba82019-06-06 14:33:29 -0700173// BaseModuleContext is the same as blueprint.BaseModuleContext except that Config() returns
Colin Crossdc35e212019-06-06 16:13:11 -0700174// a Config instead of an interface{}, and some methods have been wrapped to use an android.Module
175// instead of a blueprint.Module, plus some extra methods that return Android-specific information
Colin Cross0ea8ba82019-06-06 14:33:29 -0700176// about the current module.
177type BaseModuleContext interface {
Colin Cross1184b642019-12-30 18:43:07 -0800178 EarlyModuleContext
Colin Cross0ea8ba82019-06-06 14:33:29 -0700179
Paul Duffinf88d8e02020-05-07 20:21:34 +0100180 blueprintBaseModuleContext() blueprint.BaseModuleContext
181
Colin Cross9f35c3d2020-09-16 19:04:41 -0700182 // OtherModuleName returns the name of another Module. See BaseModuleContext.ModuleName for more information.
183 // It is intended for use inside the visit functions of Visit* and WalkDeps.
Colin Crossdc35e212019-06-06 16:13:11 -0700184 OtherModuleName(m blueprint.Module) string
Colin Cross9f35c3d2020-09-16 19:04:41 -0700185
186 // OtherModuleDir returns the directory of another Module. See BaseModuleContext.ModuleDir for more information.
187 // It is intended for use inside the visit functions of Visit* and WalkDeps.
Colin Crossdc35e212019-06-06 16:13:11 -0700188 OtherModuleDir(m blueprint.Module) string
Colin Cross9f35c3d2020-09-16 19:04:41 -0700189
190 // OtherModuleErrorf reports an error on another Module. See BaseModuleContext.ModuleErrorf for more information.
191 // It is intended for use inside the visit functions of Visit* and WalkDeps.
Colin Crossdc35e212019-06-06 16:13:11 -0700192 OtherModuleErrorf(m blueprint.Module, fmt string, args ...interface{})
Colin Cross9f35c3d2020-09-16 19:04:41 -0700193
194 // OtherModuleDependencyTag returns the dependency tag used to depend on a module, or nil if there is no dependency
195 // on the module. When called inside a Visit* method with current module being visited, and there are multiple
196 // dependencies on the module being visited, it returns the dependency tag used for the current dependency.
Colin Crossdc35e212019-06-06 16:13:11 -0700197 OtherModuleDependencyTag(m blueprint.Module) blueprint.DependencyTag
Colin Cross9f35c3d2020-09-16 19:04:41 -0700198
199 // OtherModuleExists returns true if a module with the specified name exists, as determined by the NameInterface
200 // passed to Context.SetNameInterface, or SimpleNameInterface if it was not called.
Colin Crossdc35e212019-06-06 16:13:11 -0700201 OtherModuleExists(name string) bool
Colin Cross9f35c3d2020-09-16 19:04:41 -0700202
203 // OtherModuleDependencyVariantExists returns true if a module with the
204 // specified name and variant exists. The variant must match the given
205 // variations. It must also match all the non-local variations of the current
Martin Stjernholm408ffd82021-05-05 15:27:31 +0100206 // module. In other words, it checks for the module that AddVariationDependencies
Colin Cross9f35c3d2020-09-16 19:04:41 -0700207 // would add a dependency on with the same arguments.
Martin Stjernholm009a9dc2020-03-05 17:34:13 +0000208 OtherModuleDependencyVariantExists(variations []blueprint.Variation, name string) bool
Colin Cross9f35c3d2020-09-16 19:04:41 -0700209
Martin Stjernholm408ffd82021-05-05 15:27:31 +0100210 // OtherModuleFarDependencyVariantExists returns true if a module with the
211 // specified name and variant exists. The variant must match the given
212 // variations, but not the non-local variations of the current module. In
213 // other words, it checks for the module that AddFarVariationDependencies
214 // would add a dependency on with the same arguments.
215 OtherModuleFarDependencyVariantExists(variations []blueprint.Variation, name string) bool
216
Colin Cross9f35c3d2020-09-16 19:04:41 -0700217 // OtherModuleReverseDependencyVariantExists returns true if a module with the
218 // specified name exists with the same variations as the current module. In
Martin Stjernholm408ffd82021-05-05 15:27:31 +0100219 // other words, it checks for the module that AddReverseDependency would add a
Colin Cross9f35c3d2020-09-16 19:04:41 -0700220 // dependency on with the same argument.
Martin Stjernholm009a9dc2020-03-05 17:34:13 +0000221 OtherModuleReverseDependencyVariantExists(name string) bool
Colin Cross9f35c3d2020-09-16 19:04:41 -0700222
223 // OtherModuleType returns the type of another Module. See BaseModuleContext.ModuleType for more information.
224 // It is intended for use inside the visit functions of Visit* and WalkDeps.
Jiyong Park9e6c2422019-08-09 20:39:45 +0900225 OtherModuleType(m blueprint.Module) string
Colin Crossdc35e212019-06-06 16:13:11 -0700226
Colin Crossd27e7b82020-07-02 11:38:17 -0700227 // OtherModuleProvider returns the value for a provider for the given module. If the value is
228 // not set it returns the zero value of the type of the provider, so the return value can always
229 // be type asserted to the type of the provider. The value returned may be a deep copy of the
230 // value originally passed to SetProvider.
231 OtherModuleProvider(m blueprint.Module, provider blueprint.ProviderKey) interface{}
232
233 // OtherModuleHasProvider returns true if the provider for the given module has been set.
234 OtherModuleHasProvider(m blueprint.Module, provider blueprint.ProviderKey) bool
235
236 // Provider returns the value for a provider for the current module. If the value is
237 // not set it returns the zero value of the type of the provider, so the return value can always
238 // be type asserted to the type of the provider. It panics if called before the appropriate
239 // mutator or GenerateBuildActions pass for the provider. The value returned may be a deep
240 // copy of the value originally passed to SetProvider.
241 Provider(provider blueprint.ProviderKey) interface{}
242
243 // HasProvider returns true if the provider for the current module has been set.
244 HasProvider(provider blueprint.ProviderKey) bool
245
246 // SetProvider sets the value for a provider for the current module. It panics if not called
247 // during the appropriate mutator or GenerateBuildActions pass for the provider, if the value
248 // is not of the appropriate type, or if the value has already been set. The value should not
249 // be modified after being passed to SetProvider.
250 SetProvider(provider blueprint.ProviderKey, value interface{})
251
Colin Crossdc35e212019-06-06 16:13:11 -0700252 GetDirectDepsWithTag(tag blueprint.DependencyTag) []Module
Colin Cross9f35c3d2020-09-16 19:04:41 -0700253
254 // GetDirectDepWithTag returns the Module the direct dependency with the specified name, or nil if
255 // none exists. It panics if the dependency does not have the specified tag. It skips any
256 // dependencies that are not an android.Module.
Colin Crossdc35e212019-06-06 16:13:11 -0700257 GetDirectDepWithTag(name string, tag blueprint.DependencyTag) blueprint.Module
Colin Cross9f35c3d2020-09-16 19:04:41 -0700258
259 // GetDirectDep returns the Module and DependencyTag for the direct dependency with the specified
260 // name, or nil if none exists. If there are multiple dependencies on the same module it returns
Liz Kammer2b50ce62021-04-26 15:47:28 -0400261 // the first DependencyTag.
Colin Crossdc35e212019-06-06 16:13:11 -0700262 GetDirectDep(name string) (blueprint.Module, blueprint.DependencyTag)
263
Chris Parsons5a34ffb2021-07-21 14:34:58 -0400264 ModuleFromName(name string) (blueprint.Module, bool)
265
Colin Cross9f35c3d2020-09-16 19:04:41 -0700266 // VisitDirectDepsBlueprint calls visit for each direct dependency. If there are multiple
267 // direct dependencies on the same module visit will be called multiple times on that module
268 // and OtherModuleDependencyTag will return a different tag for each.
269 //
270 // The Module passed to the visit function should not be retained outside of the visit
271 // function, it may be invalidated by future mutators.
Colin Crossdc35e212019-06-06 16:13:11 -0700272 VisitDirectDepsBlueprint(visit func(blueprint.Module))
Colin Cross9f35c3d2020-09-16 19:04:41 -0700273
274 // VisitDirectDeps calls visit for each direct dependency. If there are multiple
275 // direct dependencies on the same module visit will be called multiple times on that module
Spandan Dasda7f3622021-08-04 20:50:04 +0000276 // and OtherModuleDependencyTag will return a different tag for each. It raises an error if any of the
277 // dependencies are not an android.Module.
Colin Cross9f35c3d2020-09-16 19:04:41 -0700278 //
279 // The Module passed to the visit function should not be retained outside of the visit
280 // function, it may be invalidated by future mutators.
Colin Crossdc35e212019-06-06 16:13:11 -0700281 VisitDirectDeps(visit func(Module))
Colin Cross9f35c3d2020-09-16 19:04:41 -0700282
Colin Crossdc35e212019-06-06 16:13:11 -0700283 VisitDirectDepsWithTag(tag blueprint.DependencyTag, visit func(Module))
Colin Cross9f35c3d2020-09-16 19:04:41 -0700284
285 // VisitDirectDepsIf calls pred for each direct dependency, and if pred returns true calls visit. If there are
286 // multiple direct dependencies on the same module pred and visit will be called multiple times on that module and
287 // OtherModuleDependencyTag will return a different tag for each. It skips any
288 // dependencies that are not an android.Module.
289 //
290 // The Module passed to the visit function should not be retained outside of the visit function, it may be
291 // invalidated by future mutators.
Colin Crossdc35e212019-06-06 16:13:11 -0700292 VisitDirectDepsIf(pred func(Module) bool, visit func(Module))
293 // Deprecated: use WalkDeps instead to support multiple dependency tags on the same module
294 VisitDepsDepthFirst(visit func(Module))
295 // Deprecated: use WalkDeps instead to support multiple dependency tags on the same module
296 VisitDepsDepthFirstIf(pred func(Module) bool, visit func(Module))
Colin Cross9f35c3d2020-09-16 19:04:41 -0700297
298 // WalkDeps calls visit for each transitive dependency, traversing the dependency tree in top down order. visit may
299 // be called multiple times for the same (child, parent) pair if there are multiple direct dependencies between the
300 // child and parent with different tags. OtherModuleDependencyTag will return the tag for the currently visited
301 // (child, parent) pair. If visit returns false WalkDeps will not continue recursing down to child. It skips
302 // any dependencies that are not an android.Module.
303 //
304 // The Modules passed to the visit function should not be retained outside of the visit function, they may be
305 // invalidated by future mutators.
Usta6b1ffa42021-12-15 12:45:49 -0500306 WalkDeps(visit func(child, parent Module) bool)
Colin Cross9f35c3d2020-09-16 19:04:41 -0700307
308 // WalkDepsBlueprint calls visit for each transitive dependency, traversing the dependency
309 // tree in top down order. visit may be called multiple times for the same (child, parent)
310 // pair if there are multiple direct dependencies between the child and parent with different
311 // tags. OtherModuleDependencyTag will return the tag for the currently visited
312 // (child, parent) pair. If visit returns false WalkDeps will not continue recursing down
313 // to child.
314 //
315 // The Modules passed to the visit function should not be retained outside of the visit function, they may be
316 // invalidated by future mutators.
Colin Crossdc35e212019-06-06 16:13:11 -0700317 WalkDepsBlueprint(visit func(blueprint.Module, blueprint.Module) bool)
Colin Cross9f35c3d2020-09-16 19:04:41 -0700318
Colin Crossdc35e212019-06-06 16:13:11 -0700319 // GetWalkPath is supposed to be called in visit function passed in WalkDeps()
320 // and returns a top-down dependency path from a start module to current child module.
321 GetWalkPath() []Module
322
Colin Cross4dfacf92020-09-16 19:22:27 -0700323 // PrimaryModule returns the first variant of the current module. Variants of a module are always visited in
324 // order by mutators and GenerateBuildActions, so the data created by the current mutator can be read from the
325 // Module returned by PrimaryModule without data races. This can be used to perform singleton actions that are
326 // only done once for all variants of a module.
327 PrimaryModule() Module
328
329 // FinalModule returns the last variant of the current module. Variants of a module are always visited in
330 // order by mutators and GenerateBuildActions, so the data created by the current mutator can be read from all
331 // variants using VisitAllModuleVariants if the current module == FinalModule(). This can be used to perform
332 // singleton actions that are only done once for all variants of a module.
333 FinalModule() Module
334
335 // VisitAllModuleVariants calls visit for each variant of the current module. Variants of a module are always
336 // visited in order by mutators and GenerateBuildActions, so the data created by the current mutator can be read
337 // from all variants if the current module == FinalModule(). Otherwise, care must be taken to not access any
338 // data modified by the current mutator.
339 VisitAllModuleVariants(visit func(Module))
340
Paul Duffinc5192442020-03-31 11:31:36 +0100341 // GetTagPath is supposed to be called in visit function passed in WalkDeps()
342 // and returns a top-down dependency tags path from a start module to current child module.
343 // It has one less entry than GetWalkPath() as it contains the dependency tags that
344 // exist between each adjacent pair of modules in the GetWalkPath().
345 // GetTagPath()[i] is the tag between GetWalkPath()[i] and GetWalkPath()[i+1]
346 GetTagPath() []blueprint.DependencyTag
347
Jiyong Park1c7e9622020-05-07 16:12:13 +0900348 // GetPathString is supposed to be called in visit function passed in WalkDeps()
349 // and returns a multi-line string showing the modules and dependency tags
350 // among them along the top-down dependency path from a start module to current child module.
351 // skipFirst when set to true, the output doesn't include the start module,
352 // which is already printed when this function is used along with ModuleErrorf().
353 GetPathString(skipFirst bool) string
354
Colin Crossdc35e212019-06-06 16:13:11 -0700355 AddMissingDependencies(missingDeps []string)
356
Liz Kammer6eff3232021-08-26 08:37:59 -0400357 // AddUnconvertedBp2buildDep stores module name of a direct dependency that was not converted via bp2build
358 AddUnconvertedBp2buildDep(dep string)
359
Liz Kammerdaa09ef2021-12-15 15:35:38 -0500360 // AddMissingBp2buildDep stores the module name of a direct dependency that was not found.
361 AddMissingBp2buildDep(dep string)
362
Colin Crossa1ad8d12016-06-01 17:09:44 -0700363 Target() Target
Colin Cross8b74d172016-09-13 09:59:14 -0700364 TargetPrimary() bool
Paul Duffinca7f0ef2020-02-25 15:50:49 +0000365
366 // The additional arch specific targets (e.g. 32/64 bit) that this module variant is
367 // responsible for creating.
Colin Crossee0bc3b2018-10-02 22:01:37 -0700368 MultiTargets() []Target
Colin Crossf6566ed2015-03-24 11:13:38 -0700369 Arch() Arch
Colin Crossa1ad8d12016-06-01 17:09:44 -0700370 Os() OsType
Colin Crossf6566ed2015-03-24 11:13:38 -0700371 Host() bool
372 Device() bool
Colin Cross0af4b842015-04-30 16:36:18 -0700373 Darwin() bool
Colin Cross3edeee12017-04-04 12:59:48 -0700374 Windows() bool
Colin Crossf6566ed2015-03-24 11:13:38 -0700375 Debug() bool
Colin Cross1e7d3702016-08-24 15:25:47 -0700376 PrimaryArch() bool
Colin Crossf6566ed2015-03-24 11:13:38 -0700377}
378
Colin Cross1184b642019-12-30 18:43:07 -0800379// Deprecated: use EarlyModuleContext instead
Colin Cross635c3b02016-05-18 15:37:25 -0700380type BaseContext interface {
Colin Cross1184b642019-12-30 18:43:07 -0800381 EarlyModuleContext
Colin Crossaabf6792017-11-29 00:27:14 -0800382}
383
Colin Cross635c3b02016-05-18 15:37:25 -0700384type ModuleContext interface {
Colin Crossaabf6792017-11-29 00:27:14 -0800385 BaseModuleContext
Colin Cross3f40fa42015-01-30 17:27:36 -0800386
Colin Crossc20dc852020-11-10 12:27:45 -0800387 blueprintModuleContext() blueprint.ModuleContext
388
Colin Crossae887032017-10-23 17:16:14 -0700389 // Deprecated: use ModuleContext.Build instead.
Colin Cross0875c522017-11-28 17:34:01 -0800390 ModuleBuild(pctx PackageContext, params ModuleBuildParams)
Colin Cross8f101b42015-06-17 15:09:06 -0700391
Paul Duffind5cf92e2021-07-09 17:38:55 +0100392 // Returns a list of paths expanded from globs and modules referenced using ":module" syntax. The property must
393 // be tagged with `android:"path" to support automatic source module dependency resolution.
394 //
395 // Deprecated: use PathsForModuleSrc or PathsForModuleSrcExcludes instead.
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700396 ExpandSources(srcFiles, excludes []string) Paths
Paul Duffind5cf92e2021-07-09 17:38:55 +0100397
398 // Returns a single path expanded from globs and modules referenced using ":module" syntax. The property must
399 // be tagged with `android:"path" to support automatic source module dependency resolution.
400 //
401 // Deprecated: use PathForModuleSrc instead.
Colin Cross366938f2017-12-11 16:29:02 -0800402 ExpandSource(srcFile, prop string) Path
Paul Duffind5cf92e2021-07-09 17:38:55 +0100403
Colin Cross2383f3b2018-02-06 14:40:13 -0800404 ExpandOptionalSource(srcFile *string, prop string) OptionalPath
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700405
Colin Cross41589502020-12-01 14:00:21 -0800406 // InstallExecutable creates a rule to copy srcPath to name in the installPath directory,
407 // with the given additional dependencies. The file is marked executable after copying.
408 //
409 // The installed file will be returned by FilesToInstall(), and the PackagingSpec for the
410 // installed file will be returned by PackagingSpecs() on this module or by
411 // TransitivePackagingSpecs() on modules that depend on this module through dependency tags
412 // for which IsInstallDepNeeded returns true.
Colin Cross70dda7e2019-10-01 22:05:35 -0700413 InstallExecutable(installPath InstallPath, name string, srcPath Path, deps ...Path) InstallPath
Colin Cross41589502020-12-01 14:00:21 -0800414
415 // InstallFile creates a rule to copy srcPath to name in the installPath directory,
416 // with the given additional dependencies.
417 //
418 // The installed file will be returned by FilesToInstall(), and the PackagingSpec for the
419 // installed file will be returned by PackagingSpecs() on this module or by
420 // TransitivePackagingSpecs() on modules that depend on this module through dependency tags
421 // for which IsInstallDepNeeded returns true.
Colin Cross70dda7e2019-10-01 22:05:35 -0700422 InstallFile(installPath InstallPath, name string, srcPath Path, deps ...Path) InstallPath
Colin Cross41589502020-12-01 14:00:21 -0800423
Colin Cross50ed1f92021-11-12 17:41:02 -0800424 // InstallFileWithExtraFilesZip creates a rule to copy srcPath to name in the installPath
425 // directory, and also unzip a zip file containing extra files to install into the same
426 // directory.
427 //
428 // The installed file will be returned by FilesToInstall(), and the PackagingSpec for the
429 // installed file will be returned by PackagingSpecs() on this module or by
430 // TransitivePackagingSpecs() on modules that depend on this module through dependency tags
431 // for which IsInstallDepNeeded returns true.
432 InstallFileWithExtraFilesZip(installPath InstallPath, name string, srcPath Path, extraZip Path, deps ...Path) InstallPath
433
Colin Cross41589502020-12-01 14:00:21 -0800434 // InstallSymlink creates a rule to create a symlink from src srcPath to name in the installPath
435 // directory.
436 //
437 // The installed symlink will be returned by FilesToInstall(), and the PackagingSpec for the
438 // installed file will be returned by PackagingSpecs() on this module or by
439 // TransitivePackagingSpecs() on modules that depend on this module through dependency tags
440 // for which IsInstallDepNeeded returns true.
Colin Cross70dda7e2019-10-01 22:05:35 -0700441 InstallSymlink(installPath InstallPath, name string, srcPath InstallPath) InstallPath
Colin Cross41589502020-12-01 14:00:21 -0800442
443 // InstallAbsoluteSymlink creates a rule to create an absolute symlink from src srcPath to name
444 // in the installPath directory.
445 //
446 // The installed symlink will be returned by FilesToInstall(), and the PackagingSpec for the
447 // installed file will be returned by PackagingSpecs() on this module or by
448 // TransitivePackagingSpecs() on modules that depend on this module through dependency tags
449 // for which IsInstallDepNeeded returns true.
Colin Cross70dda7e2019-10-01 22:05:35 -0700450 InstallAbsoluteSymlink(installPath InstallPath, name string, absPath string) InstallPath
Colin Cross41589502020-12-01 14:00:21 -0800451
452 // PackageFile creates a PackagingSpec as if InstallFile was called, but without creating
453 // the rule to copy the file. This is useful to define how a module would be packaged
454 // without installing it into the global installation directories.
455 //
456 // The created PackagingSpec for the will be returned by PackagingSpecs() on this module or by
457 // TransitivePackagingSpecs() on modules that depend on this module through dependency tags
458 // for which IsInstallDepNeeded returns true.
459 PackageFile(installPath InstallPath, name string, srcPath Path) PackagingSpec
460
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700461 CheckbuildFile(srcPath Path)
Dan Willemsen6553f5e2016-03-10 18:14:25 -0800462
Colin Cross8d8f8e22016-08-03 11:57:50 -0700463 InstallInData() bool
Jaewoong Jung0949f312019-09-11 10:25:18 -0700464 InstallInTestcases() bool
Vishwath Mohan1dd88392017-03-29 22:00:18 -0700465 InstallInSanitizerDir() bool
Yifan Hong1b3348d2020-01-21 15:53:22 -0800466 InstallInRamdisk() bool
Yifan Hong60e0cfb2020-10-21 15:17:56 -0700467 InstallInVendorRamdisk() bool
Inseob Kim08758f02021-04-08 21:13:22 +0900468 InstallInDebugRamdisk() bool
Jiyong Parkf9332f12018-02-01 00:54:12 +0900469 InstallInRecovery() bool
Colin Cross90ba5f42019-10-02 11:10:58 -0700470 InstallInRoot() bool
Kiyoung Kimae11c232021-07-19 11:38:04 +0900471 InstallInVendor() bool
Jiyong Park87788b52020-09-01 12:37:45 +0900472 InstallForceOS() (*OsType, *ArchType)
Nan Zhang6d34b302017-02-04 17:47:46 -0800473
474 RequiredModuleNames() []string
Sasha Smundakb6d23052019-04-01 18:37:36 -0700475 HostRequiredModuleNames() []string
476 TargetRequiredModuleNames() []string
Colin Cross3f68a132017-10-23 17:10:29 -0700477
Colin Cross3f68a132017-10-23 17:10:29 -0700478 ModuleSubDir() string
479
Colin Cross0875c522017-11-28 17:34:01 -0800480 Variable(pctx PackageContext, name, value string)
481 Rule(pctx PackageContext, name string, params blueprint.RuleParams, argNames ...string) blueprint.Rule
Colin Crossae887032017-10-23 17:16:14 -0700482 // Similar to blueprint.ModuleContext.Build, but takes Paths instead of []string,
483 // and performs more verification.
Colin Cross0875c522017-11-28 17:34:01 -0800484 Build(pctx PackageContext, params BuildParams)
Colin Crossc3d87d32020-06-04 13:25:17 -0700485 // Phony creates a Make-style phony rule, a rule with no commands that can depend on other
486 // phony rules or real files. Phony can be called on the same name multiple times to add
487 // additional dependencies.
488 Phony(phony string, deps ...Path)
Colin Cross3f68a132017-10-23 17:10:29 -0700489
Colin Cross9f35c3d2020-09-16 19:04:41 -0700490 // GetMissingDependencies returns the list of dependencies that were passed to AddDependencies or related methods,
491 // but do not exist.
Colin Cross3f68a132017-10-23 17:10:29 -0700492 GetMissingDependencies() []string
Colin Crosse7fe0962022-03-15 17:49:24 -0700493
494 // LicenseMetadataFile returns the path where the license metadata for this module will be
495 // generated.
496 LicenseMetadataFile() Path
Colin Cross3f40fa42015-01-30 17:27:36 -0800497}
498
Colin Cross635c3b02016-05-18 15:37:25 -0700499type Module interface {
Colin Cross3f40fa42015-01-30 17:27:36 -0800500 blueprint.Module
501
Jeff Gastonaf3cc2d2017-09-27 17:01:44 -0700502 // GenerateAndroidBuildActions is analogous to Blueprints' GenerateBuildActions,
503 // but GenerateAndroidBuildActions also has access to Android-specific information.
504 // For more information, see Module.GenerateBuildActions within Blueprint's module_ctx.go
Colin Cross635c3b02016-05-18 15:37:25 -0700505 GenerateAndroidBuildActions(ModuleContext)
Jeff Gastonaf3cc2d2017-09-27 17:01:44 -0700506
Paul Duffin44f1d842020-06-26 20:17:02 +0100507 // Add dependencies to the components of a module, i.e. modules that are created
508 // by the module and which are considered to be part of the creating module.
509 //
510 // This is called before prebuilts are renamed so as to allow a dependency to be
511 // added directly to a prebuilt child module instead of depending on a source module
512 // and relying on prebuilt processing to switch to the prebuilt module if preferred.
513 //
514 // A dependency on a prebuilt must include the "prebuilt_" prefix.
515 ComponentDepsMutator(ctx BottomUpMutatorContext)
516
Colin Cross1e676be2016-10-12 14:38:15 -0700517 DepsMutator(BottomUpMutatorContext)
Colin Cross3f40fa42015-01-30 17:27:36 -0800518
Colin Cross635c3b02016-05-18 15:37:25 -0700519 base() *ModuleBase
Inseob Kimeec88e12020-01-22 11:11:29 +0900520 Disable()
Dan Willemsen0effe062015-11-30 16:06:01 -0800521 Enabled() bool
Colin Crossa1ad8d12016-06-01 17:09:44 -0700522 Target() Target
Paul Duffinc04fb9e2021-03-01 12:25:10 +0000523 MultiTargets() []Target
Paul Duffinb42fa672021-09-09 16:37:49 +0100524
525 // ImageVariation returns the image variation of this module.
526 //
527 // The returned structure has its Mutator field set to "image" and its Variation field set to the
528 // image variation, e.g. recovery, ramdisk, etc.. The Variation field is "" for host modules and
529 // device modules that have no image variation.
530 ImageVariation() blueprint.Variation
531
Anton Hansson1ee62c02020-06-30 11:51:53 +0100532 Owner() string
Dan Willemsen782a2d12015-12-21 14:55:28 -0800533 InstallInData() bool
Jaewoong Jung0949f312019-09-11 10:25:18 -0700534 InstallInTestcases() bool
Vishwath Mohan1dd88392017-03-29 22:00:18 -0700535 InstallInSanitizerDir() bool
Yifan Hong1b3348d2020-01-21 15:53:22 -0800536 InstallInRamdisk() bool
Yifan Hong60e0cfb2020-10-21 15:17:56 -0700537 InstallInVendorRamdisk() bool
Inseob Kim08758f02021-04-08 21:13:22 +0900538 InstallInDebugRamdisk() bool
Jiyong Parkf9332f12018-02-01 00:54:12 +0900539 InstallInRecovery() bool
Colin Cross90ba5f42019-10-02 11:10:58 -0700540 InstallInRoot() bool
Kiyoung Kimae11c232021-07-19 11:38:04 +0900541 InstallInVendor() bool
Jiyong Park87788b52020-09-01 12:37:45 +0900542 InstallForceOS() (*OsType, *ArchType)
Jiyong Parkce243632023-02-17 18:22:25 +0900543 PartitionTag(DeviceConfig) string
Colin Crossa9c8c9f2020-12-16 10:20:23 -0800544 HideFromMake()
545 IsHideFromMake() bool
Martin Stjernholm9e7f45e2020-12-23 03:50:30 +0000546 IsSkipInstall() bool
Iván Budnik295da162023-03-10 16:11:26 +0000547 MakeUninstallable()
Liz Kammer5ca3a622020-08-05 15:40:41 -0700548 ReplacedByPrebuilt()
549 IsReplacedByPrebuilt() bool
Jiyong Park374510b2018-03-19 18:23:01 +0900550 ExportedToMake() bool
Inseob Kim8471cda2019-11-15 09:59:12 +0900551 InitRc() Paths
552 VintfFragments() Paths
Justin Yun1871f902023-04-07 20:13:19 +0900553 EffectiveLicenseKinds() []string
Justin Yun885a7de2021-06-29 20:34:53 +0900554 EffectiveLicenseFiles() Paths
Colin Cross36242852017-06-23 15:06:31 -0700555
556 AddProperties(props ...interface{})
557 GetProperties() []interface{}
Colin Crosscec81712017-07-13 14:43:27 -0700558
Liz Kammer2ada09a2021-08-11 00:17:36 -0400559 // IsConvertedByBp2build returns whether this module was converted via bp2build
560 IsConvertedByBp2build() bool
561 // Bp2buildTargets returns the target(s) generated for Bazel via bp2build for this module
562 Bp2buildTargets() []bp2buildInfo
Liz Kammer6eff3232021-08-26 08:37:59 -0400563 GetUnconvertedBp2buildDeps() []string
Liz Kammerdaa09ef2021-12-15 15:35:38 -0500564 GetMissingBp2buildDeps() []string
Liz Kammer2ada09a2021-08-11 00:17:36 -0400565
Colin Crossae887032017-10-23 17:16:14 -0700566 BuildParamsForTests() []BuildParams
Colin Cross4c83e5c2019-02-25 14:54:28 -0800567 RuleParamsForTests() map[blueprint.Rule]blueprint.RuleParams
Jaewoong Jung38e4fb22018-12-12 09:01:34 -0800568 VariablesForTests() map[string]string
Paul Duffine2453c72019-05-31 14:00:04 +0100569
Colin Cross9a362232019-07-01 15:32:45 -0700570 // String returns a string that includes the module name and variants for printing during debugging.
571 String() string
572
Paul Duffine2453c72019-05-31 14:00:04 +0100573 // Get the qualified module id for this module.
574 qualifiedModuleId(ctx BaseModuleContext) qualifiedModuleName
575
576 // Get information about the properties that can contain visibility rules.
577 visibilityProperties() []visibilityProperty
Paul Duffin63c6e182019-07-24 14:24:38 +0100578
Jiyong Park6a8cf5f2019-12-30 16:31:09 +0900579 RequiredModuleNames() []string
580 HostRequiredModuleNames() []string
581 TargetRequiredModuleNames() []string
Colin Cross897266e2020-02-13 13:22:08 -0800582
Jiyong Park4dc2a1a2020-09-28 17:46:22 +0900583 FilesToInstall() InstallPaths
Jiyong Park073ea552020-11-09 14:08:34 +0900584 PackagingSpecs() []PackagingSpec
Colin Crossffe6b9d2020-12-01 15:40:06 -0800585
586 // TransitivePackagingSpecs returns the PackagingSpecs for this module and any transitive
587 // dependencies with dependency tags for which IsInstallDepNeeded() returns true.
588 TransitivePackagingSpecs() []PackagingSpec
Paul Duffine2453c72019-05-31 14:00:04 +0100589}
590
591// Qualified id for a module
592type qualifiedModuleName struct {
593 // The package (i.e. directory) in which the module is defined, without trailing /
594 pkg string
595
596 // The name of the module, empty string if package.
597 name string
598}
599
600func (q qualifiedModuleName) String() string {
601 if q.name == "" {
602 return "//" + q.pkg
603 }
604 return "//" + q.pkg + ":" + q.name
605}
606
Paul Duffine484f472019-06-20 16:38:08 +0100607func (q qualifiedModuleName) isRootPackage() bool {
608 return q.pkg == "" && q.name == ""
609}
610
Paul Duffine2453c72019-05-31 14:00:04 +0100611// Get the id for the package containing this module.
612func (q qualifiedModuleName) getContainingPackageId() qualifiedModuleName {
613 pkg := q.pkg
614 if q.name == "" {
Paul Duffine484f472019-06-20 16:38:08 +0100615 if pkg == "" {
616 panic(fmt.Errorf("Cannot get containing package id of root package"))
617 }
618
619 index := strings.LastIndex(pkg, "/")
620 if index == -1 {
621 pkg = ""
622 } else {
623 pkg = pkg[:index]
624 }
Paul Duffine2453c72019-05-31 14:00:04 +0100625 }
626 return newPackageId(pkg)
627}
628
629func newPackageId(pkg string) qualifiedModuleName {
630 // A qualified id for a package module has no name.
631 return qualifiedModuleName{pkg: pkg, name: ""}
Colin Cross3f40fa42015-01-30 17:27:36 -0800632}
633
Jingwen Chen40fd90a2020-06-15 05:24:19 +0000634type Dist struct {
635 // Copy the output of this module to the $DIST_DIR when `dist` is specified on the
636 // command line and any of these targets are also on the command line, or otherwise
637 // built
638 Targets []string `android:"arch_variant"`
639
640 // The name of the output artifact. This defaults to the basename of the output of
641 // the module.
642 Dest *string `android:"arch_variant"`
643
644 // The directory within the dist directory to store the artifact. Defaults to the
645 // top level directory ("").
646 Dir *string `android:"arch_variant"`
647
648 // A suffix to add to the artifact file name (before any extension).
649 Suffix *string `android:"arch_variant"`
650
Trevor Radcliffe90727f42022-03-21 19:34:02 +0000651 // If true, then the artifact file will be appended with _<product name>. For
652 // example, if the product is coral and the module is an android_app module
653 // of name foo, then the artifact would be foo_coral.apk. If false, there is
654 // no change to the artifact file name.
655 Append_artifact_with_product *bool `android:"arch_variant"`
656
Paul Duffin74f05592020-11-25 16:37:46 +0000657 // A string tag to select the OutputFiles associated with the tag.
658 //
659 // If no tag is specified then it will select the default dist paths provided
660 // by the module type. If a tag of "" is specified then it will return the
661 // default output files provided by the modules, i.e. the result of calling
662 // OutputFiles("").
Jingwen Chen40fd90a2020-06-15 05:24:19 +0000663 Tag *string `android:"arch_variant"`
664}
665
Bob Badour4101c712022-02-09 11:54:35 -0800666// NamedPath associates a path with a name. e.g. a license text path with a package name
667type NamedPath struct {
668 Path Path
669 Name string
670}
671
672// String returns an escaped string representing the `NamedPath`.
673func (p NamedPath) String() string {
674 if len(p.Name) > 0 {
675 return p.Path.String() + ":" + url.QueryEscape(p.Name)
676 }
677 return p.Path.String()
678}
679
680// NamedPaths describes a list of paths each associated with a name.
681type NamedPaths []NamedPath
682
683// Strings returns a list of escaped strings representing each `NamedPath` in the list.
684func (l NamedPaths) Strings() []string {
685 result := make([]string, 0, len(l))
686 for _, p := range l {
687 result = append(result, p.String())
688 }
689 return result
690}
691
692// SortedUniqueNamedPaths modifies `l` in place to return the sorted unique subset.
693func SortedUniqueNamedPaths(l NamedPaths) NamedPaths {
694 if len(l) == 0 {
695 return l
696 }
697 sort.Slice(l, func(i, j int) bool {
698 return l[i].String() < l[j].String()
699 })
700 k := 0
701 for i := 1; i < len(l); i++ {
702 if l[i].String() == l[k].String() {
703 continue
704 }
705 k++
706 if k < i {
707 l[k] = l[i]
708 }
709 }
710 return l[:k+1]
711}
712
Colin Crossfc754582016-05-17 16:34:16 -0700713type nameProperties struct {
714 // The name of the module. Must be unique across all modules.
Nan Zhang0007d812017-11-07 10:57:05 -0800715 Name *string
Colin Crossfc754582016-05-17 16:34:16 -0700716}
717
Colin Cross08d6f8f2020-11-19 02:33:19 +0000718type commonProperties struct {
Dan Willemsen0effe062015-11-30 16:06:01 -0800719 // emit build rules for this module
Paul Duffin54d9bb72020-02-12 10:20:56 +0000720 //
721 // Disabling a module should only be done for those modules that cannot be built
722 // in the current environment. Modules that can build in the current environment
723 // but are not usually required (e.g. superceded by a prebuilt) should not be
724 // disabled as that will prevent them from being built by the checkbuild target
725 // and so prevent early detection of changes that have broken those modules.
Dan Willemsen0effe062015-11-30 16:06:01 -0800726 Enabled *bool `android:"arch_variant"`
Colin Cross3f40fa42015-01-30 17:27:36 -0800727
Paul Duffin2e61fa62019-03-28 14:10:57 +0000728 // Controls the visibility of this module to other modules. Allowable values are one or more of
729 // these formats:
730 //
731 // ["//visibility:public"]: Anyone can use this module.
732 // ["//visibility:private"]: Only rules in the module's package (not its subpackages) can use
733 // this module.
Paul Duffin51084ff2020-05-05 19:19:22 +0100734 // ["//visibility:override"]: Discards any rules inherited from defaults or a creating module.
735 // Can only be used at the beginning of a list of visibility rules.
Paul Duffin2e61fa62019-03-28 14:10:57 +0000736 // ["//some/package:__pkg__", "//other/package:__pkg__"]: Only modules in some/package and
737 // other/package (defined in some/package/*.bp and other/package/*.bp) have access to
738 // this module. Note that sub-packages do not have access to the rule; for example,
739 // //some/package/foo:bar or //other/package/testing:bla wouldn't have access. __pkg__
740 // is a special module and must be used verbatim. It represents all of the modules in the
741 // package.
742 // ["//project:__subpackages__", "//other:__subpackages__"]: Only modules in packages project
743 // or other or in one of their sub-packages have access to this module. For example,
744 // //project:rule, //project/library:lib or //other/testing/internal:munge are allowed
745 // to depend on this rule (but not //independent:evil)
746 // ["//project"]: This is shorthand for ["//project:__pkg__"]
747 // [":__subpackages__"]: This is shorthand for ["//project:__subpackages__"] where
748 // //project is the module's package. e.g. using [":__subpackages__"] in
749 // packages/apps/Settings/Android.bp is equivalent to
750 // //packages/apps/Settings:__subpackages__.
751 // ["//visibility:legacy_public"]: The default visibility, behaves as //visibility:public
752 // for now. It is an error if it is used in a module.
Paul Duffine2453c72019-05-31 14:00:04 +0100753 //
754 // If a module does not specify the `visibility` property then it uses the
755 // `default_visibility` property of the `package` module in the module's package.
756 //
757 // If the `default_visibility` property is not set for the module's package then
Paul Duffine484f472019-06-20 16:38:08 +0100758 // it will use the `default_visibility` of its closest ancestor package for which
759 // a `default_visibility` property is specified.
760 //
761 // If no `default_visibility` property can be found then the module uses the
762 // global default of `//visibility:legacy_public`.
Paul Duffine2453c72019-05-31 14:00:04 +0100763 //
Paul Duffin95d53b52019-07-24 13:45:05 +0100764 // The `visibility` property has no effect on a defaults module although it does
765 // apply to any non-defaults module that uses it. To set the visibility of a
766 // defaults module, use the `defaults_visibility` property on the defaults module;
767 // not to be confused with the `default_visibility` property on the package module.
768 //
Paul Duffin2e61fa62019-03-28 14:10:57 +0000769 // See https://android.googlesource.com/platform/build/soong/+/master/README.md#visibility for
770 // more details.
771 Visibility []string
772
Bob Badour37af0462021-01-07 03:34:31 +0000773 // Describes the licenses applicable to this module. Must reference license modules.
774 Licenses []string
775
776 // Flattened from direct license dependencies. Equal to Licenses unless particular module adds more.
777 Effective_licenses []string `blueprint:"mutated"`
778 // Override of module name when reporting licenses
779 Effective_package_name *string `blueprint:"mutated"`
780 // Notice files
Bob Badour4101c712022-02-09 11:54:35 -0800781 Effective_license_text NamedPaths `blueprint:"mutated"`
Bob Badour37af0462021-01-07 03:34:31 +0000782 // License names
783 Effective_license_kinds []string `blueprint:"mutated"`
784 // License conditions
785 Effective_license_conditions []string `blueprint:"mutated"`
786
Colin Cross7d5136f2015-05-11 13:39:40 -0700787 // control whether this module compiles for 32-bit, 64-bit, or both. Possible values
Colin Cross3f40fa42015-01-30 17:27:36 -0800788 // are "32" (compile for 32-bit only), "64" (compile for 64-bit only), "both" (compile for both
789 // architectures), or "first" (compile for 64-bit on a 64-bit platform, and 32-bit on a 32-bit
Roland Levillain24bb2e62020-09-22 11:18:38 +0000790 // platform).
Colin Cross7d716ba2017-11-01 10:38:29 -0700791 Compile_multilib *string `android:"arch_variant"`
Colin Cross69617d32016-09-06 10:39:07 -0700792
793 Target struct {
794 Host struct {
Colin Cross7d716ba2017-11-01 10:38:29 -0700795 Compile_multilib *string
Colin Cross69617d32016-09-06 10:39:07 -0700796 }
797 Android struct {
Colin Cross7d716ba2017-11-01 10:38:29 -0700798 Compile_multilib *string
Colin Cross69617d32016-09-06 10:39:07 -0700799 }
800 }
801
Paul Duffinca7f0ef2020-02-25 15:50:49 +0000802 // If set to true then the archMutator will create variants for each arch specific target
803 // (e.g. 32/64) that the module is required to produce. If set to false then it will only
804 // create a variant for the architecture and will list the additional arch specific targets
805 // that the variant needs to produce in the CompileMultiTargets property.
Colin Crossee0bc3b2018-10-02 22:01:37 -0700806 UseTargetVariants bool `blueprint:"mutated"`
807 Default_multilib string `blueprint:"mutated"`
Colin Cross3f40fa42015-01-30 17:27:36 -0800808
Dan Willemsen782a2d12015-12-21 14:55:28 -0800809 // whether this is a proprietary vendor module, and should be installed into /vendor
Colin Cross7d716ba2017-11-01 10:38:29 -0700810 Proprietary *bool
Dan Willemsen782a2d12015-12-21 14:55:28 -0800811
Colin Cross55708f32017-03-20 13:23:34 -0700812 // vendor who owns this module
Dan Willemsenefac4a82017-07-18 19:42:09 -0700813 Owner *string
Colin Cross55708f32017-03-20 13:23:34 -0700814
Jiyong Park2db76922017-11-08 16:03:48 +0900815 // whether this module is specific to an SoC (System-On-a-Chip). When set to true,
816 // it is installed into /vendor (or /system/vendor if vendor partition does not exist).
817 // Use `soc_specific` instead for better meaning.
Colin Cross7d716ba2017-11-01 10:38:29 -0700818 Vendor *bool
Dan Willemsenaa118f92017-04-06 12:49:58 -0700819
Jiyong Park2db76922017-11-08 16:03:48 +0900820 // whether this module is specific to an SoC (System-On-a-Chip). When set to true,
821 // it is installed into /vendor (or /system/vendor if vendor partition does not exist).
822 Soc_specific *bool
823
824 // whether this module is specific to a device, not only for SoC, but also for off-chip
825 // peripherals. When set to true, it is installed into /odm (or /vendor/odm if odm partition
826 // does not exist, or /system/vendor/odm if both odm and vendor partitions do not exist).
827 // This implies `soc_specific:true`.
828 Device_specific *bool
829
830 // whether this module is specific to a software configuration of a product (e.g. country,
Jaekyun Seok5cfbfbb2018-01-10 19:00:15 +0900831 // network operator, etc). When set to true, it is installed into /product (or
832 // /system/product if product partition does not exist).
Jiyong Park2db76922017-11-08 16:03:48 +0900833 Product_specific *bool
834
Justin Yund5f6c822019-06-25 16:47:17 +0900835 // whether this module extends system. When set to true, it is installed into /system_ext
836 // (or /system/system_ext if system_ext partition does not exist).
837 System_ext_specific *bool
838
Jiyong Parkf9332f12018-02-01 00:54:12 +0900839 // Whether this module is installed to recovery partition
840 Recovery *bool
841
Yifan Hong1b3348d2020-01-21 15:53:22 -0800842 // Whether this module is installed to ramdisk
843 Ramdisk *bool
844
Yifan Hong60e0cfb2020-10-21 15:17:56 -0700845 // Whether this module is installed to vendor ramdisk
846 Vendor_ramdisk *bool
847
Inseob Kim08758f02021-04-08 21:13:22 +0900848 // Whether this module is installed to debug ramdisk
849 Debug_ramdisk *bool
850
Jaewoong Jung8e93aba2021-03-02 16:58:08 -0800851 // Whether this module is built for non-native architectures (also known as native bridge binary)
dimitry1f33e402019-03-26 12:39:31 +0100852 Native_bridge_supported *bool `android:"arch_variant"`
853
Dan Willemsen2277bcb2016-07-25 20:27:39 -0700854 // init.rc files to be installed if this module is installed
Colin Cross0bab8772020-09-25 14:01:21 -0700855 Init_rc []string `android:"arch_variant,path"`
Dan Willemsen2277bcb2016-07-25 20:27:39 -0700856
Steven Moreland57a23d22018-04-04 15:42:19 -0700857 // VINTF manifest fragments to be installed if this module is installed
Colin Cross27b922f2019-03-04 22:35:41 -0800858 Vintf_fragments []string `android:"path"`
Steven Moreland57a23d22018-04-04 15:42:19 -0700859
Chris Wolfe998306e2016-08-15 14:47:23 -0400860 // names of other modules to install if this module is installed
Colin Crossc602b7d2017-05-05 13:36:36 -0700861 Required []string `android:"arch_variant"`
Chris Wolfe998306e2016-08-15 14:47:23 -0400862
Sasha Smundakb6d23052019-04-01 18:37:36 -0700863 // names of other modules to install on host if this module is installed
864 Host_required []string `android:"arch_variant"`
865
866 // names of other modules to install on target if this module is installed
867 Target_required []string `android:"arch_variant"`
868
Paul Duffinca7f0ef2020-02-25 15:50:49 +0000869 // The OsType of artifacts that this module variant is responsible for creating.
870 //
871 // Set by osMutator
872 CompileOS OsType `blueprint:"mutated"`
873
874 // The Target of artifacts that this module variant is responsible for creating.
875 //
876 // Set by archMutator
877 CompileTarget Target `blueprint:"mutated"`
878
879 // The additional arch specific targets (e.g. 32/64 bit) that this module variant is
880 // responsible for creating.
881 //
882 // By default this is nil as, where necessary, separate variants are created for the
883 // different multilib types supported and that information is encapsulated in the
884 // CompileTarget so the module variant simply needs to create artifacts for that.
885 //
886 // However, if UseTargetVariants is set to false (e.g. by
887 // InitAndroidMultiTargetsArchModule) then no separate variants are created for the
888 // multilib targets. Instead a single variant is created for the architecture and
889 // this contains the multilib specific targets that this variant should create.
890 //
891 // Set by archMutator
Colin Crossee0bc3b2018-10-02 22:01:37 -0700892 CompileMultiTargets []Target `blueprint:"mutated"`
Paul Duffinca7f0ef2020-02-25 15:50:49 +0000893
894 // True if the module variant's CompileTarget is the primary target
895 //
896 // Set by archMutator
897 CompilePrimary bool `blueprint:"mutated"`
Colin Cross3f40fa42015-01-30 17:27:36 -0800898
899 // Set by InitAndroidModule
900 HostOrDeviceSupported HostOrDeviceSupported `blueprint:"mutated"`
Dan Willemsen0b24c742016-10-04 15:13:37 -0700901 ArchSpecific bool `blueprint:"mutated"`
Colin Crossce75d2c2016-10-06 16:12:58 -0700902
Paul Duffin1356d8c2020-02-25 19:26:33 +0000903 // If set to true then a CommonOS variant will be created which will have dependencies
904 // on all its OsType specific variants. Used by sdk/module_exports to create a snapshot
905 // that covers all os and architecture variants.
906 //
907 // The OsType specific variants can be retrieved by calling
908 // GetOsSpecificVariantsOfCommonOSVariant
909 //
910 // Set at module initialization time by calling InitCommonOSAndroidMultiTargetsArchModule
911 CreateCommonOSVariant bool `blueprint:"mutated"`
912
913 // If set to true then this variant is the CommonOS variant that has dependencies on its
914 // OsType specific variants.
915 //
916 // Set by osMutator.
917 CommonOSVariant bool `blueprint:"mutated"`
918
Colin Crossa9c8c9f2020-12-16 10:20:23 -0800919 // When HideFromMake is set to true, no entry for this variant will be emitted in the
920 // generated Android.mk file.
921 HideFromMake bool `blueprint:"mutated"`
922
923 // When SkipInstall is set to true, calls to ctx.InstallFile, ctx.InstallExecutable,
924 // ctx.InstallSymlink and ctx.InstallAbsoluteSymlink act like calls to ctx.PackageFile
925 // and don't create a rule to install the file.
Colin Crossce75d2c2016-10-06 16:12:58 -0700926 SkipInstall bool `blueprint:"mutated"`
Jeff Gaston088e29e2017-11-29 16:47:17 -0800927
Liz Kammer5ca3a622020-08-05 15:40:41 -0700928 // Whether the module has been replaced by a prebuilt
929 ReplacedByPrebuilt bool `blueprint:"mutated"`
930
Justin Yun32f053b2020-07-31 23:07:17 +0900931 // Disabled by mutators. If set to true, it overrides Enabled property.
932 ForcedDisabled bool `blueprint:"mutated"`
933
Jeff Gaston088e29e2017-11-29 16:47:17 -0800934 NamespaceExportedToMake bool `blueprint:"mutated"`
Colin Cross6c4f21f2019-06-06 15:41:36 -0700935
936 MissingDeps []string `blueprint:"mutated"`
Colin Cross9a362232019-07-01 15:32:45 -0700937
938 // Name and variant strings stored by mutators to enable Module.String()
939 DebugName string `blueprint:"mutated"`
940 DebugMutators []string `blueprint:"mutated"`
941 DebugVariations []string `blueprint:"mutated"`
Colin Cross7228ecd2019-11-18 16:00:16 -0800942
Colin Crossa6845402020-11-16 15:08:19 -0800943 // ImageVariation is set by ImageMutator to specify which image this variation is for,
944 // for example "" for core or "recovery" for recovery. It will often be set to one of the
945 // constants in image.go, but can also be set to a custom value by individual module types.
Colin Cross7228ecd2019-11-18 16:00:16 -0800946 ImageVariation string `blueprint:"mutated"`
Liz Kammer2ada09a2021-08-11 00:17:36 -0400947
Sasha Smundaka0954062022-08-02 18:23:58 -0700948 // Bazel conversion status
949 BazelConversionStatus BazelConversionStatus `blueprint:"mutated"`
Colin Cross3f40fa42015-01-30 17:27:36 -0800950}
951
Alex Márquez Pérez Muñíz Díaz Púras Thaureaux447f6c92021-08-31 20:30:36 +0000952// CommonAttributes represents the common Bazel attributes from which properties
953// in `commonProperties` are translated/mapped; such properties are annotated in
954// a list their corresponding attribute. It is embedded within `bp2buildInfo`.
955type CommonAttributes struct {
956 // Soong nameProperties -> Bazel name
957 Name string
Spandan Das4238c652022-09-09 01:38:47 +0000958
Alex Márquez Pérez Muñíz Díaz Púras Thaureaux447f6c92021-08-31 20:30:36 +0000959 // Data mapped from: Required
960 Data bazel.LabelListAttribute
Jingwen Chenfbff97a2022-09-16 02:32:03 +0000961
Spandan Das4238c652022-09-09 01:38:47 +0000962 // SkipData is neither a Soong nor Bazel target attribute
963 // If true, this will not fill the data attribute automatically
964 // This is useful for Soong modules that have 1:many Bazel targets
965 // Some of the generated Bazel targets might not have a data attribute
966 SkipData *bool
967
Jingwen Chenfbff97a2022-09-16 02:32:03 +0000968 Tags bazel.StringListAttribute
Sasha Smundak05b0ba62022-09-26 18:15:45 -0700969
970 Applicable_licenses bazel.LabelListAttribute
Yu Liu4c212ce2022-10-14 12:20:20 -0700971
972 Testonly *bool
Alex Márquez Pérez Muñíz Díaz Púras Thaureaux447f6c92021-08-31 20:30:36 +0000973}
974
Chris Parsons58852a02021-12-09 18:10:18 -0500975// constraintAttributes represents Bazel attributes pertaining to build constraints,
976// which make restrict building a Bazel target for some set of platforms.
977type constraintAttributes struct {
978 // Constraint values this target can be built for.
979 Target_compatible_with bazel.LabelListAttribute
980}
981
Paul Duffined875132020-09-02 13:08:57 +0100982type distProperties struct {
983 // configuration to distribute output files from this module to the distribution
984 // directory (default: $OUT/dist, configurable with $DIST_DIR)
985 Dist Dist `android:"arch_variant"`
986
987 // a list of configurations to distribute output files from this module to the
988 // distribution directory (default: $OUT/dist, configurable with $DIST_DIR)
989 Dists []Dist `android:"arch_variant"`
990}
991
Zhenhuang Wang0ac5a432022-08-12 18:49:20 +0800992// CommonTestOptions represents the common `test_options` properties in
993// Android.bp.
994type CommonTestOptions struct {
995 // If the test is a hostside (no device required) unittest that shall be run
996 // during presubmit check.
997 Unit_test *bool
Zhenhuang Wang409d2772022-08-22 16:00:05 +0800998
999 // Tags provide additional metadata to customize test execution by downstream
1000 // test runners. The tags have no special meaning to Soong.
1001 Tags []string
Zhenhuang Wang0ac5a432022-08-12 18:49:20 +08001002}
1003
1004// SetAndroidMkEntries sets AndroidMkEntries according to the value of base
1005// `test_options`.
1006func (t *CommonTestOptions) SetAndroidMkEntries(entries *AndroidMkEntries) {
1007 entries.SetBoolIfTrue("LOCAL_IS_UNIT_TEST", Bool(t.Unit_test))
Zhenhuang Wang409d2772022-08-22 16:00:05 +08001008 if len(t.Tags) > 0 {
1009 entries.AddStrings("LOCAL_TEST_OPTIONS_TAGS", t.Tags...)
1010 }
Zhenhuang Wang0ac5a432022-08-12 18:49:20 +08001011}
1012
Paul Duffin74f05592020-11-25 16:37:46 +00001013// The key to use in TaggedDistFiles when a Dist structure does not specify a
1014// tag property. This intentionally does not use "" as the default because that
1015// would mean that an empty tag would have a different meaning when used in a dist
1016// structure that when used to reference a specific set of output paths using the
1017// :module{tag} syntax, which passes tag to the OutputFiles(tag) method.
1018const DefaultDistTag = "<default-dist-tag>"
1019
Jingwen Chen40fd90a2020-06-15 05:24:19 +00001020// A map of OutputFile tag keys to Paths, for disting purposes.
1021type TaggedDistFiles map[string]Paths
1022
Paul Duffin74f05592020-11-25 16:37:46 +00001023// addPathsForTag adds a mapping from the tag to the paths. If the map is nil
1024// then it will create a map, update it and then return it. If a mapping already
1025// exists for the tag then the paths are appended to the end of the current list
1026// of paths, ignoring any duplicates.
1027func (t TaggedDistFiles) addPathsForTag(tag string, paths ...Path) TaggedDistFiles {
1028 if t == nil {
1029 t = make(TaggedDistFiles)
1030 }
1031
1032 for _, distFile := range paths {
1033 if distFile != nil && !t[tag].containsPath(distFile) {
1034 t[tag] = append(t[tag], distFile)
1035 }
1036 }
1037
1038 return t
1039}
1040
1041// merge merges the entries from the other TaggedDistFiles object into this one.
1042// If the TaggedDistFiles is nil then it will create a new instance, merge the
1043// other into it, and then return it.
1044func (t TaggedDistFiles) merge(other TaggedDistFiles) TaggedDistFiles {
1045 for tag, paths := range other {
1046 t = t.addPathsForTag(tag, paths...)
1047 }
1048
1049 return t
1050}
1051
Jingwen Chen40fd90a2020-06-15 05:24:19 +00001052func MakeDefaultDistFiles(paths ...Path) TaggedDistFiles {
Sasha Smundake198eaf2022-08-04 13:07:02 -07001053 for _, p := range paths {
1054 if p == nil {
Jingwen Chen7b27ca72020-07-24 09:13:49 +00001055 panic("The path to a dist file cannot be nil.")
1056 }
1057 }
1058
Jingwen Chen40fd90a2020-06-15 05:24:19 +00001059 // The default OutputFile tag is the empty "" string.
Paul Duffin74f05592020-11-25 16:37:46 +00001060 return TaggedDistFiles{DefaultDistTag: paths}
Jingwen Chen40fd90a2020-06-15 05:24:19 +00001061}
1062
Colin Cross3f40fa42015-01-30 17:27:36 -08001063type hostAndDeviceProperties struct {
Colin Cross4e81d702018-11-09 10:36:55 -08001064 // If set to true, build a variant of the module for the host. Defaults to false.
1065 Host_supported *bool
1066
1067 // If set to true, build a variant of the module for the device. Defaults to true.
Colin Crossa4190c12016-07-12 13:11:25 -07001068 Device_supported *bool
Colin Cross3f40fa42015-01-30 17:27:36 -08001069}
1070
Colin Crossc472d572015-03-17 15:06:21 -07001071type Multilib string
1072
1073const (
Colin Cross6b4a32d2017-12-05 13:42:45 -08001074 MultilibBoth Multilib = "both"
1075 MultilibFirst Multilib = "first"
1076 MultilibCommon Multilib = "common"
1077 MultilibCommonFirst Multilib = "common_first"
Colin Crossc472d572015-03-17 15:06:21 -07001078)
1079
Colin Crossa1ad8d12016-06-01 17:09:44 -07001080type HostOrDeviceSupported int
1081
1082const (
Colin Cross34037c62020-11-17 13:19:17 -08001083 hostSupported = 1 << iota
1084 hostCrossSupported
1085 deviceSupported
1086 hostDefault
1087 deviceDefault
Dan Albert0981b5c2018-08-02 13:46:35 -07001088
1089 // Host and HostCross are built by default. Device is not supported.
Colin Cross34037c62020-11-17 13:19:17 -08001090 HostSupported = hostSupported | hostCrossSupported | hostDefault
Dan Albert0981b5c2018-08-02 13:46:35 -07001091
1092 // Host is built by default. HostCross and Device are not supported.
Colin Cross34037c62020-11-17 13:19:17 -08001093 HostSupportedNoCross = hostSupported | hostDefault
Dan Albert0981b5c2018-08-02 13:46:35 -07001094
1095 // Device is built by default. Host and HostCross are not supported.
Colin Cross34037c62020-11-17 13:19:17 -08001096 DeviceSupported = deviceSupported | deviceDefault
Dan Albert0981b5c2018-08-02 13:46:35 -07001097
Liz Kammer8631cc72021-08-23 21:12:07 +00001098 // By default, _only_ device variant is built. Device variant can be disabled with `device_supported: false`
Chih-Hung Hsiehd0f82fe2021-09-05 20:15:38 -07001099 // Host and HostCross are disabled by default and can be enabled with `host_supported: true`
Colin Cross34037c62020-11-17 13:19:17 -08001100 HostAndDeviceSupported = hostSupported | hostCrossSupported | deviceSupported | deviceDefault
Dan Albert0981b5c2018-08-02 13:46:35 -07001101
1102 // Host, HostCross, and Device are built by default.
Chih-Hung Hsiehd0f82fe2021-09-05 20:15:38 -07001103 // Building Device can be disabled with `device_supported: false`
1104 // Building Host and HostCross can be disabled with `host_supported: false`
Colin Cross34037c62020-11-17 13:19:17 -08001105 HostAndDeviceDefault = hostSupported | hostCrossSupported | hostDefault |
1106 deviceSupported | deviceDefault
Dan Albert0981b5c2018-08-02 13:46:35 -07001107
1108 // Nothing is supported. This is not exposed to the user, but used to mark a
1109 // host only module as unsupported when the module type is not supported on
1110 // the host OS. E.g. benchmarks are supported on Linux but not Darwin.
Colin Cross34037c62020-11-17 13:19:17 -08001111 NeitherHostNorDeviceSupported = 0
Colin Crossa1ad8d12016-06-01 17:09:44 -07001112)
1113
Jiyong Park2db76922017-11-08 16:03:48 +09001114type moduleKind int
1115
1116const (
1117 platformModule moduleKind = iota
1118 deviceSpecificModule
1119 socSpecificModule
1120 productSpecificModule
Justin Yund5f6c822019-06-25 16:47:17 +09001121 systemExtSpecificModule
Jiyong Park2db76922017-11-08 16:03:48 +09001122)
1123
1124func (k moduleKind) String() string {
1125 switch k {
1126 case platformModule:
1127 return "platform"
1128 case deviceSpecificModule:
1129 return "device-specific"
1130 case socSpecificModule:
1131 return "soc-specific"
1132 case productSpecificModule:
1133 return "product-specific"
Justin Yund5f6c822019-06-25 16:47:17 +09001134 case systemExtSpecificModule:
1135 return "systemext-specific"
Jiyong Park2db76922017-11-08 16:03:48 +09001136 default:
1137 panic(fmt.Errorf("unknown module kind %d", k))
1138 }
1139}
1140
Colin Cross9d34f352019-11-22 16:03:51 -08001141func initAndroidModuleBase(m Module) {
1142 m.base().module = m
1143}
1144
Colin Crossa6845402020-11-16 15:08:19 -08001145// InitAndroidModule initializes the Module as an Android module that is not architecture-specific.
1146// It adds the common properties, for example "name" and "enabled".
Colin Cross36242852017-06-23 15:06:31 -07001147func InitAndroidModule(m Module) {
Colin Cross9d34f352019-11-22 16:03:51 -08001148 initAndroidModuleBase(m)
Colin Cross3f40fa42015-01-30 17:27:36 -08001149 base := m.base()
Colin Cross5049f022015-03-18 13:28:46 -07001150
Colin Cross36242852017-06-23 15:06:31 -07001151 m.AddProperties(
Colin Crossfc754582016-05-17 16:34:16 -07001152 &base.nameProperties,
Paul Duffined875132020-09-02 13:08:57 +01001153 &base.commonProperties,
1154 &base.distProperties)
Colin Cross18c46802019-09-24 22:19:02 -07001155
Colin Crosseabaedd2020-02-06 17:01:55 -08001156 initProductVariableModule(m)
Colin Cross18c46802019-09-24 22:19:02 -07001157
Paul Duffin63c6e182019-07-24 14:24:38 +01001158 // The default_visibility property needs to be checked and parsed by the visibility module during
Paul Duffin5ec73ec2020-05-01 17:52:01 +01001159 // its checking and parsing phases so make it the primary visibility property.
1160 setPrimaryVisibilityProperty(m, "visibility", &base.commonProperties.Visibility)
Bob Badour37af0462021-01-07 03:34:31 +00001161
1162 // The default_applicable_licenses property needs to be checked and parsed by the licenses module during
1163 // its checking and parsing phases so make it the primary licenses property.
1164 setPrimaryLicensesProperty(m, "licenses", &base.commonProperties.Licenses)
Colin Cross5049f022015-03-18 13:28:46 -07001165}
1166
Colin Crossa6845402020-11-16 15:08:19 -08001167// InitAndroidArchModule initializes the Module as an Android module that is architecture-specific.
1168// It adds the common properties, for example "name" and "enabled", as well as runtime generated
1169// property structs for architecture-specific versions of generic properties tagged with
1170// `android:"arch_variant"`.
1171//
Colin Crossd079e0b2022-08-16 10:27:33 -07001172// InitAndroidModule should not be called if InitAndroidArchModule was called.
Colin Cross36242852017-06-23 15:06:31 -07001173func InitAndroidArchModule(m Module, hod HostOrDeviceSupported, defaultMultilib Multilib) {
1174 InitAndroidModule(m)
Colin Cross5049f022015-03-18 13:28:46 -07001175
1176 base := m.base()
Colin Cross3f40fa42015-01-30 17:27:36 -08001177 base.commonProperties.HostOrDeviceSupported = hod
Colin Cross69617d32016-09-06 10:39:07 -07001178 base.commonProperties.Default_multilib = string(defaultMultilib)
Dan Willemsen0b24c742016-10-04 15:13:37 -07001179 base.commonProperties.ArchSpecific = true
Colin Crossee0bc3b2018-10-02 22:01:37 -07001180 base.commonProperties.UseTargetVariants = true
Colin Cross3f40fa42015-01-30 17:27:36 -08001181
Colin Cross34037c62020-11-17 13:19:17 -08001182 if hod&hostSupported != 0 && hod&deviceSupported != 0 {
Colin Cross36242852017-06-23 15:06:31 -07001183 m.AddProperties(&base.hostAndDeviceProperties)
Colin Cross3f40fa42015-01-30 17:27:36 -08001184 }
1185
Colin Crossa6845402020-11-16 15:08:19 -08001186 initArchModule(m)
Colin Cross3f40fa42015-01-30 17:27:36 -08001187}
1188
Colin Crossa6845402020-11-16 15:08:19 -08001189// InitAndroidMultiTargetsArchModule initializes the Module as an Android module that is
1190// architecture-specific, but will only have a single variant per OS that handles all the
1191// architectures simultaneously. The list of Targets that it must handle will be available from
1192// ModuleContext.MultiTargets. It adds the common properties, for example "name" and "enabled", as
1193// well as runtime generated property structs for architecture-specific versions of generic
1194// properties tagged with `android:"arch_variant"`.
1195//
1196// InitAndroidModule or InitAndroidArchModule should not be called if
1197// InitAndroidMultiTargetsArchModule was called.
Colin Crossee0bc3b2018-10-02 22:01:37 -07001198func InitAndroidMultiTargetsArchModule(m Module, hod HostOrDeviceSupported, defaultMultilib Multilib) {
1199 InitAndroidArchModule(m, hod, defaultMultilib)
1200 m.base().commonProperties.UseTargetVariants = false
1201}
1202
Colin Crossa6845402020-11-16 15:08:19 -08001203// InitCommonOSAndroidMultiTargetsArchModule initializes the Module as an Android module that is
1204// architecture-specific, but will only have a single variant per OS that handles all the
1205// architectures simultaneously, and will also have an additional CommonOS variant that has
1206// dependencies on all the OS-specific variants. The list of Targets that it must handle will be
1207// available from ModuleContext.MultiTargets. It adds the common properties, for example "name" and
1208// "enabled", as well as runtime generated property structs for architecture-specific versions of
1209// generic properties tagged with `android:"arch_variant"`.
1210//
1211// InitAndroidModule, InitAndroidArchModule or InitAndroidMultiTargetsArchModule should not be
1212// called if InitCommonOSAndroidMultiTargetsArchModule was called.
Paul Duffin1356d8c2020-02-25 19:26:33 +00001213func InitCommonOSAndroidMultiTargetsArchModule(m Module, hod HostOrDeviceSupported, defaultMultilib Multilib) {
1214 InitAndroidArchModule(m, hod, defaultMultilib)
1215 m.base().commonProperties.UseTargetVariants = false
1216 m.base().commonProperties.CreateCommonOSVariant = true
1217}
1218
Chris Parsons58852a02021-12-09 18:10:18 -05001219func (attrs *CommonAttributes) fillCommonBp2BuildModuleAttrs(ctx *topDownMutatorContext,
1220 enabledPropertyOverrides bazel.BoolAttribute) constraintAttributes {
Alex Márquez Pérez Muñíz Díaz Púras Thaureaux447f6c92021-08-31 20:30:36 +00001221
1222 mod := ctx.Module().base()
Sasha Smundake198eaf2022-08-04 13:07:02 -07001223 // Assert passed-in attributes include Name
1224 if len(attrs.Name) == 0 {
Sasha Smundakfb589492022-08-04 11:13:27 -07001225 if ctx.ModuleType() != "package" {
1226 ctx.ModuleErrorf("CommonAttributes in fillCommonBp2BuildModuleAttrs expects a `.Name`!")
1227 }
Sasha Smundake198eaf2022-08-04 13:07:02 -07001228 }
Alex Márquez Pérez Muñíz Díaz Púras Thaureaux447f6c92021-08-31 20:30:36 +00001229
1230 depsToLabelList := func(deps []string) bazel.LabelListAttribute {
1231 return bazel.MakeLabelListAttribute(BazelLabelForModuleDeps(ctx, deps))
1232 }
1233
Chris Parsons58852a02021-12-09 18:10:18 -05001234 var enabledProperty bazel.BoolAttribute
Liz Kammerdfeb1202022-05-13 17:20:20 -04001235
1236 onlyAndroid := false
1237 neitherHostNorDevice := false
1238
1239 osSupport := map[string]bool{}
1240
1241 // if the target is enabled and supports arch variance, determine the defaults based on the module
1242 // type's host or device property and host_supported/device_supported properties
1243 if mod.commonProperties.ArchSpecific {
1244 moduleSupportsDevice := mod.DeviceSupported()
1245 moduleSupportsHost := mod.HostSupported()
1246 if moduleSupportsHost && !moduleSupportsDevice {
1247 // for host only, we specify as unsupported on android rather than listing all host osSupport
1248 // TODO(b/220874839): consider replacing this with a constraint that covers all host osSupport
1249 // instead
1250 enabledProperty.SetSelectValue(bazel.OsConfigurationAxis, Android.Name, proptools.BoolPtr(false))
1251 } else if moduleSupportsDevice && !moduleSupportsHost {
1252 enabledProperty.SetSelectValue(bazel.OsConfigurationAxis, Android.Name, proptools.BoolPtr(true))
1253 // specify as a positive to ensure any target-specific enabled can be resolved
1254 // also save that a target is only android, as if there is only the positive restriction on
1255 // android, it'll be dropped, so we may need to add it back later
1256 onlyAndroid = true
1257 } else if !moduleSupportsHost && !moduleSupportsDevice {
1258 neitherHostNorDevice = true
1259 }
1260
Sasha Smundake198eaf2022-08-04 13:07:02 -07001261 for _, osType := range OsTypeList() {
1262 if osType.Class == Host {
1263 osSupport[osType.Name] = moduleSupportsHost
1264 } else if osType.Class == Device {
1265 osSupport[osType.Name] = moduleSupportsDevice
Liz Kammerdfeb1202022-05-13 17:20:20 -04001266 }
1267 }
1268 }
1269
1270 if neitherHostNorDevice {
1271 // we can't build this, disable
1272 enabledProperty.Value = proptools.BoolPtr(false)
Sasha Smundake198eaf2022-08-04 13:07:02 -07001273 } else if mod.commonProperties.Enabled != nil {
1274 enabledProperty.SetValue(mod.commonProperties.Enabled)
1275 if !*mod.commonProperties.Enabled {
1276 for oss, enabled := range osSupport {
1277 if val := enabledProperty.SelectValue(bazel.OsConfigurationAxis, oss); enabled && val != nil && *val {
Liz Kammerdfeb1202022-05-13 17:20:20 -04001278 // if this should be disabled by default, clear out any enabling we've done
Sasha Smundake198eaf2022-08-04 13:07:02 -07001279 enabledProperty.SetSelectValue(bazel.OsConfigurationAxis, oss, nil)
Liz Kammerdfeb1202022-05-13 17:20:20 -04001280 }
1281 }
1282 }
Chris Parsons58852a02021-12-09 18:10:18 -05001283 }
1284
Sasha Smundak05b0ba62022-09-26 18:15:45 -07001285 attrs.Applicable_licenses = bazel.MakeLabelListAttribute(BazelLabelForModuleDeps(ctx, mod.commonProperties.Licenses))
1286
Jingwen Chena5ecb372022-09-21 09:05:37 +00001287 // The required property can contain the module itself. This causes a cycle
1288 // when generated as the 'data' label list attribute in Bazel. Remove it if
1289 // it exists. See b/247985196.
1290 _, requiredWithoutCycles := RemoveFromList(ctx.ModuleName(), mod.commonProperties.Required)
Wei Li7d8f6182022-10-11 14:38:16 -07001291 requiredWithoutCycles = FirstUniqueStrings(requiredWithoutCycles)
Jingwen Chena5ecb372022-09-21 09:05:37 +00001292 required := depsToLabelList(requiredWithoutCycles)
Sasha Smundake198eaf2022-08-04 13:07:02 -07001293 archVariantProps := mod.GetArchVariantProperties(ctx, &commonProperties{})
Alex Márquez Pérez Muñíz Díaz Púras Thaureaux447f6c92021-08-31 20:30:36 +00001294 for axis, configToProps := range archVariantProps {
1295 for config, _props := range configToProps {
1296 if archProps, ok := _props.(*commonProperties); ok {
Jingwen Chena5ecb372022-09-21 09:05:37 +00001297 _, requiredWithoutCycles := RemoveFromList(ctx.ModuleName(), archProps.Required)
Wei Li7d8f6182022-10-11 14:38:16 -07001298 requiredWithoutCycles = FirstUniqueStrings(requiredWithoutCycles)
Jingwen Chena5ecb372022-09-21 09:05:37 +00001299 required.SetSelectValue(axis, config, depsToLabelList(requiredWithoutCycles).Value)
Liz Kammerdfeb1202022-05-13 17:20:20 -04001300 if !neitherHostNorDevice {
1301 if archProps.Enabled != nil {
1302 if axis != bazel.OsConfigurationAxis || osSupport[config] {
1303 enabledProperty.SetSelectValue(axis, config, archProps.Enabled)
1304 }
1305 }
Chris Parsons58852a02021-12-09 18:10:18 -05001306 }
Alex Márquez Pérez Muñíz Díaz Púras Thaureaux447f6c92021-08-31 20:30:36 +00001307 }
1308 }
1309 }
Chris Parsons58852a02021-12-09 18:10:18 -05001310
Liz Kammerdfeb1202022-05-13 17:20:20 -04001311 if !neitherHostNorDevice {
1312 if enabledPropertyOverrides.Value != nil {
1313 enabledProperty.Value = enabledPropertyOverrides.Value
1314 }
1315 for _, axis := range enabledPropertyOverrides.SortedConfigurationAxes() {
1316 configToBools := enabledPropertyOverrides.ConfigurableValues[axis]
1317 for cfg, val := range configToBools {
1318 if axis != bazel.OsConfigurationAxis || osSupport[cfg] {
1319 enabledProperty.SetSelectValue(axis, cfg, &val)
1320 }
1321 }
Chris Parsons58852a02021-12-09 18:10:18 -05001322 }
1323 }
1324
Sam Delmerico0e33c9d2022-01-07 20:39:21 +00001325 productConfigEnabledLabels := []bazel.Label{}
Liz Kammerdfeb1202022-05-13 17:20:20 -04001326 // TODO(b/234497586): Soong config variables and product variables have different overriding behavior, we
1327 // should handle it correctly
1328 if !proptools.BoolDefault(enabledProperty.Value, true) && !neitherHostNorDevice {
Sam Delmerico0e33c9d2022-01-07 20:39:21 +00001329 // If the module is not enabled by default, then we can check if a
1330 // product variable enables it
1331 productConfigEnabledLabels = productVariableConfigEnableLabels(ctx)
Chris Parsons58852a02021-12-09 18:10:18 -05001332
Sam Delmerico0e33c9d2022-01-07 20:39:21 +00001333 if len(productConfigEnabledLabels) > 0 {
1334 // In this case, an existing product variable configuration overrides any
1335 // module-level `enable: false` definition
1336 newValue := true
1337 enabledProperty.Value = &newValue
1338 }
1339 }
1340
1341 productConfigEnabledAttribute := bazel.MakeLabelListAttribute(bazel.LabelList{
1342 productConfigEnabledLabels, nil,
1343 })
1344
1345 platformEnabledAttribute, err := enabledProperty.ToLabelListAttribute(
Sasha Smundake198eaf2022-08-04 13:07:02 -07001346 bazel.LabelList{[]bazel.Label{{Label: "@platforms//:incompatible"}}, nil},
Chris Parsons58852a02021-12-09 18:10:18 -05001347 bazel.LabelList{[]bazel.Label{}, nil})
Chris Parsons58852a02021-12-09 18:10:18 -05001348 if err != nil {
Sam Delmerico0e33c9d2022-01-07 20:39:21 +00001349 ctx.ModuleErrorf("Error processing platform enabled attribute: %s", err)
Chris Parsons58852a02021-12-09 18:10:18 -05001350 }
Sam Delmerico0e33c9d2022-01-07 20:39:21 +00001351
Liz Kammerdfeb1202022-05-13 17:20:20 -04001352 // if android is the only arch/os enabled, then add a restriction to only be compatible with android
1353 if platformEnabledAttribute.IsNil() && onlyAndroid {
1354 l := bazel.LabelAttribute{}
1355 l.SetValue(bazel.Label{Label: bazel.OsConfigurationAxis.SelectKey(Android.Name)})
1356 platformEnabledAttribute.Add(&l)
1357 }
1358
Spandan Das4238c652022-09-09 01:38:47 +00001359 if !proptools.Bool(attrs.SkipData) {
1360 attrs.Data.Append(required)
1361 }
1362 // SkipData is not an attribute of any Bazel target
1363 // Set this to nil so that it does not appear in the generated build file
1364 attrs.SkipData = nil
Sam Delmerico0e33c9d2022-01-07 20:39:21 +00001365
Sam Delmerico0e33c9d2022-01-07 20:39:21 +00001366 moduleEnableConstraints := bazel.LabelListAttribute{}
1367 moduleEnableConstraints.Append(platformEnabledAttribute)
1368 moduleEnableConstraints.Append(productConfigEnabledAttribute)
Sam Delmerico0e33c9d2022-01-07 20:39:21 +00001369
Sasha Smundake198eaf2022-08-04 13:07:02 -07001370 return constraintAttributes{Target_compatible_with: moduleEnableConstraints}
Alex Márquez Pérez Muñíz Díaz Púras Thaureaux447f6c92021-08-31 20:30:36 +00001371}
1372
Sam Delmerico0e33c9d2022-01-07 20:39:21 +00001373// Check product variables for `enabled: true` flag override.
1374// Returns a list of the constraint_value targets who enable this override.
1375func productVariableConfigEnableLabels(ctx *topDownMutatorContext) []bazel.Label {
Cole Faust912bc882023-03-08 12:29:50 -08001376 productVariableProps := ProductVariableProperties(ctx, ctx.Module())
Sam Delmerico0e33c9d2022-01-07 20:39:21 +00001377 productConfigEnablingTargets := []bazel.Label{}
1378 const propName = "Enabled"
1379 if productConfigProps, exists := productVariableProps[propName]; exists {
1380 for productConfigProp, prop := range productConfigProps {
1381 flag, ok := prop.(*bool)
1382 if !ok {
1383 ctx.ModuleErrorf("Could not convert product variable %s property", proptools.PropertyNameForField(propName))
1384 }
1385
1386 if *flag {
1387 axis := productConfigProp.ConfigurationAxis()
1388 targetLabel := axis.SelectKey(productConfigProp.SelectKey())
1389 productConfigEnablingTargets = append(productConfigEnablingTargets, bazel.Label{
1390 Label: targetLabel,
1391 })
1392 } else {
1393 // TODO(b/210546943): handle negative case where `enabled: false`
1394 ctx.ModuleErrorf("`enabled: false` is not currently supported for configuration variables. See b/210546943", proptools.PropertyNameForField(propName))
1395 }
1396 }
1397 }
1398
1399 return productConfigEnablingTargets
1400}
1401
Nan Zhangb9eeb1d2017-02-02 10:46:07 -08001402// A ModuleBase object contains the properties that are common to all Android
Colin Cross3f40fa42015-01-30 17:27:36 -08001403// modules. It should be included as an anonymous field in every module
1404// struct definition. InitAndroidModule should then be called from the module's
1405// factory function, and the return values from InitAndroidModule should be
1406// returned from the factory function.
1407//
Nan Zhangb9eeb1d2017-02-02 10:46:07 -08001408// The ModuleBase type is responsible for implementing the GenerateBuildActions
1409// method to support the blueprint.Module interface. This method will then call
1410// the module's GenerateAndroidBuildActions method once for each build variant
Colin Cross25de6c32019-06-06 14:29:25 -07001411// that is to be built. GenerateAndroidBuildActions is passed a ModuleContext
1412// rather than the usual blueprint.ModuleContext.
1413// ModuleContext exposes extra functionality specific to the Android build
Colin Cross3f40fa42015-01-30 17:27:36 -08001414// system including details about the particular build variant that is to be
1415// generated.
1416//
1417// For example:
1418//
Zhenhuang Wang0ac5a432022-08-12 18:49:20 +08001419// import (
1420// "android/soong/android"
1421// )
Colin Cross3f40fa42015-01-30 17:27:36 -08001422//
Zhenhuang Wang0ac5a432022-08-12 18:49:20 +08001423// type myModule struct {
1424// android.ModuleBase
1425// properties struct {
1426// MyProperty string
1427// }
1428// }
Colin Cross3f40fa42015-01-30 17:27:36 -08001429//
Zhenhuang Wang0ac5a432022-08-12 18:49:20 +08001430// func NewMyModule() android.Module {
1431// m := &myModule{}
1432// m.AddProperties(&m.properties)
1433// android.InitAndroidModule(m)
1434// return m
1435// }
Colin Cross3f40fa42015-01-30 17:27:36 -08001436//
Zhenhuang Wang0ac5a432022-08-12 18:49:20 +08001437// func (m *myModule) GenerateAndroidBuildActions(ctx android.ModuleContext) {
1438// // Get the CPU architecture for the current build variant.
1439// variantArch := ctx.Arch()
Colin Cross3f40fa42015-01-30 17:27:36 -08001440//
Zhenhuang Wang0ac5a432022-08-12 18:49:20 +08001441// // ...
1442// }
Colin Cross635c3b02016-05-18 15:37:25 -07001443type ModuleBase struct {
Colin Cross3f40fa42015-01-30 17:27:36 -08001444 // Putting the curiously recurring thing pointing to the thing that contains
1445 // the thing pattern to good use.
Colin Cross36242852017-06-23 15:06:31 -07001446 // TODO: remove this
Colin Cross635c3b02016-05-18 15:37:25 -07001447 module Module
Colin Cross3f40fa42015-01-30 17:27:36 -08001448
Colin Crossfc754582016-05-17 16:34:16 -07001449 nameProperties nameProperties
Colin Cross3f40fa42015-01-30 17:27:36 -08001450 commonProperties commonProperties
Paul Duffined875132020-09-02 13:08:57 +01001451 distProperties distProperties
Colin Cross18c46802019-09-24 22:19:02 -07001452 variableProperties interface{}
Colin Cross3f40fa42015-01-30 17:27:36 -08001453 hostAndDeviceProperties hostAndDeviceProperties
Jingwen Chen5d864492021-02-24 07:20:12 -05001454
Usta851a3272022-01-05 23:42:33 -05001455 // Arch specific versions of structs in GetProperties() prior to
1456 // initialization in InitAndroidArchModule, lets call it `generalProperties`.
1457 // The outer index has the same order as generalProperties and the inner index
1458 // chooses the props specific to the architecture. The interface{} value is an
1459 // archPropRoot that is filled with arch specific values by the arch mutator.
Jingwen Chen5d864492021-02-24 07:20:12 -05001460 archProperties [][]interface{}
1461
Jingwen Chen73850672020-12-14 08:25:34 -05001462 // Properties specific to the Blueprint to BUILD migration.
1463 bazelTargetModuleProperties bazel.BazelTargetModuleProperties
1464
Paul Duffin63c6e182019-07-24 14:24:38 +01001465 // Information about all the properties on the module that contains visibility rules that need
1466 // checking.
1467 visibilityPropertyInfo []visibilityProperty
1468
1469 // The primary visibility property, may be nil, that controls access to the module.
1470 primaryVisibilityProperty visibilityProperty
1471
Bob Badour37af0462021-01-07 03:34:31 +00001472 // The primary licenses property, may be nil, records license metadata for the module.
1473 primaryLicensesProperty applicableLicensesProperty
1474
Colin Crossffe6b9d2020-12-01 15:40:06 -08001475 noAddressSanitizer bool
1476 installFiles InstallPaths
1477 installFilesDepSet *installPathsDepSet
1478 checkbuildFiles Paths
1479 packagingSpecs []PackagingSpec
1480 packagingSpecsDepSet *packagingSpecsDepSet
Colin Cross6301c3c2021-09-28 17:40:21 -07001481 // katiInstalls tracks the install rules that were created by Soong but are being exported
1482 // to Make to convert to ninja rules so that Make can add additional dependencies.
1483 katiInstalls katiInstalls
1484 katiSymlinks katiInstalls
Colin Cross1f8c52b2015-06-16 16:38:17 -07001485
Paul Duffinaf970a22020-11-23 23:32:56 +00001486 // The files to copy to the dist as explicitly specified in the .bp file.
1487 distFiles TaggedDistFiles
1488
Colin Cross1f8c52b2015-06-16 16:38:17 -07001489 // Used by buildTargetSingleton to create checkbuild and per-directory build targets
1490 // Only set on the final variant of each module
Colin Cross0875c522017-11-28 17:34:01 -08001491 installTarget WritablePath
1492 checkbuildTarget WritablePath
Colin Cross1f8c52b2015-06-16 16:38:17 -07001493 blueprintDir string
Colin Crossa120ec12016-08-19 16:07:38 -07001494
Colin Cross178a5092016-09-13 13:42:32 -07001495 hooks hooks
Colin Cross36242852017-06-23 15:06:31 -07001496
1497 registerProps []interface{}
Colin Crosscec81712017-07-13 14:43:27 -07001498
1499 // For tests
Colin Crossae887032017-10-23 17:16:14 -07001500 buildParams []BuildParams
Colin Cross4c83e5c2019-02-25 14:54:28 -08001501 ruleParams map[blueprint.Rule]blueprint.RuleParams
Jaewoong Jung38e4fb22018-12-12 09:01:34 -08001502 variables map[string]string
Colin Crossa9d8bee2018-10-02 13:59:46 -07001503
Inseob Kim8471cda2019-11-15 09:59:12 +09001504 initRcPaths Paths
1505 vintfFragmentsPaths Paths
Colin Cross4acaea92021-12-10 23:05:02 +00001506
1507 // set of dependency module:location mappings used to populate the license metadata for
1508 // apex containers.
1509 licenseInstallMap []string
Colin Crossaa1cab02022-01-28 14:49:24 -08001510
1511 // The path to the generated license metadata file for the module.
1512 licenseMetadataFile WritablePath
Colin Cross36242852017-06-23 15:06:31 -07001513}
1514
Liz Kammer2ada09a2021-08-11 00:17:36 -04001515// A struct containing all relevant information about a Bazel target converted via bp2build.
1516type bp2buildInfo struct {
Chris Parsons58852a02021-12-09 18:10:18 -05001517 Dir string
1518 BazelProps bazel.BazelTargetModuleProperties
1519 CommonAttrs CommonAttributes
1520 ConstraintAttrs constraintAttributes
1521 Attrs interface{}
Liz Kammer2ada09a2021-08-11 00:17:36 -04001522}
1523
1524// TargetName returns the Bazel target name of a bp2build converted target.
1525func (b bp2buildInfo) TargetName() string {
Alex Márquez Pérez Muñíz Díaz Púras Thaureaux447f6c92021-08-31 20:30:36 +00001526 return b.CommonAttrs.Name
Liz Kammer2ada09a2021-08-11 00:17:36 -04001527}
1528
1529// TargetPackage returns the Bazel package of a bp2build converted target.
1530func (b bp2buildInfo) TargetPackage() string {
1531 return b.Dir
1532}
1533
1534// BazelRuleClass returns the Bazel rule class of a bp2build converted target.
1535func (b bp2buildInfo) BazelRuleClass() string {
1536 return b.BazelProps.Rule_class
1537}
1538
1539// BazelRuleLoadLocation returns the location of the Bazel rule of a bp2build converted target.
1540// This may be empty as native Bazel rules do not need to be loaded.
1541func (b bp2buildInfo) BazelRuleLoadLocation() string {
1542 return b.BazelProps.Bzl_load_location
1543}
1544
1545// BazelAttributes returns the Bazel attributes of a bp2build converted target.
Alex Márquez Pérez Muñíz Díaz Púras Thaureaux447f6c92021-08-31 20:30:36 +00001546func (b bp2buildInfo) BazelAttributes() []interface{} {
Chris Parsons58852a02021-12-09 18:10:18 -05001547 return []interface{}{&b.CommonAttrs, &b.ConstraintAttrs, b.Attrs}
Liz Kammer2ada09a2021-08-11 00:17:36 -04001548}
1549
1550func (m *ModuleBase) addBp2buildInfo(info bp2buildInfo) {
Sasha Smundaka0954062022-08-02 18:23:58 -07001551 m.commonProperties.BazelConversionStatus.Bp2buildInfo = append(m.commonProperties.BazelConversionStatus.Bp2buildInfo, info)
Liz Kammer2ada09a2021-08-11 00:17:36 -04001552}
1553
1554// IsConvertedByBp2build returns whether this module was converted via bp2build.
1555func (m *ModuleBase) IsConvertedByBp2build() bool {
Sasha Smundaka0954062022-08-02 18:23:58 -07001556 return len(m.commonProperties.BazelConversionStatus.Bp2buildInfo) > 0
Liz Kammer2ada09a2021-08-11 00:17:36 -04001557}
1558
1559// Bp2buildTargets returns the Bazel targets bp2build generated for this module.
1560func (m *ModuleBase) Bp2buildTargets() []bp2buildInfo {
Sasha Smundaka0954062022-08-02 18:23:58 -07001561 return m.commonProperties.BazelConversionStatus.Bp2buildInfo
Liz Kammer2ada09a2021-08-11 00:17:36 -04001562}
1563
Liz Kammer6eff3232021-08-26 08:37:59 -04001564// AddUnconvertedBp2buildDep stores module name of a dependency that was not converted to Bazel.
1565func (b *baseModuleContext) AddUnconvertedBp2buildDep(dep string) {
Sasha Smundaka0954062022-08-02 18:23:58 -07001566 unconvertedDeps := &b.Module().base().commonProperties.BazelConversionStatus.UnconvertedDeps
Liz Kammer6eff3232021-08-26 08:37:59 -04001567 *unconvertedDeps = append(*unconvertedDeps, dep)
1568}
1569
Liz Kammerdaa09ef2021-12-15 15:35:38 -05001570// AddMissingBp2buildDep stores module name of a dependency that was not found in a Android.bp file.
1571func (b *baseModuleContext) AddMissingBp2buildDep(dep string) {
Sasha Smundaka0954062022-08-02 18:23:58 -07001572 missingDeps := &b.Module().base().commonProperties.BazelConversionStatus.MissingDeps
Liz Kammerdaa09ef2021-12-15 15:35:38 -05001573 *missingDeps = append(*missingDeps, dep)
1574}
1575
Liz Kammer6eff3232021-08-26 08:37:59 -04001576// GetUnconvertedBp2buildDeps returns the list of module names of this module's direct dependencies that
1577// were not converted to Bazel.
1578func (m *ModuleBase) GetUnconvertedBp2buildDeps() []string {
Sasha Smundaka0954062022-08-02 18:23:58 -07001579 return FirstUniqueStrings(m.commonProperties.BazelConversionStatus.UnconvertedDeps)
Liz Kammer6eff3232021-08-26 08:37:59 -04001580}
1581
Usta Shrestha56b84e72022-09-24 00:26:47 -04001582// GetMissingBp2buildDeps returns the list of module names that were not found in Android.bp files.
Liz Kammerdaa09ef2021-12-15 15:35:38 -05001583func (m *ModuleBase) GetMissingBp2buildDeps() []string {
Sasha Smundaka0954062022-08-02 18:23:58 -07001584 return FirstUniqueStrings(m.commonProperties.BazelConversionStatus.MissingDeps)
Liz Kammerdaa09ef2021-12-15 15:35:38 -05001585}
1586
Lukacs T. Berkid18d8ca2021-06-25 09:11:22 +02001587func (m *ModuleBase) AddJSONData(d *map[string]interface{}) {
Liz Kammer9525e712022-01-05 13:46:24 -05001588 (*d)["Android"] = map[string]interface{}{
1589 // Properties set in Blueprint or in blueprint of a defaults modules
1590 "SetProperties": m.propertiesWithValues(),
1591 }
1592}
1593
1594type propInfo struct {
Liz Kammer898e0762022-03-22 11:27:26 -04001595 Name string
1596 Type string
1597 Value string
1598 Values []string
Liz Kammer9525e712022-01-05 13:46:24 -05001599}
1600
1601func (m *ModuleBase) propertiesWithValues() []propInfo {
1602 var info []propInfo
1603 props := m.GetProperties()
1604
1605 var propsWithValues func(name string, v reflect.Value)
1606 propsWithValues = func(name string, v reflect.Value) {
1607 kind := v.Kind()
1608 switch kind {
1609 case reflect.Ptr, reflect.Interface:
1610 if v.IsNil() {
1611 return
1612 }
1613 propsWithValues(name, v.Elem())
1614 case reflect.Struct:
1615 if v.IsZero() {
1616 return
1617 }
1618 for i := 0; i < v.NumField(); i++ {
1619 namePrefix := name
1620 sTyp := v.Type().Field(i)
1621 if proptools.ShouldSkipProperty(sTyp) {
1622 continue
1623 }
1624 if name != "" && !strings.HasSuffix(namePrefix, ".") {
1625 namePrefix += "."
1626 }
1627 if !proptools.IsEmbedded(sTyp) {
1628 namePrefix += sTyp.Name
1629 }
1630 sVal := v.Field(i)
1631 propsWithValues(namePrefix, sVal)
1632 }
1633 case reflect.Array, reflect.Slice:
1634 if v.IsNil() {
1635 return
1636 }
1637 elKind := v.Type().Elem().Kind()
Liz Kammer898e0762022-03-22 11:27:26 -04001638 info = append(info, propInfo{Name: name, Type: elKind.String() + " " + kind.String(), Values: sliceReflectionValue(v)})
Liz Kammer9525e712022-01-05 13:46:24 -05001639 default:
Liz Kammer898e0762022-03-22 11:27:26 -04001640 info = append(info, propInfo{Name: name, Type: kind.String(), Value: reflectionValue(v)})
Liz Kammer9525e712022-01-05 13:46:24 -05001641 }
1642 }
1643
1644 for _, p := range props {
1645 propsWithValues("", reflect.ValueOf(p).Elem())
1646 }
Liz Kammer898e0762022-03-22 11:27:26 -04001647 sort.Slice(info, func(i, j int) bool {
1648 return info[i].Name < info[j].Name
1649 })
Liz Kammer9525e712022-01-05 13:46:24 -05001650 return info
Lukacs T. Berkid18d8ca2021-06-25 09:11:22 +02001651}
1652
Liz Kammer898e0762022-03-22 11:27:26 -04001653func reflectionValue(value reflect.Value) string {
1654 switch value.Kind() {
1655 case reflect.Bool:
1656 return fmt.Sprintf("%t", value.Bool())
1657 case reflect.Int64:
1658 return fmt.Sprintf("%d", value.Int())
1659 case reflect.String:
1660 return fmt.Sprintf("%s", value.String())
1661 case reflect.Struct:
1662 if value.IsZero() {
1663 return "{}"
1664 }
1665 length := value.NumField()
1666 vals := make([]string, length, length)
1667 for i := 0; i < length; i++ {
1668 sTyp := value.Type().Field(i)
1669 if proptools.ShouldSkipProperty(sTyp) {
1670 continue
1671 }
1672 name := sTyp.Name
1673 vals[i] = fmt.Sprintf("%s: %s", name, reflectionValue(value.Field(i)))
1674 }
1675 return fmt.Sprintf("%s{%s}", value.Type(), strings.Join(vals, ", "))
1676 case reflect.Array, reflect.Slice:
1677 vals := sliceReflectionValue(value)
1678 return fmt.Sprintf("[%s]", strings.Join(vals, ", "))
1679 }
1680 return ""
1681}
1682
1683func sliceReflectionValue(value reflect.Value) []string {
1684 length := value.Len()
1685 vals := make([]string, length, length)
1686 for i := 0; i < length; i++ {
1687 vals[i] = reflectionValue(value.Index(i))
1688 }
1689 return vals
1690}
1691
Paul Duffin44f1d842020-06-26 20:17:02 +01001692func (m *ModuleBase) ComponentDepsMutator(BottomUpMutatorContext) {}
1693
Colin Cross4157e882019-06-06 16:57:04 -07001694func (m *ModuleBase) DepsMutator(BottomUpMutatorContext) {}
Colin Cross5f692ec2019-02-01 16:53:07 -08001695
Usta355a5872021-12-01 15:16:32 -05001696// AddProperties "registers" the provided props
1697// each value in props MUST be a pointer to a struct
Colin Cross4157e882019-06-06 16:57:04 -07001698func (m *ModuleBase) AddProperties(props ...interface{}) {
1699 m.registerProps = append(m.registerProps, props...)
Colin Cross36242852017-06-23 15:06:31 -07001700}
1701
Colin Cross4157e882019-06-06 16:57:04 -07001702func (m *ModuleBase) GetProperties() []interface{} {
1703 return m.registerProps
Colin Cross3f40fa42015-01-30 17:27:36 -08001704}
1705
Colin Cross4157e882019-06-06 16:57:04 -07001706func (m *ModuleBase) BuildParamsForTests() []BuildParams {
Chih-Hung Hsiehb8082292021-09-09 23:20:39 -07001707 // Expand the references to module variables like $flags[0-9]*,
1708 // so we do not need to change many existing unit tests.
1709 // This looks like undoing the shareFlags optimization in cc's
1710 // transformSourceToObj, and should only affects unit tests.
1711 vars := m.VariablesForTests()
1712 buildParams := append([]BuildParams(nil), m.buildParams...)
Sasha Smundake198eaf2022-08-04 13:07:02 -07001713 for i := range buildParams {
Chih-Hung Hsiehb8082292021-09-09 23:20:39 -07001714 newArgs := make(map[string]string)
1715 for k, v := range buildParams[i].Args {
1716 newArgs[k] = v
1717 // Replaces both ${flags1} and $flags1 syntax.
1718 if strings.HasPrefix(v, "${") && strings.HasSuffix(v, "}") {
1719 if value, found := vars[v[2:len(v)-1]]; found {
1720 newArgs[k] = value
1721 }
1722 } else if strings.HasPrefix(v, "$") {
1723 if value, found := vars[v[1:]]; found {
1724 newArgs[k] = value
1725 }
1726 }
1727 }
1728 buildParams[i].Args = newArgs
1729 }
1730 return buildParams
Colin Crosscec81712017-07-13 14:43:27 -07001731}
1732
Colin Cross4157e882019-06-06 16:57:04 -07001733func (m *ModuleBase) RuleParamsForTests() map[blueprint.Rule]blueprint.RuleParams {
1734 return m.ruleParams
Colin Cross4c83e5c2019-02-25 14:54:28 -08001735}
1736
Colin Cross4157e882019-06-06 16:57:04 -07001737func (m *ModuleBase) VariablesForTests() map[string]string {
1738 return m.variables
Jaewoong Jung38e4fb22018-12-12 09:01:34 -08001739}
1740
Colin Crossce75d2c2016-10-06 16:12:58 -07001741// Name returns the name of the module. It may be overridden by individual module types, for
1742// example prebuilts will prepend prebuilt_ to the name.
Colin Cross4157e882019-06-06 16:57:04 -07001743func (m *ModuleBase) Name() string {
1744 return String(m.nameProperties.Name)
Colin Crossfc754582016-05-17 16:34:16 -07001745}
1746
Colin Cross9a362232019-07-01 15:32:45 -07001747// String returns a string that includes the module name and variants for printing during debugging.
1748func (m *ModuleBase) String() string {
1749 sb := strings.Builder{}
1750 sb.WriteString(m.commonProperties.DebugName)
1751 sb.WriteString("{")
1752 for i := range m.commonProperties.DebugMutators {
1753 if i != 0 {
1754 sb.WriteString(",")
1755 }
1756 sb.WriteString(m.commonProperties.DebugMutators[i])
1757 sb.WriteString(":")
1758 sb.WriteString(m.commonProperties.DebugVariations[i])
1759 }
1760 sb.WriteString("}")
1761 return sb.String()
1762}
1763
Colin Crossce75d2c2016-10-06 16:12:58 -07001764// BaseModuleName returns the name of the module as specified in the blueprints file.
Colin Cross4157e882019-06-06 16:57:04 -07001765func (m *ModuleBase) BaseModuleName() string {
1766 return String(m.nameProperties.Name)
Colin Crossce75d2c2016-10-06 16:12:58 -07001767}
1768
Colin Cross4157e882019-06-06 16:57:04 -07001769func (m *ModuleBase) base() *ModuleBase {
1770 return m
Colin Cross3f40fa42015-01-30 17:27:36 -08001771}
1772
Paul Duffine2453c72019-05-31 14:00:04 +01001773func (m *ModuleBase) qualifiedModuleId(ctx BaseModuleContext) qualifiedModuleName {
1774 return qualifiedModuleName{pkg: ctx.ModuleDir(), name: ctx.ModuleName()}
1775}
1776
1777func (m *ModuleBase) visibilityProperties() []visibilityProperty {
Paul Duffin63c6e182019-07-24 14:24:38 +01001778 return m.visibilityPropertyInfo
1779}
1780
Jingwen Chen40fd90a2020-06-15 05:24:19 +00001781func (m *ModuleBase) Dists() []Dist {
Paul Duffined875132020-09-02 13:08:57 +01001782 if len(m.distProperties.Dist.Targets) > 0 {
Jingwen Chen40fd90a2020-06-15 05:24:19 +00001783 // Make a copy of the underlying Dists slice to protect against
1784 // backing array modifications with repeated calls to this method.
Paul Duffined875132020-09-02 13:08:57 +01001785 distsCopy := append([]Dist(nil), m.distProperties.Dists...)
1786 return append(distsCopy, m.distProperties.Dist)
Jingwen Chen40fd90a2020-06-15 05:24:19 +00001787 } else {
Paul Duffined875132020-09-02 13:08:57 +01001788 return m.distProperties.Dists
Jingwen Chen40fd90a2020-06-15 05:24:19 +00001789 }
1790}
1791
1792func (m *ModuleBase) GenerateTaggedDistFiles(ctx BaseModuleContext) TaggedDistFiles {
Paul Duffin74f05592020-11-25 16:37:46 +00001793 var distFiles TaggedDistFiles
Jingwen Chen40fd90a2020-06-15 05:24:19 +00001794 for _, dist := range m.Dists() {
Paul Duffin74f05592020-11-25 16:37:46 +00001795 // If no tag is specified then it means to use the default dist paths so use
1796 // the special tag name which represents that.
1797 tag := proptools.StringDefault(dist.Tag, DefaultDistTag)
1798
Paul Duffinaf970a22020-11-23 23:32:56 +00001799 if outputFileProducer, ok := m.module.(OutputFileProducer); ok {
1800 // Call the OutputFiles(tag) method to get the paths associated with the tag.
1801 distFilesForTag, err := outputFileProducer.OutputFiles(tag)
Paul Duffin74f05592020-11-25 16:37:46 +00001802
Paul Duffinaf970a22020-11-23 23:32:56 +00001803 // If the tag was not supported and is not DefaultDistTag then it is an error.
1804 // Failing to find paths for DefaultDistTag is not an error. It just means
1805 // that the module type requires the legacy behavior.
1806 if err != nil && tag != DefaultDistTag {
1807 ctx.PropertyErrorf("dist.tag", "%s", err.Error())
1808 }
1809
1810 distFiles = distFiles.addPathsForTag(tag, distFilesForTag...)
1811 } else if tag != DefaultDistTag {
1812 // If the tag was specified then it is an error if the module does not
1813 // implement OutputFileProducer because there is no other way of accessing
1814 // the paths for the specified tag.
1815 ctx.PropertyErrorf("dist.tag",
1816 "tag %s not supported because the module does not implement OutputFileProducer", tag)
Jingwen Chen40fd90a2020-06-15 05:24:19 +00001817 }
Jingwen Chen40fd90a2020-06-15 05:24:19 +00001818 }
1819
1820 return distFiles
1821}
1822
Colin Cross4157e882019-06-06 16:57:04 -07001823func (m *ModuleBase) Target() Target {
1824 return m.commonProperties.CompileTarget
Dan Willemsen490fd492015-11-24 17:53:15 -08001825}
1826
Colin Cross4157e882019-06-06 16:57:04 -07001827func (m *ModuleBase) TargetPrimary() bool {
1828 return m.commonProperties.CompilePrimary
Colin Cross8b74d172016-09-13 09:59:14 -07001829}
1830
Colin Cross4157e882019-06-06 16:57:04 -07001831func (m *ModuleBase) MultiTargets() []Target {
1832 return m.commonProperties.CompileMultiTargets
Colin Crossee0bc3b2018-10-02 22:01:37 -07001833}
1834
Colin Cross4157e882019-06-06 16:57:04 -07001835func (m *ModuleBase) Os() OsType {
1836 return m.Target().Os
Dan Willemsen490fd492015-11-24 17:53:15 -08001837}
1838
Colin Cross4157e882019-06-06 16:57:04 -07001839func (m *ModuleBase) Host() bool {
Jiyong Park1613e552020-09-14 19:43:17 +09001840 return m.Os().Class == Host
Dan Willemsen97750522016-02-09 17:43:51 -08001841}
1842
Yo Chiangbba545e2020-06-09 16:15:37 +08001843func (m *ModuleBase) Device() bool {
1844 return m.Os().Class == Device
1845}
1846
Colin Cross4157e882019-06-06 16:57:04 -07001847func (m *ModuleBase) Arch() Arch {
1848 return m.Target().Arch
Dan Willemsen97750522016-02-09 17:43:51 -08001849}
1850
Colin Cross4157e882019-06-06 16:57:04 -07001851func (m *ModuleBase) ArchSpecific() bool {
1852 return m.commonProperties.ArchSpecific
Dan Willemsen0b24c742016-10-04 15:13:37 -07001853}
1854
Paul Duffin1356d8c2020-02-25 19:26:33 +00001855// True if the current variant is a CommonOS variant, false otherwise.
1856func (m *ModuleBase) IsCommonOSVariant() bool {
1857 return m.commonProperties.CommonOSVariant
1858}
1859
Colin Cross34037c62020-11-17 13:19:17 -08001860// supportsTarget returns true if the given Target is supported by the current module.
1861func (m *ModuleBase) supportsTarget(target Target) bool {
1862 switch target.Os.Class {
1863 case Host:
1864 if target.HostCross {
1865 return m.HostCrossSupported()
1866 } else {
1867 return m.HostSupported()
Colin Crossa1ad8d12016-06-01 17:09:44 -07001868 }
Colin Cross34037c62020-11-17 13:19:17 -08001869 case Device:
1870 return m.DeviceSupported()
Colin Crossa1ad8d12016-06-01 17:09:44 -07001871 default:
Jiyong Park1613e552020-09-14 19:43:17 +09001872 return false
Colin Crossa1ad8d12016-06-01 17:09:44 -07001873 }
Colin Cross3f40fa42015-01-30 17:27:36 -08001874}
1875
Colin Cross34037c62020-11-17 13:19:17 -08001876// DeviceSupported returns true if the current module is supported and enabled for device targets,
1877// i.e. the factory method set the HostOrDeviceSupported value to include device support and
1878// the device support is enabled by default or enabled by the device_supported property.
Colin Cross4157e882019-06-06 16:57:04 -07001879func (m *ModuleBase) DeviceSupported() bool {
Colin Cross34037c62020-11-17 13:19:17 -08001880 hod := m.commonProperties.HostOrDeviceSupported
1881 // deviceEnabled is true if the device_supported property is true or the HostOrDeviceSupported
1882 // value has the deviceDefault bit set.
1883 deviceEnabled := proptools.BoolDefault(m.hostAndDeviceProperties.Device_supported, hod&deviceDefault != 0)
1884 return hod&deviceSupported != 0 && deviceEnabled
Colin Cross3f40fa42015-01-30 17:27:36 -08001885}
1886
Colin Cross34037c62020-11-17 13:19:17 -08001887// HostSupported returns true if the current module is supported and enabled for host targets,
1888// i.e. the factory method set the HostOrDeviceSupported value to include host support and
1889// the host support is enabled by default or enabled by the host_supported property.
Paul Duffine44358f2019-11-26 18:04:12 +00001890func (m *ModuleBase) HostSupported() bool {
Colin Cross34037c62020-11-17 13:19:17 -08001891 hod := m.commonProperties.HostOrDeviceSupported
1892 // hostEnabled is true if the host_supported property is true or the HostOrDeviceSupported
1893 // value has the hostDefault bit set.
1894 hostEnabled := proptools.BoolDefault(m.hostAndDeviceProperties.Host_supported, hod&hostDefault != 0)
1895 return hod&hostSupported != 0 && hostEnabled
1896}
1897
1898// HostCrossSupported returns true if the current module is supported and enabled for host cross
1899// targets, i.e. the factory method set the HostOrDeviceSupported value to include host cross
1900// support and the host cross support is enabled by default or enabled by the
1901// host_supported property.
1902func (m *ModuleBase) HostCrossSupported() bool {
1903 hod := m.commonProperties.HostOrDeviceSupported
1904 // hostEnabled is true if the host_supported property is true or the HostOrDeviceSupported
1905 // value has the hostDefault bit set.
1906 hostEnabled := proptools.BoolDefault(m.hostAndDeviceProperties.Host_supported, hod&hostDefault != 0)
1907 return hod&hostCrossSupported != 0 && hostEnabled
Paul Duffine44358f2019-11-26 18:04:12 +00001908}
1909
Colin Cross4157e882019-06-06 16:57:04 -07001910func (m *ModuleBase) Platform() bool {
Justin Yund5f6c822019-06-25 16:47:17 +09001911 return !m.DeviceSpecific() && !m.SocSpecific() && !m.ProductSpecific() && !m.SystemExtSpecific()
Jiyong Parkc678ad32018-04-10 13:07:10 +09001912}
1913
Colin Cross4157e882019-06-06 16:57:04 -07001914func (m *ModuleBase) DeviceSpecific() bool {
1915 return Bool(m.commonProperties.Device_specific)
Jiyong Parkc678ad32018-04-10 13:07:10 +09001916}
1917
Colin Cross4157e882019-06-06 16:57:04 -07001918func (m *ModuleBase) SocSpecific() bool {
1919 return Bool(m.commonProperties.Vendor) || Bool(m.commonProperties.Proprietary) || Bool(m.commonProperties.Soc_specific)
Jiyong Parkc678ad32018-04-10 13:07:10 +09001920}
1921
Colin Cross4157e882019-06-06 16:57:04 -07001922func (m *ModuleBase) ProductSpecific() bool {
1923 return Bool(m.commonProperties.Product_specific)
Jiyong Parkc678ad32018-04-10 13:07:10 +09001924}
1925
Justin Yund5f6c822019-06-25 16:47:17 +09001926func (m *ModuleBase) SystemExtSpecific() bool {
1927 return Bool(m.commonProperties.System_ext_specific)
Dario Frenifd05a742018-05-29 13:28:54 +01001928}
1929
Colin Crossc2d24052020-05-13 11:05:02 -07001930// RequiresStableAPIs returns true if the module will be installed to a partition that may
1931// be updated separately from the system image.
1932func (m *ModuleBase) RequiresStableAPIs(ctx BaseModuleContext) bool {
1933 return m.SocSpecific() || m.DeviceSpecific() ||
1934 (m.ProductSpecific() && ctx.Config().EnforceProductPartitionInterface())
1935}
1936
Bill Peckhamfff3f8a2020-03-20 18:33:20 -07001937func (m *ModuleBase) PartitionTag(config DeviceConfig) string {
1938 partition := "system"
1939 if m.SocSpecific() {
1940 // A SoC-specific module could be on the vendor partition at
1941 // "vendor" or the system partition at "system/vendor".
1942 if config.VendorPath() == "vendor" {
1943 partition = "vendor"
1944 }
1945 } else if m.DeviceSpecific() {
1946 // A device-specific module could be on the odm partition at
1947 // "odm", the vendor partition at "vendor/odm", or the system
1948 // partition at "system/vendor/odm".
1949 if config.OdmPath() == "odm" {
1950 partition = "odm"
Ramy Medhat944839a2020-03-31 22:14:52 -04001951 } else if strings.HasPrefix(config.OdmPath(), "vendor/") {
Bill Peckhamfff3f8a2020-03-20 18:33:20 -07001952 partition = "vendor"
1953 }
1954 } else if m.ProductSpecific() {
1955 // A product-specific module could be on the product partition
1956 // at "product" or the system partition at "system/product".
1957 if config.ProductPath() == "product" {
1958 partition = "product"
1959 }
1960 } else if m.SystemExtSpecific() {
1961 // A system_ext-specific module could be on the system_ext
1962 // partition at "system_ext" or the system partition at
1963 // "system/system_ext".
1964 if config.SystemExtPath() == "system_ext" {
1965 partition = "system_ext"
1966 }
1967 }
1968 return partition
1969}
1970
Colin Cross4157e882019-06-06 16:57:04 -07001971func (m *ModuleBase) Enabled() bool {
Justin Yun32f053b2020-07-31 23:07:17 +09001972 if m.commonProperties.ForcedDisabled {
1973 return false
1974 }
Colin Cross08d6f8f2020-11-19 02:33:19 +00001975 if m.commonProperties.Enabled == nil {
1976 return !m.Os().DefaultDisabled
1977 }
1978 return *m.commonProperties.Enabled
Colin Cross3f40fa42015-01-30 17:27:36 -08001979}
1980
Inseob Kimeec88e12020-01-22 11:11:29 +09001981func (m *ModuleBase) Disable() {
Justin Yun32f053b2020-07-31 23:07:17 +09001982 m.commonProperties.ForcedDisabled = true
Inseob Kimeec88e12020-01-22 11:11:29 +09001983}
1984
Colin Crossa9c8c9f2020-12-16 10:20:23 -08001985// HideFromMake marks this variant so that it is not emitted in the generated Android.mk file.
1986func (m *ModuleBase) HideFromMake() {
1987 m.commonProperties.HideFromMake = true
1988}
1989
1990// IsHideFromMake returns true if HideFromMake was previously called.
1991func (m *ModuleBase) IsHideFromMake() bool {
1992 return m.commonProperties.HideFromMake == true
1993}
1994
1995// SkipInstall marks this variant to not create install rules when ctx.Install* are called.
Colin Cross4157e882019-06-06 16:57:04 -07001996func (m *ModuleBase) SkipInstall() {
1997 m.commonProperties.SkipInstall = true
Colin Crossce75d2c2016-10-06 16:12:58 -07001998}
1999
Martin Stjernholm9e7f45e2020-12-23 03:50:30 +00002000// IsSkipInstall returns true if this variant is marked to not create install
2001// rules when ctx.Install* are called.
2002func (m *ModuleBase) IsSkipInstall() bool {
2003 return m.commonProperties.SkipInstall
2004}
2005
Iván Budnik295da162023-03-10 16:11:26 +00002006// Similar to HideFromMake, but if the AndroidMk entry would set
2007// LOCAL_UNINSTALLABLE_MODULE then this variant may still output that entry
2008// rather than leaving it out altogether. That happens in cases where it would
2009// have other side effects, in particular when it adds a NOTICE file target,
2010// which other install targets might depend on.
2011func (m *ModuleBase) MakeUninstallable() {
2012 m.HideFromMake()
2013}
2014
Liz Kammer5ca3a622020-08-05 15:40:41 -07002015func (m *ModuleBase) ReplacedByPrebuilt() {
2016 m.commonProperties.ReplacedByPrebuilt = true
Colin Crossa9c8c9f2020-12-16 10:20:23 -08002017 m.HideFromMake()
Liz Kammer5ca3a622020-08-05 15:40:41 -07002018}
2019
2020func (m *ModuleBase) IsReplacedByPrebuilt() bool {
2021 return m.commonProperties.ReplacedByPrebuilt
2022}
2023
Colin Cross4157e882019-06-06 16:57:04 -07002024func (m *ModuleBase) ExportedToMake() bool {
2025 return m.commonProperties.NamespaceExportedToMake
Jiyong Park374510b2018-03-19 18:23:01 +09002026}
2027
Justin Yun1871f902023-04-07 20:13:19 +09002028func (m *ModuleBase) EffectiveLicenseKinds() []string {
2029 return m.commonProperties.Effective_license_kinds
2030}
2031
Justin Yun885a7de2021-06-29 20:34:53 +09002032func (m *ModuleBase) EffectiveLicenseFiles() Paths {
Bob Badour4101c712022-02-09 11:54:35 -08002033 result := make(Paths, 0, len(m.commonProperties.Effective_license_text))
2034 for _, p := range m.commonProperties.Effective_license_text {
2035 result = append(result, p.Path)
2036 }
2037 return result
Justin Yun885a7de2021-06-29 20:34:53 +09002038}
2039
Colin Crosse9fe2942020-11-10 18:12:15 -08002040// computeInstallDeps finds the installed paths of all dependencies that have a dependency
2041// tag that is annotated as needing installation via the IsInstallDepNeeded method.
Colin Crossffe6b9d2020-12-01 15:40:06 -08002042func (m *ModuleBase) computeInstallDeps(ctx ModuleContext) ([]*installPathsDepSet, []*packagingSpecsDepSet) {
Colin Cross5d583952020-11-24 16:21:24 -08002043 var installDeps []*installPathsDepSet
Colin Crossffe6b9d2020-12-01 15:40:06 -08002044 var packagingSpecs []*packagingSpecsDepSet
Colin Cross5d583952020-11-24 16:21:24 -08002045 ctx.VisitDirectDeps(func(dep Module) {
Jooyung Han8707cd72021-07-23 02:49:46 +09002046 if IsInstallDepNeeded(ctx.OtherModuleDependencyTag(dep)) && !dep.IsHideFromMake() && !dep.IsSkipInstall() {
Colin Cross5d583952020-11-24 16:21:24 -08002047 installDeps = append(installDeps, dep.base().installFilesDepSet)
Colin Crossffe6b9d2020-12-01 15:40:06 -08002048 packagingSpecs = append(packagingSpecs, dep.base().packagingSpecsDepSet)
Colin Cross897266e2020-02-13 13:22:08 -08002049 }
2050 })
Colin Cross3f40fa42015-01-30 17:27:36 -08002051
Colin Crossffe6b9d2020-12-01 15:40:06 -08002052 return installDeps, packagingSpecs
Colin Cross3f40fa42015-01-30 17:27:36 -08002053}
2054
Jiyong Park4dc2a1a2020-09-28 17:46:22 +09002055func (m *ModuleBase) FilesToInstall() InstallPaths {
Colin Cross4157e882019-06-06 16:57:04 -07002056 return m.installFiles
Colin Cross3f40fa42015-01-30 17:27:36 -08002057}
2058
Jiyong Park073ea552020-11-09 14:08:34 +09002059func (m *ModuleBase) PackagingSpecs() []PackagingSpec {
2060 return m.packagingSpecs
2061}
2062
Colin Crossffe6b9d2020-12-01 15:40:06 -08002063func (m *ModuleBase) TransitivePackagingSpecs() []PackagingSpec {
2064 return m.packagingSpecsDepSet.ToList()
2065}
2066
Colin Cross4157e882019-06-06 16:57:04 -07002067func (m *ModuleBase) NoAddressSanitizer() bool {
2068 return m.noAddressSanitizer
Colin Cross3f40fa42015-01-30 17:27:36 -08002069}
2070
Colin Cross4157e882019-06-06 16:57:04 -07002071func (m *ModuleBase) InstallInData() bool {
Dan Willemsen782a2d12015-12-21 14:55:28 -08002072 return false
2073}
2074
Jaewoong Jung0949f312019-09-11 10:25:18 -07002075func (m *ModuleBase) InstallInTestcases() bool {
2076 return false
2077}
2078
Colin Cross4157e882019-06-06 16:57:04 -07002079func (m *ModuleBase) InstallInSanitizerDir() bool {
Vishwath Mohan1dd88392017-03-29 22:00:18 -07002080 return false
2081}
2082
Yifan Hong1b3348d2020-01-21 15:53:22 -08002083func (m *ModuleBase) InstallInRamdisk() bool {
2084 return Bool(m.commonProperties.Ramdisk)
2085}
2086
Yifan Hong60e0cfb2020-10-21 15:17:56 -07002087func (m *ModuleBase) InstallInVendorRamdisk() bool {
2088 return Bool(m.commonProperties.Vendor_ramdisk)
2089}
2090
Inseob Kim08758f02021-04-08 21:13:22 +09002091func (m *ModuleBase) InstallInDebugRamdisk() bool {
2092 return Bool(m.commonProperties.Debug_ramdisk)
2093}
2094
Colin Cross4157e882019-06-06 16:57:04 -07002095func (m *ModuleBase) InstallInRecovery() bool {
2096 return Bool(m.commonProperties.Recovery)
Jiyong Parkf9332f12018-02-01 00:54:12 +09002097}
2098
Kiyoung Kimae11c232021-07-19 11:38:04 +09002099func (m *ModuleBase) InstallInVendor() bool {
Kiyoung Kimf160f7f2022-11-29 10:58:08 +09002100 return Bool(m.commonProperties.Vendor) || Bool(m.commonProperties.Soc_specific) || Bool(m.commonProperties.Proprietary)
Kiyoung Kimae11c232021-07-19 11:38:04 +09002101}
2102
Colin Cross90ba5f42019-10-02 11:10:58 -07002103func (m *ModuleBase) InstallInRoot() bool {
2104 return false
2105}
2106
Jiyong Park87788b52020-09-01 12:37:45 +09002107func (m *ModuleBase) InstallForceOS() (*OsType, *ArchType) {
2108 return nil, nil
Colin Cross6e359402020-02-10 15:29:54 -08002109}
2110
Colin Cross4157e882019-06-06 16:57:04 -07002111func (m *ModuleBase) Owner() string {
2112 return String(m.commonProperties.Owner)
Sundong Ahn4fd04bb2018-08-31 18:01:37 +09002113}
2114
Colin Cross7228ecd2019-11-18 16:00:16 -08002115func (m *ModuleBase) setImageVariation(variant string) {
2116 m.commonProperties.ImageVariation = variant
2117}
2118
2119func (m *ModuleBase) ImageVariation() blueprint.Variation {
2120 return blueprint.Variation{
2121 Mutator: "image",
2122 Variation: m.base().commonProperties.ImageVariation,
2123 }
2124}
2125
Paul Duffin9b76c0b2020-03-12 10:24:35 +00002126func (m *ModuleBase) getVariationByMutatorName(mutator string) string {
2127 for i, v := range m.commonProperties.DebugMutators {
2128 if v == mutator {
2129 return m.commonProperties.DebugVariations[i]
2130 }
2131 }
2132
2133 return ""
2134}
2135
Yifan Hong1b3348d2020-01-21 15:53:22 -08002136func (m *ModuleBase) InRamdisk() bool {
2137 return m.base().commonProperties.ImageVariation == RamdiskVariation
2138}
2139
Yifan Hong60e0cfb2020-10-21 15:17:56 -07002140func (m *ModuleBase) InVendorRamdisk() bool {
2141 return m.base().commonProperties.ImageVariation == VendorRamdiskVariation
2142}
2143
Inseob Kim08758f02021-04-08 21:13:22 +09002144func (m *ModuleBase) InDebugRamdisk() bool {
2145 return m.base().commonProperties.ImageVariation == DebugRamdiskVariation
2146}
2147
Colin Cross7228ecd2019-11-18 16:00:16 -08002148func (m *ModuleBase) InRecovery() bool {
2149 return m.base().commonProperties.ImageVariation == RecoveryVariation
2150}
2151
Jiyong Park6a8cf5f2019-12-30 16:31:09 +09002152func (m *ModuleBase) RequiredModuleNames() []string {
2153 return m.base().commonProperties.Required
2154}
2155
2156func (m *ModuleBase) HostRequiredModuleNames() []string {
2157 return m.base().commonProperties.Host_required
2158}
2159
2160func (m *ModuleBase) TargetRequiredModuleNames() []string {
2161 return m.base().commonProperties.Target_required
2162}
2163
Inseob Kim8471cda2019-11-15 09:59:12 +09002164func (m *ModuleBase) InitRc() Paths {
2165 return append(Paths{}, m.initRcPaths...)
2166}
2167
2168func (m *ModuleBase) VintfFragments() Paths {
2169 return append(Paths{}, m.vintfFragmentsPaths...)
2170}
2171
Yu Liu4ae55d12022-01-05 17:17:23 -08002172func (m *ModuleBase) CompileMultilib() *string {
2173 return m.base().commonProperties.Compile_multilib
2174}
2175
Colin Cross4acaea92021-12-10 23:05:02 +00002176// SetLicenseInstallMap stores the set of dependency module:location mappings for files in an
2177// apex container for use when generation the license metadata file.
2178func (m *ModuleBase) SetLicenseInstallMap(installMap []string) {
2179 m.licenseInstallMap = append(m.licenseInstallMap, installMap...)
2180}
2181
Colin Cross4157e882019-06-06 16:57:04 -07002182func (m *ModuleBase) generateModuleTarget(ctx ModuleContext) {
Colin Cross897266e2020-02-13 13:22:08 -08002183 var allInstalledFiles InstallPaths
2184 var allCheckbuildFiles Paths
Colin Cross0875c522017-11-28 17:34:01 -08002185 ctx.VisitAllModuleVariants(func(module Module) {
2186 a := module.base()
Colin Crossc9404352015-03-26 16:10:12 -07002187 allInstalledFiles = append(allInstalledFiles, a.installFiles...)
Chih-Hung Hsieh80783772021-10-11 16:46:56 -07002188 // A module's -checkbuild phony targets should
Chih-Hung Hsieha3d135b2021-10-14 20:32:53 -07002189 // not be created if the module is not exported to make.
2190 // Those could depend on the build target and fail to compile
2191 // for the current build target.
2192 if !ctx.Config().KatiEnabled() || !shouldSkipAndroidMkProcessing(a) {
2193 allCheckbuildFiles = append(allCheckbuildFiles, a.checkbuildFiles...)
Chih-Hung Hsieha3d135b2021-10-14 20:32:53 -07002194 }
Colin Cross3f40fa42015-01-30 17:27:36 -08002195 })
2196
Colin Cross0875c522017-11-28 17:34:01 -08002197 var deps Paths
Colin Cross9454bfa2015-03-17 13:24:18 -07002198
Colin Cross133ebef2020-08-14 17:38:45 -07002199 namespacePrefix := ctx.Namespace().id
Jeff Gaston088e29e2017-11-29 16:47:17 -08002200 if namespacePrefix != "" {
2201 namespacePrefix = namespacePrefix + "-"
2202 }
2203
Colin Cross3f40fa42015-01-30 17:27:36 -08002204 if len(allInstalledFiles) > 0 {
Colin Crossc3d87d32020-06-04 13:25:17 -07002205 name := namespacePrefix + ctx.ModuleName() + "-install"
2206 ctx.Phony(name, allInstalledFiles.Paths()...)
2207 m.installTarget = PathForPhony(ctx, name)
2208 deps = append(deps, m.installTarget)
Colin Cross9454bfa2015-03-17 13:24:18 -07002209 }
2210
2211 if len(allCheckbuildFiles) > 0 {
Colin Crossc3d87d32020-06-04 13:25:17 -07002212 name := namespacePrefix + ctx.ModuleName() + "-checkbuild"
2213 ctx.Phony(name, allCheckbuildFiles...)
2214 m.checkbuildTarget = PathForPhony(ctx, name)
2215 deps = append(deps, m.checkbuildTarget)
Colin Cross9454bfa2015-03-17 13:24:18 -07002216 }
2217
2218 if len(deps) > 0 {
Dan Willemsen5ba07e82015-12-11 13:51:06 -08002219 suffix := ""
Jingwen Chencda22c92020-11-23 00:22:30 -05002220 if ctx.Config().KatiEnabled() {
Dan Willemsen5ba07e82015-12-11 13:51:06 -08002221 suffix = "-soong"
2222 }
2223
Colin Crossc3d87d32020-06-04 13:25:17 -07002224 ctx.Phony(namespacePrefix+ctx.ModuleName()+suffix, deps...)
Colin Cross1f8c52b2015-06-16 16:38:17 -07002225
Colin Cross4157e882019-06-06 16:57:04 -07002226 m.blueprintDir = ctx.ModuleDir()
Colin Cross3f40fa42015-01-30 17:27:36 -08002227 }
2228}
2229
Colin Crossc34d2322020-01-03 15:23:27 -08002230func determineModuleKind(m *ModuleBase, ctx blueprint.EarlyModuleContext) moduleKind {
Colin Cross4157e882019-06-06 16:57:04 -07002231 var socSpecific = Bool(m.commonProperties.Vendor) || Bool(m.commonProperties.Proprietary) || Bool(m.commonProperties.Soc_specific)
2232 var deviceSpecific = Bool(m.commonProperties.Device_specific)
2233 var productSpecific = Bool(m.commonProperties.Product_specific)
Justin Yund5f6c822019-06-25 16:47:17 +09002234 var systemExtSpecific = Bool(m.commonProperties.System_ext_specific)
Jiyong Park2db76922017-11-08 16:03:48 +09002235
Dario Frenifd05a742018-05-29 13:28:54 +01002236 msg := "conflicting value set here"
2237 if socSpecific && deviceSpecific {
2238 ctx.PropertyErrorf("device_specific", "a module cannot be specific to SoC and device at the same time.")
Colin Cross4157e882019-06-06 16:57:04 -07002239 if Bool(m.commonProperties.Vendor) {
Jiyong Park2db76922017-11-08 16:03:48 +09002240 ctx.PropertyErrorf("vendor", msg)
2241 }
Colin Cross4157e882019-06-06 16:57:04 -07002242 if Bool(m.commonProperties.Proprietary) {
Jiyong Park2db76922017-11-08 16:03:48 +09002243 ctx.PropertyErrorf("proprietary", msg)
2244 }
Colin Cross4157e882019-06-06 16:57:04 -07002245 if Bool(m.commonProperties.Soc_specific) {
Jiyong Park2db76922017-11-08 16:03:48 +09002246 ctx.PropertyErrorf("soc_specific", msg)
2247 }
2248 }
2249
Justin Yund5f6c822019-06-25 16:47:17 +09002250 if productSpecific && systemExtSpecific {
2251 ctx.PropertyErrorf("product_specific", "a module cannot be specific to product and system_ext at the same time.")
2252 ctx.PropertyErrorf("system_ext_specific", msg)
Dario Frenifd05a742018-05-29 13:28:54 +01002253 }
2254
Justin Yund5f6c822019-06-25 16:47:17 +09002255 if (socSpecific || deviceSpecific) && (productSpecific || systemExtSpecific) {
Dario Frenifd05a742018-05-29 13:28:54 +01002256 if productSpecific {
2257 ctx.PropertyErrorf("product_specific", "a module cannot be specific to SoC or device and product at the same time.")
2258 } else {
Justin Yund5f6c822019-06-25 16:47:17 +09002259 ctx.PropertyErrorf("system_ext_specific", "a module cannot be specific to SoC or device and system_ext at the same time.")
Dario Frenifd05a742018-05-29 13:28:54 +01002260 }
2261 if deviceSpecific {
2262 ctx.PropertyErrorf("device_specific", msg)
2263 } else {
Colin Cross4157e882019-06-06 16:57:04 -07002264 if Bool(m.commonProperties.Vendor) {
Dario Frenifd05a742018-05-29 13:28:54 +01002265 ctx.PropertyErrorf("vendor", msg)
2266 }
Colin Cross4157e882019-06-06 16:57:04 -07002267 if Bool(m.commonProperties.Proprietary) {
Dario Frenifd05a742018-05-29 13:28:54 +01002268 ctx.PropertyErrorf("proprietary", msg)
2269 }
Colin Cross4157e882019-06-06 16:57:04 -07002270 if Bool(m.commonProperties.Soc_specific) {
Dario Frenifd05a742018-05-29 13:28:54 +01002271 ctx.PropertyErrorf("soc_specific", msg)
2272 }
2273 }
2274 }
2275
Jiyong Park2db76922017-11-08 16:03:48 +09002276 if productSpecific {
2277 return productSpecificModule
Justin Yund5f6c822019-06-25 16:47:17 +09002278 } else if systemExtSpecific {
2279 return systemExtSpecificModule
Jiyong Park2db76922017-11-08 16:03:48 +09002280 } else if deviceSpecific {
2281 return deviceSpecificModule
2282 } else if socSpecific {
2283 return socSpecificModule
2284 } else {
2285 return platformModule
2286 }
2287}
2288
Colin Crossc34d2322020-01-03 15:23:27 -08002289func (m *ModuleBase) earlyModuleContextFactory(ctx blueprint.EarlyModuleContext) earlyModuleContext {
Colin Cross1184b642019-12-30 18:43:07 -08002290 return earlyModuleContext{
Colin Crossc34d2322020-01-03 15:23:27 -08002291 EarlyModuleContext: ctx,
2292 kind: determineModuleKind(m, ctx),
2293 config: ctx.Config().(Config),
Colin Cross3f40fa42015-01-30 17:27:36 -08002294 }
Colin Cross3f40fa42015-01-30 17:27:36 -08002295}
2296
Colin Cross1184b642019-12-30 18:43:07 -08002297func (m *ModuleBase) baseModuleContextFactory(ctx blueprint.BaseModuleContext) baseModuleContext {
2298 return baseModuleContext{
2299 bp: ctx,
2300 earlyModuleContext: m.earlyModuleContextFactory(ctx),
2301 os: m.commonProperties.CompileOS,
2302 target: m.commonProperties.CompileTarget,
2303 targetPrimary: m.commonProperties.CompilePrimary,
2304 multiTargets: m.commonProperties.CompileMultiTargets,
2305 }
2306}
2307
Colin Cross4157e882019-06-06 16:57:04 -07002308func (m *ModuleBase) GenerateBuildActions(blueprintCtx blueprint.ModuleContext) {
Colin Cross25de6c32019-06-06 14:29:25 -07002309 ctx := &moduleContext{
Colin Cross0ea8ba82019-06-06 14:33:29 -07002310 module: m.module,
Colin Crossdc35e212019-06-06 16:13:11 -07002311 bp: blueprintCtx,
Colin Cross0ea8ba82019-06-06 14:33:29 -07002312 baseModuleContext: m.baseModuleContextFactory(blueprintCtx),
Colin Cross0ea8ba82019-06-06 14:33:29 -07002313 variables: make(map[string]string),
Colin Cross3f40fa42015-01-30 17:27:36 -08002314 }
2315
Colin Crossaa1cab02022-01-28 14:49:24 -08002316 m.licenseMetadataFile = PathForModuleOut(ctx, "meta_lic")
2317
Colin Crossffe6b9d2020-12-01 15:40:06 -08002318 dependencyInstallFiles, dependencyPackagingSpecs := m.computeInstallDeps(ctx)
Colin Cross5d583952020-11-24 16:21:24 -08002319 // set m.installFilesDepSet to only the transitive dependencies to be used as the dependencies
2320 // of installed files of this module. It will be replaced by a depset including the installed
2321 // files of this module at the end for use by modules that depend on this one.
2322 m.installFilesDepSet = newInstallPathsDepSet(nil, dependencyInstallFiles)
2323
Colin Cross6c4f21f2019-06-06 15:41:36 -07002324 // Temporarily continue to call blueprintCtx.GetMissingDependencies() to maintain the previous behavior of never
2325 // reporting missing dependency errors in Blueprint when AllowMissingDependencies == true.
2326 // TODO: This will be removed once defaults modules handle missing dependency errors
2327 blueprintCtx.GetMissingDependencies()
2328
Colin Crossdc35e212019-06-06 16:13:11 -07002329 // For the final GenerateAndroidBuildActions pass, require that all visited dependencies Soong modules and
Paul Duffin1356d8c2020-02-25 19:26:33 +00002330 // are enabled. Unless the module is a CommonOS variant which may have dependencies on disabled variants
2331 // (because the dependencies are added before the modules are disabled). The
2332 // GetOsSpecificVariantsOfCommonOSVariant(...) method will ensure that the disabled variants are
2333 // ignored.
2334 ctx.baseModuleContext.strictVisitDeps = !m.IsCommonOSVariant()
Colin Crossdc35e212019-06-06 16:13:11 -07002335
Colin Cross4c83e5c2019-02-25 14:54:28 -08002336 if ctx.config.captureBuild {
2337 ctx.ruleParams = make(map[blueprint.Rule]blueprint.RuleParams)
2338 }
2339
Colin Cross67a5c132017-05-09 13:45:28 -07002340 desc := "//" + ctx.ModuleDir() + ":" + ctx.ModuleName() + " "
2341 var suffix []string
Colin Cross0875c522017-11-28 17:34:01 -08002342 if ctx.Os().Class != Device && ctx.Os().Class != Generic {
2343 suffix = append(suffix, ctx.Os().String())
Colin Cross67a5c132017-05-09 13:45:28 -07002344 }
Colin Cross0875c522017-11-28 17:34:01 -08002345 if !ctx.PrimaryArch() {
2346 suffix = append(suffix, ctx.Arch().ArchType.String())
Colin Cross67a5c132017-05-09 13:45:28 -07002347 }
Colin Cross56a83212020-09-15 18:30:11 -07002348 if apexInfo := ctx.Provider(ApexInfoProvider).(ApexInfo); !apexInfo.IsForPlatform() {
2349 suffix = append(suffix, apexInfo.ApexVariationName)
Dan Willemsenb13a9482020-02-14 11:25:54 -08002350 }
Colin Cross67a5c132017-05-09 13:45:28 -07002351
2352 ctx.Variable(pctx, "moduleDesc", desc)
2353
2354 s := ""
2355 if len(suffix) > 0 {
2356 s = " [" + strings.Join(suffix, " ") + "]"
2357 }
2358 ctx.Variable(pctx, "moduleDescSuffix", s)
2359
Dan Willemsen569edc52018-11-19 09:33:29 -08002360 // Some common property checks for properties that will be used later in androidmk.go
Paul Duffin89968e32020-11-23 18:17:03 +00002361 checkDistProperties(ctx, "dist", &m.distProperties.Dist)
Sasha Smundake198eaf2022-08-04 13:07:02 -07002362 for i := range m.distProperties.Dists {
Paul Duffin89968e32020-11-23 18:17:03 +00002363 checkDistProperties(ctx, fmt.Sprintf("dists[%d]", i), &m.distProperties.Dists[i])
Dan Willemsen569edc52018-11-19 09:33:29 -08002364 }
2365
Colin Cross4157e882019-06-06 16:57:04 -07002366 if m.Enabled() {
Jooyung Hand48f3c32019-08-23 11:18:57 +09002367 // ensure all direct android.Module deps are enabled
2368 ctx.VisitDirectDepsBlueprint(func(bm blueprint.Module) {
Martin Stjernholm0e4cceb2021-05-13 02:38:35 +01002369 if m, ok := bm.(Module); ok {
2370 ctx.validateAndroidModule(bm, ctx.OtherModuleDependencyTag(m), ctx.baseModuleContext.strictVisitDeps)
Jooyung Hand48f3c32019-08-23 11:18:57 +09002371 }
2372 })
2373
Bob Badour37af0462021-01-07 03:34:31 +00002374 licensesPropertyFlattener(ctx)
2375 if ctx.Failed() {
2376 return
2377 }
2378
Chris Parsonsf874e462022-05-10 13:50:12 -04002379 if mixedBuildMod, handled := m.isHandledByBazel(ctx); handled {
2380 mixedBuildMod.ProcessBazelQueryResponse(ctx)
2381 } else {
2382 m.module.GenerateAndroidBuildActions(ctx)
2383 }
Jaewoong Jung5b425e22019-06-17 17:40:56 -07002384 if ctx.Failed() {
2385 return
2386 }
2387
Jiyong Park4d861072021-03-03 20:02:42 +09002388 m.initRcPaths = PathsForModuleSrc(ctx, m.commonProperties.Init_rc)
2389 rcDir := PathForModuleInstall(ctx, "etc", "init")
2390 for _, src := range m.initRcPaths {
2391 ctx.PackageFile(rcDir, filepath.Base(src.String()), src)
2392 }
2393
2394 m.vintfFragmentsPaths = PathsForModuleSrc(ctx, m.commonProperties.Vintf_fragments)
2395 vintfDir := PathForModuleInstall(ctx, "etc", "vintf", "manifest")
2396 for _, src := range m.vintfFragmentsPaths {
2397 ctx.PackageFile(vintfDir, filepath.Base(src.String()), src)
2398 }
2399
Paul Duffinaf970a22020-11-23 23:32:56 +00002400 // Create the set of tagged dist files after calling GenerateAndroidBuildActions
2401 // as GenerateTaggedDistFiles() calls OutputFiles(tag) and so relies on the
2402 // output paths being set which must be done before or during
2403 // GenerateAndroidBuildActions.
2404 m.distFiles = m.GenerateTaggedDistFiles(ctx)
2405 if ctx.Failed() {
2406 return
2407 }
2408
Jaewoong Jung5b425e22019-06-17 17:40:56 -07002409 m.installFiles = append(m.installFiles, ctx.installFiles...)
2410 m.checkbuildFiles = append(m.checkbuildFiles, ctx.checkbuildFiles...)
Jiyong Park073ea552020-11-09 14:08:34 +09002411 m.packagingSpecs = append(m.packagingSpecs, ctx.packagingSpecs...)
Colin Cross6301c3c2021-09-28 17:40:21 -07002412 m.katiInstalls = append(m.katiInstalls, ctx.katiInstalls...)
2413 m.katiSymlinks = append(m.katiSymlinks, ctx.katiSymlinks...)
Colin Crossdc35e212019-06-06 16:13:11 -07002414 } else if ctx.Config().AllowMissingDependencies() {
2415 // If the module is not enabled it will not create any build rules, nothing will call
2416 // ctx.GetMissingDependencies(), and blueprint will consider the missing dependencies to be unhandled
2417 // and report them as an error even when AllowMissingDependencies = true. Call
2418 // ctx.GetMissingDependencies() here to tell blueprint not to handle them.
2419 ctx.GetMissingDependencies()
Colin Cross3f40fa42015-01-30 17:27:36 -08002420 }
2421
Colin Cross4157e882019-06-06 16:57:04 -07002422 if m == ctx.FinalModule().(Module).base() {
2423 m.generateModuleTarget(ctx)
Colin Cross9b1d13d2016-09-19 15:18:11 -07002424 if ctx.Failed() {
2425 return
2426 }
Colin Cross3f40fa42015-01-30 17:27:36 -08002427 }
Colin Crosscec81712017-07-13 14:43:27 -07002428
Colin Cross5d583952020-11-24 16:21:24 -08002429 m.installFilesDepSet = newInstallPathsDepSet(m.installFiles, dependencyInstallFiles)
Colin Crossffe6b9d2020-12-01 15:40:06 -08002430 m.packagingSpecsDepSet = newPackagingSpecsDepSet(m.packagingSpecs, dependencyPackagingSpecs)
Colin Cross5d583952020-11-24 16:21:24 -08002431
Colin Crossaa1cab02022-01-28 14:49:24 -08002432 buildLicenseMetadata(ctx, m.licenseMetadataFile)
Colin Cross4acaea92021-12-10 23:05:02 +00002433
Colin Cross4157e882019-06-06 16:57:04 -07002434 m.buildParams = ctx.buildParams
2435 m.ruleParams = ctx.ruleParams
2436 m.variables = ctx.variables
Colin Cross3f40fa42015-01-30 17:27:36 -08002437}
2438
Chris Parsonsf874e462022-05-10 13:50:12 -04002439func (m *ModuleBase) isHandledByBazel(ctx ModuleContext) (MixedBuildBuildable, bool) {
Chris Parsonsf874e462022-05-10 13:50:12 -04002440 if mixedBuildMod, ok := m.module.(MixedBuildBuildable); ok {
2441 if mixedBuildMod.IsMixedBuildSupported(ctx) && MixedBuildsEnabled(ctx) {
2442 return mixedBuildMod, true
2443 }
2444 }
2445 return nil, false
2446}
2447
Paul Duffin89968e32020-11-23 18:17:03 +00002448// Check the supplied dist structure to make sure that it is valid.
2449//
2450// property - the base property, e.g. dist or dists[1], which is combined with the
2451// name of the nested property to produce the full property, e.g. dist.dest or
2452// dists[1].dir.
2453func checkDistProperties(ctx *moduleContext, property string, dist *Dist) {
2454 if dist.Dest != nil {
2455 _, err := validateSafePath(*dist.Dest)
2456 if err != nil {
2457 ctx.PropertyErrorf(property+".dest", "%s", err.Error())
2458 }
2459 }
2460 if dist.Dir != nil {
2461 _, err := validateSafePath(*dist.Dir)
2462 if err != nil {
2463 ctx.PropertyErrorf(property+".dir", "%s", err.Error())
2464 }
2465 }
2466 if dist.Suffix != nil {
2467 if strings.Contains(*dist.Suffix, "/") {
2468 ctx.PropertyErrorf(property+".suffix", "Suffix may not contain a '/' character.")
2469 }
2470 }
2471
2472}
2473
Colin Cross1184b642019-12-30 18:43:07 -08002474type earlyModuleContext struct {
Colin Crossc34d2322020-01-03 15:23:27 -08002475 blueprint.EarlyModuleContext
Colin Cross1184b642019-12-30 18:43:07 -08002476
2477 kind moduleKind
2478 config Config
2479}
2480
2481func (e *earlyModuleContext) Glob(globPattern string, excludes []string) Paths {
Liz Kammera830f3a2020-11-10 10:50:34 -08002482 return Glob(e, globPattern, excludes)
Colin Cross1184b642019-12-30 18:43:07 -08002483}
2484
2485func (e *earlyModuleContext) GlobFiles(globPattern string, excludes []string) Paths {
Liz Kammera830f3a2020-11-10 10:50:34 -08002486 return GlobFiles(e, globPattern, excludes)
Colin Cross1184b642019-12-30 18:43:07 -08002487}
2488
Ustaeabf0f32021-12-06 15:17:23 -05002489func (e *earlyModuleContext) IsSymlink(path Path) bool {
2490 fileInfo, err := e.config.fs.Lstat(path.String())
Colin Cross988414c2020-01-11 01:11:46 +00002491 if err != nil {
Ustaeabf0f32021-12-06 15:17:23 -05002492 e.ModuleErrorf("os.Lstat(%q) failed: %s", path.String(), err)
Colin Cross988414c2020-01-11 01:11:46 +00002493 }
2494 return fileInfo.Mode()&os.ModeSymlink == os.ModeSymlink
2495}
2496
Ustaeabf0f32021-12-06 15:17:23 -05002497func (e *earlyModuleContext) Readlink(path Path) string {
2498 dest, err := e.config.fs.Readlink(path.String())
Colin Cross988414c2020-01-11 01:11:46 +00002499 if err != nil {
Ustaeabf0f32021-12-06 15:17:23 -05002500 e.ModuleErrorf("os.Readlink(%q) failed: %s", path.String(), err)
Colin Cross988414c2020-01-11 01:11:46 +00002501 }
2502 return dest
2503}
2504
Colin Cross1184b642019-12-30 18:43:07 -08002505func (e *earlyModuleContext) Module() Module {
Colin Crossc34d2322020-01-03 15:23:27 -08002506 module, _ := e.EarlyModuleContext.Module().(Module)
Colin Cross1184b642019-12-30 18:43:07 -08002507 return module
2508}
2509
2510func (e *earlyModuleContext) Config() Config {
Colin Crossc34d2322020-01-03 15:23:27 -08002511 return e.EarlyModuleContext.Config().(Config)
Colin Cross1184b642019-12-30 18:43:07 -08002512}
2513
2514func (e *earlyModuleContext) AConfig() Config {
2515 return e.config
2516}
2517
2518func (e *earlyModuleContext) DeviceConfig() DeviceConfig {
2519 return DeviceConfig{e.config.deviceConfig}
2520}
2521
2522func (e *earlyModuleContext) Platform() bool {
2523 return e.kind == platformModule
2524}
2525
2526func (e *earlyModuleContext) DeviceSpecific() bool {
2527 return e.kind == deviceSpecificModule
2528}
2529
2530func (e *earlyModuleContext) SocSpecific() bool {
2531 return e.kind == socSpecificModule
2532}
2533
2534func (e *earlyModuleContext) ProductSpecific() bool {
2535 return e.kind == productSpecificModule
2536}
2537
2538func (e *earlyModuleContext) SystemExtSpecific() bool {
2539 return e.kind == systemExtSpecificModule
2540}
2541
Colin Cross133ebef2020-08-14 17:38:45 -07002542func (e *earlyModuleContext) Namespace() *Namespace {
2543 return e.EarlyModuleContext.Namespace().(*Namespace)
2544}
2545
Colin Cross1184b642019-12-30 18:43:07 -08002546type baseModuleContext struct {
2547 bp blueprint.BaseModuleContext
2548 earlyModuleContext
Colin Crossfb0c16e2019-11-20 17:12:35 -08002549 os OsType
Colin Cross8b74d172016-09-13 09:59:14 -07002550 target Target
Colin Crossee0bc3b2018-10-02 22:01:37 -07002551 multiTargets []Target
Colin Cross8b74d172016-09-13 09:59:14 -07002552 targetPrimary bool
2553 debug bool
Colin Crossdc35e212019-06-06 16:13:11 -07002554
2555 walkPath []Module
Paul Duffinc5192442020-03-31 11:31:36 +01002556 tagPath []blueprint.DependencyTag
Colin Crossdc35e212019-06-06 16:13:11 -07002557
2558 strictVisitDeps bool // If true, enforce that all dependencies are enabled
Chris Parsons5a34ffb2021-07-21 14:34:58 -04002559
2560 bazelConversionMode bool
Colin Crossf6566ed2015-03-24 11:13:38 -07002561}
2562
Liz Kammer3bf97bd2022-04-26 09:38:20 -04002563func (b *baseModuleContext) isBazelConversionMode() bool {
Chris Parsons5a34ffb2021-07-21 14:34:58 -04002564 return b.bazelConversionMode
2565}
Paul Duffinca7f0ef2020-02-25 15:50:49 +00002566func (b *baseModuleContext) OtherModuleName(m blueprint.Module) string {
2567 return b.bp.OtherModuleName(m)
2568}
2569func (b *baseModuleContext) OtherModuleDir(m blueprint.Module) string { return b.bp.OtherModuleDir(m) }
Colin Cross1184b642019-12-30 18:43:07 -08002570func (b *baseModuleContext) OtherModuleErrorf(m blueprint.Module, fmt string, args ...interface{}) {
Jooyung Hancd87c692020-02-26 02:05:18 +09002571 b.bp.OtherModuleErrorf(m, fmt, args...)
Colin Cross1184b642019-12-30 18:43:07 -08002572}
2573func (b *baseModuleContext) OtherModuleDependencyTag(m blueprint.Module) blueprint.DependencyTag {
2574 return b.bp.OtherModuleDependencyTag(m)
2575}
Paul Duffinca7f0ef2020-02-25 15:50:49 +00002576func (b *baseModuleContext) OtherModuleExists(name string) bool { return b.bp.OtherModuleExists(name) }
Martin Stjernholm009a9dc2020-03-05 17:34:13 +00002577func (b *baseModuleContext) OtherModuleDependencyVariantExists(variations []blueprint.Variation, name string) bool {
2578 return b.bp.OtherModuleDependencyVariantExists(variations, name)
2579}
Martin Stjernholm408ffd82021-05-05 15:27:31 +01002580func (b *baseModuleContext) OtherModuleFarDependencyVariantExists(variations []blueprint.Variation, name string) bool {
2581 return b.bp.OtherModuleFarDependencyVariantExists(variations, name)
2582}
Martin Stjernholm009a9dc2020-03-05 17:34:13 +00002583func (b *baseModuleContext) OtherModuleReverseDependencyVariantExists(name string) bool {
2584 return b.bp.OtherModuleReverseDependencyVariantExists(name)
2585}
Paul Duffinca7f0ef2020-02-25 15:50:49 +00002586func (b *baseModuleContext) OtherModuleType(m blueprint.Module) string {
2587 return b.bp.OtherModuleType(m)
2588}
Colin Crossd27e7b82020-07-02 11:38:17 -07002589func (b *baseModuleContext) OtherModuleProvider(m blueprint.Module, provider blueprint.ProviderKey) interface{} {
2590 return b.bp.OtherModuleProvider(m, provider)
2591}
2592func (b *baseModuleContext) OtherModuleHasProvider(m blueprint.Module, provider blueprint.ProviderKey) bool {
2593 return b.bp.OtherModuleHasProvider(m, provider)
2594}
2595func (b *baseModuleContext) Provider(provider blueprint.ProviderKey) interface{} {
2596 return b.bp.Provider(provider)
2597}
2598func (b *baseModuleContext) HasProvider(provider blueprint.ProviderKey) bool {
2599 return b.bp.HasProvider(provider)
2600}
2601func (b *baseModuleContext) SetProvider(provider blueprint.ProviderKey, value interface{}) {
2602 b.bp.SetProvider(provider, value)
2603}
Colin Cross1184b642019-12-30 18:43:07 -08002604
2605func (b *baseModuleContext) GetDirectDepWithTag(name string, tag blueprint.DependencyTag) blueprint.Module {
2606 return b.bp.GetDirectDepWithTag(name, tag)
2607}
2608
Paul Duffinf88d8e02020-05-07 20:21:34 +01002609func (b *baseModuleContext) blueprintBaseModuleContext() blueprint.BaseModuleContext {
2610 return b.bp
2611}
2612
Colin Cross25de6c32019-06-06 14:29:25 -07002613type moduleContext struct {
Colin Crossdc35e212019-06-06 16:13:11 -07002614 bp blueprint.ModuleContext
Colin Cross0ea8ba82019-06-06 14:33:29 -07002615 baseModuleContext
Jiyong Park073ea552020-11-09 14:08:34 +09002616 packagingSpecs []PackagingSpec
Colin Cross897266e2020-02-13 13:22:08 -08002617 installFiles InstallPaths
Dan Willemsen34cc69e2015-09-23 15:26:20 -07002618 checkbuildFiles Paths
Colin Cross8d8f8e22016-08-03 11:57:50 -07002619 module Module
Colin Crossc3d87d32020-06-04 13:25:17 -07002620 phonies map[string]Paths
Colin Crosscec81712017-07-13 14:43:27 -07002621
Colin Cross6301c3c2021-09-28 17:40:21 -07002622 katiInstalls []katiInstall
2623 katiSymlinks []katiInstall
2624
Colin Crosscec81712017-07-13 14:43:27 -07002625 // For tests
Colin Crossae887032017-10-23 17:16:14 -07002626 buildParams []BuildParams
Colin Cross4c83e5c2019-02-25 14:54:28 -08002627 ruleParams map[blueprint.Rule]blueprint.RuleParams
Jaewoong Jung38e4fb22018-12-12 09:01:34 -08002628 variables map[string]string
Colin Cross6ff51382015-12-17 16:39:19 -08002629}
2630
Colin Cross6301c3c2021-09-28 17:40:21 -07002631// katiInstall stores a request from Soong to Make to create an install rule.
2632type katiInstall struct {
2633 from Path
2634 to InstallPath
2635 implicitDeps Paths
2636 orderOnlyDeps Paths
2637 executable bool
Colin Cross50ed1f92021-11-12 17:41:02 -08002638 extraFiles *extraFilesZip
Colin Cross6301c3c2021-09-28 17:40:21 -07002639
2640 absFrom string
2641}
2642
Colin Cross50ed1f92021-11-12 17:41:02 -08002643type extraFilesZip struct {
2644 zip Path
2645 dir InstallPath
2646}
2647
Colin Cross6301c3c2021-09-28 17:40:21 -07002648type katiInstalls []katiInstall
2649
2650// BuiltInstalled returns the katiInstalls in the form used by $(call copy-many-files) in Make, a
2651// space separated list of from:to tuples.
2652func (installs katiInstalls) BuiltInstalled() string {
2653 sb := strings.Builder{}
2654 for i, install := range installs {
2655 if i != 0 {
2656 sb.WriteRune(' ')
2657 }
2658 sb.WriteString(install.from.String())
2659 sb.WriteRune(':')
2660 sb.WriteString(install.to.String())
2661 }
2662 return sb.String()
2663}
2664
2665// InstallPaths returns the install path of each entry.
2666func (installs katiInstalls) InstallPaths() InstallPaths {
2667 paths := make(InstallPaths, 0, len(installs))
2668 for _, install := range installs {
2669 paths = append(paths, install.to)
2670 }
2671 return paths
2672}
2673
Colin Crossb88b3c52019-06-10 15:15:17 -07002674func (m *moduleContext) ninjaError(params BuildParams, err error) (PackageContext, BuildParams) {
2675 return pctx, BuildParams{
Colin Cross4b69c492019-06-07 13:06:06 -07002676 Rule: ErrorRule,
2677 Description: params.Description,
2678 Output: params.Output,
2679 Outputs: params.Outputs,
2680 ImplicitOutput: params.ImplicitOutput,
2681 ImplicitOutputs: params.ImplicitOutputs,
Colin Cross6ff51382015-12-17 16:39:19 -08002682 Args: map[string]string{
2683 "error": err.Error(),
2684 },
Colin Crossb88b3c52019-06-10 15:15:17 -07002685 }
Colin Cross3f40fa42015-01-30 17:27:36 -08002686}
2687
Colin Cross25de6c32019-06-06 14:29:25 -07002688func (m *moduleContext) ModuleBuild(pctx PackageContext, params ModuleBuildParams) {
2689 m.Build(pctx, BuildParams(params))
Colin Cross3f40fa42015-01-30 17:27:36 -08002690}
2691
Jingwen Chence679d22020-09-23 04:30:02 +00002692func validateBuildParams(params blueprint.BuildParams) error {
2693 // Validate that the symlink outputs are declared outputs or implicit outputs
2694 allOutputs := map[string]bool{}
2695 for _, output := range params.Outputs {
2696 allOutputs[output] = true
2697 }
2698 for _, output := range params.ImplicitOutputs {
2699 allOutputs[output] = true
2700 }
2701 for _, symlinkOutput := range params.SymlinkOutputs {
2702 if !allOutputs[symlinkOutput] {
2703 return fmt.Errorf(
2704 "Symlink output %s is not a declared output or implicit output",
2705 symlinkOutput)
2706 }
2707 }
2708 return nil
2709}
2710
2711// Convert build parameters from their concrete Android types into their string representations,
2712// and combine the singular and plural fields of the same type (e.g. Output and Outputs).
Colin Cross0875c522017-11-28 17:34:01 -08002713func convertBuildParams(params BuildParams) blueprint.BuildParams {
Dan Willemsen34cc69e2015-09-23 15:26:20 -07002714 bparams := blueprint.BuildParams{
Dan Willemsen9f3c5742016-11-03 14:28:31 -07002715 Rule: params.Rule,
Colin Cross0875c522017-11-28 17:34:01 -08002716 Description: params.Description,
Colin Cross33bfb0a2016-11-21 17:23:08 -08002717 Deps: params.Deps,
Dan Willemsen9f3c5742016-11-03 14:28:31 -07002718 Outputs: params.Outputs.Strings(),
2719 ImplicitOutputs: params.ImplicitOutputs.Strings(),
Jingwen Chence679d22020-09-23 04:30:02 +00002720 SymlinkOutputs: params.SymlinkOutputs.Strings(),
Dan Willemsen9f3c5742016-11-03 14:28:31 -07002721 Inputs: params.Inputs.Strings(),
2722 Implicits: params.Implicits.Strings(),
2723 OrderOnly: params.OrderOnly.Strings(),
Colin Cross824f1162020-07-16 13:07:51 -07002724 Validations: params.Validations.Strings(),
Dan Willemsen9f3c5742016-11-03 14:28:31 -07002725 Args: params.Args,
2726 Optional: !params.Default,
Dan Willemsen34cc69e2015-09-23 15:26:20 -07002727 }
2728
Colin Cross33bfb0a2016-11-21 17:23:08 -08002729 if params.Depfile != nil {
2730 bparams.Depfile = params.Depfile.String()
2731 }
Dan Willemsen34cc69e2015-09-23 15:26:20 -07002732 if params.Output != nil {
2733 bparams.Outputs = append(bparams.Outputs, params.Output.String())
2734 }
Jingwen Chence679d22020-09-23 04:30:02 +00002735 if params.SymlinkOutput != nil {
2736 bparams.SymlinkOutputs = append(bparams.SymlinkOutputs, params.SymlinkOutput.String())
2737 }
Dan Willemsen9f3c5742016-11-03 14:28:31 -07002738 if params.ImplicitOutput != nil {
2739 bparams.ImplicitOutputs = append(bparams.ImplicitOutputs, params.ImplicitOutput.String())
2740 }
Dan Willemsen34cc69e2015-09-23 15:26:20 -07002741 if params.Input != nil {
2742 bparams.Inputs = append(bparams.Inputs, params.Input.String())
2743 }
2744 if params.Implicit != nil {
2745 bparams.Implicits = append(bparams.Implicits, params.Implicit.String())
2746 }
Colin Cross824f1162020-07-16 13:07:51 -07002747 if params.Validation != nil {
2748 bparams.Validations = append(bparams.Validations, params.Validation.String())
2749 }
Dan Willemsen34cc69e2015-09-23 15:26:20 -07002750
Colin Cross0b9f31f2019-02-28 11:00:01 -08002751 bparams.Outputs = proptools.NinjaEscapeList(bparams.Outputs)
2752 bparams.ImplicitOutputs = proptools.NinjaEscapeList(bparams.ImplicitOutputs)
Jingwen Chence679d22020-09-23 04:30:02 +00002753 bparams.SymlinkOutputs = proptools.NinjaEscapeList(bparams.SymlinkOutputs)
Colin Cross0b9f31f2019-02-28 11:00:01 -08002754 bparams.Inputs = proptools.NinjaEscapeList(bparams.Inputs)
2755 bparams.Implicits = proptools.NinjaEscapeList(bparams.Implicits)
2756 bparams.OrderOnly = proptools.NinjaEscapeList(bparams.OrderOnly)
Colin Cross824f1162020-07-16 13:07:51 -07002757 bparams.Validations = proptools.NinjaEscapeList(bparams.Validations)
2758 bparams.Depfile = proptools.NinjaEscape(bparams.Depfile)
Colin Crossfe4bc362018-09-12 10:02:13 -07002759
Colin Cross0875c522017-11-28 17:34:01 -08002760 return bparams
2761}
2762
Colin Cross25de6c32019-06-06 14:29:25 -07002763func (m *moduleContext) Variable(pctx PackageContext, name, value string) {
2764 if m.config.captureBuild {
2765 m.variables[name] = value
Jaewoong Jung38e4fb22018-12-12 09:01:34 -08002766 }
2767
Colin Crossdc35e212019-06-06 16:13:11 -07002768 m.bp.Variable(pctx.PackageContext, name, value)
Colin Cross0875c522017-11-28 17:34:01 -08002769}
2770
Colin Cross25de6c32019-06-06 14:29:25 -07002771func (m *moduleContext) Rule(pctx PackageContext, name string, params blueprint.RuleParams,
Colin Cross0875c522017-11-28 17:34:01 -08002772 argNames ...string) blueprint.Rule {
2773
Ramy Medhat944839a2020-03-31 22:14:52 -04002774 if m.config.UseRemoteBuild() {
2775 if params.Pool == nil {
2776 // When USE_GOMA=true or USE_RBE=true are set and the rule is not supported by goma/RBE, restrict
2777 // jobs to the local parallelism value
2778 params.Pool = localPool
2779 } else if params.Pool == remotePool {
2780 // remotePool is a fake pool used to identify rule that are supported for remoting. If the rule's
2781 // pool is the remotePool, replace with nil so that ninja runs it at NINJA_REMOTE_NUM_JOBS
2782 // parallelism.
2783 params.Pool = nil
2784 }
Colin Cross2e2dbc22019-09-25 13:31:46 -07002785 }
2786
Colin Crossdc35e212019-06-06 16:13:11 -07002787 rule := m.bp.Rule(pctx.PackageContext, name, params, argNames...)
Colin Cross4c83e5c2019-02-25 14:54:28 -08002788
Colin Cross25de6c32019-06-06 14:29:25 -07002789 if m.config.captureBuild {
2790 m.ruleParams[rule] = params
Colin Cross4c83e5c2019-02-25 14:54:28 -08002791 }
2792
2793 return rule
Colin Cross0875c522017-11-28 17:34:01 -08002794}
2795
Colin Cross25de6c32019-06-06 14:29:25 -07002796func (m *moduleContext) Build(pctx PackageContext, params BuildParams) {
Colin Crossb88b3c52019-06-10 15:15:17 -07002797 if params.Description != "" {
2798 params.Description = "${moduleDesc}" + params.Description + "${moduleDescSuffix}"
2799 }
2800
2801 if missingDeps := m.GetMissingDependencies(); len(missingDeps) > 0 {
2802 pctx, params = m.ninjaError(params, fmt.Errorf("module %s missing dependencies: %s\n",
2803 m.ModuleName(), strings.Join(missingDeps, ", ")))
2804 }
2805
Colin Cross25de6c32019-06-06 14:29:25 -07002806 if m.config.captureBuild {
2807 m.buildParams = append(m.buildParams, params)
Colin Cross0875c522017-11-28 17:34:01 -08002808 }
2809
Jingwen Chence679d22020-09-23 04:30:02 +00002810 bparams := convertBuildParams(params)
2811 err := validateBuildParams(bparams)
2812 if err != nil {
2813 m.ModuleErrorf(
2814 "%s: build parameter validation failed: %s",
2815 m.ModuleName(),
2816 err.Error())
2817 }
2818 m.bp.Build(pctx.PackageContext, bparams)
Dan Willemsen34cc69e2015-09-23 15:26:20 -07002819}
Colin Crossc3d87d32020-06-04 13:25:17 -07002820
2821func (m *moduleContext) Phony(name string, deps ...Path) {
2822 addPhony(m.config, name, deps...)
2823}
2824
Colin Cross25de6c32019-06-06 14:29:25 -07002825func (m *moduleContext) GetMissingDependencies() []string {
Colin Cross6c4f21f2019-06-06 15:41:36 -07002826 var missingDeps []string
2827 missingDeps = append(missingDeps, m.Module().base().commonProperties.MissingDeps...)
Colin Crossdc35e212019-06-06 16:13:11 -07002828 missingDeps = append(missingDeps, m.bp.GetMissingDependencies()...)
Colin Cross6c4f21f2019-06-06 15:41:36 -07002829 missingDeps = FirstUniqueStrings(missingDeps)
2830 return missingDeps
Colin Cross6ff51382015-12-17 16:39:19 -08002831}
2832
Colin Crossdc35e212019-06-06 16:13:11 -07002833func (b *baseModuleContext) AddMissingDependencies(deps []string) {
Dan Willemsen6553f5e2016-03-10 18:14:25 -08002834 if deps != nil {
Colin Crossdc35e212019-06-06 16:13:11 -07002835 missingDeps := &b.Module().base().commonProperties.MissingDeps
Colin Cross6c4f21f2019-06-06 15:41:36 -07002836 *missingDeps = append(*missingDeps, deps...)
2837 *missingDeps = FirstUniqueStrings(*missingDeps)
Dan Willemsen6553f5e2016-03-10 18:14:25 -08002838 }
2839}
2840
Martin Stjernholm0e4cceb2021-05-13 02:38:35 +01002841type AllowDisabledModuleDependency interface {
2842 blueprint.DependencyTag
2843 AllowDisabledModuleDependency(target Module) bool
2844}
2845
2846func (b *baseModuleContext) validateAndroidModule(module blueprint.Module, tag blueprint.DependencyTag, strict bool) Module {
Colin Crossd11fcda2017-10-23 17:59:01 -07002847 aModule, _ := module.(Module)
Colin Crossdc35e212019-06-06 16:13:11 -07002848
2849 if !strict {
2850 return aModule
2851 }
2852
Colin Cross380c69a2019-06-10 17:49:58 +00002853 if aModule == nil {
Liz Kammer55146982022-01-24 16:17:30 -05002854 b.ModuleErrorf("module %q (%#v) not an android module", b.OtherModuleName(module), tag)
Colin Cross380c69a2019-06-10 17:49:58 +00002855 return nil
2856 }
2857
2858 if !aModule.Enabled() {
Martin Stjernholm0e4cceb2021-05-13 02:38:35 +01002859 if t, ok := tag.(AllowDisabledModuleDependency); !ok || !t.AllowDisabledModuleDependency(aModule) {
2860 if b.Config().AllowMissingDependencies() {
2861 b.AddMissingDependencies([]string{b.OtherModuleName(aModule)})
2862 } else {
2863 b.ModuleErrorf("depends on disabled module %q", b.OtherModuleName(aModule))
2864 }
Colin Cross380c69a2019-06-10 17:49:58 +00002865 }
2866 return nil
2867 }
Colin Crossd11fcda2017-10-23 17:59:01 -07002868 return aModule
2869}
2870
Liz Kammer2b50ce62021-04-26 15:47:28 -04002871type dep struct {
2872 mod blueprint.Module
2873 tag blueprint.DependencyTag
2874}
2875
2876func (b *baseModuleContext) getDirectDepsInternal(name string, tag blueprint.DependencyTag) []dep {
Jiyong Parkf2976302019-04-17 21:47:37 +09002877 var deps []dep
Colin Crossdc35e212019-06-06 16:13:11 -07002878 b.VisitDirectDepsBlueprint(func(module blueprint.Module) {
Liz Kammer356f7d42021-01-26 09:18:53 -05002879 if aModule, _ := module.(Module); aModule != nil {
2880 if aModule.base().BaseModuleName() == name {
2881 returnedTag := b.bp.OtherModuleDependencyTag(aModule)
2882 if tag == nil || returnedTag == tag {
2883 deps = append(deps, dep{aModule, returnedTag})
2884 }
2885 }
2886 } else if b.bp.OtherModuleName(module) == name {
2887 returnedTag := b.bp.OtherModuleDependencyTag(module)
Jiyong Parkf2976302019-04-17 21:47:37 +09002888 if tag == nil || returnedTag == tag {
Liz Kammer356f7d42021-01-26 09:18:53 -05002889 deps = append(deps, dep{module, returnedTag})
Jiyong Parkf2976302019-04-17 21:47:37 +09002890 }
2891 }
2892 })
Liz Kammer2b50ce62021-04-26 15:47:28 -04002893 return deps
2894}
2895
2896func (b *baseModuleContext) getDirectDepInternal(name string, tag blueprint.DependencyTag) (blueprint.Module, blueprint.DependencyTag) {
2897 deps := b.getDirectDepsInternal(name, tag)
Jiyong Parkf2976302019-04-17 21:47:37 +09002898 if len(deps) == 1 {
2899 return deps[0].mod, deps[0].tag
2900 } else if len(deps) >= 2 {
2901 panic(fmt.Errorf("Multiple dependencies having same BaseModuleName() %q found from %q",
Colin Crossdc35e212019-06-06 16:13:11 -07002902 name, b.ModuleName()))
Jiyong Parkf2976302019-04-17 21:47:37 +09002903 } else {
2904 return nil, nil
2905 }
2906}
2907
Liz Kammer2b50ce62021-04-26 15:47:28 -04002908func (b *baseModuleContext) getDirectDepFirstTag(name string) (blueprint.Module, blueprint.DependencyTag) {
2909 foundDeps := b.getDirectDepsInternal(name, nil)
2910 deps := map[blueprint.Module]bool{}
2911 for _, dep := range foundDeps {
2912 deps[dep.mod] = true
2913 }
2914 if len(deps) == 1 {
2915 return foundDeps[0].mod, foundDeps[0].tag
2916 } else if len(deps) >= 2 {
2917 // this could happen if two dependencies have the same name in different namespaces
2918 // TODO(b/186554727): this should not occur if namespaces are handled within
2919 // getDirectDepsInternal.
2920 panic(fmt.Errorf("Multiple dependencies having same BaseModuleName() %q found from %q",
2921 name, b.ModuleName()))
2922 } else {
2923 return nil, nil
2924 }
2925}
2926
Colin Crossdc35e212019-06-06 16:13:11 -07002927func (b *baseModuleContext) GetDirectDepsWithTag(tag blueprint.DependencyTag) []Module {
Colin Cross0ef08162019-05-01 15:50:51 -07002928 var deps []Module
Colin Crossdc35e212019-06-06 16:13:11 -07002929 b.VisitDirectDepsBlueprint(func(module blueprint.Module) {
Colin Cross25de6c32019-06-06 14:29:25 -07002930 if aModule, _ := module.(Module); aModule != nil {
Colin Cross1184b642019-12-30 18:43:07 -08002931 if b.bp.OtherModuleDependencyTag(aModule) == tag {
Colin Cross0ef08162019-05-01 15:50:51 -07002932 deps = append(deps, aModule)
2933 }
2934 }
2935 })
2936 return deps
2937}
2938
Colin Cross25de6c32019-06-06 14:29:25 -07002939func (m *moduleContext) GetDirectDepWithTag(name string, tag blueprint.DependencyTag) blueprint.Module {
2940 module, _ := m.getDirectDepInternal(name, tag)
2941 return module
Jiyong Parkf2976302019-04-17 21:47:37 +09002942}
2943
Liz Kammer2b50ce62021-04-26 15:47:28 -04002944// GetDirectDep returns the Module and DependencyTag for the direct dependency with the specified
2945// name, or nil if none exists. If there are multiple dependencies on the same module it returns the
2946// first DependencyTag.
Colin Crossdc35e212019-06-06 16:13:11 -07002947func (b *baseModuleContext) GetDirectDep(name string) (blueprint.Module, blueprint.DependencyTag) {
Liz Kammer2b50ce62021-04-26 15:47:28 -04002948 return b.getDirectDepFirstTag(name)
Jiyong Parkf2976302019-04-17 21:47:37 +09002949}
2950
Chris Parsons5a34ffb2021-07-21 14:34:58 -04002951func (b *baseModuleContext) ModuleFromName(name string) (blueprint.Module, bool) {
Liz Kammer3bf97bd2022-04-26 09:38:20 -04002952 if !b.isBazelConversionMode() {
Chris Parsons5a34ffb2021-07-21 14:34:58 -04002953 panic("cannot call ModuleFromName if not in bazel conversion mode")
2954 }
Chris Parsonsa66c0b52021-07-23 11:02:07 -04002955 if moduleName, _ := SrcIsModuleWithTag(name); moduleName != "" {
Chris Parsons5a34ffb2021-07-21 14:34:58 -04002956 return b.bp.ModuleFromName(moduleName)
2957 } else {
2958 return b.bp.ModuleFromName(name)
2959 }
2960}
2961
Colin Crossdc35e212019-06-06 16:13:11 -07002962func (b *baseModuleContext) VisitDirectDepsBlueprint(visit func(blueprint.Module)) {
Colin Cross1184b642019-12-30 18:43:07 -08002963 b.bp.VisitDirectDeps(visit)
Colin Cross35143d02017-11-16 00:11:20 -08002964}
2965
Colin Crossdc35e212019-06-06 16:13:11 -07002966func (b *baseModuleContext) VisitDirectDeps(visit func(Module)) {
Colin Cross1184b642019-12-30 18:43:07 -08002967 b.bp.VisitDirectDeps(func(module blueprint.Module) {
Martin Stjernholm0e4cceb2021-05-13 02:38:35 +01002968 if aModule := b.validateAndroidModule(module, b.bp.OtherModuleDependencyTag(module), b.strictVisitDeps); aModule != nil {
Colin Crossd11fcda2017-10-23 17:59:01 -07002969 visit(aModule)
2970 }
2971 })
2972}
2973
Colin Crossdc35e212019-06-06 16:13:11 -07002974func (b *baseModuleContext) VisitDirectDepsWithTag(tag blueprint.DependencyTag, visit func(Module)) {
Colin Cross1184b642019-12-30 18:43:07 -08002975 b.bp.VisitDirectDeps(func(module blueprint.Module) {
Liz Kammer55146982022-01-24 16:17:30 -05002976 if b.bp.OtherModuleDependencyTag(module) == tag {
2977 if aModule := b.validateAndroidModule(module, b.bp.OtherModuleDependencyTag(module), b.strictVisitDeps); aModule != nil {
Colin Crossee6143c2017-12-30 17:54:27 -08002978 visit(aModule)
2979 }
2980 }
2981 })
2982}
2983
Colin Crossdc35e212019-06-06 16:13:11 -07002984func (b *baseModuleContext) VisitDirectDepsIf(pred func(Module) bool, visit func(Module)) {
Colin Cross1184b642019-12-30 18:43:07 -08002985 b.bp.VisitDirectDepsIf(
Colin Crossd11fcda2017-10-23 17:59:01 -07002986 // pred
2987 func(module blueprint.Module) bool {
Martin Stjernholm0e4cceb2021-05-13 02:38:35 +01002988 if aModule := b.validateAndroidModule(module, b.bp.OtherModuleDependencyTag(module), b.strictVisitDeps); aModule != nil {
Colin Crossd11fcda2017-10-23 17:59:01 -07002989 return pred(aModule)
2990 } else {
2991 return false
2992 }
2993 },
2994 // visit
2995 func(module blueprint.Module) {
2996 visit(module.(Module))
2997 })
2998}
2999
Colin Crossdc35e212019-06-06 16:13:11 -07003000func (b *baseModuleContext) VisitDepsDepthFirst(visit func(Module)) {
Colin Cross1184b642019-12-30 18:43:07 -08003001 b.bp.VisitDepsDepthFirst(func(module blueprint.Module) {
Martin Stjernholm0e4cceb2021-05-13 02:38:35 +01003002 if aModule := b.validateAndroidModule(module, b.bp.OtherModuleDependencyTag(module), b.strictVisitDeps); aModule != nil {
Colin Crossd11fcda2017-10-23 17:59:01 -07003003 visit(aModule)
3004 }
3005 })
3006}
3007
Colin Crossdc35e212019-06-06 16:13:11 -07003008func (b *baseModuleContext) VisitDepsDepthFirstIf(pred func(Module) bool, visit func(Module)) {
Colin Cross1184b642019-12-30 18:43:07 -08003009 b.bp.VisitDepsDepthFirstIf(
Colin Crossd11fcda2017-10-23 17:59:01 -07003010 // pred
3011 func(module blueprint.Module) bool {
Martin Stjernholm0e4cceb2021-05-13 02:38:35 +01003012 if aModule := b.validateAndroidModule(module, b.bp.OtherModuleDependencyTag(module), b.strictVisitDeps); aModule != nil {
Colin Crossd11fcda2017-10-23 17:59:01 -07003013 return pred(aModule)
3014 } else {
3015 return false
3016 }
3017 },
3018 // visit
3019 func(module blueprint.Module) {
3020 visit(module.(Module))
3021 })
3022}
3023
Colin Crossdc35e212019-06-06 16:13:11 -07003024func (b *baseModuleContext) WalkDepsBlueprint(visit func(blueprint.Module, blueprint.Module) bool) {
Colin Cross1184b642019-12-30 18:43:07 -08003025 b.bp.WalkDeps(visit)
Alex Light778127a2019-02-27 14:19:50 -08003026}
3027
Colin Crossdc35e212019-06-06 16:13:11 -07003028func (b *baseModuleContext) WalkDeps(visit func(Module, Module) bool) {
3029 b.walkPath = []Module{b.Module()}
Paul Duffinc5192442020-03-31 11:31:36 +01003030 b.tagPath = []blueprint.DependencyTag{}
Colin Cross1184b642019-12-30 18:43:07 -08003031 b.bp.WalkDeps(func(child, parent blueprint.Module) bool {
Colin Crossdc35e212019-06-06 16:13:11 -07003032 childAndroidModule, _ := child.(Module)
3033 parentAndroidModule, _ := parent.(Module)
Colin Crossd11fcda2017-10-23 17:59:01 -07003034 if childAndroidModule != nil && parentAndroidModule != nil {
Colin Crossdc35e212019-06-06 16:13:11 -07003035 // record walkPath before visit
3036 for b.walkPath[len(b.walkPath)-1] != parentAndroidModule {
3037 b.walkPath = b.walkPath[0 : len(b.walkPath)-1]
Paul Duffinc5192442020-03-31 11:31:36 +01003038 b.tagPath = b.tagPath[0 : len(b.tagPath)-1]
Colin Crossdc35e212019-06-06 16:13:11 -07003039 }
3040 b.walkPath = append(b.walkPath, childAndroidModule)
Paul Duffinc5192442020-03-31 11:31:36 +01003041 b.tagPath = append(b.tagPath, b.OtherModuleDependencyTag(childAndroidModule))
Colin Crossd11fcda2017-10-23 17:59:01 -07003042 return visit(childAndroidModule, parentAndroidModule)
3043 } else {
3044 return false
3045 }
3046 })
3047}
3048
Colin Crossdc35e212019-06-06 16:13:11 -07003049func (b *baseModuleContext) GetWalkPath() []Module {
3050 return b.walkPath
3051}
3052
Paul Duffinc5192442020-03-31 11:31:36 +01003053func (b *baseModuleContext) GetTagPath() []blueprint.DependencyTag {
3054 return b.tagPath
3055}
3056
Colin Cross4dfacf92020-09-16 19:22:27 -07003057func (b *baseModuleContext) VisitAllModuleVariants(visit func(Module)) {
3058 b.bp.VisitAllModuleVariants(func(module blueprint.Module) {
3059 visit(module.(Module))
3060 })
3061}
3062
3063func (b *baseModuleContext) PrimaryModule() Module {
3064 return b.bp.PrimaryModule().(Module)
3065}
3066
3067func (b *baseModuleContext) FinalModule() Module {
3068 return b.bp.FinalModule().(Module)
3069}
3070
Bob Badour07065cd2021-02-05 19:59:11 -08003071// IsMetaDependencyTag returns true for cross-cutting metadata dependencies.
3072func IsMetaDependencyTag(tag blueprint.DependencyTag) bool {
3073 if tag == licenseKindTag {
3074 return true
3075 } else if tag == licensesTag {
3076 return true
3077 }
3078 return false
3079}
3080
Jiyong Park1c7e9622020-05-07 16:12:13 +09003081// A regexp for removing boilerplate from BaseDependencyTag from the string representation of
3082// a dependency tag.
Colin Cross6e511a92020-07-27 21:26:48 -07003083var tagCleaner = regexp.MustCompile(`\QBaseDependencyTag:{}\E(, )?`)
Jiyong Park1c7e9622020-05-07 16:12:13 +09003084
3085// PrettyPrintTag returns string representation of the tag, but prefers
3086// custom String() method if available.
3087func PrettyPrintTag(tag blueprint.DependencyTag) string {
3088 // Use tag's custom String() method if available.
3089 if stringer, ok := tag.(fmt.Stringer); ok {
3090 return stringer.String()
3091 }
3092
3093 // Otherwise, get a default string representation of the tag's struct.
Colin Cross6e511a92020-07-27 21:26:48 -07003094 tagString := fmt.Sprintf("%T: %+v", tag, tag)
Jiyong Park1c7e9622020-05-07 16:12:13 +09003095
3096 // Remove the boilerplate from BaseDependencyTag as it adds no value.
3097 tagString = tagCleaner.ReplaceAllString(tagString, "")
3098 return tagString
3099}
3100
3101func (b *baseModuleContext) GetPathString(skipFirst bool) string {
3102 sb := strings.Builder{}
3103 tagPath := b.GetTagPath()
3104 walkPath := b.GetWalkPath()
3105 if !skipFirst {
3106 sb.WriteString(walkPath[0].String())
3107 }
3108 for i, m := range walkPath[1:] {
3109 sb.WriteString("\n")
3110 sb.WriteString(fmt.Sprintf(" via tag %s\n", PrettyPrintTag(tagPath[i])))
3111 sb.WriteString(fmt.Sprintf(" -> %s", m.String()))
3112 }
3113 return sb.String()
3114}
3115
Colin Crossdc35e212019-06-06 16:13:11 -07003116func (m *moduleContext) ModuleSubDir() string {
3117 return m.bp.ModuleSubDir()
Colin Cross0875c522017-11-28 17:34:01 -08003118}
3119
Colin Cross0ea8ba82019-06-06 14:33:29 -07003120func (b *baseModuleContext) Target() Target {
Colin Cross25de6c32019-06-06 14:29:25 -07003121 return b.target
Colin Crossa1ad8d12016-06-01 17:09:44 -07003122}
3123
Colin Cross0ea8ba82019-06-06 14:33:29 -07003124func (b *baseModuleContext) TargetPrimary() bool {
Colin Cross25de6c32019-06-06 14:29:25 -07003125 return b.targetPrimary
Colin Cross8b74d172016-09-13 09:59:14 -07003126}
3127
Colin Cross0ea8ba82019-06-06 14:33:29 -07003128func (b *baseModuleContext) MultiTargets() []Target {
Colin Cross25de6c32019-06-06 14:29:25 -07003129 return b.multiTargets
Colin Crossee0bc3b2018-10-02 22:01:37 -07003130}
3131
Colin Cross0ea8ba82019-06-06 14:33:29 -07003132func (b *baseModuleContext) Arch() Arch {
Colin Cross25de6c32019-06-06 14:29:25 -07003133 return b.target.Arch
Colin Cross3f40fa42015-01-30 17:27:36 -08003134}
3135
Colin Cross0ea8ba82019-06-06 14:33:29 -07003136func (b *baseModuleContext) Os() OsType {
Colin Crossfb0c16e2019-11-20 17:12:35 -08003137 return b.os
Dan Willemsen490fd492015-11-24 17:53:15 -08003138}
3139
Colin Cross0ea8ba82019-06-06 14:33:29 -07003140func (b *baseModuleContext) Host() bool {
Jiyong Park1613e552020-09-14 19:43:17 +09003141 return b.os.Class == Host
Colin Crossf6566ed2015-03-24 11:13:38 -07003142}
3143
Colin Cross0ea8ba82019-06-06 14:33:29 -07003144func (b *baseModuleContext) Device() bool {
Colin Crossfb0c16e2019-11-20 17:12:35 -08003145 return b.os.Class == Device
Colin Crossf6566ed2015-03-24 11:13:38 -07003146}
3147
Colin Cross0ea8ba82019-06-06 14:33:29 -07003148func (b *baseModuleContext) Darwin() bool {
Colin Crossfb0c16e2019-11-20 17:12:35 -08003149 return b.os == Darwin
Colin Cross0af4b842015-04-30 16:36:18 -07003150}
3151
Colin Cross0ea8ba82019-06-06 14:33:29 -07003152func (b *baseModuleContext) Windows() bool {
Colin Crossfb0c16e2019-11-20 17:12:35 -08003153 return b.os == Windows
Colin Cross3edeee12017-04-04 12:59:48 -07003154}
3155
Colin Cross0ea8ba82019-06-06 14:33:29 -07003156func (b *baseModuleContext) Debug() bool {
Colin Cross25de6c32019-06-06 14:29:25 -07003157 return b.debug
Colin Crossf6566ed2015-03-24 11:13:38 -07003158}
3159
Colin Cross0ea8ba82019-06-06 14:33:29 -07003160func (b *baseModuleContext) PrimaryArch() bool {
Colin Cross25de6c32019-06-06 14:29:25 -07003161 if len(b.config.Targets[b.target.Os]) <= 1 {
Colin Cross67a5c132017-05-09 13:45:28 -07003162 return true
3163 }
Colin Cross25de6c32019-06-06 14:29:25 -07003164 return b.target.Arch.ArchType == b.config.Targets[b.target.Os][0].Arch.ArchType
Colin Cross1e7d3702016-08-24 15:25:47 -07003165}
3166
Jiyong Park5baac542018-08-28 09:55:37 +09003167// Makes this module a platform module, i.e. not specific to soc, device,
Justin Yund5f6c822019-06-25 16:47:17 +09003168// product, or system_ext.
Colin Cross4157e882019-06-06 16:57:04 -07003169func (m *ModuleBase) MakeAsPlatform() {
3170 m.commonProperties.Vendor = boolPtr(false)
3171 m.commonProperties.Proprietary = boolPtr(false)
3172 m.commonProperties.Soc_specific = boolPtr(false)
3173 m.commonProperties.Product_specific = boolPtr(false)
Justin Yund5f6c822019-06-25 16:47:17 +09003174 m.commonProperties.System_ext_specific = boolPtr(false)
Jiyong Park5baac542018-08-28 09:55:37 +09003175}
3176
Sundong Ahnd95aa2d2019-10-08 19:34:03 +09003177func (m *ModuleBase) MakeAsSystemExt() {
Jooyung Han91df2082019-11-20 01:49:42 +09003178 m.commonProperties.Vendor = boolPtr(false)
3179 m.commonProperties.Proprietary = boolPtr(false)
3180 m.commonProperties.Soc_specific = boolPtr(false)
3181 m.commonProperties.Product_specific = boolPtr(false)
3182 m.commonProperties.System_ext_specific = boolPtr(true)
Sundong Ahnd95aa2d2019-10-08 19:34:03 +09003183}
3184
Jooyung Han344d5432019-08-23 11:17:39 +09003185// IsNativeBridgeSupported returns true if "native_bridge_supported" is explicitly set as "true"
3186func (m *ModuleBase) IsNativeBridgeSupported() bool {
3187 return proptools.Bool(m.commonProperties.Native_bridge_supported)
3188}
3189
Colin Cross25de6c32019-06-06 14:29:25 -07003190func (m *moduleContext) InstallInData() bool {
3191 return m.module.InstallInData()
Dan Willemsen782a2d12015-12-21 14:55:28 -08003192}
3193
Jaewoong Jung0949f312019-09-11 10:25:18 -07003194func (m *moduleContext) InstallInTestcases() bool {
3195 return m.module.InstallInTestcases()
3196}
3197
Colin Cross25de6c32019-06-06 14:29:25 -07003198func (m *moduleContext) InstallInSanitizerDir() bool {
3199 return m.module.InstallInSanitizerDir()
Vishwath Mohan1dd88392017-03-29 22:00:18 -07003200}
3201
Yifan Hong1b3348d2020-01-21 15:53:22 -08003202func (m *moduleContext) InstallInRamdisk() bool {
3203 return m.module.InstallInRamdisk()
3204}
3205
Yifan Hong60e0cfb2020-10-21 15:17:56 -07003206func (m *moduleContext) InstallInVendorRamdisk() bool {
3207 return m.module.InstallInVendorRamdisk()
3208}
3209
Inseob Kim08758f02021-04-08 21:13:22 +09003210func (m *moduleContext) InstallInDebugRamdisk() bool {
3211 return m.module.InstallInDebugRamdisk()
3212}
3213
Colin Cross25de6c32019-06-06 14:29:25 -07003214func (m *moduleContext) InstallInRecovery() bool {
3215 return m.module.InstallInRecovery()
Jiyong Parkf9332f12018-02-01 00:54:12 +09003216}
3217
Colin Cross90ba5f42019-10-02 11:10:58 -07003218func (m *moduleContext) InstallInRoot() bool {
3219 return m.module.InstallInRoot()
3220}
3221
Jiyong Park87788b52020-09-01 12:37:45 +09003222func (m *moduleContext) InstallForceOS() (*OsType, *ArchType) {
Colin Cross6e359402020-02-10 15:29:54 -08003223 return m.module.InstallForceOS()
3224}
3225
Kiyoung Kimae11c232021-07-19 11:38:04 +09003226func (m *moduleContext) InstallInVendor() bool {
3227 return m.module.InstallInVendor()
3228}
3229
Colin Crossa9c8c9f2020-12-16 10:20:23 -08003230func (m *moduleContext) skipInstall() bool {
Colin Cross25de6c32019-06-06 14:29:25 -07003231 if m.module.base().commonProperties.SkipInstall {
Colin Cross893d8162017-04-26 17:34:03 -07003232 return true
3233 }
3234
Colin Crossa9c8c9f2020-12-16 10:20:23 -08003235 if m.module.base().commonProperties.HideFromMake {
3236 return true
3237 }
3238
Colin Cross3607f212018-05-07 15:28:05 -07003239 // We'll need a solution for choosing which of modules with the same name in different
3240 // namespaces to install. For now, reuse the list of namespaces exported to Make as the
3241 // list of namespaces to install in a Soong-only build.
Colin Cross25de6c32019-06-06 14:29:25 -07003242 if !m.module.base().commonProperties.NamespaceExportedToMake {
Colin Cross3607f212018-05-07 15:28:05 -07003243 return true
3244 }
3245
Colin Cross893d8162017-04-26 17:34:03 -07003246 return false
3247}
3248
Colin Cross70dda7e2019-10-01 22:05:35 -07003249func (m *moduleContext) InstallFile(installPath InstallPath, name string, srcPath Path,
3250 deps ...Path) InstallPath {
Colin Cross50ed1f92021-11-12 17:41:02 -08003251 return m.installFile(installPath, name, srcPath, deps, false, nil)
Colin Cross5c517922017-08-31 12:29:17 -07003252}
3253
Colin Cross70dda7e2019-10-01 22:05:35 -07003254func (m *moduleContext) InstallExecutable(installPath InstallPath, name string, srcPath Path,
3255 deps ...Path) InstallPath {
Colin Cross50ed1f92021-11-12 17:41:02 -08003256 return m.installFile(installPath, name, srcPath, deps, true, nil)
3257}
3258
3259func (m *moduleContext) InstallFileWithExtraFilesZip(installPath InstallPath, name string, srcPath Path,
3260 extraZip Path, deps ...Path) InstallPath {
3261 return m.installFile(installPath, name, srcPath, deps, false, &extraFilesZip{
3262 zip: extraZip,
3263 dir: installPath,
3264 })
Colin Cross5c517922017-08-31 12:29:17 -07003265}
3266
Colin Cross41589502020-12-01 14:00:21 -08003267func (m *moduleContext) PackageFile(installPath InstallPath, name string, srcPath Path) PackagingSpec {
3268 fullInstallPath := installPath.Join(m, name)
3269 return m.packageFile(fullInstallPath, srcPath, false)
3270}
3271
3272func (m *moduleContext) packageFile(fullInstallPath InstallPath, srcPath Path, executable bool) PackagingSpec {
Dan Willemsen9fe14102021-07-13 21:52:04 -07003273 licenseFiles := m.Module().EffectiveLicenseFiles()
Colin Cross41589502020-12-01 14:00:21 -08003274 spec := PackagingSpec{
Dan Willemsen9fe14102021-07-13 21:52:04 -07003275 relPathInPackage: Rel(m, fullInstallPath.PartitionDir(), fullInstallPath.String()),
3276 srcPath: srcPath,
3277 symlinkTarget: "",
3278 executable: executable,
3279 effectiveLicenseFiles: &licenseFiles,
Jooyung Han99c5fe62022-03-21 15:13:38 +09003280 partition: fullInstallPath.partition,
Colin Cross41589502020-12-01 14:00:21 -08003281 }
3282 m.packagingSpecs = append(m.packagingSpecs, spec)
3283 return spec
3284}
3285
Colin Cross50ed1f92021-11-12 17:41:02 -08003286func (m *moduleContext) installFile(installPath InstallPath, name string, srcPath Path, deps []Path,
3287 executable bool, extraZip *extraFilesZip) InstallPath {
Colin Cross35cec122015-04-02 14:37:16 -07003288
Colin Cross25de6c32019-06-06 14:29:25 -07003289 fullInstallPath := installPath.Join(m, name)
David Srbecky07656412020-06-04 01:26:16 +01003290 m.module.base().hooks.runInstallHooks(m, srcPath, fullInstallPath, false)
Colin Cross3f40fa42015-01-30 17:27:36 -08003291
Colin Crossa9c8c9f2020-12-16 10:20:23 -08003292 if !m.skipInstall() {
Colin Cross5d583952020-11-24 16:21:24 -08003293 deps = append(deps, m.module.base().installFilesDepSet.ToList().Paths()...)
Colin Cross35cec122015-04-02 14:37:16 -07003294
Colin Cross89562dc2016-10-03 17:47:19 -07003295 var implicitDeps, orderOnlyDeps Paths
3296
Colin Cross25de6c32019-06-06 14:29:25 -07003297 if m.Host() {
Colin Cross89562dc2016-10-03 17:47:19 -07003298 // Installed host modules might be used during the build, depend directly on their
3299 // dependencies so their timestamp is updated whenever their dependency is updated
3300 implicitDeps = deps
3301 } else {
3302 orderOnlyDeps = deps
3303 }
3304
Colin Crossc68db4b2021-11-11 18:59:15 -08003305 if m.Config().KatiEnabled() {
Colin Cross6301c3c2021-09-28 17:40:21 -07003306 // When creating the install rule in Soong but embedding in Make, write the rule to a
3307 // makefile instead of directly to the ninja file so that main.mk can add the
3308 // dependencies from the `required` property that are hard to resolve in Soong.
3309 m.katiInstalls = append(m.katiInstalls, katiInstall{
3310 from: srcPath,
3311 to: fullInstallPath,
3312 implicitDeps: implicitDeps,
3313 orderOnlyDeps: orderOnlyDeps,
3314 executable: executable,
Colin Cross50ed1f92021-11-12 17:41:02 -08003315 extraFiles: extraZip,
Colin Cross6301c3c2021-09-28 17:40:21 -07003316 })
3317 } else {
3318 rule := Cp
3319 if executable {
3320 rule = CpExecutable
3321 }
Jiyong Park073ea552020-11-09 14:08:34 +09003322
Colin Cross50ed1f92021-11-12 17:41:02 -08003323 extraCmds := ""
3324 if extraZip != nil {
Romain Jobredeaux1cef6292022-05-19 11:11:51 -04003325 extraCmds += fmt.Sprintf(" && ( unzip -qDD -d '%s' '%s' 2>&1 | grep -v \"zipfile is empty\"; exit $${PIPESTATUS[0]} )",
Colin Cross50ed1f92021-11-12 17:41:02 -08003326 extraZip.dir.String(), extraZip.zip.String())
Romain Jobredeaux1cef6292022-05-19 11:11:51 -04003327 extraCmds += " || ( code=$$?; if [ $$code -ne 0 -a $$code -ne 1 ]; then exit $$code; fi )"
Colin Cross50ed1f92021-11-12 17:41:02 -08003328 implicitDeps = append(implicitDeps, extraZip.zip)
3329 }
3330
Colin Cross6301c3c2021-09-28 17:40:21 -07003331 m.Build(pctx, BuildParams{
3332 Rule: rule,
3333 Description: "install " + fullInstallPath.Base(),
3334 Output: fullInstallPath,
3335 Input: srcPath,
3336 Implicits: implicitDeps,
3337 OrderOnly: orderOnlyDeps,
3338 Default: !m.Config().KatiEnabled(),
Colin Cross50ed1f92021-11-12 17:41:02 -08003339 Args: map[string]string{
3340 "extraCmds": extraCmds,
3341 },
Colin Cross6301c3c2021-09-28 17:40:21 -07003342 })
3343 }
Colin Cross3f40fa42015-01-30 17:27:36 -08003344
Colin Cross25de6c32019-06-06 14:29:25 -07003345 m.installFiles = append(m.installFiles, fullInstallPath)
Dan Willemsen322acaf2016-01-12 23:07:05 -08003346 }
Jiyong Park073ea552020-11-09 14:08:34 +09003347
Colin Cross41589502020-12-01 14:00:21 -08003348 m.packageFile(fullInstallPath, srcPath, executable)
Jiyong Park073ea552020-11-09 14:08:34 +09003349
Colin Cross25de6c32019-06-06 14:29:25 -07003350 m.checkbuildFiles = append(m.checkbuildFiles, srcPath)
Colin Crossa9c8c9f2020-12-16 10:20:23 -08003351
Colin Cross35cec122015-04-02 14:37:16 -07003352 return fullInstallPath
3353}
3354
Colin Cross70dda7e2019-10-01 22:05:35 -07003355func (m *moduleContext) InstallSymlink(installPath InstallPath, name string, srcPath InstallPath) InstallPath {
Colin Cross25de6c32019-06-06 14:29:25 -07003356 fullInstallPath := installPath.Join(m, name)
David Srbecky07656412020-06-04 01:26:16 +01003357 m.module.base().hooks.runInstallHooks(m, srcPath, fullInstallPath, true)
Colin Cross3854a602016-01-11 12:49:11 -08003358
Jiyong Park073ea552020-11-09 14:08:34 +09003359 relPath, err := filepath.Rel(path.Dir(fullInstallPath.String()), srcPath.String())
3360 if err != nil {
3361 panic(fmt.Sprintf("Unable to generate symlink between %q and %q: %s", fullInstallPath.Base(), srcPath.Base(), err))
3362 }
Colin Crossa9c8c9f2020-12-16 10:20:23 -08003363 if !m.skipInstall() {
Colin Crossce75d2c2016-10-06 16:12:58 -07003364
Colin Crossc68db4b2021-11-11 18:59:15 -08003365 if m.Config().KatiEnabled() {
Colin Cross6301c3c2021-09-28 17:40:21 -07003366 // When creating the symlink rule in Soong but embedding in Make, write the rule to a
3367 // makefile instead of directly to the ninja file so that main.mk can add the
3368 // dependencies from the `required` property that are hard to resolve in Soong.
3369 m.katiSymlinks = append(m.katiSymlinks, katiInstall{
3370 from: srcPath,
3371 to: fullInstallPath,
3372 })
3373 } else {
Colin Cross64002af2021-11-09 16:37:52 -08003374 // The symlink doesn't need updating when the target is modified, but we sometimes
3375 // have a dependency on a symlink to a binary instead of to the binary directly, and
3376 // the mtime of the symlink must be updated when the binary is modified, so use a
3377 // normal dependency here instead of an order-only dependency.
Colin Cross6301c3c2021-09-28 17:40:21 -07003378 m.Build(pctx, BuildParams{
3379 Rule: Symlink,
3380 Description: "install symlink " + fullInstallPath.Base(),
3381 Output: fullInstallPath,
3382 Input: srcPath,
3383 Default: !m.Config().KatiEnabled(),
3384 Args: map[string]string{
3385 "fromPath": relPath,
3386 },
3387 })
3388 }
Colin Cross3854a602016-01-11 12:49:11 -08003389
Colin Cross25de6c32019-06-06 14:29:25 -07003390 m.installFiles = append(m.installFiles, fullInstallPath)
3391 m.checkbuildFiles = append(m.checkbuildFiles, srcPath)
Colin Cross12fc4972016-01-11 12:49:11 -08003392 }
Jiyong Park073ea552020-11-09 14:08:34 +09003393
3394 m.packagingSpecs = append(m.packagingSpecs, PackagingSpec{
3395 relPathInPackage: Rel(m, fullInstallPath.PartitionDir(), fullInstallPath.String()),
3396 srcPath: nil,
3397 symlinkTarget: relPath,
3398 executable: false,
Jooyung Han99c5fe62022-03-21 15:13:38 +09003399 partition: fullInstallPath.partition,
Jiyong Park073ea552020-11-09 14:08:34 +09003400 })
3401
Colin Cross3854a602016-01-11 12:49:11 -08003402 return fullInstallPath
3403}
3404
Jiyong Parkf1194352019-02-25 11:05:47 +09003405// installPath/name -> absPath where absPath might be a path that is available only at runtime
3406// (e.g. /apex/...)
Colin Cross70dda7e2019-10-01 22:05:35 -07003407func (m *moduleContext) InstallAbsoluteSymlink(installPath InstallPath, name string, absPath string) InstallPath {
Colin Cross25de6c32019-06-06 14:29:25 -07003408 fullInstallPath := installPath.Join(m, name)
David Srbecky07656412020-06-04 01:26:16 +01003409 m.module.base().hooks.runInstallHooks(m, nil, fullInstallPath, true)
Jiyong Parkf1194352019-02-25 11:05:47 +09003410
Colin Crossa9c8c9f2020-12-16 10:20:23 -08003411 if !m.skipInstall() {
Colin Crossc68db4b2021-11-11 18:59:15 -08003412 if m.Config().KatiEnabled() {
Colin Cross6301c3c2021-09-28 17:40:21 -07003413 // When creating the symlink rule in Soong but embedding in Make, write the rule to a
3414 // makefile instead of directly to the ninja file so that main.mk can add the
3415 // dependencies from the `required` property that are hard to resolve in Soong.
3416 m.katiSymlinks = append(m.katiSymlinks, katiInstall{
3417 absFrom: absPath,
3418 to: fullInstallPath,
3419 })
3420 } else {
3421 m.Build(pctx, BuildParams{
3422 Rule: Symlink,
3423 Description: "install symlink " + fullInstallPath.Base() + " -> " + absPath,
3424 Output: fullInstallPath,
3425 Default: !m.Config().KatiEnabled(),
3426 Args: map[string]string{
3427 "fromPath": absPath,
3428 },
3429 })
3430 }
Jiyong Parkf1194352019-02-25 11:05:47 +09003431
Colin Cross25de6c32019-06-06 14:29:25 -07003432 m.installFiles = append(m.installFiles, fullInstallPath)
Jiyong Parkf1194352019-02-25 11:05:47 +09003433 }
Jiyong Park073ea552020-11-09 14:08:34 +09003434
3435 m.packagingSpecs = append(m.packagingSpecs, PackagingSpec{
3436 relPathInPackage: Rel(m, fullInstallPath.PartitionDir(), fullInstallPath.String()),
3437 srcPath: nil,
3438 symlinkTarget: absPath,
3439 executable: false,
Jooyung Han99c5fe62022-03-21 15:13:38 +09003440 partition: fullInstallPath.partition,
Jiyong Park073ea552020-11-09 14:08:34 +09003441 })
3442
Jiyong Parkf1194352019-02-25 11:05:47 +09003443 return fullInstallPath
3444}
3445
Colin Cross25de6c32019-06-06 14:29:25 -07003446func (m *moduleContext) CheckbuildFile(srcPath Path) {
3447 m.checkbuildFiles = append(m.checkbuildFiles, srcPath)
Colin Cross3f40fa42015-01-30 17:27:36 -08003448}
3449
Colin Crossc20dc852020-11-10 12:27:45 -08003450func (m *moduleContext) blueprintModuleContext() blueprint.ModuleContext {
3451 return m.bp
3452}
3453
Colin Crosse7fe0962022-03-15 17:49:24 -07003454func (m *moduleContext) LicenseMetadataFile() Path {
3455 return m.module.base().licenseMetadataFile
3456}
3457
Paul Duffine6ba0722021-07-12 20:12:12 +01003458// SrcIsModule decodes module references in the format ":unqualified-name" or "//namespace:name"
3459// into the module name, or empty string if the input was not a module reference.
Colin Cross41955e82019-05-29 14:40:35 -07003460func SrcIsModule(s string) (module string) {
Paul Duffine6ba0722021-07-12 20:12:12 +01003461 if len(s) > 1 {
3462 if s[0] == ':' {
3463 module = s[1:]
3464 if !isUnqualifiedModuleName(module) {
3465 // The module name should be unqualified but is not so do not treat it as a module.
3466 module = ""
3467 }
3468 } else if s[0] == '/' && s[1] == '/' {
3469 module = s
3470 }
Colin Cross068e0fe2016-12-13 15:23:47 -08003471 }
Paul Duffine6ba0722021-07-12 20:12:12 +01003472 return module
Colin Cross068e0fe2016-12-13 15:23:47 -08003473}
3474
Yi-Yo Chiangba9ea322021-07-15 17:18:21 +08003475// SrcIsModuleWithTag decodes module references in the format ":unqualified-name{.tag}" or
3476// "//namespace:name{.tag}" into the module name and tag, ":unqualified-name" or "//namespace:name"
3477// into the module name and an empty string for the tag, or empty strings if the input was not a
3478// module reference.
Colin Cross41955e82019-05-29 14:40:35 -07003479func SrcIsModuleWithTag(s string) (module, tag string) {
Paul Duffine6ba0722021-07-12 20:12:12 +01003480 if len(s) > 1 {
3481 if s[0] == ':' {
3482 module = s[1:]
3483 } else if s[0] == '/' && s[1] == '/' {
3484 module = s
3485 }
3486
3487 if module != "" {
3488 if tagStart := strings.IndexByte(module, '{'); tagStart > 0 {
3489 if module[len(module)-1] == '}' {
3490 tag = module[tagStart+1 : len(module)-1]
3491 module = module[:tagStart]
3492 }
3493 }
3494
3495 if s[0] == ':' && !isUnqualifiedModuleName(module) {
3496 // The module name should be unqualified but is not so do not treat it as a module.
3497 module = ""
3498 tag = ""
Colin Cross41955e82019-05-29 14:40:35 -07003499 }
3500 }
Colin Cross41955e82019-05-29 14:40:35 -07003501 }
Paul Duffine6ba0722021-07-12 20:12:12 +01003502
3503 return module, tag
3504}
3505
3506// isUnqualifiedModuleName makes sure that the supplied module is an unqualified module name, i.e.
3507// does not contain any /.
3508func isUnqualifiedModuleName(module string) bool {
3509 return strings.IndexByte(module, '/') == -1
Colin Cross068e0fe2016-12-13 15:23:47 -08003510}
3511
Paul Duffin40131a32021-07-09 17:10:35 +01003512// sourceOrOutputDependencyTag is the dependency tag added automatically by pathDepsMutator for any
3513// module reference in a property annotated with `android:"path"` or passed to ExtractSourceDeps
3514// or ExtractSourcesDeps.
3515//
3516// If uniquely identifies the dependency that was added as it contains both the module name used to
3517// add the dependency as well as the tag. That makes it very simple to find the matching dependency
3518// in GetModuleFromPathDep as all it needs to do is find the dependency whose tag matches the tag
3519// used to add it. It does not need to check that the module name as returned by one of
3520// Module.Name(), BaseModuleContext.OtherModuleName() or ModuleBase.BaseModuleName() matches the
3521// name supplied in the tag. That means it does not need to handle differences in module names
3522// caused by prebuilt_ prefix, or fully qualified module names.
Colin Cross41955e82019-05-29 14:40:35 -07003523type sourceOrOutputDependencyTag struct {
3524 blueprint.BaseDependencyTag
Paul Duffin40131a32021-07-09 17:10:35 +01003525
3526 // The name of the module.
3527 moduleName string
3528
3529 // The tag that will be passed to the module's OutputFileProducer.OutputFiles(tag) method.
Colin Cross41955e82019-05-29 14:40:35 -07003530 tag string
3531}
3532
Paul Duffin40131a32021-07-09 17:10:35 +01003533func sourceOrOutputDepTag(moduleName, tag string) blueprint.DependencyTag {
3534 return sourceOrOutputDependencyTag{moduleName: moduleName, tag: tag}
Colin Cross41955e82019-05-29 14:40:35 -07003535}
3536
Paul Duffind5cf92e2021-07-09 17:38:55 +01003537// IsSourceDepTagWithOutputTag returns true if the supplied blueprint.DependencyTag is one that was
3538// used to add dependencies by either ExtractSourceDeps, ExtractSourcesDeps or automatically for
3539// properties tagged with `android:"path"` AND it was added using a module reference of
3540// :moduleName{outputTag}.
3541func IsSourceDepTagWithOutputTag(depTag blueprint.DependencyTag, outputTag string) bool {
3542 t, ok := depTag.(sourceOrOutputDependencyTag)
3543 return ok && t.tag == outputTag
3544}
3545
Colin Cross366938f2017-12-11 16:29:02 -08003546// Adds necessary dependencies to satisfy filegroup or generated sources modules listed in srcFiles
3547// using ":module" syntax, if any.
Colin Cross27b922f2019-03-04 22:35:41 -08003548//
3549// Deprecated: tag the property with `android:"path"` instead.
Colin Cross068e0fe2016-12-13 15:23:47 -08003550func ExtractSourcesDeps(ctx BottomUpMutatorContext, srcFiles []string) {
Nan Zhang2439eb72017-04-10 11:27:50 -07003551 set := make(map[string]bool)
3552
Colin Cross068e0fe2016-12-13 15:23:47 -08003553 for _, s := range srcFiles {
Colin Cross41955e82019-05-29 14:40:35 -07003554 if m, t := SrcIsModuleWithTag(s); m != "" {
3555 if _, found := set[s]; found {
3556 ctx.ModuleErrorf("found source dependency duplicate: %q!", s)
Nan Zhang2439eb72017-04-10 11:27:50 -07003557 } else {
Colin Cross41955e82019-05-29 14:40:35 -07003558 set[s] = true
Paul Duffin40131a32021-07-09 17:10:35 +01003559 ctx.AddDependency(ctx.Module(), sourceOrOutputDepTag(m, t), m)
Nan Zhang2439eb72017-04-10 11:27:50 -07003560 }
Colin Cross068e0fe2016-12-13 15:23:47 -08003561 }
3562 }
Colin Cross068e0fe2016-12-13 15:23:47 -08003563}
3564
Colin Cross366938f2017-12-11 16:29:02 -08003565// Adds necessary dependencies to satisfy filegroup or generated sources modules specified in s
3566// using ":module" syntax, if any.
Colin Cross27b922f2019-03-04 22:35:41 -08003567//
3568// Deprecated: tag the property with `android:"path"` instead.
Colin Cross366938f2017-12-11 16:29:02 -08003569func ExtractSourceDeps(ctx BottomUpMutatorContext, s *string) {
3570 if s != nil {
Colin Cross41955e82019-05-29 14:40:35 -07003571 if m, t := SrcIsModuleWithTag(*s); m != "" {
Paul Duffin40131a32021-07-09 17:10:35 +01003572 ctx.AddDependency(ctx.Module(), sourceOrOutputDepTag(m, t), m)
Colin Cross366938f2017-12-11 16:29:02 -08003573 }
3574 }
3575}
3576
Colin Cross41955e82019-05-29 14:40:35 -07003577// A module that implements SourceFileProducer can be referenced from any property that is tagged with `android:"path"`
3578// using the ":module" syntax and provides a list of paths to be used as if they were listed in the property.
Colin Cross068e0fe2016-12-13 15:23:47 -08003579type SourceFileProducer interface {
3580 Srcs() Paths
3581}
3582
Colin Cross41955e82019-05-29 14:40:35 -07003583// A module that implements OutputFileProducer can be referenced from any property that is tagged with `android:"path"`
Roland Levillain97c1f342019-11-22 14:20:54 +00003584// using the ":module" syntax or ":module{.tag}" syntax and provides a list of output files to be used as if they were
Colin Cross41955e82019-05-29 14:40:35 -07003585// listed in the property.
3586type OutputFileProducer interface {
3587 OutputFiles(tag string) (Paths, error)
3588}
3589
Colin Cross5e708052019-08-06 13:59:50 -07003590// OutputFilesForModule returns the paths from an OutputFileProducer with the given tag. On error, including if the
3591// module produced zero paths, it reports errors to the ctx and returns nil.
3592func OutputFilesForModule(ctx PathContext, module blueprint.Module, tag string) Paths {
3593 paths, err := outputFilesForModule(ctx, module, tag)
3594 if err != nil {
3595 reportPathError(ctx, err)
3596 return nil
3597 }
3598 return paths
3599}
3600
3601// OutputFileForModule returns the path from an OutputFileProducer with the given tag. On error, including if the
3602// module produced zero or multiple paths, it reports errors to the ctx and returns nil.
3603func OutputFileForModule(ctx PathContext, module blueprint.Module, tag string) Path {
3604 paths, err := outputFilesForModule(ctx, module, tag)
3605 if err != nil {
3606 reportPathError(ctx, err)
3607 return nil
3608 }
Colin Cross14ec66c2022-10-03 21:02:27 -07003609 if len(paths) == 0 {
3610 type addMissingDependenciesIntf interface {
3611 AddMissingDependencies([]string)
3612 OtherModuleName(blueprint.Module) string
3613 }
3614 if mctx, ok := ctx.(addMissingDependenciesIntf); ok && ctx.Config().AllowMissingDependencies() {
3615 mctx.AddMissingDependencies([]string{mctx.OtherModuleName(module)})
3616 } else {
3617 ReportPathErrorf(ctx, "failed to get output files from module %q", pathContextName(ctx, module))
3618 }
3619 // Return a fake output file to avoid nil dereferences of Path objects later.
3620 // This should never get used for an actual build as the error or missing
3621 // dependency has already been reported.
3622 p, err := pathForSource(ctx, filepath.Join("missing_output_file", pathContextName(ctx, module)))
3623 if err != nil {
3624 reportPathError(ctx, err)
3625 return nil
3626 }
3627 return p
3628 }
Colin Cross5e708052019-08-06 13:59:50 -07003629 if len(paths) > 1 {
Ulya Trafimovich5ab276a2020-08-25 12:45:15 +01003630 ReportPathErrorf(ctx, "got multiple output files from module %q, expected exactly one",
Colin Cross5e708052019-08-06 13:59:50 -07003631 pathContextName(ctx, module))
Colin Cross5e708052019-08-06 13:59:50 -07003632 }
3633 return paths[0]
3634}
3635
3636func outputFilesForModule(ctx PathContext, module blueprint.Module, tag string) (Paths, error) {
3637 if outputFileProducer, ok := module.(OutputFileProducer); ok {
3638 paths, err := outputFileProducer.OutputFiles(tag)
3639 if err != nil {
3640 return nil, fmt.Errorf("failed to get output file from module %q: %s",
3641 pathContextName(ctx, module), err.Error())
3642 }
Colin Cross5e708052019-08-06 13:59:50 -07003643 return paths, nil
Colin Cross74b1e2b2020-11-22 20:23:02 -08003644 } else if sourceFileProducer, ok := module.(SourceFileProducer); ok {
3645 if tag != "" {
3646 return nil, fmt.Errorf("module %q is a SourceFileProducer, not an OutputFileProducer, and so does not support tag %q", pathContextName(ctx, module), tag)
3647 }
3648 paths := sourceFileProducer.Srcs()
Colin Cross74b1e2b2020-11-22 20:23:02 -08003649 return paths, nil
Colin Cross5e708052019-08-06 13:59:50 -07003650 } else {
3651 return nil, fmt.Errorf("module %q is not an OutputFileProducer", pathContextName(ctx, module))
3652 }
3653}
3654
Colin Cross41589502020-12-01 14:00:21 -08003655// Modules can implement HostToolProvider and return a valid OptionalPath from HostToolPath() to
3656// specify that they can be used as a tool by a genrule module.
Colin Crossfe17f6f2019-03-28 19:30:56 -07003657type HostToolProvider interface {
Colin Crossba9e4032020-11-24 16:32:22 -08003658 Module
Colin Cross41589502020-12-01 14:00:21 -08003659 // HostToolPath returns the path to the host tool for the module if it is one, or an invalid
3660 // OptionalPath.
Colin Crossfe17f6f2019-03-28 19:30:56 -07003661 HostToolPath() OptionalPath
3662}
3663
Colin Cross27b922f2019-03-04 22:35:41 -08003664// Returns a list of paths expanded from globs and modules referenced using ":module" syntax. The property must
3665// be tagged with `android:"path" to support automatic source module dependency resolution.
Colin Cross8a497952019-03-05 22:25:09 -08003666//
3667// Deprecated: use PathsForModuleSrc or PathsForModuleSrcExcludes instead.
Colin Cross25de6c32019-06-06 14:29:25 -07003668func (m *moduleContext) ExpandSources(srcFiles, excludes []string) Paths {
3669 return PathsForModuleSrcExcludes(m, srcFiles, excludes)
Colin Cross8f101b42015-06-17 15:09:06 -07003670}
3671
Colin Cross2fafa3e2019-03-05 12:39:51 -08003672// Returns a single path expanded from globs and modules referenced using ":module" syntax. The property must
3673// be tagged with `android:"path" to support automatic source module dependency resolution.
Colin Cross8a497952019-03-05 22:25:09 -08003674//
3675// Deprecated: use PathForModuleSrc instead.
Sasha Smundake198eaf2022-08-04 13:07:02 -07003676func (m *moduleContext) ExpandSource(srcFile, _ string) Path {
Colin Cross25de6c32019-06-06 14:29:25 -07003677 return PathForModuleSrc(m, srcFile)
Colin Cross2fafa3e2019-03-05 12:39:51 -08003678}
3679
3680// Returns an optional single path expanded from globs and modules referenced using ":module" syntax if
3681// the srcFile is non-nil. The property must be tagged with `android:"path" to support automatic source module
3682// dependency resolution.
Sasha Smundake198eaf2022-08-04 13:07:02 -07003683func (m *moduleContext) ExpandOptionalSource(srcFile *string, _ string) OptionalPath {
Colin Cross2fafa3e2019-03-05 12:39:51 -08003684 if srcFile != nil {
Colin Cross25de6c32019-06-06 14:29:25 -07003685 return OptionalPathForPath(PathForModuleSrc(m, *srcFile))
Colin Cross2fafa3e2019-03-05 12:39:51 -08003686 }
3687 return OptionalPath{}
3688}
3689
Colin Cross25de6c32019-06-06 14:29:25 -07003690func (m *moduleContext) RequiredModuleNames() []string {
Jiyong Park6a8cf5f2019-12-30 16:31:09 +09003691 return m.module.RequiredModuleNames()
Nan Zhang6d34b302017-02-04 17:47:46 -08003692}
3693
Colin Cross25de6c32019-06-06 14:29:25 -07003694func (m *moduleContext) HostRequiredModuleNames() []string {
Jiyong Park6a8cf5f2019-12-30 16:31:09 +09003695 return m.module.HostRequiredModuleNames()
Sasha Smundakb6d23052019-04-01 18:37:36 -07003696}
3697
Colin Cross25de6c32019-06-06 14:29:25 -07003698func (m *moduleContext) TargetRequiredModuleNames() []string {
Jiyong Park6a8cf5f2019-12-30 16:31:09 +09003699 return m.module.TargetRequiredModuleNames()
Sasha Smundakb6d23052019-04-01 18:37:36 -07003700}
3701
Colin Cross463a90e2015-06-17 14:20:06 -07003702func init() {
Colin Cross798bfce2016-10-12 14:28:16 -07003703 RegisterSingletonType("buildtarget", BuildTargetSingleton)
Colin Cross463a90e2015-06-17 14:20:06 -07003704}
3705
Colin Cross0875c522017-11-28 17:34:01 -08003706func BuildTargetSingleton() Singleton {
Colin Cross1f8c52b2015-06-16 16:38:17 -07003707 return &buildTargetSingleton{}
3708}
3709
Colin Cross87d8b562017-04-25 10:01:55 -07003710func parentDir(dir string) string {
3711 dir, _ = filepath.Split(dir)
3712 return filepath.Clean(dir)
3713}
3714
Colin Cross1f8c52b2015-06-16 16:38:17 -07003715type buildTargetSingleton struct{}
3716
Chih-Hung Hsieh80783772021-10-11 16:46:56 -07003717func AddAncestors(ctx SingletonContext, dirMap map[string]Paths, mmName func(string) string) ([]string, []string) {
Chih-Hung Hsiehd0f82fe2021-09-05 20:15:38 -07003718 // Ensure ancestor directories are in dirMap
3719 // Make directories build their direct subdirectories
Chih-Hung Hsieh80783772021-10-11 16:46:56 -07003720 // Returns a slice of all directories and a slice of top-level directories.
Cole Faust18994c72023-02-28 16:02:16 -08003721 dirs := SortedKeys(dirMap)
Chih-Hung Hsiehd0f82fe2021-09-05 20:15:38 -07003722 for _, dir := range dirs {
3723 dir := parentDir(dir)
3724 for dir != "." && dir != "/" {
3725 if _, exists := dirMap[dir]; exists {
3726 break
3727 }
3728 dirMap[dir] = nil
3729 dir = parentDir(dir)
3730 }
3731 }
Cole Faust18994c72023-02-28 16:02:16 -08003732 dirs = SortedKeys(dirMap)
Chih-Hung Hsieh80783772021-10-11 16:46:56 -07003733 var topDirs []string
Chih-Hung Hsiehd0f82fe2021-09-05 20:15:38 -07003734 for _, dir := range dirs {
3735 p := parentDir(dir)
3736 if p != "." && p != "/" {
3737 dirMap[p] = append(dirMap[p], PathForPhony(ctx, mmName(dir)))
Chih-Hung Hsieh80783772021-10-11 16:46:56 -07003738 } else if dir != "." && dir != "/" && dir != "" {
3739 topDirs = append(topDirs, dir)
Chih-Hung Hsiehd0f82fe2021-09-05 20:15:38 -07003740 }
3741 }
Cole Faust18994c72023-02-28 16:02:16 -08003742 return SortedKeys(dirMap), topDirs
Chih-Hung Hsiehd0f82fe2021-09-05 20:15:38 -07003743}
3744
Colin Cross0875c522017-11-28 17:34:01 -08003745func (c *buildTargetSingleton) GenerateBuildActions(ctx SingletonContext) {
3746 var checkbuildDeps Paths
Colin Cross1f8c52b2015-06-16 16:38:17 -07003747
Colin Crossc3d87d32020-06-04 13:25:17 -07003748 mmTarget := func(dir string) string {
3749 return "MODULES-IN-" + strings.Replace(filepath.Clean(dir), "/", "-", -1)
Colin Cross87d8b562017-04-25 10:01:55 -07003750 }
3751
Colin Cross0875c522017-11-28 17:34:01 -08003752 modulesInDir := make(map[string]Paths)
Colin Cross1f8c52b2015-06-16 16:38:17 -07003753
Colin Cross0875c522017-11-28 17:34:01 -08003754 ctx.VisitAllModules(func(module Module) {
3755 blueprintDir := module.base().blueprintDir
3756 installTarget := module.base().installTarget
3757 checkbuildTarget := module.base().checkbuildTarget
Colin Cross1f8c52b2015-06-16 16:38:17 -07003758
Colin Cross0875c522017-11-28 17:34:01 -08003759 if checkbuildTarget != nil {
3760 checkbuildDeps = append(checkbuildDeps, checkbuildTarget)
3761 modulesInDir[blueprintDir] = append(modulesInDir[blueprintDir], checkbuildTarget)
3762 }
Colin Cross1f8c52b2015-06-16 16:38:17 -07003763
Colin Cross0875c522017-11-28 17:34:01 -08003764 if installTarget != nil {
3765 modulesInDir[blueprintDir] = append(modulesInDir[blueprintDir], installTarget)
Colin Cross1f8c52b2015-06-16 16:38:17 -07003766 }
3767 })
3768
Dan Willemsen5ba07e82015-12-11 13:51:06 -08003769 suffix := ""
Jingwen Chencda22c92020-11-23 00:22:30 -05003770 if ctx.Config().KatiEnabled() {
Dan Willemsen5ba07e82015-12-11 13:51:06 -08003771 suffix = "-soong"
3772 }
3773
Colin Cross1f8c52b2015-06-16 16:38:17 -07003774 // Create a top-level checkbuild target that depends on all modules
Colin Crossc3d87d32020-06-04 13:25:17 -07003775 ctx.Phony("checkbuild"+suffix, checkbuildDeps...)
Colin Cross1f8c52b2015-06-16 16:38:17 -07003776
Dan Willemsend2e95fb2017-09-20 14:30:50 -07003777 // Make will generate the MODULES-IN-* targets
Jingwen Chencda22c92020-11-23 00:22:30 -05003778 if ctx.Config().KatiEnabled() {
Dan Willemsend2e95fb2017-09-20 14:30:50 -07003779 return
3780 }
3781
Chih-Hung Hsieh80783772021-10-11 16:46:56 -07003782 dirs, _ := AddAncestors(ctx, modulesInDir, mmTarget)
Colin Cross87d8b562017-04-25 10:01:55 -07003783
Dan Willemsend2e95fb2017-09-20 14:30:50 -07003784 // Create a MODULES-IN-<directory> target that depends on all modules in a directory, and
3785 // depends on the MODULES-IN-* targets of all of its subdirectories that contain Android.bp
3786 // files.
Colin Cross1f8c52b2015-06-16 16:38:17 -07003787 for _, dir := range dirs {
Colin Crossc3d87d32020-06-04 13:25:17 -07003788 ctx.Phony(mmTarget(dir), modulesInDir[dir]...)
Colin Cross1f8c52b2015-06-16 16:38:17 -07003789 }
Dan Willemsen61d88b82017-09-20 17:29:08 -07003790
3791 // Create (host|host-cross|target)-<OS> phony rules to build a reduced checkbuild.
Jiyong Park1613e552020-09-14 19:43:17 +09003792 type osAndCross struct {
3793 os OsType
3794 hostCross bool
3795 }
3796 osDeps := map[osAndCross]Paths{}
Colin Cross0875c522017-11-28 17:34:01 -08003797 ctx.VisitAllModules(func(module Module) {
3798 if module.Enabled() {
Jiyong Park1613e552020-09-14 19:43:17 +09003799 key := osAndCross{os: module.Target().Os, hostCross: module.Target().HostCross}
3800 osDeps[key] = append(osDeps[key], module.base().checkbuildFiles...)
Dan Willemsen61d88b82017-09-20 17:29:08 -07003801 }
3802 })
3803
Colin Cross0875c522017-11-28 17:34:01 -08003804 osClass := make(map[string]Paths)
Jiyong Park1613e552020-09-14 19:43:17 +09003805 for key, deps := range osDeps {
Dan Willemsen61d88b82017-09-20 17:29:08 -07003806 var className string
3807
Jiyong Park1613e552020-09-14 19:43:17 +09003808 switch key.os.Class {
Dan Willemsen61d88b82017-09-20 17:29:08 -07003809 case Host:
Jiyong Park1613e552020-09-14 19:43:17 +09003810 if key.hostCross {
3811 className = "host-cross"
3812 } else {
3813 className = "host"
3814 }
Dan Willemsen61d88b82017-09-20 17:29:08 -07003815 case Device:
3816 className = "target"
3817 default:
3818 continue
3819 }
3820
Jiyong Park1613e552020-09-14 19:43:17 +09003821 name := className + "-" + key.os.Name
Colin Crossc3d87d32020-06-04 13:25:17 -07003822 osClass[className] = append(osClass[className], PathForPhony(ctx, name))
Dan Willemsen61d88b82017-09-20 17:29:08 -07003823
Colin Crossc3d87d32020-06-04 13:25:17 -07003824 ctx.Phony(name, deps...)
Dan Willemsen61d88b82017-09-20 17:29:08 -07003825 }
3826
3827 // Wrap those into host|host-cross|target phony rules
Cole Faust18994c72023-02-28 16:02:16 -08003828 for _, class := range SortedKeys(osClass) {
Colin Crossc3d87d32020-06-04 13:25:17 -07003829 ctx.Phony(class, osClass[class]...)
Dan Willemsen61d88b82017-09-20 17:29:08 -07003830 }
Colin Cross1f8c52b2015-06-16 16:38:17 -07003831}
Colin Crossd779da42015-12-17 18:00:23 -08003832
Brandon Lee5d45c6f2018-08-15 15:35:38 -07003833// Collect information for opening IDE project files in java/jdeps.go.
3834type IDEInfo interface {
3835 IDEInfo(ideInfo *IdeInfo)
3836 BaseModuleName() string
3837}
3838
3839// Extract the base module name from the Import name.
3840// Often the Import name has a prefix "prebuilt_".
3841// Remove the prefix explicitly if needed
3842// until we find a better solution to get the Import name.
3843type IDECustomizedModuleName interface {
3844 IDECustomizedModuleName() string
3845}
3846
3847type IdeInfo struct {
3848 Deps []string `json:"dependencies,omitempty"`
3849 Srcs []string `json:"srcs,omitempty"`
3850 Aidl_include_dirs []string `json:"aidl_include_dirs,omitempty"`
3851 Jarjar_rules []string `json:"jarjar_rules,omitempty"`
3852 Jars []string `json:"jars,omitempty"`
3853 Classes []string `json:"class,omitempty"`
3854 Installed_paths []string `json:"installed,omitempty"`
patricktu18c82ff2019-05-10 15:48:50 +08003855 SrcJars []string `json:"srcjars,omitempty"`
bralee1fbf4402020-05-21 10:11:59 +08003856 Paths []string `json:"path,omitempty"`
Yikef6282022022-04-13 20:41:01 +08003857 Static_libs []string `json:"static_libs,omitempty"`
3858 Libs []string `json:"libs,omitempty"`
Brandon Lee5d45c6f2018-08-15 15:35:38 -07003859}
Paul Duffinf88d8e02020-05-07 20:21:34 +01003860
3861func CheckBlueprintSyntax(ctx BaseModuleContext, filename string, contents string) []error {
3862 bpctx := ctx.blueprintBaseModuleContext()
3863 return blueprint.CheckBlueprintSyntax(bpctx.ModuleFactories(), filename, contents)
3864}
Colin Cross5d583952020-11-24 16:21:24 -08003865
3866// installPathsDepSet is a thin type-safe wrapper around the generic depSet. It always uses
3867// topological order.
3868type installPathsDepSet struct {
3869 depSet
3870}
3871
3872// newInstallPathsDepSet returns an immutable packagingSpecsDepSet with the given direct and
3873// transitive contents.
3874func newInstallPathsDepSet(direct InstallPaths, transitive []*installPathsDepSet) *installPathsDepSet {
3875 return &installPathsDepSet{*newDepSet(TOPOLOGICAL, direct, transitive)}
3876}
3877
3878// ToList returns the installPathsDepSet flattened to a list in topological order.
3879func (d *installPathsDepSet) ToList() InstallPaths {
3880 if d == nil {
3881 return nil
3882 }
3883 return d.depSet.ToList().(InstallPaths)
3884}