blob: 9024896e523ab7246236ffeb1f2cd4b1a0ad0e7d [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
Colin Crossbd3a16b2023-04-25 11:30:51 -0700928 // UninstallableApexPlatformVariant is set by MakeUninstallable called by the apex
929 // mutator. MakeUninstallable also sets HideFromMake. UninstallableApexPlatformVariant
930 // is used to avoid adding install or packaging dependencies into libraries provided
931 // by apexes.
932 UninstallableApexPlatformVariant bool `blueprint:"mutated"`
933
Liz Kammer5ca3a622020-08-05 15:40:41 -0700934 // Whether the module has been replaced by a prebuilt
935 ReplacedByPrebuilt bool `blueprint:"mutated"`
936
Justin Yun32f053b2020-07-31 23:07:17 +0900937 // Disabled by mutators. If set to true, it overrides Enabled property.
938 ForcedDisabled bool `blueprint:"mutated"`
939
Jeff Gaston088e29e2017-11-29 16:47:17 -0800940 NamespaceExportedToMake bool `blueprint:"mutated"`
Colin Cross6c4f21f2019-06-06 15:41:36 -0700941
942 MissingDeps []string `blueprint:"mutated"`
Colin Cross9a362232019-07-01 15:32:45 -0700943
944 // Name and variant strings stored by mutators to enable Module.String()
945 DebugName string `blueprint:"mutated"`
946 DebugMutators []string `blueprint:"mutated"`
947 DebugVariations []string `blueprint:"mutated"`
Colin Cross7228ecd2019-11-18 16:00:16 -0800948
Colin Crossa6845402020-11-16 15:08:19 -0800949 // ImageVariation is set by ImageMutator to specify which image this variation is for,
950 // for example "" for core or "recovery" for recovery. It will often be set to one of the
951 // constants in image.go, but can also be set to a custom value by individual module types.
Colin Cross7228ecd2019-11-18 16:00:16 -0800952 ImageVariation string `blueprint:"mutated"`
Liz Kammer2ada09a2021-08-11 00:17:36 -0400953
Sasha Smundaka0954062022-08-02 18:23:58 -0700954 // Bazel conversion status
955 BazelConversionStatus BazelConversionStatus `blueprint:"mutated"`
Colin Cross3f40fa42015-01-30 17:27:36 -0800956}
957
Alex Márquez Pérez Muñíz Díaz Púras Thaureaux447f6c92021-08-31 20:30:36 +0000958// CommonAttributes represents the common Bazel attributes from which properties
959// in `commonProperties` are translated/mapped; such properties are annotated in
960// a list their corresponding attribute. It is embedded within `bp2buildInfo`.
961type CommonAttributes struct {
962 // Soong nameProperties -> Bazel name
963 Name string
Spandan Das4238c652022-09-09 01:38:47 +0000964
Alex Márquez Pérez Muñíz Díaz Púras Thaureaux447f6c92021-08-31 20:30:36 +0000965 // Data mapped from: Required
966 Data bazel.LabelListAttribute
Jingwen Chenfbff97a2022-09-16 02:32:03 +0000967
Spandan Das4238c652022-09-09 01:38:47 +0000968 // SkipData is neither a Soong nor Bazel target attribute
969 // If true, this will not fill the data attribute automatically
970 // This is useful for Soong modules that have 1:many Bazel targets
971 // Some of the generated Bazel targets might not have a data attribute
972 SkipData *bool
973
Jingwen Chenfbff97a2022-09-16 02:32:03 +0000974 Tags bazel.StringListAttribute
Sasha Smundak05b0ba62022-09-26 18:15:45 -0700975
976 Applicable_licenses bazel.LabelListAttribute
Yu Liu4c212ce2022-10-14 12:20:20 -0700977
978 Testonly *bool
Alex Márquez Pérez Muñíz Díaz Púras Thaureaux447f6c92021-08-31 20:30:36 +0000979}
980
Chris Parsons58852a02021-12-09 18:10:18 -0500981// constraintAttributes represents Bazel attributes pertaining to build constraints,
982// which make restrict building a Bazel target for some set of platforms.
983type constraintAttributes struct {
984 // Constraint values this target can be built for.
985 Target_compatible_with bazel.LabelListAttribute
986}
987
Paul Duffined875132020-09-02 13:08:57 +0100988type distProperties struct {
989 // configuration to distribute output files from this module to the distribution
990 // directory (default: $OUT/dist, configurable with $DIST_DIR)
991 Dist Dist `android:"arch_variant"`
992
993 // a list of configurations to distribute output files from this module to the
994 // distribution directory (default: $OUT/dist, configurable with $DIST_DIR)
995 Dists []Dist `android:"arch_variant"`
996}
997
Zhenhuang Wang0ac5a432022-08-12 18:49:20 +0800998// CommonTestOptions represents the common `test_options` properties in
999// Android.bp.
1000type CommonTestOptions struct {
1001 // If the test is a hostside (no device required) unittest that shall be run
1002 // during presubmit check.
1003 Unit_test *bool
Zhenhuang Wang409d2772022-08-22 16:00:05 +08001004
1005 // Tags provide additional metadata to customize test execution by downstream
1006 // test runners. The tags have no special meaning to Soong.
1007 Tags []string
Zhenhuang Wang0ac5a432022-08-12 18:49:20 +08001008}
1009
1010// SetAndroidMkEntries sets AndroidMkEntries according to the value of base
1011// `test_options`.
1012func (t *CommonTestOptions) SetAndroidMkEntries(entries *AndroidMkEntries) {
1013 entries.SetBoolIfTrue("LOCAL_IS_UNIT_TEST", Bool(t.Unit_test))
Zhenhuang Wang409d2772022-08-22 16:00:05 +08001014 if len(t.Tags) > 0 {
1015 entries.AddStrings("LOCAL_TEST_OPTIONS_TAGS", t.Tags...)
1016 }
Zhenhuang Wang0ac5a432022-08-12 18:49:20 +08001017}
1018
Paul Duffin74f05592020-11-25 16:37:46 +00001019// The key to use in TaggedDistFiles when a Dist structure does not specify a
1020// tag property. This intentionally does not use "" as the default because that
1021// would mean that an empty tag would have a different meaning when used in a dist
1022// structure that when used to reference a specific set of output paths using the
1023// :module{tag} syntax, which passes tag to the OutputFiles(tag) method.
1024const DefaultDistTag = "<default-dist-tag>"
1025
Jingwen Chen40fd90a2020-06-15 05:24:19 +00001026// A map of OutputFile tag keys to Paths, for disting purposes.
1027type TaggedDistFiles map[string]Paths
1028
Paul Duffin74f05592020-11-25 16:37:46 +00001029// addPathsForTag adds a mapping from the tag to the paths. If the map is nil
1030// then it will create a map, update it and then return it. If a mapping already
1031// exists for the tag then the paths are appended to the end of the current list
1032// of paths, ignoring any duplicates.
1033func (t TaggedDistFiles) addPathsForTag(tag string, paths ...Path) TaggedDistFiles {
1034 if t == nil {
1035 t = make(TaggedDistFiles)
1036 }
1037
1038 for _, distFile := range paths {
1039 if distFile != nil && !t[tag].containsPath(distFile) {
1040 t[tag] = append(t[tag], distFile)
1041 }
1042 }
1043
1044 return t
1045}
1046
1047// merge merges the entries from the other TaggedDistFiles object into this one.
1048// If the TaggedDistFiles is nil then it will create a new instance, merge the
1049// other into it, and then return it.
1050func (t TaggedDistFiles) merge(other TaggedDistFiles) TaggedDistFiles {
1051 for tag, paths := range other {
1052 t = t.addPathsForTag(tag, paths...)
1053 }
1054
1055 return t
1056}
1057
Jingwen Chen40fd90a2020-06-15 05:24:19 +00001058func MakeDefaultDistFiles(paths ...Path) TaggedDistFiles {
Sasha Smundake198eaf2022-08-04 13:07:02 -07001059 for _, p := range paths {
1060 if p == nil {
Jingwen Chen7b27ca72020-07-24 09:13:49 +00001061 panic("The path to a dist file cannot be nil.")
1062 }
1063 }
1064
Jingwen Chen40fd90a2020-06-15 05:24:19 +00001065 // The default OutputFile tag is the empty "" string.
Paul Duffin74f05592020-11-25 16:37:46 +00001066 return TaggedDistFiles{DefaultDistTag: paths}
Jingwen Chen40fd90a2020-06-15 05:24:19 +00001067}
1068
Colin Cross3f40fa42015-01-30 17:27:36 -08001069type hostAndDeviceProperties struct {
Colin Cross4e81d702018-11-09 10:36:55 -08001070 // If set to true, build a variant of the module for the host. Defaults to false.
1071 Host_supported *bool
1072
1073 // If set to true, build a variant of the module for the device. Defaults to true.
Colin Crossa4190c12016-07-12 13:11:25 -07001074 Device_supported *bool
Colin Cross3f40fa42015-01-30 17:27:36 -08001075}
1076
Colin Crossc472d572015-03-17 15:06:21 -07001077type Multilib string
1078
1079const (
Colin Cross6b4a32d2017-12-05 13:42:45 -08001080 MultilibBoth Multilib = "both"
1081 MultilibFirst Multilib = "first"
1082 MultilibCommon Multilib = "common"
1083 MultilibCommonFirst Multilib = "common_first"
Colin Crossc472d572015-03-17 15:06:21 -07001084)
1085
Colin Crossa1ad8d12016-06-01 17:09:44 -07001086type HostOrDeviceSupported int
1087
1088const (
Colin Cross34037c62020-11-17 13:19:17 -08001089 hostSupported = 1 << iota
1090 hostCrossSupported
1091 deviceSupported
1092 hostDefault
1093 deviceDefault
Dan Albert0981b5c2018-08-02 13:46:35 -07001094
1095 // Host and HostCross are built by default. Device is not supported.
Colin Cross34037c62020-11-17 13:19:17 -08001096 HostSupported = hostSupported | hostCrossSupported | hostDefault
Dan Albert0981b5c2018-08-02 13:46:35 -07001097
1098 // Host is built by default. HostCross and Device are not supported.
Colin Cross34037c62020-11-17 13:19:17 -08001099 HostSupportedNoCross = hostSupported | hostDefault
Dan Albert0981b5c2018-08-02 13:46:35 -07001100
1101 // Device is built by default. Host and HostCross are not supported.
Colin Cross34037c62020-11-17 13:19:17 -08001102 DeviceSupported = deviceSupported | deviceDefault
Dan Albert0981b5c2018-08-02 13:46:35 -07001103
Liz Kammer8631cc72021-08-23 21:12:07 +00001104 // By default, _only_ device variant is built. Device variant can be disabled with `device_supported: false`
Chih-Hung Hsiehd0f82fe2021-09-05 20:15:38 -07001105 // Host and HostCross are disabled by default and can be enabled with `host_supported: true`
Colin Cross34037c62020-11-17 13:19:17 -08001106 HostAndDeviceSupported = hostSupported | hostCrossSupported | deviceSupported | deviceDefault
Dan Albert0981b5c2018-08-02 13:46:35 -07001107
1108 // Host, HostCross, and Device are built by default.
Chih-Hung Hsiehd0f82fe2021-09-05 20:15:38 -07001109 // Building Device can be disabled with `device_supported: false`
1110 // Building Host and HostCross can be disabled with `host_supported: false`
Colin Cross34037c62020-11-17 13:19:17 -08001111 HostAndDeviceDefault = hostSupported | hostCrossSupported | hostDefault |
1112 deviceSupported | deviceDefault
Dan Albert0981b5c2018-08-02 13:46:35 -07001113
1114 // Nothing is supported. This is not exposed to the user, but used to mark a
1115 // host only module as unsupported when the module type is not supported on
1116 // the host OS. E.g. benchmarks are supported on Linux but not Darwin.
Colin Cross34037c62020-11-17 13:19:17 -08001117 NeitherHostNorDeviceSupported = 0
Colin Crossa1ad8d12016-06-01 17:09:44 -07001118)
1119
Jiyong Park2db76922017-11-08 16:03:48 +09001120type moduleKind int
1121
1122const (
1123 platformModule moduleKind = iota
1124 deviceSpecificModule
1125 socSpecificModule
1126 productSpecificModule
Justin Yund5f6c822019-06-25 16:47:17 +09001127 systemExtSpecificModule
Jiyong Park2db76922017-11-08 16:03:48 +09001128)
1129
1130func (k moduleKind) String() string {
1131 switch k {
1132 case platformModule:
1133 return "platform"
1134 case deviceSpecificModule:
1135 return "device-specific"
1136 case socSpecificModule:
1137 return "soc-specific"
1138 case productSpecificModule:
1139 return "product-specific"
Justin Yund5f6c822019-06-25 16:47:17 +09001140 case systemExtSpecificModule:
1141 return "systemext-specific"
Jiyong Park2db76922017-11-08 16:03:48 +09001142 default:
1143 panic(fmt.Errorf("unknown module kind %d", k))
1144 }
1145}
1146
Colin Cross9d34f352019-11-22 16:03:51 -08001147func initAndroidModuleBase(m Module) {
1148 m.base().module = m
1149}
1150
Colin Crossa6845402020-11-16 15:08:19 -08001151// InitAndroidModule initializes the Module as an Android module that is not architecture-specific.
1152// It adds the common properties, for example "name" and "enabled".
Colin Cross36242852017-06-23 15:06:31 -07001153func InitAndroidModule(m Module) {
Colin Cross9d34f352019-11-22 16:03:51 -08001154 initAndroidModuleBase(m)
Colin Cross3f40fa42015-01-30 17:27:36 -08001155 base := m.base()
Colin Cross5049f022015-03-18 13:28:46 -07001156
Colin Cross36242852017-06-23 15:06:31 -07001157 m.AddProperties(
Colin Crossfc754582016-05-17 16:34:16 -07001158 &base.nameProperties,
Paul Duffined875132020-09-02 13:08:57 +01001159 &base.commonProperties,
1160 &base.distProperties)
Colin Cross18c46802019-09-24 22:19:02 -07001161
Colin Crosseabaedd2020-02-06 17:01:55 -08001162 initProductVariableModule(m)
Colin Cross18c46802019-09-24 22:19:02 -07001163
Paul Duffin63c6e182019-07-24 14:24:38 +01001164 // The default_visibility property needs to be checked and parsed by the visibility module during
Paul Duffin5ec73ec2020-05-01 17:52:01 +01001165 // its checking and parsing phases so make it the primary visibility property.
1166 setPrimaryVisibilityProperty(m, "visibility", &base.commonProperties.Visibility)
Bob Badour37af0462021-01-07 03:34:31 +00001167
1168 // The default_applicable_licenses property needs to be checked and parsed by the licenses module during
1169 // its checking and parsing phases so make it the primary licenses property.
1170 setPrimaryLicensesProperty(m, "licenses", &base.commonProperties.Licenses)
Colin Cross5049f022015-03-18 13:28:46 -07001171}
1172
Colin Crossa6845402020-11-16 15:08:19 -08001173// InitAndroidArchModule initializes the Module as an Android module that is architecture-specific.
1174// It adds the common properties, for example "name" and "enabled", as well as runtime generated
1175// property structs for architecture-specific versions of generic properties tagged with
1176// `android:"arch_variant"`.
1177//
Colin Crossd079e0b2022-08-16 10:27:33 -07001178// InitAndroidModule should not be called if InitAndroidArchModule was called.
Colin Cross36242852017-06-23 15:06:31 -07001179func InitAndroidArchModule(m Module, hod HostOrDeviceSupported, defaultMultilib Multilib) {
1180 InitAndroidModule(m)
Colin Cross5049f022015-03-18 13:28:46 -07001181
1182 base := m.base()
Colin Cross3f40fa42015-01-30 17:27:36 -08001183 base.commonProperties.HostOrDeviceSupported = hod
Colin Cross69617d32016-09-06 10:39:07 -07001184 base.commonProperties.Default_multilib = string(defaultMultilib)
Dan Willemsen0b24c742016-10-04 15:13:37 -07001185 base.commonProperties.ArchSpecific = true
Colin Crossee0bc3b2018-10-02 22:01:37 -07001186 base.commonProperties.UseTargetVariants = true
Colin Cross3f40fa42015-01-30 17:27:36 -08001187
Colin Cross34037c62020-11-17 13:19:17 -08001188 if hod&hostSupported != 0 && hod&deviceSupported != 0 {
Colin Cross36242852017-06-23 15:06:31 -07001189 m.AddProperties(&base.hostAndDeviceProperties)
Colin Cross3f40fa42015-01-30 17:27:36 -08001190 }
1191
Colin Crossa6845402020-11-16 15:08:19 -08001192 initArchModule(m)
Colin Cross3f40fa42015-01-30 17:27:36 -08001193}
1194
Colin Crossa6845402020-11-16 15:08:19 -08001195// InitAndroidMultiTargetsArchModule initializes the Module as an Android module that is
1196// architecture-specific, but will only have a single variant per OS that handles all the
1197// architectures simultaneously. The list of Targets that it must handle will be available from
1198// ModuleContext.MultiTargets. It adds the common properties, for example "name" and "enabled", as
1199// well as runtime generated property structs for architecture-specific versions of generic
1200// properties tagged with `android:"arch_variant"`.
1201//
1202// InitAndroidModule or InitAndroidArchModule should not be called if
1203// InitAndroidMultiTargetsArchModule was called.
Colin Crossee0bc3b2018-10-02 22:01:37 -07001204func InitAndroidMultiTargetsArchModule(m Module, hod HostOrDeviceSupported, defaultMultilib Multilib) {
1205 InitAndroidArchModule(m, hod, defaultMultilib)
1206 m.base().commonProperties.UseTargetVariants = false
1207}
1208
Colin Crossa6845402020-11-16 15:08:19 -08001209// InitCommonOSAndroidMultiTargetsArchModule initializes the Module as an Android module that is
1210// architecture-specific, but will only have a single variant per OS that handles all the
1211// architectures simultaneously, and will also have an additional CommonOS variant that has
1212// dependencies on all the OS-specific variants. The list of Targets that it must handle will be
1213// available from ModuleContext.MultiTargets. It adds the common properties, for example "name" and
1214// "enabled", as well as runtime generated property structs for architecture-specific versions of
1215// generic properties tagged with `android:"arch_variant"`.
1216//
1217// InitAndroidModule, InitAndroidArchModule or InitAndroidMultiTargetsArchModule should not be
1218// called if InitCommonOSAndroidMultiTargetsArchModule was called.
Paul Duffin1356d8c2020-02-25 19:26:33 +00001219func InitCommonOSAndroidMultiTargetsArchModule(m Module, hod HostOrDeviceSupported, defaultMultilib Multilib) {
1220 InitAndroidArchModule(m, hod, defaultMultilib)
1221 m.base().commonProperties.UseTargetVariants = false
1222 m.base().commonProperties.CreateCommonOSVariant = true
1223}
1224
Chris Parsons58852a02021-12-09 18:10:18 -05001225func (attrs *CommonAttributes) fillCommonBp2BuildModuleAttrs(ctx *topDownMutatorContext,
1226 enabledPropertyOverrides bazel.BoolAttribute) constraintAttributes {
Alex Márquez Pérez Muñíz Díaz Púras Thaureaux447f6c92021-08-31 20:30:36 +00001227
1228 mod := ctx.Module().base()
Sasha Smundake198eaf2022-08-04 13:07:02 -07001229 // Assert passed-in attributes include Name
1230 if len(attrs.Name) == 0 {
Sasha Smundakfb589492022-08-04 11:13:27 -07001231 if ctx.ModuleType() != "package" {
1232 ctx.ModuleErrorf("CommonAttributes in fillCommonBp2BuildModuleAttrs expects a `.Name`!")
1233 }
Sasha Smundake198eaf2022-08-04 13:07:02 -07001234 }
Alex Márquez Pérez Muñíz Díaz Púras Thaureaux447f6c92021-08-31 20:30:36 +00001235
1236 depsToLabelList := func(deps []string) bazel.LabelListAttribute {
1237 return bazel.MakeLabelListAttribute(BazelLabelForModuleDeps(ctx, deps))
1238 }
1239
Chris Parsons58852a02021-12-09 18:10:18 -05001240 var enabledProperty bazel.BoolAttribute
Liz Kammerdfeb1202022-05-13 17:20:20 -04001241
1242 onlyAndroid := false
1243 neitherHostNorDevice := false
1244
1245 osSupport := map[string]bool{}
1246
1247 // if the target is enabled and supports arch variance, determine the defaults based on the module
1248 // type's host or device property and host_supported/device_supported properties
1249 if mod.commonProperties.ArchSpecific {
1250 moduleSupportsDevice := mod.DeviceSupported()
1251 moduleSupportsHost := mod.HostSupported()
1252 if moduleSupportsHost && !moduleSupportsDevice {
1253 // for host only, we specify as unsupported on android rather than listing all host osSupport
1254 // TODO(b/220874839): consider replacing this with a constraint that covers all host osSupport
1255 // instead
1256 enabledProperty.SetSelectValue(bazel.OsConfigurationAxis, Android.Name, proptools.BoolPtr(false))
1257 } else if moduleSupportsDevice && !moduleSupportsHost {
1258 enabledProperty.SetSelectValue(bazel.OsConfigurationAxis, Android.Name, proptools.BoolPtr(true))
1259 // specify as a positive to ensure any target-specific enabled can be resolved
1260 // also save that a target is only android, as if there is only the positive restriction on
1261 // android, it'll be dropped, so we may need to add it back later
1262 onlyAndroid = true
1263 } else if !moduleSupportsHost && !moduleSupportsDevice {
1264 neitherHostNorDevice = true
1265 }
1266
Sasha Smundake198eaf2022-08-04 13:07:02 -07001267 for _, osType := range OsTypeList() {
1268 if osType.Class == Host {
1269 osSupport[osType.Name] = moduleSupportsHost
1270 } else if osType.Class == Device {
1271 osSupport[osType.Name] = moduleSupportsDevice
Liz Kammerdfeb1202022-05-13 17:20:20 -04001272 }
1273 }
1274 }
1275
1276 if neitherHostNorDevice {
1277 // we can't build this, disable
1278 enabledProperty.Value = proptools.BoolPtr(false)
Sasha Smundake198eaf2022-08-04 13:07:02 -07001279 } else if mod.commonProperties.Enabled != nil {
1280 enabledProperty.SetValue(mod.commonProperties.Enabled)
1281 if !*mod.commonProperties.Enabled {
1282 for oss, enabled := range osSupport {
1283 if val := enabledProperty.SelectValue(bazel.OsConfigurationAxis, oss); enabled && val != nil && *val {
Liz Kammerdfeb1202022-05-13 17:20:20 -04001284 // if this should be disabled by default, clear out any enabling we've done
Sasha Smundake198eaf2022-08-04 13:07:02 -07001285 enabledProperty.SetSelectValue(bazel.OsConfigurationAxis, oss, nil)
Liz Kammerdfeb1202022-05-13 17:20:20 -04001286 }
1287 }
1288 }
Chris Parsons58852a02021-12-09 18:10:18 -05001289 }
1290
Sasha Smundak05b0ba62022-09-26 18:15:45 -07001291 attrs.Applicable_licenses = bazel.MakeLabelListAttribute(BazelLabelForModuleDeps(ctx, mod.commonProperties.Licenses))
1292
Jingwen Chena5ecb372022-09-21 09:05:37 +00001293 // The required property can contain the module itself. This causes a cycle
1294 // when generated as the 'data' label list attribute in Bazel. Remove it if
1295 // it exists. See b/247985196.
1296 _, requiredWithoutCycles := RemoveFromList(ctx.ModuleName(), mod.commonProperties.Required)
Wei Li7d8f6182022-10-11 14:38:16 -07001297 requiredWithoutCycles = FirstUniqueStrings(requiredWithoutCycles)
Jingwen Chena5ecb372022-09-21 09:05:37 +00001298 required := depsToLabelList(requiredWithoutCycles)
Sasha Smundake198eaf2022-08-04 13:07:02 -07001299 archVariantProps := mod.GetArchVariantProperties(ctx, &commonProperties{})
Alex Márquez Pérez Muñíz Díaz Púras Thaureaux447f6c92021-08-31 20:30:36 +00001300 for axis, configToProps := range archVariantProps {
1301 for config, _props := range configToProps {
1302 if archProps, ok := _props.(*commonProperties); ok {
Jingwen Chena5ecb372022-09-21 09:05:37 +00001303 _, requiredWithoutCycles := RemoveFromList(ctx.ModuleName(), archProps.Required)
Wei Li7d8f6182022-10-11 14:38:16 -07001304 requiredWithoutCycles = FirstUniqueStrings(requiredWithoutCycles)
Jingwen Chena5ecb372022-09-21 09:05:37 +00001305 required.SetSelectValue(axis, config, depsToLabelList(requiredWithoutCycles).Value)
Liz Kammerdfeb1202022-05-13 17:20:20 -04001306 if !neitherHostNorDevice {
1307 if archProps.Enabled != nil {
1308 if axis != bazel.OsConfigurationAxis || osSupport[config] {
1309 enabledProperty.SetSelectValue(axis, config, archProps.Enabled)
1310 }
1311 }
Chris Parsons58852a02021-12-09 18:10:18 -05001312 }
Alex Márquez Pérez Muñíz Díaz Púras Thaureaux447f6c92021-08-31 20:30:36 +00001313 }
1314 }
1315 }
Chris Parsons58852a02021-12-09 18:10:18 -05001316
Liz Kammerdfeb1202022-05-13 17:20:20 -04001317 if !neitherHostNorDevice {
1318 if enabledPropertyOverrides.Value != nil {
1319 enabledProperty.Value = enabledPropertyOverrides.Value
1320 }
1321 for _, axis := range enabledPropertyOverrides.SortedConfigurationAxes() {
1322 configToBools := enabledPropertyOverrides.ConfigurableValues[axis]
1323 for cfg, val := range configToBools {
1324 if axis != bazel.OsConfigurationAxis || osSupport[cfg] {
1325 enabledProperty.SetSelectValue(axis, cfg, &val)
1326 }
1327 }
Chris Parsons58852a02021-12-09 18:10:18 -05001328 }
1329 }
1330
Sam Delmerico0e33c9d2022-01-07 20:39:21 +00001331 productConfigEnabledLabels := []bazel.Label{}
Liz Kammerdfeb1202022-05-13 17:20:20 -04001332 // TODO(b/234497586): Soong config variables and product variables have different overriding behavior, we
1333 // should handle it correctly
1334 if !proptools.BoolDefault(enabledProperty.Value, true) && !neitherHostNorDevice {
Sam Delmerico0e33c9d2022-01-07 20:39:21 +00001335 // If the module is not enabled by default, then we can check if a
1336 // product variable enables it
1337 productConfigEnabledLabels = productVariableConfigEnableLabels(ctx)
Chris Parsons58852a02021-12-09 18:10:18 -05001338
Sam Delmerico0e33c9d2022-01-07 20:39:21 +00001339 if len(productConfigEnabledLabels) > 0 {
1340 // In this case, an existing product variable configuration overrides any
1341 // module-level `enable: false` definition
1342 newValue := true
1343 enabledProperty.Value = &newValue
1344 }
1345 }
1346
1347 productConfigEnabledAttribute := bazel.MakeLabelListAttribute(bazel.LabelList{
1348 productConfigEnabledLabels, nil,
1349 })
1350
1351 platformEnabledAttribute, err := enabledProperty.ToLabelListAttribute(
Sasha Smundake198eaf2022-08-04 13:07:02 -07001352 bazel.LabelList{[]bazel.Label{{Label: "@platforms//:incompatible"}}, nil},
Chris Parsons58852a02021-12-09 18:10:18 -05001353 bazel.LabelList{[]bazel.Label{}, nil})
Chris Parsons58852a02021-12-09 18:10:18 -05001354 if err != nil {
Sam Delmerico0e33c9d2022-01-07 20:39:21 +00001355 ctx.ModuleErrorf("Error processing platform enabled attribute: %s", err)
Chris Parsons58852a02021-12-09 18:10:18 -05001356 }
Sam Delmerico0e33c9d2022-01-07 20:39:21 +00001357
Liz Kammerdfeb1202022-05-13 17:20:20 -04001358 // if android is the only arch/os enabled, then add a restriction to only be compatible with android
1359 if platformEnabledAttribute.IsNil() && onlyAndroid {
1360 l := bazel.LabelAttribute{}
1361 l.SetValue(bazel.Label{Label: bazel.OsConfigurationAxis.SelectKey(Android.Name)})
1362 platformEnabledAttribute.Add(&l)
1363 }
1364
Spandan Das4238c652022-09-09 01:38:47 +00001365 if !proptools.Bool(attrs.SkipData) {
1366 attrs.Data.Append(required)
1367 }
1368 // SkipData is not an attribute of any Bazel target
1369 // Set this to nil so that it does not appear in the generated build file
1370 attrs.SkipData = nil
Sam Delmerico0e33c9d2022-01-07 20:39:21 +00001371
Sam Delmerico0e33c9d2022-01-07 20:39:21 +00001372 moduleEnableConstraints := bazel.LabelListAttribute{}
1373 moduleEnableConstraints.Append(platformEnabledAttribute)
1374 moduleEnableConstraints.Append(productConfigEnabledAttribute)
Sam Delmerico0e33c9d2022-01-07 20:39:21 +00001375
Sasha Smundake198eaf2022-08-04 13:07:02 -07001376 return constraintAttributes{Target_compatible_with: moduleEnableConstraints}
Alex Márquez Pérez Muñíz Díaz Púras Thaureaux447f6c92021-08-31 20:30:36 +00001377}
1378
Sam Delmerico0e33c9d2022-01-07 20:39:21 +00001379// Check product variables for `enabled: true` flag override.
1380// Returns a list of the constraint_value targets who enable this override.
1381func productVariableConfigEnableLabels(ctx *topDownMutatorContext) []bazel.Label {
Cole Faust912bc882023-03-08 12:29:50 -08001382 productVariableProps := ProductVariableProperties(ctx, ctx.Module())
Sam Delmerico0e33c9d2022-01-07 20:39:21 +00001383 productConfigEnablingTargets := []bazel.Label{}
1384 const propName = "Enabled"
1385 if productConfigProps, exists := productVariableProps[propName]; exists {
1386 for productConfigProp, prop := range productConfigProps {
1387 flag, ok := prop.(*bool)
1388 if !ok {
1389 ctx.ModuleErrorf("Could not convert product variable %s property", proptools.PropertyNameForField(propName))
1390 }
1391
1392 if *flag {
1393 axis := productConfigProp.ConfigurationAxis()
1394 targetLabel := axis.SelectKey(productConfigProp.SelectKey())
1395 productConfigEnablingTargets = append(productConfigEnablingTargets, bazel.Label{
1396 Label: targetLabel,
1397 })
1398 } else {
1399 // TODO(b/210546943): handle negative case where `enabled: false`
1400 ctx.ModuleErrorf("`enabled: false` is not currently supported for configuration variables. See b/210546943", proptools.PropertyNameForField(propName))
1401 }
1402 }
1403 }
1404
1405 return productConfigEnablingTargets
1406}
1407
Nan Zhangb9eeb1d2017-02-02 10:46:07 -08001408// A ModuleBase object contains the properties that are common to all Android
Colin Cross3f40fa42015-01-30 17:27:36 -08001409// modules. It should be included as an anonymous field in every module
1410// struct definition. InitAndroidModule should then be called from the module's
1411// factory function, and the return values from InitAndroidModule should be
1412// returned from the factory function.
1413//
Nan Zhangb9eeb1d2017-02-02 10:46:07 -08001414// The ModuleBase type is responsible for implementing the GenerateBuildActions
1415// method to support the blueprint.Module interface. This method will then call
1416// the module's GenerateAndroidBuildActions method once for each build variant
Colin Cross25de6c32019-06-06 14:29:25 -07001417// that is to be built. GenerateAndroidBuildActions is passed a ModuleContext
1418// rather than the usual blueprint.ModuleContext.
1419// ModuleContext exposes extra functionality specific to the Android build
Colin Cross3f40fa42015-01-30 17:27:36 -08001420// system including details about the particular build variant that is to be
1421// generated.
1422//
1423// For example:
1424//
Zhenhuang Wang0ac5a432022-08-12 18:49:20 +08001425// import (
1426// "android/soong/android"
1427// )
Colin Cross3f40fa42015-01-30 17:27:36 -08001428//
Zhenhuang Wang0ac5a432022-08-12 18:49:20 +08001429// type myModule struct {
1430// android.ModuleBase
1431// properties struct {
1432// MyProperty string
1433// }
1434// }
Colin Cross3f40fa42015-01-30 17:27:36 -08001435//
Zhenhuang Wang0ac5a432022-08-12 18:49:20 +08001436// func NewMyModule() android.Module {
1437// m := &myModule{}
1438// m.AddProperties(&m.properties)
1439// android.InitAndroidModule(m)
1440// return m
1441// }
Colin Cross3f40fa42015-01-30 17:27:36 -08001442//
Zhenhuang Wang0ac5a432022-08-12 18:49:20 +08001443// func (m *myModule) GenerateAndroidBuildActions(ctx android.ModuleContext) {
1444// // Get the CPU architecture for the current build variant.
1445// variantArch := ctx.Arch()
Colin Cross3f40fa42015-01-30 17:27:36 -08001446//
Zhenhuang Wang0ac5a432022-08-12 18:49:20 +08001447// // ...
1448// }
Colin Cross635c3b02016-05-18 15:37:25 -07001449type ModuleBase struct {
Colin Cross3f40fa42015-01-30 17:27:36 -08001450 // Putting the curiously recurring thing pointing to the thing that contains
1451 // the thing pattern to good use.
Colin Cross36242852017-06-23 15:06:31 -07001452 // TODO: remove this
Colin Cross635c3b02016-05-18 15:37:25 -07001453 module Module
Colin Cross3f40fa42015-01-30 17:27:36 -08001454
Colin Crossfc754582016-05-17 16:34:16 -07001455 nameProperties nameProperties
Colin Cross3f40fa42015-01-30 17:27:36 -08001456 commonProperties commonProperties
Paul Duffined875132020-09-02 13:08:57 +01001457 distProperties distProperties
Colin Cross18c46802019-09-24 22:19:02 -07001458 variableProperties interface{}
Colin Cross3f40fa42015-01-30 17:27:36 -08001459 hostAndDeviceProperties hostAndDeviceProperties
Jingwen Chen5d864492021-02-24 07:20:12 -05001460
Usta851a3272022-01-05 23:42:33 -05001461 // Arch specific versions of structs in GetProperties() prior to
1462 // initialization in InitAndroidArchModule, lets call it `generalProperties`.
1463 // The outer index has the same order as generalProperties and the inner index
1464 // chooses the props specific to the architecture. The interface{} value is an
1465 // archPropRoot that is filled with arch specific values by the arch mutator.
Jingwen Chen5d864492021-02-24 07:20:12 -05001466 archProperties [][]interface{}
1467
Jingwen Chen73850672020-12-14 08:25:34 -05001468 // Properties specific to the Blueprint to BUILD migration.
1469 bazelTargetModuleProperties bazel.BazelTargetModuleProperties
1470
Paul Duffin63c6e182019-07-24 14:24:38 +01001471 // Information about all the properties on the module that contains visibility rules that need
1472 // checking.
1473 visibilityPropertyInfo []visibilityProperty
1474
1475 // The primary visibility property, may be nil, that controls access to the module.
1476 primaryVisibilityProperty visibilityProperty
1477
Bob Badour37af0462021-01-07 03:34:31 +00001478 // The primary licenses property, may be nil, records license metadata for the module.
1479 primaryLicensesProperty applicableLicensesProperty
1480
Colin Crossffe6b9d2020-12-01 15:40:06 -08001481 noAddressSanitizer bool
1482 installFiles InstallPaths
1483 installFilesDepSet *installPathsDepSet
1484 checkbuildFiles Paths
1485 packagingSpecs []PackagingSpec
1486 packagingSpecsDepSet *packagingSpecsDepSet
Colin Cross6301c3c2021-09-28 17:40:21 -07001487 // katiInstalls tracks the install rules that were created by Soong but are being exported
1488 // to Make to convert to ninja rules so that Make can add additional dependencies.
1489 katiInstalls katiInstalls
1490 katiSymlinks katiInstalls
Colin Cross1f8c52b2015-06-16 16:38:17 -07001491
Paul Duffinaf970a22020-11-23 23:32:56 +00001492 // The files to copy to the dist as explicitly specified in the .bp file.
1493 distFiles TaggedDistFiles
1494
Colin Cross1f8c52b2015-06-16 16:38:17 -07001495 // Used by buildTargetSingleton to create checkbuild and per-directory build targets
1496 // Only set on the final variant of each module
Colin Cross0875c522017-11-28 17:34:01 -08001497 installTarget WritablePath
1498 checkbuildTarget WritablePath
Colin Cross1f8c52b2015-06-16 16:38:17 -07001499 blueprintDir string
Colin Crossa120ec12016-08-19 16:07:38 -07001500
Colin Cross178a5092016-09-13 13:42:32 -07001501 hooks hooks
Colin Cross36242852017-06-23 15:06:31 -07001502
1503 registerProps []interface{}
Colin Crosscec81712017-07-13 14:43:27 -07001504
1505 // For tests
Colin Crossae887032017-10-23 17:16:14 -07001506 buildParams []BuildParams
Colin Cross4c83e5c2019-02-25 14:54:28 -08001507 ruleParams map[blueprint.Rule]blueprint.RuleParams
Jaewoong Jung38e4fb22018-12-12 09:01:34 -08001508 variables map[string]string
Colin Crossa9d8bee2018-10-02 13:59:46 -07001509
Inseob Kim8471cda2019-11-15 09:59:12 +09001510 initRcPaths Paths
1511 vintfFragmentsPaths Paths
Colin Cross4acaea92021-12-10 23:05:02 +00001512
1513 // set of dependency module:location mappings used to populate the license metadata for
1514 // apex containers.
1515 licenseInstallMap []string
Colin Crossaa1cab02022-01-28 14:49:24 -08001516
1517 // The path to the generated license metadata file for the module.
1518 licenseMetadataFile WritablePath
Colin Cross36242852017-06-23 15:06:31 -07001519}
1520
Liz Kammer2ada09a2021-08-11 00:17:36 -04001521// A struct containing all relevant information about a Bazel target converted via bp2build.
1522type bp2buildInfo struct {
Chris Parsons58852a02021-12-09 18:10:18 -05001523 Dir string
1524 BazelProps bazel.BazelTargetModuleProperties
1525 CommonAttrs CommonAttributes
1526 ConstraintAttrs constraintAttributes
1527 Attrs interface{}
Liz Kammer2ada09a2021-08-11 00:17:36 -04001528}
1529
1530// TargetName returns the Bazel target name of a bp2build converted target.
1531func (b bp2buildInfo) TargetName() string {
Alex Márquez Pérez Muñíz Díaz Púras Thaureaux447f6c92021-08-31 20:30:36 +00001532 return b.CommonAttrs.Name
Liz Kammer2ada09a2021-08-11 00:17:36 -04001533}
1534
1535// TargetPackage returns the Bazel package of a bp2build converted target.
1536func (b bp2buildInfo) TargetPackage() string {
1537 return b.Dir
1538}
1539
1540// BazelRuleClass returns the Bazel rule class of a bp2build converted target.
1541func (b bp2buildInfo) BazelRuleClass() string {
1542 return b.BazelProps.Rule_class
1543}
1544
1545// BazelRuleLoadLocation returns the location of the Bazel rule of a bp2build converted target.
1546// This may be empty as native Bazel rules do not need to be loaded.
1547func (b bp2buildInfo) BazelRuleLoadLocation() string {
1548 return b.BazelProps.Bzl_load_location
1549}
1550
1551// 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 +00001552func (b bp2buildInfo) BazelAttributes() []interface{} {
Chris Parsons58852a02021-12-09 18:10:18 -05001553 return []interface{}{&b.CommonAttrs, &b.ConstraintAttrs, b.Attrs}
Liz Kammer2ada09a2021-08-11 00:17:36 -04001554}
1555
1556func (m *ModuleBase) addBp2buildInfo(info bp2buildInfo) {
Sasha Smundaka0954062022-08-02 18:23:58 -07001557 m.commonProperties.BazelConversionStatus.Bp2buildInfo = append(m.commonProperties.BazelConversionStatus.Bp2buildInfo, info)
Liz Kammer2ada09a2021-08-11 00:17:36 -04001558}
1559
1560// IsConvertedByBp2build returns whether this module was converted via bp2build.
1561func (m *ModuleBase) IsConvertedByBp2build() bool {
Sasha Smundaka0954062022-08-02 18:23:58 -07001562 return len(m.commonProperties.BazelConversionStatus.Bp2buildInfo) > 0
Liz Kammer2ada09a2021-08-11 00:17:36 -04001563}
1564
1565// Bp2buildTargets returns the Bazel targets bp2build generated for this module.
1566func (m *ModuleBase) Bp2buildTargets() []bp2buildInfo {
Sasha Smundaka0954062022-08-02 18:23:58 -07001567 return m.commonProperties.BazelConversionStatus.Bp2buildInfo
Liz Kammer2ada09a2021-08-11 00:17:36 -04001568}
1569
Liz Kammer6eff3232021-08-26 08:37:59 -04001570// AddUnconvertedBp2buildDep stores module name of a dependency that was not converted to Bazel.
1571func (b *baseModuleContext) AddUnconvertedBp2buildDep(dep string) {
Sasha Smundaka0954062022-08-02 18:23:58 -07001572 unconvertedDeps := &b.Module().base().commonProperties.BazelConversionStatus.UnconvertedDeps
Liz Kammer6eff3232021-08-26 08:37:59 -04001573 *unconvertedDeps = append(*unconvertedDeps, dep)
1574}
1575
Liz Kammerdaa09ef2021-12-15 15:35:38 -05001576// AddMissingBp2buildDep stores module name of a dependency that was not found in a Android.bp file.
1577func (b *baseModuleContext) AddMissingBp2buildDep(dep string) {
Sasha Smundaka0954062022-08-02 18:23:58 -07001578 missingDeps := &b.Module().base().commonProperties.BazelConversionStatus.MissingDeps
Liz Kammerdaa09ef2021-12-15 15:35:38 -05001579 *missingDeps = append(*missingDeps, dep)
1580}
1581
Liz Kammer6eff3232021-08-26 08:37:59 -04001582// GetUnconvertedBp2buildDeps returns the list of module names of this module's direct dependencies that
1583// were not converted to Bazel.
1584func (m *ModuleBase) GetUnconvertedBp2buildDeps() []string {
Sasha Smundaka0954062022-08-02 18:23:58 -07001585 return FirstUniqueStrings(m.commonProperties.BazelConversionStatus.UnconvertedDeps)
Liz Kammer6eff3232021-08-26 08:37:59 -04001586}
1587
Usta Shrestha56b84e72022-09-24 00:26:47 -04001588// GetMissingBp2buildDeps returns the list of module names that were not found in Android.bp files.
Liz Kammerdaa09ef2021-12-15 15:35:38 -05001589func (m *ModuleBase) GetMissingBp2buildDeps() []string {
Sasha Smundaka0954062022-08-02 18:23:58 -07001590 return FirstUniqueStrings(m.commonProperties.BazelConversionStatus.MissingDeps)
Liz Kammerdaa09ef2021-12-15 15:35:38 -05001591}
1592
Lukacs T. Berkid18d8ca2021-06-25 09:11:22 +02001593func (m *ModuleBase) AddJSONData(d *map[string]interface{}) {
Liz Kammer9525e712022-01-05 13:46:24 -05001594 (*d)["Android"] = map[string]interface{}{
1595 // Properties set in Blueprint or in blueprint of a defaults modules
1596 "SetProperties": m.propertiesWithValues(),
1597 }
1598}
1599
1600type propInfo struct {
Liz Kammer898e0762022-03-22 11:27:26 -04001601 Name string
1602 Type string
1603 Value string
1604 Values []string
Liz Kammer9525e712022-01-05 13:46:24 -05001605}
1606
1607func (m *ModuleBase) propertiesWithValues() []propInfo {
1608 var info []propInfo
1609 props := m.GetProperties()
1610
1611 var propsWithValues func(name string, v reflect.Value)
1612 propsWithValues = func(name string, v reflect.Value) {
1613 kind := v.Kind()
1614 switch kind {
1615 case reflect.Ptr, reflect.Interface:
1616 if v.IsNil() {
1617 return
1618 }
1619 propsWithValues(name, v.Elem())
1620 case reflect.Struct:
1621 if v.IsZero() {
1622 return
1623 }
1624 for i := 0; i < v.NumField(); i++ {
1625 namePrefix := name
1626 sTyp := v.Type().Field(i)
1627 if proptools.ShouldSkipProperty(sTyp) {
1628 continue
1629 }
1630 if name != "" && !strings.HasSuffix(namePrefix, ".") {
1631 namePrefix += "."
1632 }
1633 if !proptools.IsEmbedded(sTyp) {
1634 namePrefix += sTyp.Name
1635 }
1636 sVal := v.Field(i)
1637 propsWithValues(namePrefix, sVal)
1638 }
1639 case reflect.Array, reflect.Slice:
1640 if v.IsNil() {
1641 return
1642 }
1643 elKind := v.Type().Elem().Kind()
Liz Kammer898e0762022-03-22 11:27:26 -04001644 info = append(info, propInfo{Name: name, Type: elKind.String() + " " + kind.String(), Values: sliceReflectionValue(v)})
Liz Kammer9525e712022-01-05 13:46:24 -05001645 default:
Liz Kammer898e0762022-03-22 11:27:26 -04001646 info = append(info, propInfo{Name: name, Type: kind.String(), Value: reflectionValue(v)})
Liz Kammer9525e712022-01-05 13:46:24 -05001647 }
1648 }
1649
1650 for _, p := range props {
1651 propsWithValues("", reflect.ValueOf(p).Elem())
1652 }
Liz Kammer898e0762022-03-22 11:27:26 -04001653 sort.Slice(info, func(i, j int) bool {
1654 return info[i].Name < info[j].Name
1655 })
Liz Kammer9525e712022-01-05 13:46:24 -05001656 return info
Lukacs T. Berkid18d8ca2021-06-25 09:11:22 +02001657}
1658
Liz Kammer898e0762022-03-22 11:27:26 -04001659func reflectionValue(value reflect.Value) string {
1660 switch value.Kind() {
1661 case reflect.Bool:
1662 return fmt.Sprintf("%t", value.Bool())
1663 case reflect.Int64:
1664 return fmt.Sprintf("%d", value.Int())
1665 case reflect.String:
1666 return fmt.Sprintf("%s", value.String())
1667 case reflect.Struct:
1668 if value.IsZero() {
1669 return "{}"
1670 }
1671 length := value.NumField()
1672 vals := make([]string, length, length)
1673 for i := 0; i < length; i++ {
1674 sTyp := value.Type().Field(i)
1675 if proptools.ShouldSkipProperty(sTyp) {
1676 continue
1677 }
1678 name := sTyp.Name
1679 vals[i] = fmt.Sprintf("%s: %s", name, reflectionValue(value.Field(i)))
1680 }
1681 return fmt.Sprintf("%s{%s}", value.Type(), strings.Join(vals, ", "))
1682 case reflect.Array, reflect.Slice:
1683 vals := sliceReflectionValue(value)
1684 return fmt.Sprintf("[%s]", strings.Join(vals, ", "))
1685 }
1686 return ""
1687}
1688
1689func sliceReflectionValue(value reflect.Value) []string {
1690 length := value.Len()
1691 vals := make([]string, length, length)
1692 for i := 0; i < length; i++ {
1693 vals[i] = reflectionValue(value.Index(i))
1694 }
1695 return vals
1696}
1697
Paul Duffin44f1d842020-06-26 20:17:02 +01001698func (m *ModuleBase) ComponentDepsMutator(BottomUpMutatorContext) {}
1699
Colin Cross4157e882019-06-06 16:57:04 -07001700func (m *ModuleBase) DepsMutator(BottomUpMutatorContext) {}
Colin Cross5f692ec2019-02-01 16:53:07 -08001701
Usta355a5872021-12-01 15:16:32 -05001702// AddProperties "registers" the provided props
1703// each value in props MUST be a pointer to a struct
Colin Cross4157e882019-06-06 16:57:04 -07001704func (m *ModuleBase) AddProperties(props ...interface{}) {
1705 m.registerProps = append(m.registerProps, props...)
Colin Cross36242852017-06-23 15:06:31 -07001706}
1707
Colin Cross4157e882019-06-06 16:57:04 -07001708func (m *ModuleBase) GetProperties() []interface{} {
1709 return m.registerProps
Colin Cross3f40fa42015-01-30 17:27:36 -08001710}
1711
Colin Cross4157e882019-06-06 16:57:04 -07001712func (m *ModuleBase) BuildParamsForTests() []BuildParams {
Chih-Hung Hsiehb8082292021-09-09 23:20:39 -07001713 // Expand the references to module variables like $flags[0-9]*,
1714 // so we do not need to change many existing unit tests.
1715 // This looks like undoing the shareFlags optimization in cc's
1716 // transformSourceToObj, and should only affects unit tests.
1717 vars := m.VariablesForTests()
1718 buildParams := append([]BuildParams(nil), m.buildParams...)
Sasha Smundake198eaf2022-08-04 13:07:02 -07001719 for i := range buildParams {
Chih-Hung Hsiehb8082292021-09-09 23:20:39 -07001720 newArgs := make(map[string]string)
1721 for k, v := range buildParams[i].Args {
1722 newArgs[k] = v
1723 // Replaces both ${flags1} and $flags1 syntax.
1724 if strings.HasPrefix(v, "${") && strings.HasSuffix(v, "}") {
1725 if value, found := vars[v[2:len(v)-1]]; found {
1726 newArgs[k] = value
1727 }
1728 } else if strings.HasPrefix(v, "$") {
1729 if value, found := vars[v[1:]]; found {
1730 newArgs[k] = value
1731 }
1732 }
1733 }
1734 buildParams[i].Args = newArgs
1735 }
1736 return buildParams
Colin Crosscec81712017-07-13 14:43:27 -07001737}
1738
Colin Cross4157e882019-06-06 16:57:04 -07001739func (m *ModuleBase) RuleParamsForTests() map[blueprint.Rule]blueprint.RuleParams {
1740 return m.ruleParams
Colin Cross4c83e5c2019-02-25 14:54:28 -08001741}
1742
Colin Cross4157e882019-06-06 16:57:04 -07001743func (m *ModuleBase) VariablesForTests() map[string]string {
1744 return m.variables
Jaewoong Jung38e4fb22018-12-12 09:01:34 -08001745}
1746
Colin Crossce75d2c2016-10-06 16:12:58 -07001747// Name returns the name of the module. It may be overridden by individual module types, for
1748// example prebuilts will prepend prebuilt_ to the name.
Colin Cross4157e882019-06-06 16:57:04 -07001749func (m *ModuleBase) Name() string {
1750 return String(m.nameProperties.Name)
Colin Crossfc754582016-05-17 16:34:16 -07001751}
1752
Colin Cross9a362232019-07-01 15:32:45 -07001753// String returns a string that includes the module name and variants for printing during debugging.
1754func (m *ModuleBase) String() string {
1755 sb := strings.Builder{}
1756 sb.WriteString(m.commonProperties.DebugName)
1757 sb.WriteString("{")
1758 for i := range m.commonProperties.DebugMutators {
1759 if i != 0 {
1760 sb.WriteString(",")
1761 }
1762 sb.WriteString(m.commonProperties.DebugMutators[i])
1763 sb.WriteString(":")
1764 sb.WriteString(m.commonProperties.DebugVariations[i])
1765 }
1766 sb.WriteString("}")
1767 return sb.String()
1768}
1769
Colin Crossce75d2c2016-10-06 16:12:58 -07001770// BaseModuleName returns the name of the module as specified in the blueprints file.
Colin Cross4157e882019-06-06 16:57:04 -07001771func (m *ModuleBase) BaseModuleName() string {
1772 return String(m.nameProperties.Name)
Colin Crossce75d2c2016-10-06 16:12:58 -07001773}
1774
Colin Cross4157e882019-06-06 16:57:04 -07001775func (m *ModuleBase) base() *ModuleBase {
1776 return m
Colin Cross3f40fa42015-01-30 17:27:36 -08001777}
1778
Paul Duffine2453c72019-05-31 14:00:04 +01001779func (m *ModuleBase) qualifiedModuleId(ctx BaseModuleContext) qualifiedModuleName {
1780 return qualifiedModuleName{pkg: ctx.ModuleDir(), name: ctx.ModuleName()}
1781}
1782
1783func (m *ModuleBase) visibilityProperties() []visibilityProperty {
Paul Duffin63c6e182019-07-24 14:24:38 +01001784 return m.visibilityPropertyInfo
1785}
1786
Jingwen Chen40fd90a2020-06-15 05:24:19 +00001787func (m *ModuleBase) Dists() []Dist {
Paul Duffined875132020-09-02 13:08:57 +01001788 if len(m.distProperties.Dist.Targets) > 0 {
Jingwen Chen40fd90a2020-06-15 05:24:19 +00001789 // Make a copy of the underlying Dists slice to protect against
1790 // backing array modifications with repeated calls to this method.
Paul Duffined875132020-09-02 13:08:57 +01001791 distsCopy := append([]Dist(nil), m.distProperties.Dists...)
1792 return append(distsCopy, m.distProperties.Dist)
Jingwen Chen40fd90a2020-06-15 05:24:19 +00001793 } else {
Paul Duffined875132020-09-02 13:08:57 +01001794 return m.distProperties.Dists
Jingwen Chen40fd90a2020-06-15 05:24:19 +00001795 }
1796}
1797
1798func (m *ModuleBase) GenerateTaggedDistFiles(ctx BaseModuleContext) TaggedDistFiles {
Paul Duffin74f05592020-11-25 16:37:46 +00001799 var distFiles TaggedDistFiles
Jingwen Chen40fd90a2020-06-15 05:24:19 +00001800 for _, dist := range m.Dists() {
Paul Duffin74f05592020-11-25 16:37:46 +00001801 // If no tag is specified then it means to use the default dist paths so use
1802 // the special tag name which represents that.
1803 tag := proptools.StringDefault(dist.Tag, DefaultDistTag)
1804
Paul Duffinaf970a22020-11-23 23:32:56 +00001805 if outputFileProducer, ok := m.module.(OutputFileProducer); ok {
1806 // Call the OutputFiles(tag) method to get the paths associated with the tag.
1807 distFilesForTag, err := outputFileProducer.OutputFiles(tag)
Paul Duffin74f05592020-11-25 16:37:46 +00001808
Paul Duffinaf970a22020-11-23 23:32:56 +00001809 // If the tag was not supported and is not DefaultDistTag then it is an error.
1810 // Failing to find paths for DefaultDistTag is not an error. It just means
1811 // that the module type requires the legacy behavior.
1812 if err != nil && tag != DefaultDistTag {
1813 ctx.PropertyErrorf("dist.tag", "%s", err.Error())
1814 }
1815
1816 distFiles = distFiles.addPathsForTag(tag, distFilesForTag...)
1817 } else if tag != DefaultDistTag {
1818 // If the tag was specified then it is an error if the module does not
1819 // implement OutputFileProducer because there is no other way of accessing
1820 // the paths for the specified tag.
1821 ctx.PropertyErrorf("dist.tag",
1822 "tag %s not supported because the module does not implement OutputFileProducer", tag)
Jingwen Chen40fd90a2020-06-15 05:24:19 +00001823 }
Jingwen Chen40fd90a2020-06-15 05:24:19 +00001824 }
1825
1826 return distFiles
1827}
1828
Colin Cross4157e882019-06-06 16:57:04 -07001829func (m *ModuleBase) Target() Target {
1830 return m.commonProperties.CompileTarget
Dan Willemsen490fd492015-11-24 17:53:15 -08001831}
1832
Colin Cross4157e882019-06-06 16:57:04 -07001833func (m *ModuleBase) TargetPrimary() bool {
1834 return m.commonProperties.CompilePrimary
Colin Cross8b74d172016-09-13 09:59:14 -07001835}
1836
Colin Cross4157e882019-06-06 16:57:04 -07001837func (m *ModuleBase) MultiTargets() []Target {
1838 return m.commonProperties.CompileMultiTargets
Colin Crossee0bc3b2018-10-02 22:01:37 -07001839}
1840
Colin Cross4157e882019-06-06 16:57:04 -07001841func (m *ModuleBase) Os() OsType {
1842 return m.Target().Os
Dan Willemsen490fd492015-11-24 17:53:15 -08001843}
1844
Colin Cross4157e882019-06-06 16:57:04 -07001845func (m *ModuleBase) Host() bool {
Jiyong Park1613e552020-09-14 19:43:17 +09001846 return m.Os().Class == Host
Dan Willemsen97750522016-02-09 17:43:51 -08001847}
1848
Yo Chiangbba545e2020-06-09 16:15:37 +08001849func (m *ModuleBase) Device() bool {
1850 return m.Os().Class == Device
1851}
1852
Colin Cross4157e882019-06-06 16:57:04 -07001853func (m *ModuleBase) Arch() Arch {
1854 return m.Target().Arch
Dan Willemsen97750522016-02-09 17:43:51 -08001855}
1856
Colin Cross4157e882019-06-06 16:57:04 -07001857func (m *ModuleBase) ArchSpecific() bool {
1858 return m.commonProperties.ArchSpecific
Dan Willemsen0b24c742016-10-04 15:13:37 -07001859}
1860
Paul Duffin1356d8c2020-02-25 19:26:33 +00001861// True if the current variant is a CommonOS variant, false otherwise.
1862func (m *ModuleBase) IsCommonOSVariant() bool {
1863 return m.commonProperties.CommonOSVariant
1864}
1865
Colin Cross34037c62020-11-17 13:19:17 -08001866// supportsTarget returns true if the given Target is supported by the current module.
1867func (m *ModuleBase) supportsTarget(target Target) bool {
1868 switch target.Os.Class {
1869 case Host:
1870 if target.HostCross {
1871 return m.HostCrossSupported()
1872 } else {
1873 return m.HostSupported()
Colin Crossa1ad8d12016-06-01 17:09:44 -07001874 }
Colin Cross34037c62020-11-17 13:19:17 -08001875 case Device:
1876 return m.DeviceSupported()
Colin Crossa1ad8d12016-06-01 17:09:44 -07001877 default:
Jiyong Park1613e552020-09-14 19:43:17 +09001878 return false
Colin Crossa1ad8d12016-06-01 17:09:44 -07001879 }
Colin Cross3f40fa42015-01-30 17:27:36 -08001880}
1881
Colin Cross34037c62020-11-17 13:19:17 -08001882// DeviceSupported returns true if the current module is supported and enabled for device targets,
1883// i.e. the factory method set the HostOrDeviceSupported value to include device support and
1884// the device support is enabled by default or enabled by the device_supported property.
Colin Cross4157e882019-06-06 16:57:04 -07001885func (m *ModuleBase) DeviceSupported() bool {
Colin Cross34037c62020-11-17 13:19:17 -08001886 hod := m.commonProperties.HostOrDeviceSupported
1887 // deviceEnabled is true if the device_supported property is true or the HostOrDeviceSupported
1888 // value has the deviceDefault bit set.
1889 deviceEnabled := proptools.BoolDefault(m.hostAndDeviceProperties.Device_supported, hod&deviceDefault != 0)
1890 return hod&deviceSupported != 0 && deviceEnabled
Colin Cross3f40fa42015-01-30 17:27:36 -08001891}
1892
Colin Cross34037c62020-11-17 13:19:17 -08001893// HostSupported returns true if the current module is supported and enabled for host targets,
1894// i.e. the factory method set the HostOrDeviceSupported value to include host support and
1895// the host support is enabled by default or enabled by the host_supported property.
Paul Duffine44358f2019-11-26 18:04:12 +00001896func (m *ModuleBase) HostSupported() bool {
Colin Cross34037c62020-11-17 13:19:17 -08001897 hod := m.commonProperties.HostOrDeviceSupported
1898 // hostEnabled is true if the host_supported property is true or the HostOrDeviceSupported
1899 // value has the hostDefault bit set.
1900 hostEnabled := proptools.BoolDefault(m.hostAndDeviceProperties.Host_supported, hod&hostDefault != 0)
1901 return hod&hostSupported != 0 && hostEnabled
1902}
1903
1904// HostCrossSupported returns true if the current module is supported and enabled for host cross
1905// targets, i.e. the factory method set the HostOrDeviceSupported value to include host cross
1906// support and the host cross support is enabled by default or enabled by the
1907// host_supported property.
1908func (m *ModuleBase) HostCrossSupported() bool {
1909 hod := m.commonProperties.HostOrDeviceSupported
1910 // hostEnabled is true if the host_supported property is true or the HostOrDeviceSupported
1911 // value has the hostDefault bit set.
1912 hostEnabled := proptools.BoolDefault(m.hostAndDeviceProperties.Host_supported, hod&hostDefault != 0)
1913 return hod&hostCrossSupported != 0 && hostEnabled
Paul Duffine44358f2019-11-26 18:04:12 +00001914}
1915
Colin Cross4157e882019-06-06 16:57:04 -07001916func (m *ModuleBase) Platform() bool {
Justin Yund5f6c822019-06-25 16:47:17 +09001917 return !m.DeviceSpecific() && !m.SocSpecific() && !m.ProductSpecific() && !m.SystemExtSpecific()
Jiyong Parkc678ad32018-04-10 13:07:10 +09001918}
1919
Colin Cross4157e882019-06-06 16:57:04 -07001920func (m *ModuleBase) DeviceSpecific() bool {
1921 return Bool(m.commonProperties.Device_specific)
Jiyong Parkc678ad32018-04-10 13:07:10 +09001922}
1923
Colin Cross4157e882019-06-06 16:57:04 -07001924func (m *ModuleBase) SocSpecific() bool {
1925 return Bool(m.commonProperties.Vendor) || Bool(m.commonProperties.Proprietary) || Bool(m.commonProperties.Soc_specific)
Jiyong Parkc678ad32018-04-10 13:07:10 +09001926}
1927
Colin Cross4157e882019-06-06 16:57:04 -07001928func (m *ModuleBase) ProductSpecific() bool {
1929 return Bool(m.commonProperties.Product_specific)
Jiyong Parkc678ad32018-04-10 13:07:10 +09001930}
1931
Justin Yund5f6c822019-06-25 16:47:17 +09001932func (m *ModuleBase) SystemExtSpecific() bool {
1933 return Bool(m.commonProperties.System_ext_specific)
Dario Frenifd05a742018-05-29 13:28:54 +01001934}
1935
Colin Crossc2d24052020-05-13 11:05:02 -07001936// RequiresStableAPIs returns true if the module will be installed to a partition that may
1937// be updated separately from the system image.
1938func (m *ModuleBase) RequiresStableAPIs(ctx BaseModuleContext) bool {
1939 return m.SocSpecific() || m.DeviceSpecific() ||
1940 (m.ProductSpecific() && ctx.Config().EnforceProductPartitionInterface())
1941}
1942
Bill Peckhamfff3f8a2020-03-20 18:33:20 -07001943func (m *ModuleBase) PartitionTag(config DeviceConfig) string {
1944 partition := "system"
1945 if m.SocSpecific() {
1946 // A SoC-specific module could be on the vendor partition at
1947 // "vendor" or the system partition at "system/vendor".
1948 if config.VendorPath() == "vendor" {
1949 partition = "vendor"
1950 }
1951 } else if m.DeviceSpecific() {
1952 // A device-specific module could be on the odm partition at
1953 // "odm", the vendor partition at "vendor/odm", or the system
1954 // partition at "system/vendor/odm".
1955 if config.OdmPath() == "odm" {
1956 partition = "odm"
Ramy Medhat944839a2020-03-31 22:14:52 -04001957 } else if strings.HasPrefix(config.OdmPath(), "vendor/") {
Bill Peckhamfff3f8a2020-03-20 18:33:20 -07001958 partition = "vendor"
1959 }
1960 } else if m.ProductSpecific() {
1961 // A product-specific module could be on the product partition
1962 // at "product" or the system partition at "system/product".
1963 if config.ProductPath() == "product" {
1964 partition = "product"
1965 }
1966 } else if m.SystemExtSpecific() {
1967 // A system_ext-specific module could be on the system_ext
1968 // partition at "system_ext" or the system partition at
1969 // "system/system_ext".
1970 if config.SystemExtPath() == "system_ext" {
1971 partition = "system_ext"
1972 }
1973 }
1974 return partition
1975}
1976
Colin Cross4157e882019-06-06 16:57:04 -07001977func (m *ModuleBase) Enabled() bool {
Justin Yun32f053b2020-07-31 23:07:17 +09001978 if m.commonProperties.ForcedDisabled {
1979 return false
1980 }
Colin Cross08d6f8f2020-11-19 02:33:19 +00001981 if m.commonProperties.Enabled == nil {
1982 return !m.Os().DefaultDisabled
1983 }
1984 return *m.commonProperties.Enabled
Colin Cross3f40fa42015-01-30 17:27:36 -08001985}
1986
Inseob Kimeec88e12020-01-22 11:11:29 +09001987func (m *ModuleBase) Disable() {
Justin Yun32f053b2020-07-31 23:07:17 +09001988 m.commonProperties.ForcedDisabled = true
Inseob Kimeec88e12020-01-22 11:11:29 +09001989}
1990
Colin Crossa9c8c9f2020-12-16 10:20:23 -08001991// HideFromMake marks this variant so that it is not emitted in the generated Android.mk file.
1992func (m *ModuleBase) HideFromMake() {
1993 m.commonProperties.HideFromMake = true
1994}
1995
1996// IsHideFromMake returns true if HideFromMake was previously called.
1997func (m *ModuleBase) IsHideFromMake() bool {
1998 return m.commonProperties.HideFromMake == true
1999}
2000
2001// SkipInstall marks this variant to not create install rules when ctx.Install* are called.
Colin Cross4157e882019-06-06 16:57:04 -07002002func (m *ModuleBase) SkipInstall() {
2003 m.commonProperties.SkipInstall = true
Colin Crossce75d2c2016-10-06 16:12:58 -07002004}
2005
Martin Stjernholm9e7f45e2020-12-23 03:50:30 +00002006// IsSkipInstall returns true if this variant is marked to not create install
2007// rules when ctx.Install* are called.
2008func (m *ModuleBase) IsSkipInstall() bool {
2009 return m.commonProperties.SkipInstall
2010}
2011
Iván Budnik295da162023-03-10 16:11:26 +00002012// Similar to HideFromMake, but if the AndroidMk entry would set
2013// LOCAL_UNINSTALLABLE_MODULE then this variant may still output that entry
2014// rather than leaving it out altogether. That happens in cases where it would
2015// have other side effects, in particular when it adds a NOTICE file target,
2016// which other install targets might depend on.
2017func (m *ModuleBase) MakeUninstallable() {
Colin Crossbd3a16b2023-04-25 11:30:51 -07002018 m.commonProperties.UninstallableApexPlatformVariant = true
Iván Budnik295da162023-03-10 16:11:26 +00002019 m.HideFromMake()
2020}
2021
Liz Kammer5ca3a622020-08-05 15:40:41 -07002022func (m *ModuleBase) ReplacedByPrebuilt() {
2023 m.commonProperties.ReplacedByPrebuilt = true
Colin Crossa9c8c9f2020-12-16 10:20:23 -08002024 m.HideFromMake()
Liz Kammer5ca3a622020-08-05 15:40:41 -07002025}
2026
2027func (m *ModuleBase) IsReplacedByPrebuilt() bool {
2028 return m.commonProperties.ReplacedByPrebuilt
2029}
2030
Colin Cross4157e882019-06-06 16:57:04 -07002031func (m *ModuleBase) ExportedToMake() bool {
2032 return m.commonProperties.NamespaceExportedToMake
Jiyong Park374510b2018-03-19 18:23:01 +09002033}
2034
Justin Yun1871f902023-04-07 20:13:19 +09002035func (m *ModuleBase) EffectiveLicenseKinds() []string {
2036 return m.commonProperties.Effective_license_kinds
2037}
2038
Justin Yun885a7de2021-06-29 20:34:53 +09002039func (m *ModuleBase) EffectiveLicenseFiles() Paths {
Bob Badour4101c712022-02-09 11:54:35 -08002040 result := make(Paths, 0, len(m.commonProperties.Effective_license_text))
2041 for _, p := range m.commonProperties.Effective_license_text {
2042 result = append(result, p.Path)
2043 }
2044 return result
Justin Yun885a7de2021-06-29 20:34:53 +09002045}
2046
Colin Crosse9fe2942020-11-10 18:12:15 -08002047// computeInstallDeps finds the installed paths of all dependencies that have a dependency
Colin Crossbd3a16b2023-04-25 11:30:51 -07002048// tag that is annotated as needing installation via the isInstallDepNeeded method.
Colin Crossffe6b9d2020-12-01 15:40:06 -08002049func (m *ModuleBase) computeInstallDeps(ctx ModuleContext) ([]*installPathsDepSet, []*packagingSpecsDepSet) {
Colin Cross5d583952020-11-24 16:21:24 -08002050 var installDeps []*installPathsDepSet
Colin Crossffe6b9d2020-12-01 15:40:06 -08002051 var packagingSpecs []*packagingSpecsDepSet
Colin Cross5d583952020-11-24 16:21:24 -08002052 ctx.VisitDirectDeps(func(dep Module) {
Colin Crossbd3a16b2023-04-25 11:30:51 -07002053 if isInstallDepNeeded(dep, ctx.OtherModuleDependencyTag(dep)) {
2054 // Installation is still handled by Make, so anything hidden from Make is not
2055 // installable.
2056 if !dep.IsHideFromMake() && !dep.IsSkipInstall() {
2057 installDeps = append(installDeps, dep.base().installFilesDepSet)
2058 }
2059 // Add packaging deps even when the dependency is not installed so that uninstallable
2060 // modules can still be packaged. Often the package will be installed instead.
Colin Crossffe6b9d2020-12-01 15:40:06 -08002061 packagingSpecs = append(packagingSpecs, dep.base().packagingSpecsDepSet)
Colin Cross897266e2020-02-13 13:22:08 -08002062 }
2063 })
Colin Cross3f40fa42015-01-30 17:27:36 -08002064
Colin Crossffe6b9d2020-12-01 15:40:06 -08002065 return installDeps, packagingSpecs
Colin Cross3f40fa42015-01-30 17:27:36 -08002066}
2067
Colin Crossbd3a16b2023-04-25 11:30:51 -07002068// isInstallDepNeeded returns true if installing the output files of the current module
2069// should also install the output files of the given dependency and dependency tag.
2070func isInstallDepNeeded(dep Module, tag blueprint.DependencyTag) bool {
2071 // Don't add a dependency from the platform to a library provided by an apex.
2072 if dep.base().commonProperties.UninstallableApexPlatformVariant {
2073 return false
2074 }
2075 // Only install modules if the dependency tag is an InstallDepNeeded tag.
2076 return IsInstallDepNeededTag(tag)
2077}
2078
Jiyong Park4dc2a1a2020-09-28 17:46:22 +09002079func (m *ModuleBase) FilesToInstall() InstallPaths {
Colin Cross4157e882019-06-06 16:57:04 -07002080 return m.installFiles
Colin Cross3f40fa42015-01-30 17:27:36 -08002081}
2082
Jiyong Park073ea552020-11-09 14:08:34 +09002083func (m *ModuleBase) PackagingSpecs() []PackagingSpec {
2084 return m.packagingSpecs
2085}
2086
Colin Crossffe6b9d2020-12-01 15:40:06 -08002087func (m *ModuleBase) TransitivePackagingSpecs() []PackagingSpec {
2088 return m.packagingSpecsDepSet.ToList()
2089}
2090
Colin Cross4157e882019-06-06 16:57:04 -07002091func (m *ModuleBase) NoAddressSanitizer() bool {
2092 return m.noAddressSanitizer
Colin Cross3f40fa42015-01-30 17:27:36 -08002093}
2094
Colin Cross4157e882019-06-06 16:57:04 -07002095func (m *ModuleBase) InstallInData() bool {
Dan Willemsen782a2d12015-12-21 14:55:28 -08002096 return false
2097}
2098
Jaewoong Jung0949f312019-09-11 10:25:18 -07002099func (m *ModuleBase) InstallInTestcases() bool {
2100 return false
2101}
2102
Colin Cross4157e882019-06-06 16:57:04 -07002103func (m *ModuleBase) InstallInSanitizerDir() bool {
Vishwath Mohan1dd88392017-03-29 22:00:18 -07002104 return false
2105}
2106
Yifan Hong1b3348d2020-01-21 15:53:22 -08002107func (m *ModuleBase) InstallInRamdisk() bool {
2108 return Bool(m.commonProperties.Ramdisk)
2109}
2110
Yifan Hong60e0cfb2020-10-21 15:17:56 -07002111func (m *ModuleBase) InstallInVendorRamdisk() bool {
2112 return Bool(m.commonProperties.Vendor_ramdisk)
2113}
2114
Inseob Kim08758f02021-04-08 21:13:22 +09002115func (m *ModuleBase) InstallInDebugRamdisk() bool {
2116 return Bool(m.commonProperties.Debug_ramdisk)
2117}
2118
Colin Cross4157e882019-06-06 16:57:04 -07002119func (m *ModuleBase) InstallInRecovery() bool {
2120 return Bool(m.commonProperties.Recovery)
Jiyong Parkf9332f12018-02-01 00:54:12 +09002121}
2122
Kiyoung Kimae11c232021-07-19 11:38:04 +09002123func (m *ModuleBase) InstallInVendor() bool {
Kiyoung Kimf160f7f2022-11-29 10:58:08 +09002124 return Bool(m.commonProperties.Vendor) || Bool(m.commonProperties.Soc_specific) || Bool(m.commonProperties.Proprietary)
Kiyoung Kimae11c232021-07-19 11:38:04 +09002125}
2126
Colin Cross90ba5f42019-10-02 11:10:58 -07002127func (m *ModuleBase) InstallInRoot() bool {
2128 return false
2129}
2130
Jiyong Park87788b52020-09-01 12:37:45 +09002131func (m *ModuleBase) InstallForceOS() (*OsType, *ArchType) {
2132 return nil, nil
Colin Cross6e359402020-02-10 15:29:54 -08002133}
2134
Colin Cross4157e882019-06-06 16:57:04 -07002135func (m *ModuleBase) Owner() string {
2136 return String(m.commonProperties.Owner)
Sundong Ahn4fd04bb2018-08-31 18:01:37 +09002137}
2138
Colin Cross7228ecd2019-11-18 16:00:16 -08002139func (m *ModuleBase) setImageVariation(variant string) {
2140 m.commonProperties.ImageVariation = variant
2141}
2142
2143func (m *ModuleBase) ImageVariation() blueprint.Variation {
2144 return blueprint.Variation{
2145 Mutator: "image",
2146 Variation: m.base().commonProperties.ImageVariation,
2147 }
2148}
2149
Paul Duffin9b76c0b2020-03-12 10:24:35 +00002150func (m *ModuleBase) getVariationByMutatorName(mutator string) string {
2151 for i, v := range m.commonProperties.DebugMutators {
2152 if v == mutator {
2153 return m.commonProperties.DebugVariations[i]
2154 }
2155 }
2156
2157 return ""
2158}
2159
Yifan Hong1b3348d2020-01-21 15:53:22 -08002160func (m *ModuleBase) InRamdisk() bool {
2161 return m.base().commonProperties.ImageVariation == RamdiskVariation
2162}
2163
Yifan Hong60e0cfb2020-10-21 15:17:56 -07002164func (m *ModuleBase) InVendorRamdisk() bool {
2165 return m.base().commonProperties.ImageVariation == VendorRamdiskVariation
2166}
2167
Inseob Kim08758f02021-04-08 21:13:22 +09002168func (m *ModuleBase) InDebugRamdisk() bool {
2169 return m.base().commonProperties.ImageVariation == DebugRamdiskVariation
2170}
2171
Colin Cross7228ecd2019-11-18 16:00:16 -08002172func (m *ModuleBase) InRecovery() bool {
2173 return m.base().commonProperties.ImageVariation == RecoveryVariation
2174}
2175
Jiyong Park6a8cf5f2019-12-30 16:31:09 +09002176func (m *ModuleBase) RequiredModuleNames() []string {
2177 return m.base().commonProperties.Required
2178}
2179
2180func (m *ModuleBase) HostRequiredModuleNames() []string {
2181 return m.base().commonProperties.Host_required
2182}
2183
2184func (m *ModuleBase) TargetRequiredModuleNames() []string {
2185 return m.base().commonProperties.Target_required
2186}
2187
Inseob Kim8471cda2019-11-15 09:59:12 +09002188func (m *ModuleBase) InitRc() Paths {
2189 return append(Paths{}, m.initRcPaths...)
2190}
2191
2192func (m *ModuleBase) VintfFragments() Paths {
2193 return append(Paths{}, m.vintfFragmentsPaths...)
2194}
2195
Yu Liu4ae55d12022-01-05 17:17:23 -08002196func (m *ModuleBase) CompileMultilib() *string {
2197 return m.base().commonProperties.Compile_multilib
2198}
2199
Colin Cross4acaea92021-12-10 23:05:02 +00002200// SetLicenseInstallMap stores the set of dependency module:location mappings for files in an
2201// apex container for use when generation the license metadata file.
2202func (m *ModuleBase) SetLicenseInstallMap(installMap []string) {
2203 m.licenseInstallMap = append(m.licenseInstallMap, installMap...)
2204}
2205
Colin Cross4157e882019-06-06 16:57:04 -07002206func (m *ModuleBase) generateModuleTarget(ctx ModuleContext) {
Colin Cross897266e2020-02-13 13:22:08 -08002207 var allInstalledFiles InstallPaths
2208 var allCheckbuildFiles Paths
Colin Cross0875c522017-11-28 17:34:01 -08002209 ctx.VisitAllModuleVariants(func(module Module) {
2210 a := module.base()
Colin Crossc9404352015-03-26 16:10:12 -07002211 allInstalledFiles = append(allInstalledFiles, a.installFiles...)
Chih-Hung Hsieh80783772021-10-11 16:46:56 -07002212 // A module's -checkbuild phony targets should
Chih-Hung Hsieha3d135b2021-10-14 20:32:53 -07002213 // not be created if the module is not exported to make.
2214 // Those could depend on the build target and fail to compile
2215 // for the current build target.
2216 if !ctx.Config().KatiEnabled() || !shouldSkipAndroidMkProcessing(a) {
2217 allCheckbuildFiles = append(allCheckbuildFiles, a.checkbuildFiles...)
Chih-Hung Hsieha3d135b2021-10-14 20:32:53 -07002218 }
Colin Cross3f40fa42015-01-30 17:27:36 -08002219 })
2220
Colin Cross0875c522017-11-28 17:34:01 -08002221 var deps Paths
Colin Cross9454bfa2015-03-17 13:24:18 -07002222
Colin Cross133ebef2020-08-14 17:38:45 -07002223 namespacePrefix := ctx.Namespace().id
Jeff Gaston088e29e2017-11-29 16:47:17 -08002224 if namespacePrefix != "" {
2225 namespacePrefix = namespacePrefix + "-"
2226 }
2227
Colin Cross3f40fa42015-01-30 17:27:36 -08002228 if len(allInstalledFiles) > 0 {
Colin Crossc3d87d32020-06-04 13:25:17 -07002229 name := namespacePrefix + ctx.ModuleName() + "-install"
2230 ctx.Phony(name, allInstalledFiles.Paths()...)
2231 m.installTarget = PathForPhony(ctx, name)
2232 deps = append(deps, m.installTarget)
Colin Cross9454bfa2015-03-17 13:24:18 -07002233 }
2234
2235 if len(allCheckbuildFiles) > 0 {
Colin Crossc3d87d32020-06-04 13:25:17 -07002236 name := namespacePrefix + ctx.ModuleName() + "-checkbuild"
2237 ctx.Phony(name, allCheckbuildFiles...)
2238 m.checkbuildTarget = PathForPhony(ctx, name)
2239 deps = append(deps, m.checkbuildTarget)
Colin Cross9454bfa2015-03-17 13:24:18 -07002240 }
2241
2242 if len(deps) > 0 {
Dan Willemsen5ba07e82015-12-11 13:51:06 -08002243 suffix := ""
Jingwen Chencda22c92020-11-23 00:22:30 -05002244 if ctx.Config().KatiEnabled() {
Dan Willemsen5ba07e82015-12-11 13:51:06 -08002245 suffix = "-soong"
2246 }
2247
Colin Crossc3d87d32020-06-04 13:25:17 -07002248 ctx.Phony(namespacePrefix+ctx.ModuleName()+suffix, deps...)
Colin Cross1f8c52b2015-06-16 16:38:17 -07002249
Colin Cross4157e882019-06-06 16:57:04 -07002250 m.blueprintDir = ctx.ModuleDir()
Colin Cross3f40fa42015-01-30 17:27:36 -08002251 }
2252}
2253
Colin Crossc34d2322020-01-03 15:23:27 -08002254func determineModuleKind(m *ModuleBase, ctx blueprint.EarlyModuleContext) moduleKind {
Colin Cross4157e882019-06-06 16:57:04 -07002255 var socSpecific = Bool(m.commonProperties.Vendor) || Bool(m.commonProperties.Proprietary) || Bool(m.commonProperties.Soc_specific)
2256 var deviceSpecific = Bool(m.commonProperties.Device_specific)
2257 var productSpecific = Bool(m.commonProperties.Product_specific)
Justin Yund5f6c822019-06-25 16:47:17 +09002258 var systemExtSpecific = Bool(m.commonProperties.System_ext_specific)
Jiyong Park2db76922017-11-08 16:03:48 +09002259
Dario Frenifd05a742018-05-29 13:28:54 +01002260 msg := "conflicting value set here"
2261 if socSpecific && deviceSpecific {
2262 ctx.PropertyErrorf("device_specific", "a module cannot be specific to SoC and device at the same time.")
Colin Cross4157e882019-06-06 16:57:04 -07002263 if Bool(m.commonProperties.Vendor) {
Jiyong Park2db76922017-11-08 16:03:48 +09002264 ctx.PropertyErrorf("vendor", msg)
2265 }
Colin Cross4157e882019-06-06 16:57:04 -07002266 if Bool(m.commonProperties.Proprietary) {
Jiyong Park2db76922017-11-08 16:03:48 +09002267 ctx.PropertyErrorf("proprietary", msg)
2268 }
Colin Cross4157e882019-06-06 16:57:04 -07002269 if Bool(m.commonProperties.Soc_specific) {
Jiyong Park2db76922017-11-08 16:03:48 +09002270 ctx.PropertyErrorf("soc_specific", msg)
2271 }
2272 }
2273
Justin Yund5f6c822019-06-25 16:47:17 +09002274 if productSpecific && systemExtSpecific {
2275 ctx.PropertyErrorf("product_specific", "a module cannot be specific to product and system_ext at the same time.")
2276 ctx.PropertyErrorf("system_ext_specific", msg)
Dario Frenifd05a742018-05-29 13:28:54 +01002277 }
2278
Justin Yund5f6c822019-06-25 16:47:17 +09002279 if (socSpecific || deviceSpecific) && (productSpecific || systemExtSpecific) {
Dario Frenifd05a742018-05-29 13:28:54 +01002280 if productSpecific {
2281 ctx.PropertyErrorf("product_specific", "a module cannot be specific to SoC or device and product at the same time.")
2282 } else {
Justin Yund5f6c822019-06-25 16:47:17 +09002283 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 +01002284 }
2285 if deviceSpecific {
2286 ctx.PropertyErrorf("device_specific", msg)
2287 } else {
Colin Cross4157e882019-06-06 16:57:04 -07002288 if Bool(m.commonProperties.Vendor) {
Dario Frenifd05a742018-05-29 13:28:54 +01002289 ctx.PropertyErrorf("vendor", msg)
2290 }
Colin Cross4157e882019-06-06 16:57:04 -07002291 if Bool(m.commonProperties.Proprietary) {
Dario Frenifd05a742018-05-29 13:28:54 +01002292 ctx.PropertyErrorf("proprietary", msg)
2293 }
Colin Cross4157e882019-06-06 16:57:04 -07002294 if Bool(m.commonProperties.Soc_specific) {
Dario Frenifd05a742018-05-29 13:28:54 +01002295 ctx.PropertyErrorf("soc_specific", msg)
2296 }
2297 }
2298 }
2299
Jiyong Park2db76922017-11-08 16:03:48 +09002300 if productSpecific {
2301 return productSpecificModule
Justin Yund5f6c822019-06-25 16:47:17 +09002302 } else if systemExtSpecific {
2303 return systemExtSpecificModule
Jiyong Park2db76922017-11-08 16:03:48 +09002304 } else if deviceSpecific {
2305 return deviceSpecificModule
2306 } else if socSpecific {
2307 return socSpecificModule
2308 } else {
2309 return platformModule
2310 }
2311}
2312
Colin Crossc34d2322020-01-03 15:23:27 -08002313func (m *ModuleBase) earlyModuleContextFactory(ctx blueprint.EarlyModuleContext) earlyModuleContext {
Colin Cross1184b642019-12-30 18:43:07 -08002314 return earlyModuleContext{
Colin Crossc34d2322020-01-03 15:23:27 -08002315 EarlyModuleContext: ctx,
2316 kind: determineModuleKind(m, ctx),
2317 config: ctx.Config().(Config),
Colin Cross3f40fa42015-01-30 17:27:36 -08002318 }
Colin Cross3f40fa42015-01-30 17:27:36 -08002319}
2320
Colin Cross1184b642019-12-30 18:43:07 -08002321func (m *ModuleBase) baseModuleContextFactory(ctx blueprint.BaseModuleContext) baseModuleContext {
2322 return baseModuleContext{
2323 bp: ctx,
2324 earlyModuleContext: m.earlyModuleContextFactory(ctx),
2325 os: m.commonProperties.CompileOS,
2326 target: m.commonProperties.CompileTarget,
2327 targetPrimary: m.commonProperties.CompilePrimary,
2328 multiTargets: m.commonProperties.CompileMultiTargets,
2329 }
2330}
2331
Colin Cross4157e882019-06-06 16:57:04 -07002332func (m *ModuleBase) GenerateBuildActions(blueprintCtx blueprint.ModuleContext) {
Colin Cross25de6c32019-06-06 14:29:25 -07002333 ctx := &moduleContext{
Colin Cross0ea8ba82019-06-06 14:33:29 -07002334 module: m.module,
Colin Crossdc35e212019-06-06 16:13:11 -07002335 bp: blueprintCtx,
Colin Cross0ea8ba82019-06-06 14:33:29 -07002336 baseModuleContext: m.baseModuleContextFactory(blueprintCtx),
Colin Cross0ea8ba82019-06-06 14:33:29 -07002337 variables: make(map[string]string),
Colin Cross3f40fa42015-01-30 17:27:36 -08002338 }
2339
Colin Crossaa1cab02022-01-28 14:49:24 -08002340 m.licenseMetadataFile = PathForModuleOut(ctx, "meta_lic")
2341
Colin Crossffe6b9d2020-12-01 15:40:06 -08002342 dependencyInstallFiles, dependencyPackagingSpecs := m.computeInstallDeps(ctx)
Colin Cross5d583952020-11-24 16:21:24 -08002343 // set m.installFilesDepSet to only the transitive dependencies to be used as the dependencies
2344 // of installed files of this module. It will be replaced by a depset including the installed
2345 // files of this module at the end for use by modules that depend on this one.
2346 m.installFilesDepSet = newInstallPathsDepSet(nil, dependencyInstallFiles)
2347
Colin Cross6c4f21f2019-06-06 15:41:36 -07002348 // Temporarily continue to call blueprintCtx.GetMissingDependencies() to maintain the previous behavior of never
2349 // reporting missing dependency errors in Blueprint when AllowMissingDependencies == true.
2350 // TODO: This will be removed once defaults modules handle missing dependency errors
2351 blueprintCtx.GetMissingDependencies()
2352
Colin Crossdc35e212019-06-06 16:13:11 -07002353 // For the final GenerateAndroidBuildActions pass, require that all visited dependencies Soong modules and
Paul Duffin1356d8c2020-02-25 19:26:33 +00002354 // are enabled. Unless the module is a CommonOS variant which may have dependencies on disabled variants
2355 // (because the dependencies are added before the modules are disabled). The
2356 // GetOsSpecificVariantsOfCommonOSVariant(...) method will ensure that the disabled variants are
2357 // ignored.
2358 ctx.baseModuleContext.strictVisitDeps = !m.IsCommonOSVariant()
Colin Crossdc35e212019-06-06 16:13:11 -07002359
Colin Cross4c83e5c2019-02-25 14:54:28 -08002360 if ctx.config.captureBuild {
2361 ctx.ruleParams = make(map[blueprint.Rule]blueprint.RuleParams)
2362 }
2363
Colin Cross67a5c132017-05-09 13:45:28 -07002364 desc := "//" + ctx.ModuleDir() + ":" + ctx.ModuleName() + " "
2365 var suffix []string
Colin Cross0875c522017-11-28 17:34:01 -08002366 if ctx.Os().Class != Device && ctx.Os().Class != Generic {
2367 suffix = append(suffix, ctx.Os().String())
Colin Cross67a5c132017-05-09 13:45:28 -07002368 }
Colin Cross0875c522017-11-28 17:34:01 -08002369 if !ctx.PrimaryArch() {
2370 suffix = append(suffix, ctx.Arch().ArchType.String())
Colin Cross67a5c132017-05-09 13:45:28 -07002371 }
Colin Cross56a83212020-09-15 18:30:11 -07002372 if apexInfo := ctx.Provider(ApexInfoProvider).(ApexInfo); !apexInfo.IsForPlatform() {
2373 suffix = append(suffix, apexInfo.ApexVariationName)
Dan Willemsenb13a9482020-02-14 11:25:54 -08002374 }
Colin Cross67a5c132017-05-09 13:45:28 -07002375
2376 ctx.Variable(pctx, "moduleDesc", desc)
2377
2378 s := ""
2379 if len(suffix) > 0 {
2380 s = " [" + strings.Join(suffix, " ") + "]"
2381 }
2382 ctx.Variable(pctx, "moduleDescSuffix", s)
2383
Dan Willemsen569edc52018-11-19 09:33:29 -08002384 // Some common property checks for properties that will be used later in androidmk.go
Paul Duffin89968e32020-11-23 18:17:03 +00002385 checkDistProperties(ctx, "dist", &m.distProperties.Dist)
Sasha Smundake198eaf2022-08-04 13:07:02 -07002386 for i := range m.distProperties.Dists {
Paul Duffin89968e32020-11-23 18:17:03 +00002387 checkDistProperties(ctx, fmt.Sprintf("dists[%d]", i), &m.distProperties.Dists[i])
Dan Willemsen569edc52018-11-19 09:33:29 -08002388 }
2389
Colin Cross4157e882019-06-06 16:57:04 -07002390 if m.Enabled() {
Jooyung Hand48f3c32019-08-23 11:18:57 +09002391 // ensure all direct android.Module deps are enabled
2392 ctx.VisitDirectDepsBlueprint(func(bm blueprint.Module) {
Martin Stjernholm0e4cceb2021-05-13 02:38:35 +01002393 if m, ok := bm.(Module); ok {
2394 ctx.validateAndroidModule(bm, ctx.OtherModuleDependencyTag(m), ctx.baseModuleContext.strictVisitDeps)
Jooyung Hand48f3c32019-08-23 11:18:57 +09002395 }
2396 })
2397
Bob Badour37af0462021-01-07 03:34:31 +00002398 licensesPropertyFlattener(ctx)
2399 if ctx.Failed() {
2400 return
2401 }
2402
Chris Parsonsf874e462022-05-10 13:50:12 -04002403 if mixedBuildMod, handled := m.isHandledByBazel(ctx); handled {
2404 mixedBuildMod.ProcessBazelQueryResponse(ctx)
2405 } else {
2406 m.module.GenerateAndroidBuildActions(ctx)
2407 }
Jaewoong Jung5b425e22019-06-17 17:40:56 -07002408 if ctx.Failed() {
2409 return
2410 }
2411
Jiyong Park4d861072021-03-03 20:02:42 +09002412 m.initRcPaths = PathsForModuleSrc(ctx, m.commonProperties.Init_rc)
2413 rcDir := PathForModuleInstall(ctx, "etc", "init")
2414 for _, src := range m.initRcPaths {
2415 ctx.PackageFile(rcDir, filepath.Base(src.String()), src)
2416 }
2417
2418 m.vintfFragmentsPaths = PathsForModuleSrc(ctx, m.commonProperties.Vintf_fragments)
2419 vintfDir := PathForModuleInstall(ctx, "etc", "vintf", "manifest")
2420 for _, src := range m.vintfFragmentsPaths {
2421 ctx.PackageFile(vintfDir, filepath.Base(src.String()), src)
2422 }
2423
Paul Duffinaf970a22020-11-23 23:32:56 +00002424 // Create the set of tagged dist files after calling GenerateAndroidBuildActions
2425 // as GenerateTaggedDistFiles() calls OutputFiles(tag) and so relies on the
2426 // output paths being set which must be done before or during
2427 // GenerateAndroidBuildActions.
2428 m.distFiles = m.GenerateTaggedDistFiles(ctx)
2429 if ctx.Failed() {
2430 return
2431 }
2432
Jaewoong Jung5b425e22019-06-17 17:40:56 -07002433 m.installFiles = append(m.installFiles, ctx.installFiles...)
2434 m.checkbuildFiles = append(m.checkbuildFiles, ctx.checkbuildFiles...)
Jiyong Park073ea552020-11-09 14:08:34 +09002435 m.packagingSpecs = append(m.packagingSpecs, ctx.packagingSpecs...)
Colin Cross6301c3c2021-09-28 17:40:21 -07002436 m.katiInstalls = append(m.katiInstalls, ctx.katiInstalls...)
2437 m.katiSymlinks = append(m.katiSymlinks, ctx.katiSymlinks...)
Colin Crossdc35e212019-06-06 16:13:11 -07002438 } else if ctx.Config().AllowMissingDependencies() {
2439 // If the module is not enabled it will not create any build rules, nothing will call
2440 // ctx.GetMissingDependencies(), and blueprint will consider the missing dependencies to be unhandled
2441 // and report them as an error even when AllowMissingDependencies = true. Call
2442 // ctx.GetMissingDependencies() here to tell blueprint not to handle them.
2443 ctx.GetMissingDependencies()
Colin Cross3f40fa42015-01-30 17:27:36 -08002444 }
2445
Colin Cross4157e882019-06-06 16:57:04 -07002446 if m == ctx.FinalModule().(Module).base() {
2447 m.generateModuleTarget(ctx)
Colin Cross9b1d13d2016-09-19 15:18:11 -07002448 if ctx.Failed() {
2449 return
2450 }
Colin Cross3f40fa42015-01-30 17:27:36 -08002451 }
Colin Crosscec81712017-07-13 14:43:27 -07002452
Colin Cross5d583952020-11-24 16:21:24 -08002453 m.installFilesDepSet = newInstallPathsDepSet(m.installFiles, dependencyInstallFiles)
Colin Crossffe6b9d2020-12-01 15:40:06 -08002454 m.packagingSpecsDepSet = newPackagingSpecsDepSet(m.packagingSpecs, dependencyPackagingSpecs)
Colin Cross5d583952020-11-24 16:21:24 -08002455
Colin Crossaa1cab02022-01-28 14:49:24 -08002456 buildLicenseMetadata(ctx, m.licenseMetadataFile)
Colin Cross4acaea92021-12-10 23:05:02 +00002457
Colin Cross4157e882019-06-06 16:57:04 -07002458 m.buildParams = ctx.buildParams
2459 m.ruleParams = ctx.ruleParams
2460 m.variables = ctx.variables
Colin Cross3f40fa42015-01-30 17:27:36 -08002461}
2462
Chris Parsonsf874e462022-05-10 13:50:12 -04002463func (m *ModuleBase) isHandledByBazel(ctx ModuleContext) (MixedBuildBuildable, bool) {
Chris Parsonsf874e462022-05-10 13:50:12 -04002464 if mixedBuildMod, ok := m.module.(MixedBuildBuildable); ok {
MarkDacekf47e1422023-04-19 16:47:36 +00002465 if mixedBuildMod.IsMixedBuildSupported(ctx) && (MixedBuildsEnabled(ctx) == MixedBuildEnabled) {
Chris Parsonsf874e462022-05-10 13:50:12 -04002466 return mixedBuildMod, true
2467 }
2468 }
2469 return nil, false
2470}
2471
Paul Duffin89968e32020-11-23 18:17:03 +00002472// Check the supplied dist structure to make sure that it is valid.
2473//
2474// property - the base property, e.g. dist or dists[1], which is combined with the
2475// name of the nested property to produce the full property, e.g. dist.dest or
2476// dists[1].dir.
2477func checkDistProperties(ctx *moduleContext, property string, dist *Dist) {
2478 if dist.Dest != nil {
2479 _, err := validateSafePath(*dist.Dest)
2480 if err != nil {
2481 ctx.PropertyErrorf(property+".dest", "%s", err.Error())
2482 }
2483 }
2484 if dist.Dir != nil {
2485 _, err := validateSafePath(*dist.Dir)
2486 if err != nil {
2487 ctx.PropertyErrorf(property+".dir", "%s", err.Error())
2488 }
2489 }
2490 if dist.Suffix != nil {
2491 if strings.Contains(*dist.Suffix, "/") {
2492 ctx.PropertyErrorf(property+".suffix", "Suffix may not contain a '/' character.")
2493 }
2494 }
2495
2496}
2497
Colin Cross1184b642019-12-30 18:43:07 -08002498type earlyModuleContext struct {
Colin Crossc34d2322020-01-03 15:23:27 -08002499 blueprint.EarlyModuleContext
Colin Cross1184b642019-12-30 18:43:07 -08002500
2501 kind moduleKind
2502 config Config
2503}
2504
2505func (e *earlyModuleContext) Glob(globPattern string, excludes []string) Paths {
Liz Kammera830f3a2020-11-10 10:50:34 -08002506 return Glob(e, globPattern, excludes)
Colin Cross1184b642019-12-30 18:43:07 -08002507}
2508
2509func (e *earlyModuleContext) GlobFiles(globPattern string, excludes []string) Paths {
Liz Kammera830f3a2020-11-10 10:50:34 -08002510 return GlobFiles(e, globPattern, excludes)
Colin Cross1184b642019-12-30 18:43:07 -08002511}
2512
Ustaeabf0f32021-12-06 15:17:23 -05002513func (e *earlyModuleContext) IsSymlink(path Path) bool {
2514 fileInfo, err := e.config.fs.Lstat(path.String())
Colin Cross988414c2020-01-11 01:11:46 +00002515 if err != nil {
Ustaeabf0f32021-12-06 15:17:23 -05002516 e.ModuleErrorf("os.Lstat(%q) failed: %s", path.String(), err)
Colin Cross988414c2020-01-11 01:11:46 +00002517 }
2518 return fileInfo.Mode()&os.ModeSymlink == os.ModeSymlink
2519}
2520
Ustaeabf0f32021-12-06 15:17:23 -05002521func (e *earlyModuleContext) Readlink(path Path) string {
2522 dest, err := e.config.fs.Readlink(path.String())
Colin Cross988414c2020-01-11 01:11:46 +00002523 if err != nil {
Ustaeabf0f32021-12-06 15:17:23 -05002524 e.ModuleErrorf("os.Readlink(%q) failed: %s", path.String(), err)
Colin Cross988414c2020-01-11 01:11:46 +00002525 }
2526 return dest
2527}
2528
Colin Cross1184b642019-12-30 18:43:07 -08002529func (e *earlyModuleContext) Module() Module {
Colin Crossc34d2322020-01-03 15:23:27 -08002530 module, _ := e.EarlyModuleContext.Module().(Module)
Colin Cross1184b642019-12-30 18:43:07 -08002531 return module
2532}
2533
2534func (e *earlyModuleContext) Config() Config {
Colin Crossc34d2322020-01-03 15:23:27 -08002535 return e.EarlyModuleContext.Config().(Config)
Colin Cross1184b642019-12-30 18:43:07 -08002536}
2537
2538func (e *earlyModuleContext) AConfig() Config {
2539 return e.config
2540}
2541
2542func (e *earlyModuleContext) DeviceConfig() DeviceConfig {
2543 return DeviceConfig{e.config.deviceConfig}
2544}
2545
2546func (e *earlyModuleContext) Platform() bool {
2547 return e.kind == platformModule
2548}
2549
2550func (e *earlyModuleContext) DeviceSpecific() bool {
2551 return e.kind == deviceSpecificModule
2552}
2553
2554func (e *earlyModuleContext) SocSpecific() bool {
2555 return e.kind == socSpecificModule
2556}
2557
2558func (e *earlyModuleContext) ProductSpecific() bool {
2559 return e.kind == productSpecificModule
2560}
2561
2562func (e *earlyModuleContext) SystemExtSpecific() bool {
2563 return e.kind == systemExtSpecificModule
2564}
2565
Colin Cross133ebef2020-08-14 17:38:45 -07002566func (e *earlyModuleContext) Namespace() *Namespace {
2567 return e.EarlyModuleContext.Namespace().(*Namespace)
2568}
2569
Colin Cross1184b642019-12-30 18:43:07 -08002570type baseModuleContext struct {
2571 bp blueprint.BaseModuleContext
2572 earlyModuleContext
Colin Crossfb0c16e2019-11-20 17:12:35 -08002573 os OsType
Colin Cross8b74d172016-09-13 09:59:14 -07002574 target Target
Colin Crossee0bc3b2018-10-02 22:01:37 -07002575 multiTargets []Target
Colin Cross8b74d172016-09-13 09:59:14 -07002576 targetPrimary bool
2577 debug bool
Colin Crossdc35e212019-06-06 16:13:11 -07002578
2579 walkPath []Module
Paul Duffinc5192442020-03-31 11:31:36 +01002580 tagPath []blueprint.DependencyTag
Colin Crossdc35e212019-06-06 16:13:11 -07002581
2582 strictVisitDeps bool // If true, enforce that all dependencies are enabled
Chris Parsons5a34ffb2021-07-21 14:34:58 -04002583
2584 bazelConversionMode bool
Colin Crossf6566ed2015-03-24 11:13:38 -07002585}
2586
Liz Kammer3bf97bd2022-04-26 09:38:20 -04002587func (b *baseModuleContext) isBazelConversionMode() bool {
Chris Parsons5a34ffb2021-07-21 14:34:58 -04002588 return b.bazelConversionMode
2589}
Paul Duffinca7f0ef2020-02-25 15:50:49 +00002590func (b *baseModuleContext) OtherModuleName(m blueprint.Module) string {
2591 return b.bp.OtherModuleName(m)
2592}
2593func (b *baseModuleContext) OtherModuleDir(m blueprint.Module) string { return b.bp.OtherModuleDir(m) }
Colin Cross1184b642019-12-30 18:43:07 -08002594func (b *baseModuleContext) OtherModuleErrorf(m blueprint.Module, fmt string, args ...interface{}) {
Jooyung Hancd87c692020-02-26 02:05:18 +09002595 b.bp.OtherModuleErrorf(m, fmt, args...)
Colin Cross1184b642019-12-30 18:43:07 -08002596}
2597func (b *baseModuleContext) OtherModuleDependencyTag(m blueprint.Module) blueprint.DependencyTag {
2598 return b.bp.OtherModuleDependencyTag(m)
2599}
Paul Duffinca7f0ef2020-02-25 15:50:49 +00002600func (b *baseModuleContext) OtherModuleExists(name string) bool { return b.bp.OtherModuleExists(name) }
Martin Stjernholm009a9dc2020-03-05 17:34:13 +00002601func (b *baseModuleContext) OtherModuleDependencyVariantExists(variations []blueprint.Variation, name string) bool {
2602 return b.bp.OtherModuleDependencyVariantExists(variations, name)
2603}
Martin Stjernholm408ffd82021-05-05 15:27:31 +01002604func (b *baseModuleContext) OtherModuleFarDependencyVariantExists(variations []blueprint.Variation, name string) bool {
2605 return b.bp.OtherModuleFarDependencyVariantExists(variations, name)
2606}
Martin Stjernholm009a9dc2020-03-05 17:34:13 +00002607func (b *baseModuleContext) OtherModuleReverseDependencyVariantExists(name string) bool {
2608 return b.bp.OtherModuleReverseDependencyVariantExists(name)
2609}
Paul Duffinca7f0ef2020-02-25 15:50:49 +00002610func (b *baseModuleContext) OtherModuleType(m blueprint.Module) string {
2611 return b.bp.OtherModuleType(m)
2612}
Colin Crossd27e7b82020-07-02 11:38:17 -07002613func (b *baseModuleContext) OtherModuleProvider(m blueprint.Module, provider blueprint.ProviderKey) interface{} {
2614 return b.bp.OtherModuleProvider(m, provider)
2615}
2616func (b *baseModuleContext) OtherModuleHasProvider(m blueprint.Module, provider blueprint.ProviderKey) bool {
2617 return b.bp.OtherModuleHasProvider(m, provider)
2618}
2619func (b *baseModuleContext) Provider(provider blueprint.ProviderKey) interface{} {
2620 return b.bp.Provider(provider)
2621}
2622func (b *baseModuleContext) HasProvider(provider blueprint.ProviderKey) bool {
2623 return b.bp.HasProvider(provider)
2624}
2625func (b *baseModuleContext) SetProvider(provider blueprint.ProviderKey, value interface{}) {
2626 b.bp.SetProvider(provider, value)
2627}
Colin Cross1184b642019-12-30 18:43:07 -08002628
2629func (b *baseModuleContext) GetDirectDepWithTag(name string, tag blueprint.DependencyTag) blueprint.Module {
2630 return b.bp.GetDirectDepWithTag(name, tag)
2631}
2632
Paul Duffinf88d8e02020-05-07 20:21:34 +01002633func (b *baseModuleContext) blueprintBaseModuleContext() blueprint.BaseModuleContext {
2634 return b.bp
2635}
2636
Colin Cross25de6c32019-06-06 14:29:25 -07002637type moduleContext struct {
Colin Crossdc35e212019-06-06 16:13:11 -07002638 bp blueprint.ModuleContext
Colin Cross0ea8ba82019-06-06 14:33:29 -07002639 baseModuleContext
Jiyong Park073ea552020-11-09 14:08:34 +09002640 packagingSpecs []PackagingSpec
Colin Cross897266e2020-02-13 13:22:08 -08002641 installFiles InstallPaths
Dan Willemsen34cc69e2015-09-23 15:26:20 -07002642 checkbuildFiles Paths
Colin Cross8d8f8e22016-08-03 11:57:50 -07002643 module Module
Colin Crossc3d87d32020-06-04 13:25:17 -07002644 phonies map[string]Paths
Colin Crosscec81712017-07-13 14:43:27 -07002645
Colin Cross6301c3c2021-09-28 17:40:21 -07002646 katiInstalls []katiInstall
2647 katiSymlinks []katiInstall
2648
Colin Crosscec81712017-07-13 14:43:27 -07002649 // For tests
Colin Crossae887032017-10-23 17:16:14 -07002650 buildParams []BuildParams
Colin Cross4c83e5c2019-02-25 14:54:28 -08002651 ruleParams map[blueprint.Rule]blueprint.RuleParams
Jaewoong Jung38e4fb22018-12-12 09:01:34 -08002652 variables map[string]string
Colin Cross6ff51382015-12-17 16:39:19 -08002653}
2654
Colin Cross6301c3c2021-09-28 17:40:21 -07002655// katiInstall stores a request from Soong to Make to create an install rule.
2656type katiInstall struct {
2657 from Path
2658 to InstallPath
2659 implicitDeps Paths
2660 orderOnlyDeps Paths
2661 executable bool
Colin Cross50ed1f92021-11-12 17:41:02 -08002662 extraFiles *extraFilesZip
Colin Cross6301c3c2021-09-28 17:40:21 -07002663
2664 absFrom string
2665}
2666
Colin Cross50ed1f92021-11-12 17:41:02 -08002667type extraFilesZip struct {
2668 zip Path
2669 dir InstallPath
2670}
2671
Colin Cross6301c3c2021-09-28 17:40:21 -07002672type katiInstalls []katiInstall
2673
2674// BuiltInstalled returns the katiInstalls in the form used by $(call copy-many-files) in Make, a
2675// space separated list of from:to tuples.
2676func (installs katiInstalls) BuiltInstalled() string {
2677 sb := strings.Builder{}
2678 for i, install := range installs {
2679 if i != 0 {
2680 sb.WriteRune(' ')
2681 }
2682 sb.WriteString(install.from.String())
2683 sb.WriteRune(':')
2684 sb.WriteString(install.to.String())
2685 }
2686 return sb.String()
2687}
2688
2689// InstallPaths returns the install path of each entry.
2690func (installs katiInstalls) InstallPaths() InstallPaths {
2691 paths := make(InstallPaths, 0, len(installs))
2692 for _, install := range installs {
2693 paths = append(paths, install.to)
2694 }
2695 return paths
2696}
2697
Colin Crossb88b3c52019-06-10 15:15:17 -07002698func (m *moduleContext) ninjaError(params BuildParams, err error) (PackageContext, BuildParams) {
2699 return pctx, BuildParams{
Colin Cross4b69c492019-06-07 13:06:06 -07002700 Rule: ErrorRule,
2701 Description: params.Description,
2702 Output: params.Output,
2703 Outputs: params.Outputs,
2704 ImplicitOutput: params.ImplicitOutput,
2705 ImplicitOutputs: params.ImplicitOutputs,
Colin Cross6ff51382015-12-17 16:39:19 -08002706 Args: map[string]string{
2707 "error": err.Error(),
2708 },
Colin Crossb88b3c52019-06-10 15:15:17 -07002709 }
Colin Cross3f40fa42015-01-30 17:27:36 -08002710}
2711
Colin Cross25de6c32019-06-06 14:29:25 -07002712func (m *moduleContext) ModuleBuild(pctx PackageContext, params ModuleBuildParams) {
2713 m.Build(pctx, BuildParams(params))
Colin Cross3f40fa42015-01-30 17:27:36 -08002714}
2715
Jingwen Chence679d22020-09-23 04:30:02 +00002716func validateBuildParams(params blueprint.BuildParams) error {
2717 // Validate that the symlink outputs are declared outputs or implicit outputs
2718 allOutputs := map[string]bool{}
2719 for _, output := range params.Outputs {
2720 allOutputs[output] = true
2721 }
2722 for _, output := range params.ImplicitOutputs {
2723 allOutputs[output] = true
2724 }
2725 for _, symlinkOutput := range params.SymlinkOutputs {
2726 if !allOutputs[symlinkOutput] {
2727 return fmt.Errorf(
2728 "Symlink output %s is not a declared output or implicit output",
2729 symlinkOutput)
2730 }
2731 }
2732 return nil
2733}
2734
2735// Convert build parameters from their concrete Android types into their string representations,
2736// and combine the singular and plural fields of the same type (e.g. Output and Outputs).
Colin Cross0875c522017-11-28 17:34:01 -08002737func convertBuildParams(params BuildParams) blueprint.BuildParams {
Dan Willemsen34cc69e2015-09-23 15:26:20 -07002738 bparams := blueprint.BuildParams{
Dan Willemsen9f3c5742016-11-03 14:28:31 -07002739 Rule: params.Rule,
Colin Cross0875c522017-11-28 17:34:01 -08002740 Description: params.Description,
Colin Cross33bfb0a2016-11-21 17:23:08 -08002741 Deps: params.Deps,
Dan Willemsen9f3c5742016-11-03 14:28:31 -07002742 Outputs: params.Outputs.Strings(),
2743 ImplicitOutputs: params.ImplicitOutputs.Strings(),
Jingwen Chence679d22020-09-23 04:30:02 +00002744 SymlinkOutputs: params.SymlinkOutputs.Strings(),
Dan Willemsen9f3c5742016-11-03 14:28:31 -07002745 Inputs: params.Inputs.Strings(),
2746 Implicits: params.Implicits.Strings(),
2747 OrderOnly: params.OrderOnly.Strings(),
Colin Cross824f1162020-07-16 13:07:51 -07002748 Validations: params.Validations.Strings(),
Dan Willemsen9f3c5742016-11-03 14:28:31 -07002749 Args: params.Args,
2750 Optional: !params.Default,
Dan Willemsen34cc69e2015-09-23 15:26:20 -07002751 }
2752
Colin Cross33bfb0a2016-11-21 17:23:08 -08002753 if params.Depfile != nil {
2754 bparams.Depfile = params.Depfile.String()
2755 }
Dan Willemsen34cc69e2015-09-23 15:26:20 -07002756 if params.Output != nil {
2757 bparams.Outputs = append(bparams.Outputs, params.Output.String())
2758 }
Jingwen Chence679d22020-09-23 04:30:02 +00002759 if params.SymlinkOutput != nil {
2760 bparams.SymlinkOutputs = append(bparams.SymlinkOutputs, params.SymlinkOutput.String())
2761 }
Dan Willemsen9f3c5742016-11-03 14:28:31 -07002762 if params.ImplicitOutput != nil {
2763 bparams.ImplicitOutputs = append(bparams.ImplicitOutputs, params.ImplicitOutput.String())
2764 }
Dan Willemsen34cc69e2015-09-23 15:26:20 -07002765 if params.Input != nil {
2766 bparams.Inputs = append(bparams.Inputs, params.Input.String())
2767 }
2768 if params.Implicit != nil {
2769 bparams.Implicits = append(bparams.Implicits, params.Implicit.String())
2770 }
Colin Cross824f1162020-07-16 13:07:51 -07002771 if params.Validation != nil {
2772 bparams.Validations = append(bparams.Validations, params.Validation.String())
2773 }
Dan Willemsen34cc69e2015-09-23 15:26:20 -07002774
Colin Cross0b9f31f2019-02-28 11:00:01 -08002775 bparams.Outputs = proptools.NinjaEscapeList(bparams.Outputs)
2776 bparams.ImplicitOutputs = proptools.NinjaEscapeList(bparams.ImplicitOutputs)
Jingwen Chence679d22020-09-23 04:30:02 +00002777 bparams.SymlinkOutputs = proptools.NinjaEscapeList(bparams.SymlinkOutputs)
Colin Cross0b9f31f2019-02-28 11:00:01 -08002778 bparams.Inputs = proptools.NinjaEscapeList(bparams.Inputs)
2779 bparams.Implicits = proptools.NinjaEscapeList(bparams.Implicits)
2780 bparams.OrderOnly = proptools.NinjaEscapeList(bparams.OrderOnly)
Colin Cross824f1162020-07-16 13:07:51 -07002781 bparams.Validations = proptools.NinjaEscapeList(bparams.Validations)
2782 bparams.Depfile = proptools.NinjaEscape(bparams.Depfile)
Colin Crossfe4bc362018-09-12 10:02:13 -07002783
Colin Cross0875c522017-11-28 17:34:01 -08002784 return bparams
2785}
2786
Colin Cross25de6c32019-06-06 14:29:25 -07002787func (m *moduleContext) Variable(pctx PackageContext, name, value string) {
2788 if m.config.captureBuild {
2789 m.variables[name] = value
Jaewoong Jung38e4fb22018-12-12 09:01:34 -08002790 }
2791
Colin Crossdc35e212019-06-06 16:13:11 -07002792 m.bp.Variable(pctx.PackageContext, name, value)
Colin Cross0875c522017-11-28 17:34:01 -08002793}
2794
Colin Cross25de6c32019-06-06 14:29:25 -07002795func (m *moduleContext) Rule(pctx PackageContext, name string, params blueprint.RuleParams,
Colin Cross0875c522017-11-28 17:34:01 -08002796 argNames ...string) blueprint.Rule {
2797
Ramy Medhat944839a2020-03-31 22:14:52 -04002798 if m.config.UseRemoteBuild() {
2799 if params.Pool == nil {
2800 // When USE_GOMA=true or USE_RBE=true are set and the rule is not supported by goma/RBE, restrict
2801 // jobs to the local parallelism value
2802 params.Pool = localPool
2803 } else if params.Pool == remotePool {
2804 // remotePool is a fake pool used to identify rule that are supported for remoting. If the rule's
2805 // pool is the remotePool, replace with nil so that ninja runs it at NINJA_REMOTE_NUM_JOBS
2806 // parallelism.
2807 params.Pool = nil
2808 }
Colin Cross2e2dbc22019-09-25 13:31:46 -07002809 }
2810
Colin Crossdc35e212019-06-06 16:13:11 -07002811 rule := m.bp.Rule(pctx.PackageContext, name, params, argNames...)
Colin Cross4c83e5c2019-02-25 14:54:28 -08002812
Colin Cross25de6c32019-06-06 14:29:25 -07002813 if m.config.captureBuild {
2814 m.ruleParams[rule] = params
Colin Cross4c83e5c2019-02-25 14:54:28 -08002815 }
2816
2817 return rule
Colin Cross0875c522017-11-28 17:34:01 -08002818}
2819
Colin Cross25de6c32019-06-06 14:29:25 -07002820func (m *moduleContext) Build(pctx PackageContext, params BuildParams) {
Colin Crossb88b3c52019-06-10 15:15:17 -07002821 if params.Description != "" {
2822 params.Description = "${moduleDesc}" + params.Description + "${moduleDescSuffix}"
2823 }
2824
2825 if missingDeps := m.GetMissingDependencies(); len(missingDeps) > 0 {
2826 pctx, params = m.ninjaError(params, fmt.Errorf("module %s missing dependencies: %s\n",
2827 m.ModuleName(), strings.Join(missingDeps, ", ")))
2828 }
2829
Colin Cross25de6c32019-06-06 14:29:25 -07002830 if m.config.captureBuild {
2831 m.buildParams = append(m.buildParams, params)
Colin Cross0875c522017-11-28 17:34:01 -08002832 }
2833
Jingwen Chence679d22020-09-23 04:30:02 +00002834 bparams := convertBuildParams(params)
2835 err := validateBuildParams(bparams)
2836 if err != nil {
2837 m.ModuleErrorf(
2838 "%s: build parameter validation failed: %s",
2839 m.ModuleName(),
2840 err.Error())
2841 }
2842 m.bp.Build(pctx.PackageContext, bparams)
Dan Willemsen34cc69e2015-09-23 15:26:20 -07002843}
Colin Crossc3d87d32020-06-04 13:25:17 -07002844
2845func (m *moduleContext) Phony(name string, deps ...Path) {
2846 addPhony(m.config, name, deps...)
2847}
2848
Colin Cross25de6c32019-06-06 14:29:25 -07002849func (m *moduleContext) GetMissingDependencies() []string {
Colin Cross6c4f21f2019-06-06 15:41:36 -07002850 var missingDeps []string
2851 missingDeps = append(missingDeps, m.Module().base().commonProperties.MissingDeps...)
Colin Crossdc35e212019-06-06 16:13:11 -07002852 missingDeps = append(missingDeps, m.bp.GetMissingDependencies()...)
Colin Cross6c4f21f2019-06-06 15:41:36 -07002853 missingDeps = FirstUniqueStrings(missingDeps)
2854 return missingDeps
Colin Cross6ff51382015-12-17 16:39:19 -08002855}
2856
Colin Crossdc35e212019-06-06 16:13:11 -07002857func (b *baseModuleContext) AddMissingDependencies(deps []string) {
Dan Willemsen6553f5e2016-03-10 18:14:25 -08002858 if deps != nil {
Colin Crossdc35e212019-06-06 16:13:11 -07002859 missingDeps := &b.Module().base().commonProperties.MissingDeps
Colin Cross6c4f21f2019-06-06 15:41:36 -07002860 *missingDeps = append(*missingDeps, deps...)
2861 *missingDeps = FirstUniqueStrings(*missingDeps)
Dan Willemsen6553f5e2016-03-10 18:14:25 -08002862 }
2863}
2864
Martin Stjernholm0e4cceb2021-05-13 02:38:35 +01002865type AllowDisabledModuleDependency interface {
2866 blueprint.DependencyTag
2867 AllowDisabledModuleDependency(target Module) bool
2868}
2869
2870func (b *baseModuleContext) validateAndroidModule(module blueprint.Module, tag blueprint.DependencyTag, strict bool) Module {
Colin Crossd11fcda2017-10-23 17:59:01 -07002871 aModule, _ := module.(Module)
Colin Crossdc35e212019-06-06 16:13:11 -07002872
2873 if !strict {
2874 return aModule
2875 }
2876
Colin Cross380c69a2019-06-10 17:49:58 +00002877 if aModule == nil {
Liz Kammer55146982022-01-24 16:17:30 -05002878 b.ModuleErrorf("module %q (%#v) not an android module", b.OtherModuleName(module), tag)
Colin Cross380c69a2019-06-10 17:49:58 +00002879 return nil
2880 }
2881
2882 if !aModule.Enabled() {
Martin Stjernholm0e4cceb2021-05-13 02:38:35 +01002883 if t, ok := tag.(AllowDisabledModuleDependency); !ok || !t.AllowDisabledModuleDependency(aModule) {
2884 if b.Config().AllowMissingDependencies() {
2885 b.AddMissingDependencies([]string{b.OtherModuleName(aModule)})
2886 } else {
2887 b.ModuleErrorf("depends on disabled module %q", b.OtherModuleName(aModule))
2888 }
Colin Cross380c69a2019-06-10 17:49:58 +00002889 }
2890 return nil
2891 }
Colin Crossd11fcda2017-10-23 17:59:01 -07002892 return aModule
2893}
2894
Liz Kammer2b50ce62021-04-26 15:47:28 -04002895type dep struct {
2896 mod blueprint.Module
2897 tag blueprint.DependencyTag
2898}
2899
2900func (b *baseModuleContext) getDirectDepsInternal(name string, tag blueprint.DependencyTag) []dep {
Jiyong Parkf2976302019-04-17 21:47:37 +09002901 var deps []dep
Colin Crossdc35e212019-06-06 16:13:11 -07002902 b.VisitDirectDepsBlueprint(func(module blueprint.Module) {
Liz Kammer356f7d42021-01-26 09:18:53 -05002903 if aModule, _ := module.(Module); aModule != nil {
2904 if aModule.base().BaseModuleName() == name {
2905 returnedTag := b.bp.OtherModuleDependencyTag(aModule)
2906 if tag == nil || returnedTag == tag {
2907 deps = append(deps, dep{aModule, returnedTag})
2908 }
2909 }
2910 } else if b.bp.OtherModuleName(module) == name {
2911 returnedTag := b.bp.OtherModuleDependencyTag(module)
Jiyong Parkf2976302019-04-17 21:47:37 +09002912 if tag == nil || returnedTag == tag {
Liz Kammer356f7d42021-01-26 09:18:53 -05002913 deps = append(deps, dep{module, returnedTag})
Jiyong Parkf2976302019-04-17 21:47:37 +09002914 }
2915 }
2916 })
Liz Kammer2b50ce62021-04-26 15:47:28 -04002917 return deps
2918}
2919
2920func (b *baseModuleContext) getDirectDepInternal(name string, tag blueprint.DependencyTag) (blueprint.Module, blueprint.DependencyTag) {
2921 deps := b.getDirectDepsInternal(name, tag)
Jiyong Parkf2976302019-04-17 21:47:37 +09002922 if len(deps) == 1 {
2923 return deps[0].mod, deps[0].tag
2924 } else if len(deps) >= 2 {
2925 panic(fmt.Errorf("Multiple dependencies having same BaseModuleName() %q found from %q",
Colin Crossdc35e212019-06-06 16:13:11 -07002926 name, b.ModuleName()))
Jiyong Parkf2976302019-04-17 21:47:37 +09002927 } else {
2928 return nil, nil
2929 }
2930}
2931
Liz Kammer2b50ce62021-04-26 15:47:28 -04002932func (b *baseModuleContext) getDirectDepFirstTag(name string) (blueprint.Module, blueprint.DependencyTag) {
2933 foundDeps := b.getDirectDepsInternal(name, nil)
2934 deps := map[blueprint.Module]bool{}
2935 for _, dep := range foundDeps {
2936 deps[dep.mod] = true
2937 }
2938 if len(deps) == 1 {
2939 return foundDeps[0].mod, foundDeps[0].tag
2940 } else if len(deps) >= 2 {
2941 // this could happen if two dependencies have the same name in different namespaces
2942 // TODO(b/186554727): this should not occur if namespaces are handled within
2943 // getDirectDepsInternal.
2944 panic(fmt.Errorf("Multiple dependencies having same BaseModuleName() %q found from %q",
2945 name, b.ModuleName()))
2946 } else {
2947 return nil, nil
2948 }
2949}
2950
Colin Crossdc35e212019-06-06 16:13:11 -07002951func (b *baseModuleContext) GetDirectDepsWithTag(tag blueprint.DependencyTag) []Module {
Colin Cross0ef08162019-05-01 15:50:51 -07002952 var deps []Module
Colin Crossdc35e212019-06-06 16:13:11 -07002953 b.VisitDirectDepsBlueprint(func(module blueprint.Module) {
Colin Cross25de6c32019-06-06 14:29:25 -07002954 if aModule, _ := module.(Module); aModule != nil {
Colin Cross1184b642019-12-30 18:43:07 -08002955 if b.bp.OtherModuleDependencyTag(aModule) == tag {
Colin Cross0ef08162019-05-01 15:50:51 -07002956 deps = append(deps, aModule)
2957 }
2958 }
2959 })
2960 return deps
2961}
2962
Colin Cross25de6c32019-06-06 14:29:25 -07002963func (m *moduleContext) GetDirectDepWithTag(name string, tag blueprint.DependencyTag) blueprint.Module {
2964 module, _ := m.getDirectDepInternal(name, tag)
2965 return module
Jiyong Parkf2976302019-04-17 21:47:37 +09002966}
2967
Liz Kammer2b50ce62021-04-26 15:47:28 -04002968// GetDirectDep returns the Module and DependencyTag for the direct dependency with the specified
2969// name, or nil if none exists. If there are multiple dependencies on the same module it returns the
2970// first DependencyTag.
Colin Crossdc35e212019-06-06 16:13:11 -07002971func (b *baseModuleContext) GetDirectDep(name string) (blueprint.Module, blueprint.DependencyTag) {
Liz Kammer2b50ce62021-04-26 15:47:28 -04002972 return b.getDirectDepFirstTag(name)
Jiyong Parkf2976302019-04-17 21:47:37 +09002973}
2974
Chris Parsons5a34ffb2021-07-21 14:34:58 -04002975func (b *baseModuleContext) ModuleFromName(name string) (blueprint.Module, bool) {
Liz Kammer3bf97bd2022-04-26 09:38:20 -04002976 if !b.isBazelConversionMode() {
Chris Parsons5a34ffb2021-07-21 14:34:58 -04002977 panic("cannot call ModuleFromName if not in bazel conversion mode")
2978 }
Chris Parsonsa66c0b52021-07-23 11:02:07 -04002979 if moduleName, _ := SrcIsModuleWithTag(name); moduleName != "" {
Chris Parsons5a34ffb2021-07-21 14:34:58 -04002980 return b.bp.ModuleFromName(moduleName)
2981 } else {
2982 return b.bp.ModuleFromName(name)
2983 }
2984}
2985
Colin Crossdc35e212019-06-06 16:13:11 -07002986func (b *baseModuleContext) VisitDirectDepsBlueprint(visit func(blueprint.Module)) {
Colin Cross1184b642019-12-30 18:43:07 -08002987 b.bp.VisitDirectDeps(visit)
Colin Cross35143d02017-11-16 00:11:20 -08002988}
2989
Colin Crossdc35e212019-06-06 16:13:11 -07002990func (b *baseModuleContext) VisitDirectDeps(visit func(Module)) {
Colin Cross1184b642019-12-30 18:43:07 -08002991 b.bp.VisitDirectDeps(func(module blueprint.Module) {
Martin Stjernholm0e4cceb2021-05-13 02:38:35 +01002992 if aModule := b.validateAndroidModule(module, b.bp.OtherModuleDependencyTag(module), b.strictVisitDeps); aModule != nil {
Colin Crossd11fcda2017-10-23 17:59:01 -07002993 visit(aModule)
2994 }
2995 })
2996}
2997
Colin Crossdc35e212019-06-06 16:13:11 -07002998func (b *baseModuleContext) VisitDirectDepsWithTag(tag blueprint.DependencyTag, visit func(Module)) {
Colin Cross1184b642019-12-30 18:43:07 -08002999 b.bp.VisitDirectDeps(func(module blueprint.Module) {
Liz Kammer55146982022-01-24 16:17:30 -05003000 if b.bp.OtherModuleDependencyTag(module) == tag {
3001 if aModule := b.validateAndroidModule(module, b.bp.OtherModuleDependencyTag(module), b.strictVisitDeps); aModule != nil {
Colin Crossee6143c2017-12-30 17:54:27 -08003002 visit(aModule)
3003 }
3004 }
3005 })
3006}
3007
Colin Crossdc35e212019-06-06 16:13:11 -07003008func (b *baseModuleContext) VisitDirectDepsIf(pred func(Module) bool, visit func(Module)) {
Colin Cross1184b642019-12-30 18:43:07 -08003009 b.bp.VisitDirectDepsIf(
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) VisitDepsDepthFirst(visit func(Module)) {
Colin Cross1184b642019-12-30 18:43:07 -08003025 b.bp.VisitDepsDepthFirst(func(module blueprint.Module) {
Martin Stjernholm0e4cceb2021-05-13 02:38:35 +01003026 if aModule := b.validateAndroidModule(module, b.bp.OtherModuleDependencyTag(module), b.strictVisitDeps); aModule != nil {
Colin Crossd11fcda2017-10-23 17:59:01 -07003027 visit(aModule)
3028 }
3029 })
3030}
3031
Colin Crossdc35e212019-06-06 16:13:11 -07003032func (b *baseModuleContext) VisitDepsDepthFirstIf(pred func(Module) bool, visit func(Module)) {
Colin Cross1184b642019-12-30 18:43:07 -08003033 b.bp.VisitDepsDepthFirstIf(
Colin Crossd11fcda2017-10-23 17:59:01 -07003034 // pred
3035 func(module blueprint.Module) bool {
Martin Stjernholm0e4cceb2021-05-13 02:38:35 +01003036 if aModule := b.validateAndroidModule(module, b.bp.OtherModuleDependencyTag(module), b.strictVisitDeps); aModule != nil {
Colin Crossd11fcda2017-10-23 17:59:01 -07003037 return pred(aModule)
3038 } else {
3039 return false
3040 }
3041 },
3042 // visit
3043 func(module blueprint.Module) {
3044 visit(module.(Module))
3045 })
3046}
3047
Colin Crossdc35e212019-06-06 16:13:11 -07003048func (b *baseModuleContext) WalkDepsBlueprint(visit func(blueprint.Module, blueprint.Module) bool) {
Colin Cross1184b642019-12-30 18:43:07 -08003049 b.bp.WalkDeps(visit)
Alex Light778127a2019-02-27 14:19:50 -08003050}
3051
Colin Crossdc35e212019-06-06 16:13:11 -07003052func (b *baseModuleContext) WalkDeps(visit func(Module, Module) bool) {
3053 b.walkPath = []Module{b.Module()}
Paul Duffinc5192442020-03-31 11:31:36 +01003054 b.tagPath = []blueprint.DependencyTag{}
Colin Cross1184b642019-12-30 18:43:07 -08003055 b.bp.WalkDeps(func(child, parent blueprint.Module) bool {
Colin Crossdc35e212019-06-06 16:13:11 -07003056 childAndroidModule, _ := child.(Module)
3057 parentAndroidModule, _ := parent.(Module)
Colin Crossd11fcda2017-10-23 17:59:01 -07003058 if childAndroidModule != nil && parentAndroidModule != nil {
Colin Crossdc35e212019-06-06 16:13:11 -07003059 // record walkPath before visit
3060 for b.walkPath[len(b.walkPath)-1] != parentAndroidModule {
3061 b.walkPath = b.walkPath[0 : len(b.walkPath)-1]
Paul Duffinc5192442020-03-31 11:31:36 +01003062 b.tagPath = b.tagPath[0 : len(b.tagPath)-1]
Colin Crossdc35e212019-06-06 16:13:11 -07003063 }
3064 b.walkPath = append(b.walkPath, childAndroidModule)
Paul Duffinc5192442020-03-31 11:31:36 +01003065 b.tagPath = append(b.tagPath, b.OtherModuleDependencyTag(childAndroidModule))
Colin Crossd11fcda2017-10-23 17:59:01 -07003066 return visit(childAndroidModule, parentAndroidModule)
3067 } else {
3068 return false
3069 }
3070 })
3071}
3072
Colin Crossdc35e212019-06-06 16:13:11 -07003073func (b *baseModuleContext) GetWalkPath() []Module {
3074 return b.walkPath
3075}
3076
Paul Duffinc5192442020-03-31 11:31:36 +01003077func (b *baseModuleContext) GetTagPath() []blueprint.DependencyTag {
3078 return b.tagPath
3079}
3080
Colin Cross4dfacf92020-09-16 19:22:27 -07003081func (b *baseModuleContext) VisitAllModuleVariants(visit func(Module)) {
3082 b.bp.VisitAllModuleVariants(func(module blueprint.Module) {
3083 visit(module.(Module))
3084 })
3085}
3086
3087func (b *baseModuleContext) PrimaryModule() Module {
3088 return b.bp.PrimaryModule().(Module)
3089}
3090
3091func (b *baseModuleContext) FinalModule() Module {
3092 return b.bp.FinalModule().(Module)
3093}
3094
Bob Badour07065cd2021-02-05 19:59:11 -08003095// IsMetaDependencyTag returns true for cross-cutting metadata dependencies.
3096func IsMetaDependencyTag(tag blueprint.DependencyTag) bool {
3097 if tag == licenseKindTag {
3098 return true
3099 } else if tag == licensesTag {
3100 return true
3101 }
3102 return false
3103}
3104
Jiyong Park1c7e9622020-05-07 16:12:13 +09003105// A regexp for removing boilerplate from BaseDependencyTag from the string representation of
3106// a dependency tag.
Colin Cross6e511a92020-07-27 21:26:48 -07003107var tagCleaner = regexp.MustCompile(`\QBaseDependencyTag:{}\E(, )?`)
Jiyong Park1c7e9622020-05-07 16:12:13 +09003108
3109// PrettyPrintTag returns string representation of the tag, but prefers
3110// custom String() method if available.
3111func PrettyPrintTag(tag blueprint.DependencyTag) string {
3112 // Use tag's custom String() method if available.
3113 if stringer, ok := tag.(fmt.Stringer); ok {
3114 return stringer.String()
3115 }
3116
3117 // Otherwise, get a default string representation of the tag's struct.
Colin Cross6e511a92020-07-27 21:26:48 -07003118 tagString := fmt.Sprintf("%T: %+v", tag, tag)
Jiyong Park1c7e9622020-05-07 16:12:13 +09003119
3120 // Remove the boilerplate from BaseDependencyTag as it adds no value.
3121 tagString = tagCleaner.ReplaceAllString(tagString, "")
3122 return tagString
3123}
3124
3125func (b *baseModuleContext) GetPathString(skipFirst bool) string {
3126 sb := strings.Builder{}
3127 tagPath := b.GetTagPath()
3128 walkPath := b.GetWalkPath()
3129 if !skipFirst {
3130 sb.WriteString(walkPath[0].String())
3131 }
3132 for i, m := range walkPath[1:] {
3133 sb.WriteString("\n")
3134 sb.WriteString(fmt.Sprintf(" via tag %s\n", PrettyPrintTag(tagPath[i])))
3135 sb.WriteString(fmt.Sprintf(" -> %s", m.String()))
3136 }
3137 return sb.String()
3138}
3139
Colin Crossdc35e212019-06-06 16:13:11 -07003140func (m *moduleContext) ModuleSubDir() string {
3141 return m.bp.ModuleSubDir()
Colin Cross0875c522017-11-28 17:34:01 -08003142}
3143
Colin Cross0ea8ba82019-06-06 14:33:29 -07003144func (b *baseModuleContext) Target() Target {
Colin Cross25de6c32019-06-06 14:29:25 -07003145 return b.target
Colin Crossa1ad8d12016-06-01 17:09:44 -07003146}
3147
Colin Cross0ea8ba82019-06-06 14:33:29 -07003148func (b *baseModuleContext) TargetPrimary() bool {
Colin Cross25de6c32019-06-06 14:29:25 -07003149 return b.targetPrimary
Colin Cross8b74d172016-09-13 09:59:14 -07003150}
3151
Colin Cross0ea8ba82019-06-06 14:33:29 -07003152func (b *baseModuleContext) MultiTargets() []Target {
Colin Cross25de6c32019-06-06 14:29:25 -07003153 return b.multiTargets
Colin Crossee0bc3b2018-10-02 22:01:37 -07003154}
3155
Colin Cross0ea8ba82019-06-06 14:33:29 -07003156func (b *baseModuleContext) Arch() Arch {
Colin Cross25de6c32019-06-06 14:29:25 -07003157 return b.target.Arch
Colin Cross3f40fa42015-01-30 17:27:36 -08003158}
3159
Colin Cross0ea8ba82019-06-06 14:33:29 -07003160func (b *baseModuleContext) Os() OsType {
Colin Crossfb0c16e2019-11-20 17:12:35 -08003161 return b.os
Dan Willemsen490fd492015-11-24 17:53:15 -08003162}
3163
Colin Cross0ea8ba82019-06-06 14:33:29 -07003164func (b *baseModuleContext) Host() bool {
Jiyong Park1613e552020-09-14 19:43:17 +09003165 return b.os.Class == Host
Colin Crossf6566ed2015-03-24 11:13:38 -07003166}
3167
Colin Cross0ea8ba82019-06-06 14:33:29 -07003168func (b *baseModuleContext) Device() bool {
Colin Crossfb0c16e2019-11-20 17:12:35 -08003169 return b.os.Class == Device
Colin Crossf6566ed2015-03-24 11:13:38 -07003170}
3171
Colin Cross0ea8ba82019-06-06 14:33:29 -07003172func (b *baseModuleContext) Darwin() bool {
Colin Crossfb0c16e2019-11-20 17:12:35 -08003173 return b.os == Darwin
Colin Cross0af4b842015-04-30 16:36:18 -07003174}
3175
Colin Cross0ea8ba82019-06-06 14:33:29 -07003176func (b *baseModuleContext) Windows() bool {
Colin Crossfb0c16e2019-11-20 17:12:35 -08003177 return b.os == Windows
Colin Cross3edeee12017-04-04 12:59:48 -07003178}
3179
Colin Cross0ea8ba82019-06-06 14:33:29 -07003180func (b *baseModuleContext) Debug() bool {
Colin Cross25de6c32019-06-06 14:29:25 -07003181 return b.debug
Colin Crossf6566ed2015-03-24 11:13:38 -07003182}
3183
Colin Cross0ea8ba82019-06-06 14:33:29 -07003184func (b *baseModuleContext) PrimaryArch() bool {
Colin Cross25de6c32019-06-06 14:29:25 -07003185 if len(b.config.Targets[b.target.Os]) <= 1 {
Colin Cross67a5c132017-05-09 13:45:28 -07003186 return true
3187 }
Colin Cross25de6c32019-06-06 14:29:25 -07003188 return b.target.Arch.ArchType == b.config.Targets[b.target.Os][0].Arch.ArchType
Colin Cross1e7d3702016-08-24 15:25:47 -07003189}
3190
Jiyong Park5baac542018-08-28 09:55:37 +09003191// Makes this module a platform module, i.e. not specific to soc, device,
Justin Yund5f6c822019-06-25 16:47:17 +09003192// product, or system_ext.
Colin Cross4157e882019-06-06 16:57:04 -07003193func (m *ModuleBase) MakeAsPlatform() {
3194 m.commonProperties.Vendor = boolPtr(false)
3195 m.commonProperties.Proprietary = boolPtr(false)
3196 m.commonProperties.Soc_specific = boolPtr(false)
3197 m.commonProperties.Product_specific = boolPtr(false)
Justin Yund5f6c822019-06-25 16:47:17 +09003198 m.commonProperties.System_ext_specific = boolPtr(false)
Jiyong Park5baac542018-08-28 09:55:37 +09003199}
3200
Sundong Ahnd95aa2d2019-10-08 19:34:03 +09003201func (m *ModuleBase) MakeAsSystemExt() {
Jooyung Han91df2082019-11-20 01:49:42 +09003202 m.commonProperties.Vendor = boolPtr(false)
3203 m.commonProperties.Proprietary = boolPtr(false)
3204 m.commonProperties.Soc_specific = boolPtr(false)
3205 m.commonProperties.Product_specific = boolPtr(false)
3206 m.commonProperties.System_ext_specific = boolPtr(true)
Sundong Ahnd95aa2d2019-10-08 19:34:03 +09003207}
3208
Jooyung Han344d5432019-08-23 11:17:39 +09003209// IsNativeBridgeSupported returns true if "native_bridge_supported" is explicitly set as "true"
3210func (m *ModuleBase) IsNativeBridgeSupported() bool {
3211 return proptools.Bool(m.commonProperties.Native_bridge_supported)
3212}
3213
Colin Cross25de6c32019-06-06 14:29:25 -07003214func (m *moduleContext) InstallInData() bool {
3215 return m.module.InstallInData()
Dan Willemsen782a2d12015-12-21 14:55:28 -08003216}
3217
Jaewoong Jung0949f312019-09-11 10:25:18 -07003218func (m *moduleContext) InstallInTestcases() bool {
3219 return m.module.InstallInTestcases()
3220}
3221
Colin Cross25de6c32019-06-06 14:29:25 -07003222func (m *moduleContext) InstallInSanitizerDir() bool {
3223 return m.module.InstallInSanitizerDir()
Vishwath Mohan1dd88392017-03-29 22:00:18 -07003224}
3225
Yifan Hong1b3348d2020-01-21 15:53:22 -08003226func (m *moduleContext) InstallInRamdisk() bool {
3227 return m.module.InstallInRamdisk()
3228}
3229
Yifan Hong60e0cfb2020-10-21 15:17:56 -07003230func (m *moduleContext) InstallInVendorRamdisk() bool {
3231 return m.module.InstallInVendorRamdisk()
3232}
3233
Inseob Kim08758f02021-04-08 21:13:22 +09003234func (m *moduleContext) InstallInDebugRamdisk() bool {
3235 return m.module.InstallInDebugRamdisk()
3236}
3237
Colin Cross25de6c32019-06-06 14:29:25 -07003238func (m *moduleContext) InstallInRecovery() bool {
3239 return m.module.InstallInRecovery()
Jiyong Parkf9332f12018-02-01 00:54:12 +09003240}
3241
Colin Cross90ba5f42019-10-02 11:10:58 -07003242func (m *moduleContext) InstallInRoot() bool {
3243 return m.module.InstallInRoot()
3244}
3245
Jiyong Park87788b52020-09-01 12:37:45 +09003246func (m *moduleContext) InstallForceOS() (*OsType, *ArchType) {
Colin Cross6e359402020-02-10 15:29:54 -08003247 return m.module.InstallForceOS()
3248}
3249
Kiyoung Kimae11c232021-07-19 11:38:04 +09003250func (m *moduleContext) InstallInVendor() bool {
3251 return m.module.InstallInVendor()
3252}
3253
Colin Crossa9c8c9f2020-12-16 10:20:23 -08003254func (m *moduleContext) skipInstall() bool {
Colin Cross25de6c32019-06-06 14:29:25 -07003255 if m.module.base().commonProperties.SkipInstall {
Colin Cross893d8162017-04-26 17:34:03 -07003256 return true
3257 }
3258
Colin Crossa9c8c9f2020-12-16 10:20:23 -08003259 if m.module.base().commonProperties.HideFromMake {
3260 return true
3261 }
3262
Colin Cross3607f212018-05-07 15:28:05 -07003263 // We'll need a solution for choosing which of modules with the same name in different
3264 // namespaces to install. For now, reuse the list of namespaces exported to Make as the
3265 // list of namespaces to install in a Soong-only build.
Colin Cross25de6c32019-06-06 14:29:25 -07003266 if !m.module.base().commonProperties.NamespaceExportedToMake {
Colin Cross3607f212018-05-07 15:28:05 -07003267 return true
3268 }
3269
Colin Cross893d8162017-04-26 17:34:03 -07003270 return false
3271}
3272
Colin Cross70dda7e2019-10-01 22:05:35 -07003273func (m *moduleContext) InstallFile(installPath InstallPath, name string, srcPath Path,
3274 deps ...Path) InstallPath {
Colin Cross50ed1f92021-11-12 17:41:02 -08003275 return m.installFile(installPath, name, srcPath, deps, false, nil)
Colin Cross5c517922017-08-31 12:29:17 -07003276}
3277
Colin Cross70dda7e2019-10-01 22:05:35 -07003278func (m *moduleContext) InstallExecutable(installPath InstallPath, name string, srcPath Path,
3279 deps ...Path) InstallPath {
Colin Cross50ed1f92021-11-12 17:41:02 -08003280 return m.installFile(installPath, name, srcPath, deps, true, nil)
3281}
3282
3283func (m *moduleContext) InstallFileWithExtraFilesZip(installPath InstallPath, name string, srcPath Path,
3284 extraZip Path, deps ...Path) InstallPath {
3285 return m.installFile(installPath, name, srcPath, deps, false, &extraFilesZip{
3286 zip: extraZip,
3287 dir: installPath,
3288 })
Colin Cross5c517922017-08-31 12:29:17 -07003289}
3290
Colin Cross41589502020-12-01 14:00:21 -08003291func (m *moduleContext) PackageFile(installPath InstallPath, name string, srcPath Path) PackagingSpec {
3292 fullInstallPath := installPath.Join(m, name)
3293 return m.packageFile(fullInstallPath, srcPath, false)
3294}
3295
3296func (m *moduleContext) packageFile(fullInstallPath InstallPath, srcPath Path, executable bool) PackagingSpec {
Dan Willemsen9fe14102021-07-13 21:52:04 -07003297 licenseFiles := m.Module().EffectiveLicenseFiles()
Colin Cross41589502020-12-01 14:00:21 -08003298 spec := PackagingSpec{
Dan Willemsen9fe14102021-07-13 21:52:04 -07003299 relPathInPackage: Rel(m, fullInstallPath.PartitionDir(), fullInstallPath.String()),
3300 srcPath: srcPath,
3301 symlinkTarget: "",
3302 executable: executable,
3303 effectiveLicenseFiles: &licenseFiles,
Jooyung Han99c5fe62022-03-21 15:13:38 +09003304 partition: fullInstallPath.partition,
Colin Cross41589502020-12-01 14:00:21 -08003305 }
3306 m.packagingSpecs = append(m.packagingSpecs, spec)
3307 return spec
3308}
3309
Colin Cross50ed1f92021-11-12 17:41:02 -08003310func (m *moduleContext) installFile(installPath InstallPath, name string, srcPath Path, deps []Path,
3311 executable bool, extraZip *extraFilesZip) InstallPath {
Colin Cross35cec122015-04-02 14:37:16 -07003312
Colin Cross25de6c32019-06-06 14:29:25 -07003313 fullInstallPath := installPath.Join(m, name)
David Srbecky07656412020-06-04 01:26:16 +01003314 m.module.base().hooks.runInstallHooks(m, srcPath, fullInstallPath, false)
Colin Cross3f40fa42015-01-30 17:27:36 -08003315
Colin Crossa9c8c9f2020-12-16 10:20:23 -08003316 if !m.skipInstall() {
Colin Cross5d583952020-11-24 16:21:24 -08003317 deps = append(deps, m.module.base().installFilesDepSet.ToList().Paths()...)
Colin Cross35cec122015-04-02 14:37:16 -07003318
Colin Cross89562dc2016-10-03 17:47:19 -07003319 var implicitDeps, orderOnlyDeps Paths
3320
Colin Cross25de6c32019-06-06 14:29:25 -07003321 if m.Host() {
Colin Cross89562dc2016-10-03 17:47:19 -07003322 // Installed host modules might be used during the build, depend directly on their
3323 // dependencies so their timestamp is updated whenever their dependency is updated
3324 implicitDeps = deps
3325 } else {
3326 orderOnlyDeps = deps
3327 }
3328
Colin Crossc68db4b2021-11-11 18:59:15 -08003329 if m.Config().KatiEnabled() {
Colin Cross6301c3c2021-09-28 17:40:21 -07003330 // When creating the install rule in Soong but embedding in Make, write the rule to a
3331 // makefile instead of directly to the ninja file so that main.mk can add the
3332 // dependencies from the `required` property that are hard to resolve in Soong.
3333 m.katiInstalls = append(m.katiInstalls, katiInstall{
3334 from: srcPath,
3335 to: fullInstallPath,
3336 implicitDeps: implicitDeps,
3337 orderOnlyDeps: orderOnlyDeps,
3338 executable: executable,
Colin Cross50ed1f92021-11-12 17:41:02 -08003339 extraFiles: extraZip,
Colin Cross6301c3c2021-09-28 17:40:21 -07003340 })
3341 } else {
3342 rule := Cp
3343 if executable {
3344 rule = CpExecutable
3345 }
Jiyong Park073ea552020-11-09 14:08:34 +09003346
Colin Cross50ed1f92021-11-12 17:41:02 -08003347 extraCmds := ""
3348 if extraZip != nil {
Romain Jobredeaux1cef6292022-05-19 11:11:51 -04003349 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 -08003350 extraZip.dir.String(), extraZip.zip.String())
Romain Jobredeaux1cef6292022-05-19 11:11:51 -04003351 extraCmds += " || ( code=$$?; if [ $$code -ne 0 -a $$code -ne 1 ]; then exit $$code; fi )"
Colin Cross50ed1f92021-11-12 17:41:02 -08003352 implicitDeps = append(implicitDeps, extraZip.zip)
3353 }
3354
Colin Cross6301c3c2021-09-28 17:40:21 -07003355 m.Build(pctx, BuildParams{
3356 Rule: rule,
3357 Description: "install " + fullInstallPath.Base(),
3358 Output: fullInstallPath,
3359 Input: srcPath,
3360 Implicits: implicitDeps,
3361 OrderOnly: orderOnlyDeps,
3362 Default: !m.Config().KatiEnabled(),
Colin Cross50ed1f92021-11-12 17:41:02 -08003363 Args: map[string]string{
3364 "extraCmds": extraCmds,
3365 },
Colin Cross6301c3c2021-09-28 17:40:21 -07003366 })
3367 }
Colin Cross3f40fa42015-01-30 17:27:36 -08003368
Colin Cross25de6c32019-06-06 14:29:25 -07003369 m.installFiles = append(m.installFiles, fullInstallPath)
Dan Willemsen322acaf2016-01-12 23:07:05 -08003370 }
Jiyong Park073ea552020-11-09 14:08:34 +09003371
Colin Cross41589502020-12-01 14:00:21 -08003372 m.packageFile(fullInstallPath, srcPath, executable)
Jiyong Park073ea552020-11-09 14:08:34 +09003373
Colin Cross25de6c32019-06-06 14:29:25 -07003374 m.checkbuildFiles = append(m.checkbuildFiles, srcPath)
Colin Crossa9c8c9f2020-12-16 10:20:23 -08003375
Colin Cross35cec122015-04-02 14:37:16 -07003376 return fullInstallPath
3377}
3378
Colin Cross70dda7e2019-10-01 22:05:35 -07003379func (m *moduleContext) InstallSymlink(installPath InstallPath, name string, srcPath InstallPath) InstallPath {
Colin Cross25de6c32019-06-06 14:29:25 -07003380 fullInstallPath := installPath.Join(m, name)
David Srbecky07656412020-06-04 01:26:16 +01003381 m.module.base().hooks.runInstallHooks(m, srcPath, fullInstallPath, true)
Colin Cross3854a602016-01-11 12:49:11 -08003382
Jiyong Park073ea552020-11-09 14:08:34 +09003383 relPath, err := filepath.Rel(path.Dir(fullInstallPath.String()), srcPath.String())
3384 if err != nil {
3385 panic(fmt.Sprintf("Unable to generate symlink between %q and %q: %s", fullInstallPath.Base(), srcPath.Base(), err))
3386 }
Colin Crossa9c8c9f2020-12-16 10:20:23 -08003387 if !m.skipInstall() {
Colin Crossce75d2c2016-10-06 16:12:58 -07003388
Colin Crossc68db4b2021-11-11 18:59:15 -08003389 if m.Config().KatiEnabled() {
Colin Cross6301c3c2021-09-28 17:40:21 -07003390 // When creating the symlink rule in Soong but embedding in Make, write the rule to a
3391 // makefile instead of directly to the ninja file so that main.mk can add the
3392 // dependencies from the `required` property that are hard to resolve in Soong.
3393 m.katiSymlinks = append(m.katiSymlinks, katiInstall{
3394 from: srcPath,
3395 to: fullInstallPath,
3396 })
3397 } else {
Colin Cross64002af2021-11-09 16:37:52 -08003398 // The symlink doesn't need updating when the target is modified, but we sometimes
3399 // have a dependency on a symlink to a binary instead of to the binary directly, and
3400 // the mtime of the symlink must be updated when the binary is modified, so use a
3401 // normal dependency here instead of an order-only dependency.
Colin Cross6301c3c2021-09-28 17:40:21 -07003402 m.Build(pctx, BuildParams{
3403 Rule: Symlink,
3404 Description: "install symlink " + fullInstallPath.Base(),
3405 Output: fullInstallPath,
3406 Input: srcPath,
3407 Default: !m.Config().KatiEnabled(),
3408 Args: map[string]string{
3409 "fromPath": relPath,
3410 },
3411 })
3412 }
Colin Cross3854a602016-01-11 12:49:11 -08003413
Colin Cross25de6c32019-06-06 14:29:25 -07003414 m.installFiles = append(m.installFiles, fullInstallPath)
3415 m.checkbuildFiles = append(m.checkbuildFiles, srcPath)
Colin Cross12fc4972016-01-11 12:49:11 -08003416 }
Jiyong Park073ea552020-11-09 14:08:34 +09003417
3418 m.packagingSpecs = append(m.packagingSpecs, PackagingSpec{
3419 relPathInPackage: Rel(m, fullInstallPath.PartitionDir(), fullInstallPath.String()),
3420 srcPath: nil,
3421 symlinkTarget: relPath,
3422 executable: false,
Jooyung Han99c5fe62022-03-21 15:13:38 +09003423 partition: fullInstallPath.partition,
Jiyong Park073ea552020-11-09 14:08:34 +09003424 })
3425
Colin Cross3854a602016-01-11 12:49:11 -08003426 return fullInstallPath
3427}
3428
Jiyong Parkf1194352019-02-25 11:05:47 +09003429// installPath/name -> absPath where absPath might be a path that is available only at runtime
3430// (e.g. /apex/...)
Colin Cross70dda7e2019-10-01 22:05:35 -07003431func (m *moduleContext) InstallAbsoluteSymlink(installPath InstallPath, name string, absPath string) InstallPath {
Colin Cross25de6c32019-06-06 14:29:25 -07003432 fullInstallPath := installPath.Join(m, name)
David Srbecky07656412020-06-04 01:26:16 +01003433 m.module.base().hooks.runInstallHooks(m, nil, fullInstallPath, true)
Jiyong Parkf1194352019-02-25 11:05:47 +09003434
Colin Crossa9c8c9f2020-12-16 10:20:23 -08003435 if !m.skipInstall() {
Colin Crossc68db4b2021-11-11 18:59:15 -08003436 if m.Config().KatiEnabled() {
Colin Cross6301c3c2021-09-28 17:40:21 -07003437 // When creating the symlink rule in Soong but embedding in Make, write the rule to a
3438 // makefile instead of directly to the ninja file so that main.mk can add the
3439 // dependencies from the `required` property that are hard to resolve in Soong.
3440 m.katiSymlinks = append(m.katiSymlinks, katiInstall{
3441 absFrom: absPath,
3442 to: fullInstallPath,
3443 })
3444 } else {
3445 m.Build(pctx, BuildParams{
3446 Rule: Symlink,
3447 Description: "install symlink " + fullInstallPath.Base() + " -> " + absPath,
3448 Output: fullInstallPath,
3449 Default: !m.Config().KatiEnabled(),
3450 Args: map[string]string{
3451 "fromPath": absPath,
3452 },
3453 })
3454 }
Jiyong Parkf1194352019-02-25 11:05:47 +09003455
Colin Cross25de6c32019-06-06 14:29:25 -07003456 m.installFiles = append(m.installFiles, fullInstallPath)
Jiyong Parkf1194352019-02-25 11:05:47 +09003457 }
Jiyong Park073ea552020-11-09 14:08:34 +09003458
3459 m.packagingSpecs = append(m.packagingSpecs, PackagingSpec{
3460 relPathInPackage: Rel(m, fullInstallPath.PartitionDir(), fullInstallPath.String()),
3461 srcPath: nil,
3462 symlinkTarget: absPath,
3463 executable: false,
Jooyung Han99c5fe62022-03-21 15:13:38 +09003464 partition: fullInstallPath.partition,
Jiyong Park073ea552020-11-09 14:08:34 +09003465 })
3466
Jiyong Parkf1194352019-02-25 11:05:47 +09003467 return fullInstallPath
3468}
3469
Colin Cross25de6c32019-06-06 14:29:25 -07003470func (m *moduleContext) CheckbuildFile(srcPath Path) {
3471 m.checkbuildFiles = append(m.checkbuildFiles, srcPath)
Colin Cross3f40fa42015-01-30 17:27:36 -08003472}
3473
Colin Crossc20dc852020-11-10 12:27:45 -08003474func (m *moduleContext) blueprintModuleContext() blueprint.ModuleContext {
3475 return m.bp
3476}
3477
Colin Crosse7fe0962022-03-15 17:49:24 -07003478func (m *moduleContext) LicenseMetadataFile() Path {
3479 return m.module.base().licenseMetadataFile
3480}
3481
Paul Duffine6ba0722021-07-12 20:12:12 +01003482// SrcIsModule decodes module references in the format ":unqualified-name" or "//namespace:name"
3483// into the module name, or empty string if the input was not a module reference.
Colin Cross41955e82019-05-29 14:40:35 -07003484func SrcIsModule(s string) (module string) {
Paul Duffine6ba0722021-07-12 20:12:12 +01003485 if len(s) > 1 {
3486 if s[0] == ':' {
3487 module = s[1:]
3488 if !isUnqualifiedModuleName(module) {
3489 // The module name should be unqualified but is not so do not treat it as a module.
3490 module = ""
3491 }
3492 } else if s[0] == '/' && s[1] == '/' {
3493 module = s
3494 }
Colin Cross068e0fe2016-12-13 15:23:47 -08003495 }
Paul Duffine6ba0722021-07-12 20:12:12 +01003496 return module
Colin Cross068e0fe2016-12-13 15:23:47 -08003497}
3498
Yi-Yo Chiangba9ea322021-07-15 17:18:21 +08003499// SrcIsModuleWithTag decodes module references in the format ":unqualified-name{.tag}" or
3500// "//namespace:name{.tag}" into the module name and tag, ":unqualified-name" or "//namespace:name"
3501// into the module name and an empty string for the tag, or empty strings if the input was not a
3502// module reference.
Colin Cross41955e82019-05-29 14:40:35 -07003503func SrcIsModuleWithTag(s string) (module, tag string) {
Paul Duffine6ba0722021-07-12 20:12:12 +01003504 if len(s) > 1 {
3505 if s[0] == ':' {
3506 module = s[1:]
3507 } else if s[0] == '/' && s[1] == '/' {
3508 module = s
3509 }
3510
3511 if module != "" {
3512 if tagStart := strings.IndexByte(module, '{'); tagStart > 0 {
3513 if module[len(module)-1] == '}' {
3514 tag = module[tagStart+1 : len(module)-1]
3515 module = module[:tagStart]
3516 }
3517 }
3518
3519 if s[0] == ':' && !isUnqualifiedModuleName(module) {
3520 // The module name should be unqualified but is not so do not treat it as a module.
3521 module = ""
3522 tag = ""
Colin Cross41955e82019-05-29 14:40:35 -07003523 }
3524 }
Colin Cross41955e82019-05-29 14:40:35 -07003525 }
Paul Duffine6ba0722021-07-12 20:12:12 +01003526
3527 return module, tag
3528}
3529
3530// isUnqualifiedModuleName makes sure that the supplied module is an unqualified module name, i.e.
3531// does not contain any /.
3532func isUnqualifiedModuleName(module string) bool {
3533 return strings.IndexByte(module, '/') == -1
Colin Cross068e0fe2016-12-13 15:23:47 -08003534}
3535
Paul Duffin40131a32021-07-09 17:10:35 +01003536// sourceOrOutputDependencyTag is the dependency tag added automatically by pathDepsMutator for any
3537// module reference in a property annotated with `android:"path"` or passed to ExtractSourceDeps
3538// or ExtractSourcesDeps.
3539//
3540// If uniquely identifies the dependency that was added as it contains both the module name used to
3541// add the dependency as well as the tag. That makes it very simple to find the matching dependency
3542// in GetModuleFromPathDep as all it needs to do is find the dependency whose tag matches the tag
3543// used to add it. It does not need to check that the module name as returned by one of
3544// Module.Name(), BaseModuleContext.OtherModuleName() or ModuleBase.BaseModuleName() matches the
3545// name supplied in the tag. That means it does not need to handle differences in module names
3546// caused by prebuilt_ prefix, or fully qualified module names.
Colin Cross41955e82019-05-29 14:40:35 -07003547type sourceOrOutputDependencyTag struct {
3548 blueprint.BaseDependencyTag
Paul Duffin40131a32021-07-09 17:10:35 +01003549
3550 // The name of the module.
3551 moduleName string
3552
3553 // The tag that will be passed to the module's OutputFileProducer.OutputFiles(tag) method.
Colin Cross41955e82019-05-29 14:40:35 -07003554 tag string
3555}
3556
Paul Duffin40131a32021-07-09 17:10:35 +01003557func sourceOrOutputDepTag(moduleName, tag string) blueprint.DependencyTag {
3558 return sourceOrOutputDependencyTag{moduleName: moduleName, tag: tag}
Colin Cross41955e82019-05-29 14:40:35 -07003559}
3560
Paul Duffind5cf92e2021-07-09 17:38:55 +01003561// IsSourceDepTagWithOutputTag returns true if the supplied blueprint.DependencyTag is one that was
3562// used to add dependencies by either ExtractSourceDeps, ExtractSourcesDeps or automatically for
3563// properties tagged with `android:"path"` AND it was added using a module reference of
3564// :moduleName{outputTag}.
3565func IsSourceDepTagWithOutputTag(depTag blueprint.DependencyTag, outputTag string) bool {
3566 t, ok := depTag.(sourceOrOutputDependencyTag)
3567 return ok && t.tag == outputTag
3568}
3569
Colin Cross366938f2017-12-11 16:29:02 -08003570// Adds necessary dependencies to satisfy filegroup or generated sources modules listed in srcFiles
3571// using ":module" syntax, if any.
Colin Cross27b922f2019-03-04 22:35:41 -08003572//
3573// Deprecated: tag the property with `android:"path"` instead.
Colin Cross068e0fe2016-12-13 15:23:47 -08003574func ExtractSourcesDeps(ctx BottomUpMutatorContext, srcFiles []string) {
Nan Zhang2439eb72017-04-10 11:27:50 -07003575 set := make(map[string]bool)
3576
Colin Cross068e0fe2016-12-13 15:23:47 -08003577 for _, s := range srcFiles {
Colin Cross41955e82019-05-29 14:40:35 -07003578 if m, t := SrcIsModuleWithTag(s); m != "" {
3579 if _, found := set[s]; found {
3580 ctx.ModuleErrorf("found source dependency duplicate: %q!", s)
Nan Zhang2439eb72017-04-10 11:27:50 -07003581 } else {
Colin Cross41955e82019-05-29 14:40:35 -07003582 set[s] = true
Paul Duffin40131a32021-07-09 17:10:35 +01003583 ctx.AddDependency(ctx.Module(), sourceOrOutputDepTag(m, t), m)
Nan Zhang2439eb72017-04-10 11:27:50 -07003584 }
Colin Cross068e0fe2016-12-13 15:23:47 -08003585 }
3586 }
Colin Cross068e0fe2016-12-13 15:23:47 -08003587}
3588
Colin Cross366938f2017-12-11 16:29:02 -08003589// Adds necessary dependencies to satisfy filegroup or generated sources modules specified in s
3590// using ":module" syntax, if any.
Colin Cross27b922f2019-03-04 22:35:41 -08003591//
3592// Deprecated: tag the property with `android:"path"` instead.
Colin Cross366938f2017-12-11 16:29:02 -08003593func ExtractSourceDeps(ctx BottomUpMutatorContext, s *string) {
3594 if s != nil {
Colin Cross41955e82019-05-29 14:40:35 -07003595 if m, t := SrcIsModuleWithTag(*s); m != "" {
Paul Duffin40131a32021-07-09 17:10:35 +01003596 ctx.AddDependency(ctx.Module(), sourceOrOutputDepTag(m, t), m)
Colin Cross366938f2017-12-11 16:29:02 -08003597 }
3598 }
3599}
3600
Colin Cross41955e82019-05-29 14:40:35 -07003601// A module that implements SourceFileProducer can be referenced from any property that is tagged with `android:"path"`
3602// 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 -08003603type SourceFileProducer interface {
3604 Srcs() Paths
3605}
3606
Colin Cross41955e82019-05-29 14:40:35 -07003607// A module that implements OutputFileProducer can be referenced from any property that is tagged with `android:"path"`
Roland Levillain97c1f342019-11-22 14:20:54 +00003608// 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 -07003609// listed in the property.
3610type OutputFileProducer interface {
3611 OutputFiles(tag string) (Paths, error)
3612}
3613
Colin Cross5e708052019-08-06 13:59:50 -07003614// OutputFilesForModule returns the paths from an OutputFileProducer with the given tag. On error, including if the
3615// module produced zero paths, it reports errors to the ctx and returns nil.
3616func OutputFilesForModule(ctx PathContext, module blueprint.Module, tag string) Paths {
3617 paths, err := outputFilesForModule(ctx, module, tag)
3618 if err != nil {
3619 reportPathError(ctx, err)
3620 return nil
3621 }
3622 return paths
3623}
3624
3625// OutputFileForModule returns the path from an OutputFileProducer with the given tag. On error, including if the
3626// module produced zero or multiple paths, it reports errors to the ctx and returns nil.
3627func OutputFileForModule(ctx PathContext, module blueprint.Module, tag string) Path {
3628 paths, err := outputFilesForModule(ctx, module, tag)
3629 if err != nil {
3630 reportPathError(ctx, err)
3631 return nil
3632 }
Colin Cross14ec66c2022-10-03 21:02:27 -07003633 if len(paths) == 0 {
3634 type addMissingDependenciesIntf interface {
3635 AddMissingDependencies([]string)
3636 OtherModuleName(blueprint.Module) string
3637 }
3638 if mctx, ok := ctx.(addMissingDependenciesIntf); ok && ctx.Config().AllowMissingDependencies() {
3639 mctx.AddMissingDependencies([]string{mctx.OtherModuleName(module)})
3640 } else {
3641 ReportPathErrorf(ctx, "failed to get output files from module %q", pathContextName(ctx, module))
3642 }
3643 // Return a fake output file to avoid nil dereferences of Path objects later.
3644 // This should never get used for an actual build as the error or missing
3645 // dependency has already been reported.
3646 p, err := pathForSource(ctx, filepath.Join("missing_output_file", pathContextName(ctx, module)))
3647 if err != nil {
3648 reportPathError(ctx, err)
3649 return nil
3650 }
3651 return p
3652 }
Colin Cross5e708052019-08-06 13:59:50 -07003653 if len(paths) > 1 {
Ulya Trafimovich5ab276a2020-08-25 12:45:15 +01003654 ReportPathErrorf(ctx, "got multiple output files from module %q, expected exactly one",
Colin Cross5e708052019-08-06 13:59:50 -07003655 pathContextName(ctx, module))
Colin Cross5e708052019-08-06 13:59:50 -07003656 }
3657 return paths[0]
3658}
3659
3660func outputFilesForModule(ctx PathContext, module blueprint.Module, tag string) (Paths, error) {
3661 if outputFileProducer, ok := module.(OutputFileProducer); ok {
3662 paths, err := outputFileProducer.OutputFiles(tag)
3663 if err != nil {
3664 return nil, fmt.Errorf("failed to get output file from module %q: %s",
3665 pathContextName(ctx, module), err.Error())
3666 }
Colin Cross5e708052019-08-06 13:59:50 -07003667 return paths, nil
Colin Cross74b1e2b2020-11-22 20:23:02 -08003668 } else if sourceFileProducer, ok := module.(SourceFileProducer); ok {
3669 if tag != "" {
3670 return nil, fmt.Errorf("module %q is a SourceFileProducer, not an OutputFileProducer, and so does not support tag %q", pathContextName(ctx, module), tag)
3671 }
3672 paths := sourceFileProducer.Srcs()
Colin Cross74b1e2b2020-11-22 20:23:02 -08003673 return paths, nil
Colin Cross5e708052019-08-06 13:59:50 -07003674 } else {
3675 return nil, fmt.Errorf("module %q is not an OutputFileProducer", pathContextName(ctx, module))
3676 }
3677}
3678
Colin Cross41589502020-12-01 14:00:21 -08003679// Modules can implement HostToolProvider and return a valid OptionalPath from HostToolPath() to
3680// specify that they can be used as a tool by a genrule module.
Colin Crossfe17f6f2019-03-28 19:30:56 -07003681type HostToolProvider interface {
Colin Crossba9e4032020-11-24 16:32:22 -08003682 Module
Colin Cross41589502020-12-01 14:00:21 -08003683 // HostToolPath returns the path to the host tool for the module if it is one, or an invalid
3684 // OptionalPath.
Colin Crossfe17f6f2019-03-28 19:30:56 -07003685 HostToolPath() OptionalPath
3686}
3687
Colin Cross27b922f2019-03-04 22:35:41 -08003688// Returns a list of paths expanded from globs and modules referenced using ":module" syntax. The property must
3689// be tagged with `android:"path" to support automatic source module dependency resolution.
Colin Cross8a497952019-03-05 22:25:09 -08003690//
3691// Deprecated: use PathsForModuleSrc or PathsForModuleSrcExcludes instead.
Colin Cross25de6c32019-06-06 14:29:25 -07003692func (m *moduleContext) ExpandSources(srcFiles, excludes []string) Paths {
3693 return PathsForModuleSrcExcludes(m, srcFiles, excludes)
Colin Cross8f101b42015-06-17 15:09:06 -07003694}
3695
Colin Cross2fafa3e2019-03-05 12:39:51 -08003696// Returns a single path expanded from globs and modules referenced using ":module" syntax. The property must
3697// be tagged with `android:"path" to support automatic source module dependency resolution.
Colin Cross8a497952019-03-05 22:25:09 -08003698//
3699// Deprecated: use PathForModuleSrc instead.
Sasha Smundake198eaf2022-08-04 13:07:02 -07003700func (m *moduleContext) ExpandSource(srcFile, _ string) Path {
Colin Cross25de6c32019-06-06 14:29:25 -07003701 return PathForModuleSrc(m, srcFile)
Colin Cross2fafa3e2019-03-05 12:39:51 -08003702}
3703
3704// Returns an optional single path expanded from globs and modules referenced using ":module" syntax if
3705// the srcFile is non-nil. The property must be tagged with `android:"path" to support automatic source module
3706// dependency resolution.
Sasha Smundake198eaf2022-08-04 13:07:02 -07003707func (m *moduleContext) ExpandOptionalSource(srcFile *string, _ string) OptionalPath {
Colin Cross2fafa3e2019-03-05 12:39:51 -08003708 if srcFile != nil {
Colin Cross25de6c32019-06-06 14:29:25 -07003709 return OptionalPathForPath(PathForModuleSrc(m, *srcFile))
Colin Cross2fafa3e2019-03-05 12:39:51 -08003710 }
3711 return OptionalPath{}
3712}
3713
Colin Cross25de6c32019-06-06 14:29:25 -07003714func (m *moduleContext) RequiredModuleNames() []string {
Jiyong Park6a8cf5f2019-12-30 16:31:09 +09003715 return m.module.RequiredModuleNames()
Nan Zhang6d34b302017-02-04 17:47:46 -08003716}
3717
Colin Cross25de6c32019-06-06 14:29:25 -07003718func (m *moduleContext) HostRequiredModuleNames() []string {
Jiyong Park6a8cf5f2019-12-30 16:31:09 +09003719 return m.module.HostRequiredModuleNames()
Sasha Smundakb6d23052019-04-01 18:37:36 -07003720}
3721
Colin Cross25de6c32019-06-06 14:29:25 -07003722func (m *moduleContext) TargetRequiredModuleNames() []string {
Jiyong Park6a8cf5f2019-12-30 16:31:09 +09003723 return m.module.TargetRequiredModuleNames()
Sasha Smundakb6d23052019-04-01 18:37:36 -07003724}
3725
Colin Cross463a90e2015-06-17 14:20:06 -07003726func init() {
LaMont Jones0c10e4d2023-05-16 00:58:37 +00003727 RegisterParallelSingletonType("buildtarget", BuildTargetSingleton)
Colin Cross463a90e2015-06-17 14:20:06 -07003728}
3729
Colin Cross0875c522017-11-28 17:34:01 -08003730func BuildTargetSingleton() Singleton {
Colin Cross1f8c52b2015-06-16 16:38:17 -07003731 return &buildTargetSingleton{}
3732}
3733
Colin Cross87d8b562017-04-25 10:01:55 -07003734func parentDir(dir string) string {
3735 dir, _ = filepath.Split(dir)
3736 return filepath.Clean(dir)
3737}
3738
Colin Cross1f8c52b2015-06-16 16:38:17 -07003739type buildTargetSingleton struct{}
3740
Chih-Hung Hsieh80783772021-10-11 16:46:56 -07003741func AddAncestors(ctx SingletonContext, dirMap map[string]Paths, mmName func(string) string) ([]string, []string) {
Chih-Hung Hsiehd0f82fe2021-09-05 20:15:38 -07003742 // Ensure ancestor directories are in dirMap
3743 // Make directories build their direct subdirectories
Chih-Hung Hsieh80783772021-10-11 16:46:56 -07003744 // Returns a slice of all directories and a slice of top-level directories.
Cole Faust18994c72023-02-28 16:02:16 -08003745 dirs := SortedKeys(dirMap)
Chih-Hung Hsiehd0f82fe2021-09-05 20:15:38 -07003746 for _, dir := range dirs {
3747 dir := parentDir(dir)
3748 for dir != "." && dir != "/" {
3749 if _, exists := dirMap[dir]; exists {
3750 break
3751 }
3752 dirMap[dir] = nil
3753 dir = parentDir(dir)
3754 }
3755 }
Cole Faust18994c72023-02-28 16:02:16 -08003756 dirs = SortedKeys(dirMap)
Chih-Hung Hsieh80783772021-10-11 16:46:56 -07003757 var topDirs []string
Chih-Hung Hsiehd0f82fe2021-09-05 20:15:38 -07003758 for _, dir := range dirs {
3759 p := parentDir(dir)
3760 if p != "." && p != "/" {
3761 dirMap[p] = append(dirMap[p], PathForPhony(ctx, mmName(dir)))
Chih-Hung Hsieh80783772021-10-11 16:46:56 -07003762 } else if dir != "." && dir != "/" && dir != "" {
3763 topDirs = append(topDirs, dir)
Chih-Hung Hsiehd0f82fe2021-09-05 20:15:38 -07003764 }
3765 }
Cole Faust18994c72023-02-28 16:02:16 -08003766 return SortedKeys(dirMap), topDirs
Chih-Hung Hsiehd0f82fe2021-09-05 20:15:38 -07003767}
3768
Colin Cross0875c522017-11-28 17:34:01 -08003769func (c *buildTargetSingleton) GenerateBuildActions(ctx SingletonContext) {
3770 var checkbuildDeps Paths
Colin Cross1f8c52b2015-06-16 16:38:17 -07003771
Colin Crossc3d87d32020-06-04 13:25:17 -07003772 mmTarget := func(dir string) string {
3773 return "MODULES-IN-" + strings.Replace(filepath.Clean(dir), "/", "-", -1)
Colin Cross87d8b562017-04-25 10:01:55 -07003774 }
3775
Colin Cross0875c522017-11-28 17:34:01 -08003776 modulesInDir := make(map[string]Paths)
Colin Cross1f8c52b2015-06-16 16:38:17 -07003777
Colin Cross0875c522017-11-28 17:34:01 -08003778 ctx.VisitAllModules(func(module Module) {
3779 blueprintDir := module.base().blueprintDir
3780 installTarget := module.base().installTarget
3781 checkbuildTarget := module.base().checkbuildTarget
Colin Cross1f8c52b2015-06-16 16:38:17 -07003782
Colin Cross0875c522017-11-28 17:34:01 -08003783 if checkbuildTarget != nil {
3784 checkbuildDeps = append(checkbuildDeps, checkbuildTarget)
3785 modulesInDir[blueprintDir] = append(modulesInDir[blueprintDir], checkbuildTarget)
3786 }
Colin Cross1f8c52b2015-06-16 16:38:17 -07003787
Colin Cross0875c522017-11-28 17:34:01 -08003788 if installTarget != nil {
3789 modulesInDir[blueprintDir] = append(modulesInDir[blueprintDir], installTarget)
Colin Cross1f8c52b2015-06-16 16:38:17 -07003790 }
3791 })
3792
Dan Willemsen5ba07e82015-12-11 13:51:06 -08003793 suffix := ""
Jingwen Chencda22c92020-11-23 00:22:30 -05003794 if ctx.Config().KatiEnabled() {
Dan Willemsen5ba07e82015-12-11 13:51:06 -08003795 suffix = "-soong"
3796 }
3797
Colin Cross1f8c52b2015-06-16 16:38:17 -07003798 // Create a top-level checkbuild target that depends on all modules
Colin Crossc3d87d32020-06-04 13:25:17 -07003799 ctx.Phony("checkbuild"+suffix, checkbuildDeps...)
Colin Cross1f8c52b2015-06-16 16:38:17 -07003800
Dan Willemsend2e95fb2017-09-20 14:30:50 -07003801 // Make will generate the MODULES-IN-* targets
Jingwen Chencda22c92020-11-23 00:22:30 -05003802 if ctx.Config().KatiEnabled() {
Dan Willemsend2e95fb2017-09-20 14:30:50 -07003803 return
3804 }
3805
Chih-Hung Hsieh80783772021-10-11 16:46:56 -07003806 dirs, _ := AddAncestors(ctx, modulesInDir, mmTarget)
Colin Cross87d8b562017-04-25 10:01:55 -07003807
Dan Willemsend2e95fb2017-09-20 14:30:50 -07003808 // Create a MODULES-IN-<directory> target that depends on all modules in a directory, and
3809 // depends on the MODULES-IN-* targets of all of its subdirectories that contain Android.bp
3810 // files.
Colin Cross1f8c52b2015-06-16 16:38:17 -07003811 for _, dir := range dirs {
Colin Crossc3d87d32020-06-04 13:25:17 -07003812 ctx.Phony(mmTarget(dir), modulesInDir[dir]...)
Colin Cross1f8c52b2015-06-16 16:38:17 -07003813 }
Dan Willemsen61d88b82017-09-20 17:29:08 -07003814
3815 // Create (host|host-cross|target)-<OS> phony rules to build a reduced checkbuild.
Jiyong Park1613e552020-09-14 19:43:17 +09003816 type osAndCross struct {
3817 os OsType
3818 hostCross bool
3819 }
3820 osDeps := map[osAndCross]Paths{}
Colin Cross0875c522017-11-28 17:34:01 -08003821 ctx.VisitAllModules(func(module Module) {
3822 if module.Enabled() {
Jiyong Park1613e552020-09-14 19:43:17 +09003823 key := osAndCross{os: module.Target().Os, hostCross: module.Target().HostCross}
3824 osDeps[key] = append(osDeps[key], module.base().checkbuildFiles...)
Dan Willemsen61d88b82017-09-20 17:29:08 -07003825 }
3826 })
3827
Colin Cross0875c522017-11-28 17:34:01 -08003828 osClass := make(map[string]Paths)
Jiyong Park1613e552020-09-14 19:43:17 +09003829 for key, deps := range osDeps {
Dan Willemsen61d88b82017-09-20 17:29:08 -07003830 var className string
3831
Jiyong Park1613e552020-09-14 19:43:17 +09003832 switch key.os.Class {
Dan Willemsen61d88b82017-09-20 17:29:08 -07003833 case Host:
Jiyong Park1613e552020-09-14 19:43:17 +09003834 if key.hostCross {
3835 className = "host-cross"
3836 } else {
3837 className = "host"
3838 }
Dan Willemsen61d88b82017-09-20 17:29:08 -07003839 case Device:
3840 className = "target"
3841 default:
3842 continue
3843 }
3844
Jiyong Park1613e552020-09-14 19:43:17 +09003845 name := className + "-" + key.os.Name
Colin Crossc3d87d32020-06-04 13:25:17 -07003846 osClass[className] = append(osClass[className], PathForPhony(ctx, name))
Dan Willemsen61d88b82017-09-20 17:29:08 -07003847
Colin Crossc3d87d32020-06-04 13:25:17 -07003848 ctx.Phony(name, deps...)
Dan Willemsen61d88b82017-09-20 17:29:08 -07003849 }
3850
3851 // Wrap those into host|host-cross|target phony rules
Cole Faust18994c72023-02-28 16:02:16 -08003852 for _, class := range SortedKeys(osClass) {
Colin Crossc3d87d32020-06-04 13:25:17 -07003853 ctx.Phony(class, osClass[class]...)
Dan Willemsen61d88b82017-09-20 17:29:08 -07003854 }
Colin Cross1f8c52b2015-06-16 16:38:17 -07003855}
Colin Crossd779da42015-12-17 18:00:23 -08003856
Brandon Lee5d45c6f2018-08-15 15:35:38 -07003857// Collect information for opening IDE project files in java/jdeps.go.
3858type IDEInfo interface {
3859 IDEInfo(ideInfo *IdeInfo)
3860 BaseModuleName() string
3861}
3862
3863// Extract the base module name from the Import name.
3864// Often the Import name has a prefix "prebuilt_".
3865// Remove the prefix explicitly if needed
3866// until we find a better solution to get the Import name.
3867type IDECustomizedModuleName interface {
3868 IDECustomizedModuleName() string
3869}
3870
3871type IdeInfo struct {
3872 Deps []string `json:"dependencies,omitempty"`
3873 Srcs []string `json:"srcs,omitempty"`
3874 Aidl_include_dirs []string `json:"aidl_include_dirs,omitempty"`
3875 Jarjar_rules []string `json:"jarjar_rules,omitempty"`
3876 Jars []string `json:"jars,omitempty"`
3877 Classes []string `json:"class,omitempty"`
3878 Installed_paths []string `json:"installed,omitempty"`
patricktu18c82ff2019-05-10 15:48:50 +08003879 SrcJars []string `json:"srcjars,omitempty"`
bralee1fbf4402020-05-21 10:11:59 +08003880 Paths []string `json:"path,omitempty"`
Yikef6282022022-04-13 20:41:01 +08003881 Static_libs []string `json:"static_libs,omitempty"`
3882 Libs []string `json:"libs,omitempty"`
Brandon Lee5d45c6f2018-08-15 15:35:38 -07003883}
Paul Duffinf88d8e02020-05-07 20:21:34 +01003884
3885func CheckBlueprintSyntax(ctx BaseModuleContext, filename string, contents string) []error {
3886 bpctx := ctx.blueprintBaseModuleContext()
3887 return blueprint.CheckBlueprintSyntax(bpctx.ModuleFactories(), filename, contents)
3888}
Colin Cross5d583952020-11-24 16:21:24 -08003889
3890// installPathsDepSet is a thin type-safe wrapper around the generic depSet. It always uses
3891// topological order.
3892type installPathsDepSet struct {
3893 depSet
3894}
3895
3896// newInstallPathsDepSet returns an immutable packagingSpecsDepSet with the given direct and
3897// transitive contents.
3898func newInstallPathsDepSet(direct InstallPaths, transitive []*installPathsDepSet) *installPathsDepSet {
3899 return &installPathsDepSet{*newDepSet(TOPOLOGICAL, direct, transitive)}
3900}
3901
3902// ToList returns the installPathsDepSet flattened to a list in topological order.
3903func (d *installPathsDepSet) ToList() InstallPaths {
3904 if d == nil {
3905 return nil
3906 }
3907 return d.depSet.ToList().(InstallPaths)
3908}