blob: 76fe8dc45aa0a8025b27c9c108bcfb1b8e3db68c [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 Yun885a7de2021-06-29 20:34:53 +0900553 EffectiveLicenseFiles() Paths
Colin Cross36242852017-06-23 15:06:31 -0700554
555 AddProperties(props ...interface{})
556 GetProperties() []interface{}
Colin Crosscec81712017-07-13 14:43:27 -0700557
Liz Kammer2ada09a2021-08-11 00:17:36 -0400558 // IsConvertedByBp2build returns whether this module was converted via bp2build
559 IsConvertedByBp2build() bool
560 // Bp2buildTargets returns the target(s) generated for Bazel via bp2build for this module
561 Bp2buildTargets() []bp2buildInfo
Liz Kammer6eff3232021-08-26 08:37:59 -0400562 GetUnconvertedBp2buildDeps() []string
Liz Kammerdaa09ef2021-12-15 15:35:38 -0500563 GetMissingBp2buildDeps() []string
Liz Kammer2ada09a2021-08-11 00:17:36 -0400564
Colin Crossae887032017-10-23 17:16:14 -0700565 BuildParamsForTests() []BuildParams
Colin Cross4c83e5c2019-02-25 14:54:28 -0800566 RuleParamsForTests() map[blueprint.Rule]blueprint.RuleParams
Jaewoong Jung38e4fb22018-12-12 09:01:34 -0800567 VariablesForTests() map[string]string
Paul Duffine2453c72019-05-31 14:00:04 +0100568
Colin Cross9a362232019-07-01 15:32:45 -0700569 // String returns a string that includes the module name and variants for printing during debugging.
570 String() string
571
Paul Duffine2453c72019-05-31 14:00:04 +0100572 // Get the qualified module id for this module.
573 qualifiedModuleId(ctx BaseModuleContext) qualifiedModuleName
574
575 // Get information about the properties that can contain visibility rules.
576 visibilityProperties() []visibilityProperty
Paul Duffin63c6e182019-07-24 14:24:38 +0100577
Jiyong Park6a8cf5f2019-12-30 16:31:09 +0900578 RequiredModuleNames() []string
579 HostRequiredModuleNames() []string
580 TargetRequiredModuleNames() []string
Colin Cross897266e2020-02-13 13:22:08 -0800581
Jiyong Park4dc2a1a2020-09-28 17:46:22 +0900582 FilesToInstall() InstallPaths
Jiyong Park073ea552020-11-09 14:08:34 +0900583 PackagingSpecs() []PackagingSpec
Colin Crossffe6b9d2020-12-01 15:40:06 -0800584
585 // TransitivePackagingSpecs returns the PackagingSpecs for this module and any transitive
586 // dependencies with dependency tags for which IsInstallDepNeeded() returns true.
587 TransitivePackagingSpecs() []PackagingSpec
Paul Duffine2453c72019-05-31 14:00:04 +0100588}
589
590// Qualified id for a module
591type qualifiedModuleName struct {
592 // The package (i.e. directory) in which the module is defined, without trailing /
593 pkg string
594
595 // The name of the module, empty string if package.
596 name string
597}
598
599func (q qualifiedModuleName) String() string {
600 if q.name == "" {
601 return "//" + q.pkg
602 }
603 return "//" + q.pkg + ":" + q.name
604}
605
Paul Duffine484f472019-06-20 16:38:08 +0100606func (q qualifiedModuleName) isRootPackage() bool {
607 return q.pkg == "" && q.name == ""
608}
609
Paul Duffine2453c72019-05-31 14:00:04 +0100610// Get the id for the package containing this module.
611func (q qualifiedModuleName) getContainingPackageId() qualifiedModuleName {
612 pkg := q.pkg
613 if q.name == "" {
Paul Duffine484f472019-06-20 16:38:08 +0100614 if pkg == "" {
615 panic(fmt.Errorf("Cannot get containing package id of root package"))
616 }
617
618 index := strings.LastIndex(pkg, "/")
619 if index == -1 {
620 pkg = ""
621 } else {
622 pkg = pkg[:index]
623 }
Paul Duffine2453c72019-05-31 14:00:04 +0100624 }
625 return newPackageId(pkg)
626}
627
628func newPackageId(pkg string) qualifiedModuleName {
629 // A qualified id for a package module has no name.
630 return qualifiedModuleName{pkg: pkg, name: ""}
Colin Cross3f40fa42015-01-30 17:27:36 -0800631}
632
Jingwen Chen40fd90a2020-06-15 05:24:19 +0000633type Dist struct {
634 // Copy the output of this module to the $DIST_DIR when `dist` is specified on the
635 // command line and any of these targets are also on the command line, or otherwise
636 // built
637 Targets []string `android:"arch_variant"`
638
639 // The name of the output artifact. This defaults to the basename of the output of
640 // the module.
641 Dest *string `android:"arch_variant"`
642
643 // The directory within the dist directory to store the artifact. Defaults to the
644 // top level directory ("").
645 Dir *string `android:"arch_variant"`
646
647 // A suffix to add to the artifact file name (before any extension).
648 Suffix *string `android:"arch_variant"`
649
Trevor Radcliffe90727f42022-03-21 19:34:02 +0000650 // If true, then the artifact file will be appended with _<product name>. For
651 // example, if the product is coral and the module is an android_app module
652 // of name foo, then the artifact would be foo_coral.apk. If false, there is
653 // no change to the artifact file name.
654 Append_artifact_with_product *bool `android:"arch_variant"`
655
Paul Duffin74f05592020-11-25 16:37:46 +0000656 // A string tag to select the OutputFiles associated with the tag.
657 //
658 // If no tag is specified then it will select the default dist paths provided
659 // by the module type. If a tag of "" is specified then it will return the
660 // default output files provided by the modules, i.e. the result of calling
661 // OutputFiles("").
Jingwen Chen40fd90a2020-06-15 05:24:19 +0000662 Tag *string `android:"arch_variant"`
663}
664
Bob Badour4101c712022-02-09 11:54:35 -0800665// NamedPath associates a path with a name. e.g. a license text path with a package name
666type NamedPath struct {
667 Path Path
668 Name string
669}
670
671// String returns an escaped string representing the `NamedPath`.
672func (p NamedPath) String() string {
673 if len(p.Name) > 0 {
674 return p.Path.String() + ":" + url.QueryEscape(p.Name)
675 }
676 return p.Path.String()
677}
678
679// NamedPaths describes a list of paths each associated with a name.
680type NamedPaths []NamedPath
681
682// Strings returns a list of escaped strings representing each `NamedPath` in the list.
683func (l NamedPaths) Strings() []string {
684 result := make([]string, 0, len(l))
685 for _, p := range l {
686 result = append(result, p.String())
687 }
688 return result
689}
690
691// SortedUniqueNamedPaths modifies `l` in place to return the sorted unique subset.
692func SortedUniqueNamedPaths(l NamedPaths) NamedPaths {
693 if len(l) == 0 {
694 return l
695 }
696 sort.Slice(l, func(i, j int) bool {
697 return l[i].String() < l[j].String()
698 })
699 k := 0
700 for i := 1; i < len(l); i++ {
701 if l[i].String() == l[k].String() {
702 continue
703 }
704 k++
705 if k < i {
706 l[k] = l[i]
707 }
708 }
709 return l[:k+1]
710}
711
Colin Crossfc754582016-05-17 16:34:16 -0700712type nameProperties struct {
713 // The name of the module. Must be unique across all modules.
Nan Zhang0007d812017-11-07 10:57:05 -0800714 Name *string
Colin Crossfc754582016-05-17 16:34:16 -0700715}
716
Colin Cross08d6f8f2020-11-19 02:33:19 +0000717type commonProperties struct {
Dan Willemsen0effe062015-11-30 16:06:01 -0800718 // emit build rules for this module
Paul Duffin54d9bb72020-02-12 10:20:56 +0000719 //
720 // Disabling a module should only be done for those modules that cannot be built
721 // in the current environment. Modules that can build in the current environment
722 // but are not usually required (e.g. superceded by a prebuilt) should not be
723 // disabled as that will prevent them from being built by the checkbuild target
724 // and so prevent early detection of changes that have broken those modules.
Dan Willemsen0effe062015-11-30 16:06:01 -0800725 Enabled *bool `android:"arch_variant"`
Colin Cross3f40fa42015-01-30 17:27:36 -0800726
Paul Duffin2e61fa62019-03-28 14:10:57 +0000727 // Controls the visibility of this module to other modules. Allowable values are one or more of
728 // these formats:
729 //
730 // ["//visibility:public"]: Anyone can use this module.
731 // ["//visibility:private"]: Only rules in the module's package (not its subpackages) can use
732 // this module.
Paul Duffin51084ff2020-05-05 19:19:22 +0100733 // ["//visibility:override"]: Discards any rules inherited from defaults or a creating module.
734 // Can only be used at the beginning of a list of visibility rules.
Paul Duffin2e61fa62019-03-28 14:10:57 +0000735 // ["//some/package:__pkg__", "//other/package:__pkg__"]: Only modules in some/package and
736 // other/package (defined in some/package/*.bp and other/package/*.bp) have access to
737 // this module. Note that sub-packages do not have access to the rule; for example,
738 // //some/package/foo:bar or //other/package/testing:bla wouldn't have access. __pkg__
739 // is a special module and must be used verbatim. It represents all of the modules in the
740 // package.
741 // ["//project:__subpackages__", "//other:__subpackages__"]: Only modules in packages project
742 // or other or in one of their sub-packages have access to this module. For example,
743 // //project:rule, //project/library:lib or //other/testing/internal:munge are allowed
744 // to depend on this rule (but not //independent:evil)
745 // ["//project"]: This is shorthand for ["//project:__pkg__"]
746 // [":__subpackages__"]: This is shorthand for ["//project:__subpackages__"] where
747 // //project is the module's package. e.g. using [":__subpackages__"] in
748 // packages/apps/Settings/Android.bp is equivalent to
749 // //packages/apps/Settings:__subpackages__.
750 // ["//visibility:legacy_public"]: The default visibility, behaves as //visibility:public
751 // for now. It is an error if it is used in a module.
Paul Duffine2453c72019-05-31 14:00:04 +0100752 //
753 // If a module does not specify the `visibility` property then it uses the
754 // `default_visibility` property of the `package` module in the module's package.
755 //
756 // If the `default_visibility` property is not set for the module's package then
Paul Duffine484f472019-06-20 16:38:08 +0100757 // it will use the `default_visibility` of its closest ancestor package for which
758 // a `default_visibility` property is specified.
759 //
760 // If no `default_visibility` property can be found then the module uses the
761 // global default of `//visibility:legacy_public`.
Paul Duffine2453c72019-05-31 14:00:04 +0100762 //
Paul Duffin95d53b52019-07-24 13:45:05 +0100763 // The `visibility` property has no effect on a defaults module although it does
764 // apply to any non-defaults module that uses it. To set the visibility of a
765 // defaults module, use the `defaults_visibility` property on the defaults module;
766 // not to be confused with the `default_visibility` property on the package module.
767 //
Paul Duffin2e61fa62019-03-28 14:10:57 +0000768 // See https://android.googlesource.com/platform/build/soong/+/master/README.md#visibility for
769 // more details.
770 Visibility []string
771
Bob Badour37af0462021-01-07 03:34:31 +0000772 // Describes the licenses applicable to this module. Must reference license modules.
773 Licenses []string
774
775 // Flattened from direct license dependencies. Equal to Licenses unless particular module adds more.
776 Effective_licenses []string `blueprint:"mutated"`
777 // Override of module name when reporting licenses
778 Effective_package_name *string `blueprint:"mutated"`
779 // Notice files
Bob Badour4101c712022-02-09 11:54:35 -0800780 Effective_license_text NamedPaths `blueprint:"mutated"`
Bob Badour37af0462021-01-07 03:34:31 +0000781 // License names
782 Effective_license_kinds []string `blueprint:"mutated"`
783 // License conditions
784 Effective_license_conditions []string `blueprint:"mutated"`
785
Colin Cross7d5136f2015-05-11 13:39:40 -0700786 // control whether this module compiles for 32-bit, 64-bit, or both. Possible values
Colin Cross3f40fa42015-01-30 17:27:36 -0800787 // are "32" (compile for 32-bit only), "64" (compile for 64-bit only), "both" (compile for both
788 // 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 +0000789 // platform).
Colin Cross7d716ba2017-11-01 10:38:29 -0700790 Compile_multilib *string `android:"arch_variant"`
Colin Cross69617d32016-09-06 10:39:07 -0700791
792 Target struct {
793 Host struct {
Colin Cross7d716ba2017-11-01 10:38:29 -0700794 Compile_multilib *string
Colin Cross69617d32016-09-06 10:39:07 -0700795 }
796 Android struct {
Colin Cross7d716ba2017-11-01 10:38:29 -0700797 Compile_multilib *string
Colin Cross69617d32016-09-06 10:39:07 -0700798 }
799 }
800
Paul Duffinca7f0ef2020-02-25 15:50:49 +0000801 // If set to true then the archMutator will create variants for each arch specific target
802 // (e.g. 32/64) that the module is required to produce. If set to false then it will only
803 // create a variant for the architecture and will list the additional arch specific targets
804 // that the variant needs to produce in the CompileMultiTargets property.
Colin Crossee0bc3b2018-10-02 22:01:37 -0700805 UseTargetVariants bool `blueprint:"mutated"`
806 Default_multilib string `blueprint:"mutated"`
Colin Cross3f40fa42015-01-30 17:27:36 -0800807
Dan Willemsen782a2d12015-12-21 14:55:28 -0800808 // whether this is a proprietary vendor module, and should be installed into /vendor
Colin Cross7d716ba2017-11-01 10:38:29 -0700809 Proprietary *bool
Dan Willemsen782a2d12015-12-21 14:55:28 -0800810
Colin Cross55708f32017-03-20 13:23:34 -0700811 // vendor who owns this module
Dan Willemsenefac4a82017-07-18 19:42:09 -0700812 Owner *string
Colin Cross55708f32017-03-20 13:23:34 -0700813
Jiyong Park2db76922017-11-08 16:03:48 +0900814 // whether this module is specific to an SoC (System-On-a-Chip). When set to true,
815 // it is installed into /vendor (or /system/vendor if vendor partition does not exist).
816 // Use `soc_specific` instead for better meaning.
Colin Cross7d716ba2017-11-01 10:38:29 -0700817 Vendor *bool
Dan Willemsenaa118f92017-04-06 12:49:58 -0700818
Jiyong Park2db76922017-11-08 16:03:48 +0900819 // whether this module is specific to an SoC (System-On-a-Chip). When set to true,
820 // it is installed into /vendor (or /system/vendor if vendor partition does not exist).
821 Soc_specific *bool
822
823 // whether this module is specific to a device, not only for SoC, but also for off-chip
824 // peripherals. When set to true, it is installed into /odm (or /vendor/odm if odm partition
825 // does not exist, or /system/vendor/odm if both odm and vendor partitions do not exist).
826 // This implies `soc_specific:true`.
827 Device_specific *bool
828
829 // whether this module is specific to a software configuration of a product (e.g. country,
Jaekyun Seok5cfbfbb2018-01-10 19:00:15 +0900830 // network operator, etc). When set to true, it is installed into /product (or
831 // /system/product if product partition does not exist).
Jiyong Park2db76922017-11-08 16:03:48 +0900832 Product_specific *bool
833
Justin Yund5f6c822019-06-25 16:47:17 +0900834 // whether this module extends system. When set to true, it is installed into /system_ext
835 // (or /system/system_ext if system_ext partition does not exist).
836 System_ext_specific *bool
837
Jiyong Parkf9332f12018-02-01 00:54:12 +0900838 // Whether this module is installed to recovery partition
839 Recovery *bool
840
Yifan Hong1b3348d2020-01-21 15:53:22 -0800841 // Whether this module is installed to ramdisk
842 Ramdisk *bool
843
Yifan Hong60e0cfb2020-10-21 15:17:56 -0700844 // Whether this module is installed to vendor ramdisk
845 Vendor_ramdisk *bool
846
Inseob Kim08758f02021-04-08 21:13:22 +0900847 // Whether this module is installed to debug ramdisk
848 Debug_ramdisk *bool
849
Jaewoong Jung8e93aba2021-03-02 16:58:08 -0800850 // Whether this module is built for non-native architectures (also known as native bridge binary)
dimitry1f33e402019-03-26 12:39:31 +0100851 Native_bridge_supported *bool `android:"arch_variant"`
852
Dan Willemsen2277bcb2016-07-25 20:27:39 -0700853 // init.rc files to be installed if this module is installed
Colin Cross0bab8772020-09-25 14:01:21 -0700854 Init_rc []string `android:"arch_variant,path"`
Dan Willemsen2277bcb2016-07-25 20:27:39 -0700855
Steven Moreland57a23d22018-04-04 15:42:19 -0700856 // VINTF manifest fragments to be installed if this module is installed
Colin Cross27b922f2019-03-04 22:35:41 -0800857 Vintf_fragments []string `android:"path"`
Steven Moreland57a23d22018-04-04 15:42:19 -0700858
Chris Wolfe998306e2016-08-15 14:47:23 -0400859 // names of other modules to install if this module is installed
Colin Crossc602b7d2017-05-05 13:36:36 -0700860 Required []string `android:"arch_variant"`
Chris Wolfe998306e2016-08-15 14:47:23 -0400861
Sasha Smundakb6d23052019-04-01 18:37:36 -0700862 // names of other modules to install on host if this module is installed
863 Host_required []string `android:"arch_variant"`
864
865 // names of other modules to install on target if this module is installed
866 Target_required []string `android:"arch_variant"`
867
Paul Duffinca7f0ef2020-02-25 15:50:49 +0000868 // The OsType of artifacts that this module variant is responsible for creating.
869 //
870 // Set by osMutator
871 CompileOS OsType `blueprint:"mutated"`
872
873 // The Target of artifacts that this module variant is responsible for creating.
874 //
875 // Set by archMutator
876 CompileTarget Target `blueprint:"mutated"`
877
878 // The additional arch specific targets (e.g. 32/64 bit) that this module variant is
879 // responsible for creating.
880 //
881 // By default this is nil as, where necessary, separate variants are created for the
882 // different multilib types supported and that information is encapsulated in the
883 // CompileTarget so the module variant simply needs to create artifacts for that.
884 //
885 // However, if UseTargetVariants is set to false (e.g. by
886 // InitAndroidMultiTargetsArchModule) then no separate variants are created for the
887 // multilib targets. Instead a single variant is created for the architecture and
888 // this contains the multilib specific targets that this variant should create.
889 //
890 // Set by archMutator
Colin Crossee0bc3b2018-10-02 22:01:37 -0700891 CompileMultiTargets []Target `blueprint:"mutated"`
Paul Duffinca7f0ef2020-02-25 15:50:49 +0000892
893 // True if the module variant's CompileTarget is the primary target
894 //
895 // Set by archMutator
896 CompilePrimary bool `blueprint:"mutated"`
Colin Cross3f40fa42015-01-30 17:27:36 -0800897
898 // Set by InitAndroidModule
899 HostOrDeviceSupported HostOrDeviceSupported `blueprint:"mutated"`
Dan Willemsen0b24c742016-10-04 15:13:37 -0700900 ArchSpecific bool `blueprint:"mutated"`
Colin Crossce75d2c2016-10-06 16:12:58 -0700901
Paul Duffin1356d8c2020-02-25 19:26:33 +0000902 // If set to true then a CommonOS variant will be created which will have dependencies
903 // on all its OsType specific variants. Used by sdk/module_exports to create a snapshot
904 // that covers all os and architecture variants.
905 //
906 // The OsType specific variants can be retrieved by calling
907 // GetOsSpecificVariantsOfCommonOSVariant
908 //
909 // Set at module initialization time by calling InitCommonOSAndroidMultiTargetsArchModule
910 CreateCommonOSVariant bool `blueprint:"mutated"`
911
912 // If set to true then this variant is the CommonOS variant that has dependencies on its
913 // OsType specific variants.
914 //
915 // Set by osMutator.
916 CommonOSVariant bool `blueprint:"mutated"`
917
Colin Crossa9c8c9f2020-12-16 10:20:23 -0800918 // When HideFromMake is set to true, no entry for this variant will be emitted in the
919 // generated Android.mk file.
920 HideFromMake bool `blueprint:"mutated"`
921
922 // When SkipInstall is set to true, calls to ctx.InstallFile, ctx.InstallExecutable,
923 // ctx.InstallSymlink and ctx.InstallAbsoluteSymlink act like calls to ctx.PackageFile
924 // and don't create a rule to install the file.
Colin Crossce75d2c2016-10-06 16:12:58 -0700925 SkipInstall bool `blueprint:"mutated"`
Jeff Gaston088e29e2017-11-29 16:47:17 -0800926
Liz Kammer5ca3a622020-08-05 15:40:41 -0700927 // Whether the module has been replaced by a prebuilt
928 ReplacedByPrebuilt bool `blueprint:"mutated"`
929
Justin Yun32f053b2020-07-31 23:07:17 +0900930 // Disabled by mutators. If set to true, it overrides Enabled property.
931 ForcedDisabled bool `blueprint:"mutated"`
932
Jeff Gaston088e29e2017-11-29 16:47:17 -0800933 NamespaceExportedToMake bool `blueprint:"mutated"`
Colin Cross6c4f21f2019-06-06 15:41:36 -0700934
935 MissingDeps []string `blueprint:"mutated"`
Colin Cross9a362232019-07-01 15:32:45 -0700936
937 // Name and variant strings stored by mutators to enable Module.String()
938 DebugName string `blueprint:"mutated"`
939 DebugMutators []string `blueprint:"mutated"`
940 DebugVariations []string `blueprint:"mutated"`
Colin Cross7228ecd2019-11-18 16:00:16 -0800941
Colin Crossa6845402020-11-16 15:08:19 -0800942 // ImageVariation is set by ImageMutator to specify which image this variation is for,
943 // for example "" for core or "recovery" for recovery. It will often be set to one of the
944 // constants in image.go, but can also be set to a custom value by individual module types.
Colin Cross7228ecd2019-11-18 16:00:16 -0800945 ImageVariation string `blueprint:"mutated"`
Liz Kammer2ada09a2021-08-11 00:17:36 -0400946
Sasha Smundaka0954062022-08-02 18:23:58 -0700947 // Bazel conversion status
948 BazelConversionStatus BazelConversionStatus `blueprint:"mutated"`
Colin Cross3f40fa42015-01-30 17:27:36 -0800949}
950
Alex Márquez Pérez Muñíz Díaz Púras Thaureaux447f6c92021-08-31 20:30:36 +0000951// CommonAttributes represents the common Bazel attributes from which properties
952// in `commonProperties` are translated/mapped; such properties are annotated in
953// a list their corresponding attribute. It is embedded within `bp2buildInfo`.
954type CommonAttributes struct {
955 // Soong nameProperties -> Bazel name
956 Name string
Spandan Das4238c652022-09-09 01:38:47 +0000957
Alex Márquez Pérez Muñíz Díaz Púras Thaureaux447f6c92021-08-31 20:30:36 +0000958 // Data mapped from: Required
959 Data bazel.LabelListAttribute
Jingwen Chenfbff97a2022-09-16 02:32:03 +0000960
Spandan Das4238c652022-09-09 01:38:47 +0000961 // SkipData is neither a Soong nor Bazel target attribute
962 // If true, this will not fill the data attribute automatically
963 // This is useful for Soong modules that have 1:many Bazel targets
964 // Some of the generated Bazel targets might not have a data attribute
965 SkipData *bool
966
Jingwen Chenfbff97a2022-09-16 02:32:03 +0000967 Tags bazel.StringListAttribute
Sasha Smundak05b0ba62022-09-26 18:15:45 -0700968
969 Applicable_licenses bazel.LabelListAttribute
Yu Liu4c212ce2022-10-14 12:20:20 -0700970
971 Testonly *bool
Alex Márquez Pérez Muñíz Díaz Púras Thaureaux447f6c92021-08-31 20:30:36 +0000972}
973
Chris Parsons58852a02021-12-09 18:10:18 -0500974// constraintAttributes represents Bazel attributes pertaining to build constraints,
975// which make restrict building a Bazel target for some set of platforms.
976type constraintAttributes struct {
977 // Constraint values this target can be built for.
978 Target_compatible_with bazel.LabelListAttribute
979}
980
Paul Duffined875132020-09-02 13:08:57 +0100981type distProperties struct {
982 // configuration to distribute output files from this module to the distribution
983 // directory (default: $OUT/dist, configurable with $DIST_DIR)
984 Dist Dist `android:"arch_variant"`
985
986 // a list of configurations to distribute output files from this module to the
987 // distribution directory (default: $OUT/dist, configurable with $DIST_DIR)
988 Dists []Dist `android:"arch_variant"`
989}
990
Zhenhuang Wang0ac5a432022-08-12 18:49:20 +0800991// CommonTestOptions represents the common `test_options` properties in
992// Android.bp.
993type CommonTestOptions struct {
994 // If the test is a hostside (no device required) unittest that shall be run
995 // during presubmit check.
996 Unit_test *bool
Zhenhuang Wang409d2772022-08-22 16:00:05 +0800997
998 // Tags provide additional metadata to customize test execution by downstream
999 // test runners. The tags have no special meaning to Soong.
1000 Tags []string
Zhenhuang Wang0ac5a432022-08-12 18:49:20 +08001001}
1002
1003// SetAndroidMkEntries sets AndroidMkEntries according to the value of base
1004// `test_options`.
1005func (t *CommonTestOptions) SetAndroidMkEntries(entries *AndroidMkEntries) {
1006 entries.SetBoolIfTrue("LOCAL_IS_UNIT_TEST", Bool(t.Unit_test))
Zhenhuang Wang409d2772022-08-22 16:00:05 +08001007 if len(t.Tags) > 0 {
1008 entries.AddStrings("LOCAL_TEST_OPTIONS_TAGS", t.Tags...)
1009 }
Zhenhuang Wang0ac5a432022-08-12 18:49:20 +08001010}
1011
Paul Duffin74f05592020-11-25 16:37:46 +00001012// The key to use in TaggedDistFiles when a Dist structure does not specify a
1013// tag property. This intentionally does not use "" as the default because that
1014// would mean that an empty tag would have a different meaning when used in a dist
1015// structure that when used to reference a specific set of output paths using the
1016// :module{tag} syntax, which passes tag to the OutputFiles(tag) method.
1017const DefaultDistTag = "<default-dist-tag>"
1018
Jingwen Chen40fd90a2020-06-15 05:24:19 +00001019// A map of OutputFile tag keys to Paths, for disting purposes.
1020type TaggedDistFiles map[string]Paths
1021
Paul Duffin74f05592020-11-25 16:37:46 +00001022// addPathsForTag adds a mapping from the tag to the paths. If the map is nil
1023// then it will create a map, update it and then return it. If a mapping already
1024// exists for the tag then the paths are appended to the end of the current list
1025// of paths, ignoring any duplicates.
1026func (t TaggedDistFiles) addPathsForTag(tag string, paths ...Path) TaggedDistFiles {
1027 if t == nil {
1028 t = make(TaggedDistFiles)
1029 }
1030
1031 for _, distFile := range paths {
1032 if distFile != nil && !t[tag].containsPath(distFile) {
1033 t[tag] = append(t[tag], distFile)
1034 }
1035 }
1036
1037 return t
1038}
1039
1040// merge merges the entries from the other TaggedDistFiles object into this one.
1041// If the TaggedDistFiles is nil then it will create a new instance, merge the
1042// other into it, and then return it.
1043func (t TaggedDistFiles) merge(other TaggedDistFiles) TaggedDistFiles {
1044 for tag, paths := range other {
1045 t = t.addPathsForTag(tag, paths...)
1046 }
1047
1048 return t
1049}
1050
Jingwen Chen40fd90a2020-06-15 05:24:19 +00001051func MakeDefaultDistFiles(paths ...Path) TaggedDistFiles {
Sasha Smundake198eaf2022-08-04 13:07:02 -07001052 for _, p := range paths {
1053 if p == nil {
Jingwen Chen7b27ca72020-07-24 09:13:49 +00001054 panic("The path to a dist file cannot be nil.")
1055 }
1056 }
1057
Jingwen Chen40fd90a2020-06-15 05:24:19 +00001058 // The default OutputFile tag is the empty "" string.
Paul Duffin74f05592020-11-25 16:37:46 +00001059 return TaggedDistFiles{DefaultDistTag: paths}
Jingwen Chen40fd90a2020-06-15 05:24:19 +00001060}
1061
Colin Cross3f40fa42015-01-30 17:27:36 -08001062type hostAndDeviceProperties struct {
Colin Cross4e81d702018-11-09 10:36:55 -08001063 // If set to true, build a variant of the module for the host. Defaults to false.
1064 Host_supported *bool
1065
1066 // If set to true, build a variant of the module for the device. Defaults to true.
Colin Crossa4190c12016-07-12 13:11:25 -07001067 Device_supported *bool
Colin Cross3f40fa42015-01-30 17:27:36 -08001068}
1069
Colin Crossc472d572015-03-17 15:06:21 -07001070type Multilib string
1071
1072const (
Colin Cross6b4a32d2017-12-05 13:42:45 -08001073 MultilibBoth Multilib = "both"
1074 MultilibFirst Multilib = "first"
1075 MultilibCommon Multilib = "common"
1076 MultilibCommonFirst Multilib = "common_first"
Colin Crossc472d572015-03-17 15:06:21 -07001077)
1078
Colin Crossa1ad8d12016-06-01 17:09:44 -07001079type HostOrDeviceSupported int
1080
1081const (
Colin Cross34037c62020-11-17 13:19:17 -08001082 hostSupported = 1 << iota
1083 hostCrossSupported
1084 deviceSupported
1085 hostDefault
1086 deviceDefault
Dan Albert0981b5c2018-08-02 13:46:35 -07001087
1088 // Host and HostCross are built by default. Device is not supported.
Colin Cross34037c62020-11-17 13:19:17 -08001089 HostSupported = hostSupported | hostCrossSupported | hostDefault
Dan Albert0981b5c2018-08-02 13:46:35 -07001090
1091 // Host is built by default. HostCross and Device are not supported.
Colin Cross34037c62020-11-17 13:19:17 -08001092 HostSupportedNoCross = hostSupported | hostDefault
Dan Albert0981b5c2018-08-02 13:46:35 -07001093
1094 // Device is built by default. Host and HostCross are not supported.
Colin Cross34037c62020-11-17 13:19:17 -08001095 DeviceSupported = deviceSupported | deviceDefault
Dan Albert0981b5c2018-08-02 13:46:35 -07001096
Liz Kammer8631cc72021-08-23 21:12:07 +00001097 // By default, _only_ device variant is built. Device variant can be disabled with `device_supported: false`
Chih-Hung Hsiehd0f82fe2021-09-05 20:15:38 -07001098 // Host and HostCross are disabled by default and can be enabled with `host_supported: true`
Colin Cross34037c62020-11-17 13:19:17 -08001099 HostAndDeviceSupported = hostSupported | hostCrossSupported | deviceSupported | deviceDefault
Dan Albert0981b5c2018-08-02 13:46:35 -07001100
1101 // Host, HostCross, and Device are built by default.
Chih-Hung Hsiehd0f82fe2021-09-05 20:15:38 -07001102 // Building Device can be disabled with `device_supported: false`
1103 // Building Host and HostCross can be disabled with `host_supported: false`
Colin Cross34037c62020-11-17 13:19:17 -08001104 HostAndDeviceDefault = hostSupported | hostCrossSupported | hostDefault |
1105 deviceSupported | deviceDefault
Dan Albert0981b5c2018-08-02 13:46:35 -07001106
1107 // Nothing is supported. This is not exposed to the user, but used to mark a
1108 // host only module as unsupported when the module type is not supported on
1109 // the host OS. E.g. benchmarks are supported on Linux but not Darwin.
Colin Cross34037c62020-11-17 13:19:17 -08001110 NeitherHostNorDeviceSupported = 0
Colin Crossa1ad8d12016-06-01 17:09:44 -07001111)
1112
Jiyong Park2db76922017-11-08 16:03:48 +09001113type moduleKind int
1114
1115const (
1116 platformModule moduleKind = iota
1117 deviceSpecificModule
1118 socSpecificModule
1119 productSpecificModule
Justin Yund5f6c822019-06-25 16:47:17 +09001120 systemExtSpecificModule
Jiyong Park2db76922017-11-08 16:03:48 +09001121)
1122
1123func (k moduleKind) String() string {
1124 switch k {
1125 case platformModule:
1126 return "platform"
1127 case deviceSpecificModule:
1128 return "device-specific"
1129 case socSpecificModule:
1130 return "soc-specific"
1131 case productSpecificModule:
1132 return "product-specific"
Justin Yund5f6c822019-06-25 16:47:17 +09001133 case systemExtSpecificModule:
1134 return "systemext-specific"
Jiyong Park2db76922017-11-08 16:03:48 +09001135 default:
1136 panic(fmt.Errorf("unknown module kind %d", k))
1137 }
1138}
1139
Colin Cross9d34f352019-11-22 16:03:51 -08001140func initAndroidModuleBase(m Module) {
1141 m.base().module = m
1142}
1143
Colin Crossa6845402020-11-16 15:08:19 -08001144// InitAndroidModule initializes the Module as an Android module that is not architecture-specific.
1145// It adds the common properties, for example "name" and "enabled".
Colin Cross36242852017-06-23 15:06:31 -07001146func InitAndroidModule(m Module) {
Colin Cross9d34f352019-11-22 16:03:51 -08001147 initAndroidModuleBase(m)
Colin Cross3f40fa42015-01-30 17:27:36 -08001148 base := m.base()
Colin Cross5049f022015-03-18 13:28:46 -07001149
Colin Cross36242852017-06-23 15:06:31 -07001150 m.AddProperties(
Colin Crossfc754582016-05-17 16:34:16 -07001151 &base.nameProperties,
Paul Duffined875132020-09-02 13:08:57 +01001152 &base.commonProperties,
1153 &base.distProperties)
Colin Cross18c46802019-09-24 22:19:02 -07001154
Colin Crosseabaedd2020-02-06 17:01:55 -08001155 initProductVariableModule(m)
Colin Cross18c46802019-09-24 22:19:02 -07001156
Paul Duffin63c6e182019-07-24 14:24:38 +01001157 // The default_visibility property needs to be checked and parsed by the visibility module during
Paul Duffin5ec73ec2020-05-01 17:52:01 +01001158 // its checking and parsing phases so make it the primary visibility property.
1159 setPrimaryVisibilityProperty(m, "visibility", &base.commonProperties.Visibility)
Bob Badour37af0462021-01-07 03:34:31 +00001160
1161 // The default_applicable_licenses property needs to be checked and parsed by the licenses module during
1162 // its checking and parsing phases so make it the primary licenses property.
1163 setPrimaryLicensesProperty(m, "licenses", &base.commonProperties.Licenses)
Colin Cross5049f022015-03-18 13:28:46 -07001164}
1165
Colin Crossa6845402020-11-16 15:08:19 -08001166// InitAndroidArchModule initializes the Module as an Android module that is architecture-specific.
1167// It adds the common properties, for example "name" and "enabled", as well as runtime generated
1168// property structs for architecture-specific versions of generic properties tagged with
1169// `android:"arch_variant"`.
1170//
Colin Crossd079e0b2022-08-16 10:27:33 -07001171// InitAndroidModule should not be called if InitAndroidArchModule was called.
Colin Cross36242852017-06-23 15:06:31 -07001172func InitAndroidArchModule(m Module, hod HostOrDeviceSupported, defaultMultilib Multilib) {
1173 InitAndroidModule(m)
Colin Cross5049f022015-03-18 13:28:46 -07001174
1175 base := m.base()
Colin Cross3f40fa42015-01-30 17:27:36 -08001176 base.commonProperties.HostOrDeviceSupported = hod
Colin Cross69617d32016-09-06 10:39:07 -07001177 base.commonProperties.Default_multilib = string(defaultMultilib)
Dan Willemsen0b24c742016-10-04 15:13:37 -07001178 base.commonProperties.ArchSpecific = true
Colin Crossee0bc3b2018-10-02 22:01:37 -07001179 base.commonProperties.UseTargetVariants = true
Colin Cross3f40fa42015-01-30 17:27:36 -08001180
Colin Cross34037c62020-11-17 13:19:17 -08001181 if hod&hostSupported != 0 && hod&deviceSupported != 0 {
Colin Cross36242852017-06-23 15:06:31 -07001182 m.AddProperties(&base.hostAndDeviceProperties)
Colin Cross3f40fa42015-01-30 17:27:36 -08001183 }
1184
Colin Crossa6845402020-11-16 15:08:19 -08001185 initArchModule(m)
Colin Cross3f40fa42015-01-30 17:27:36 -08001186}
1187
Colin Crossa6845402020-11-16 15:08:19 -08001188// InitAndroidMultiTargetsArchModule initializes the Module as an Android module that is
1189// architecture-specific, but will only have a single variant per OS that handles all the
1190// architectures simultaneously. The list of Targets that it must handle will be available from
1191// ModuleContext.MultiTargets. It adds the common properties, for example "name" and "enabled", as
1192// well as runtime generated property structs for architecture-specific versions of generic
1193// properties tagged with `android:"arch_variant"`.
1194//
1195// InitAndroidModule or InitAndroidArchModule should not be called if
1196// InitAndroidMultiTargetsArchModule was called.
Colin Crossee0bc3b2018-10-02 22:01:37 -07001197func InitAndroidMultiTargetsArchModule(m Module, hod HostOrDeviceSupported, defaultMultilib Multilib) {
1198 InitAndroidArchModule(m, hod, defaultMultilib)
1199 m.base().commonProperties.UseTargetVariants = false
1200}
1201
Colin Crossa6845402020-11-16 15:08:19 -08001202// InitCommonOSAndroidMultiTargetsArchModule initializes the Module as an Android module that is
1203// architecture-specific, but will only have a single variant per OS that handles all the
1204// architectures simultaneously, and will also have an additional CommonOS variant that has
1205// dependencies on all the OS-specific variants. The list of Targets that it must handle will be
1206// available from ModuleContext.MultiTargets. It adds the common properties, for example "name" and
1207// "enabled", as well as runtime generated property structs for architecture-specific versions of
1208// generic properties tagged with `android:"arch_variant"`.
1209//
1210// InitAndroidModule, InitAndroidArchModule or InitAndroidMultiTargetsArchModule should not be
1211// called if InitCommonOSAndroidMultiTargetsArchModule was called.
Paul Duffin1356d8c2020-02-25 19:26:33 +00001212func InitCommonOSAndroidMultiTargetsArchModule(m Module, hod HostOrDeviceSupported, defaultMultilib Multilib) {
1213 InitAndroidArchModule(m, hod, defaultMultilib)
1214 m.base().commonProperties.UseTargetVariants = false
1215 m.base().commonProperties.CreateCommonOSVariant = true
1216}
1217
Chris Parsons58852a02021-12-09 18:10:18 -05001218func (attrs *CommonAttributes) fillCommonBp2BuildModuleAttrs(ctx *topDownMutatorContext,
1219 enabledPropertyOverrides bazel.BoolAttribute) constraintAttributes {
Alex Márquez Pérez Muñíz Díaz Púras Thaureaux447f6c92021-08-31 20:30:36 +00001220
1221 mod := ctx.Module().base()
Sasha Smundake198eaf2022-08-04 13:07:02 -07001222 // Assert passed-in attributes include Name
1223 if len(attrs.Name) == 0 {
Sasha Smundakfb589492022-08-04 11:13:27 -07001224 if ctx.ModuleType() != "package" {
1225 ctx.ModuleErrorf("CommonAttributes in fillCommonBp2BuildModuleAttrs expects a `.Name`!")
1226 }
Sasha Smundake198eaf2022-08-04 13:07:02 -07001227 }
Alex Márquez Pérez Muñíz Díaz Púras Thaureaux447f6c92021-08-31 20:30:36 +00001228
1229 depsToLabelList := func(deps []string) bazel.LabelListAttribute {
1230 return bazel.MakeLabelListAttribute(BazelLabelForModuleDeps(ctx, deps))
1231 }
1232
Chris Parsons58852a02021-12-09 18:10:18 -05001233 var enabledProperty bazel.BoolAttribute
Liz Kammerdfeb1202022-05-13 17:20:20 -04001234
1235 onlyAndroid := false
1236 neitherHostNorDevice := false
1237
1238 osSupport := map[string]bool{}
1239
1240 // if the target is enabled and supports arch variance, determine the defaults based on the module
1241 // type's host or device property and host_supported/device_supported properties
1242 if mod.commonProperties.ArchSpecific {
1243 moduleSupportsDevice := mod.DeviceSupported()
1244 moduleSupportsHost := mod.HostSupported()
1245 if moduleSupportsHost && !moduleSupportsDevice {
1246 // for host only, we specify as unsupported on android rather than listing all host osSupport
1247 // TODO(b/220874839): consider replacing this with a constraint that covers all host osSupport
1248 // instead
1249 enabledProperty.SetSelectValue(bazel.OsConfigurationAxis, Android.Name, proptools.BoolPtr(false))
1250 } else if moduleSupportsDevice && !moduleSupportsHost {
1251 enabledProperty.SetSelectValue(bazel.OsConfigurationAxis, Android.Name, proptools.BoolPtr(true))
1252 // specify as a positive to ensure any target-specific enabled can be resolved
1253 // also save that a target is only android, as if there is only the positive restriction on
1254 // android, it'll be dropped, so we may need to add it back later
1255 onlyAndroid = true
1256 } else if !moduleSupportsHost && !moduleSupportsDevice {
1257 neitherHostNorDevice = true
1258 }
1259
Sasha Smundake198eaf2022-08-04 13:07:02 -07001260 for _, osType := range OsTypeList() {
1261 if osType.Class == Host {
1262 osSupport[osType.Name] = moduleSupportsHost
1263 } else if osType.Class == Device {
1264 osSupport[osType.Name] = moduleSupportsDevice
Liz Kammerdfeb1202022-05-13 17:20:20 -04001265 }
1266 }
1267 }
1268
1269 if neitherHostNorDevice {
1270 // we can't build this, disable
1271 enabledProperty.Value = proptools.BoolPtr(false)
Sasha Smundake198eaf2022-08-04 13:07:02 -07001272 } else if mod.commonProperties.Enabled != nil {
1273 enabledProperty.SetValue(mod.commonProperties.Enabled)
1274 if !*mod.commonProperties.Enabled {
1275 for oss, enabled := range osSupport {
1276 if val := enabledProperty.SelectValue(bazel.OsConfigurationAxis, oss); enabled && val != nil && *val {
Liz Kammerdfeb1202022-05-13 17:20:20 -04001277 // if this should be disabled by default, clear out any enabling we've done
Sasha Smundake198eaf2022-08-04 13:07:02 -07001278 enabledProperty.SetSelectValue(bazel.OsConfigurationAxis, oss, nil)
Liz Kammerdfeb1202022-05-13 17:20:20 -04001279 }
1280 }
1281 }
Chris Parsons58852a02021-12-09 18:10:18 -05001282 }
1283
Sasha Smundak05b0ba62022-09-26 18:15:45 -07001284 attrs.Applicable_licenses = bazel.MakeLabelListAttribute(BazelLabelForModuleDeps(ctx, mod.commonProperties.Licenses))
1285
Jingwen Chena5ecb372022-09-21 09:05:37 +00001286 // The required property can contain the module itself. This causes a cycle
1287 // when generated as the 'data' label list attribute in Bazel. Remove it if
1288 // it exists. See b/247985196.
1289 _, requiredWithoutCycles := RemoveFromList(ctx.ModuleName(), mod.commonProperties.Required)
Wei Li7d8f6182022-10-11 14:38:16 -07001290 requiredWithoutCycles = FirstUniqueStrings(requiredWithoutCycles)
Jingwen Chena5ecb372022-09-21 09:05:37 +00001291 required := depsToLabelList(requiredWithoutCycles)
Sasha Smundake198eaf2022-08-04 13:07:02 -07001292 archVariantProps := mod.GetArchVariantProperties(ctx, &commonProperties{})
Alex Márquez Pérez Muñíz Díaz Púras Thaureaux447f6c92021-08-31 20:30:36 +00001293 for axis, configToProps := range archVariantProps {
1294 for config, _props := range configToProps {
1295 if archProps, ok := _props.(*commonProperties); ok {
Jingwen Chena5ecb372022-09-21 09:05:37 +00001296 _, requiredWithoutCycles := RemoveFromList(ctx.ModuleName(), archProps.Required)
Wei Li7d8f6182022-10-11 14:38:16 -07001297 requiredWithoutCycles = FirstUniqueStrings(requiredWithoutCycles)
Jingwen Chena5ecb372022-09-21 09:05:37 +00001298 required.SetSelectValue(axis, config, depsToLabelList(requiredWithoutCycles).Value)
Liz Kammerdfeb1202022-05-13 17:20:20 -04001299 if !neitherHostNorDevice {
1300 if archProps.Enabled != nil {
1301 if axis != bazel.OsConfigurationAxis || osSupport[config] {
1302 enabledProperty.SetSelectValue(axis, config, archProps.Enabled)
1303 }
1304 }
Chris Parsons58852a02021-12-09 18:10:18 -05001305 }
Alex Márquez Pérez Muñíz Díaz Púras Thaureaux447f6c92021-08-31 20:30:36 +00001306 }
1307 }
1308 }
Chris Parsons58852a02021-12-09 18:10:18 -05001309
Liz Kammerdfeb1202022-05-13 17:20:20 -04001310 if !neitherHostNorDevice {
1311 if enabledPropertyOverrides.Value != nil {
1312 enabledProperty.Value = enabledPropertyOverrides.Value
1313 }
1314 for _, axis := range enabledPropertyOverrides.SortedConfigurationAxes() {
1315 configToBools := enabledPropertyOverrides.ConfigurableValues[axis]
1316 for cfg, val := range configToBools {
1317 if axis != bazel.OsConfigurationAxis || osSupport[cfg] {
1318 enabledProperty.SetSelectValue(axis, cfg, &val)
1319 }
1320 }
Chris Parsons58852a02021-12-09 18:10:18 -05001321 }
1322 }
1323
Sam Delmerico0e33c9d2022-01-07 20:39:21 +00001324 productConfigEnabledLabels := []bazel.Label{}
Liz Kammerdfeb1202022-05-13 17:20:20 -04001325 // TODO(b/234497586): Soong config variables and product variables have different overriding behavior, we
1326 // should handle it correctly
1327 if !proptools.BoolDefault(enabledProperty.Value, true) && !neitherHostNorDevice {
Sam Delmerico0e33c9d2022-01-07 20:39:21 +00001328 // If the module is not enabled by default, then we can check if a
1329 // product variable enables it
1330 productConfigEnabledLabels = productVariableConfigEnableLabels(ctx)
Chris Parsons58852a02021-12-09 18:10:18 -05001331
Sam Delmerico0e33c9d2022-01-07 20:39:21 +00001332 if len(productConfigEnabledLabels) > 0 {
1333 // In this case, an existing product variable configuration overrides any
1334 // module-level `enable: false` definition
1335 newValue := true
1336 enabledProperty.Value = &newValue
1337 }
1338 }
1339
1340 productConfigEnabledAttribute := bazel.MakeLabelListAttribute(bazel.LabelList{
1341 productConfigEnabledLabels, nil,
1342 })
1343
1344 platformEnabledAttribute, err := enabledProperty.ToLabelListAttribute(
Sasha Smundake198eaf2022-08-04 13:07:02 -07001345 bazel.LabelList{[]bazel.Label{{Label: "@platforms//:incompatible"}}, nil},
Chris Parsons58852a02021-12-09 18:10:18 -05001346 bazel.LabelList{[]bazel.Label{}, nil})
Chris Parsons58852a02021-12-09 18:10:18 -05001347 if err != nil {
Sam Delmerico0e33c9d2022-01-07 20:39:21 +00001348 ctx.ModuleErrorf("Error processing platform enabled attribute: %s", err)
Chris Parsons58852a02021-12-09 18:10:18 -05001349 }
Sam Delmerico0e33c9d2022-01-07 20:39:21 +00001350
Liz Kammerdfeb1202022-05-13 17:20:20 -04001351 // if android is the only arch/os enabled, then add a restriction to only be compatible with android
1352 if platformEnabledAttribute.IsNil() && onlyAndroid {
1353 l := bazel.LabelAttribute{}
1354 l.SetValue(bazel.Label{Label: bazel.OsConfigurationAxis.SelectKey(Android.Name)})
1355 platformEnabledAttribute.Add(&l)
1356 }
1357
Spandan Das4238c652022-09-09 01:38:47 +00001358 if !proptools.Bool(attrs.SkipData) {
1359 attrs.Data.Append(required)
1360 }
1361 // SkipData is not an attribute of any Bazel target
1362 // Set this to nil so that it does not appear in the generated build file
1363 attrs.SkipData = nil
Sam Delmerico0e33c9d2022-01-07 20:39:21 +00001364
Sam Delmerico0e33c9d2022-01-07 20:39:21 +00001365 moduleEnableConstraints := bazel.LabelListAttribute{}
1366 moduleEnableConstraints.Append(platformEnabledAttribute)
1367 moduleEnableConstraints.Append(productConfigEnabledAttribute)
Sam Delmerico0e33c9d2022-01-07 20:39:21 +00001368
Sasha Smundake198eaf2022-08-04 13:07:02 -07001369 return constraintAttributes{Target_compatible_with: moduleEnableConstraints}
Alex Márquez Pérez Muñíz Díaz Púras Thaureaux447f6c92021-08-31 20:30:36 +00001370}
1371
Sam Delmerico0e33c9d2022-01-07 20:39:21 +00001372// Check product variables for `enabled: true` flag override.
1373// Returns a list of the constraint_value targets who enable this override.
1374func productVariableConfigEnableLabels(ctx *topDownMutatorContext) []bazel.Label {
Cole Faust912bc882023-03-08 12:29:50 -08001375 productVariableProps := ProductVariableProperties(ctx, ctx.Module())
Sam Delmerico0e33c9d2022-01-07 20:39:21 +00001376 productConfigEnablingTargets := []bazel.Label{}
1377 const propName = "Enabled"
1378 if productConfigProps, exists := productVariableProps[propName]; exists {
1379 for productConfigProp, prop := range productConfigProps {
1380 flag, ok := prop.(*bool)
1381 if !ok {
1382 ctx.ModuleErrorf("Could not convert product variable %s property", proptools.PropertyNameForField(propName))
1383 }
1384
1385 if *flag {
1386 axis := productConfigProp.ConfigurationAxis()
1387 targetLabel := axis.SelectKey(productConfigProp.SelectKey())
1388 productConfigEnablingTargets = append(productConfigEnablingTargets, bazel.Label{
1389 Label: targetLabel,
1390 })
1391 } else {
1392 // TODO(b/210546943): handle negative case where `enabled: false`
1393 ctx.ModuleErrorf("`enabled: false` is not currently supported for configuration variables. See b/210546943", proptools.PropertyNameForField(propName))
1394 }
1395 }
1396 }
1397
1398 return productConfigEnablingTargets
1399}
1400
Nan Zhangb9eeb1d2017-02-02 10:46:07 -08001401// A ModuleBase object contains the properties that are common to all Android
Colin Cross3f40fa42015-01-30 17:27:36 -08001402// modules. It should be included as an anonymous field in every module
1403// struct definition. InitAndroidModule should then be called from the module's
1404// factory function, and the return values from InitAndroidModule should be
1405// returned from the factory function.
1406//
Nan Zhangb9eeb1d2017-02-02 10:46:07 -08001407// The ModuleBase type is responsible for implementing the GenerateBuildActions
1408// method to support the blueprint.Module interface. This method will then call
1409// the module's GenerateAndroidBuildActions method once for each build variant
Colin Cross25de6c32019-06-06 14:29:25 -07001410// that is to be built. GenerateAndroidBuildActions is passed a ModuleContext
1411// rather than the usual blueprint.ModuleContext.
1412// ModuleContext exposes extra functionality specific to the Android build
Colin Cross3f40fa42015-01-30 17:27:36 -08001413// system including details about the particular build variant that is to be
1414// generated.
1415//
1416// For example:
1417//
Zhenhuang Wang0ac5a432022-08-12 18:49:20 +08001418// import (
1419// "android/soong/android"
1420// )
Colin Cross3f40fa42015-01-30 17:27:36 -08001421//
Zhenhuang Wang0ac5a432022-08-12 18:49:20 +08001422// type myModule struct {
1423// android.ModuleBase
1424// properties struct {
1425// MyProperty string
1426// }
1427// }
Colin Cross3f40fa42015-01-30 17:27:36 -08001428//
Zhenhuang Wang0ac5a432022-08-12 18:49:20 +08001429// func NewMyModule() android.Module {
1430// m := &myModule{}
1431// m.AddProperties(&m.properties)
1432// android.InitAndroidModule(m)
1433// return m
1434// }
Colin Cross3f40fa42015-01-30 17:27:36 -08001435//
Zhenhuang Wang0ac5a432022-08-12 18:49:20 +08001436// func (m *myModule) GenerateAndroidBuildActions(ctx android.ModuleContext) {
1437// // Get the CPU architecture for the current build variant.
1438// variantArch := ctx.Arch()
Colin Cross3f40fa42015-01-30 17:27:36 -08001439//
Zhenhuang Wang0ac5a432022-08-12 18:49:20 +08001440// // ...
1441// }
Colin Cross635c3b02016-05-18 15:37:25 -07001442type ModuleBase struct {
Colin Cross3f40fa42015-01-30 17:27:36 -08001443 // Putting the curiously recurring thing pointing to the thing that contains
1444 // the thing pattern to good use.
Colin Cross36242852017-06-23 15:06:31 -07001445 // TODO: remove this
Colin Cross635c3b02016-05-18 15:37:25 -07001446 module Module
Colin Cross3f40fa42015-01-30 17:27:36 -08001447
Colin Crossfc754582016-05-17 16:34:16 -07001448 nameProperties nameProperties
Colin Cross3f40fa42015-01-30 17:27:36 -08001449 commonProperties commonProperties
Paul Duffined875132020-09-02 13:08:57 +01001450 distProperties distProperties
Colin Cross18c46802019-09-24 22:19:02 -07001451 variableProperties interface{}
Colin Cross3f40fa42015-01-30 17:27:36 -08001452 hostAndDeviceProperties hostAndDeviceProperties
Jingwen Chen5d864492021-02-24 07:20:12 -05001453
Usta851a3272022-01-05 23:42:33 -05001454 // Arch specific versions of structs in GetProperties() prior to
1455 // initialization in InitAndroidArchModule, lets call it `generalProperties`.
1456 // The outer index has the same order as generalProperties and the inner index
1457 // chooses the props specific to the architecture. The interface{} value is an
1458 // archPropRoot that is filled with arch specific values by the arch mutator.
Jingwen Chen5d864492021-02-24 07:20:12 -05001459 archProperties [][]interface{}
1460
Jingwen Chen73850672020-12-14 08:25:34 -05001461 // Properties specific to the Blueprint to BUILD migration.
1462 bazelTargetModuleProperties bazel.BazelTargetModuleProperties
1463
Paul Duffin63c6e182019-07-24 14:24:38 +01001464 // Information about all the properties on the module that contains visibility rules that need
1465 // checking.
1466 visibilityPropertyInfo []visibilityProperty
1467
1468 // The primary visibility property, may be nil, that controls access to the module.
1469 primaryVisibilityProperty visibilityProperty
1470
Bob Badour37af0462021-01-07 03:34:31 +00001471 // The primary licenses property, may be nil, records license metadata for the module.
1472 primaryLicensesProperty applicableLicensesProperty
1473
Colin Crossffe6b9d2020-12-01 15:40:06 -08001474 noAddressSanitizer bool
1475 installFiles InstallPaths
1476 installFilesDepSet *installPathsDepSet
1477 checkbuildFiles Paths
1478 packagingSpecs []PackagingSpec
1479 packagingSpecsDepSet *packagingSpecsDepSet
Colin Cross6301c3c2021-09-28 17:40:21 -07001480 // katiInstalls tracks the install rules that were created by Soong but are being exported
1481 // to Make to convert to ninja rules so that Make can add additional dependencies.
1482 katiInstalls katiInstalls
1483 katiSymlinks katiInstalls
Colin Cross1f8c52b2015-06-16 16:38:17 -07001484
Paul Duffinaf970a22020-11-23 23:32:56 +00001485 // The files to copy to the dist as explicitly specified in the .bp file.
1486 distFiles TaggedDistFiles
1487
Colin Cross1f8c52b2015-06-16 16:38:17 -07001488 // Used by buildTargetSingleton to create checkbuild and per-directory build targets
1489 // Only set on the final variant of each module
Colin Cross0875c522017-11-28 17:34:01 -08001490 installTarget WritablePath
1491 checkbuildTarget WritablePath
Colin Cross1f8c52b2015-06-16 16:38:17 -07001492 blueprintDir string
Colin Crossa120ec12016-08-19 16:07:38 -07001493
Colin Cross178a5092016-09-13 13:42:32 -07001494 hooks hooks
Colin Cross36242852017-06-23 15:06:31 -07001495
1496 registerProps []interface{}
Colin Crosscec81712017-07-13 14:43:27 -07001497
1498 // For tests
Colin Crossae887032017-10-23 17:16:14 -07001499 buildParams []BuildParams
Colin Cross4c83e5c2019-02-25 14:54:28 -08001500 ruleParams map[blueprint.Rule]blueprint.RuleParams
Jaewoong Jung38e4fb22018-12-12 09:01:34 -08001501 variables map[string]string
Colin Crossa9d8bee2018-10-02 13:59:46 -07001502
Inseob Kim8471cda2019-11-15 09:59:12 +09001503 initRcPaths Paths
1504 vintfFragmentsPaths Paths
Colin Cross4acaea92021-12-10 23:05:02 +00001505
1506 // set of dependency module:location mappings used to populate the license metadata for
1507 // apex containers.
1508 licenseInstallMap []string
Colin Crossaa1cab02022-01-28 14:49:24 -08001509
1510 // The path to the generated license metadata file for the module.
1511 licenseMetadataFile WritablePath
Colin Cross36242852017-06-23 15:06:31 -07001512}
1513
Liz Kammer2ada09a2021-08-11 00:17:36 -04001514// A struct containing all relevant information about a Bazel target converted via bp2build.
1515type bp2buildInfo struct {
Chris Parsons58852a02021-12-09 18:10:18 -05001516 Dir string
1517 BazelProps bazel.BazelTargetModuleProperties
1518 CommonAttrs CommonAttributes
1519 ConstraintAttrs constraintAttributes
1520 Attrs interface{}
Liz Kammer2ada09a2021-08-11 00:17:36 -04001521}
1522
1523// TargetName returns the Bazel target name of a bp2build converted target.
1524func (b bp2buildInfo) TargetName() string {
Alex Márquez Pérez Muñíz Díaz Púras Thaureaux447f6c92021-08-31 20:30:36 +00001525 return b.CommonAttrs.Name
Liz Kammer2ada09a2021-08-11 00:17:36 -04001526}
1527
1528// TargetPackage returns the Bazel package of a bp2build converted target.
1529func (b bp2buildInfo) TargetPackage() string {
1530 return b.Dir
1531}
1532
1533// BazelRuleClass returns the Bazel rule class of a bp2build converted target.
1534func (b bp2buildInfo) BazelRuleClass() string {
1535 return b.BazelProps.Rule_class
1536}
1537
1538// BazelRuleLoadLocation returns the location of the Bazel rule of a bp2build converted target.
1539// This may be empty as native Bazel rules do not need to be loaded.
1540func (b bp2buildInfo) BazelRuleLoadLocation() string {
1541 return b.BazelProps.Bzl_load_location
1542}
1543
1544// 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 +00001545func (b bp2buildInfo) BazelAttributes() []interface{} {
Chris Parsons58852a02021-12-09 18:10:18 -05001546 return []interface{}{&b.CommonAttrs, &b.ConstraintAttrs, b.Attrs}
Liz Kammer2ada09a2021-08-11 00:17:36 -04001547}
1548
1549func (m *ModuleBase) addBp2buildInfo(info bp2buildInfo) {
Sasha Smundaka0954062022-08-02 18:23:58 -07001550 m.commonProperties.BazelConversionStatus.Bp2buildInfo = append(m.commonProperties.BazelConversionStatus.Bp2buildInfo, info)
Liz Kammer2ada09a2021-08-11 00:17:36 -04001551}
1552
1553// IsConvertedByBp2build returns whether this module was converted via bp2build.
1554func (m *ModuleBase) IsConvertedByBp2build() bool {
Sasha Smundaka0954062022-08-02 18:23:58 -07001555 return len(m.commonProperties.BazelConversionStatus.Bp2buildInfo) > 0
Liz Kammer2ada09a2021-08-11 00:17:36 -04001556}
1557
1558// Bp2buildTargets returns the Bazel targets bp2build generated for this module.
1559func (m *ModuleBase) Bp2buildTargets() []bp2buildInfo {
Sasha Smundaka0954062022-08-02 18:23:58 -07001560 return m.commonProperties.BazelConversionStatus.Bp2buildInfo
Liz Kammer2ada09a2021-08-11 00:17:36 -04001561}
1562
Liz Kammer6eff3232021-08-26 08:37:59 -04001563// AddUnconvertedBp2buildDep stores module name of a dependency that was not converted to Bazel.
1564func (b *baseModuleContext) AddUnconvertedBp2buildDep(dep string) {
Sasha Smundaka0954062022-08-02 18:23:58 -07001565 unconvertedDeps := &b.Module().base().commonProperties.BazelConversionStatus.UnconvertedDeps
Liz Kammer6eff3232021-08-26 08:37:59 -04001566 *unconvertedDeps = append(*unconvertedDeps, dep)
1567}
1568
Liz Kammerdaa09ef2021-12-15 15:35:38 -05001569// AddMissingBp2buildDep stores module name of a dependency that was not found in a Android.bp file.
1570func (b *baseModuleContext) AddMissingBp2buildDep(dep string) {
Sasha Smundaka0954062022-08-02 18:23:58 -07001571 missingDeps := &b.Module().base().commonProperties.BazelConversionStatus.MissingDeps
Liz Kammerdaa09ef2021-12-15 15:35:38 -05001572 *missingDeps = append(*missingDeps, dep)
1573}
1574
Liz Kammer6eff3232021-08-26 08:37:59 -04001575// GetUnconvertedBp2buildDeps returns the list of module names of this module's direct dependencies that
1576// were not converted to Bazel.
1577func (m *ModuleBase) GetUnconvertedBp2buildDeps() []string {
Sasha Smundaka0954062022-08-02 18:23:58 -07001578 return FirstUniqueStrings(m.commonProperties.BazelConversionStatus.UnconvertedDeps)
Liz Kammer6eff3232021-08-26 08:37:59 -04001579}
1580
Usta Shrestha56b84e72022-09-24 00:26:47 -04001581// GetMissingBp2buildDeps returns the list of module names that were not found in Android.bp files.
Liz Kammerdaa09ef2021-12-15 15:35:38 -05001582func (m *ModuleBase) GetMissingBp2buildDeps() []string {
Sasha Smundaka0954062022-08-02 18:23:58 -07001583 return FirstUniqueStrings(m.commonProperties.BazelConversionStatus.MissingDeps)
Liz Kammerdaa09ef2021-12-15 15:35:38 -05001584}
1585
Lukacs T. Berkid18d8ca2021-06-25 09:11:22 +02001586func (m *ModuleBase) AddJSONData(d *map[string]interface{}) {
Liz Kammer9525e712022-01-05 13:46:24 -05001587 (*d)["Android"] = map[string]interface{}{
1588 // Properties set in Blueprint or in blueprint of a defaults modules
1589 "SetProperties": m.propertiesWithValues(),
1590 }
1591}
1592
1593type propInfo struct {
Liz Kammer898e0762022-03-22 11:27:26 -04001594 Name string
1595 Type string
1596 Value string
1597 Values []string
Liz Kammer9525e712022-01-05 13:46:24 -05001598}
1599
1600func (m *ModuleBase) propertiesWithValues() []propInfo {
1601 var info []propInfo
1602 props := m.GetProperties()
1603
1604 var propsWithValues func(name string, v reflect.Value)
1605 propsWithValues = func(name string, v reflect.Value) {
1606 kind := v.Kind()
1607 switch kind {
1608 case reflect.Ptr, reflect.Interface:
1609 if v.IsNil() {
1610 return
1611 }
1612 propsWithValues(name, v.Elem())
1613 case reflect.Struct:
1614 if v.IsZero() {
1615 return
1616 }
1617 for i := 0; i < v.NumField(); i++ {
1618 namePrefix := name
1619 sTyp := v.Type().Field(i)
1620 if proptools.ShouldSkipProperty(sTyp) {
1621 continue
1622 }
1623 if name != "" && !strings.HasSuffix(namePrefix, ".") {
1624 namePrefix += "."
1625 }
1626 if !proptools.IsEmbedded(sTyp) {
1627 namePrefix += sTyp.Name
1628 }
1629 sVal := v.Field(i)
1630 propsWithValues(namePrefix, sVal)
1631 }
1632 case reflect.Array, reflect.Slice:
1633 if v.IsNil() {
1634 return
1635 }
1636 elKind := v.Type().Elem().Kind()
Liz Kammer898e0762022-03-22 11:27:26 -04001637 info = append(info, propInfo{Name: name, Type: elKind.String() + " " + kind.String(), Values: sliceReflectionValue(v)})
Liz Kammer9525e712022-01-05 13:46:24 -05001638 default:
Liz Kammer898e0762022-03-22 11:27:26 -04001639 info = append(info, propInfo{Name: name, Type: kind.String(), Value: reflectionValue(v)})
Liz Kammer9525e712022-01-05 13:46:24 -05001640 }
1641 }
1642
1643 for _, p := range props {
1644 propsWithValues("", reflect.ValueOf(p).Elem())
1645 }
Liz Kammer898e0762022-03-22 11:27:26 -04001646 sort.Slice(info, func(i, j int) bool {
1647 return info[i].Name < info[j].Name
1648 })
Liz Kammer9525e712022-01-05 13:46:24 -05001649 return info
Lukacs T. Berkid18d8ca2021-06-25 09:11:22 +02001650}
1651
Liz Kammer898e0762022-03-22 11:27:26 -04001652func reflectionValue(value reflect.Value) string {
1653 switch value.Kind() {
1654 case reflect.Bool:
1655 return fmt.Sprintf("%t", value.Bool())
1656 case reflect.Int64:
1657 return fmt.Sprintf("%d", value.Int())
1658 case reflect.String:
1659 return fmt.Sprintf("%s", value.String())
1660 case reflect.Struct:
1661 if value.IsZero() {
1662 return "{}"
1663 }
1664 length := value.NumField()
1665 vals := make([]string, length, length)
1666 for i := 0; i < length; i++ {
1667 sTyp := value.Type().Field(i)
1668 if proptools.ShouldSkipProperty(sTyp) {
1669 continue
1670 }
1671 name := sTyp.Name
1672 vals[i] = fmt.Sprintf("%s: %s", name, reflectionValue(value.Field(i)))
1673 }
1674 return fmt.Sprintf("%s{%s}", value.Type(), strings.Join(vals, ", "))
1675 case reflect.Array, reflect.Slice:
1676 vals := sliceReflectionValue(value)
1677 return fmt.Sprintf("[%s]", strings.Join(vals, ", "))
1678 }
1679 return ""
1680}
1681
1682func sliceReflectionValue(value reflect.Value) []string {
1683 length := value.Len()
1684 vals := make([]string, length, length)
1685 for i := 0; i < length; i++ {
1686 vals[i] = reflectionValue(value.Index(i))
1687 }
1688 return vals
1689}
1690
Paul Duffin44f1d842020-06-26 20:17:02 +01001691func (m *ModuleBase) ComponentDepsMutator(BottomUpMutatorContext) {}
1692
Colin Cross4157e882019-06-06 16:57:04 -07001693func (m *ModuleBase) DepsMutator(BottomUpMutatorContext) {}
Colin Cross5f692ec2019-02-01 16:53:07 -08001694
Usta355a5872021-12-01 15:16:32 -05001695// AddProperties "registers" the provided props
1696// each value in props MUST be a pointer to a struct
Colin Cross4157e882019-06-06 16:57:04 -07001697func (m *ModuleBase) AddProperties(props ...interface{}) {
1698 m.registerProps = append(m.registerProps, props...)
Colin Cross36242852017-06-23 15:06:31 -07001699}
1700
Colin Cross4157e882019-06-06 16:57:04 -07001701func (m *ModuleBase) GetProperties() []interface{} {
1702 return m.registerProps
Colin Cross3f40fa42015-01-30 17:27:36 -08001703}
1704
Colin Cross4157e882019-06-06 16:57:04 -07001705func (m *ModuleBase) BuildParamsForTests() []BuildParams {
Chih-Hung Hsiehb8082292021-09-09 23:20:39 -07001706 // Expand the references to module variables like $flags[0-9]*,
1707 // so we do not need to change many existing unit tests.
1708 // This looks like undoing the shareFlags optimization in cc's
1709 // transformSourceToObj, and should only affects unit tests.
1710 vars := m.VariablesForTests()
1711 buildParams := append([]BuildParams(nil), m.buildParams...)
Sasha Smundake198eaf2022-08-04 13:07:02 -07001712 for i := range buildParams {
Chih-Hung Hsiehb8082292021-09-09 23:20:39 -07001713 newArgs := make(map[string]string)
1714 for k, v := range buildParams[i].Args {
1715 newArgs[k] = v
1716 // Replaces both ${flags1} and $flags1 syntax.
1717 if strings.HasPrefix(v, "${") && strings.HasSuffix(v, "}") {
1718 if value, found := vars[v[2:len(v)-1]]; found {
1719 newArgs[k] = value
1720 }
1721 } else if strings.HasPrefix(v, "$") {
1722 if value, found := vars[v[1:]]; found {
1723 newArgs[k] = value
1724 }
1725 }
1726 }
1727 buildParams[i].Args = newArgs
1728 }
1729 return buildParams
Colin Crosscec81712017-07-13 14:43:27 -07001730}
1731
Colin Cross4157e882019-06-06 16:57:04 -07001732func (m *ModuleBase) RuleParamsForTests() map[blueprint.Rule]blueprint.RuleParams {
1733 return m.ruleParams
Colin Cross4c83e5c2019-02-25 14:54:28 -08001734}
1735
Colin Cross4157e882019-06-06 16:57:04 -07001736func (m *ModuleBase) VariablesForTests() map[string]string {
1737 return m.variables
Jaewoong Jung38e4fb22018-12-12 09:01:34 -08001738}
1739
Colin Crossce75d2c2016-10-06 16:12:58 -07001740// Name returns the name of the module. It may be overridden by individual module types, for
1741// example prebuilts will prepend prebuilt_ to the name.
Colin Cross4157e882019-06-06 16:57:04 -07001742func (m *ModuleBase) Name() string {
1743 return String(m.nameProperties.Name)
Colin Crossfc754582016-05-17 16:34:16 -07001744}
1745
Colin Cross9a362232019-07-01 15:32:45 -07001746// String returns a string that includes the module name and variants for printing during debugging.
1747func (m *ModuleBase) String() string {
1748 sb := strings.Builder{}
1749 sb.WriteString(m.commonProperties.DebugName)
1750 sb.WriteString("{")
1751 for i := range m.commonProperties.DebugMutators {
1752 if i != 0 {
1753 sb.WriteString(",")
1754 }
1755 sb.WriteString(m.commonProperties.DebugMutators[i])
1756 sb.WriteString(":")
1757 sb.WriteString(m.commonProperties.DebugVariations[i])
1758 }
1759 sb.WriteString("}")
1760 return sb.String()
1761}
1762
Colin Crossce75d2c2016-10-06 16:12:58 -07001763// BaseModuleName returns the name of the module as specified in the blueprints file.
Colin Cross4157e882019-06-06 16:57:04 -07001764func (m *ModuleBase) BaseModuleName() string {
1765 return String(m.nameProperties.Name)
Colin Crossce75d2c2016-10-06 16:12:58 -07001766}
1767
Colin Cross4157e882019-06-06 16:57:04 -07001768func (m *ModuleBase) base() *ModuleBase {
1769 return m
Colin Cross3f40fa42015-01-30 17:27:36 -08001770}
1771
Paul Duffine2453c72019-05-31 14:00:04 +01001772func (m *ModuleBase) qualifiedModuleId(ctx BaseModuleContext) qualifiedModuleName {
1773 return qualifiedModuleName{pkg: ctx.ModuleDir(), name: ctx.ModuleName()}
1774}
1775
1776func (m *ModuleBase) visibilityProperties() []visibilityProperty {
Paul Duffin63c6e182019-07-24 14:24:38 +01001777 return m.visibilityPropertyInfo
1778}
1779
Jingwen Chen40fd90a2020-06-15 05:24:19 +00001780func (m *ModuleBase) Dists() []Dist {
Paul Duffined875132020-09-02 13:08:57 +01001781 if len(m.distProperties.Dist.Targets) > 0 {
Jingwen Chen40fd90a2020-06-15 05:24:19 +00001782 // Make a copy of the underlying Dists slice to protect against
1783 // backing array modifications with repeated calls to this method.
Paul Duffined875132020-09-02 13:08:57 +01001784 distsCopy := append([]Dist(nil), m.distProperties.Dists...)
1785 return append(distsCopy, m.distProperties.Dist)
Jingwen Chen40fd90a2020-06-15 05:24:19 +00001786 } else {
Paul Duffined875132020-09-02 13:08:57 +01001787 return m.distProperties.Dists
Jingwen Chen40fd90a2020-06-15 05:24:19 +00001788 }
1789}
1790
1791func (m *ModuleBase) GenerateTaggedDistFiles(ctx BaseModuleContext) TaggedDistFiles {
Paul Duffin74f05592020-11-25 16:37:46 +00001792 var distFiles TaggedDistFiles
Jingwen Chen40fd90a2020-06-15 05:24:19 +00001793 for _, dist := range m.Dists() {
Paul Duffin74f05592020-11-25 16:37:46 +00001794 // If no tag is specified then it means to use the default dist paths so use
1795 // the special tag name which represents that.
1796 tag := proptools.StringDefault(dist.Tag, DefaultDistTag)
1797
Paul Duffinaf970a22020-11-23 23:32:56 +00001798 if outputFileProducer, ok := m.module.(OutputFileProducer); ok {
1799 // Call the OutputFiles(tag) method to get the paths associated with the tag.
1800 distFilesForTag, err := outputFileProducer.OutputFiles(tag)
Paul Duffin74f05592020-11-25 16:37:46 +00001801
Paul Duffinaf970a22020-11-23 23:32:56 +00001802 // If the tag was not supported and is not DefaultDistTag then it is an error.
1803 // Failing to find paths for DefaultDistTag is not an error. It just means
1804 // that the module type requires the legacy behavior.
1805 if err != nil && tag != DefaultDistTag {
1806 ctx.PropertyErrorf("dist.tag", "%s", err.Error())
1807 }
1808
1809 distFiles = distFiles.addPathsForTag(tag, distFilesForTag...)
1810 } else if tag != DefaultDistTag {
1811 // If the tag was specified then it is an error if the module does not
1812 // implement OutputFileProducer because there is no other way of accessing
1813 // the paths for the specified tag.
1814 ctx.PropertyErrorf("dist.tag",
1815 "tag %s not supported because the module does not implement OutputFileProducer", tag)
Jingwen Chen40fd90a2020-06-15 05:24:19 +00001816 }
Jingwen Chen40fd90a2020-06-15 05:24:19 +00001817 }
1818
1819 return distFiles
1820}
1821
Colin Cross4157e882019-06-06 16:57:04 -07001822func (m *ModuleBase) Target() Target {
1823 return m.commonProperties.CompileTarget
Dan Willemsen490fd492015-11-24 17:53:15 -08001824}
1825
Colin Cross4157e882019-06-06 16:57:04 -07001826func (m *ModuleBase) TargetPrimary() bool {
1827 return m.commonProperties.CompilePrimary
Colin Cross8b74d172016-09-13 09:59:14 -07001828}
1829
Colin Cross4157e882019-06-06 16:57:04 -07001830func (m *ModuleBase) MultiTargets() []Target {
1831 return m.commonProperties.CompileMultiTargets
Colin Crossee0bc3b2018-10-02 22:01:37 -07001832}
1833
Colin Cross4157e882019-06-06 16:57:04 -07001834func (m *ModuleBase) Os() OsType {
1835 return m.Target().Os
Dan Willemsen490fd492015-11-24 17:53:15 -08001836}
1837
Colin Cross4157e882019-06-06 16:57:04 -07001838func (m *ModuleBase) Host() bool {
Jiyong Park1613e552020-09-14 19:43:17 +09001839 return m.Os().Class == Host
Dan Willemsen97750522016-02-09 17:43:51 -08001840}
1841
Yo Chiangbba545e2020-06-09 16:15:37 +08001842func (m *ModuleBase) Device() bool {
1843 return m.Os().Class == Device
1844}
1845
Colin Cross4157e882019-06-06 16:57:04 -07001846func (m *ModuleBase) Arch() Arch {
1847 return m.Target().Arch
Dan Willemsen97750522016-02-09 17:43:51 -08001848}
1849
Colin Cross4157e882019-06-06 16:57:04 -07001850func (m *ModuleBase) ArchSpecific() bool {
1851 return m.commonProperties.ArchSpecific
Dan Willemsen0b24c742016-10-04 15:13:37 -07001852}
1853
Paul Duffin1356d8c2020-02-25 19:26:33 +00001854// True if the current variant is a CommonOS variant, false otherwise.
1855func (m *ModuleBase) IsCommonOSVariant() bool {
1856 return m.commonProperties.CommonOSVariant
1857}
1858
Colin Cross34037c62020-11-17 13:19:17 -08001859// supportsTarget returns true if the given Target is supported by the current module.
1860func (m *ModuleBase) supportsTarget(target Target) bool {
1861 switch target.Os.Class {
1862 case Host:
1863 if target.HostCross {
1864 return m.HostCrossSupported()
1865 } else {
1866 return m.HostSupported()
Colin Crossa1ad8d12016-06-01 17:09:44 -07001867 }
Colin Cross34037c62020-11-17 13:19:17 -08001868 case Device:
1869 return m.DeviceSupported()
Colin Crossa1ad8d12016-06-01 17:09:44 -07001870 default:
Jiyong Park1613e552020-09-14 19:43:17 +09001871 return false
Colin Crossa1ad8d12016-06-01 17:09:44 -07001872 }
Colin Cross3f40fa42015-01-30 17:27:36 -08001873}
1874
Colin Cross34037c62020-11-17 13:19:17 -08001875// DeviceSupported returns true if the current module is supported and enabled for device targets,
1876// i.e. the factory method set the HostOrDeviceSupported value to include device support and
1877// the device support is enabled by default or enabled by the device_supported property.
Colin Cross4157e882019-06-06 16:57:04 -07001878func (m *ModuleBase) DeviceSupported() bool {
Colin Cross34037c62020-11-17 13:19:17 -08001879 hod := m.commonProperties.HostOrDeviceSupported
1880 // deviceEnabled is true if the device_supported property is true or the HostOrDeviceSupported
1881 // value has the deviceDefault bit set.
1882 deviceEnabled := proptools.BoolDefault(m.hostAndDeviceProperties.Device_supported, hod&deviceDefault != 0)
1883 return hod&deviceSupported != 0 && deviceEnabled
Colin Cross3f40fa42015-01-30 17:27:36 -08001884}
1885
Colin Cross34037c62020-11-17 13:19:17 -08001886// HostSupported returns true if the current module is supported and enabled for host targets,
1887// i.e. the factory method set the HostOrDeviceSupported value to include host support and
1888// the host support is enabled by default or enabled by the host_supported property.
Paul Duffine44358f2019-11-26 18:04:12 +00001889func (m *ModuleBase) HostSupported() bool {
Colin Cross34037c62020-11-17 13:19:17 -08001890 hod := m.commonProperties.HostOrDeviceSupported
1891 // hostEnabled is true if the host_supported property is true or the HostOrDeviceSupported
1892 // value has the hostDefault bit set.
1893 hostEnabled := proptools.BoolDefault(m.hostAndDeviceProperties.Host_supported, hod&hostDefault != 0)
1894 return hod&hostSupported != 0 && hostEnabled
1895}
1896
1897// HostCrossSupported returns true if the current module is supported and enabled for host cross
1898// targets, i.e. the factory method set the HostOrDeviceSupported value to include host cross
1899// support and the host cross support is enabled by default or enabled by the
1900// host_supported property.
1901func (m *ModuleBase) HostCrossSupported() bool {
1902 hod := m.commonProperties.HostOrDeviceSupported
1903 // hostEnabled is true if the host_supported property is true or the HostOrDeviceSupported
1904 // value has the hostDefault bit set.
1905 hostEnabled := proptools.BoolDefault(m.hostAndDeviceProperties.Host_supported, hod&hostDefault != 0)
1906 return hod&hostCrossSupported != 0 && hostEnabled
Paul Duffine44358f2019-11-26 18:04:12 +00001907}
1908
Colin Cross4157e882019-06-06 16:57:04 -07001909func (m *ModuleBase) Platform() bool {
Justin Yund5f6c822019-06-25 16:47:17 +09001910 return !m.DeviceSpecific() && !m.SocSpecific() && !m.ProductSpecific() && !m.SystemExtSpecific()
Jiyong Parkc678ad32018-04-10 13:07:10 +09001911}
1912
Colin Cross4157e882019-06-06 16:57:04 -07001913func (m *ModuleBase) DeviceSpecific() bool {
1914 return Bool(m.commonProperties.Device_specific)
Jiyong Parkc678ad32018-04-10 13:07:10 +09001915}
1916
Colin Cross4157e882019-06-06 16:57:04 -07001917func (m *ModuleBase) SocSpecific() bool {
1918 return Bool(m.commonProperties.Vendor) || Bool(m.commonProperties.Proprietary) || Bool(m.commonProperties.Soc_specific)
Jiyong Parkc678ad32018-04-10 13:07:10 +09001919}
1920
Colin Cross4157e882019-06-06 16:57:04 -07001921func (m *ModuleBase) ProductSpecific() bool {
1922 return Bool(m.commonProperties.Product_specific)
Jiyong Parkc678ad32018-04-10 13:07:10 +09001923}
1924
Justin Yund5f6c822019-06-25 16:47:17 +09001925func (m *ModuleBase) SystemExtSpecific() bool {
1926 return Bool(m.commonProperties.System_ext_specific)
Dario Frenifd05a742018-05-29 13:28:54 +01001927}
1928
Colin Crossc2d24052020-05-13 11:05:02 -07001929// RequiresStableAPIs returns true if the module will be installed to a partition that may
1930// be updated separately from the system image.
1931func (m *ModuleBase) RequiresStableAPIs(ctx BaseModuleContext) bool {
1932 return m.SocSpecific() || m.DeviceSpecific() ||
1933 (m.ProductSpecific() && ctx.Config().EnforceProductPartitionInterface())
1934}
1935
Bill Peckhamfff3f8a2020-03-20 18:33:20 -07001936func (m *ModuleBase) PartitionTag(config DeviceConfig) string {
1937 partition := "system"
1938 if m.SocSpecific() {
1939 // A SoC-specific module could be on the vendor partition at
1940 // "vendor" or the system partition at "system/vendor".
1941 if config.VendorPath() == "vendor" {
1942 partition = "vendor"
1943 }
1944 } else if m.DeviceSpecific() {
1945 // A device-specific module could be on the odm partition at
1946 // "odm", the vendor partition at "vendor/odm", or the system
1947 // partition at "system/vendor/odm".
1948 if config.OdmPath() == "odm" {
1949 partition = "odm"
Ramy Medhat944839a2020-03-31 22:14:52 -04001950 } else if strings.HasPrefix(config.OdmPath(), "vendor/") {
Bill Peckhamfff3f8a2020-03-20 18:33:20 -07001951 partition = "vendor"
1952 }
1953 } else if m.ProductSpecific() {
1954 // A product-specific module could be on the product partition
1955 // at "product" or the system partition at "system/product".
1956 if config.ProductPath() == "product" {
1957 partition = "product"
1958 }
1959 } else if m.SystemExtSpecific() {
1960 // A system_ext-specific module could be on the system_ext
1961 // partition at "system_ext" or the system partition at
1962 // "system/system_ext".
1963 if config.SystemExtPath() == "system_ext" {
1964 partition = "system_ext"
1965 }
1966 }
1967 return partition
1968}
1969
Colin Cross4157e882019-06-06 16:57:04 -07001970func (m *ModuleBase) Enabled() bool {
Justin Yun32f053b2020-07-31 23:07:17 +09001971 if m.commonProperties.ForcedDisabled {
1972 return false
1973 }
Colin Cross08d6f8f2020-11-19 02:33:19 +00001974 if m.commonProperties.Enabled == nil {
1975 return !m.Os().DefaultDisabled
1976 }
1977 return *m.commonProperties.Enabled
Colin Cross3f40fa42015-01-30 17:27:36 -08001978}
1979
Inseob Kimeec88e12020-01-22 11:11:29 +09001980func (m *ModuleBase) Disable() {
Justin Yun32f053b2020-07-31 23:07:17 +09001981 m.commonProperties.ForcedDisabled = true
Inseob Kimeec88e12020-01-22 11:11:29 +09001982}
1983
Colin Crossa9c8c9f2020-12-16 10:20:23 -08001984// HideFromMake marks this variant so that it is not emitted in the generated Android.mk file.
1985func (m *ModuleBase) HideFromMake() {
1986 m.commonProperties.HideFromMake = true
1987}
1988
1989// IsHideFromMake returns true if HideFromMake was previously called.
1990func (m *ModuleBase) IsHideFromMake() bool {
1991 return m.commonProperties.HideFromMake == true
1992}
1993
1994// SkipInstall marks this variant to not create install rules when ctx.Install* are called.
Colin Cross4157e882019-06-06 16:57:04 -07001995func (m *ModuleBase) SkipInstall() {
1996 m.commonProperties.SkipInstall = true
Colin Crossce75d2c2016-10-06 16:12:58 -07001997}
1998
Martin Stjernholm9e7f45e2020-12-23 03:50:30 +00001999// IsSkipInstall returns true if this variant is marked to not create install
2000// rules when ctx.Install* are called.
2001func (m *ModuleBase) IsSkipInstall() bool {
2002 return m.commonProperties.SkipInstall
2003}
2004
Iván Budnik295da162023-03-10 16:11:26 +00002005// Similar to HideFromMake, but if the AndroidMk entry would set
2006// LOCAL_UNINSTALLABLE_MODULE then this variant may still output that entry
2007// rather than leaving it out altogether. That happens in cases where it would
2008// have other side effects, in particular when it adds a NOTICE file target,
2009// which other install targets might depend on.
2010func (m *ModuleBase) MakeUninstallable() {
2011 m.HideFromMake()
2012}
2013
Liz Kammer5ca3a622020-08-05 15:40:41 -07002014func (m *ModuleBase) ReplacedByPrebuilt() {
2015 m.commonProperties.ReplacedByPrebuilt = true
Colin Crossa9c8c9f2020-12-16 10:20:23 -08002016 m.HideFromMake()
Liz Kammer5ca3a622020-08-05 15:40:41 -07002017}
2018
2019func (m *ModuleBase) IsReplacedByPrebuilt() bool {
2020 return m.commonProperties.ReplacedByPrebuilt
2021}
2022
Colin Cross4157e882019-06-06 16:57:04 -07002023func (m *ModuleBase) ExportedToMake() bool {
2024 return m.commonProperties.NamespaceExportedToMake
Jiyong Park374510b2018-03-19 18:23:01 +09002025}
2026
Justin Yun885a7de2021-06-29 20:34:53 +09002027func (m *ModuleBase) EffectiveLicenseFiles() Paths {
Bob Badour4101c712022-02-09 11:54:35 -08002028 result := make(Paths, 0, len(m.commonProperties.Effective_license_text))
2029 for _, p := range m.commonProperties.Effective_license_text {
2030 result = append(result, p.Path)
2031 }
2032 return result
Justin Yun885a7de2021-06-29 20:34:53 +09002033}
2034
Colin Crosse9fe2942020-11-10 18:12:15 -08002035// computeInstallDeps finds the installed paths of all dependencies that have a dependency
2036// tag that is annotated as needing installation via the IsInstallDepNeeded method.
Colin Crossffe6b9d2020-12-01 15:40:06 -08002037func (m *ModuleBase) computeInstallDeps(ctx ModuleContext) ([]*installPathsDepSet, []*packagingSpecsDepSet) {
Colin Cross5d583952020-11-24 16:21:24 -08002038 var installDeps []*installPathsDepSet
Colin Crossffe6b9d2020-12-01 15:40:06 -08002039 var packagingSpecs []*packagingSpecsDepSet
Colin Cross5d583952020-11-24 16:21:24 -08002040 ctx.VisitDirectDeps(func(dep Module) {
Jooyung Han8707cd72021-07-23 02:49:46 +09002041 if IsInstallDepNeeded(ctx.OtherModuleDependencyTag(dep)) && !dep.IsHideFromMake() && !dep.IsSkipInstall() {
Colin Cross5d583952020-11-24 16:21:24 -08002042 installDeps = append(installDeps, dep.base().installFilesDepSet)
Colin Crossffe6b9d2020-12-01 15:40:06 -08002043 packagingSpecs = append(packagingSpecs, dep.base().packagingSpecsDepSet)
Colin Cross897266e2020-02-13 13:22:08 -08002044 }
2045 })
Colin Cross3f40fa42015-01-30 17:27:36 -08002046
Colin Crossffe6b9d2020-12-01 15:40:06 -08002047 return installDeps, packagingSpecs
Colin Cross3f40fa42015-01-30 17:27:36 -08002048}
2049
Jiyong Park4dc2a1a2020-09-28 17:46:22 +09002050func (m *ModuleBase) FilesToInstall() InstallPaths {
Colin Cross4157e882019-06-06 16:57:04 -07002051 return m.installFiles
Colin Cross3f40fa42015-01-30 17:27:36 -08002052}
2053
Jiyong Park073ea552020-11-09 14:08:34 +09002054func (m *ModuleBase) PackagingSpecs() []PackagingSpec {
2055 return m.packagingSpecs
2056}
2057
Colin Crossffe6b9d2020-12-01 15:40:06 -08002058func (m *ModuleBase) TransitivePackagingSpecs() []PackagingSpec {
2059 return m.packagingSpecsDepSet.ToList()
2060}
2061
Colin Cross4157e882019-06-06 16:57:04 -07002062func (m *ModuleBase) NoAddressSanitizer() bool {
2063 return m.noAddressSanitizer
Colin Cross3f40fa42015-01-30 17:27:36 -08002064}
2065
Colin Cross4157e882019-06-06 16:57:04 -07002066func (m *ModuleBase) InstallInData() bool {
Dan Willemsen782a2d12015-12-21 14:55:28 -08002067 return false
2068}
2069
Jaewoong Jung0949f312019-09-11 10:25:18 -07002070func (m *ModuleBase) InstallInTestcases() bool {
2071 return false
2072}
2073
Colin Cross4157e882019-06-06 16:57:04 -07002074func (m *ModuleBase) InstallInSanitizerDir() bool {
Vishwath Mohan1dd88392017-03-29 22:00:18 -07002075 return false
2076}
2077
Yifan Hong1b3348d2020-01-21 15:53:22 -08002078func (m *ModuleBase) InstallInRamdisk() bool {
2079 return Bool(m.commonProperties.Ramdisk)
2080}
2081
Yifan Hong60e0cfb2020-10-21 15:17:56 -07002082func (m *ModuleBase) InstallInVendorRamdisk() bool {
2083 return Bool(m.commonProperties.Vendor_ramdisk)
2084}
2085
Inseob Kim08758f02021-04-08 21:13:22 +09002086func (m *ModuleBase) InstallInDebugRamdisk() bool {
2087 return Bool(m.commonProperties.Debug_ramdisk)
2088}
2089
Colin Cross4157e882019-06-06 16:57:04 -07002090func (m *ModuleBase) InstallInRecovery() bool {
2091 return Bool(m.commonProperties.Recovery)
Jiyong Parkf9332f12018-02-01 00:54:12 +09002092}
2093
Kiyoung Kimae11c232021-07-19 11:38:04 +09002094func (m *ModuleBase) InstallInVendor() bool {
Kiyoung Kimf160f7f2022-11-29 10:58:08 +09002095 return Bool(m.commonProperties.Vendor) || Bool(m.commonProperties.Soc_specific) || Bool(m.commonProperties.Proprietary)
Kiyoung Kimae11c232021-07-19 11:38:04 +09002096}
2097
Colin Cross90ba5f42019-10-02 11:10:58 -07002098func (m *ModuleBase) InstallInRoot() bool {
2099 return false
2100}
2101
Jiyong Park87788b52020-09-01 12:37:45 +09002102func (m *ModuleBase) InstallForceOS() (*OsType, *ArchType) {
2103 return nil, nil
Colin Cross6e359402020-02-10 15:29:54 -08002104}
2105
Colin Cross4157e882019-06-06 16:57:04 -07002106func (m *ModuleBase) Owner() string {
2107 return String(m.commonProperties.Owner)
Sundong Ahn4fd04bb2018-08-31 18:01:37 +09002108}
2109
Colin Cross7228ecd2019-11-18 16:00:16 -08002110func (m *ModuleBase) setImageVariation(variant string) {
2111 m.commonProperties.ImageVariation = variant
2112}
2113
2114func (m *ModuleBase) ImageVariation() blueprint.Variation {
2115 return blueprint.Variation{
2116 Mutator: "image",
2117 Variation: m.base().commonProperties.ImageVariation,
2118 }
2119}
2120
Paul Duffin9b76c0b2020-03-12 10:24:35 +00002121func (m *ModuleBase) getVariationByMutatorName(mutator string) string {
2122 for i, v := range m.commonProperties.DebugMutators {
2123 if v == mutator {
2124 return m.commonProperties.DebugVariations[i]
2125 }
2126 }
2127
2128 return ""
2129}
2130
Yifan Hong1b3348d2020-01-21 15:53:22 -08002131func (m *ModuleBase) InRamdisk() bool {
2132 return m.base().commonProperties.ImageVariation == RamdiskVariation
2133}
2134
Yifan Hong60e0cfb2020-10-21 15:17:56 -07002135func (m *ModuleBase) InVendorRamdisk() bool {
2136 return m.base().commonProperties.ImageVariation == VendorRamdiskVariation
2137}
2138
Inseob Kim08758f02021-04-08 21:13:22 +09002139func (m *ModuleBase) InDebugRamdisk() bool {
2140 return m.base().commonProperties.ImageVariation == DebugRamdiskVariation
2141}
2142
Colin Cross7228ecd2019-11-18 16:00:16 -08002143func (m *ModuleBase) InRecovery() bool {
2144 return m.base().commonProperties.ImageVariation == RecoveryVariation
2145}
2146
Jiyong Park6a8cf5f2019-12-30 16:31:09 +09002147func (m *ModuleBase) RequiredModuleNames() []string {
2148 return m.base().commonProperties.Required
2149}
2150
2151func (m *ModuleBase) HostRequiredModuleNames() []string {
2152 return m.base().commonProperties.Host_required
2153}
2154
2155func (m *ModuleBase) TargetRequiredModuleNames() []string {
2156 return m.base().commonProperties.Target_required
2157}
2158
Inseob Kim8471cda2019-11-15 09:59:12 +09002159func (m *ModuleBase) InitRc() Paths {
2160 return append(Paths{}, m.initRcPaths...)
2161}
2162
2163func (m *ModuleBase) VintfFragments() Paths {
2164 return append(Paths{}, m.vintfFragmentsPaths...)
2165}
2166
Yu Liu4ae55d12022-01-05 17:17:23 -08002167func (m *ModuleBase) CompileMultilib() *string {
2168 return m.base().commonProperties.Compile_multilib
2169}
2170
Colin Cross4acaea92021-12-10 23:05:02 +00002171// SetLicenseInstallMap stores the set of dependency module:location mappings for files in an
2172// apex container for use when generation the license metadata file.
2173func (m *ModuleBase) SetLicenseInstallMap(installMap []string) {
2174 m.licenseInstallMap = append(m.licenseInstallMap, installMap...)
2175}
2176
Colin Cross4157e882019-06-06 16:57:04 -07002177func (m *ModuleBase) generateModuleTarget(ctx ModuleContext) {
Colin Cross897266e2020-02-13 13:22:08 -08002178 var allInstalledFiles InstallPaths
2179 var allCheckbuildFiles Paths
Colin Cross0875c522017-11-28 17:34:01 -08002180 ctx.VisitAllModuleVariants(func(module Module) {
2181 a := module.base()
Colin Crossc9404352015-03-26 16:10:12 -07002182 allInstalledFiles = append(allInstalledFiles, a.installFiles...)
Chih-Hung Hsieh80783772021-10-11 16:46:56 -07002183 // A module's -checkbuild phony targets should
Chih-Hung Hsieha3d135b2021-10-14 20:32:53 -07002184 // not be created if the module is not exported to make.
2185 // Those could depend on the build target and fail to compile
2186 // for the current build target.
2187 if !ctx.Config().KatiEnabled() || !shouldSkipAndroidMkProcessing(a) {
2188 allCheckbuildFiles = append(allCheckbuildFiles, a.checkbuildFiles...)
Chih-Hung Hsieha3d135b2021-10-14 20:32:53 -07002189 }
Colin Cross3f40fa42015-01-30 17:27:36 -08002190 })
2191
Colin Cross0875c522017-11-28 17:34:01 -08002192 var deps Paths
Colin Cross9454bfa2015-03-17 13:24:18 -07002193
Colin Cross133ebef2020-08-14 17:38:45 -07002194 namespacePrefix := ctx.Namespace().id
Jeff Gaston088e29e2017-11-29 16:47:17 -08002195 if namespacePrefix != "" {
2196 namespacePrefix = namespacePrefix + "-"
2197 }
2198
Colin Cross3f40fa42015-01-30 17:27:36 -08002199 if len(allInstalledFiles) > 0 {
Colin Crossc3d87d32020-06-04 13:25:17 -07002200 name := namespacePrefix + ctx.ModuleName() + "-install"
2201 ctx.Phony(name, allInstalledFiles.Paths()...)
2202 m.installTarget = PathForPhony(ctx, name)
2203 deps = append(deps, m.installTarget)
Colin Cross9454bfa2015-03-17 13:24:18 -07002204 }
2205
2206 if len(allCheckbuildFiles) > 0 {
Colin Crossc3d87d32020-06-04 13:25:17 -07002207 name := namespacePrefix + ctx.ModuleName() + "-checkbuild"
2208 ctx.Phony(name, allCheckbuildFiles...)
2209 m.checkbuildTarget = PathForPhony(ctx, name)
2210 deps = append(deps, m.checkbuildTarget)
Colin Cross9454bfa2015-03-17 13:24:18 -07002211 }
2212
2213 if len(deps) > 0 {
Dan Willemsen5ba07e82015-12-11 13:51:06 -08002214 suffix := ""
Jingwen Chencda22c92020-11-23 00:22:30 -05002215 if ctx.Config().KatiEnabled() {
Dan Willemsen5ba07e82015-12-11 13:51:06 -08002216 suffix = "-soong"
2217 }
2218
Colin Crossc3d87d32020-06-04 13:25:17 -07002219 ctx.Phony(namespacePrefix+ctx.ModuleName()+suffix, deps...)
Colin Cross1f8c52b2015-06-16 16:38:17 -07002220
Colin Cross4157e882019-06-06 16:57:04 -07002221 m.blueprintDir = ctx.ModuleDir()
Colin Cross3f40fa42015-01-30 17:27:36 -08002222 }
2223}
2224
Colin Crossc34d2322020-01-03 15:23:27 -08002225func determineModuleKind(m *ModuleBase, ctx blueprint.EarlyModuleContext) moduleKind {
Colin Cross4157e882019-06-06 16:57:04 -07002226 var socSpecific = Bool(m.commonProperties.Vendor) || Bool(m.commonProperties.Proprietary) || Bool(m.commonProperties.Soc_specific)
2227 var deviceSpecific = Bool(m.commonProperties.Device_specific)
2228 var productSpecific = Bool(m.commonProperties.Product_specific)
Justin Yund5f6c822019-06-25 16:47:17 +09002229 var systemExtSpecific = Bool(m.commonProperties.System_ext_specific)
Jiyong Park2db76922017-11-08 16:03:48 +09002230
Dario Frenifd05a742018-05-29 13:28:54 +01002231 msg := "conflicting value set here"
2232 if socSpecific && deviceSpecific {
2233 ctx.PropertyErrorf("device_specific", "a module cannot be specific to SoC and device at the same time.")
Colin Cross4157e882019-06-06 16:57:04 -07002234 if Bool(m.commonProperties.Vendor) {
Jiyong Park2db76922017-11-08 16:03:48 +09002235 ctx.PropertyErrorf("vendor", msg)
2236 }
Colin Cross4157e882019-06-06 16:57:04 -07002237 if Bool(m.commonProperties.Proprietary) {
Jiyong Park2db76922017-11-08 16:03:48 +09002238 ctx.PropertyErrorf("proprietary", msg)
2239 }
Colin Cross4157e882019-06-06 16:57:04 -07002240 if Bool(m.commonProperties.Soc_specific) {
Jiyong Park2db76922017-11-08 16:03:48 +09002241 ctx.PropertyErrorf("soc_specific", msg)
2242 }
2243 }
2244
Justin Yund5f6c822019-06-25 16:47:17 +09002245 if productSpecific && systemExtSpecific {
2246 ctx.PropertyErrorf("product_specific", "a module cannot be specific to product and system_ext at the same time.")
2247 ctx.PropertyErrorf("system_ext_specific", msg)
Dario Frenifd05a742018-05-29 13:28:54 +01002248 }
2249
Justin Yund5f6c822019-06-25 16:47:17 +09002250 if (socSpecific || deviceSpecific) && (productSpecific || systemExtSpecific) {
Dario Frenifd05a742018-05-29 13:28:54 +01002251 if productSpecific {
2252 ctx.PropertyErrorf("product_specific", "a module cannot be specific to SoC or device and product at the same time.")
2253 } else {
Justin Yund5f6c822019-06-25 16:47:17 +09002254 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 +01002255 }
2256 if deviceSpecific {
2257 ctx.PropertyErrorf("device_specific", msg)
2258 } else {
Colin Cross4157e882019-06-06 16:57:04 -07002259 if Bool(m.commonProperties.Vendor) {
Dario Frenifd05a742018-05-29 13:28:54 +01002260 ctx.PropertyErrorf("vendor", msg)
2261 }
Colin Cross4157e882019-06-06 16:57:04 -07002262 if Bool(m.commonProperties.Proprietary) {
Dario Frenifd05a742018-05-29 13:28:54 +01002263 ctx.PropertyErrorf("proprietary", msg)
2264 }
Colin Cross4157e882019-06-06 16:57:04 -07002265 if Bool(m.commonProperties.Soc_specific) {
Dario Frenifd05a742018-05-29 13:28:54 +01002266 ctx.PropertyErrorf("soc_specific", msg)
2267 }
2268 }
2269 }
2270
Jiyong Park2db76922017-11-08 16:03:48 +09002271 if productSpecific {
2272 return productSpecificModule
Justin Yund5f6c822019-06-25 16:47:17 +09002273 } else if systemExtSpecific {
2274 return systemExtSpecificModule
Jiyong Park2db76922017-11-08 16:03:48 +09002275 } else if deviceSpecific {
2276 return deviceSpecificModule
2277 } else if socSpecific {
2278 return socSpecificModule
2279 } else {
2280 return platformModule
2281 }
2282}
2283
Colin Crossc34d2322020-01-03 15:23:27 -08002284func (m *ModuleBase) earlyModuleContextFactory(ctx blueprint.EarlyModuleContext) earlyModuleContext {
Colin Cross1184b642019-12-30 18:43:07 -08002285 return earlyModuleContext{
Colin Crossc34d2322020-01-03 15:23:27 -08002286 EarlyModuleContext: ctx,
2287 kind: determineModuleKind(m, ctx),
2288 config: ctx.Config().(Config),
Colin Cross3f40fa42015-01-30 17:27:36 -08002289 }
Colin Cross3f40fa42015-01-30 17:27:36 -08002290}
2291
Colin Cross1184b642019-12-30 18:43:07 -08002292func (m *ModuleBase) baseModuleContextFactory(ctx blueprint.BaseModuleContext) baseModuleContext {
2293 return baseModuleContext{
2294 bp: ctx,
2295 earlyModuleContext: m.earlyModuleContextFactory(ctx),
2296 os: m.commonProperties.CompileOS,
2297 target: m.commonProperties.CompileTarget,
2298 targetPrimary: m.commonProperties.CompilePrimary,
2299 multiTargets: m.commonProperties.CompileMultiTargets,
2300 }
2301}
2302
Colin Cross4157e882019-06-06 16:57:04 -07002303func (m *ModuleBase) GenerateBuildActions(blueprintCtx blueprint.ModuleContext) {
Colin Cross25de6c32019-06-06 14:29:25 -07002304 ctx := &moduleContext{
Colin Cross0ea8ba82019-06-06 14:33:29 -07002305 module: m.module,
Colin Crossdc35e212019-06-06 16:13:11 -07002306 bp: blueprintCtx,
Colin Cross0ea8ba82019-06-06 14:33:29 -07002307 baseModuleContext: m.baseModuleContextFactory(blueprintCtx),
Colin Cross0ea8ba82019-06-06 14:33:29 -07002308 variables: make(map[string]string),
Colin Cross3f40fa42015-01-30 17:27:36 -08002309 }
2310
Colin Crossaa1cab02022-01-28 14:49:24 -08002311 m.licenseMetadataFile = PathForModuleOut(ctx, "meta_lic")
2312
Colin Crossffe6b9d2020-12-01 15:40:06 -08002313 dependencyInstallFiles, dependencyPackagingSpecs := m.computeInstallDeps(ctx)
Colin Cross5d583952020-11-24 16:21:24 -08002314 // set m.installFilesDepSet to only the transitive dependencies to be used as the dependencies
2315 // of installed files of this module. It will be replaced by a depset including the installed
2316 // files of this module at the end for use by modules that depend on this one.
2317 m.installFilesDepSet = newInstallPathsDepSet(nil, dependencyInstallFiles)
2318
Colin Cross6c4f21f2019-06-06 15:41:36 -07002319 // Temporarily continue to call blueprintCtx.GetMissingDependencies() to maintain the previous behavior of never
2320 // reporting missing dependency errors in Blueprint when AllowMissingDependencies == true.
2321 // TODO: This will be removed once defaults modules handle missing dependency errors
2322 blueprintCtx.GetMissingDependencies()
2323
Colin Crossdc35e212019-06-06 16:13:11 -07002324 // For the final GenerateAndroidBuildActions pass, require that all visited dependencies Soong modules and
Paul Duffin1356d8c2020-02-25 19:26:33 +00002325 // are enabled. Unless the module is a CommonOS variant which may have dependencies on disabled variants
2326 // (because the dependencies are added before the modules are disabled). The
2327 // GetOsSpecificVariantsOfCommonOSVariant(...) method will ensure that the disabled variants are
2328 // ignored.
2329 ctx.baseModuleContext.strictVisitDeps = !m.IsCommonOSVariant()
Colin Crossdc35e212019-06-06 16:13:11 -07002330
Colin Cross4c83e5c2019-02-25 14:54:28 -08002331 if ctx.config.captureBuild {
2332 ctx.ruleParams = make(map[blueprint.Rule]blueprint.RuleParams)
2333 }
2334
Colin Cross67a5c132017-05-09 13:45:28 -07002335 desc := "//" + ctx.ModuleDir() + ":" + ctx.ModuleName() + " "
2336 var suffix []string
Colin Cross0875c522017-11-28 17:34:01 -08002337 if ctx.Os().Class != Device && ctx.Os().Class != Generic {
2338 suffix = append(suffix, ctx.Os().String())
Colin Cross67a5c132017-05-09 13:45:28 -07002339 }
Colin Cross0875c522017-11-28 17:34:01 -08002340 if !ctx.PrimaryArch() {
2341 suffix = append(suffix, ctx.Arch().ArchType.String())
Colin Cross67a5c132017-05-09 13:45:28 -07002342 }
Colin Cross56a83212020-09-15 18:30:11 -07002343 if apexInfo := ctx.Provider(ApexInfoProvider).(ApexInfo); !apexInfo.IsForPlatform() {
2344 suffix = append(suffix, apexInfo.ApexVariationName)
Dan Willemsenb13a9482020-02-14 11:25:54 -08002345 }
Colin Cross67a5c132017-05-09 13:45:28 -07002346
2347 ctx.Variable(pctx, "moduleDesc", desc)
2348
2349 s := ""
2350 if len(suffix) > 0 {
2351 s = " [" + strings.Join(suffix, " ") + "]"
2352 }
2353 ctx.Variable(pctx, "moduleDescSuffix", s)
2354
Dan Willemsen569edc52018-11-19 09:33:29 -08002355 // Some common property checks for properties that will be used later in androidmk.go
Paul Duffin89968e32020-11-23 18:17:03 +00002356 checkDistProperties(ctx, "dist", &m.distProperties.Dist)
Sasha Smundake198eaf2022-08-04 13:07:02 -07002357 for i := range m.distProperties.Dists {
Paul Duffin89968e32020-11-23 18:17:03 +00002358 checkDistProperties(ctx, fmt.Sprintf("dists[%d]", i), &m.distProperties.Dists[i])
Dan Willemsen569edc52018-11-19 09:33:29 -08002359 }
2360
Colin Cross4157e882019-06-06 16:57:04 -07002361 if m.Enabled() {
Jooyung Hand48f3c32019-08-23 11:18:57 +09002362 // ensure all direct android.Module deps are enabled
2363 ctx.VisitDirectDepsBlueprint(func(bm blueprint.Module) {
Martin Stjernholm0e4cceb2021-05-13 02:38:35 +01002364 if m, ok := bm.(Module); ok {
2365 ctx.validateAndroidModule(bm, ctx.OtherModuleDependencyTag(m), ctx.baseModuleContext.strictVisitDeps)
Jooyung Hand48f3c32019-08-23 11:18:57 +09002366 }
2367 })
2368
Bob Badour37af0462021-01-07 03:34:31 +00002369 licensesPropertyFlattener(ctx)
2370 if ctx.Failed() {
2371 return
2372 }
2373
Chris Parsonsf874e462022-05-10 13:50:12 -04002374 if mixedBuildMod, handled := m.isHandledByBazel(ctx); handled {
2375 mixedBuildMod.ProcessBazelQueryResponse(ctx)
2376 } else {
2377 m.module.GenerateAndroidBuildActions(ctx)
2378 }
Jaewoong Jung5b425e22019-06-17 17:40:56 -07002379 if ctx.Failed() {
2380 return
2381 }
2382
Jiyong Park4d861072021-03-03 20:02:42 +09002383 m.initRcPaths = PathsForModuleSrc(ctx, m.commonProperties.Init_rc)
2384 rcDir := PathForModuleInstall(ctx, "etc", "init")
2385 for _, src := range m.initRcPaths {
2386 ctx.PackageFile(rcDir, filepath.Base(src.String()), src)
2387 }
2388
2389 m.vintfFragmentsPaths = PathsForModuleSrc(ctx, m.commonProperties.Vintf_fragments)
2390 vintfDir := PathForModuleInstall(ctx, "etc", "vintf", "manifest")
2391 for _, src := range m.vintfFragmentsPaths {
2392 ctx.PackageFile(vintfDir, filepath.Base(src.String()), src)
2393 }
2394
Paul Duffinaf970a22020-11-23 23:32:56 +00002395 // Create the set of tagged dist files after calling GenerateAndroidBuildActions
2396 // as GenerateTaggedDistFiles() calls OutputFiles(tag) and so relies on the
2397 // output paths being set which must be done before or during
2398 // GenerateAndroidBuildActions.
2399 m.distFiles = m.GenerateTaggedDistFiles(ctx)
2400 if ctx.Failed() {
2401 return
2402 }
2403
Jaewoong Jung5b425e22019-06-17 17:40:56 -07002404 m.installFiles = append(m.installFiles, ctx.installFiles...)
2405 m.checkbuildFiles = append(m.checkbuildFiles, ctx.checkbuildFiles...)
Jiyong Park073ea552020-11-09 14:08:34 +09002406 m.packagingSpecs = append(m.packagingSpecs, ctx.packagingSpecs...)
Colin Cross6301c3c2021-09-28 17:40:21 -07002407 m.katiInstalls = append(m.katiInstalls, ctx.katiInstalls...)
2408 m.katiSymlinks = append(m.katiSymlinks, ctx.katiSymlinks...)
Colin Crossdc35e212019-06-06 16:13:11 -07002409 } else if ctx.Config().AllowMissingDependencies() {
2410 // If the module is not enabled it will not create any build rules, nothing will call
2411 // ctx.GetMissingDependencies(), and blueprint will consider the missing dependencies to be unhandled
2412 // and report them as an error even when AllowMissingDependencies = true. Call
2413 // ctx.GetMissingDependencies() here to tell blueprint not to handle them.
2414 ctx.GetMissingDependencies()
Colin Cross3f40fa42015-01-30 17:27:36 -08002415 }
2416
Colin Cross4157e882019-06-06 16:57:04 -07002417 if m == ctx.FinalModule().(Module).base() {
2418 m.generateModuleTarget(ctx)
Colin Cross9b1d13d2016-09-19 15:18:11 -07002419 if ctx.Failed() {
2420 return
2421 }
Colin Cross3f40fa42015-01-30 17:27:36 -08002422 }
Colin Crosscec81712017-07-13 14:43:27 -07002423
Colin Cross5d583952020-11-24 16:21:24 -08002424 m.installFilesDepSet = newInstallPathsDepSet(m.installFiles, dependencyInstallFiles)
Colin Crossffe6b9d2020-12-01 15:40:06 -08002425 m.packagingSpecsDepSet = newPackagingSpecsDepSet(m.packagingSpecs, dependencyPackagingSpecs)
Colin Cross5d583952020-11-24 16:21:24 -08002426
Colin Crossaa1cab02022-01-28 14:49:24 -08002427 buildLicenseMetadata(ctx, m.licenseMetadataFile)
Colin Cross4acaea92021-12-10 23:05:02 +00002428
Colin Cross4157e882019-06-06 16:57:04 -07002429 m.buildParams = ctx.buildParams
2430 m.ruleParams = ctx.ruleParams
2431 m.variables = ctx.variables
Colin Cross3f40fa42015-01-30 17:27:36 -08002432}
2433
Chris Parsonsf874e462022-05-10 13:50:12 -04002434func (m *ModuleBase) isHandledByBazel(ctx ModuleContext) (MixedBuildBuildable, bool) {
Chris Parsonsf874e462022-05-10 13:50:12 -04002435 if mixedBuildMod, ok := m.module.(MixedBuildBuildable); ok {
2436 if mixedBuildMod.IsMixedBuildSupported(ctx) && MixedBuildsEnabled(ctx) {
2437 return mixedBuildMod, true
2438 }
2439 }
2440 return nil, false
2441}
2442
Paul Duffin89968e32020-11-23 18:17:03 +00002443// Check the supplied dist structure to make sure that it is valid.
2444//
2445// property - the base property, e.g. dist or dists[1], which is combined with the
2446// name of the nested property to produce the full property, e.g. dist.dest or
2447// dists[1].dir.
2448func checkDistProperties(ctx *moduleContext, property string, dist *Dist) {
2449 if dist.Dest != nil {
2450 _, err := validateSafePath(*dist.Dest)
2451 if err != nil {
2452 ctx.PropertyErrorf(property+".dest", "%s", err.Error())
2453 }
2454 }
2455 if dist.Dir != nil {
2456 _, err := validateSafePath(*dist.Dir)
2457 if err != nil {
2458 ctx.PropertyErrorf(property+".dir", "%s", err.Error())
2459 }
2460 }
2461 if dist.Suffix != nil {
2462 if strings.Contains(*dist.Suffix, "/") {
2463 ctx.PropertyErrorf(property+".suffix", "Suffix may not contain a '/' character.")
2464 }
2465 }
2466
2467}
2468
Colin Cross1184b642019-12-30 18:43:07 -08002469type earlyModuleContext struct {
Colin Crossc34d2322020-01-03 15:23:27 -08002470 blueprint.EarlyModuleContext
Colin Cross1184b642019-12-30 18:43:07 -08002471
2472 kind moduleKind
2473 config Config
2474}
2475
2476func (e *earlyModuleContext) Glob(globPattern string, excludes []string) Paths {
Liz Kammera830f3a2020-11-10 10:50:34 -08002477 return Glob(e, globPattern, excludes)
Colin Cross1184b642019-12-30 18:43:07 -08002478}
2479
2480func (e *earlyModuleContext) GlobFiles(globPattern string, excludes []string) Paths {
Liz Kammera830f3a2020-11-10 10:50:34 -08002481 return GlobFiles(e, globPattern, excludes)
Colin Cross1184b642019-12-30 18:43:07 -08002482}
2483
Ustaeabf0f32021-12-06 15:17:23 -05002484func (e *earlyModuleContext) IsSymlink(path Path) bool {
2485 fileInfo, err := e.config.fs.Lstat(path.String())
Colin Cross988414c2020-01-11 01:11:46 +00002486 if err != nil {
Ustaeabf0f32021-12-06 15:17:23 -05002487 e.ModuleErrorf("os.Lstat(%q) failed: %s", path.String(), err)
Colin Cross988414c2020-01-11 01:11:46 +00002488 }
2489 return fileInfo.Mode()&os.ModeSymlink == os.ModeSymlink
2490}
2491
Ustaeabf0f32021-12-06 15:17:23 -05002492func (e *earlyModuleContext) Readlink(path Path) string {
2493 dest, err := e.config.fs.Readlink(path.String())
Colin Cross988414c2020-01-11 01:11:46 +00002494 if err != nil {
Ustaeabf0f32021-12-06 15:17:23 -05002495 e.ModuleErrorf("os.Readlink(%q) failed: %s", path.String(), err)
Colin Cross988414c2020-01-11 01:11:46 +00002496 }
2497 return dest
2498}
2499
Colin Cross1184b642019-12-30 18:43:07 -08002500func (e *earlyModuleContext) Module() Module {
Colin Crossc34d2322020-01-03 15:23:27 -08002501 module, _ := e.EarlyModuleContext.Module().(Module)
Colin Cross1184b642019-12-30 18:43:07 -08002502 return module
2503}
2504
2505func (e *earlyModuleContext) Config() Config {
Colin Crossc34d2322020-01-03 15:23:27 -08002506 return e.EarlyModuleContext.Config().(Config)
Colin Cross1184b642019-12-30 18:43:07 -08002507}
2508
2509func (e *earlyModuleContext) AConfig() Config {
2510 return e.config
2511}
2512
2513func (e *earlyModuleContext) DeviceConfig() DeviceConfig {
2514 return DeviceConfig{e.config.deviceConfig}
2515}
2516
2517func (e *earlyModuleContext) Platform() bool {
2518 return e.kind == platformModule
2519}
2520
2521func (e *earlyModuleContext) DeviceSpecific() bool {
2522 return e.kind == deviceSpecificModule
2523}
2524
2525func (e *earlyModuleContext) SocSpecific() bool {
2526 return e.kind == socSpecificModule
2527}
2528
2529func (e *earlyModuleContext) ProductSpecific() bool {
2530 return e.kind == productSpecificModule
2531}
2532
2533func (e *earlyModuleContext) SystemExtSpecific() bool {
2534 return e.kind == systemExtSpecificModule
2535}
2536
Colin Cross133ebef2020-08-14 17:38:45 -07002537func (e *earlyModuleContext) Namespace() *Namespace {
2538 return e.EarlyModuleContext.Namespace().(*Namespace)
2539}
2540
Colin Cross1184b642019-12-30 18:43:07 -08002541type baseModuleContext struct {
2542 bp blueprint.BaseModuleContext
2543 earlyModuleContext
Colin Crossfb0c16e2019-11-20 17:12:35 -08002544 os OsType
Colin Cross8b74d172016-09-13 09:59:14 -07002545 target Target
Colin Crossee0bc3b2018-10-02 22:01:37 -07002546 multiTargets []Target
Colin Cross8b74d172016-09-13 09:59:14 -07002547 targetPrimary bool
2548 debug bool
Colin Crossdc35e212019-06-06 16:13:11 -07002549
2550 walkPath []Module
Paul Duffinc5192442020-03-31 11:31:36 +01002551 tagPath []blueprint.DependencyTag
Colin Crossdc35e212019-06-06 16:13:11 -07002552
2553 strictVisitDeps bool // If true, enforce that all dependencies are enabled
Chris Parsons5a34ffb2021-07-21 14:34:58 -04002554
2555 bazelConversionMode bool
Colin Crossf6566ed2015-03-24 11:13:38 -07002556}
2557
Liz Kammer3bf97bd2022-04-26 09:38:20 -04002558func (b *baseModuleContext) isBazelConversionMode() bool {
Chris Parsons5a34ffb2021-07-21 14:34:58 -04002559 return b.bazelConversionMode
2560}
Paul Duffinca7f0ef2020-02-25 15:50:49 +00002561func (b *baseModuleContext) OtherModuleName(m blueprint.Module) string {
2562 return b.bp.OtherModuleName(m)
2563}
2564func (b *baseModuleContext) OtherModuleDir(m blueprint.Module) string { return b.bp.OtherModuleDir(m) }
Colin Cross1184b642019-12-30 18:43:07 -08002565func (b *baseModuleContext) OtherModuleErrorf(m blueprint.Module, fmt string, args ...interface{}) {
Jooyung Hancd87c692020-02-26 02:05:18 +09002566 b.bp.OtherModuleErrorf(m, fmt, args...)
Colin Cross1184b642019-12-30 18:43:07 -08002567}
2568func (b *baseModuleContext) OtherModuleDependencyTag(m blueprint.Module) blueprint.DependencyTag {
2569 return b.bp.OtherModuleDependencyTag(m)
2570}
Paul Duffinca7f0ef2020-02-25 15:50:49 +00002571func (b *baseModuleContext) OtherModuleExists(name string) bool { return b.bp.OtherModuleExists(name) }
Martin Stjernholm009a9dc2020-03-05 17:34:13 +00002572func (b *baseModuleContext) OtherModuleDependencyVariantExists(variations []blueprint.Variation, name string) bool {
2573 return b.bp.OtherModuleDependencyVariantExists(variations, name)
2574}
Martin Stjernholm408ffd82021-05-05 15:27:31 +01002575func (b *baseModuleContext) OtherModuleFarDependencyVariantExists(variations []blueprint.Variation, name string) bool {
2576 return b.bp.OtherModuleFarDependencyVariantExists(variations, name)
2577}
Martin Stjernholm009a9dc2020-03-05 17:34:13 +00002578func (b *baseModuleContext) OtherModuleReverseDependencyVariantExists(name string) bool {
2579 return b.bp.OtherModuleReverseDependencyVariantExists(name)
2580}
Paul Duffinca7f0ef2020-02-25 15:50:49 +00002581func (b *baseModuleContext) OtherModuleType(m blueprint.Module) string {
2582 return b.bp.OtherModuleType(m)
2583}
Colin Crossd27e7b82020-07-02 11:38:17 -07002584func (b *baseModuleContext) OtherModuleProvider(m blueprint.Module, provider blueprint.ProviderKey) interface{} {
2585 return b.bp.OtherModuleProvider(m, provider)
2586}
2587func (b *baseModuleContext) OtherModuleHasProvider(m blueprint.Module, provider blueprint.ProviderKey) bool {
2588 return b.bp.OtherModuleHasProvider(m, provider)
2589}
2590func (b *baseModuleContext) Provider(provider blueprint.ProviderKey) interface{} {
2591 return b.bp.Provider(provider)
2592}
2593func (b *baseModuleContext) HasProvider(provider blueprint.ProviderKey) bool {
2594 return b.bp.HasProvider(provider)
2595}
2596func (b *baseModuleContext) SetProvider(provider blueprint.ProviderKey, value interface{}) {
2597 b.bp.SetProvider(provider, value)
2598}
Colin Cross1184b642019-12-30 18:43:07 -08002599
2600func (b *baseModuleContext) GetDirectDepWithTag(name string, tag blueprint.DependencyTag) blueprint.Module {
2601 return b.bp.GetDirectDepWithTag(name, tag)
2602}
2603
Paul Duffinf88d8e02020-05-07 20:21:34 +01002604func (b *baseModuleContext) blueprintBaseModuleContext() blueprint.BaseModuleContext {
2605 return b.bp
2606}
2607
Colin Cross25de6c32019-06-06 14:29:25 -07002608type moduleContext struct {
Colin Crossdc35e212019-06-06 16:13:11 -07002609 bp blueprint.ModuleContext
Colin Cross0ea8ba82019-06-06 14:33:29 -07002610 baseModuleContext
Jiyong Park073ea552020-11-09 14:08:34 +09002611 packagingSpecs []PackagingSpec
Colin Cross897266e2020-02-13 13:22:08 -08002612 installFiles InstallPaths
Dan Willemsen34cc69e2015-09-23 15:26:20 -07002613 checkbuildFiles Paths
Colin Cross8d8f8e22016-08-03 11:57:50 -07002614 module Module
Colin Crossc3d87d32020-06-04 13:25:17 -07002615 phonies map[string]Paths
Colin Crosscec81712017-07-13 14:43:27 -07002616
Colin Cross6301c3c2021-09-28 17:40:21 -07002617 katiInstalls []katiInstall
2618 katiSymlinks []katiInstall
2619
Colin Crosscec81712017-07-13 14:43:27 -07002620 // For tests
Colin Crossae887032017-10-23 17:16:14 -07002621 buildParams []BuildParams
Colin Cross4c83e5c2019-02-25 14:54:28 -08002622 ruleParams map[blueprint.Rule]blueprint.RuleParams
Jaewoong Jung38e4fb22018-12-12 09:01:34 -08002623 variables map[string]string
Colin Cross6ff51382015-12-17 16:39:19 -08002624}
2625
Colin Cross6301c3c2021-09-28 17:40:21 -07002626// katiInstall stores a request from Soong to Make to create an install rule.
2627type katiInstall struct {
2628 from Path
2629 to InstallPath
2630 implicitDeps Paths
2631 orderOnlyDeps Paths
2632 executable bool
Colin Cross50ed1f92021-11-12 17:41:02 -08002633 extraFiles *extraFilesZip
Colin Cross6301c3c2021-09-28 17:40:21 -07002634
2635 absFrom string
2636}
2637
Colin Cross50ed1f92021-11-12 17:41:02 -08002638type extraFilesZip struct {
2639 zip Path
2640 dir InstallPath
2641}
2642
Colin Cross6301c3c2021-09-28 17:40:21 -07002643type katiInstalls []katiInstall
2644
2645// BuiltInstalled returns the katiInstalls in the form used by $(call copy-many-files) in Make, a
2646// space separated list of from:to tuples.
2647func (installs katiInstalls) BuiltInstalled() string {
2648 sb := strings.Builder{}
2649 for i, install := range installs {
2650 if i != 0 {
2651 sb.WriteRune(' ')
2652 }
2653 sb.WriteString(install.from.String())
2654 sb.WriteRune(':')
2655 sb.WriteString(install.to.String())
2656 }
2657 return sb.String()
2658}
2659
2660// InstallPaths returns the install path of each entry.
2661func (installs katiInstalls) InstallPaths() InstallPaths {
2662 paths := make(InstallPaths, 0, len(installs))
2663 for _, install := range installs {
2664 paths = append(paths, install.to)
2665 }
2666 return paths
2667}
2668
Colin Crossb88b3c52019-06-10 15:15:17 -07002669func (m *moduleContext) ninjaError(params BuildParams, err error) (PackageContext, BuildParams) {
2670 return pctx, BuildParams{
Colin Cross4b69c492019-06-07 13:06:06 -07002671 Rule: ErrorRule,
2672 Description: params.Description,
2673 Output: params.Output,
2674 Outputs: params.Outputs,
2675 ImplicitOutput: params.ImplicitOutput,
2676 ImplicitOutputs: params.ImplicitOutputs,
Colin Cross6ff51382015-12-17 16:39:19 -08002677 Args: map[string]string{
2678 "error": err.Error(),
2679 },
Colin Crossb88b3c52019-06-10 15:15:17 -07002680 }
Colin Cross3f40fa42015-01-30 17:27:36 -08002681}
2682
Colin Cross25de6c32019-06-06 14:29:25 -07002683func (m *moduleContext) ModuleBuild(pctx PackageContext, params ModuleBuildParams) {
2684 m.Build(pctx, BuildParams(params))
Colin Cross3f40fa42015-01-30 17:27:36 -08002685}
2686
Jingwen Chence679d22020-09-23 04:30:02 +00002687func validateBuildParams(params blueprint.BuildParams) error {
2688 // Validate that the symlink outputs are declared outputs or implicit outputs
2689 allOutputs := map[string]bool{}
2690 for _, output := range params.Outputs {
2691 allOutputs[output] = true
2692 }
2693 for _, output := range params.ImplicitOutputs {
2694 allOutputs[output] = true
2695 }
2696 for _, symlinkOutput := range params.SymlinkOutputs {
2697 if !allOutputs[symlinkOutput] {
2698 return fmt.Errorf(
2699 "Symlink output %s is not a declared output or implicit output",
2700 symlinkOutput)
2701 }
2702 }
2703 return nil
2704}
2705
2706// Convert build parameters from their concrete Android types into their string representations,
2707// and combine the singular and plural fields of the same type (e.g. Output and Outputs).
Colin Cross0875c522017-11-28 17:34:01 -08002708func convertBuildParams(params BuildParams) blueprint.BuildParams {
Dan Willemsen34cc69e2015-09-23 15:26:20 -07002709 bparams := blueprint.BuildParams{
Dan Willemsen9f3c5742016-11-03 14:28:31 -07002710 Rule: params.Rule,
Colin Cross0875c522017-11-28 17:34:01 -08002711 Description: params.Description,
Colin Cross33bfb0a2016-11-21 17:23:08 -08002712 Deps: params.Deps,
Dan Willemsen9f3c5742016-11-03 14:28:31 -07002713 Outputs: params.Outputs.Strings(),
2714 ImplicitOutputs: params.ImplicitOutputs.Strings(),
Jingwen Chence679d22020-09-23 04:30:02 +00002715 SymlinkOutputs: params.SymlinkOutputs.Strings(),
Dan Willemsen9f3c5742016-11-03 14:28:31 -07002716 Inputs: params.Inputs.Strings(),
2717 Implicits: params.Implicits.Strings(),
2718 OrderOnly: params.OrderOnly.Strings(),
Colin Cross824f1162020-07-16 13:07:51 -07002719 Validations: params.Validations.Strings(),
Dan Willemsen9f3c5742016-11-03 14:28:31 -07002720 Args: params.Args,
2721 Optional: !params.Default,
Dan Willemsen34cc69e2015-09-23 15:26:20 -07002722 }
2723
Colin Cross33bfb0a2016-11-21 17:23:08 -08002724 if params.Depfile != nil {
2725 bparams.Depfile = params.Depfile.String()
2726 }
Dan Willemsen34cc69e2015-09-23 15:26:20 -07002727 if params.Output != nil {
2728 bparams.Outputs = append(bparams.Outputs, params.Output.String())
2729 }
Jingwen Chence679d22020-09-23 04:30:02 +00002730 if params.SymlinkOutput != nil {
2731 bparams.SymlinkOutputs = append(bparams.SymlinkOutputs, params.SymlinkOutput.String())
2732 }
Dan Willemsen9f3c5742016-11-03 14:28:31 -07002733 if params.ImplicitOutput != nil {
2734 bparams.ImplicitOutputs = append(bparams.ImplicitOutputs, params.ImplicitOutput.String())
2735 }
Dan Willemsen34cc69e2015-09-23 15:26:20 -07002736 if params.Input != nil {
2737 bparams.Inputs = append(bparams.Inputs, params.Input.String())
2738 }
2739 if params.Implicit != nil {
2740 bparams.Implicits = append(bparams.Implicits, params.Implicit.String())
2741 }
Colin Cross824f1162020-07-16 13:07:51 -07002742 if params.Validation != nil {
2743 bparams.Validations = append(bparams.Validations, params.Validation.String())
2744 }
Dan Willemsen34cc69e2015-09-23 15:26:20 -07002745
Colin Cross0b9f31f2019-02-28 11:00:01 -08002746 bparams.Outputs = proptools.NinjaEscapeList(bparams.Outputs)
2747 bparams.ImplicitOutputs = proptools.NinjaEscapeList(bparams.ImplicitOutputs)
Jingwen Chence679d22020-09-23 04:30:02 +00002748 bparams.SymlinkOutputs = proptools.NinjaEscapeList(bparams.SymlinkOutputs)
Colin Cross0b9f31f2019-02-28 11:00:01 -08002749 bparams.Inputs = proptools.NinjaEscapeList(bparams.Inputs)
2750 bparams.Implicits = proptools.NinjaEscapeList(bparams.Implicits)
2751 bparams.OrderOnly = proptools.NinjaEscapeList(bparams.OrderOnly)
Colin Cross824f1162020-07-16 13:07:51 -07002752 bparams.Validations = proptools.NinjaEscapeList(bparams.Validations)
2753 bparams.Depfile = proptools.NinjaEscape(bparams.Depfile)
Colin Crossfe4bc362018-09-12 10:02:13 -07002754
Colin Cross0875c522017-11-28 17:34:01 -08002755 return bparams
2756}
2757
Colin Cross25de6c32019-06-06 14:29:25 -07002758func (m *moduleContext) Variable(pctx PackageContext, name, value string) {
2759 if m.config.captureBuild {
2760 m.variables[name] = value
Jaewoong Jung38e4fb22018-12-12 09:01:34 -08002761 }
2762
Colin Crossdc35e212019-06-06 16:13:11 -07002763 m.bp.Variable(pctx.PackageContext, name, value)
Colin Cross0875c522017-11-28 17:34:01 -08002764}
2765
Colin Cross25de6c32019-06-06 14:29:25 -07002766func (m *moduleContext) Rule(pctx PackageContext, name string, params blueprint.RuleParams,
Colin Cross0875c522017-11-28 17:34:01 -08002767 argNames ...string) blueprint.Rule {
2768
Ramy Medhat944839a2020-03-31 22:14:52 -04002769 if m.config.UseRemoteBuild() {
2770 if params.Pool == nil {
2771 // When USE_GOMA=true or USE_RBE=true are set and the rule is not supported by goma/RBE, restrict
2772 // jobs to the local parallelism value
2773 params.Pool = localPool
2774 } else if params.Pool == remotePool {
2775 // remotePool is a fake pool used to identify rule that are supported for remoting. If the rule's
2776 // pool is the remotePool, replace with nil so that ninja runs it at NINJA_REMOTE_NUM_JOBS
2777 // parallelism.
2778 params.Pool = nil
2779 }
Colin Cross2e2dbc22019-09-25 13:31:46 -07002780 }
2781
Colin Crossdc35e212019-06-06 16:13:11 -07002782 rule := m.bp.Rule(pctx.PackageContext, name, params, argNames...)
Colin Cross4c83e5c2019-02-25 14:54:28 -08002783
Colin Cross25de6c32019-06-06 14:29:25 -07002784 if m.config.captureBuild {
2785 m.ruleParams[rule] = params
Colin Cross4c83e5c2019-02-25 14:54:28 -08002786 }
2787
2788 return rule
Colin Cross0875c522017-11-28 17:34:01 -08002789}
2790
Colin Cross25de6c32019-06-06 14:29:25 -07002791func (m *moduleContext) Build(pctx PackageContext, params BuildParams) {
Colin Crossb88b3c52019-06-10 15:15:17 -07002792 if params.Description != "" {
2793 params.Description = "${moduleDesc}" + params.Description + "${moduleDescSuffix}"
2794 }
2795
2796 if missingDeps := m.GetMissingDependencies(); len(missingDeps) > 0 {
2797 pctx, params = m.ninjaError(params, fmt.Errorf("module %s missing dependencies: %s\n",
2798 m.ModuleName(), strings.Join(missingDeps, ", ")))
2799 }
2800
Colin Cross25de6c32019-06-06 14:29:25 -07002801 if m.config.captureBuild {
2802 m.buildParams = append(m.buildParams, params)
Colin Cross0875c522017-11-28 17:34:01 -08002803 }
2804
Jingwen Chence679d22020-09-23 04:30:02 +00002805 bparams := convertBuildParams(params)
2806 err := validateBuildParams(bparams)
2807 if err != nil {
2808 m.ModuleErrorf(
2809 "%s: build parameter validation failed: %s",
2810 m.ModuleName(),
2811 err.Error())
2812 }
2813 m.bp.Build(pctx.PackageContext, bparams)
Dan Willemsen34cc69e2015-09-23 15:26:20 -07002814}
Colin Crossc3d87d32020-06-04 13:25:17 -07002815
2816func (m *moduleContext) Phony(name string, deps ...Path) {
2817 addPhony(m.config, name, deps...)
2818}
2819
Colin Cross25de6c32019-06-06 14:29:25 -07002820func (m *moduleContext) GetMissingDependencies() []string {
Colin Cross6c4f21f2019-06-06 15:41:36 -07002821 var missingDeps []string
2822 missingDeps = append(missingDeps, m.Module().base().commonProperties.MissingDeps...)
Colin Crossdc35e212019-06-06 16:13:11 -07002823 missingDeps = append(missingDeps, m.bp.GetMissingDependencies()...)
Colin Cross6c4f21f2019-06-06 15:41:36 -07002824 missingDeps = FirstUniqueStrings(missingDeps)
2825 return missingDeps
Colin Cross6ff51382015-12-17 16:39:19 -08002826}
2827
Colin Crossdc35e212019-06-06 16:13:11 -07002828func (b *baseModuleContext) AddMissingDependencies(deps []string) {
Dan Willemsen6553f5e2016-03-10 18:14:25 -08002829 if deps != nil {
Colin Crossdc35e212019-06-06 16:13:11 -07002830 missingDeps := &b.Module().base().commonProperties.MissingDeps
Colin Cross6c4f21f2019-06-06 15:41:36 -07002831 *missingDeps = append(*missingDeps, deps...)
2832 *missingDeps = FirstUniqueStrings(*missingDeps)
Dan Willemsen6553f5e2016-03-10 18:14:25 -08002833 }
2834}
2835
Martin Stjernholm0e4cceb2021-05-13 02:38:35 +01002836type AllowDisabledModuleDependency interface {
2837 blueprint.DependencyTag
2838 AllowDisabledModuleDependency(target Module) bool
2839}
2840
2841func (b *baseModuleContext) validateAndroidModule(module blueprint.Module, tag blueprint.DependencyTag, strict bool) Module {
Colin Crossd11fcda2017-10-23 17:59:01 -07002842 aModule, _ := module.(Module)
Colin Crossdc35e212019-06-06 16:13:11 -07002843
2844 if !strict {
2845 return aModule
2846 }
2847
Colin Cross380c69a2019-06-10 17:49:58 +00002848 if aModule == nil {
Liz Kammer55146982022-01-24 16:17:30 -05002849 b.ModuleErrorf("module %q (%#v) not an android module", b.OtherModuleName(module), tag)
Colin Cross380c69a2019-06-10 17:49:58 +00002850 return nil
2851 }
2852
2853 if !aModule.Enabled() {
Martin Stjernholm0e4cceb2021-05-13 02:38:35 +01002854 if t, ok := tag.(AllowDisabledModuleDependency); !ok || !t.AllowDisabledModuleDependency(aModule) {
2855 if b.Config().AllowMissingDependencies() {
2856 b.AddMissingDependencies([]string{b.OtherModuleName(aModule)})
2857 } else {
2858 b.ModuleErrorf("depends on disabled module %q", b.OtherModuleName(aModule))
2859 }
Colin Cross380c69a2019-06-10 17:49:58 +00002860 }
2861 return nil
2862 }
Colin Crossd11fcda2017-10-23 17:59:01 -07002863 return aModule
2864}
2865
Liz Kammer2b50ce62021-04-26 15:47:28 -04002866type dep struct {
2867 mod blueprint.Module
2868 tag blueprint.DependencyTag
2869}
2870
2871func (b *baseModuleContext) getDirectDepsInternal(name string, tag blueprint.DependencyTag) []dep {
Jiyong Parkf2976302019-04-17 21:47:37 +09002872 var deps []dep
Colin Crossdc35e212019-06-06 16:13:11 -07002873 b.VisitDirectDepsBlueprint(func(module blueprint.Module) {
Liz Kammer356f7d42021-01-26 09:18:53 -05002874 if aModule, _ := module.(Module); aModule != nil {
2875 if aModule.base().BaseModuleName() == name {
2876 returnedTag := b.bp.OtherModuleDependencyTag(aModule)
2877 if tag == nil || returnedTag == tag {
2878 deps = append(deps, dep{aModule, returnedTag})
2879 }
2880 }
2881 } else if b.bp.OtherModuleName(module) == name {
2882 returnedTag := b.bp.OtherModuleDependencyTag(module)
Jiyong Parkf2976302019-04-17 21:47:37 +09002883 if tag == nil || returnedTag == tag {
Liz Kammer356f7d42021-01-26 09:18:53 -05002884 deps = append(deps, dep{module, returnedTag})
Jiyong Parkf2976302019-04-17 21:47:37 +09002885 }
2886 }
2887 })
Liz Kammer2b50ce62021-04-26 15:47:28 -04002888 return deps
2889}
2890
2891func (b *baseModuleContext) getDirectDepInternal(name string, tag blueprint.DependencyTag) (blueprint.Module, blueprint.DependencyTag) {
2892 deps := b.getDirectDepsInternal(name, tag)
Jiyong Parkf2976302019-04-17 21:47:37 +09002893 if len(deps) == 1 {
2894 return deps[0].mod, deps[0].tag
2895 } else if len(deps) >= 2 {
2896 panic(fmt.Errorf("Multiple dependencies having same BaseModuleName() %q found from %q",
Colin Crossdc35e212019-06-06 16:13:11 -07002897 name, b.ModuleName()))
Jiyong Parkf2976302019-04-17 21:47:37 +09002898 } else {
2899 return nil, nil
2900 }
2901}
2902
Liz Kammer2b50ce62021-04-26 15:47:28 -04002903func (b *baseModuleContext) getDirectDepFirstTag(name string) (blueprint.Module, blueprint.DependencyTag) {
2904 foundDeps := b.getDirectDepsInternal(name, nil)
2905 deps := map[blueprint.Module]bool{}
2906 for _, dep := range foundDeps {
2907 deps[dep.mod] = true
2908 }
2909 if len(deps) == 1 {
2910 return foundDeps[0].mod, foundDeps[0].tag
2911 } else if len(deps) >= 2 {
2912 // this could happen if two dependencies have the same name in different namespaces
2913 // TODO(b/186554727): this should not occur if namespaces are handled within
2914 // getDirectDepsInternal.
2915 panic(fmt.Errorf("Multiple dependencies having same BaseModuleName() %q found from %q",
2916 name, b.ModuleName()))
2917 } else {
2918 return nil, nil
2919 }
2920}
2921
Colin Crossdc35e212019-06-06 16:13:11 -07002922func (b *baseModuleContext) GetDirectDepsWithTag(tag blueprint.DependencyTag) []Module {
Colin Cross0ef08162019-05-01 15:50:51 -07002923 var deps []Module
Colin Crossdc35e212019-06-06 16:13:11 -07002924 b.VisitDirectDepsBlueprint(func(module blueprint.Module) {
Colin Cross25de6c32019-06-06 14:29:25 -07002925 if aModule, _ := module.(Module); aModule != nil {
Colin Cross1184b642019-12-30 18:43:07 -08002926 if b.bp.OtherModuleDependencyTag(aModule) == tag {
Colin Cross0ef08162019-05-01 15:50:51 -07002927 deps = append(deps, aModule)
2928 }
2929 }
2930 })
2931 return deps
2932}
2933
Colin Cross25de6c32019-06-06 14:29:25 -07002934func (m *moduleContext) GetDirectDepWithTag(name string, tag blueprint.DependencyTag) blueprint.Module {
2935 module, _ := m.getDirectDepInternal(name, tag)
2936 return module
Jiyong Parkf2976302019-04-17 21:47:37 +09002937}
2938
Liz Kammer2b50ce62021-04-26 15:47:28 -04002939// GetDirectDep returns the Module and DependencyTag for the direct dependency with the specified
2940// name, or nil if none exists. If there are multiple dependencies on the same module it returns the
2941// first DependencyTag.
Colin Crossdc35e212019-06-06 16:13:11 -07002942func (b *baseModuleContext) GetDirectDep(name string) (blueprint.Module, blueprint.DependencyTag) {
Liz Kammer2b50ce62021-04-26 15:47:28 -04002943 return b.getDirectDepFirstTag(name)
Jiyong Parkf2976302019-04-17 21:47:37 +09002944}
2945
Chris Parsons5a34ffb2021-07-21 14:34:58 -04002946func (b *baseModuleContext) ModuleFromName(name string) (blueprint.Module, bool) {
Liz Kammer3bf97bd2022-04-26 09:38:20 -04002947 if !b.isBazelConversionMode() {
Chris Parsons5a34ffb2021-07-21 14:34:58 -04002948 panic("cannot call ModuleFromName if not in bazel conversion mode")
2949 }
Chris Parsonsa66c0b52021-07-23 11:02:07 -04002950 if moduleName, _ := SrcIsModuleWithTag(name); moduleName != "" {
Chris Parsons5a34ffb2021-07-21 14:34:58 -04002951 return b.bp.ModuleFromName(moduleName)
2952 } else {
2953 return b.bp.ModuleFromName(name)
2954 }
2955}
2956
Colin Crossdc35e212019-06-06 16:13:11 -07002957func (b *baseModuleContext) VisitDirectDepsBlueprint(visit func(blueprint.Module)) {
Colin Cross1184b642019-12-30 18:43:07 -08002958 b.bp.VisitDirectDeps(visit)
Colin Cross35143d02017-11-16 00:11:20 -08002959}
2960
Colin Crossdc35e212019-06-06 16:13:11 -07002961func (b *baseModuleContext) VisitDirectDeps(visit func(Module)) {
Colin Cross1184b642019-12-30 18:43:07 -08002962 b.bp.VisitDirectDeps(func(module blueprint.Module) {
Martin Stjernholm0e4cceb2021-05-13 02:38:35 +01002963 if aModule := b.validateAndroidModule(module, b.bp.OtherModuleDependencyTag(module), b.strictVisitDeps); aModule != nil {
Colin Crossd11fcda2017-10-23 17:59:01 -07002964 visit(aModule)
2965 }
2966 })
2967}
2968
Colin Crossdc35e212019-06-06 16:13:11 -07002969func (b *baseModuleContext) VisitDirectDepsWithTag(tag blueprint.DependencyTag, visit func(Module)) {
Colin Cross1184b642019-12-30 18:43:07 -08002970 b.bp.VisitDirectDeps(func(module blueprint.Module) {
Liz Kammer55146982022-01-24 16:17:30 -05002971 if b.bp.OtherModuleDependencyTag(module) == tag {
2972 if aModule := b.validateAndroidModule(module, b.bp.OtherModuleDependencyTag(module), b.strictVisitDeps); aModule != nil {
Colin Crossee6143c2017-12-30 17:54:27 -08002973 visit(aModule)
2974 }
2975 }
2976 })
2977}
2978
Colin Crossdc35e212019-06-06 16:13:11 -07002979func (b *baseModuleContext) VisitDirectDepsIf(pred func(Module) bool, visit func(Module)) {
Colin Cross1184b642019-12-30 18:43:07 -08002980 b.bp.VisitDirectDepsIf(
Colin Crossd11fcda2017-10-23 17:59:01 -07002981 // pred
2982 func(module blueprint.Module) bool {
Martin Stjernholm0e4cceb2021-05-13 02:38:35 +01002983 if aModule := b.validateAndroidModule(module, b.bp.OtherModuleDependencyTag(module), b.strictVisitDeps); aModule != nil {
Colin Crossd11fcda2017-10-23 17:59:01 -07002984 return pred(aModule)
2985 } else {
2986 return false
2987 }
2988 },
2989 // visit
2990 func(module blueprint.Module) {
2991 visit(module.(Module))
2992 })
2993}
2994
Colin Crossdc35e212019-06-06 16:13:11 -07002995func (b *baseModuleContext) VisitDepsDepthFirst(visit func(Module)) {
Colin Cross1184b642019-12-30 18:43:07 -08002996 b.bp.VisitDepsDepthFirst(func(module blueprint.Module) {
Martin Stjernholm0e4cceb2021-05-13 02:38:35 +01002997 if aModule := b.validateAndroidModule(module, b.bp.OtherModuleDependencyTag(module), b.strictVisitDeps); aModule != nil {
Colin Crossd11fcda2017-10-23 17:59:01 -07002998 visit(aModule)
2999 }
3000 })
3001}
3002
Colin Crossdc35e212019-06-06 16:13:11 -07003003func (b *baseModuleContext) VisitDepsDepthFirstIf(pred func(Module) bool, visit func(Module)) {
Colin Cross1184b642019-12-30 18:43:07 -08003004 b.bp.VisitDepsDepthFirstIf(
Colin Crossd11fcda2017-10-23 17:59:01 -07003005 // pred
3006 func(module blueprint.Module) bool {
Martin Stjernholm0e4cceb2021-05-13 02:38:35 +01003007 if aModule := b.validateAndroidModule(module, b.bp.OtherModuleDependencyTag(module), b.strictVisitDeps); aModule != nil {
Colin Crossd11fcda2017-10-23 17:59:01 -07003008 return pred(aModule)
3009 } else {
3010 return false
3011 }
3012 },
3013 // visit
3014 func(module blueprint.Module) {
3015 visit(module.(Module))
3016 })
3017}
3018
Colin Crossdc35e212019-06-06 16:13:11 -07003019func (b *baseModuleContext) WalkDepsBlueprint(visit func(blueprint.Module, blueprint.Module) bool) {
Colin Cross1184b642019-12-30 18:43:07 -08003020 b.bp.WalkDeps(visit)
Alex Light778127a2019-02-27 14:19:50 -08003021}
3022
Colin Crossdc35e212019-06-06 16:13:11 -07003023func (b *baseModuleContext) WalkDeps(visit func(Module, Module) bool) {
3024 b.walkPath = []Module{b.Module()}
Paul Duffinc5192442020-03-31 11:31:36 +01003025 b.tagPath = []blueprint.DependencyTag{}
Colin Cross1184b642019-12-30 18:43:07 -08003026 b.bp.WalkDeps(func(child, parent blueprint.Module) bool {
Colin Crossdc35e212019-06-06 16:13:11 -07003027 childAndroidModule, _ := child.(Module)
3028 parentAndroidModule, _ := parent.(Module)
Colin Crossd11fcda2017-10-23 17:59:01 -07003029 if childAndroidModule != nil && parentAndroidModule != nil {
Colin Crossdc35e212019-06-06 16:13:11 -07003030 // record walkPath before visit
3031 for b.walkPath[len(b.walkPath)-1] != parentAndroidModule {
3032 b.walkPath = b.walkPath[0 : len(b.walkPath)-1]
Paul Duffinc5192442020-03-31 11:31:36 +01003033 b.tagPath = b.tagPath[0 : len(b.tagPath)-1]
Colin Crossdc35e212019-06-06 16:13:11 -07003034 }
3035 b.walkPath = append(b.walkPath, childAndroidModule)
Paul Duffinc5192442020-03-31 11:31:36 +01003036 b.tagPath = append(b.tagPath, b.OtherModuleDependencyTag(childAndroidModule))
Colin Crossd11fcda2017-10-23 17:59:01 -07003037 return visit(childAndroidModule, parentAndroidModule)
3038 } else {
3039 return false
3040 }
3041 })
3042}
3043
Colin Crossdc35e212019-06-06 16:13:11 -07003044func (b *baseModuleContext) GetWalkPath() []Module {
3045 return b.walkPath
3046}
3047
Paul Duffinc5192442020-03-31 11:31:36 +01003048func (b *baseModuleContext) GetTagPath() []blueprint.DependencyTag {
3049 return b.tagPath
3050}
3051
Colin Cross4dfacf92020-09-16 19:22:27 -07003052func (b *baseModuleContext) VisitAllModuleVariants(visit func(Module)) {
3053 b.bp.VisitAllModuleVariants(func(module blueprint.Module) {
3054 visit(module.(Module))
3055 })
3056}
3057
3058func (b *baseModuleContext) PrimaryModule() Module {
3059 return b.bp.PrimaryModule().(Module)
3060}
3061
3062func (b *baseModuleContext) FinalModule() Module {
3063 return b.bp.FinalModule().(Module)
3064}
3065
Bob Badour07065cd2021-02-05 19:59:11 -08003066// IsMetaDependencyTag returns true for cross-cutting metadata dependencies.
3067func IsMetaDependencyTag(tag blueprint.DependencyTag) bool {
3068 if tag == licenseKindTag {
3069 return true
3070 } else if tag == licensesTag {
3071 return true
3072 }
3073 return false
3074}
3075
Jiyong Park1c7e9622020-05-07 16:12:13 +09003076// A regexp for removing boilerplate from BaseDependencyTag from the string representation of
3077// a dependency tag.
Colin Cross6e511a92020-07-27 21:26:48 -07003078var tagCleaner = regexp.MustCompile(`\QBaseDependencyTag:{}\E(, )?`)
Jiyong Park1c7e9622020-05-07 16:12:13 +09003079
3080// PrettyPrintTag returns string representation of the tag, but prefers
3081// custom String() method if available.
3082func PrettyPrintTag(tag blueprint.DependencyTag) string {
3083 // Use tag's custom String() method if available.
3084 if stringer, ok := tag.(fmt.Stringer); ok {
3085 return stringer.String()
3086 }
3087
3088 // Otherwise, get a default string representation of the tag's struct.
Colin Cross6e511a92020-07-27 21:26:48 -07003089 tagString := fmt.Sprintf("%T: %+v", tag, tag)
Jiyong Park1c7e9622020-05-07 16:12:13 +09003090
3091 // Remove the boilerplate from BaseDependencyTag as it adds no value.
3092 tagString = tagCleaner.ReplaceAllString(tagString, "")
3093 return tagString
3094}
3095
3096func (b *baseModuleContext) GetPathString(skipFirst bool) string {
3097 sb := strings.Builder{}
3098 tagPath := b.GetTagPath()
3099 walkPath := b.GetWalkPath()
3100 if !skipFirst {
3101 sb.WriteString(walkPath[0].String())
3102 }
3103 for i, m := range walkPath[1:] {
3104 sb.WriteString("\n")
3105 sb.WriteString(fmt.Sprintf(" via tag %s\n", PrettyPrintTag(tagPath[i])))
3106 sb.WriteString(fmt.Sprintf(" -> %s", m.String()))
3107 }
3108 return sb.String()
3109}
3110
Colin Crossdc35e212019-06-06 16:13:11 -07003111func (m *moduleContext) ModuleSubDir() string {
3112 return m.bp.ModuleSubDir()
Colin Cross0875c522017-11-28 17:34:01 -08003113}
3114
Colin Cross0ea8ba82019-06-06 14:33:29 -07003115func (b *baseModuleContext) Target() Target {
Colin Cross25de6c32019-06-06 14:29:25 -07003116 return b.target
Colin Crossa1ad8d12016-06-01 17:09:44 -07003117}
3118
Colin Cross0ea8ba82019-06-06 14:33:29 -07003119func (b *baseModuleContext) TargetPrimary() bool {
Colin Cross25de6c32019-06-06 14:29:25 -07003120 return b.targetPrimary
Colin Cross8b74d172016-09-13 09:59:14 -07003121}
3122
Colin Cross0ea8ba82019-06-06 14:33:29 -07003123func (b *baseModuleContext) MultiTargets() []Target {
Colin Cross25de6c32019-06-06 14:29:25 -07003124 return b.multiTargets
Colin Crossee0bc3b2018-10-02 22:01:37 -07003125}
3126
Colin Cross0ea8ba82019-06-06 14:33:29 -07003127func (b *baseModuleContext) Arch() Arch {
Colin Cross25de6c32019-06-06 14:29:25 -07003128 return b.target.Arch
Colin Cross3f40fa42015-01-30 17:27:36 -08003129}
3130
Colin Cross0ea8ba82019-06-06 14:33:29 -07003131func (b *baseModuleContext) Os() OsType {
Colin Crossfb0c16e2019-11-20 17:12:35 -08003132 return b.os
Dan Willemsen490fd492015-11-24 17:53:15 -08003133}
3134
Colin Cross0ea8ba82019-06-06 14:33:29 -07003135func (b *baseModuleContext) Host() bool {
Jiyong Park1613e552020-09-14 19:43:17 +09003136 return b.os.Class == Host
Colin Crossf6566ed2015-03-24 11:13:38 -07003137}
3138
Colin Cross0ea8ba82019-06-06 14:33:29 -07003139func (b *baseModuleContext) Device() bool {
Colin Crossfb0c16e2019-11-20 17:12:35 -08003140 return b.os.Class == Device
Colin Crossf6566ed2015-03-24 11:13:38 -07003141}
3142
Colin Cross0ea8ba82019-06-06 14:33:29 -07003143func (b *baseModuleContext) Darwin() bool {
Colin Crossfb0c16e2019-11-20 17:12:35 -08003144 return b.os == Darwin
Colin Cross0af4b842015-04-30 16:36:18 -07003145}
3146
Colin Cross0ea8ba82019-06-06 14:33:29 -07003147func (b *baseModuleContext) Windows() bool {
Colin Crossfb0c16e2019-11-20 17:12:35 -08003148 return b.os == Windows
Colin Cross3edeee12017-04-04 12:59:48 -07003149}
3150
Colin Cross0ea8ba82019-06-06 14:33:29 -07003151func (b *baseModuleContext) Debug() bool {
Colin Cross25de6c32019-06-06 14:29:25 -07003152 return b.debug
Colin Crossf6566ed2015-03-24 11:13:38 -07003153}
3154
Colin Cross0ea8ba82019-06-06 14:33:29 -07003155func (b *baseModuleContext) PrimaryArch() bool {
Colin Cross25de6c32019-06-06 14:29:25 -07003156 if len(b.config.Targets[b.target.Os]) <= 1 {
Colin Cross67a5c132017-05-09 13:45:28 -07003157 return true
3158 }
Colin Cross25de6c32019-06-06 14:29:25 -07003159 return b.target.Arch.ArchType == b.config.Targets[b.target.Os][0].Arch.ArchType
Colin Cross1e7d3702016-08-24 15:25:47 -07003160}
3161
Jiyong Park5baac542018-08-28 09:55:37 +09003162// Makes this module a platform module, i.e. not specific to soc, device,
Justin Yund5f6c822019-06-25 16:47:17 +09003163// product, or system_ext.
Colin Cross4157e882019-06-06 16:57:04 -07003164func (m *ModuleBase) MakeAsPlatform() {
3165 m.commonProperties.Vendor = boolPtr(false)
3166 m.commonProperties.Proprietary = boolPtr(false)
3167 m.commonProperties.Soc_specific = boolPtr(false)
3168 m.commonProperties.Product_specific = boolPtr(false)
Justin Yund5f6c822019-06-25 16:47:17 +09003169 m.commonProperties.System_ext_specific = boolPtr(false)
Jiyong Park5baac542018-08-28 09:55:37 +09003170}
3171
Sundong Ahnd95aa2d2019-10-08 19:34:03 +09003172func (m *ModuleBase) MakeAsSystemExt() {
Jooyung Han91df2082019-11-20 01:49:42 +09003173 m.commonProperties.Vendor = boolPtr(false)
3174 m.commonProperties.Proprietary = boolPtr(false)
3175 m.commonProperties.Soc_specific = boolPtr(false)
3176 m.commonProperties.Product_specific = boolPtr(false)
3177 m.commonProperties.System_ext_specific = boolPtr(true)
Sundong Ahnd95aa2d2019-10-08 19:34:03 +09003178}
3179
Jooyung Han344d5432019-08-23 11:17:39 +09003180// IsNativeBridgeSupported returns true if "native_bridge_supported" is explicitly set as "true"
3181func (m *ModuleBase) IsNativeBridgeSupported() bool {
3182 return proptools.Bool(m.commonProperties.Native_bridge_supported)
3183}
3184
Colin Cross25de6c32019-06-06 14:29:25 -07003185func (m *moduleContext) InstallInData() bool {
3186 return m.module.InstallInData()
Dan Willemsen782a2d12015-12-21 14:55:28 -08003187}
3188
Jaewoong Jung0949f312019-09-11 10:25:18 -07003189func (m *moduleContext) InstallInTestcases() bool {
3190 return m.module.InstallInTestcases()
3191}
3192
Colin Cross25de6c32019-06-06 14:29:25 -07003193func (m *moduleContext) InstallInSanitizerDir() bool {
3194 return m.module.InstallInSanitizerDir()
Vishwath Mohan1dd88392017-03-29 22:00:18 -07003195}
3196
Yifan Hong1b3348d2020-01-21 15:53:22 -08003197func (m *moduleContext) InstallInRamdisk() bool {
3198 return m.module.InstallInRamdisk()
3199}
3200
Yifan Hong60e0cfb2020-10-21 15:17:56 -07003201func (m *moduleContext) InstallInVendorRamdisk() bool {
3202 return m.module.InstallInVendorRamdisk()
3203}
3204
Inseob Kim08758f02021-04-08 21:13:22 +09003205func (m *moduleContext) InstallInDebugRamdisk() bool {
3206 return m.module.InstallInDebugRamdisk()
3207}
3208
Colin Cross25de6c32019-06-06 14:29:25 -07003209func (m *moduleContext) InstallInRecovery() bool {
3210 return m.module.InstallInRecovery()
Jiyong Parkf9332f12018-02-01 00:54:12 +09003211}
3212
Colin Cross90ba5f42019-10-02 11:10:58 -07003213func (m *moduleContext) InstallInRoot() bool {
3214 return m.module.InstallInRoot()
3215}
3216
Jiyong Park87788b52020-09-01 12:37:45 +09003217func (m *moduleContext) InstallForceOS() (*OsType, *ArchType) {
Colin Cross6e359402020-02-10 15:29:54 -08003218 return m.module.InstallForceOS()
3219}
3220
Kiyoung Kimae11c232021-07-19 11:38:04 +09003221func (m *moduleContext) InstallInVendor() bool {
3222 return m.module.InstallInVendor()
3223}
3224
Colin Crossa9c8c9f2020-12-16 10:20:23 -08003225func (m *moduleContext) skipInstall() bool {
Colin Cross25de6c32019-06-06 14:29:25 -07003226 if m.module.base().commonProperties.SkipInstall {
Colin Cross893d8162017-04-26 17:34:03 -07003227 return true
3228 }
3229
Colin Crossa9c8c9f2020-12-16 10:20:23 -08003230 if m.module.base().commonProperties.HideFromMake {
3231 return true
3232 }
3233
Colin Cross3607f212018-05-07 15:28:05 -07003234 // We'll need a solution for choosing which of modules with the same name in different
3235 // namespaces to install. For now, reuse the list of namespaces exported to Make as the
3236 // list of namespaces to install in a Soong-only build.
Colin Cross25de6c32019-06-06 14:29:25 -07003237 if !m.module.base().commonProperties.NamespaceExportedToMake {
Colin Cross3607f212018-05-07 15:28:05 -07003238 return true
3239 }
3240
Colin Cross893d8162017-04-26 17:34:03 -07003241 return false
3242}
3243
Colin Cross70dda7e2019-10-01 22:05:35 -07003244func (m *moduleContext) InstallFile(installPath InstallPath, name string, srcPath Path,
3245 deps ...Path) InstallPath {
Colin Cross50ed1f92021-11-12 17:41:02 -08003246 return m.installFile(installPath, name, srcPath, deps, false, nil)
Colin Cross5c517922017-08-31 12:29:17 -07003247}
3248
Colin Cross70dda7e2019-10-01 22:05:35 -07003249func (m *moduleContext) InstallExecutable(installPath InstallPath, name string, srcPath Path,
3250 deps ...Path) InstallPath {
Colin Cross50ed1f92021-11-12 17:41:02 -08003251 return m.installFile(installPath, name, srcPath, deps, true, nil)
3252}
3253
3254func (m *moduleContext) InstallFileWithExtraFilesZip(installPath InstallPath, name string, srcPath Path,
3255 extraZip Path, deps ...Path) InstallPath {
3256 return m.installFile(installPath, name, srcPath, deps, false, &extraFilesZip{
3257 zip: extraZip,
3258 dir: installPath,
3259 })
Colin Cross5c517922017-08-31 12:29:17 -07003260}
3261
Colin Cross41589502020-12-01 14:00:21 -08003262func (m *moduleContext) PackageFile(installPath InstallPath, name string, srcPath Path) PackagingSpec {
3263 fullInstallPath := installPath.Join(m, name)
3264 return m.packageFile(fullInstallPath, srcPath, false)
3265}
3266
3267func (m *moduleContext) packageFile(fullInstallPath InstallPath, srcPath Path, executable bool) PackagingSpec {
Dan Willemsen9fe14102021-07-13 21:52:04 -07003268 licenseFiles := m.Module().EffectiveLicenseFiles()
Colin Cross41589502020-12-01 14:00:21 -08003269 spec := PackagingSpec{
Dan Willemsen9fe14102021-07-13 21:52:04 -07003270 relPathInPackage: Rel(m, fullInstallPath.PartitionDir(), fullInstallPath.String()),
3271 srcPath: srcPath,
3272 symlinkTarget: "",
3273 executable: executable,
3274 effectiveLicenseFiles: &licenseFiles,
Jooyung Han99c5fe62022-03-21 15:13:38 +09003275 partition: fullInstallPath.partition,
Colin Cross41589502020-12-01 14:00:21 -08003276 }
3277 m.packagingSpecs = append(m.packagingSpecs, spec)
3278 return spec
3279}
3280
Colin Cross50ed1f92021-11-12 17:41:02 -08003281func (m *moduleContext) installFile(installPath InstallPath, name string, srcPath Path, deps []Path,
3282 executable bool, extraZip *extraFilesZip) InstallPath {
Colin Cross35cec122015-04-02 14:37:16 -07003283
Colin Cross25de6c32019-06-06 14:29:25 -07003284 fullInstallPath := installPath.Join(m, name)
David Srbecky07656412020-06-04 01:26:16 +01003285 m.module.base().hooks.runInstallHooks(m, srcPath, fullInstallPath, false)
Colin Cross3f40fa42015-01-30 17:27:36 -08003286
Colin Crossa9c8c9f2020-12-16 10:20:23 -08003287 if !m.skipInstall() {
Colin Cross5d583952020-11-24 16:21:24 -08003288 deps = append(deps, m.module.base().installFilesDepSet.ToList().Paths()...)
Colin Cross35cec122015-04-02 14:37:16 -07003289
Colin Cross89562dc2016-10-03 17:47:19 -07003290 var implicitDeps, orderOnlyDeps Paths
3291
Colin Cross25de6c32019-06-06 14:29:25 -07003292 if m.Host() {
Colin Cross89562dc2016-10-03 17:47:19 -07003293 // Installed host modules might be used during the build, depend directly on their
3294 // dependencies so their timestamp is updated whenever their dependency is updated
3295 implicitDeps = deps
3296 } else {
3297 orderOnlyDeps = deps
3298 }
3299
Colin Crossc68db4b2021-11-11 18:59:15 -08003300 if m.Config().KatiEnabled() {
Colin Cross6301c3c2021-09-28 17:40:21 -07003301 // When creating the install rule in Soong but embedding in Make, write the rule to a
3302 // makefile instead of directly to the ninja file so that main.mk can add the
3303 // dependencies from the `required` property that are hard to resolve in Soong.
3304 m.katiInstalls = append(m.katiInstalls, katiInstall{
3305 from: srcPath,
3306 to: fullInstallPath,
3307 implicitDeps: implicitDeps,
3308 orderOnlyDeps: orderOnlyDeps,
3309 executable: executable,
Colin Cross50ed1f92021-11-12 17:41:02 -08003310 extraFiles: extraZip,
Colin Cross6301c3c2021-09-28 17:40:21 -07003311 })
3312 } else {
3313 rule := Cp
3314 if executable {
3315 rule = CpExecutable
3316 }
Jiyong Park073ea552020-11-09 14:08:34 +09003317
Colin Cross50ed1f92021-11-12 17:41:02 -08003318 extraCmds := ""
3319 if extraZip != nil {
Romain Jobredeaux1cef6292022-05-19 11:11:51 -04003320 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 -08003321 extraZip.dir.String(), extraZip.zip.String())
Romain Jobredeaux1cef6292022-05-19 11:11:51 -04003322 extraCmds += " || ( code=$$?; if [ $$code -ne 0 -a $$code -ne 1 ]; then exit $$code; fi )"
Colin Cross50ed1f92021-11-12 17:41:02 -08003323 implicitDeps = append(implicitDeps, extraZip.zip)
3324 }
3325
Colin Cross6301c3c2021-09-28 17:40:21 -07003326 m.Build(pctx, BuildParams{
3327 Rule: rule,
3328 Description: "install " + fullInstallPath.Base(),
3329 Output: fullInstallPath,
3330 Input: srcPath,
3331 Implicits: implicitDeps,
3332 OrderOnly: orderOnlyDeps,
3333 Default: !m.Config().KatiEnabled(),
Colin Cross50ed1f92021-11-12 17:41:02 -08003334 Args: map[string]string{
3335 "extraCmds": extraCmds,
3336 },
Colin Cross6301c3c2021-09-28 17:40:21 -07003337 })
3338 }
Colin Cross3f40fa42015-01-30 17:27:36 -08003339
Colin Cross25de6c32019-06-06 14:29:25 -07003340 m.installFiles = append(m.installFiles, fullInstallPath)
Dan Willemsen322acaf2016-01-12 23:07:05 -08003341 }
Jiyong Park073ea552020-11-09 14:08:34 +09003342
Colin Cross41589502020-12-01 14:00:21 -08003343 m.packageFile(fullInstallPath, srcPath, executable)
Jiyong Park073ea552020-11-09 14:08:34 +09003344
Colin Cross25de6c32019-06-06 14:29:25 -07003345 m.checkbuildFiles = append(m.checkbuildFiles, srcPath)
Colin Crossa9c8c9f2020-12-16 10:20:23 -08003346
Colin Cross35cec122015-04-02 14:37:16 -07003347 return fullInstallPath
3348}
3349
Colin Cross70dda7e2019-10-01 22:05:35 -07003350func (m *moduleContext) InstallSymlink(installPath InstallPath, name string, srcPath InstallPath) InstallPath {
Colin Cross25de6c32019-06-06 14:29:25 -07003351 fullInstallPath := installPath.Join(m, name)
David Srbecky07656412020-06-04 01:26:16 +01003352 m.module.base().hooks.runInstallHooks(m, srcPath, fullInstallPath, true)
Colin Cross3854a602016-01-11 12:49:11 -08003353
Jiyong Park073ea552020-11-09 14:08:34 +09003354 relPath, err := filepath.Rel(path.Dir(fullInstallPath.String()), srcPath.String())
3355 if err != nil {
3356 panic(fmt.Sprintf("Unable to generate symlink between %q and %q: %s", fullInstallPath.Base(), srcPath.Base(), err))
3357 }
Colin Crossa9c8c9f2020-12-16 10:20:23 -08003358 if !m.skipInstall() {
Colin Crossce75d2c2016-10-06 16:12:58 -07003359
Colin Crossc68db4b2021-11-11 18:59:15 -08003360 if m.Config().KatiEnabled() {
Colin Cross6301c3c2021-09-28 17:40:21 -07003361 // When creating the symlink rule in Soong but embedding in Make, write the rule to a
3362 // makefile instead of directly to the ninja file so that main.mk can add the
3363 // dependencies from the `required` property that are hard to resolve in Soong.
3364 m.katiSymlinks = append(m.katiSymlinks, katiInstall{
3365 from: srcPath,
3366 to: fullInstallPath,
3367 })
3368 } else {
Colin Cross64002af2021-11-09 16:37:52 -08003369 // The symlink doesn't need updating when the target is modified, but we sometimes
3370 // have a dependency on a symlink to a binary instead of to the binary directly, and
3371 // the mtime of the symlink must be updated when the binary is modified, so use a
3372 // normal dependency here instead of an order-only dependency.
Colin Cross6301c3c2021-09-28 17:40:21 -07003373 m.Build(pctx, BuildParams{
3374 Rule: Symlink,
3375 Description: "install symlink " + fullInstallPath.Base(),
3376 Output: fullInstallPath,
3377 Input: srcPath,
3378 Default: !m.Config().KatiEnabled(),
3379 Args: map[string]string{
3380 "fromPath": relPath,
3381 },
3382 })
3383 }
Colin Cross3854a602016-01-11 12:49:11 -08003384
Colin Cross25de6c32019-06-06 14:29:25 -07003385 m.installFiles = append(m.installFiles, fullInstallPath)
3386 m.checkbuildFiles = append(m.checkbuildFiles, srcPath)
Colin Cross12fc4972016-01-11 12:49:11 -08003387 }
Jiyong Park073ea552020-11-09 14:08:34 +09003388
3389 m.packagingSpecs = append(m.packagingSpecs, PackagingSpec{
3390 relPathInPackage: Rel(m, fullInstallPath.PartitionDir(), fullInstallPath.String()),
3391 srcPath: nil,
3392 symlinkTarget: relPath,
3393 executable: false,
Jooyung Han99c5fe62022-03-21 15:13:38 +09003394 partition: fullInstallPath.partition,
Jiyong Park073ea552020-11-09 14:08:34 +09003395 })
3396
Colin Cross3854a602016-01-11 12:49:11 -08003397 return fullInstallPath
3398}
3399
Jiyong Parkf1194352019-02-25 11:05:47 +09003400// installPath/name -> absPath where absPath might be a path that is available only at runtime
3401// (e.g. /apex/...)
Colin Cross70dda7e2019-10-01 22:05:35 -07003402func (m *moduleContext) InstallAbsoluteSymlink(installPath InstallPath, name string, absPath string) InstallPath {
Colin Cross25de6c32019-06-06 14:29:25 -07003403 fullInstallPath := installPath.Join(m, name)
David Srbecky07656412020-06-04 01:26:16 +01003404 m.module.base().hooks.runInstallHooks(m, nil, fullInstallPath, true)
Jiyong Parkf1194352019-02-25 11:05:47 +09003405
Colin Crossa9c8c9f2020-12-16 10:20:23 -08003406 if !m.skipInstall() {
Colin Crossc68db4b2021-11-11 18:59:15 -08003407 if m.Config().KatiEnabled() {
Colin Cross6301c3c2021-09-28 17:40:21 -07003408 // When creating the symlink rule in Soong but embedding in Make, write the rule to a
3409 // makefile instead of directly to the ninja file so that main.mk can add the
3410 // dependencies from the `required` property that are hard to resolve in Soong.
3411 m.katiSymlinks = append(m.katiSymlinks, katiInstall{
3412 absFrom: absPath,
3413 to: fullInstallPath,
3414 })
3415 } else {
3416 m.Build(pctx, BuildParams{
3417 Rule: Symlink,
3418 Description: "install symlink " + fullInstallPath.Base() + " -> " + absPath,
3419 Output: fullInstallPath,
3420 Default: !m.Config().KatiEnabled(),
3421 Args: map[string]string{
3422 "fromPath": absPath,
3423 },
3424 })
3425 }
Jiyong Parkf1194352019-02-25 11:05:47 +09003426
Colin Cross25de6c32019-06-06 14:29:25 -07003427 m.installFiles = append(m.installFiles, fullInstallPath)
Jiyong Parkf1194352019-02-25 11:05:47 +09003428 }
Jiyong Park073ea552020-11-09 14:08:34 +09003429
3430 m.packagingSpecs = append(m.packagingSpecs, PackagingSpec{
3431 relPathInPackage: Rel(m, fullInstallPath.PartitionDir(), fullInstallPath.String()),
3432 srcPath: nil,
3433 symlinkTarget: absPath,
3434 executable: false,
Jooyung Han99c5fe62022-03-21 15:13:38 +09003435 partition: fullInstallPath.partition,
Jiyong Park073ea552020-11-09 14:08:34 +09003436 })
3437
Jiyong Parkf1194352019-02-25 11:05:47 +09003438 return fullInstallPath
3439}
3440
Colin Cross25de6c32019-06-06 14:29:25 -07003441func (m *moduleContext) CheckbuildFile(srcPath Path) {
3442 m.checkbuildFiles = append(m.checkbuildFiles, srcPath)
Colin Cross3f40fa42015-01-30 17:27:36 -08003443}
3444
Colin Crossc20dc852020-11-10 12:27:45 -08003445func (m *moduleContext) blueprintModuleContext() blueprint.ModuleContext {
3446 return m.bp
3447}
3448
Colin Crosse7fe0962022-03-15 17:49:24 -07003449func (m *moduleContext) LicenseMetadataFile() Path {
3450 return m.module.base().licenseMetadataFile
3451}
3452
Paul Duffine6ba0722021-07-12 20:12:12 +01003453// SrcIsModule decodes module references in the format ":unqualified-name" or "//namespace:name"
3454// into the module name, or empty string if the input was not a module reference.
Colin Cross41955e82019-05-29 14:40:35 -07003455func SrcIsModule(s string) (module string) {
Paul Duffine6ba0722021-07-12 20:12:12 +01003456 if len(s) > 1 {
3457 if s[0] == ':' {
3458 module = s[1:]
3459 if !isUnqualifiedModuleName(module) {
3460 // The module name should be unqualified but is not so do not treat it as a module.
3461 module = ""
3462 }
3463 } else if s[0] == '/' && s[1] == '/' {
3464 module = s
3465 }
Colin Cross068e0fe2016-12-13 15:23:47 -08003466 }
Paul Duffine6ba0722021-07-12 20:12:12 +01003467 return module
Colin Cross068e0fe2016-12-13 15:23:47 -08003468}
3469
Yi-Yo Chiangba9ea322021-07-15 17:18:21 +08003470// SrcIsModuleWithTag decodes module references in the format ":unqualified-name{.tag}" or
3471// "//namespace:name{.tag}" into the module name and tag, ":unqualified-name" or "//namespace:name"
3472// into the module name and an empty string for the tag, or empty strings if the input was not a
3473// module reference.
Colin Cross41955e82019-05-29 14:40:35 -07003474func SrcIsModuleWithTag(s string) (module, tag string) {
Paul Duffine6ba0722021-07-12 20:12:12 +01003475 if len(s) > 1 {
3476 if s[0] == ':' {
3477 module = s[1:]
3478 } else if s[0] == '/' && s[1] == '/' {
3479 module = s
3480 }
3481
3482 if module != "" {
3483 if tagStart := strings.IndexByte(module, '{'); tagStart > 0 {
3484 if module[len(module)-1] == '}' {
3485 tag = module[tagStart+1 : len(module)-1]
3486 module = module[:tagStart]
3487 }
3488 }
3489
3490 if s[0] == ':' && !isUnqualifiedModuleName(module) {
3491 // The module name should be unqualified but is not so do not treat it as a module.
3492 module = ""
3493 tag = ""
Colin Cross41955e82019-05-29 14:40:35 -07003494 }
3495 }
Colin Cross41955e82019-05-29 14:40:35 -07003496 }
Paul Duffine6ba0722021-07-12 20:12:12 +01003497
3498 return module, tag
3499}
3500
3501// isUnqualifiedModuleName makes sure that the supplied module is an unqualified module name, i.e.
3502// does not contain any /.
3503func isUnqualifiedModuleName(module string) bool {
3504 return strings.IndexByte(module, '/') == -1
Colin Cross068e0fe2016-12-13 15:23:47 -08003505}
3506
Paul Duffin40131a32021-07-09 17:10:35 +01003507// sourceOrOutputDependencyTag is the dependency tag added automatically by pathDepsMutator for any
3508// module reference in a property annotated with `android:"path"` or passed to ExtractSourceDeps
3509// or ExtractSourcesDeps.
3510//
3511// If uniquely identifies the dependency that was added as it contains both the module name used to
3512// add the dependency as well as the tag. That makes it very simple to find the matching dependency
3513// in GetModuleFromPathDep as all it needs to do is find the dependency whose tag matches the tag
3514// used to add it. It does not need to check that the module name as returned by one of
3515// Module.Name(), BaseModuleContext.OtherModuleName() or ModuleBase.BaseModuleName() matches the
3516// name supplied in the tag. That means it does not need to handle differences in module names
3517// caused by prebuilt_ prefix, or fully qualified module names.
Colin Cross41955e82019-05-29 14:40:35 -07003518type sourceOrOutputDependencyTag struct {
3519 blueprint.BaseDependencyTag
Paul Duffin40131a32021-07-09 17:10:35 +01003520
3521 // The name of the module.
3522 moduleName string
3523
3524 // The tag that will be passed to the module's OutputFileProducer.OutputFiles(tag) method.
Colin Cross41955e82019-05-29 14:40:35 -07003525 tag string
3526}
3527
Paul Duffin40131a32021-07-09 17:10:35 +01003528func sourceOrOutputDepTag(moduleName, tag string) blueprint.DependencyTag {
3529 return sourceOrOutputDependencyTag{moduleName: moduleName, tag: tag}
Colin Cross41955e82019-05-29 14:40:35 -07003530}
3531
Paul Duffind5cf92e2021-07-09 17:38:55 +01003532// IsSourceDepTagWithOutputTag returns true if the supplied blueprint.DependencyTag is one that was
3533// used to add dependencies by either ExtractSourceDeps, ExtractSourcesDeps or automatically for
3534// properties tagged with `android:"path"` AND it was added using a module reference of
3535// :moduleName{outputTag}.
3536func IsSourceDepTagWithOutputTag(depTag blueprint.DependencyTag, outputTag string) bool {
3537 t, ok := depTag.(sourceOrOutputDependencyTag)
3538 return ok && t.tag == outputTag
3539}
3540
Colin Cross366938f2017-12-11 16:29:02 -08003541// Adds necessary dependencies to satisfy filegroup or generated sources modules listed in srcFiles
3542// using ":module" syntax, if any.
Colin Cross27b922f2019-03-04 22:35:41 -08003543//
3544// Deprecated: tag the property with `android:"path"` instead.
Colin Cross068e0fe2016-12-13 15:23:47 -08003545func ExtractSourcesDeps(ctx BottomUpMutatorContext, srcFiles []string) {
Nan Zhang2439eb72017-04-10 11:27:50 -07003546 set := make(map[string]bool)
3547
Colin Cross068e0fe2016-12-13 15:23:47 -08003548 for _, s := range srcFiles {
Colin Cross41955e82019-05-29 14:40:35 -07003549 if m, t := SrcIsModuleWithTag(s); m != "" {
3550 if _, found := set[s]; found {
3551 ctx.ModuleErrorf("found source dependency duplicate: %q!", s)
Nan Zhang2439eb72017-04-10 11:27:50 -07003552 } else {
Colin Cross41955e82019-05-29 14:40:35 -07003553 set[s] = true
Paul Duffin40131a32021-07-09 17:10:35 +01003554 ctx.AddDependency(ctx.Module(), sourceOrOutputDepTag(m, t), m)
Nan Zhang2439eb72017-04-10 11:27:50 -07003555 }
Colin Cross068e0fe2016-12-13 15:23:47 -08003556 }
3557 }
Colin Cross068e0fe2016-12-13 15:23:47 -08003558}
3559
Colin Cross366938f2017-12-11 16:29:02 -08003560// Adds necessary dependencies to satisfy filegroup or generated sources modules specified in s
3561// using ":module" syntax, if any.
Colin Cross27b922f2019-03-04 22:35:41 -08003562//
3563// Deprecated: tag the property with `android:"path"` instead.
Colin Cross366938f2017-12-11 16:29:02 -08003564func ExtractSourceDeps(ctx BottomUpMutatorContext, s *string) {
3565 if s != nil {
Colin Cross41955e82019-05-29 14:40:35 -07003566 if m, t := SrcIsModuleWithTag(*s); m != "" {
Paul Duffin40131a32021-07-09 17:10:35 +01003567 ctx.AddDependency(ctx.Module(), sourceOrOutputDepTag(m, t), m)
Colin Cross366938f2017-12-11 16:29:02 -08003568 }
3569 }
3570}
3571
Colin Cross41955e82019-05-29 14:40:35 -07003572// A module that implements SourceFileProducer can be referenced from any property that is tagged with `android:"path"`
3573// 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 -08003574type SourceFileProducer interface {
3575 Srcs() Paths
3576}
3577
Colin Cross41955e82019-05-29 14:40:35 -07003578// A module that implements OutputFileProducer can be referenced from any property that is tagged with `android:"path"`
Roland Levillain97c1f342019-11-22 14:20:54 +00003579// 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 -07003580// listed in the property.
3581type OutputFileProducer interface {
3582 OutputFiles(tag string) (Paths, error)
3583}
3584
Colin Cross5e708052019-08-06 13:59:50 -07003585// OutputFilesForModule returns the paths from an OutputFileProducer with the given tag. On error, including if the
3586// module produced zero paths, it reports errors to the ctx and returns nil.
3587func OutputFilesForModule(ctx PathContext, module blueprint.Module, tag string) Paths {
3588 paths, err := outputFilesForModule(ctx, module, tag)
3589 if err != nil {
3590 reportPathError(ctx, err)
3591 return nil
3592 }
3593 return paths
3594}
3595
3596// OutputFileForModule returns the path from an OutputFileProducer with the given tag. On error, including if the
3597// module produced zero or multiple paths, it reports errors to the ctx and returns nil.
3598func OutputFileForModule(ctx PathContext, module blueprint.Module, tag string) Path {
3599 paths, err := outputFilesForModule(ctx, module, tag)
3600 if err != nil {
3601 reportPathError(ctx, err)
3602 return nil
3603 }
Colin Cross14ec66c2022-10-03 21:02:27 -07003604 if len(paths) == 0 {
3605 type addMissingDependenciesIntf interface {
3606 AddMissingDependencies([]string)
3607 OtherModuleName(blueprint.Module) string
3608 }
3609 if mctx, ok := ctx.(addMissingDependenciesIntf); ok && ctx.Config().AllowMissingDependencies() {
3610 mctx.AddMissingDependencies([]string{mctx.OtherModuleName(module)})
3611 } else {
3612 ReportPathErrorf(ctx, "failed to get output files from module %q", pathContextName(ctx, module))
3613 }
3614 // Return a fake output file to avoid nil dereferences of Path objects later.
3615 // This should never get used for an actual build as the error or missing
3616 // dependency has already been reported.
3617 p, err := pathForSource(ctx, filepath.Join("missing_output_file", pathContextName(ctx, module)))
3618 if err != nil {
3619 reportPathError(ctx, err)
3620 return nil
3621 }
3622 return p
3623 }
Colin Cross5e708052019-08-06 13:59:50 -07003624 if len(paths) > 1 {
Ulya Trafimovich5ab276a2020-08-25 12:45:15 +01003625 ReportPathErrorf(ctx, "got multiple output files from module %q, expected exactly one",
Colin Cross5e708052019-08-06 13:59:50 -07003626 pathContextName(ctx, module))
Colin Cross5e708052019-08-06 13:59:50 -07003627 }
3628 return paths[0]
3629}
3630
3631func outputFilesForModule(ctx PathContext, module blueprint.Module, tag string) (Paths, error) {
3632 if outputFileProducer, ok := module.(OutputFileProducer); ok {
3633 paths, err := outputFileProducer.OutputFiles(tag)
3634 if err != nil {
3635 return nil, fmt.Errorf("failed to get output file from module %q: %s",
3636 pathContextName(ctx, module), err.Error())
3637 }
Colin Cross5e708052019-08-06 13:59:50 -07003638 return paths, nil
Colin Cross74b1e2b2020-11-22 20:23:02 -08003639 } else if sourceFileProducer, ok := module.(SourceFileProducer); ok {
3640 if tag != "" {
3641 return nil, fmt.Errorf("module %q is a SourceFileProducer, not an OutputFileProducer, and so does not support tag %q", pathContextName(ctx, module), tag)
3642 }
3643 paths := sourceFileProducer.Srcs()
Colin Cross74b1e2b2020-11-22 20:23:02 -08003644 return paths, nil
Colin Cross5e708052019-08-06 13:59:50 -07003645 } else {
3646 return nil, fmt.Errorf("module %q is not an OutputFileProducer", pathContextName(ctx, module))
3647 }
3648}
3649
Colin Cross41589502020-12-01 14:00:21 -08003650// Modules can implement HostToolProvider and return a valid OptionalPath from HostToolPath() to
3651// specify that they can be used as a tool by a genrule module.
Colin Crossfe17f6f2019-03-28 19:30:56 -07003652type HostToolProvider interface {
Colin Crossba9e4032020-11-24 16:32:22 -08003653 Module
Colin Cross41589502020-12-01 14:00:21 -08003654 // HostToolPath returns the path to the host tool for the module if it is one, or an invalid
3655 // OptionalPath.
Colin Crossfe17f6f2019-03-28 19:30:56 -07003656 HostToolPath() OptionalPath
3657}
3658
Colin Cross27b922f2019-03-04 22:35:41 -08003659// Returns a list of paths expanded from globs and modules referenced using ":module" syntax. The property must
3660// be tagged with `android:"path" to support automatic source module dependency resolution.
Colin Cross8a497952019-03-05 22:25:09 -08003661//
3662// Deprecated: use PathsForModuleSrc or PathsForModuleSrcExcludes instead.
Colin Cross25de6c32019-06-06 14:29:25 -07003663func (m *moduleContext) ExpandSources(srcFiles, excludes []string) Paths {
3664 return PathsForModuleSrcExcludes(m, srcFiles, excludes)
Colin Cross8f101b42015-06-17 15:09:06 -07003665}
3666
Colin Cross2fafa3e2019-03-05 12:39:51 -08003667// Returns a single path expanded from globs and modules referenced using ":module" syntax. The property must
3668// be tagged with `android:"path" to support automatic source module dependency resolution.
Colin Cross8a497952019-03-05 22:25:09 -08003669//
3670// Deprecated: use PathForModuleSrc instead.
Sasha Smundake198eaf2022-08-04 13:07:02 -07003671func (m *moduleContext) ExpandSource(srcFile, _ string) Path {
Colin Cross25de6c32019-06-06 14:29:25 -07003672 return PathForModuleSrc(m, srcFile)
Colin Cross2fafa3e2019-03-05 12:39:51 -08003673}
3674
3675// Returns an optional single path expanded from globs and modules referenced using ":module" syntax if
3676// the srcFile is non-nil. The property must be tagged with `android:"path" to support automatic source module
3677// dependency resolution.
Sasha Smundake198eaf2022-08-04 13:07:02 -07003678func (m *moduleContext) ExpandOptionalSource(srcFile *string, _ string) OptionalPath {
Colin Cross2fafa3e2019-03-05 12:39:51 -08003679 if srcFile != nil {
Colin Cross25de6c32019-06-06 14:29:25 -07003680 return OptionalPathForPath(PathForModuleSrc(m, *srcFile))
Colin Cross2fafa3e2019-03-05 12:39:51 -08003681 }
3682 return OptionalPath{}
3683}
3684
Colin Cross25de6c32019-06-06 14:29:25 -07003685func (m *moduleContext) RequiredModuleNames() []string {
Jiyong Park6a8cf5f2019-12-30 16:31:09 +09003686 return m.module.RequiredModuleNames()
Nan Zhang6d34b302017-02-04 17:47:46 -08003687}
3688
Colin Cross25de6c32019-06-06 14:29:25 -07003689func (m *moduleContext) HostRequiredModuleNames() []string {
Jiyong Park6a8cf5f2019-12-30 16:31:09 +09003690 return m.module.HostRequiredModuleNames()
Sasha Smundakb6d23052019-04-01 18:37:36 -07003691}
3692
Colin Cross25de6c32019-06-06 14:29:25 -07003693func (m *moduleContext) TargetRequiredModuleNames() []string {
Jiyong Park6a8cf5f2019-12-30 16:31:09 +09003694 return m.module.TargetRequiredModuleNames()
Sasha Smundakb6d23052019-04-01 18:37:36 -07003695}
3696
Colin Cross463a90e2015-06-17 14:20:06 -07003697func init() {
Colin Cross798bfce2016-10-12 14:28:16 -07003698 RegisterSingletonType("buildtarget", BuildTargetSingleton)
Colin Cross463a90e2015-06-17 14:20:06 -07003699}
3700
Colin Cross0875c522017-11-28 17:34:01 -08003701func BuildTargetSingleton() Singleton {
Colin Cross1f8c52b2015-06-16 16:38:17 -07003702 return &buildTargetSingleton{}
3703}
3704
Colin Cross87d8b562017-04-25 10:01:55 -07003705func parentDir(dir string) string {
3706 dir, _ = filepath.Split(dir)
3707 return filepath.Clean(dir)
3708}
3709
Colin Cross1f8c52b2015-06-16 16:38:17 -07003710type buildTargetSingleton struct{}
3711
Chih-Hung Hsieh80783772021-10-11 16:46:56 -07003712func AddAncestors(ctx SingletonContext, dirMap map[string]Paths, mmName func(string) string) ([]string, []string) {
Chih-Hung Hsiehd0f82fe2021-09-05 20:15:38 -07003713 // Ensure ancestor directories are in dirMap
3714 // Make directories build their direct subdirectories
Chih-Hung Hsieh80783772021-10-11 16:46:56 -07003715 // Returns a slice of all directories and a slice of top-level directories.
Cole Faust18994c72023-02-28 16:02:16 -08003716 dirs := SortedKeys(dirMap)
Chih-Hung Hsiehd0f82fe2021-09-05 20:15:38 -07003717 for _, dir := range dirs {
3718 dir := parentDir(dir)
3719 for dir != "." && dir != "/" {
3720 if _, exists := dirMap[dir]; exists {
3721 break
3722 }
3723 dirMap[dir] = nil
3724 dir = parentDir(dir)
3725 }
3726 }
Cole Faust18994c72023-02-28 16:02:16 -08003727 dirs = SortedKeys(dirMap)
Chih-Hung Hsieh80783772021-10-11 16:46:56 -07003728 var topDirs []string
Chih-Hung Hsiehd0f82fe2021-09-05 20:15:38 -07003729 for _, dir := range dirs {
3730 p := parentDir(dir)
3731 if p != "." && p != "/" {
3732 dirMap[p] = append(dirMap[p], PathForPhony(ctx, mmName(dir)))
Chih-Hung Hsieh80783772021-10-11 16:46:56 -07003733 } else if dir != "." && dir != "/" && dir != "" {
3734 topDirs = append(topDirs, dir)
Chih-Hung Hsiehd0f82fe2021-09-05 20:15:38 -07003735 }
3736 }
Cole Faust18994c72023-02-28 16:02:16 -08003737 return SortedKeys(dirMap), topDirs
Chih-Hung Hsiehd0f82fe2021-09-05 20:15:38 -07003738}
3739
Colin Cross0875c522017-11-28 17:34:01 -08003740func (c *buildTargetSingleton) GenerateBuildActions(ctx SingletonContext) {
3741 var checkbuildDeps Paths
Colin Cross1f8c52b2015-06-16 16:38:17 -07003742
Colin Crossc3d87d32020-06-04 13:25:17 -07003743 mmTarget := func(dir string) string {
3744 return "MODULES-IN-" + strings.Replace(filepath.Clean(dir), "/", "-", -1)
Colin Cross87d8b562017-04-25 10:01:55 -07003745 }
3746
Colin Cross0875c522017-11-28 17:34:01 -08003747 modulesInDir := make(map[string]Paths)
Colin Cross1f8c52b2015-06-16 16:38:17 -07003748
Colin Cross0875c522017-11-28 17:34:01 -08003749 ctx.VisitAllModules(func(module Module) {
3750 blueprintDir := module.base().blueprintDir
3751 installTarget := module.base().installTarget
3752 checkbuildTarget := module.base().checkbuildTarget
Colin Cross1f8c52b2015-06-16 16:38:17 -07003753
Colin Cross0875c522017-11-28 17:34:01 -08003754 if checkbuildTarget != nil {
3755 checkbuildDeps = append(checkbuildDeps, checkbuildTarget)
3756 modulesInDir[blueprintDir] = append(modulesInDir[blueprintDir], checkbuildTarget)
3757 }
Colin Cross1f8c52b2015-06-16 16:38:17 -07003758
Colin Cross0875c522017-11-28 17:34:01 -08003759 if installTarget != nil {
3760 modulesInDir[blueprintDir] = append(modulesInDir[blueprintDir], installTarget)
Colin Cross1f8c52b2015-06-16 16:38:17 -07003761 }
3762 })
3763
Dan Willemsen5ba07e82015-12-11 13:51:06 -08003764 suffix := ""
Jingwen Chencda22c92020-11-23 00:22:30 -05003765 if ctx.Config().KatiEnabled() {
Dan Willemsen5ba07e82015-12-11 13:51:06 -08003766 suffix = "-soong"
3767 }
3768
Colin Cross1f8c52b2015-06-16 16:38:17 -07003769 // Create a top-level checkbuild target that depends on all modules
Colin Crossc3d87d32020-06-04 13:25:17 -07003770 ctx.Phony("checkbuild"+suffix, checkbuildDeps...)
Colin Cross1f8c52b2015-06-16 16:38:17 -07003771
Dan Willemsend2e95fb2017-09-20 14:30:50 -07003772 // Make will generate the MODULES-IN-* targets
Jingwen Chencda22c92020-11-23 00:22:30 -05003773 if ctx.Config().KatiEnabled() {
Dan Willemsend2e95fb2017-09-20 14:30:50 -07003774 return
3775 }
3776
Chih-Hung Hsieh80783772021-10-11 16:46:56 -07003777 dirs, _ := AddAncestors(ctx, modulesInDir, mmTarget)
Colin Cross87d8b562017-04-25 10:01:55 -07003778
Dan Willemsend2e95fb2017-09-20 14:30:50 -07003779 // Create a MODULES-IN-<directory> target that depends on all modules in a directory, and
3780 // depends on the MODULES-IN-* targets of all of its subdirectories that contain Android.bp
3781 // files.
Colin Cross1f8c52b2015-06-16 16:38:17 -07003782 for _, dir := range dirs {
Colin Crossc3d87d32020-06-04 13:25:17 -07003783 ctx.Phony(mmTarget(dir), modulesInDir[dir]...)
Colin Cross1f8c52b2015-06-16 16:38:17 -07003784 }
Dan Willemsen61d88b82017-09-20 17:29:08 -07003785
3786 // Create (host|host-cross|target)-<OS> phony rules to build a reduced checkbuild.
Jiyong Park1613e552020-09-14 19:43:17 +09003787 type osAndCross struct {
3788 os OsType
3789 hostCross bool
3790 }
3791 osDeps := map[osAndCross]Paths{}
Colin Cross0875c522017-11-28 17:34:01 -08003792 ctx.VisitAllModules(func(module Module) {
3793 if module.Enabled() {
Jiyong Park1613e552020-09-14 19:43:17 +09003794 key := osAndCross{os: module.Target().Os, hostCross: module.Target().HostCross}
3795 osDeps[key] = append(osDeps[key], module.base().checkbuildFiles...)
Dan Willemsen61d88b82017-09-20 17:29:08 -07003796 }
3797 })
3798
Colin Cross0875c522017-11-28 17:34:01 -08003799 osClass := make(map[string]Paths)
Jiyong Park1613e552020-09-14 19:43:17 +09003800 for key, deps := range osDeps {
Dan Willemsen61d88b82017-09-20 17:29:08 -07003801 var className string
3802
Jiyong Park1613e552020-09-14 19:43:17 +09003803 switch key.os.Class {
Dan Willemsen61d88b82017-09-20 17:29:08 -07003804 case Host:
Jiyong Park1613e552020-09-14 19:43:17 +09003805 if key.hostCross {
3806 className = "host-cross"
3807 } else {
3808 className = "host"
3809 }
Dan Willemsen61d88b82017-09-20 17:29:08 -07003810 case Device:
3811 className = "target"
3812 default:
3813 continue
3814 }
3815
Jiyong Park1613e552020-09-14 19:43:17 +09003816 name := className + "-" + key.os.Name
Colin Crossc3d87d32020-06-04 13:25:17 -07003817 osClass[className] = append(osClass[className], PathForPhony(ctx, name))
Dan Willemsen61d88b82017-09-20 17:29:08 -07003818
Colin Crossc3d87d32020-06-04 13:25:17 -07003819 ctx.Phony(name, deps...)
Dan Willemsen61d88b82017-09-20 17:29:08 -07003820 }
3821
3822 // Wrap those into host|host-cross|target phony rules
Cole Faust18994c72023-02-28 16:02:16 -08003823 for _, class := range SortedKeys(osClass) {
Colin Crossc3d87d32020-06-04 13:25:17 -07003824 ctx.Phony(class, osClass[class]...)
Dan Willemsen61d88b82017-09-20 17:29:08 -07003825 }
Colin Cross1f8c52b2015-06-16 16:38:17 -07003826}
Colin Crossd779da42015-12-17 18:00:23 -08003827
Brandon Lee5d45c6f2018-08-15 15:35:38 -07003828// Collect information for opening IDE project files in java/jdeps.go.
3829type IDEInfo interface {
3830 IDEInfo(ideInfo *IdeInfo)
3831 BaseModuleName() string
3832}
3833
3834// Extract the base module name from the Import name.
3835// Often the Import name has a prefix "prebuilt_".
3836// Remove the prefix explicitly if needed
3837// until we find a better solution to get the Import name.
3838type IDECustomizedModuleName interface {
3839 IDECustomizedModuleName() string
3840}
3841
3842type IdeInfo struct {
3843 Deps []string `json:"dependencies,omitempty"`
3844 Srcs []string `json:"srcs,omitempty"`
3845 Aidl_include_dirs []string `json:"aidl_include_dirs,omitempty"`
3846 Jarjar_rules []string `json:"jarjar_rules,omitempty"`
3847 Jars []string `json:"jars,omitempty"`
3848 Classes []string `json:"class,omitempty"`
3849 Installed_paths []string `json:"installed,omitempty"`
patricktu18c82ff2019-05-10 15:48:50 +08003850 SrcJars []string `json:"srcjars,omitempty"`
bralee1fbf4402020-05-21 10:11:59 +08003851 Paths []string `json:"path,omitempty"`
Yikef6282022022-04-13 20:41:01 +08003852 Static_libs []string `json:"static_libs,omitempty"`
3853 Libs []string `json:"libs,omitempty"`
Brandon Lee5d45c6f2018-08-15 15:35:38 -07003854}
Paul Duffinf88d8e02020-05-07 20:21:34 +01003855
3856func CheckBlueprintSyntax(ctx BaseModuleContext, filename string, contents string) []error {
3857 bpctx := ctx.blueprintBaseModuleContext()
3858 return blueprint.CheckBlueprintSyntax(bpctx.ModuleFactories(), filename, contents)
3859}
Colin Cross5d583952020-11-24 16:21:24 -08003860
3861// installPathsDepSet is a thin type-safe wrapper around the generic depSet. It always uses
3862// topological order.
3863type installPathsDepSet struct {
3864 depSet
3865}
3866
3867// newInstallPathsDepSet returns an immutable packagingSpecsDepSet with the given direct and
3868// transitive contents.
3869func newInstallPathsDepSet(direct InstallPaths, transitive []*installPathsDepSet) *installPathsDepSet {
3870 return &installPathsDepSet{*newDepSet(TOPOLOGICAL, direct, transitive)}
3871}
3872
3873// ToList returns the installPathsDepSet flattened to a list in topological order.
3874func (d *installPathsDepSet) ToList() InstallPaths {
3875 if d == nil {
3876 return nil
3877 }
3878 return d.depSet.ToList().(InstallPaths)
3879}