blob: e1b98f65718e9f6ef2124e04e3314bd7e4b6eabf [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"
Colin Cross988414c2020-01-11 01:11:46 +000019 "os"
Alex Lightfb4353d2019-01-17 13:57:45 -080020 "path"
Colin Cross3f40fa42015-01-30 17:27:36 -080021 "path/filepath"
Jiyong Park1c7e9622020-05-07 16:12:13 +090022 "regexp"
Colin Cross6ff51382015-12-17 16:39:19 -080023 "strings"
Colin Crossaabf6792017-11-29 00:27:14 -080024 "text/scanner"
Colin Crossf6566ed2015-03-24 11:13:38 -070025
26 "github.com/google/blueprint"
Colin Crossfe4bc362018-09-12 10:02:13 -070027 "github.com/google/blueprint/proptools"
Colin Cross3f40fa42015-01-30 17:27:36 -080028)
29
30var (
31 DeviceSharedLibrary = "shared_library"
32 DeviceStaticLibrary = "static_library"
33 DeviceExecutable = "executable"
34 HostSharedLibrary = "host_shared_library"
35 HostStaticLibrary = "host_static_library"
36 HostExecutable = "host_executable"
37)
38
Colin Crossae887032017-10-23 17:16:14 -070039type BuildParams struct {
Dan Willemsen9f3c5742016-11-03 14:28:31 -070040 Rule blueprint.Rule
Colin Cross33bfb0a2016-11-21 17:23:08 -080041 Deps blueprint.Deps
42 Depfile WritablePath
Colin Cross67a5c132017-05-09 13:45:28 -070043 Description string
Dan Willemsen9f3c5742016-11-03 14:28:31 -070044 Output WritablePath
45 Outputs WritablePaths
46 ImplicitOutput WritablePath
47 ImplicitOutputs WritablePaths
48 Input Path
49 Inputs Paths
50 Implicit Path
51 Implicits Paths
52 OrderOnly Paths
Colin Cross824f1162020-07-16 13:07:51 -070053 Validation Path
54 Validations Paths
Dan Willemsen9f3c5742016-11-03 14:28:31 -070055 Default bool
56 Args map[string]string
Dan Willemsen34cc69e2015-09-23 15:26:20 -070057}
58
Colin Crossae887032017-10-23 17:16:14 -070059type ModuleBuildParams BuildParams
60
Colin Cross1184b642019-12-30 18:43:07 -080061// EarlyModuleContext provides methods that can be called early, as soon as the properties have
62// been parsed into the module and before any mutators have run.
63type EarlyModuleContext interface {
Colin Cross9f35c3d2020-09-16 19:04:41 -070064 // Module returns the current module as a Module. It should rarely be necessary, as the module already has a
65 // reference to itself.
Colin Cross1184b642019-12-30 18:43:07 -080066 Module() Module
Colin Cross9f35c3d2020-09-16 19:04:41 -070067
68 // ModuleName returns the name of the module. This is generally the value that was returned by Module.Name() when
69 // the module was created, but may have been modified by calls to BaseMutatorContext.Rename.
Colin Cross1184b642019-12-30 18:43:07 -080070 ModuleName() string
Colin Cross9f35c3d2020-09-16 19:04:41 -070071
72 // ModuleDir returns the path to the directory that contains the definition of the module.
Colin Cross1184b642019-12-30 18:43:07 -080073 ModuleDir() string
Colin Cross9f35c3d2020-09-16 19:04:41 -070074
75 // ModuleType returns the name of the module type that was used to create the module, as specified in
76 // RegisterModuleType.
Colin Cross1184b642019-12-30 18:43:07 -080077 ModuleType() string
Colin Cross9f35c3d2020-09-16 19:04:41 -070078
79 // BlueprintFile returns the name of the blueprint file that contains the definition of this
80 // module.
Colin Cross9d34f352019-11-22 16:03:51 -080081 BlueprintsFile() string
Colin Cross1184b642019-12-30 18:43:07 -080082
Colin Cross9f35c3d2020-09-16 19:04:41 -070083 // ContainsProperty returns true if the specified property name was set in the module definition.
Colin Cross1184b642019-12-30 18:43:07 -080084 ContainsProperty(name string) bool
Colin Cross9f35c3d2020-09-16 19:04:41 -070085
86 // Errorf reports an error at the specified position of the module definition file.
Colin Cross1184b642019-12-30 18:43:07 -080087 Errorf(pos scanner.Position, fmt string, args ...interface{})
Colin Cross9f35c3d2020-09-16 19:04:41 -070088
89 // ModuleErrorf reports an error at the line number of the module type in the module definition.
Colin Cross1184b642019-12-30 18:43:07 -080090 ModuleErrorf(fmt string, args ...interface{})
Colin Cross9f35c3d2020-09-16 19:04:41 -070091
92 // PropertyErrorf reports an error at the line number of a property in the module definition.
Colin Cross1184b642019-12-30 18:43:07 -080093 PropertyErrorf(property, fmt string, args ...interface{})
Colin Cross9f35c3d2020-09-16 19:04:41 -070094
95 // Failed returns true if any errors have been reported. In most cases the module can continue with generating
96 // build rules after an error, allowing it to report additional errors in a single run, but in cases where the error
97 // has prevented the module from creating necessary data it can return early when Failed returns true.
Colin Cross1184b642019-12-30 18:43:07 -080098 Failed() bool
99
Colin Cross9f35c3d2020-09-16 19:04:41 -0700100 // AddNinjaFileDeps adds dependencies on the specified files to the rule that creates the ninja manifest. The
101 // primary builder will be rerun whenever the specified files are modified.
Colin Cross1184b642019-12-30 18:43:07 -0800102 AddNinjaFileDeps(deps ...string)
103
104 DeviceSpecific() bool
105 SocSpecific() bool
106 ProductSpecific() bool
107 SystemExtSpecific() bool
108 Platform() bool
109
110 Config() Config
111 DeviceConfig() DeviceConfig
112
113 // Deprecated: use Config()
114 AConfig() Config
115
116 // GlobWithDeps returns a list of files that match the specified pattern but do not match any
117 // of the patterns in excludes. It also adds efficient dependencies to rerun the primary
118 // builder whenever a file matching the pattern as added or removed, without rerunning if a
119 // file that does not match the pattern is added to a searched directory.
120 GlobWithDeps(pattern string, excludes []string) ([]string, error)
121
122 Glob(globPattern string, excludes []string) Paths
123 GlobFiles(globPattern string, excludes []string) Paths
Colin Cross988414c2020-01-11 01:11:46 +0000124 IsSymlink(path Path) bool
125 Readlink(path Path) string
Colin Cross133ebef2020-08-14 17:38:45 -0700126
Colin Cross9f35c3d2020-09-16 19:04:41 -0700127 // Namespace returns the Namespace object provided by the NameInterface set by Context.SetNameInterface, or the
128 // default SimpleNameInterface if Context.SetNameInterface was not called.
Colin Cross133ebef2020-08-14 17:38:45 -0700129 Namespace() *Namespace
Colin Cross1184b642019-12-30 18:43:07 -0800130}
131
Colin Cross0ea8ba82019-06-06 14:33:29 -0700132// BaseModuleContext is the same as blueprint.BaseModuleContext except that Config() returns
Colin Crossdc35e212019-06-06 16:13:11 -0700133// a Config instead of an interface{}, and some methods have been wrapped to use an android.Module
134// instead of a blueprint.Module, plus some extra methods that return Android-specific information
Colin Cross0ea8ba82019-06-06 14:33:29 -0700135// about the current module.
136type BaseModuleContext interface {
Colin Cross1184b642019-12-30 18:43:07 -0800137 EarlyModuleContext
Colin Cross0ea8ba82019-06-06 14:33:29 -0700138
Paul Duffinf88d8e02020-05-07 20:21:34 +0100139 blueprintBaseModuleContext() blueprint.BaseModuleContext
140
Colin Cross9f35c3d2020-09-16 19:04:41 -0700141 // OtherModuleName returns the name of another Module. See BaseModuleContext.ModuleName for more information.
142 // It is intended for use inside the visit functions of Visit* and WalkDeps.
Colin Crossdc35e212019-06-06 16:13:11 -0700143 OtherModuleName(m blueprint.Module) string
Colin Cross9f35c3d2020-09-16 19:04:41 -0700144
145 // OtherModuleDir returns the directory of another Module. See BaseModuleContext.ModuleDir for more information.
146 // It is intended for use inside the visit functions of Visit* and WalkDeps.
Colin Crossdc35e212019-06-06 16:13:11 -0700147 OtherModuleDir(m blueprint.Module) string
Colin Cross9f35c3d2020-09-16 19:04:41 -0700148
149 // OtherModuleErrorf reports an error on another Module. See BaseModuleContext.ModuleErrorf for more information.
150 // It is intended for use inside the visit functions of Visit* and WalkDeps.
Colin Crossdc35e212019-06-06 16:13:11 -0700151 OtherModuleErrorf(m blueprint.Module, fmt string, args ...interface{})
Colin Cross9f35c3d2020-09-16 19:04:41 -0700152
153 // OtherModuleDependencyTag returns the dependency tag used to depend on a module, or nil if there is no dependency
154 // on the module. When called inside a Visit* method with current module being visited, and there are multiple
155 // dependencies on the module being visited, it returns the dependency tag used for the current dependency.
Colin Crossdc35e212019-06-06 16:13:11 -0700156 OtherModuleDependencyTag(m blueprint.Module) blueprint.DependencyTag
Colin Cross9f35c3d2020-09-16 19:04:41 -0700157
158 // OtherModuleExists returns true if a module with the specified name exists, as determined by the NameInterface
159 // passed to Context.SetNameInterface, or SimpleNameInterface if it was not called.
Colin Crossdc35e212019-06-06 16:13:11 -0700160 OtherModuleExists(name string) bool
Colin Cross9f35c3d2020-09-16 19:04:41 -0700161
162 // OtherModuleDependencyVariantExists returns true if a module with the
163 // specified name and variant exists. The variant must match the given
164 // variations. It must also match all the non-local variations of the current
165 // module. In other words, it checks for the module AddVariationDependencies
166 // would add a dependency on with the same arguments.
Martin Stjernholm009a9dc2020-03-05 17:34:13 +0000167 OtherModuleDependencyVariantExists(variations []blueprint.Variation, name string) bool
Colin Cross9f35c3d2020-09-16 19:04:41 -0700168
169 // OtherModuleReverseDependencyVariantExists returns true if a module with the
170 // specified name exists with the same variations as the current module. In
171 // other words, it checks for the module AddReverseDependency would add a
172 // dependency on with the same argument.
Martin Stjernholm009a9dc2020-03-05 17:34:13 +0000173 OtherModuleReverseDependencyVariantExists(name string) bool
Colin Cross9f35c3d2020-09-16 19:04:41 -0700174
175 // OtherModuleType returns the type of another Module. See BaseModuleContext.ModuleType for more information.
176 // It is intended for use inside the visit functions of Visit* and WalkDeps.
Jiyong Park9e6c2422019-08-09 20:39:45 +0900177 OtherModuleType(m blueprint.Module) string
Colin Crossdc35e212019-06-06 16:13:11 -0700178
179 GetDirectDepsWithTag(tag blueprint.DependencyTag) []Module
Colin Cross9f35c3d2020-09-16 19:04:41 -0700180
181 // GetDirectDepWithTag returns the Module the direct dependency with the specified name, or nil if
182 // none exists. It panics if the dependency does not have the specified tag. It skips any
183 // dependencies that are not an android.Module.
Colin Crossdc35e212019-06-06 16:13:11 -0700184 GetDirectDepWithTag(name string, tag blueprint.DependencyTag) blueprint.Module
Colin Cross9f35c3d2020-09-16 19:04:41 -0700185
186 // GetDirectDep returns the Module and DependencyTag for the direct dependency with the specified
187 // name, or nil if none exists. If there are multiple dependencies on the same module it returns
188 // the first DependencyTag. It skips any dependencies that are not an android.Module.
Colin Crossdc35e212019-06-06 16:13:11 -0700189 GetDirectDep(name string) (blueprint.Module, blueprint.DependencyTag)
190
Colin Cross9f35c3d2020-09-16 19:04:41 -0700191 // VisitDirectDepsBlueprint calls visit for each direct dependency. If there are multiple
192 // direct dependencies on the same module visit will be called multiple times on that module
193 // and OtherModuleDependencyTag will return a different tag for each.
194 //
195 // The Module passed to the visit function should not be retained outside of the visit
196 // function, it may be invalidated by future mutators.
Colin Crossdc35e212019-06-06 16:13:11 -0700197 VisitDirectDepsBlueprint(visit func(blueprint.Module))
Colin Cross9f35c3d2020-09-16 19:04:41 -0700198
199 // VisitDirectDeps calls visit for each direct dependency. If there are multiple
200 // direct dependencies on the same module visit will be called multiple times on that module
201 // and OtherModuleDependencyTag will return a different tag for each. It skips any
202 // dependencies that are not an android.Module.
203 //
204 // The Module passed to the visit function should not be retained outside of the visit
205 // function, it may be invalidated by future mutators.
Colin Crossdc35e212019-06-06 16:13:11 -0700206 VisitDirectDeps(visit func(Module))
Colin Cross9f35c3d2020-09-16 19:04:41 -0700207
Colin Crossdc35e212019-06-06 16:13:11 -0700208 VisitDirectDepsWithTag(tag blueprint.DependencyTag, visit func(Module))
Colin Cross9f35c3d2020-09-16 19:04:41 -0700209
210 // VisitDirectDepsIf calls pred for each direct dependency, and if pred returns true calls visit. If there are
211 // multiple direct dependencies on the same module pred and visit will be called multiple times on that module and
212 // OtherModuleDependencyTag will return a different tag for each. It skips any
213 // dependencies that are not an android.Module.
214 //
215 // The Module passed to the visit function should not be retained outside of the visit function, it may be
216 // invalidated by future mutators.
Colin Crossdc35e212019-06-06 16:13:11 -0700217 VisitDirectDepsIf(pred func(Module) bool, visit func(Module))
218 // Deprecated: use WalkDeps instead to support multiple dependency tags on the same module
219 VisitDepsDepthFirst(visit func(Module))
220 // Deprecated: use WalkDeps instead to support multiple dependency tags on the same module
221 VisitDepsDepthFirstIf(pred func(Module) bool, visit func(Module))
Colin Cross9f35c3d2020-09-16 19:04:41 -0700222
223 // WalkDeps calls visit for each transitive dependency, traversing the dependency tree in top down order. visit may
224 // be called multiple times for the same (child, parent) pair if there are multiple direct dependencies between the
225 // child and parent with different tags. OtherModuleDependencyTag will return the tag for the currently visited
226 // (child, parent) pair. If visit returns false WalkDeps will not continue recursing down to child. It skips
227 // any dependencies that are not an android.Module.
228 //
229 // The Modules passed to the visit function should not be retained outside of the visit function, they may be
230 // invalidated by future mutators.
Colin Crossdc35e212019-06-06 16:13:11 -0700231 WalkDeps(visit func(Module, Module) bool)
Colin Cross9f35c3d2020-09-16 19:04:41 -0700232
233 // WalkDepsBlueprint calls visit for each transitive dependency, traversing the dependency
234 // tree in top down order. visit may be called multiple times for the same (child, parent)
235 // pair if there are multiple direct dependencies between the child and parent with different
236 // tags. OtherModuleDependencyTag will return the tag for the currently visited
237 // (child, parent) pair. If visit returns false WalkDeps will not continue recursing down
238 // to child.
239 //
240 // The Modules passed to the visit function should not be retained outside of the visit function, they may be
241 // invalidated by future mutators.
Colin Crossdc35e212019-06-06 16:13:11 -0700242 WalkDepsBlueprint(visit func(blueprint.Module, blueprint.Module) bool)
Colin Cross9f35c3d2020-09-16 19:04:41 -0700243
Colin Crossdc35e212019-06-06 16:13:11 -0700244 // GetWalkPath is supposed to be called in visit function passed in WalkDeps()
245 // and returns a top-down dependency path from a start module to current child module.
246 GetWalkPath() []Module
247
Paul Duffinc5192442020-03-31 11:31:36 +0100248 // GetTagPath is supposed to be called in visit function passed in WalkDeps()
249 // and returns a top-down dependency tags path from a start module to current child module.
250 // It has one less entry than GetWalkPath() as it contains the dependency tags that
251 // exist between each adjacent pair of modules in the GetWalkPath().
252 // GetTagPath()[i] is the tag between GetWalkPath()[i] and GetWalkPath()[i+1]
253 GetTagPath() []blueprint.DependencyTag
254
Jiyong Park1c7e9622020-05-07 16:12:13 +0900255 // GetPathString is supposed to be called in visit function passed in WalkDeps()
256 // and returns a multi-line string showing the modules and dependency tags
257 // among them along the top-down dependency path from a start module to current child module.
258 // skipFirst when set to true, the output doesn't include the start module,
259 // which is already printed when this function is used along with ModuleErrorf().
260 GetPathString(skipFirst bool) string
261
Colin Crossdc35e212019-06-06 16:13:11 -0700262 AddMissingDependencies(missingDeps []string)
263
Colin Crossa1ad8d12016-06-01 17:09:44 -0700264 Target() Target
Colin Cross8b74d172016-09-13 09:59:14 -0700265 TargetPrimary() bool
Paul Duffinca7f0ef2020-02-25 15:50:49 +0000266
267 // The additional arch specific targets (e.g. 32/64 bit) that this module variant is
268 // responsible for creating.
Colin Crossee0bc3b2018-10-02 22:01:37 -0700269 MultiTargets() []Target
Colin Crossf6566ed2015-03-24 11:13:38 -0700270 Arch() Arch
Colin Crossa1ad8d12016-06-01 17:09:44 -0700271 Os() OsType
Colin Crossf6566ed2015-03-24 11:13:38 -0700272 Host() bool
273 Device() bool
Colin Cross0af4b842015-04-30 16:36:18 -0700274 Darwin() bool
Doug Horn21b94272019-01-16 12:06:11 -0800275 Fuchsia() bool
Colin Cross3edeee12017-04-04 12:59:48 -0700276 Windows() bool
Colin Crossf6566ed2015-03-24 11:13:38 -0700277 Debug() bool
Colin Cross1e7d3702016-08-24 15:25:47 -0700278 PrimaryArch() bool
Colin Crossf6566ed2015-03-24 11:13:38 -0700279}
280
Colin Cross1184b642019-12-30 18:43:07 -0800281// Deprecated: use EarlyModuleContext instead
Colin Cross635c3b02016-05-18 15:37:25 -0700282type BaseContext interface {
Colin Cross1184b642019-12-30 18:43:07 -0800283 EarlyModuleContext
Colin Crossaabf6792017-11-29 00:27:14 -0800284}
285
Colin Cross635c3b02016-05-18 15:37:25 -0700286type ModuleContext interface {
Colin Crossaabf6792017-11-29 00:27:14 -0800287 BaseModuleContext
Colin Cross3f40fa42015-01-30 17:27:36 -0800288
Colin Crossae887032017-10-23 17:16:14 -0700289 // Deprecated: use ModuleContext.Build instead.
Colin Cross0875c522017-11-28 17:34:01 -0800290 ModuleBuild(pctx PackageContext, params ModuleBuildParams)
Colin Cross8f101b42015-06-17 15:09:06 -0700291
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700292 ExpandSources(srcFiles, excludes []string) Paths
Colin Cross366938f2017-12-11 16:29:02 -0800293 ExpandSource(srcFile, prop string) Path
Colin Cross2383f3b2018-02-06 14:40:13 -0800294 ExpandOptionalSource(srcFile *string, prop string) OptionalPath
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700295
Colin Cross70dda7e2019-10-01 22:05:35 -0700296 InstallExecutable(installPath InstallPath, name string, srcPath Path, deps ...Path) InstallPath
297 InstallFile(installPath InstallPath, name string, srcPath Path, deps ...Path) InstallPath
298 InstallSymlink(installPath InstallPath, name string, srcPath InstallPath) InstallPath
299 InstallAbsoluteSymlink(installPath InstallPath, name string, absPath string) InstallPath
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700300 CheckbuildFile(srcPath Path)
Dan Willemsen6553f5e2016-03-10 18:14:25 -0800301
Colin Cross8d8f8e22016-08-03 11:57:50 -0700302 InstallInData() bool
Jaewoong Jung0949f312019-09-11 10:25:18 -0700303 InstallInTestcases() bool
Vishwath Mohan1dd88392017-03-29 22:00:18 -0700304 InstallInSanitizerDir() bool
Yifan Hong1b3348d2020-01-21 15:53:22 -0800305 InstallInRamdisk() bool
Jiyong Parkf9332f12018-02-01 00:54:12 +0900306 InstallInRecovery() bool
Colin Cross90ba5f42019-10-02 11:10:58 -0700307 InstallInRoot() bool
Colin Cross607d8582019-07-29 16:44:46 -0700308 InstallBypassMake() bool
Jiyong Park87788b52020-09-01 12:37:45 +0900309 InstallForceOS() (*OsType, *ArchType)
Nan Zhang6d34b302017-02-04 17:47:46 -0800310
311 RequiredModuleNames() []string
Sasha Smundakb6d23052019-04-01 18:37:36 -0700312 HostRequiredModuleNames() []string
313 TargetRequiredModuleNames() []string
Colin Cross3f68a132017-10-23 17:10:29 -0700314
Colin Cross3f68a132017-10-23 17:10:29 -0700315 ModuleSubDir() string
316
Colin Cross0875c522017-11-28 17:34:01 -0800317 Variable(pctx PackageContext, name, value string)
318 Rule(pctx PackageContext, name string, params blueprint.RuleParams, argNames ...string) blueprint.Rule
Colin Crossae887032017-10-23 17:16:14 -0700319 // Similar to blueprint.ModuleContext.Build, but takes Paths instead of []string,
320 // and performs more verification.
Colin Cross0875c522017-11-28 17:34:01 -0800321 Build(pctx PackageContext, params BuildParams)
Colin Crossc3d87d32020-06-04 13:25:17 -0700322 // Phony creates a Make-style phony rule, a rule with no commands that can depend on other
323 // phony rules or real files. Phony can be called on the same name multiple times to add
324 // additional dependencies.
325 Phony(phony string, deps ...Path)
Colin Cross3f68a132017-10-23 17:10:29 -0700326
Colin Cross9f35c3d2020-09-16 19:04:41 -0700327 // PrimaryModule returns the first variant of the current module. Variants of a module are always visited in
328 // order by mutators and GenerateBuildActions, so the data created by the current mutator can be read from the
329 // Module returned by PrimaryModule without data races. This can be used to perform singleton actions that are
330 // only done once for all variants of a module.
Colin Cross0875c522017-11-28 17:34:01 -0800331 PrimaryModule() Module
Colin Cross9f35c3d2020-09-16 19:04:41 -0700332
333 // FinalModule returns the last variant of the current module. Variants of a module are always visited in
334 // order by mutators and GenerateBuildActions, so the data created by the current mutator can be read from all
335 // variants using VisitAllModuleVariants if the current module == FinalModule(). This can be used to perform
336 // singleton actions that are only done once for all variants of a module.
Colin Cross0875c522017-11-28 17:34:01 -0800337 FinalModule() Module
Colin Cross9f35c3d2020-09-16 19:04:41 -0700338
339 // VisitAllModuleVariants calls visit for each variant of the current module. Variants of a module are always
340 // visited in order by mutators and GenerateBuildActions, so the data created by the current mutator can be read
341 // from all variants if the current module == FinalModule(). Otherwise, care must be taken to not access any
342 // data modified by the current mutator.
Colin Cross0875c522017-11-28 17:34:01 -0800343 VisitAllModuleVariants(visit func(Module))
Colin Cross3f68a132017-10-23 17:10:29 -0700344
Colin Cross9f35c3d2020-09-16 19:04:41 -0700345 // GetMissingDependencies returns the list of dependencies that were passed to AddDependencies or related methods,
346 // but do not exist.
Colin Cross3f68a132017-10-23 17:10:29 -0700347 GetMissingDependencies() []string
Colin Cross3f40fa42015-01-30 17:27:36 -0800348}
349
Colin Cross635c3b02016-05-18 15:37:25 -0700350type Module interface {
Colin Cross3f40fa42015-01-30 17:27:36 -0800351 blueprint.Module
352
Jeff Gastonaf3cc2d2017-09-27 17:01:44 -0700353 // GenerateAndroidBuildActions is analogous to Blueprints' GenerateBuildActions,
354 // but GenerateAndroidBuildActions also has access to Android-specific information.
355 // For more information, see Module.GenerateBuildActions within Blueprint's module_ctx.go
Colin Cross635c3b02016-05-18 15:37:25 -0700356 GenerateAndroidBuildActions(ModuleContext)
Jeff Gastonaf3cc2d2017-09-27 17:01:44 -0700357
Paul Duffin44f1d842020-06-26 20:17:02 +0100358 // Add dependencies to the components of a module, i.e. modules that are created
359 // by the module and which are considered to be part of the creating module.
360 //
361 // This is called before prebuilts are renamed so as to allow a dependency to be
362 // added directly to a prebuilt child module instead of depending on a source module
363 // and relying on prebuilt processing to switch to the prebuilt module if preferred.
364 //
365 // A dependency on a prebuilt must include the "prebuilt_" prefix.
366 ComponentDepsMutator(ctx BottomUpMutatorContext)
367
Colin Cross1e676be2016-10-12 14:38:15 -0700368 DepsMutator(BottomUpMutatorContext)
Colin Cross3f40fa42015-01-30 17:27:36 -0800369
Colin Cross635c3b02016-05-18 15:37:25 -0700370 base() *ModuleBase
Inseob Kimeec88e12020-01-22 11:11:29 +0900371 Disable()
Dan Willemsen0effe062015-11-30 16:06:01 -0800372 Enabled() bool
Colin Crossa1ad8d12016-06-01 17:09:44 -0700373 Target() Target
Anton Hansson1ee62c02020-06-30 11:51:53 +0100374 Owner() string
Dan Willemsen782a2d12015-12-21 14:55:28 -0800375 InstallInData() bool
Jaewoong Jung0949f312019-09-11 10:25:18 -0700376 InstallInTestcases() bool
Vishwath Mohan1dd88392017-03-29 22:00:18 -0700377 InstallInSanitizerDir() bool
Yifan Hong1b3348d2020-01-21 15:53:22 -0800378 InstallInRamdisk() bool
Jiyong Parkf9332f12018-02-01 00:54:12 +0900379 InstallInRecovery() bool
Colin Cross90ba5f42019-10-02 11:10:58 -0700380 InstallInRoot() bool
Colin Cross607d8582019-07-29 16:44:46 -0700381 InstallBypassMake() bool
Jiyong Park87788b52020-09-01 12:37:45 +0900382 InstallForceOS() (*OsType, *ArchType)
Colin Crossa2f296f2016-11-29 15:16:18 -0800383 SkipInstall()
Ulya Trafimovichb28cc372020-01-13 15:18:16 +0000384 IsSkipInstall() bool
Martin Stjernholm9e9bb7f2020-08-06 22:34:42 +0100385 MakeUninstallable()
Liz Kammer5ca3a622020-08-05 15:40:41 -0700386 ReplacedByPrebuilt()
387 IsReplacedByPrebuilt() bool
Jiyong Park374510b2018-03-19 18:23:01 +0900388 ExportedToMake() bool
Inseob Kim8471cda2019-11-15 09:59:12 +0900389 InitRc() Paths
390 VintfFragments() Paths
Bob Badoura75b0572020-02-18 20:21:55 -0800391 NoticeFiles() Paths
Colin Cross36242852017-06-23 15:06:31 -0700392
393 AddProperties(props ...interface{})
394 GetProperties() []interface{}
Colin Crosscec81712017-07-13 14:43:27 -0700395
Colin Crossae887032017-10-23 17:16:14 -0700396 BuildParamsForTests() []BuildParams
Colin Cross4c83e5c2019-02-25 14:54:28 -0800397 RuleParamsForTests() map[blueprint.Rule]blueprint.RuleParams
Jaewoong Jung38e4fb22018-12-12 09:01:34 -0800398 VariablesForTests() map[string]string
Paul Duffine2453c72019-05-31 14:00:04 +0100399
Colin Cross9a362232019-07-01 15:32:45 -0700400 // String returns a string that includes the module name and variants for printing during debugging.
401 String() string
402
Paul Duffine2453c72019-05-31 14:00:04 +0100403 // Get the qualified module id for this module.
404 qualifiedModuleId(ctx BaseModuleContext) qualifiedModuleName
405
406 // Get information about the properties that can contain visibility rules.
407 visibilityProperties() []visibilityProperty
Paul Duffin63c6e182019-07-24 14:24:38 +0100408
Jiyong Park6a8cf5f2019-12-30 16:31:09 +0900409 RequiredModuleNames() []string
410 HostRequiredModuleNames() []string
411 TargetRequiredModuleNames() []string
Colin Cross897266e2020-02-13 13:22:08 -0800412
413 filesToInstall() InstallPaths
Paul Duffine2453c72019-05-31 14:00:04 +0100414}
415
416// Qualified id for a module
417type qualifiedModuleName struct {
418 // The package (i.e. directory) in which the module is defined, without trailing /
419 pkg string
420
421 // The name of the module, empty string if package.
422 name string
423}
424
425func (q qualifiedModuleName) String() string {
426 if q.name == "" {
427 return "//" + q.pkg
428 }
429 return "//" + q.pkg + ":" + q.name
430}
431
Paul Duffine484f472019-06-20 16:38:08 +0100432func (q qualifiedModuleName) isRootPackage() bool {
433 return q.pkg == "" && q.name == ""
434}
435
Paul Duffine2453c72019-05-31 14:00:04 +0100436// Get the id for the package containing this module.
437func (q qualifiedModuleName) getContainingPackageId() qualifiedModuleName {
438 pkg := q.pkg
439 if q.name == "" {
Paul Duffine484f472019-06-20 16:38:08 +0100440 if pkg == "" {
441 panic(fmt.Errorf("Cannot get containing package id of root package"))
442 }
443
444 index := strings.LastIndex(pkg, "/")
445 if index == -1 {
446 pkg = ""
447 } else {
448 pkg = pkg[:index]
449 }
Paul Duffine2453c72019-05-31 14:00:04 +0100450 }
451 return newPackageId(pkg)
452}
453
454func newPackageId(pkg string) qualifiedModuleName {
455 // A qualified id for a package module has no name.
456 return qualifiedModuleName{pkg: pkg, name: ""}
Colin Cross3f40fa42015-01-30 17:27:36 -0800457}
458
Jingwen Chen40fd90a2020-06-15 05:24:19 +0000459type Dist struct {
460 // Copy the output of this module to the $DIST_DIR when `dist` is specified on the
461 // command line and any of these targets are also on the command line, or otherwise
462 // built
463 Targets []string `android:"arch_variant"`
464
465 // The name of the output artifact. This defaults to the basename of the output of
466 // the module.
467 Dest *string `android:"arch_variant"`
468
469 // The directory within the dist directory to store the artifact. Defaults to the
470 // top level directory ("").
471 Dir *string `android:"arch_variant"`
472
473 // A suffix to add to the artifact file name (before any extension).
474 Suffix *string `android:"arch_variant"`
475
476 // A string tag to select the OutputFiles associated with the tag. Defaults to the
477 // the empty "" string.
478 Tag *string `android:"arch_variant"`
479}
480
Colin Crossfc754582016-05-17 16:34:16 -0700481type nameProperties struct {
482 // The name of the module. Must be unique across all modules.
Nan Zhang0007d812017-11-07 10:57:05 -0800483 Name *string
Colin Crossfc754582016-05-17 16:34:16 -0700484}
485
486type commonProperties struct {
Dan Willemsen0effe062015-11-30 16:06:01 -0800487 // emit build rules for this module
Paul Duffin54d9bb72020-02-12 10:20:56 +0000488 //
489 // Disabling a module should only be done for those modules that cannot be built
490 // in the current environment. Modules that can build in the current environment
491 // but are not usually required (e.g. superceded by a prebuilt) should not be
492 // disabled as that will prevent them from being built by the checkbuild target
493 // and so prevent early detection of changes that have broken those modules.
Dan Willemsen0effe062015-11-30 16:06:01 -0800494 Enabled *bool `android:"arch_variant"`
Colin Cross3f40fa42015-01-30 17:27:36 -0800495
Paul Duffin2e61fa62019-03-28 14:10:57 +0000496 // Controls the visibility of this module to other modules. Allowable values are one or more of
497 // these formats:
498 //
499 // ["//visibility:public"]: Anyone can use this module.
500 // ["//visibility:private"]: Only rules in the module's package (not its subpackages) can use
501 // this module.
Paul Duffin51084ff2020-05-05 19:19:22 +0100502 // ["//visibility:override"]: Discards any rules inherited from defaults or a creating module.
503 // Can only be used at the beginning of a list of visibility rules.
Paul Duffin2e61fa62019-03-28 14:10:57 +0000504 // ["//some/package:__pkg__", "//other/package:__pkg__"]: Only modules in some/package and
505 // other/package (defined in some/package/*.bp and other/package/*.bp) have access to
506 // this module. Note that sub-packages do not have access to the rule; for example,
507 // //some/package/foo:bar or //other/package/testing:bla wouldn't have access. __pkg__
508 // is a special module and must be used verbatim. It represents all of the modules in the
509 // package.
510 // ["//project:__subpackages__", "//other:__subpackages__"]: Only modules in packages project
511 // or other or in one of their sub-packages have access to this module. For example,
512 // //project:rule, //project/library:lib or //other/testing/internal:munge are allowed
513 // to depend on this rule (but not //independent:evil)
514 // ["//project"]: This is shorthand for ["//project:__pkg__"]
515 // [":__subpackages__"]: This is shorthand for ["//project:__subpackages__"] where
516 // //project is the module's package. e.g. using [":__subpackages__"] in
517 // packages/apps/Settings/Android.bp is equivalent to
518 // //packages/apps/Settings:__subpackages__.
519 // ["//visibility:legacy_public"]: The default visibility, behaves as //visibility:public
520 // for now. It is an error if it is used in a module.
Paul Duffine2453c72019-05-31 14:00:04 +0100521 //
522 // If a module does not specify the `visibility` property then it uses the
523 // `default_visibility` property of the `package` module in the module's package.
524 //
525 // If the `default_visibility` property is not set for the module's package then
Paul Duffine484f472019-06-20 16:38:08 +0100526 // it will use the `default_visibility` of its closest ancestor package for which
527 // a `default_visibility` property is specified.
528 //
529 // If no `default_visibility` property can be found then the module uses the
530 // global default of `//visibility:legacy_public`.
Paul Duffine2453c72019-05-31 14:00:04 +0100531 //
Paul Duffin95d53b52019-07-24 13:45:05 +0100532 // The `visibility` property has no effect on a defaults module although it does
533 // apply to any non-defaults module that uses it. To set the visibility of a
534 // defaults module, use the `defaults_visibility` property on the defaults module;
535 // not to be confused with the `default_visibility` property on the package module.
536 //
Paul Duffin2e61fa62019-03-28 14:10:57 +0000537 // See https://android.googlesource.com/platform/build/soong/+/master/README.md#visibility for
538 // more details.
539 Visibility []string
540
Colin Cross7d5136f2015-05-11 13:39:40 -0700541 // control whether this module compiles for 32-bit, 64-bit, or both. Possible values
Colin Cross3f40fa42015-01-30 17:27:36 -0800542 // are "32" (compile for 32-bit only), "64" (compile for 64-bit only), "both" (compile for both
543 // architectures), or "first" (compile for 64-bit on a 64-bit platform, and 32-bit on a 32-bit
544 // platform
Colin Cross7d716ba2017-11-01 10:38:29 -0700545 Compile_multilib *string `android:"arch_variant"`
Colin Cross69617d32016-09-06 10:39:07 -0700546
547 Target struct {
548 Host struct {
Colin Cross7d716ba2017-11-01 10:38:29 -0700549 Compile_multilib *string
Colin Cross69617d32016-09-06 10:39:07 -0700550 }
551 Android struct {
Colin Cross7d716ba2017-11-01 10:38:29 -0700552 Compile_multilib *string
Colin Cross69617d32016-09-06 10:39:07 -0700553 }
554 }
555
Paul Duffinca7f0ef2020-02-25 15:50:49 +0000556 // If set to true then the archMutator will create variants for each arch specific target
557 // (e.g. 32/64) that the module is required to produce. If set to false then it will only
558 // create a variant for the architecture and will list the additional arch specific targets
559 // that the variant needs to produce in the CompileMultiTargets property.
Colin Crossee0bc3b2018-10-02 22:01:37 -0700560 UseTargetVariants bool `blueprint:"mutated"`
561 Default_multilib string `blueprint:"mutated"`
Colin Cross3f40fa42015-01-30 17:27:36 -0800562
Dan Willemsen782a2d12015-12-21 14:55:28 -0800563 // whether this is a proprietary vendor module, and should be installed into /vendor
Colin Cross7d716ba2017-11-01 10:38:29 -0700564 Proprietary *bool
Dan Willemsen782a2d12015-12-21 14:55:28 -0800565
Colin Cross55708f32017-03-20 13:23:34 -0700566 // vendor who owns this module
Dan Willemsenefac4a82017-07-18 19:42:09 -0700567 Owner *string
Colin Cross55708f32017-03-20 13:23:34 -0700568
Jiyong Park2db76922017-11-08 16:03:48 +0900569 // whether this module is specific to an SoC (System-On-a-Chip). When set to true,
570 // it is installed into /vendor (or /system/vendor if vendor partition does not exist).
571 // Use `soc_specific` instead for better meaning.
Colin Cross7d716ba2017-11-01 10:38:29 -0700572 Vendor *bool
Dan Willemsenaa118f92017-04-06 12:49:58 -0700573
Jiyong Park2db76922017-11-08 16:03:48 +0900574 // whether this module is specific to an SoC (System-On-a-Chip). When set to true,
575 // it is installed into /vendor (or /system/vendor if vendor partition does not exist).
576 Soc_specific *bool
577
578 // whether this module is specific to a device, not only for SoC, but also for off-chip
579 // peripherals. When set to true, it is installed into /odm (or /vendor/odm if odm partition
580 // does not exist, or /system/vendor/odm if both odm and vendor partitions do not exist).
581 // This implies `soc_specific:true`.
582 Device_specific *bool
583
584 // whether this module is specific to a software configuration of a product (e.g. country,
Jaekyun Seok5cfbfbb2018-01-10 19:00:15 +0900585 // network operator, etc). When set to true, it is installed into /product (or
586 // /system/product if product partition does not exist).
Jiyong Park2db76922017-11-08 16:03:48 +0900587 Product_specific *bool
588
Justin Yund5f6c822019-06-25 16:47:17 +0900589 // whether this module extends system. When set to true, it is installed into /system_ext
590 // (or /system/system_ext if system_ext partition does not exist).
591 System_ext_specific *bool
592
Jiyong Parkf9332f12018-02-01 00:54:12 +0900593 // Whether this module is installed to recovery partition
594 Recovery *bool
595
Yifan Hong1b3348d2020-01-21 15:53:22 -0800596 // Whether this module is installed to ramdisk
597 Ramdisk *bool
598
dimitry1f33e402019-03-26 12:39:31 +0100599 // Whether this module is built for non-native architecures (also known as native bridge binary)
600 Native_bridge_supported *bool `android:"arch_variant"`
601
Dan Willemsen2277bcb2016-07-25 20:27:39 -0700602 // init.rc files to be installed if this module is installed
Colin Cross27b922f2019-03-04 22:35:41 -0800603 Init_rc []string `android:"path"`
Dan Willemsen2277bcb2016-07-25 20:27:39 -0700604
Steven Moreland57a23d22018-04-04 15:42:19 -0700605 // VINTF manifest fragments to be installed if this module is installed
Colin Cross27b922f2019-03-04 22:35:41 -0800606 Vintf_fragments []string `android:"path"`
Steven Moreland57a23d22018-04-04 15:42:19 -0700607
Chris Wolfe998306e2016-08-15 14:47:23 -0400608 // names of other modules to install if this module is installed
Colin Crossc602b7d2017-05-05 13:36:36 -0700609 Required []string `android:"arch_variant"`
Chris Wolfe998306e2016-08-15 14:47:23 -0400610
Sasha Smundakb6d23052019-04-01 18:37:36 -0700611 // names of other modules to install on host if this module is installed
612 Host_required []string `android:"arch_variant"`
613
614 // names of other modules to install on target if this module is installed
615 Target_required []string `android:"arch_variant"`
616
Colin Cross5aac3622017-08-31 15:07:09 -0700617 // relative path to a file to include in the list of notices for the device
Colin Cross27b922f2019-03-04 22:35:41 -0800618 Notice *string `android:"path"`
Colin Cross5aac3622017-08-31 15:07:09 -0700619
Paul Duffinca7f0ef2020-02-25 15:50:49 +0000620 // The OsType of artifacts that this module variant is responsible for creating.
621 //
622 // Set by osMutator
623 CompileOS OsType `blueprint:"mutated"`
624
625 // The Target of artifacts that this module variant is responsible for creating.
626 //
627 // Set by archMutator
628 CompileTarget Target `blueprint:"mutated"`
629
630 // The additional arch specific targets (e.g. 32/64 bit) that this module variant is
631 // responsible for creating.
632 //
633 // By default this is nil as, where necessary, separate variants are created for the
634 // different multilib types supported and that information is encapsulated in the
635 // CompileTarget so the module variant simply needs to create artifacts for that.
636 //
637 // However, if UseTargetVariants is set to false (e.g. by
638 // InitAndroidMultiTargetsArchModule) then no separate variants are created for the
639 // multilib targets. Instead a single variant is created for the architecture and
640 // this contains the multilib specific targets that this variant should create.
641 //
642 // Set by archMutator
Colin Crossee0bc3b2018-10-02 22:01:37 -0700643 CompileMultiTargets []Target `blueprint:"mutated"`
Paul Duffinca7f0ef2020-02-25 15:50:49 +0000644
645 // True if the module variant's CompileTarget is the primary target
646 //
647 // Set by archMutator
648 CompilePrimary bool `blueprint:"mutated"`
Colin Cross3f40fa42015-01-30 17:27:36 -0800649
650 // Set by InitAndroidModule
651 HostOrDeviceSupported HostOrDeviceSupported `blueprint:"mutated"`
Dan Willemsen0b24c742016-10-04 15:13:37 -0700652 ArchSpecific bool `blueprint:"mutated"`
Colin Crossce75d2c2016-10-06 16:12:58 -0700653
Paul Duffin1356d8c2020-02-25 19:26:33 +0000654 // If set to true then a CommonOS variant will be created which will have dependencies
655 // on all its OsType specific variants. Used by sdk/module_exports to create a snapshot
656 // that covers all os and architecture variants.
657 //
658 // The OsType specific variants can be retrieved by calling
659 // GetOsSpecificVariantsOfCommonOSVariant
660 //
661 // Set at module initialization time by calling InitCommonOSAndroidMultiTargetsArchModule
662 CreateCommonOSVariant bool `blueprint:"mutated"`
663
664 // If set to true then this variant is the CommonOS variant that has dependencies on its
665 // OsType specific variants.
666 //
667 // Set by osMutator.
668 CommonOSVariant bool `blueprint:"mutated"`
669
Colin Crossce75d2c2016-10-06 16:12:58 -0700670 SkipInstall bool `blueprint:"mutated"`
Jeff Gaston088e29e2017-11-29 16:47:17 -0800671
Liz Kammer5ca3a622020-08-05 15:40:41 -0700672 // Whether the module has been replaced by a prebuilt
673 ReplacedByPrebuilt bool `blueprint:"mutated"`
674
Justin Yun32f053b2020-07-31 23:07:17 +0900675 // Disabled by mutators. If set to true, it overrides Enabled property.
676 ForcedDisabled bool `blueprint:"mutated"`
677
Jeff Gaston088e29e2017-11-29 16:47:17 -0800678 NamespaceExportedToMake bool `blueprint:"mutated"`
Colin Cross6c4f21f2019-06-06 15:41:36 -0700679
680 MissingDeps []string `blueprint:"mutated"`
Colin Cross9a362232019-07-01 15:32:45 -0700681
682 // Name and variant strings stored by mutators to enable Module.String()
683 DebugName string `blueprint:"mutated"`
684 DebugMutators []string `blueprint:"mutated"`
685 DebugVariations []string `blueprint:"mutated"`
Colin Cross7228ecd2019-11-18 16:00:16 -0800686
687 // set by ImageMutator
688 ImageVariation string `blueprint:"mutated"`
Colin Cross3f40fa42015-01-30 17:27:36 -0800689}
690
Paul Duffined875132020-09-02 13:08:57 +0100691type distProperties struct {
692 // configuration to distribute output files from this module to the distribution
693 // directory (default: $OUT/dist, configurable with $DIST_DIR)
694 Dist Dist `android:"arch_variant"`
695
696 // a list of configurations to distribute output files from this module to the
697 // distribution directory (default: $OUT/dist, configurable with $DIST_DIR)
698 Dists []Dist `android:"arch_variant"`
699}
700
Jingwen Chen40fd90a2020-06-15 05:24:19 +0000701// A map of OutputFile tag keys to Paths, for disting purposes.
702type TaggedDistFiles map[string]Paths
703
704func MakeDefaultDistFiles(paths ...Path) TaggedDistFiles {
Jingwen Chen7b27ca72020-07-24 09:13:49 +0000705 for _, path := range paths {
706 if path == nil {
707 panic("The path to a dist file cannot be nil.")
708 }
709 }
710
Jingwen Chen40fd90a2020-06-15 05:24:19 +0000711 // The default OutputFile tag is the empty "" string.
712 return TaggedDistFiles{"": paths}
713}
714
Colin Cross3f40fa42015-01-30 17:27:36 -0800715type hostAndDeviceProperties struct {
Colin Cross4e81d702018-11-09 10:36:55 -0800716 // If set to true, build a variant of the module for the host. Defaults to false.
717 Host_supported *bool
718
719 // If set to true, build a variant of the module for the device. Defaults to true.
Colin Crossa4190c12016-07-12 13:11:25 -0700720 Device_supported *bool
Colin Cross3f40fa42015-01-30 17:27:36 -0800721}
722
Colin Crossc472d572015-03-17 15:06:21 -0700723type Multilib string
724
725const (
Colin Cross6b4a32d2017-12-05 13:42:45 -0800726 MultilibBoth Multilib = "both"
727 MultilibFirst Multilib = "first"
728 MultilibCommon Multilib = "common"
729 MultilibCommonFirst Multilib = "common_first"
730 MultilibDefault Multilib = ""
Colin Crossc472d572015-03-17 15:06:21 -0700731)
732
Colin Crossa1ad8d12016-06-01 17:09:44 -0700733type HostOrDeviceSupported int
734
735const (
736 _ HostOrDeviceSupported = iota
Dan Albert0981b5c2018-08-02 13:46:35 -0700737
738 // Host and HostCross are built by default. Device is not supported.
Colin Crossa1ad8d12016-06-01 17:09:44 -0700739 HostSupported
Dan Albert0981b5c2018-08-02 13:46:35 -0700740
741 // Host is built by default. HostCross and Device are not supported.
Dan Albertc6345fb2016-10-20 01:36:11 -0700742 HostSupportedNoCross
Dan Albert0981b5c2018-08-02 13:46:35 -0700743
744 // Device is built by default. Host and HostCross are not supported.
Colin Crossa1ad8d12016-06-01 17:09:44 -0700745 DeviceSupported
Dan Albert0981b5c2018-08-02 13:46:35 -0700746
747 // Device is built by default. Host and HostCross are supported.
Colin Crossa1ad8d12016-06-01 17:09:44 -0700748 HostAndDeviceSupported
Dan Albert0981b5c2018-08-02 13:46:35 -0700749
750 // Host, HostCross, and Device are built by default.
Colin Crossa1ad8d12016-06-01 17:09:44 -0700751 HostAndDeviceDefault
Dan Albert0981b5c2018-08-02 13:46:35 -0700752
753 // Nothing is supported. This is not exposed to the user, but used to mark a
754 // host only module as unsupported when the module type is not supported on
755 // the host OS. E.g. benchmarks are supported on Linux but not Darwin.
Dan Willemsen0b24c742016-10-04 15:13:37 -0700756 NeitherHostNorDeviceSupported
Colin Crossa1ad8d12016-06-01 17:09:44 -0700757)
758
Jiyong Park2db76922017-11-08 16:03:48 +0900759type moduleKind int
760
761const (
762 platformModule moduleKind = iota
763 deviceSpecificModule
764 socSpecificModule
765 productSpecificModule
Justin Yund5f6c822019-06-25 16:47:17 +0900766 systemExtSpecificModule
Jiyong Park2db76922017-11-08 16:03:48 +0900767)
768
769func (k moduleKind) String() string {
770 switch k {
771 case platformModule:
772 return "platform"
773 case deviceSpecificModule:
774 return "device-specific"
775 case socSpecificModule:
776 return "soc-specific"
777 case productSpecificModule:
778 return "product-specific"
Justin Yund5f6c822019-06-25 16:47:17 +0900779 case systemExtSpecificModule:
780 return "systemext-specific"
Jiyong Park2db76922017-11-08 16:03:48 +0900781 default:
782 panic(fmt.Errorf("unknown module kind %d", k))
783 }
784}
785
Colin Cross9d34f352019-11-22 16:03:51 -0800786func initAndroidModuleBase(m Module) {
787 m.base().module = m
788}
789
Colin Cross36242852017-06-23 15:06:31 -0700790func InitAndroidModule(m Module) {
Colin Cross9d34f352019-11-22 16:03:51 -0800791 initAndroidModuleBase(m)
Colin Cross3f40fa42015-01-30 17:27:36 -0800792 base := m.base()
Colin Cross5049f022015-03-18 13:28:46 -0700793
Colin Cross36242852017-06-23 15:06:31 -0700794 m.AddProperties(
Colin Crossfc754582016-05-17 16:34:16 -0700795 &base.nameProperties,
Paul Duffined875132020-09-02 13:08:57 +0100796 &base.commonProperties,
797 &base.distProperties)
Colin Cross18c46802019-09-24 22:19:02 -0700798
Colin Crosseabaedd2020-02-06 17:01:55 -0800799 initProductVariableModule(m)
Colin Cross18c46802019-09-24 22:19:02 -0700800
Colin Crossa3a97412019-03-18 12:24:29 -0700801 base.generalProperties = m.GetProperties()
Pirama Arumuga Nainar955dc492018-04-17 14:58:42 -0700802 base.customizableProperties = m.GetProperties()
Paul Duffin63c6e182019-07-24 14:24:38 +0100803
804 // The default_visibility property needs to be checked and parsed by the visibility module during
Paul Duffin5ec73ec2020-05-01 17:52:01 +0100805 // its checking and parsing phases so make it the primary visibility property.
806 setPrimaryVisibilityProperty(m, "visibility", &base.commonProperties.Visibility)
Colin Cross5049f022015-03-18 13:28:46 -0700807}
808
Colin Cross36242852017-06-23 15:06:31 -0700809func InitAndroidArchModule(m Module, hod HostOrDeviceSupported, defaultMultilib Multilib) {
810 InitAndroidModule(m)
Colin Cross5049f022015-03-18 13:28:46 -0700811
812 base := m.base()
Colin Cross3f40fa42015-01-30 17:27:36 -0800813 base.commonProperties.HostOrDeviceSupported = hod
Colin Cross69617d32016-09-06 10:39:07 -0700814 base.commonProperties.Default_multilib = string(defaultMultilib)
Dan Willemsen0b24c742016-10-04 15:13:37 -0700815 base.commonProperties.ArchSpecific = true
Colin Crossee0bc3b2018-10-02 22:01:37 -0700816 base.commonProperties.UseTargetVariants = true
Colin Cross3f40fa42015-01-30 17:27:36 -0800817
Dan Willemsen218f6562015-07-08 18:13:11 -0700818 switch hod {
Nan Zhang1a0f09b2017-07-05 10:35:11 -0700819 case HostAndDeviceSupported, HostAndDeviceDefault:
Colin Cross36242852017-06-23 15:06:31 -0700820 m.AddProperties(&base.hostAndDeviceProperties)
Colin Cross3f40fa42015-01-30 17:27:36 -0800821 }
822
Colin Cross36242852017-06-23 15:06:31 -0700823 InitArchModule(m)
Colin Cross3f40fa42015-01-30 17:27:36 -0800824}
825
Colin Crossee0bc3b2018-10-02 22:01:37 -0700826func InitAndroidMultiTargetsArchModule(m Module, hod HostOrDeviceSupported, defaultMultilib Multilib) {
827 InitAndroidArchModule(m, hod, defaultMultilib)
828 m.base().commonProperties.UseTargetVariants = false
829}
830
Paul Duffin1356d8c2020-02-25 19:26:33 +0000831// As InitAndroidMultiTargetsArchModule except it creates an additional CommonOS variant that
832// has dependencies on all the OsType specific variants.
833func InitCommonOSAndroidMultiTargetsArchModule(m Module, hod HostOrDeviceSupported, defaultMultilib Multilib) {
834 InitAndroidArchModule(m, hod, defaultMultilib)
835 m.base().commonProperties.UseTargetVariants = false
836 m.base().commonProperties.CreateCommonOSVariant = true
837}
838
Nan Zhangb9eeb1d2017-02-02 10:46:07 -0800839// A ModuleBase object contains the properties that are common to all Android
Colin Cross3f40fa42015-01-30 17:27:36 -0800840// modules. It should be included as an anonymous field in every module
841// struct definition. InitAndroidModule should then be called from the module's
842// factory function, and the return values from InitAndroidModule should be
843// returned from the factory function.
844//
Nan Zhangb9eeb1d2017-02-02 10:46:07 -0800845// The ModuleBase type is responsible for implementing the GenerateBuildActions
846// method to support the blueprint.Module interface. This method will then call
847// the module's GenerateAndroidBuildActions method once for each build variant
Colin Cross25de6c32019-06-06 14:29:25 -0700848// that is to be built. GenerateAndroidBuildActions is passed a ModuleContext
849// rather than the usual blueprint.ModuleContext.
850// ModuleContext exposes extra functionality specific to the Android build
Colin Cross3f40fa42015-01-30 17:27:36 -0800851// system including details about the particular build variant that is to be
852// generated.
853//
854// For example:
855//
856// import (
Nan Zhangb9eeb1d2017-02-02 10:46:07 -0800857// "android/soong/android"
Colin Cross3f40fa42015-01-30 17:27:36 -0800858// )
859//
860// type myModule struct {
Nan Zhangb9eeb1d2017-02-02 10:46:07 -0800861// android.ModuleBase
Colin Cross3f40fa42015-01-30 17:27:36 -0800862// properties struct {
863// MyProperty string
864// }
865// }
866//
Colin Cross36242852017-06-23 15:06:31 -0700867// func NewMyModule() android.Module) {
Colin Cross3f40fa42015-01-30 17:27:36 -0800868// m := &myModule{}
Colin Cross36242852017-06-23 15:06:31 -0700869// m.AddProperties(&m.properties)
870// android.InitAndroidModule(m)
871// return m
Colin Cross3f40fa42015-01-30 17:27:36 -0800872// }
873//
Nan Zhangb9eeb1d2017-02-02 10:46:07 -0800874// func (m *myModule) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Colin Cross3f40fa42015-01-30 17:27:36 -0800875// // Get the CPU architecture for the current build variant.
876// variantArch := ctx.Arch()
877//
878// // ...
879// }
Colin Cross635c3b02016-05-18 15:37:25 -0700880type ModuleBase struct {
Colin Cross3f40fa42015-01-30 17:27:36 -0800881 // Putting the curiously recurring thing pointing to the thing that contains
882 // the thing pattern to good use.
Colin Cross36242852017-06-23 15:06:31 -0700883 // TODO: remove this
Colin Cross635c3b02016-05-18 15:37:25 -0700884 module Module
Colin Cross3f40fa42015-01-30 17:27:36 -0800885
Colin Crossfc754582016-05-17 16:34:16 -0700886 nameProperties nameProperties
Colin Cross3f40fa42015-01-30 17:27:36 -0800887 commonProperties commonProperties
Paul Duffined875132020-09-02 13:08:57 +0100888 distProperties distProperties
Colin Cross18c46802019-09-24 22:19:02 -0700889 variableProperties interface{}
Colin Cross3f40fa42015-01-30 17:27:36 -0800890 hostAndDeviceProperties hostAndDeviceProperties
891 generalProperties []interface{}
Colin Crossc17727d2018-10-24 12:42:09 -0700892 archProperties [][]interface{}
Colin Crossa120ec12016-08-19 16:07:38 -0700893 customizableProperties []interface{}
Colin Cross3f40fa42015-01-30 17:27:36 -0800894
Paul Duffin63c6e182019-07-24 14:24:38 +0100895 // Information about all the properties on the module that contains visibility rules that need
896 // checking.
897 visibilityPropertyInfo []visibilityProperty
898
899 // The primary visibility property, may be nil, that controls access to the module.
900 primaryVisibilityProperty visibilityProperty
901
Colin Cross3f40fa42015-01-30 17:27:36 -0800902 noAddressSanitizer bool
Colin Cross897266e2020-02-13 13:22:08 -0800903 installFiles InstallPaths
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700904 checkbuildFiles Paths
Bob Badoura75b0572020-02-18 20:21:55 -0800905 noticeFiles Paths
Colin Crossc3d87d32020-06-04 13:25:17 -0700906 phonies map[string]Paths
Colin Cross1f8c52b2015-06-16 16:38:17 -0700907
908 // Used by buildTargetSingleton to create checkbuild and per-directory build targets
909 // Only set on the final variant of each module
Colin Cross0875c522017-11-28 17:34:01 -0800910 installTarget WritablePath
911 checkbuildTarget WritablePath
Colin Cross1f8c52b2015-06-16 16:38:17 -0700912 blueprintDir string
Colin Crossa120ec12016-08-19 16:07:38 -0700913
Colin Cross178a5092016-09-13 13:42:32 -0700914 hooks hooks
Colin Cross36242852017-06-23 15:06:31 -0700915
916 registerProps []interface{}
Colin Crosscec81712017-07-13 14:43:27 -0700917
918 // For tests
Colin Crossae887032017-10-23 17:16:14 -0700919 buildParams []BuildParams
Colin Cross4c83e5c2019-02-25 14:54:28 -0800920 ruleParams map[blueprint.Rule]blueprint.RuleParams
Jaewoong Jung38e4fb22018-12-12 09:01:34 -0800921 variables map[string]string
Colin Crossa9d8bee2018-10-02 13:59:46 -0700922
Inseob Kim8471cda2019-11-15 09:59:12 +0900923 initRcPaths Paths
924 vintfFragmentsPaths Paths
925
Jiyong Park1613e552020-09-14 19:43:17 +0900926 prefer32 func(ctx BaseModuleContext, base *ModuleBase, os OsType) bool
Colin Cross36242852017-06-23 15:06:31 -0700927}
928
Paul Duffin44f1d842020-06-26 20:17:02 +0100929func (m *ModuleBase) ComponentDepsMutator(BottomUpMutatorContext) {}
930
Colin Cross4157e882019-06-06 16:57:04 -0700931func (m *ModuleBase) DepsMutator(BottomUpMutatorContext) {}
Colin Cross5f692ec2019-02-01 16:53:07 -0800932
Colin Cross4157e882019-06-06 16:57:04 -0700933func (m *ModuleBase) AddProperties(props ...interface{}) {
934 m.registerProps = append(m.registerProps, props...)
Colin Cross36242852017-06-23 15:06:31 -0700935}
936
Colin Cross4157e882019-06-06 16:57:04 -0700937func (m *ModuleBase) GetProperties() []interface{} {
938 return m.registerProps
Colin Cross3f40fa42015-01-30 17:27:36 -0800939}
940
Colin Cross4157e882019-06-06 16:57:04 -0700941func (m *ModuleBase) BuildParamsForTests() []BuildParams {
942 return m.buildParams
Colin Crosscec81712017-07-13 14:43:27 -0700943}
944
Colin Cross4157e882019-06-06 16:57:04 -0700945func (m *ModuleBase) RuleParamsForTests() map[blueprint.Rule]blueprint.RuleParams {
946 return m.ruleParams
Colin Cross4c83e5c2019-02-25 14:54:28 -0800947}
948
Colin Cross4157e882019-06-06 16:57:04 -0700949func (m *ModuleBase) VariablesForTests() map[string]string {
950 return m.variables
Jaewoong Jung38e4fb22018-12-12 09:01:34 -0800951}
952
Jiyong Park1613e552020-09-14 19:43:17 +0900953func (m *ModuleBase) Prefer32(prefer32 func(ctx BaseModuleContext, base *ModuleBase, os OsType) bool) {
Colin Cross4157e882019-06-06 16:57:04 -0700954 m.prefer32 = prefer32
Colin Crossa9d8bee2018-10-02 13:59:46 -0700955}
956
Colin Crossce75d2c2016-10-06 16:12:58 -0700957// Name returns the name of the module. It may be overridden by individual module types, for
958// example prebuilts will prepend prebuilt_ to the name.
Colin Cross4157e882019-06-06 16:57:04 -0700959func (m *ModuleBase) Name() string {
960 return String(m.nameProperties.Name)
Colin Crossfc754582016-05-17 16:34:16 -0700961}
962
Colin Cross9a362232019-07-01 15:32:45 -0700963// String returns a string that includes the module name and variants for printing during debugging.
964func (m *ModuleBase) String() string {
965 sb := strings.Builder{}
966 sb.WriteString(m.commonProperties.DebugName)
967 sb.WriteString("{")
968 for i := range m.commonProperties.DebugMutators {
969 if i != 0 {
970 sb.WriteString(",")
971 }
972 sb.WriteString(m.commonProperties.DebugMutators[i])
973 sb.WriteString(":")
974 sb.WriteString(m.commonProperties.DebugVariations[i])
975 }
976 sb.WriteString("}")
977 return sb.String()
978}
979
Colin Crossce75d2c2016-10-06 16:12:58 -0700980// BaseModuleName returns the name of the module as specified in the blueprints file.
Colin Cross4157e882019-06-06 16:57:04 -0700981func (m *ModuleBase) BaseModuleName() string {
982 return String(m.nameProperties.Name)
Colin Crossce75d2c2016-10-06 16:12:58 -0700983}
984
Colin Cross4157e882019-06-06 16:57:04 -0700985func (m *ModuleBase) base() *ModuleBase {
986 return m
Colin Cross3f40fa42015-01-30 17:27:36 -0800987}
988
Paul Duffine2453c72019-05-31 14:00:04 +0100989func (m *ModuleBase) qualifiedModuleId(ctx BaseModuleContext) qualifiedModuleName {
990 return qualifiedModuleName{pkg: ctx.ModuleDir(), name: ctx.ModuleName()}
991}
992
993func (m *ModuleBase) visibilityProperties() []visibilityProperty {
Paul Duffin63c6e182019-07-24 14:24:38 +0100994 return m.visibilityPropertyInfo
995}
996
Jingwen Chen40fd90a2020-06-15 05:24:19 +0000997func (m *ModuleBase) Dists() []Dist {
Paul Duffined875132020-09-02 13:08:57 +0100998 if len(m.distProperties.Dist.Targets) > 0 {
Jingwen Chen40fd90a2020-06-15 05:24:19 +0000999 // Make a copy of the underlying Dists slice to protect against
1000 // backing array modifications with repeated calls to this method.
Paul Duffined875132020-09-02 13:08:57 +01001001 distsCopy := append([]Dist(nil), m.distProperties.Dists...)
1002 return append(distsCopy, m.distProperties.Dist)
Jingwen Chen40fd90a2020-06-15 05:24:19 +00001003 } else {
Paul Duffined875132020-09-02 13:08:57 +01001004 return m.distProperties.Dists
Jingwen Chen40fd90a2020-06-15 05:24:19 +00001005 }
1006}
1007
1008func (m *ModuleBase) GenerateTaggedDistFiles(ctx BaseModuleContext) TaggedDistFiles {
1009 distFiles := make(TaggedDistFiles)
1010 for _, dist := range m.Dists() {
1011 var tag string
1012 var distFilesForTag Paths
1013 if dist.Tag == nil {
1014 tag = ""
1015 } else {
1016 tag = *dist.Tag
1017 }
1018 distFilesForTag, err := m.base().module.(OutputFileProducer).OutputFiles(tag)
1019 if err != nil {
1020 ctx.PropertyErrorf("dist.tag", "%s", err.Error())
1021 }
1022 for _, distFile := range distFilesForTag {
1023 if distFile != nil && !distFiles[tag].containsPath(distFile) {
1024 distFiles[tag] = append(distFiles[tag], distFile)
1025 }
1026 }
1027 }
1028
1029 return distFiles
1030}
1031
Colin Cross4157e882019-06-06 16:57:04 -07001032func (m *ModuleBase) Target() Target {
1033 return m.commonProperties.CompileTarget
Dan Willemsen490fd492015-11-24 17:53:15 -08001034}
1035
Colin Cross4157e882019-06-06 16:57:04 -07001036func (m *ModuleBase) TargetPrimary() bool {
1037 return m.commonProperties.CompilePrimary
Colin Cross8b74d172016-09-13 09:59:14 -07001038}
1039
Colin Cross4157e882019-06-06 16:57:04 -07001040func (m *ModuleBase) MultiTargets() []Target {
1041 return m.commonProperties.CompileMultiTargets
Colin Crossee0bc3b2018-10-02 22:01:37 -07001042}
1043
Colin Cross4157e882019-06-06 16:57:04 -07001044func (m *ModuleBase) Os() OsType {
1045 return m.Target().Os
Dan Willemsen490fd492015-11-24 17:53:15 -08001046}
1047
Colin Cross4157e882019-06-06 16:57:04 -07001048func (m *ModuleBase) Host() bool {
Jiyong Park1613e552020-09-14 19:43:17 +09001049 return m.Os().Class == Host
Dan Willemsen97750522016-02-09 17:43:51 -08001050}
1051
Yo Chiangbba545e2020-06-09 16:15:37 +08001052func (m *ModuleBase) Device() bool {
1053 return m.Os().Class == Device
1054}
1055
Colin Cross4157e882019-06-06 16:57:04 -07001056func (m *ModuleBase) Arch() Arch {
1057 return m.Target().Arch
Dan Willemsen97750522016-02-09 17:43:51 -08001058}
1059
Colin Cross4157e882019-06-06 16:57:04 -07001060func (m *ModuleBase) ArchSpecific() bool {
1061 return m.commonProperties.ArchSpecific
Dan Willemsen0b24c742016-10-04 15:13:37 -07001062}
1063
Paul Duffin1356d8c2020-02-25 19:26:33 +00001064// True if the current variant is a CommonOS variant, false otherwise.
1065func (m *ModuleBase) IsCommonOSVariant() bool {
1066 return m.commonProperties.CommonOSVariant
1067}
1068
Jiyong Park1613e552020-09-14 19:43:17 +09001069func (m *ModuleBase) supportsTarget(target Target, config Config) bool {
Colin Cross4157e882019-06-06 16:57:04 -07001070 switch m.commonProperties.HostOrDeviceSupported {
Colin Crossa1ad8d12016-06-01 17:09:44 -07001071 case HostSupported:
Jiyong Park1613e552020-09-14 19:43:17 +09001072 return target.Os.Class == Host
Dan Albertc6345fb2016-10-20 01:36:11 -07001073 case HostSupportedNoCross:
Jiyong Park1613e552020-09-14 19:43:17 +09001074 return target.Os.Class == Host && !target.HostCross
Colin Crossa1ad8d12016-06-01 17:09:44 -07001075 case DeviceSupported:
Jiyong Park1613e552020-09-14 19:43:17 +09001076 return target.Os.Class == Device
Dan Albert0981b5c2018-08-02 13:46:35 -07001077 case HostAndDeviceSupported, HostAndDeviceDefault:
Jiyong Park1613e552020-09-14 19:43:17 +09001078 supported := false
Colin Cross4157e882019-06-06 16:57:04 -07001079 if Bool(m.hostAndDeviceProperties.Host_supported) ||
1080 (m.commonProperties.HostOrDeviceSupported == HostAndDeviceDefault &&
1081 m.hostAndDeviceProperties.Host_supported == nil) {
Jiyong Park1613e552020-09-14 19:43:17 +09001082 supported = supported || target.Os.Class == Host
Colin Crossa1ad8d12016-06-01 17:09:44 -07001083 }
Colin Cross4157e882019-06-06 16:57:04 -07001084 if m.hostAndDeviceProperties.Device_supported == nil ||
1085 *m.hostAndDeviceProperties.Device_supported {
Jiyong Park1613e552020-09-14 19:43:17 +09001086 supported = supported || target.Os.Class == Device
Colin Crossa1ad8d12016-06-01 17:09:44 -07001087 }
1088 return supported
1089 default:
Jiyong Park1613e552020-09-14 19:43:17 +09001090 return false
Colin Crossa1ad8d12016-06-01 17:09:44 -07001091 }
Colin Cross3f40fa42015-01-30 17:27:36 -08001092}
1093
Colin Cross4157e882019-06-06 16:57:04 -07001094func (m *ModuleBase) DeviceSupported() bool {
1095 return m.commonProperties.HostOrDeviceSupported == DeviceSupported ||
1096 m.commonProperties.HostOrDeviceSupported == HostAndDeviceSupported &&
1097 (m.hostAndDeviceProperties.Device_supported == nil ||
1098 *m.hostAndDeviceProperties.Device_supported)
Colin Cross3f40fa42015-01-30 17:27:36 -08001099}
1100
Paul Duffine44358f2019-11-26 18:04:12 +00001101func (m *ModuleBase) HostSupported() bool {
1102 return m.commonProperties.HostOrDeviceSupported == HostSupported ||
1103 m.commonProperties.HostOrDeviceSupported == HostAndDeviceSupported &&
1104 (m.hostAndDeviceProperties.Host_supported != nil &&
1105 *m.hostAndDeviceProperties.Host_supported)
1106}
1107
Colin Cross4157e882019-06-06 16:57:04 -07001108func (m *ModuleBase) Platform() bool {
Justin Yund5f6c822019-06-25 16:47:17 +09001109 return !m.DeviceSpecific() && !m.SocSpecific() && !m.ProductSpecific() && !m.SystemExtSpecific()
Jiyong Parkc678ad32018-04-10 13:07:10 +09001110}
1111
Colin Cross4157e882019-06-06 16:57:04 -07001112func (m *ModuleBase) DeviceSpecific() bool {
1113 return Bool(m.commonProperties.Device_specific)
Jiyong Parkc678ad32018-04-10 13:07:10 +09001114}
1115
Colin Cross4157e882019-06-06 16:57:04 -07001116func (m *ModuleBase) SocSpecific() bool {
1117 return Bool(m.commonProperties.Vendor) || Bool(m.commonProperties.Proprietary) || Bool(m.commonProperties.Soc_specific)
Jiyong Parkc678ad32018-04-10 13:07:10 +09001118}
1119
Colin Cross4157e882019-06-06 16:57:04 -07001120func (m *ModuleBase) ProductSpecific() bool {
1121 return Bool(m.commonProperties.Product_specific)
Jiyong Parkc678ad32018-04-10 13:07:10 +09001122}
1123
Justin Yund5f6c822019-06-25 16:47:17 +09001124func (m *ModuleBase) SystemExtSpecific() bool {
1125 return Bool(m.commonProperties.System_ext_specific)
Dario Frenifd05a742018-05-29 13:28:54 +01001126}
1127
Colin Crossc2d24052020-05-13 11:05:02 -07001128// RequiresStableAPIs returns true if the module will be installed to a partition that may
1129// be updated separately from the system image.
1130func (m *ModuleBase) RequiresStableAPIs(ctx BaseModuleContext) bool {
1131 return m.SocSpecific() || m.DeviceSpecific() ||
1132 (m.ProductSpecific() && ctx.Config().EnforceProductPartitionInterface())
1133}
1134
Bill Peckhamfff3f8a2020-03-20 18:33:20 -07001135func (m *ModuleBase) PartitionTag(config DeviceConfig) string {
1136 partition := "system"
1137 if m.SocSpecific() {
1138 // A SoC-specific module could be on the vendor partition at
1139 // "vendor" or the system partition at "system/vendor".
1140 if config.VendorPath() == "vendor" {
1141 partition = "vendor"
1142 }
1143 } else if m.DeviceSpecific() {
1144 // A device-specific module could be on the odm partition at
1145 // "odm", the vendor partition at "vendor/odm", or the system
1146 // partition at "system/vendor/odm".
1147 if config.OdmPath() == "odm" {
1148 partition = "odm"
Ramy Medhat944839a2020-03-31 22:14:52 -04001149 } else if strings.HasPrefix(config.OdmPath(), "vendor/") {
Bill Peckhamfff3f8a2020-03-20 18:33:20 -07001150 partition = "vendor"
1151 }
1152 } else if m.ProductSpecific() {
1153 // A product-specific module could be on the product partition
1154 // at "product" or the system partition at "system/product".
1155 if config.ProductPath() == "product" {
1156 partition = "product"
1157 }
1158 } else if m.SystemExtSpecific() {
1159 // A system_ext-specific module could be on the system_ext
1160 // partition at "system_ext" or the system partition at
1161 // "system/system_ext".
1162 if config.SystemExtPath() == "system_ext" {
1163 partition = "system_ext"
1164 }
1165 }
1166 return partition
1167}
1168
Colin Cross4157e882019-06-06 16:57:04 -07001169func (m *ModuleBase) Enabled() bool {
Justin Yun32f053b2020-07-31 23:07:17 +09001170 if m.commonProperties.ForcedDisabled {
1171 return false
1172 }
Colin Cross4157e882019-06-06 16:57:04 -07001173 if m.commonProperties.Enabled == nil {
1174 return !m.Os().DefaultDisabled
Dan Willemsen490fd492015-11-24 17:53:15 -08001175 }
Colin Cross4157e882019-06-06 16:57:04 -07001176 return *m.commonProperties.Enabled
Colin Cross3f40fa42015-01-30 17:27:36 -08001177}
1178
Inseob Kimeec88e12020-01-22 11:11:29 +09001179func (m *ModuleBase) Disable() {
Justin Yun32f053b2020-07-31 23:07:17 +09001180 m.commonProperties.ForcedDisabled = true
Inseob Kimeec88e12020-01-22 11:11:29 +09001181}
1182
Colin Cross4157e882019-06-06 16:57:04 -07001183func (m *ModuleBase) SkipInstall() {
1184 m.commonProperties.SkipInstall = true
Colin Crossce75d2c2016-10-06 16:12:58 -07001185}
1186
Ulya Trafimovichb28cc372020-01-13 15:18:16 +00001187func (m *ModuleBase) IsSkipInstall() bool {
1188 return m.commonProperties.SkipInstall == true
1189}
1190
Martin Stjernholm9e9bb7f2020-08-06 22:34:42 +01001191// Similar to SkipInstall, but if the AndroidMk entry would set
1192// LOCAL_UNINSTALLABLE_MODULE then this variant may still output that entry
1193// rather than leaving it out altogether. That happens in cases where it would
1194// have other side effects, in particular when it adds a NOTICE file target,
1195// which other install targets might depend on.
1196func (m *ModuleBase) MakeUninstallable() {
1197 m.SkipInstall()
1198}
1199
Liz Kammer5ca3a622020-08-05 15:40:41 -07001200func (m *ModuleBase) ReplacedByPrebuilt() {
1201 m.commonProperties.ReplacedByPrebuilt = true
1202 m.SkipInstall()
1203}
1204
1205func (m *ModuleBase) IsReplacedByPrebuilt() bool {
1206 return m.commonProperties.ReplacedByPrebuilt
1207}
1208
Colin Cross4157e882019-06-06 16:57:04 -07001209func (m *ModuleBase) ExportedToMake() bool {
1210 return m.commonProperties.NamespaceExportedToMake
Jiyong Park374510b2018-03-19 18:23:01 +09001211}
1212
Colin Cross897266e2020-02-13 13:22:08 -08001213func (m *ModuleBase) computeInstallDeps(ctx blueprint.ModuleContext) InstallPaths {
Colin Cross3f40fa42015-01-30 17:27:36 -08001214
Colin Cross897266e2020-02-13 13:22:08 -08001215 var result InstallPaths
Colin Cross6b753602018-06-21 13:03:07 -07001216 // TODO(ccross): we need to use WalkDeps and have some way to know which dependencies require installation
Colin Cross897266e2020-02-13 13:22:08 -08001217 ctx.VisitDepsDepthFirst(func(m blueprint.Module) {
1218 if a, ok := m.(Module); ok {
1219 result = append(result, a.filesToInstall()...)
1220 }
1221 })
Colin Cross3f40fa42015-01-30 17:27:36 -08001222
1223 return result
1224}
1225
Colin Cross897266e2020-02-13 13:22:08 -08001226func (m *ModuleBase) filesToInstall() InstallPaths {
Colin Cross4157e882019-06-06 16:57:04 -07001227 return m.installFiles
Colin Cross3f40fa42015-01-30 17:27:36 -08001228}
1229
Colin Cross4157e882019-06-06 16:57:04 -07001230func (m *ModuleBase) NoAddressSanitizer() bool {
1231 return m.noAddressSanitizer
Colin Cross3f40fa42015-01-30 17:27:36 -08001232}
1233
Colin Cross4157e882019-06-06 16:57:04 -07001234func (m *ModuleBase) InstallInData() bool {
Dan Willemsen782a2d12015-12-21 14:55:28 -08001235 return false
1236}
1237
Jaewoong Jung0949f312019-09-11 10:25:18 -07001238func (m *ModuleBase) InstallInTestcases() bool {
1239 return false
1240}
1241
Colin Cross4157e882019-06-06 16:57:04 -07001242func (m *ModuleBase) InstallInSanitizerDir() bool {
Vishwath Mohan1dd88392017-03-29 22:00:18 -07001243 return false
1244}
1245
Yifan Hong1b3348d2020-01-21 15:53:22 -08001246func (m *ModuleBase) InstallInRamdisk() bool {
1247 return Bool(m.commonProperties.Ramdisk)
1248}
1249
Colin Cross4157e882019-06-06 16:57:04 -07001250func (m *ModuleBase) InstallInRecovery() bool {
1251 return Bool(m.commonProperties.Recovery)
Jiyong Parkf9332f12018-02-01 00:54:12 +09001252}
1253
Colin Cross90ba5f42019-10-02 11:10:58 -07001254func (m *ModuleBase) InstallInRoot() bool {
1255 return false
1256}
1257
Colin Cross607d8582019-07-29 16:44:46 -07001258func (m *ModuleBase) InstallBypassMake() bool {
1259 return false
1260}
1261
Jiyong Park87788b52020-09-01 12:37:45 +09001262func (m *ModuleBase) InstallForceOS() (*OsType, *ArchType) {
1263 return nil, nil
Colin Cross6e359402020-02-10 15:29:54 -08001264}
1265
Colin Cross4157e882019-06-06 16:57:04 -07001266func (m *ModuleBase) Owner() string {
1267 return String(m.commonProperties.Owner)
Sundong Ahn4fd04bb2018-08-31 18:01:37 +09001268}
1269
Bob Badoura75b0572020-02-18 20:21:55 -08001270func (m *ModuleBase) NoticeFiles() Paths {
1271 return m.noticeFiles
Jiyong Park52818fc2019-03-18 12:01:38 +09001272}
1273
Colin Cross7228ecd2019-11-18 16:00:16 -08001274func (m *ModuleBase) setImageVariation(variant string) {
1275 m.commonProperties.ImageVariation = variant
1276}
1277
1278func (m *ModuleBase) ImageVariation() blueprint.Variation {
1279 return blueprint.Variation{
1280 Mutator: "image",
1281 Variation: m.base().commonProperties.ImageVariation,
1282 }
1283}
1284
Paul Duffin9b76c0b2020-03-12 10:24:35 +00001285func (m *ModuleBase) getVariationByMutatorName(mutator string) string {
1286 for i, v := range m.commonProperties.DebugMutators {
1287 if v == mutator {
1288 return m.commonProperties.DebugVariations[i]
1289 }
1290 }
1291
1292 return ""
1293}
1294
Yifan Hong1b3348d2020-01-21 15:53:22 -08001295func (m *ModuleBase) InRamdisk() bool {
1296 return m.base().commonProperties.ImageVariation == RamdiskVariation
1297}
1298
Colin Cross7228ecd2019-11-18 16:00:16 -08001299func (m *ModuleBase) InRecovery() bool {
1300 return m.base().commonProperties.ImageVariation == RecoveryVariation
1301}
1302
Jiyong Park6a8cf5f2019-12-30 16:31:09 +09001303func (m *ModuleBase) RequiredModuleNames() []string {
1304 return m.base().commonProperties.Required
1305}
1306
1307func (m *ModuleBase) HostRequiredModuleNames() []string {
1308 return m.base().commonProperties.Host_required
1309}
1310
1311func (m *ModuleBase) TargetRequiredModuleNames() []string {
1312 return m.base().commonProperties.Target_required
1313}
1314
Inseob Kim8471cda2019-11-15 09:59:12 +09001315func (m *ModuleBase) InitRc() Paths {
1316 return append(Paths{}, m.initRcPaths...)
1317}
1318
1319func (m *ModuleBase) VintfFragments() Paths {
1320 return append(Paths{}, m.vintfFragmentsPaths...)
1321}
1322
Colin Cross4157e882019-06-06 16:57:04 -07001323func (m *ModuleBase) generateModuleTarget(ctx ModuleContext) {
Colin Cross897266e2020-02-13 13:22:08 -08001324 var allInstalledFiles InstallPaths
1325 var allCheckbuildFiles Paths
Colin Cross0875c522017-11-28 17:34:01 -08001326 ctx.VisitAllModuleVariants(func(module Module) {
1327 a := module.base()
Colin Crossc9404352015-03-26 16:10:12 -07001328 allInstalledFiles = append(allInstalledFiles, a.installFiles...)
1329 allCheckbuildFiles = append(allCheckbuildFiles, a.checkbuildFiles...)
Colin Cross3f40fa42015-01-30 17:27:36 -08001330 })
1331
Colin Cross0875c522017-11-28 17:34:01 -08001332 var deps Paths
Colin Cross9454bfa2015-03-17 13:24:18 -07001333
Colin Cross133ebef2020-08-14 17:38:45 -07001334 namespacePrefix := ctx.Namespace().id
Jeff Gaston088e29e2017-11-29 16:47:17 -08001335 if namespacePrefix != "" {
1336 namespacePrefix = namespacePrefix + "-"
1337 }
1338
Colin Cross3f40fa42015-01-30 17:27:36 -08001339 if len(allInstalledFiles) > 0 {
Colin Crossc3d87d32020-06-04 13:25:17 -07001340 name := namespacePrefix + ctx.ModuleName() + "-install"
1341 ctx.Phony(name, allInstalledFiles.Paths()...)
1342 m.installTarget = PathForPhony(ctx, name)
1343 deps = append(deps, m.installTarget)
Colin Cross9454bfa2015-03-17 13:24:18 -07001344 }
1345
1346 if len(allCheckbuildFiles) > 0 {
Colin Crossc3d87d32020-06-04 13:25:17 -07001347 name := namespacePrefix + ctx.ModuleName() + "-checkbuild"
1348 ctx.Phony(name, allCheckbuildFiles...)
1349 m.checkbuildTarget = PathForPhony(ctx, name)
1350 deps = append(deps, m.checkbuildTarget)
Colin Cross9454bfa2015-03-17 13:24:18 -07001351 }
1352
1353 if len(deps) > 0 {
Dan Willemsen5ba07e82015-12-11 13:51:06 -08001354 suffix := ""
Colin Crossaabf6792017-11-29 00:27:14 -08001355 if ctx.Config().EmbeddedInMake() {
Dan Willemsen5ba07e82015-12-11 13:51:06 -08001356 suffix = "-soong"
1357 }
1358
Colin Crossc3d87d32020-06-04 13:25:17 -07001359 ctx.Phony(namespacePrefix+ctx.ModuleName()+suffix, deps...)
Colin Cross1f8c52b2015-06-16 16:38:17 -07001360
Colin Cross4157e882019-06-06 16:57:04 -07001361 m.blueprintDir = ctx.ModuleDir()
Colin Cross3f40fa42015-01-30 17:27:36 -08001362 }
1363}
1364
Colin Crossc34d2322020-01-03 15:23:27 -08001365func determineModuleKind(m *ModuleBase, ctx blueprint.EarlyModuleContext) moduleKind {
Colin Cross4157e882019-06-06 16:57:04 -07001366 var socSpecific = Bool(m.commonProperties.Vendor) || Bool(m.commonProperties.Proprietary) || Bool(m.commonProperties.Soc_specific)
1367 var deviceSpecific = Bool(m.commonProperties.Device_specific)
1368 var productSpecific = Bool(m.commonProperties.Product_specific)
Justin Yund5f6c822019-06-25 16:47:17 +09001369 var systemExtSpecific = Bool(m.commonProperties.System_ext_specific)
Jiyong Park2db76922017-11-08 16:03:48 +09001370
Dario Frenifd05a742018-05-29 13:28:54 +01001371 msg := "conflicting value set here"
1372 if socSpecific && deviceSpecific {
1373 ctx.PropertyErrorf("device_specific", "a module cannot be specific to SoC and device at the same time.")
Colin Cross4157e882019-06-06 16:57:04 -07001374 if Bool(m.commonProperties.Vendor) {
Jiyong Park2db76922017-11-08 16:03:48 +09001375 ctx.PropertyErrorf("vendor", msg)
1376 }
Colin Cross4157e882019-06-06 16:57:04 -07001377 if Bool(m.commonProperties.Proprietary) {
Jiyong Park2db76922017-11-08 16:03:48 +09001378 ctx.PropertyErrorf("proprietary", msg)
1379 }
Colin Cross4157e882019-06-06 16:57:04 -07001380 if Bool(m.commonProperties.Soc_specific) {
Jiyong Park2db76922017-11-08 16:03:48 +09001381 ctx.PropertyErrorf("soc_specific", msg)
1382 }
1383 }
1384
Justin Yund5f6c822019-06-25 16:47:17 +09001385 if productSpecific && systemExtSpecific {
1386 ctx.PropertyErrorf("product_specific", "a module cannot be specific to product and system_ext at the same time.")
1387 ctx.PropertyErrorf("system_ext_specific", msg)
Dario Frenifd05a742018-05-29 13:28:54 +01001388 }
1389
Justin Yund5f6c822019-06-25 16:47:17 +09001390 if (socSpecific || deviceSpecific) && (productSpecific || systemExtSpecific) {
Dario Frenifd05a742018-05-29 13:28:54 +01001391 if productSpecific {
1392 ctx.PropertyErrorf("product_specific", "a module cannot be specific to SoC or device and product at the same time.")
1393 } else {
Justin Yund5f6c822019-06-25 16:47:17 +09001394 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 +01001395 }
1396 if deviceSpecific {
1397 ctx.PropertyErrorf("device_specific", msg)
1398 } else {
Colin Cross4157e882019-06-06 16:57:04 -07001399 if Bool(m.commonProperties.Vendor) {
Dario Frenifd05a742018-05-29 13:28:54 +01001400 ctx.PropertyErrorf("vendor", msg)
1401 }
Colin Cross4157e882019-06-06 16:57:04 -07001402 if Bool(m.commonProperties.Proprietary) {
Dario Frenifd05a742018-05-29 13:28:54 +01001403 ctx.PropertyErrorf("proprietary", msg)
1404 }
Colin Cross4157e882019-06-06 16:57:04 -07001405 if Bool(m.commonProperties.Soc_specific) {
Dario Frenifd05a742018-05-29 13:28:54 +01001406 ctx.PropertyErrorf("soc_specific", msg)
1407 }
1408 }
1409 }
1410
Jiyong Park2db76922017-11-08 16:03:48 +09001411 if productSpecific {
1412 return productSpecificModule
Justin Yund5f6c822019-06-25 16:47:17 +09001413 } else if systemExtSpecific {
1414 return systemExtSpecificModule
Jiyong Park2db76922017-11-08 16:03:48 +09001415 } else if deviceSpecific {
1416 return deviceSpecificModule
1417 } else if socSpecific {
1418 return socSpecificModule
1419 } else {
1420 return platformModule
1421 }
1422}
1423
Colin Crossc34d2322020-01-03 15:23:27 -08001424func (m *ModuleBase) earlyModuleContextFactory(ctx blueprint.EarlyModuleContext) earlyModuleContext {
Colin Cross1184b642019-12-30 18:43:07 -08001425 return earlyModuleContext{
Colin Crossc34d2322020-01-03 15:23:27 -08001426 EarlyModuleContext: ctx,
1427 kind: determineModuleKind(m, ctx),
1428 config: ctx.Config().(Config),
Colin Cross3f40fa42015-01-30 17:27:36 -08001429 }
Colin Cross3f40fa42015-01-30 17:27:36 -08001430}
1431
Colin Cross1184b642019-12-30 18:43:07 -08001432func (m *ModuleBase) baseModuleContextFactory(ctx blueprint.BaseModuleContext) baseModuleContext {
1433 return baseModuleContext{
1434 bp: ctx,
1435 earlyModuleContext: m.earlyModuleContextFactory(ctx),
1436 os: m.commonProperties.CompileOS,
1437 target: m.commonProperties.CompileTarget,
1438 targetPrimary: m.commonProperties.CompilePrimary,
1439 multiTargets: m.commonProperties.CompileMultiTargets,
1440 }
1441}
1442
Colin Cross4157e882019-06-06 16:57:04 -07001443func (m *ModuleBase) GenerateBuildActions(blueprintCtx blueprint.ModuleContext) {
Colin Cross25de6c32019-06-06 14:29:25 -07001444 ctx := &moduleContext{
Colin Cross0ea8ba82019-06-06 14:33:29 -07001445 module: m.module,
Colin Crossdc35e212019-06-06 16:13:11 -07001446 bp: blueprintCtx,
Colin Cross0ea8ba82019-06-06 14:33:29 -07001447 baseModuleContext: m.baseModuleContextFactory(blueprintCtx),
1448 installDeps: m.computeInstallDeps(blueprintCtx),
1449 installFiles: m.installFiles,
Colin Cross0ea8ba82019-06-06 14:33:29 -07001450 variables: make(map[string]string),
Colin Cross3f40fa42015-01-30 17:27:36 -08001451 }
1452
Colin Cross6c4f21f2019-06-06 15:41:36 -07001453 // Temporarily continue to call blueprintCtx.GetMissingDependencies() to maintain the previous behavior of never
1454 // reporting missing dependency errors in Blueprint when AllowMissingDependencies == true.
1455 // TODO: This will be removed once defaults modules handle missing dependency errors
1456 blueprintCtx.GetMissingDependencies()
1457
Colin Crossdc35e212019-06-06 16:13:11 -07001458 // For the final GenerateAndroidBuildActions pass, require that all visited dependencies Soong modules and
Paul Duffin1356d8c2020-02-25 19:26:33 +00001459 // are enabled. Unless the module is a CommonOS variant which may have dependencies on disabled variants
1460 // (because the dependencies are added before the modules are disabled). The
1461 // GetOsSpecificVariantsOfCommonOSVariant(...) method will ensure that the disabled variants are
1462 // ignored.
1463 ctx.baseModuleContext.strictVisitDeps = !m.IsCommonOSVariant()
Colin Crossdc35e212019-06-06 16:13:11 -07001464
Colin Cross4c83e5c2019-02-25 14:54:28 -08001465 if ctx.config.captureBuild {
1466 ctx.ruleParams = make(map[blueprint.Rule]blueprint.RuleParams)
1467 }
1468
Colin Cross67a5c132017-05-09 13:45:28 -07001469 desc := "//" + ctx.ModuleDir() + ":" + ctx.ModuleName() + " "
1470 var suffix []string
Colin Cross0875c522017-11-28 17:34:01 -08001471 if ctx.Os().Class != Device && ctx.Os().Class != Generic {
1472 suffix = append(suffix, ctx.Os().String())
Colin Cross67a5c132017-05-09 13:45:28 -07001473 }
Colin Cross0875c522017-11-28 17:34:01 -08001474 if !ctx.PrimaryArch() {
1475 suffix = append(suffix, ctx.Arch().ArchType.String())
Colin Cross67a5c132017-05-09 13:45:28 -07001476 }
Dan Willemsenb13a9482020-02-14 11:25:54 -08001477 if apex, ok := m.module.(ApexModule); ok && !apex.IsForPlatform() {
Colin Crosse07f2312020-08-13 11:24:56 -07001478 suffix = append(suffix, apex.ApexVariationName())
Dan Willemsenb13a9482020-02-14 11:25:54 -08001479 }
Colin Cross67a5c132017-05-09 13:45:28 -07001480
1481 ctx.Variable(pctx, "moduleDesc", desc)
1482
1483 s := ""
1484 if len(suffix) > 0 {
1485 s = " [" + strings.Join(suffix, " ") + "]"
1486 }
1487 ctx.Variable(pctx, "moduleDescSuffix", s)
1488
Dan Willemsen569edc52018-11-19 09:33:29 -08001489 // Some common property checks for properties that will be used later in androidmk.go
Paul Duffined875132020-09-02 13:08:57 +01001490 if m.distProperties.Dist.Dest != nil {
1491 _, err := validateSafePath(*m.distProperties.Dist.Dest)
Dan Willemsen569edc52018-11-19 09:33:29 -08001492 if err != nil {
1493 ctx.PropertyErrorf("dist.dest", "%s", err.Error())
1494 }
1495 }
Paul Duffined875132020-09-02 13:08:57 +01001496 if m.distProperties.Dist.Dir != nil {
1497 _, err := validateSafePath(*m.distProperties.Dist.Dir)
Dan Willemsen569edc52018-11-19 09:33:29 -08001498 if err != nil {
1499 ctx.PropertyErrorf("dist.dir", "%s", err.Error())
1500 }
1501 }
Paul Duffined875132020-09-02 13:08:57 +01001502 if m.distProperties.Dist.Suffix != nil {
1503 if strings.Contains(*m.distProperties.Dist.Suffix, "/") {
Dan Willemsen569edc52018-11-19 09:33:29 -08001504 ctx.PropertyErrorf("dist.suffix", "Suffix may not contain a '/' character.")
1505 }
1506 }
1507
Colin Cross4157e882019-06-06 16:57:04 -07001508 if m.Enabled() {
Jooyung Hand48f3c32019-08-23 11:18:57 +09001509 // ensure all direct android.Module deps are enabled
1510 ctx.VisitDirectDepsBlueprint(func(bm blueprint.Module) {
1511 if _, ok := bm.(Module); ok {
1512 ctx.validateAndroidModule(bm, ctx.baseModuleContext.strictVisitDeps)
1513 }
1514 })
1515
Bob Badoura75b0572020-02-18 20:21:55 -08001516 m.noticeFiles = make([]Path, 0)
1517 optPath := OptionalPath{}
1518 notice := proptools.StringDefault(m.commonProperties.Notice, "")
Colin Cross4157e882019-06-06 16:57:04 -07001519 if module := SrcIsModule(notice); module != "" {
Bob Badoura75b0572020-02-18 20:21:55 -08001520 optPath = ctx.ExpandOptionalSource(&notice, "notice")
1521 } else if notice != "" {
Jiyong Park52818fc2019-03-18 12:01:38 +09001522 noticePath := filepath.Join(ctx.ModuleDir(), notice)
Bob Badoura75b0572020-02-18 20:21:55 -08001523 optPath = ExistentPathForSource(ctx, noticePath)
1524 }
1525 if optPath.Valid() {
1526 m.noticeFiles = append(m.noticeFiles, optPath.Path())
1527 } else {
1528 for _, notice = range []string{"LICENSE", "LICENCE", "NOTICE"} {
1529 noticePath := filepath.Join(ctx.ModuleDir(), notice)
1530 optPath = ExistentPathForSource(ctx, noticePath)
1531 if optPath.Valid() {
1532 m.noticeFiles = append(m.noticeFiles, optPath.Path())
1533 }
1534 }
Jaewoong Jung62707f72018-11-16 13:26:43 -08001535 }
Jaewoong Jung5b425e22019-06-17 17:40:56 -07001536
1537 m.module.GenerateAndroidBuildActions(ctx)
1538 if ctx.Failed() {
1539 return
1540 }
1541
1542 m.installFiles = append(m.installFiles, ctx.installFiles...)
1543 m.checkbuildFiles = append(m.checkbuildFiles, ctx.checkbuildFiles...)
Inseob Kim8471cda2019-11-15 09:59:12 +09001544 m.initRcPaths = PathsForModuleSrc(ctx, m.commonProperties.Init_rc)
1545 m.vintfFragmentsPaths = PathsForModuleSrc(ctx, m.commonProperties.Vintf_fragments)
Colin Crossc3d87d32020-06-04 13:25:17 -07001546 for k, v := range ctx.phonies {
1547 m.phonies[k] = append(m.phonies[k], v...)
1548 }
Colin Crossdc35e212019-06-06 16:13:11 -07001549 } else if ctx.Config().AllowMissingDependencies() {
1550 // If the module is not enabled it will not create any build rules, nothing will call
1551 // ctx.GetMissingDependencies(), and blueprint will consider the missing dependencies to be unhandled
1552 // and report them as an error even when AllowMissingDependencies = true. Call
1553 // ctx.GetMissingDependencies() here to tell blueprint not to handle them.
1554 ctx.GetMissingDependencies()
Colin Cross3f40fa42015-01-30 17:27:36 -08001555 }
1556
Colin Cross4157e882019-06-06 16:57:04 -07001557 if m == ctx.FinalModule().(Module).base() {
1558 m.generateModuleTarget(ctx)
Colin Cross9b1d13d2016-09-19 15:18:11 -07001559 if ctx.Failed() {
1560 return
1561 }
Colin Cross3f40fa42015-01-30 17:27:36 -08001562 }
Colin Crosscec81712017-07-13 14:43:27 -07001563
Colin Cross4157e882019-06-06 16:57:04 -07001564 m.buildParams = ctx.buildParams
1565 m.ruleParams = ctx.ruleParams
1566 m.variables = ctx.variables
Colin Cross3f40fa42015-01-30 17:27:36 -08001567}
1568
Colin Cross1184b642019-12-30 18:43:07 -08001569type earlyModuleContext struct {
Colin Crossc34d2322020-01-03 15:23:27 -08001570 blueprint.EarlyModuleContext
Colin Cross1184b642019-12-30 18:43:07 -08001571
1572 kind moduleKind
1573 config Config
1574}
1575
1576func (e *earlyModuleContext) Glob(globPattern string, excludes []string) Paths {
1577 ret, err := e.GlobWithDeps(globPattern, excludes)
1578 if err != nil {
1579 e.ModuleErrorf("glob: %s", err.Error())
1580 }
1581 return pathsForModuleSrcFromFullPath(e, ret, true)
1582}
1583
1584func (e *earlyModuleContext) GlobFiles(globPattern string, excludes []string) Paths {
1585 ret, err := e.GlobWithDeps(globPattern, excludes)
1586 if err != nil {
1587 e.ModuleErrorf("glob: %s", err.Error())
1588 }
1589 return pathsForModuleSrcFromFullPath(e, ret, false)
1590}
1591
Colin Cross988414c2020-01-11 01:11:46 +00001592func (b *earlyModuleContext) IsSymlink(path Path) bool {
1593 fileInfo, err := b.config.fs.Lstat(path.String())
1594 if err != nil {
1595 b.ModuleErrorf("os.Lstat(%q) failed: %s", path.String(), err)
1596 }
1597 return fileInfo.Mode()&os.ModeSymlink == os.ModeSymlink
1598}
1599
1600func (b *earlyModuleContext) Readlink(path Path) string {
1601 dest, err := b.config.fs.Readlink(path.String())
1602 if err != nil {
1603 b.ModuleErrorf("os.Readlink(%q) failed: %s", path.String(), err)
1604 }
1605 return dest
1606}
1607
Colin Cross1184b642019-12-30 18:43:07 -08001608func (e *earlyModuleContext) Module() Module {
Colin Crossc34d2322020-01-03 15:23:27 -08001609 module, _ := e.EarlyModuleContext.Module().(Module)
Colin Cross1184b642019-12-30 18:43:07 -08001610 return module
1611}
1612
1613func (e *earlyModuleContext) Config() Config {
Colin Crossc34d2322020-01-03 15:23:27 -08001614 return e.EarlyModuleContext.Config().(Config)
Colin Cross1184b642019-12-30 18:43:07 -08001615}
1616
1617func (e *earlyModuleContext) AConfig() Config {
1618 return e.config
1619}
1620
1621func (e *earlyModuleContext) DeviceConfig() DeviceConfig {
1622 return DeviceConfig{e.config.deviceConfig}
1623}
1624
1625func (e *earlyModuleContext) Platform() bool {
1626 return e.kind == platformModule
1627}
1628
1629func (e *earlyModuleContext) DeviceSpecific() bool {
1630 return e.kind == deviceSpecificModule
1631}
1632
1633func (e *earlyModuleContext) SocSpecific() bool {
1634 return e.kind == socSpecificModule
1635}
1636
1637func (e *earlyModuleContext) ProductSpecific() bool {
1638 return e.kind == productSpecificModule
1639}
1640
1641func (e *earlyModuleContext) SystemExtSpecific() bool {
1642 return e.kind == systemExtSpecificModule
1643}
1644
Colin Cross133ebef2020-08-14 17:38:45 -07001645func (e *earlyModuleContext) Namespace() *Namespace {
1646 return e.EarlyModuleContext.Namespace().(*Namespace)
1647}
1648
Colin Cross1184b642019-12-30 18:43:07 -08001649type baseModuleContext struct {
1650 bp blueprint.BaseModuleContext
1651 earlyModuleContext
Colin Crossfb0c16e2019-11-20 17:12:35 -08001652 os OsType
Colin Cross8b74d172016-09-13 09:59:14 -07001653 target Target
Colin Crossee0bc3b2018-10-02 22:01:37 -07001654 multiTargets []Target
Colin Cross8b74d172016-09-13 09:59:14 -07001655 targetPrimary bool
1656 debug bool
Colin Crossdc35e212019-06-06 16:13:11 -07001657
1658 walkPath []Module
Paul Duffinc5192442020-03-31 11:31:36 +01001659 tagPath []blueprint.DependencyTag
Colin Crossdc35e212019-06-06 16:13:11 -07001660
1661 strictVisitDeps bool // If true, enforce that all dependencies are enabled
Colin Crossf6566ed2015-03-24 11:13:38 -07001662}
1663
Paul Duffinca7f0ef2020-02-25 15:50:49 +00001664func (b *baseModuleContext) OtherModuleName(m blueprint.Module) string {
1665 return b.bp.OtherModuleName(m)
1666}
1667func (b *baseModuleContext) OtherModuleDir(m blueprint.Module) string { return b.bp.OtherModuleDir(m) }
Colin Cross1184b642019-12-30 18:43:07 -08001668func (b *baseModuleContext) OtherModuleErrorf(m blueprint.Module, fmt string, args ...interface{}) {
Jooyung Hancd87c692020-02-26 02:05:18 +09001669 b.bp.OtherModuleErrorf(m, fmt, args...)
Colin Cross1184b642019-12-30 18:43:07 -08001670}
1671func (b *baseModuleContext) OtherModuleDependencyTag(m blueprint.Module) blueprint.DependencyTag {
1672 return b.bp.OtherModuleDependencyTag(m)
1673}
Paul Duffinca7f0ef2020-02-25 15:50:49 +00001674func (b *baseModuleContext) OtherModuleExists(name string) bool { return b.bp.OtherModuleExists(name) }
Martin Stjernholm009a9dc2020-03-05 17:34:13 +00001675func (b *baseModuleContext) OtherModuleDependencyVariantExists(variations []blueprint.Variation, name string) bool {
1676 return b.bp.OtherModuleDependencyVariantExists(variations, name)
1677}
1678func (b *baseModuleContext) OtherModuleReverseDependencyVariantExists(name string) bool {
1679 return b.bp.OtherModuleReverseDependencyVariantExists(name)
1680}
Paul Duffinca7f0ef2020-02-25 15:50:49 +00001681func (b *baseModuleContext) OtherModuleType(m blueprint.Module) string {
1682 return b.bp.OtherModuleType(m)
1683}
Colin Cross1184b642019-12-30 18:43:07 -08001684
1685func (b *baseModuleContext) GetDirectDepWithTag(name string, tag blueprint.DependencyTag) blueprint.Module {
1686 return b.bp.GetDirectDepWithTag(name, tag)
1687}
1688
Paul Duffinf88d8e02020-05-07 20:21:34 +01001689func (b *baseModuleContext) blueprintBaseModuleContext() blueprint.BaseModuleContext {
1690 return b.bp
1691}
1692
Colin Cross25de6c32019-06-06 14:29:25 -07001693type moduleContext struct {
Colin Crossdc35e212019-06-06 16:13:11 -07001694 bp blueprint.ModuleContext
Colin Cross0ea8ba82019-06-06 14:33:29 -07001695 baseModuleContext
Colin Cross897266e2020-02-13 13:22:08 -08001696 installDeps InstallPaths
1697 installFiles InstallPaths
Dan Willemsen34cc69e2015-09-23 15:26:20 -07001698 checkbuildFiles Paths
Colin Cross8d8f8e22016-08-03 11:57:50 -07001699 module Module
Colin Crossc3d87d32020-06-04 13:25:17 -07001700 phonies map[string]Paths
Colin Crosscec81712017-07-13 14:43:27 -07001701
1702 // For tests
Colin Crossae887032017-10-23 17:16:14 -07001703 buildParams []BuildParams
Colin Cross4c83e5c2019-02-25 14:54:28 -08001704 ruleParams map[blueprint.Rule]blueprint.RuleParams
Jaewoong Jung38e4fb22018-12-12 09:01:34 -08001705 variables map[string]string
Colin Cross6ff51382015-12-17 16:39:19 -08001706}
1707
Colin Crossb88b3c52019-06-10 15:15:17 -07001708func (m *moduleContext) ninjaError(params BuildParams, err error) (PackageContext, BuildParams) {
1709 return pctx, BuildParams{
Colin Cross4b69c492019-06-07 13:06:06 -07001710 Rule: ErrorRule,
1711 Description: params.Description,
1712 Output: params.Output,
1713 Outputs: params.Outputs,
1714 ImplicitOutput: params.ImplicitOutput,
1715 ImplicitOutputs: params.ImplicitOutputs,
Colin Cross6ff51382015-12-17 16:39:19 -08001716 Args: map[string]string{
1717 "error": err.Error(),
1718 },
Colin Crossb88b3c52019-06-10 15:15:17 -07001719 }
Colin Cross3f40fa42015-01-30 17:27:36 -08001720}
1721
Colin Cross25de6c32019-06-06 14:29:25 -07001722func (m *moduleContext) ModuleBuild(pctx PackageContext, params ModuleBuildParams) {
1723 m.Build(pctx, BuildParams(params))
Colin Cross3f40fa42015-01-30 17:27:36 -08001724}
1725
Colin Cross0875c522017-11-28 17:34:01 -08001726func convertBuildParams(params BuildParams) blueprint.BuildParams {
Dan Willemsen34cc69e2015-09-23 15:26:20 -07001727 bparams := blueprint.BuildParams{
Dan Willemsen9f3c5742016-11-03 14:28:31 -07001728 Rule: params.Rule,
Colin Cross0875c522017-11-28 17:34:01 -08001729 Description: params.Description,
Colin Cross33bfb0a2016-11-21 17:23:08 -08001730 Deps: params.Deps,
Dan Willemsen9f3c5742016-11-03 14:28:31 -07001731 Outputs: params.Outputs.Strings(),
1732 ImplicitOutputs: params.ImplicitOutputs.Strings(),
1733 Inputs: params.Inputs.Strings(),
1734 Implicits: params.Implicits.Strings(),
1735 OrderOnly: params.OrderOnly.Strings(),
Colin Cross824f1162020-07-16 13:07:51 -07001736 Validations: params.Validations.Strings(),
Dan Willemsen9f3c5742016-11-03 14:28:31 -07001737 Args: params.Args,
1738 Optional: !params.Default,
Dan Willemsen34cc69e2015-09-23 15:26:20 -07001739 }
1740
Colin Cross33bfb0a2016-11-21 17:23:08 -08001741 if params.Depfile != nil {
1742 bparams.Depfile = params.Depfile.String()
1743 }
Dan Willemsen34cc69e2015-09-23 15:26:20 -07001744 if params.Output != nil {
1745 bparams.Outputs = append(bparams.Outputs, params.Output.String())
1746 }
Dan Willemsen9f3c5742016-11-03 14:28:31 -07001747 if params.ImplicitOutput != nil {
1748 bparams.ImplicitOutputs = append(bparams.ImplicitOutputs, params.ImplicitOutput.String())
1749 }
Dan Willemsen34cc69e2015-09-23 15:26:20 -07001750 if params.Input != nil {
1751 bparams.Inputs = append(bparams.Inputs, params.Input.String())
1752 }
1753 if params.Implicit != nil {
1754 bparams.Implicits = append(bparams.Implicits, params.Implicit.String())
1755 }
Colin Cross824f1162020-07-16 13:07:51 -07001756 if params.Validation != nil {
1757 bparams.Validations = append(bparams.Validations, params.Validation.String())
1758 }
Dan Willemsen34cc69e2015-09-23 15:26:20 -07001759
Colin Cross0b9f31f2019-02-28 11:00:01 -08001760 bparams.Outputs = proptools.NinjaEscapeList(bparams.Outputs)
1761 bparams.ImplicitOutputs = proptools.NinjaEscapeList(bparams.ImplicitOutputs)
1762 bparams.Inputs = proptools.NinjaEscapeList(bparams.Inputs)
1763 bparams.Implicits = proptools.NinjaEscapeList(bparams.Implicits)
1764 bparams.OrderOnly = proptools.NinjaEscapeList(bparams.OrderOnly)
Colin Cross824f1162020-07-16 13:07:51 -07001765 bparams.Validations = proptools.NinjaEscapeList(bparams.Validations)
1766 bparams.Depfile = proptools.NinjaEscape(bparams.Depfile)
Colin Crossfe4bc362018-09-12 10:02:13 -07001767
Colin Cross0875c522017-11-28 17:34:01 -08001768 return bparams
1769}
1770
Colin Cross25de6c32019-06-06 14:29:25 -07001771func (m *moduleContext) Variable(pctx PackageContext, name, value string) {
1772 if m.config.captureBuild {
1773 m.variables[name] = value
Jaewoong Jung38e4fb22018-12-12 09:01:34 -08001774 }
1775
Colin Crossdc35e212019-06-06 16:13:11 -07001776 m.bp.Variable(pctx.PackageContext, name, value)
Colin Cross0875c522017-11-28 17:34:01 -08001777}
1778
Colin Cross25de6c32019-06-06 14:29:25 -07001779func (m *moduleContext) Rule(pctx PackageContext, name string, params blueprint.RuleParams,
Colin Cross0875c522017-11-28 17:34:01 -08001780 argNames ...string) blueprint.Rule {
1781
Ramy Medhat944839a2020-03-31 22:14:52 -04001782 if m.config.UseRemoteBuild() {
1783 if params.Pool == nil {
1784 // When USE_GOMA=true or USE_RBE=true are set and the rule is not supported by goma/RBE, restrict
1785 // jobs to the local parallelism value
1786 params.Pool = localPool
1787 } else if params.Pool == remotePool {
1788 // remotePool is a fake pool used to identify rule that are supported for remoting. If the rule's
1789 // pool is the remotePool, replace with nil so that ninja runs it at NINJA_REMOTE_NUM_JOBS
1790 // parallelism.
1791 params.Pool = nil
1792 }
Colin Cross2e2dbc22019-09-25 13:31:46 -07001793 }
1794
Colin Crossdc35e212019-06-06 16:13:11 -07001795 rule := m.bp.Rule(pctx.PackageContext, name, params, argNames...)
Colin Cross4c83e5c2019-02-25 14:54:28 -08001796
Colin Cross25de6c32019-06-06 14:29:25 -07001797 if m.config.captureBuild {
1798 m.ruleParams[rule] = params
Colin Cross4c83e5c2019-02-25 14:54:28 -08001799 }
1800
1801 return rule
Colin Cross0875c522017-11-28 17:34:01 -08001802}
1803
Colin Cross25de6c32019-06-06 14:29:25 -07001804func (m *moduleContext) Build(pctx PackageContext, params BuildParams) {
Colin Crossb88b3c52019-06-10 15:15:17 -07001805 if params.Description != "" {
1806 params.Description = "${moduleDesc}" + params.Description + "${moduleDescSuffix}"
1807 }
1808
1809 if missingDeps := m.GetMissingDependencies(); len(missingDeps) > 0 {
1810 pctx, params = m.ninjaError(params, fmt.Errorf("module %s missing dependencies: %s\n",
1811 m.ModuleName(), strings.Join(missingDeps, ", ")))
1812 }
1813
Colin Cross25de6c32019-06-06 14:29:25 -07001814 if m.config.captureBuild {
1815 m.buildParams = append(m.buildParams, params)
Colin Cross0875c522017-11-28 17:34:01 -08001816 }
1817
Colin Crossdc35e212019-06-06 16:13:11 -07001818 m.bp.Build(pctx.PackageContext, convertBuildParams(params))
Dan Willemsen34cc69e2015-09-23 15:26:20 -07001819}
Colin Crossc3d87d32020-06-04 13:25:17 -07001820
1821func (m *moduleContext) Phony(name string, deps ...Path) {
1822 addPhony(m.config, name, deps...)
1823}
1824
Colin Cross25de6c32019-06-06 14:29:25 -07001825func (m *moduleContext) GetMissingDependencies() []string {
Colin Cross6c4f21f2019-06-06 15:41:36 -07001826 var missingDeps []string
1827 missingDeps = append(missingDeps, m.Module().base().commonProperties.MissingDeps...)
Colin Crossdc35e212019-06-06 16:13:11 -07001828 missingDeps = append(missingDeps, m.bp.GetMissingDependencies()...)
Colin Cross6c4f21f2019-06-06 15:41:36 -07001829 missingDeps = FirstUniqueStrings(missingDeps)
1830 return missingDeps
Colin Cross6ff51382015-12-17 16:39:19 -08001831}
1832
Colin Crossdc35e212019-06-06 16:13:11 -07001833func (b *baseModuleContext) AddMissingDependencies(deps []string) {
Dan Willemsen6553f5e2016-03-10 18:14:25 -08001834 if deps != nil {
Colin Crossdc35e212019-06-06 16:13:11 -07001835 missingDeps := &b.Module().base().commonProperties.MissingDeps
Colin Cross6c4f21f2019-06-06 15:41:36 -07001836 *missingDeps = append(*missingDeps, deps...)
1837 *missingDeps = FirstUniqueStrings(*missingDeps)
Dan Willemsen6553f5e2016-03-10 18:14:25 -08001838 }
1839}
1840
Colin Crossdc35e212019-06-06 16:13:11 -07001841func (b *baseModuleContext) validateAndroidModule(module blueprint.Module, strict bool) Module {
Colin Crossd11fcda2017-10-23 17:59:01 -07001842 aModule, _ := module.(Module)
Colin Crossdc35e212019-06-06 16:13:11 -07001843
1844 if !strict {
1845 return aModule
1846 }
1847
Colin Cross380c69a2019-06-10 17:49:58 +00001848 if aModule == nil {
Colin Crossdc35e212019-06-06 16:13:11 -07001849 b.ModuleErrorf("module %q not an android module", b.OtherModuleName(module))
Colin Cross380c69a2019-06-10 17:49:58 +00001850 return nil
1851 }
1852
1853 if !aModule.Enabled() {
Colin Crossdc35e212019-06-06 16:13:11 -07001854 if b.Config().AllowMissingDependencies() {
1855 b.AddMissingDependencies([]string{b.OtherModuleName(aModule)})
Colin Cross380c69a2019-06-10 17:49:58 +00001856 } else {
Colin Crossdc35e212019-06-06 16:13:11 -07001857 b.ModuleErrorf("depends on disabled module %q", b.OtherModuleName(aModule))
Colin Cross380c69a2019-06-10 17:49:58 +00001858 }
1859 return nil
1860 }
Colin Crossd11fcda2017-10-23 17:59:01 -07001861 return aModule
1862}
1863
Colin Crossdc35e212019-06-06 16:13:11 -07001864func (b *baseModuleContext) getDirectDepInternal(name string, tag blueprint.DependencyTag) (blueprint.Module, blueprint.DependencyTag) {
Jiyong Parkf2976302019-04-17 21:47:37 +09001865 type dep struct {
1866 mod blueprint.Module
1867 tag blueprint.DependencyTag
1868 }
1869 var deps []dep
Colin Crossdc35e212019-06-06 16:13:11 -07001870 b.VisitDirectDepsBlueprint(func(module blueprint.Module) {
Colin Cross25de6c32019-06-06 14:29:25 -07001871 if aModule, _ := module.(Module); aModule != nil && aModule.base().BaseModuleName() == name {
Colin Cross1184b642019-12-30 18:43:07 -08001872 returnedTag := b.bp.OtherModuleDependencyTag(aModule)
Jiyong Parkf2976302019-04-17 21:47:37 +09001873 if tag == nil || returnedTag == tag {
1874 deps = append(deps, dep{aModule, returnedTag})
1875 }
1876 }
1877 })
1878 if len(deps) == 1 {
1879 return deps[0].mod, deps[0].tag
1880 } else if len(deps) >= 2 {
1881 panic(fmt.Errorf("Multiple dependencies having same BaseModuleName() %q found from %q",
Colin Crossdc35e212019-06-06 16:13:11 -07001882 name, b.ModuleName()))
Jiyong Parkf2976302019-04-17 21:47:37 +09001883 } else {
1884 return nil, nil
1885 }
1886}
1887
Colin Crossdc35e212019-06-06 16:13:11 -07001888func (b *baseModuleContext) GetDirectDepsWithTag(tag blueprint.DependencyTag) []Module {
Colin Cross0ef08162019-05-01 15:50:51 -07001889 var deps []Module
Colin Crossdc35e212019-06-06 16:13:11 -07001890 b.VisitDirectDepsBlueprint(func(module blueprint.Module) {
Colin Cross25de6c32019-06-06 14:29:25 -07001891 if aModule, _ := module.(Module); aModule != nil {
Colin Cross1184b642019-12-30 18:43:07 -08001892 if b.bp.OtherModuleDependencyTag(aModule) == tag {
Colin Cross0ef08162019-05-01 15:50:51 -07001893 deps = append(deps, aModule)
1894 }
1895 }
1896 })
1897 return deps
1898}
1899
Colin Cross25de6c32019-06-06 14:29:25 -07001900func (m *moduleContext) GetDirectDepWithTag(name string, tag blueprint.DependencyTag) blueprint.Module {
1901 module, _ := m.getDirectDepInternal(name, tag)
1902 return module
Jiyong Parkf2976302019-04-17 21:47:37 +09001903}
1904
Colin Crossdc35e212019-06-06 16:13:11 -07001905func (b *baseModuleContext) GetDirectDep(name string) (blueprint.Module, blueprint.DependencyTag) {
1906 return b.getDirectDepInternal(name, nil)
Jiyong Parkf2976302019-04-17 21:47:37 +09001907}
1908
Colin Crossdc35e212019-06-06 16:13:11 -07001909func (b *baseModuleContext) VisitDirectDepsBlueprint(visit func(blueprint.Module)) {
Colin Cross1184b642019-12-30 18:43:07 -08001910 b.bp.VisitDirectDeps(visit)
Colin Cross35143d02017-11-16 00:11:20 -08001911}
1912
Colin Crossdc35e212019-06-06 16:13:11 -07001913func (b *baseModuleContext) VisitDirectDeps(visit func(Module)) {
Colin Cross1184b642019-12-30 18:43:07 -08001914 b.bp.VisitDirectDeps(func(module blueprint.Module) {
Colin Crossdc35e212019-06-06 16:13:11 -07001915 if aModule := b.validateAndroidModule(module, b.strictVisitDeps); aModule != nil {
Colin Crossd11fcda2017-10-23 17:59:01 -07001916 visit(aModule)
1917 }
1918 })
1919}
1920
Colin Crossdc35e212019-06-06 16:13:11 -07001921func (b *baseModuleContext) VisitDirectDepsWithTag(tag blueprint.DependencyTag, visit func(Module)) {
Colin Cross1184b642019-12-30 18:43:07 -08001922 b.bp.VisitDirectDeps(func(module blueprint.Module) {
Colin Crossdc35e212019-06-06 16:13:11 -07001923 if aModule := b.validateAndroidModule(module, b.strictVisitDeps); aModule != nil {
Colin Cross1184b642019-12-30 18:43:07 -08001924 if b.bp.OtherModuleDependencyTag(aModule) == tag {
Colin Crossee6143c2017-12-30 17:54:27 -08001925 visit(aModule)
1926 }
1927 }
1928 })
1929}
1930
Colin Crossdc35e212019-06-06 16:13:11 -07001931func (b *baseModuleContext) VisitDirectDepsIf(pred func(Module) bool, visit func(Module)) {
Colin Cross1184b642019-12-30 18:43:07 -08001932 b.bp.VisitDirectDepsIf(
Colin Crossd11fcda2017-10-23 17:59:01 -07001933 // pred
1934 func(module blueprint.Module) bool {
Colin Crossdc35e212019-06-06 16:13:11 -07001935 if aModule := b.validateAndroidModule(module, b.strictVisitDeps); aModule != nil {
Colin Crossd11fcda2017-10-23 17:59:01 -07001936 return pred(aModule)
1937 } else {
1938 return false
1939 }
1940 },
1941 // visit
1942 func(module blueprint.Module) {
1943 visit(module.(Module))
1944 })
1945}
1946
Colin Crossdc35e212019-06-06 16:13:11 -07001947func (b *baseModuleContext) VisitDepsDepthFirst(visit func(Module)) {
Colin Cross1184b642019-12-30 18:43:07 -08001948 b.bp.VisitDepsDepthFirst(func(module blueprint.Module) {
Colin Crossdc35e212019-06-06 16:13:11 -07001949 if aModule := b.validateAndroidModule(module, b.strictVisitDeps); aModule != nil {
Colin Crossd11fcda2017-10-23 17:59:01 -07001950 visit(aModule)
1951 }
1952 })
1953}
1954
Colin Crossdc35e212019-06-06 16:13:11 -07001955func (b *baseModuleContext) VisitDepsDepthFirstIf(pred func(Module) bool, visit func(Module)) {
Colin Cross1184b642019-12-30 18:43:07 -08001956 b.bp.VisitDepsDepthFirstIf(
Colin Crossd11fcda2017-10-23 17:59:01 -07001957 // pred
1958 func(module blueprint.Module) bool {
Colin Crossdc35e212019-06-06 16:13:11 -07001959 if aModule := b.validateAndroidModule(module, b.strictVisitDeps); aModule != nil {
Colin Crossd11fcda2017-10-23 17:59:01 -07001960 return pred(aModule)
1961 } else {
1962 return false
1963 }
1964 },
1965 // visit
1966 func(module blueprint.Module) {
1967 visit(module.(Module))
1968 })
1969}
1970
Colin Crossdc35e212019-06-06 16:13:11 -07001971func (b *baseModuleContext) WalkDepsBlueprint(visit func(blueprint.Module, blueprint.Module) bool) {
Colin Cross1184b642019-12-30 18:43:07 -08001972 b.bp.WalkDeps(visit)
Alex Light778127a2019-02-27 14:19:50 -08001973}
1974
Colin Crossdc35e212019-06-06 16:13:11 -07001975func (b *baseModuleContext) WalkDeps(visit func(Module, Module) bool) {
1976 b.walkPath = []Module{b.Module()}
Paul Duffinc5192442020-03-31 11:31:36 +01001977 b.tagPath = []blueprint.DependencyTag{}
Colin Cross1184b642019-12-30 18:43:07 -08001978 b.bp.WalkDeps(func(child, parent blueprint.Module) bool {
Colin Crossdc35e212019-06-06 16:13:11 -07001979 childAndroidModule, _ := child.(Module)
1980 parentAndroidModule, _ := parent.(Module)
Colin Crossd11fcda2017-10-23 17:59:01 -07001981 if childAndroidModule != nil && parentAndroidModule != nil {
Colin Crossdc35e212019-06-06 16:13:11 -07001982 // record walkPath before visit
1983 for b.walkPath[len(b.walkPath)-1] != parentAndroidModule {
1984 b.walkPath = b.walkPath[0 : len(b.walkPath)-1]
Paul Duffinc5192442020-03-31 11:31:36 +01001985 b.tagPath = b.tagPath[0 : len(b.tagPath)-1]
Colin Crossdc35e212019-06-06 16:13:11 -07001986 }
1987 b.walkPath = append(b.walkPath, childAndroidModule)
Paul Duffinc5192442020-03-31 11:31:36 +01001988 b.tagPath = append(b.tagPath, b.OtherModuleDependencyTag(childAndroidModule))
Colin Crossd11fcda2017-10-23 17:59:01 -07001989 return visit(childAndroidModule, parentAndroidModule)
1990 } else {
1991 return false
1992 }
1993 })
1994}
1995
Colin Crossdc35e212019-06-06 16:13:11 -07001996func (b *baseModuleContext) GetWalkPath() []Module {
1997 return b.walkPath
1998}
1999
Paul Duffinc5192442020-03-31 11:31:36 +01002000func (b *baseModuleContext) GetTagPath() []blueprint.DependencyTag {
2001 return b.tagPath
2002}
2003
Jiyong Park1c7e9622020-05-07 16:12:13 +09002004// A regexp for removing boilerplate from BaseDependencyTag from the string representation of
2005// a dependency tag.
Colin Cross6e511a92020-07-27 21:26:48 -07002006var tagCleaner = regexp.MustCompile(`\QBaseDependencyTag:{}\E(, )?`)
Jiyong Park1c7e9622020-05-07 16:12:13 +09002007
2008// PrettyPrintTag returns string representation of the tag, but prefers
2009// custom String() method if available.
2010func PrettyPrintTag(tag blueprint.DependencyTag) string {
2011 // Use tag's custom String() method if available.
2012 if stringer, ok := tag.(fmt.Stringer); ok {
2013 return stringer.String()
2014 }
2015
2016 // Otherwise, get a default string representation of the tag's struct.
Colin Cross6e511a92020-07-27 21:26:48 -07002017 tagString := fmt.Sprintf("%T: %+v", tag, tag)
Jiyong Park1c7e9622020-05-07 16:12:13 +09002018
2019 // Remove the boilerplate from BaseDependencyTag as it adds no value.
2020 tagString = tagCleaner.ReplaceAllString(tagString, "")
2021 return tagString
2022}
2023
2024func (b *baseModuleContext) GetPathString(skipFirst bool) string {
2025 sb := strings.Builder{}
2026 tagPath := b.GetTagPath()
2027 walkPath := b.GetWalkPath()
2028 if !skipFirst {
2029 sb.WriteString(walkPath[0].String())
2030 }
2031 for i, m := range walkPath[1:] {
2032 sb.WriteString("\n")
2033 sb.WriteString(fmt.Sprintf(" via tag %s\n", PrettyPrintTag(tagPath[i])))
2034 sb.WriteString(fmt.Sprintf(" -> %s", m.String()))
2035 }
2036 return sb.String()
2037}
2038
Colin Cross25de6c32019-06-06 14:29:25 -07002039func (m *moduleContext) VisitAllModuleVariants(visit func(Module)) {
Colin Crossdc35e212019-06-06 16:13:11 -07002040 m.bp.VisitAllModuleVariants(func(module blueprint.Module) {
Colin Cross0875c522017-11-28 17:34:01 -08002041 visit(module.(Module))
2042 })
2043}
2044
Colin Cross25de6c32019-06-06 14:29:25 -07002045func (m *moduleContext) PrimaryModule() Module {
Colin Crossdc35e212019-06-06 16:13:11 -07002046 return m.bp.PrimaryModule().(Module)
Colin Cross0875c522017-11-28 17:34:01 -08002047}
2048
Colin Cross25de6c32019-06-06 14:29:25 -07002049func (m *moduleContext) FinalModule() Module {
Colin Crossdc35e212019-06-06 16:13:11 -07002050 return m.bp.FinalModule().(Module)
2051}
2052
2053func (m *moduleContext) ModuleSubDir() string {
2054 return m.bp.ModuleSubDir()
Colin Cross0875c522017-11-28 17:34:01 -08002055}
2056
Colin Cross0ea8ba82019-06-06 14:33:29 -07002057func (b *baseModuleContext) Target() Target {
Colin Cross25de6c32019-06-06 14:29:25 -07002058 return b.target
Colin Crossa1ad8d12016-06-01 17:09:44 -07002059}
2060
Colin Cross0ea8ba82019-06-06 14:33:29 -07002061func (b *baseModuleContext) TargetPrimary() bool {
Colin Cross25de6c32019-06-06 14:29:25 -07002062 return b.targetPrimary
Colin Cross8b74d172016-09-13 09:59:14 -07002063}
2064
Colin Cross0ea8ba82019-06-06 14:33:29 -07002065func (b *baseModuleContext) MultiTargets() []Target {
Colin Cross25de6c32019-06-06 14:29:25 -07002066 return b.multiTargets
Colin Crossee0bc3b2018-10-02 22:01:37 -07002067}
2068
Colin Cross0ea8ba82019-06-06 14:33:29 -07002069func (b *baseModuleContext) Arch() Arch {
Colin Cross25de6c32019-06-06 14:29:25 -07002070 return b.target.Arch
Colin Cross3f40fa42015-01-30 17:27:36 -08002071}
2072
Colin Cross0ea8ba82019-06-06 14:33:29 -07002073func (b *baseModuleContext) Os() OsType {
Colin Crossfb0c16e2019-11-20 17:12:35 -08002074 return b.os
Dan Willemsen490fd492015-11-24 17:53:15 -08002075}
2076
Colin Cross0ea8ba82019-06-06 14:33:29 -07002077func (b *baseModuleContext) Host() bool {
Jiyong Park1613e552020-09-14 19:43:17 +09002078 return b.os.Class == Host
Colin Crossf6566ed2015-03-24 11:13:38 -07002079}
2080
Colin Cross0ea8ba82019-06-06 14:33:29 -07002081func (b *baseModuleContext) Device() bool {
Colin Crossfb0c16e2019-11-20 17:12:35 -08002082 return b.os.Class == Device
Colin Crossf6566ed2015-03-24 11:13:38 -07002083}
2084
Colin Cross0ea8ba82019-06-06 14:33:29 -07002085func (b *baseModuleContext) Darwin() bool {
Colin Crossfb0c16e2019-11-20 17:12:35 -08002086 return b.os == Darwin
Colin Cross0af4b842015-04-30 16:36:18 -07002087}
2088
Colin Cross0ea8ba82019-06-06 14:33:29 -07002089func (b *baseModuleContext) Fuchsia() bool {
Colin Crossfb0c16e2019-11-20 17:12:35 -08002090 return b.os == Fuchsia
Doug Horn21b94272019-01-16 12:06:11 -08002091}
2092
Colin Cross0ea8ba82019-06-06 14:33:29 -07002093func (b *baseModuleContext) Windows() bool {
Colin Crossfb0c16e2019-11-20 17:12:35 -08002094 return b.os == Windows
Colin Cross3edeee12017-04-04 12:59:48 -07002095}
2096
Colin Cross0ea8ba82019-06-06 14:33:29 -07002097func (b *baseModuleContext) Debug() bool {
Colin Cross25de6c32019-06-06 14:29:25 -07002098 return b.debug
Colin Crossf6566ed2015-03-24 11:13:38 -07002099}
2100
Colin Cross0ea8ba82019-06-06 14:33:29 -07002101func (b *baseModuleContext) PrimaryArch() bool {
Colin Cross25de6c32019-06-06 14:29:25 -07002102 if len(b.config.Targets[b.target.Os]) <= 1 {
Colin Cross67a5c132017-05-09 13:45:28 -07002103 return true
2104 }
Colin Cross25de6c32019-06-06 14:29:25 -07002105 return b.target.Arch.ArchType == b.config.Targets[b.target.Os][0].Arch.ArchType
Colin Cross1e7d3702016-08-24 15:25:47 -07002106}
2107
Jiyong Park5baac542018-08-28 09:55:37 +09002108// Makes this module a platform module, i.e. not specific to soc, device,
Justin Yund5f6c822019-06-25 16:47:17 +09002109// product, or system_ext.
Colin Cross4157e882019-06-06 16:57:04 -07002110func (m *ModuleBase) MakeAsPlatform() {
2111 m.commonProperties.Vendor = boolPtr(false)
2112 m.commonProperties.Proprietary = boolPtr(false)
2113 m.commonProperties.Soc_specific = boolPtr(false)
2114 m.commonProperties.Product_specific = boolPtr(false)
Justin Yund5f6c822019-06-25 16:47:17 +09002115 m.commonProperties.System_ext_specific = boolPtr(false)
Jiyong Park5baac542018-08-28 09:55:37 +09002116}
2117
Colin Cross4157e882019-06-06 16:57:04 -07002118func (m *ModuleBase) EnableNativeBridgeSupportByDefault() {
2119 m.commonProperties.Native_bridge_supported = boolPtr(true)
dimitry03dc3f62019-05-09 14:07:34 +02002120}
2121
Sundong Ahnd95aa2d2019-10-08 19:34:03 +09002122func (m *ModuleBase) MakeAsSystemExt() {
Jooyung Han91df2082019-11-20 01:49:42 +09002123 m.commonProperties.Vendor = boolPtr(false)
2124 m.commonProperties.Proprietary = boolPtr(false)
2125 m.commonProperties.Soc_specific = boolPtr(false)
2126 m.commonProperties.Product_specific = boolPtr(false)
2127 m.commonProperties.System_ext_specific = boolPtr(true)
Sundong Ahnd95aa2d2019-10-08 19:34:03 +09002128}
2129
Jooyung Han344d5432019-08-23 11:17:39 +09002130// IsNativeBridgeSupported returns true if "native_bridge_supported" is explicitly set as "true"
2131func (m *ModuleBase) IsNativeBridgeSupported() bool {
2132 return proptools.Bool(m.commonProperties.Native_bridge_supported)
2133}
2134
Colin Cross25de6c32019-06-06 14:29:25 -07002135func (m *moduleContext) InstallInData() bool {
2136 return m.module.InstallInData()
Dan Willemsen782a2d12015-12-21 14:55:28 -08002137}
2138
Jaewoong Jung0949f312019-09-11 10:25:18 -07002139func (m *moduleContext) InstallInTestcases() bool {
2140 return m.module.InstallInTestcases()
2141}
2142
Colin Cross25de6c32019-06-06 14:29:25 -07002143func (m *moduleContext) InstallInSanitizerDir() bool {
2144 return m.module.InstallInSanitizerDir()
Vishwath Mohan1dd88392017-03-29 22:00:18 -07002145}
2146
Yifan Hong1b3348d2020-01-21 15:53:22 -08002147func (m *moduleContext) InstallInRamdisk() bool {
2148 return m.module.InstallInRamdisk()
2149}
2150
Colin Cross25de6c32019-06-06 14:29:25 -07002151func (m *moduleContext) InstallInRecovery() bool {
2152 return m.module.InstallInRecovery()
Jiyong Parkf9332f12018-02-01 00:54:12 +09002153}
2154
Colin Cross90ba5f42019-10-02 11:10:58 -07002155func (m *moduleContext) InstallInRoot() bool {
2156 return m.module.InstallInRoot()
2157}
2158
Colin Cross607d8582019-07-29 16:44:46 -07002159func (m *moduleContext) InstallBypassMake() bool {
2160 return m.module.InstallBypassMake()
2161}
2162
Jiyong Park87788b52020-09-01 12:37:45 +09002163func (m *moduleContext) InstallForceOS() (*OsType, *ArchType) {
Colin Cross6e359402020-02-10 15:29:54 -08002164 return m.module.InstallForceOS()
2165}
2166
Colin Cross70dda7e2019-10-01 22:05:35 -07002167func (m *moduleContext) skipInstall(fullInstallPath InstallPath) bool {
Colin Cross25de6c32019-06-06 14:29:25 -07002168 if m.module.base().commonProperties.SkipInstall {
Colin Cross893d8162017-04-26 17:34:03 -07002169 return true
2170 }
2171
Colin Cross3607f212018-05-07 15:28:05 -07002172 // We'll need a solution for choosing which of modules with the same name in different
2173 // namespaces to install. For now, reuse the list of namespaces exported to Make as the
2174 // list of namespaces to install in a Soong-only build.
Colin Cross25de6c32019-06-06 14:29:25 -07002175 if !m.module.base().commonProperties.NamespaceExportedToMake {
Colin Cross3607f212018-05-07 15:28:05 -07002176 return true
2177 }
2178
Colin Cross25de6c32019-06-06 14:29:25 -07002179 if m.Device() {
Colin Cross607d8582019-07-29 16:44:46 -07002180 if m.Config().EmbeddedInMake() && !m.InstallBypassMake() {
Colin Cross893d8162017-04-26 17:34:03 -07002181 return true
2182 }
2183
Colin Cross25de6c32019-06-06 14:29:25 -07002184 if m.Config().SkipMegaDeviceInstall(fullInstallPath.String()) {
Colin Cross893d8162017-04-26 17:34:03 -07002185 return true
2186 }
2187 }
2188
2189 return false
2190}
2191
Colin Cross70dda7e2019-10-01 22:05:35 -07002192func (m *moduleContext) InstallFile(installPath InstallPath, name string, srcPath Path,
2193 deps ...Path) InstallPath {
Colin Cross25de6c32019-06-06 14:29:25 -07002194 return m.installFile(installPath, name, srcPath, Cp, deps)
Colin Cross5c517922017-08-31 12:29:17 -07002195}
2196
Colin Cross70dda7e2019-10-01 22:05:35 -07002197func (m *moduleContext) InstallExecutable(installPath InstallPath, name string, srcPath Path,
2198 deps ...Path) InstallPath {
Colin Cross25de6c32019-06-06 14:29:25 -07002199 return m.installFile(installPath, name, srcPath, CpExecutable, deps)
Colin Cross5c517922017-08-31 12:29:17 -07002200}
2201
Colin Cross70dda7e2019-10-01 22:05:35 -07002202func (m *moduleContext) installFile(installPath InstallPath, name string, srcPath Path,
2203 rule blueprint.Rule, deps []Path) InstallPath {
Colin Cross35cec122015-04-02 14:37:16 -07002204
Colin Cross25de6c32019-06-06 14:29:25 -07002205 fullInstallPath := installPath.Join(m, name)
David Srbecky07656412020-06-04 01:26:16 +01002206 m.module.base().hooks.runInstallHooks(m, srcPath, fullInstallPath, false)
Colin Cross3f40fa42015-01-30 17:27:36 -08002207
Colin Cross25de6c32019-06-06 14:29:25 -07002208 if !m.skipInstall(fullInstallPath) {
Colin Crossce75d2c2016-10-06 16:12:58 -07002209
Colin Cross897266e2020-02-13 13:22:08 -08002210 deps = append(deps, m.installDeps.Paths()...)
Colin Cross35cec122015-04-02 14:37:16 -07002211
Colin Cross89562dc2016-10-03 17:47:19 -07002212 var implicitDeps, orderOnlyDeps Paths
2213
Colin Cross25de6c32019-06-06 14:29:25 -07002214 if m.Host() {
Colin Cross89562dc2016-10-03 17:47:19 -07002215 // Installed host modules might be used during the build, depend directly on their
2216 // dependencies so their timestamp is updated whenever their dependency is updated
2217 implicitDeps = deps
2218 } else {
2219 orderOnlyDeps = deps
2220 }
2221
Colin Cross25de6c32019-06-06 14:29:25 -07002222 m.Build(pctx, BuildParams{
Colin Cross5c517922017-08-31 12:29:17 -07002223 Rule: rule,
Colin Cross67a5c132017-05-09 13:45:28 -07002224 Description: "install " + fullInstallPath.Base(),
2225 Output: fullInstallPath,
2226 Input: srcPath,
2227 Implicits: implicitDeps,
2228 OrderOnly: orderOnlyDeps,
Colin Cross25de6c32019-06-06 14:29:25 -07002229 Default: !m.Config().EmbeddedInMake(),
Dan Willemsen322acaf2016-01-12 23:07:05 -08002230 })
Colin Cross3f40fa42015-01-30 17:27:36 -08002231
Colin Cross25de6c32019-06-06 14:29:25 -07002232 m.installFiles = append(m.installFiles, fullInstallPath)
Dan Willemsen322acaf2016-01-12 23:07:05 -08002233 }
Colin Cross25de6c32019-06-06 14:29:25 -07002234 m.checkbuildFiles = append(m.checkbuildFiles, srcPath)
Colin Cross35cec122015-04-02 14:37:16 -07002235 return fullInstallPath
2236}
2237
Colin Cross70dda7e2019-10-01 22:05:35 -07002238func (m *moduleContext) InstallSymlink(installPath InstallPath, name string, srcPath InstallPath) InstallPath {
Colin Cross25de6c32019-06-06 14:29:25 -07002239 fullInstallPath := installPath.Join(m, name)
David Srbecky07656412020-06-04 01:26:16 +01002240 m.module.base().hooks.runInstallHooks(m, srcPath, fullInstallPath, true)
Colin Cross3854a602016-01-11 12:49:11 -08002241
Colin Cross25de6c32019-06-06 14:29:25 -07002242 if !m.skipInstall(fullInstallPath) {
Colin Crossce75d2c2016-10-06 16:12:58 -07002243
Alex Lightfb4353d2019-01-17 13:57:45 -08002244 relPath, err := filepath.Rel(path.Dir(fullInstallPath.String()), srcPath.String())
2245 if err != nil {
2246 panic(fmt.Sprintf("Unable to generate symlink between %q and %q: %s", fullInstallPath.Base(), srcPath.Base(), err))
2247 }
Colin Cross25de6c32019-06-06 14:29:25 -07002248 m.Build(pctx, BuildParams{
Colin Cross67a5c132017-05-09 13:45:28 -07002249 Rule: Symlink,
2250 Description: "install symlink " + fullInstallPath.Base(),
2251 Output: fullInstallPath,
Dan Willemsen40efa1c2020-01-14 15:19:52 -08002252 Input: srcPath,
Colin Cross25de6c32019-06-06 14:29:25 -07002253 Default: !m.Config().EmbeddedInMake(),
Colin Cross12fc4972016-01-11 12:49:11 -08002254 Args: map[string]string{
Alex Lightfb4353d2019-01-17 13:57:45 -08002255 "fromPath": relPath,
Colin Cross12fc4972016-01-11 12:49:11 -08002256 },
2257 })
Colin Cross3854a602016-01-11 12:49:11 -08002258
Colin Cross25de6c32019-06-06 14:29:25 -07002259 m.installFiles = append(m.installFiles, fullInstallPath)
2260 m.checkbuildFiles = append(m.checkbuildFiles, srcPath)
Colin Cross12fc4972016-01-11 12:49:11 -08002261 }
Colin Cross3854a602016-01-11 12:49:11 -08002262 return fullInstallPath
2263}
2264
Jiyong Parkf1194352019-02-25 11:05:47 +09002265// installPath/name -> absPath where absPath might be a path that is available only at runtime
2266// (e.g. /apex/...)
Colin Cross70dda7e2019-10-01 22:05:35 -07002267func (m *moduleContext) InstallAbsoluteSymlink(installPath InstallPath, name string, absPath string) InstallPath {
Colin Cross25de6c32019-06-06 14:29:25 -07002268 fullInstallPath := installPath.Join(m, name)
David Srbecky07656412020-06-04 01:26:16 +01002269 m.module.base().hooks.runInstallHooks(m, nil, fullInstallPath, true)
Jiyong Parkf1194352019-02-25 11:05:47 +09002270
Colin Cross25de6c32019-06-06 14:29:25 -07002271 if !m.skipInstall(fullInstallPath) {
2272 m.Build(pctx, BuildParams{
Jiyong Parkf1194352019-02-25 11:05:47 +09002273 Rule: Symlink,
2274 Description: "install symlink " + fullInstallPath.Base() + " -> " + absPath,
2275 Output: fullInstallPath,
Colin Cross25de6c32019-06-06 14:29:25 -07002276 Default: !m.Config().EmbeddedInMake(),
Jiyong Parkf1194352019-02-25 11:05:47 +09002277 Args: map[string]string{
2278 "fromPath": absPath,
2279 },
2280 })
2281
Colin Cross25de6c32019-06-06 14:29:25 -07002282 m.installFiles = append(m.installFiles, fullInstallPath)
Jiyong Parkf1194352019-02-25 11:05:47 +09002283 }
2284 return fullInstallPath
2285}
2286
Colin Cross25de6c32019-06-06 14:29:25 -07002287func (m *moduleContext) CheckbuildFile(srcPath Path) {
2288 m.checkbuildFiles = append(m.checkbuildFiles, srcPath)
Colin Cross3f40fa42015-01-30 17:27:36 -08002289}
2290
Colin Cross41955e82019-05-29 14:40:35 -07002291// SrcIsModule decodes module references in the format ":name" into the module name, or empty string if the input
2292// was not a module reference.
2293func SrcIsModule(s string) (module string) {
Colin Cross068e0fe2016-12-13 15:23:47 -08002294 if len(s) > 1 && s[0] == ':' {
2295 return s[1:]
2296 }
2297 return ""
2298}
2299
Colin Cross41955e82019-05-29 14:40:35 -07002300// SrcIsModule decodes module references in the format ":name{.tag}" into the module name and tag, ":name" into the
2301// module name and an empty string for the tag, or empty strings if the input was not a module reference.
2302func SrcIsModuleWithTag(s string) (module, tag string) {
2303 if len(s) > 1 && s[0] == ':' {
2304 module = s[1:]
2305 if tagStart := strings.IndexByte(module, '{'); tagStart > 0 {
2306 if module[len(module)-1] == '}' {
2307 tag = module[tagStart+1 : len(module)-1]
2308 module = module[:tagStart]
2309 return module, tag
2310 }
2311 }
2312 return module, ""
2313 }
2314 return "", ""
Colin Cross068e0fe2016-12-13 15:23:47 -08002315}
2316
Colin Cross41955e82019-05-29 14:40:35 -07002317type sourceOrOutputDependencyTag struct {
2318 blueprint.BaseDependencyTag
2319 tag string
2320}
2321
2322func sourceOrOutputDepTag(tag string) blueprint.DependencyTag {
2323 return sourceOrOutputDependencyTag{tag: tag}
2324}
2325
2326var SourceDepTag = sourceOrOutputDepTag("")
Colin Cross068e0fe2016-12-13 15:23:47 -08002327
Colin Cross366938f2017-12-11 16:29:02 -08002328// Adds necessary dependencies to satisfy filegroup or generated sources modules listed in srcFiles
2329// using ":module" syntax, if any.
Colin Cross27b922f2019-03-04 22:35:41 -08002330//
2331// Deprecated: tag the property with `android:"path"` instead.
Colin Cross068e0fe2016-12-13 15:23:47 -08002332func ExtractSourcesDeps(ctx BottomUpMutatorContext, srcFiles []string) {
Nan Zhang2439eb72017-04-10 11:27:50 -07002333 set := make(map[string]bool)
2334
Colin Cross068e0fe2016-12-13 15:23:47 -08002335 for _, s := range srcFiles {
Colin Cross41955e82019-05-29 14:40:35 -07002336 if m, t := SrcIsModuleWithTag(s); m != "" {
2337 if _, found := set[s]; found {
2338 ctx.ModuleErrorf("found source dependency duplicate: %q!", s)
Nan Zhang2439eb72017-04-10 11:27:50 -07002339 } else {
Colin Cross41955e82019-05-29 14:40:35 -07002340 set[s] = true
2341 ctx.AddDependency(ctx.Module(), sourceOrOutputDepTag(t), m)
Nan Zhang2439eb72017-04-10 11:27:50 -07002342 }
Colin Cross068e0fe2016-12-13 15:23:47 -08002343 }
2344 }
Colin Cross068e0fe2016-12-13 15:23:47 -08002345}
2346
Colin Cross366938f2017-12-11 16:29:02 -08002347// Adds necessary dependencies to satisfy filegroup or generated sources modules specified in s
2348// using ":module" syntax, if any.
Colin Cross27b922f2019-03-04 22:35:41 -08002349//
2350// Deprecated: tag the property with `android:"path"` instead.
Colin Cross366938f2017-12-11 16:29:02 -08002351func ExtractSourceDeps(ctx BottomUpMutatorContext, s *string) {
2352 if s != nil {
Colin Cross41955e82019-05-29 14:40:35 -07002353 if m, t := SrcIsModuleWithTag(*s); m != "" {
2354 ctx.AddDependency(ctx.Module(), sourceOrOutputDepTag(t), m)
Colin Cross366938f2017-12-11 16:29:02 -08002355 }
2356 }
2357}
2358
Colin Cross41955e82019-05-29 14:40:35 -07002359// A module that implements SourceFileProducer can be referenced from any property that is tagged with `android:"path"`
2360// 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 -08002361type SourceFileProducer interface {
2362 Srcs() Paths
2363}
2364
Colin Cross41955e82019-05-29 14:40:35 -07002365// A module that implements OutputFileProducer can be referenced from any property that is tagged with `android:"path"`
Roland Levillain97c1f342019-11-22 14:20:54 +00002366// 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 -07002367// listed in the property.
2368type OutputFileProducer interface {
2369 OutputFiles(tag string) (Paths, error)
2370}
2371
Colin Cross5e708052019-08-06 13:59:50 -07002372// OutputFilesForModule returns the paths from an OutputFileProducer with the given tag. On error, including if the
2373// module produced zero paths, it reports errors to the ctx and returns nil.
2374func OutputFilesForModule(ctx PathContext, module blueprint.Module, tag string) Paths {
2375 paths, err := outputFilesForModule(ctx, module, tag)
2376 if err != nil {
2377 reportPathError(ctx, err)
2378 return nil
2379 }
2380 return paths
2381}
2382
2383// OutputFileForModule returns the path from an OutputFileProducer with the given tag. On error, including if the
2384// module produced zero or multiple paths, it reports errors to the ctx and returns nil.
2385func OutputFileForModule(ctx PathContext, module blueprint.Module, tag string) Path {
2386 paths, err := outputFilesForModule(ctx, module, tag)
2387 if err != nil {
2388 reportPathError(ctx, err)
2389 return nil
2390 }
2391 if len(paths) > 1 {
Ulya Trafimovich5ab276a2020-08-25 12:45:15 +01002392 ReportPathErrorf(ctx, "got multiple output files from module %q, expected exactly one",
Colin Cross5e708052019-08-06 13:59:50 -07002393 pathContextName(ctx, module))
2394 return nil
2395 }
2396 return paths[0]
2397}
2398
2399func outputFilesForModule(ctx PathContext, module blueprint.Module, tag string) (Paths, error) {
2400 if outputFileProducer, ok := module.(OutputFileProducer); ok {
2401 paths, err := outputFileProducer.OutputFiles(tag)
2402 if err != nil {
2403 return nil, fmt.Errorf("failed to get output file from module %q: %s",
2404 pathContextName(ctx, module), err.Error())
2405 }
2406 if len(paths) == 0 {
2407 return nil, fmt.Errorf("failed to get output files from module %q", pathContextName(ctx, module))
2408 }
2409 return paths, nil
2410 } else {
2411 return nil, fmt.Errorf("module %q is not an OutputFileProducer", pathContextName(ctx, module))
2412 }
2413}
2414
Colin Crossfe17f6f2019-03-28 19:30:56 -07002415type HostToolProvider interface {
2416 HostToolPath() OptionalPath
2417}
2418
Colin Cross27b922f2019-03-04 22:35:41 -08002419// Returns a list of paths expanded from globs and modules referenced using ":module" syntax. The property must
2420// be tagged with `android:"path" to support automatic source module dependency resolution.
Colin Cross8a497952019-03-05 22:25:09 -08002421//
2422// Deprecated: use PathsForModuleSrc or PathsForModuleSrcExcludes instead.
Colin Cross25de6c32019-06-06 14:29:25 -07002423func (m *moduleContext) ExpandSources(srcFiles, excludes []string) Paths {
2424 return PathsForModuleSrcExcludes(m, srcFiles, excludes)
Colin Cross8f101b42015-06-17 15:09:06 -07002425}
2426
Colin Cross2fafa3e2019-03-05 12:39:51 -08002427// Returns a single path expanded from globs and modules referenced using ":module" syntax. The property must
2428// be tagged with `android:"path" to support automatic source module dependency resolution.
Colin Cross8a497952019-03-05 22:25:09 -08002429//
2430// Deprecated: use PathForModuleSrc instead.
Colin Cross25de6c32019-06-06 14:29:25 -07002431func (m *moduleContext) ExpandSource(srcFile, prop string) Path {
2432 return PathForModuleSrc(m, srcFile)
Colin Cross2fafa3e2019-03-05 12:39:51 -08002433}
2434
2435// Returns an optional single path expanded from globs and modules referenced using ":module" syntax if
2436// the srcFile is non-nil. The property must be tagged with `android:"path" to support automatic source module
2437// dependency resolution.
Colin Cross25de6c32019-06-06 14:29:25 -07002438func (m *moduleContext) ExpandOptionalSource(srcFile *string, prop string) OptionalPath {
Colin Cross2fafa3e2019-03-05 12:39:51 -08002439 if srcFile != nil {
Colin Cross25de6c32019-06-06 14:29:25 -07002440 return OptionalPathForPath(PathForModuleSrc(m, *srcFile))
Colin Cross2fafa3e2019-03-05 12:39:51 -08002441 }
2442 return OptionalPath{}
2443}
2444
Colin Cross25de6c32019-06-06 14:29:25 -07002445func (m *moduleContext) RequiredModuleNames() []string {
Jiyong Park6a8cf5f2019-12-30 16:31:09 +09002446 return m.module.RequiredModuleNames()
Nan Zhang6d34b302017-02-04 17:47:46 -08002447}
2448
Colin Cross25de6c32019-06-06 14:29:25 -07002449func (m *moduleContext) HostRequiredModuleNames() []string {
Jiyong Park6a8cf5f2019-12-30 16:31:09 +09002450 return m.module.HostRequiredModuleNames()
Sasha Smundakb6d23052019-04-01 18:37:36 -07002451}
2452
Colin Cross25de6c32019-06-06 14:29:25 -07002453func (m *moduleContext) TargetRequiredModuleNames() []string {
Jiyong Park6a8cf5f2019-12-30 16:31:09 +09002454 return m.module.TargetRequiredModuleNames()
Sasha Smundakb6d23052019-04-01 18:37:36 -07002455}
2456
Colin Cross463a90e2015-06-17 14:20:06 -07002457func init() {
Colin Cross798bfce2016-10-12 14:28:16 -07002458 RegisterSingletonType("buildtarget", BuildTargetSingleton)
Colin Cross463a90e2015-06-17 14:20:06 -07002459}
2460
Colin Cross0875c522017-11-28 17:34:01 -08002461func BuildTargetSingleton() Singleton {
Colin Cross1f8c52b2015-06-16 16:38:17 -07002462 return &buildTargetSingleton{}
2463}
2464
Colin Cross87d8b562017-04-25 10:01:55 -07002465func parentDir(dir string) string {
2466 dir, _ = filepath.Split(dir)
2467 return filepath.Clean(dir)
2468}
2469
Colin Cross1f8c52b2015-06-16 16:38:17 -07002470type buildTargetSingleton struct{}
2471
Colin Cross0875c522017-11-28 17:34:01 -08002472func (c *buildTargetSingleton) GenerateBuildActions(ctx SingletonContext) {
2473 var checkbuildDeps Paths
Colin Cross1f8c52b2015-06-16 16:38:17 -07002474
Colin Crossc3d87d32020-06-04 13:25:17 -07002475 mmTarget := func(dir string) string {
2476 return "MODULES-IN-" + strings.Replace(filepath.Clean(dir), "/", "-", -1)
Colin Cross87d8b562017-04-25 10:01:55 -07002477 }
2478
Colin Cross0875c522017-11-28 17:34:01 -08002479 modulesInDir := make(map[string]Paths)
Colin Cross1f8c52b2015-06-16 16:38:17 -07002480
Colin Cross0875c522017-11-28 17:34:01 -08002481 ctx.VisitAllModules(func(module Module) {
2482 blueprintDir := module.base().blueprintDir
2483 installTarget := module.base().installTarget
2484 checkbuildTarget := module.base().checkbuildTarget
Colin Cross1f8c52b2015-06-16 16:38:17 -07002485
Colin Cross0875c522017-11-28 17:34:01 -08002486 if checkbuildTarget != nil {
2487 checkbuildDeps = append(checkbuildDeps, checkbuildTarget)
2488 modulesInDir[blueprintDir] = append(modulesInDir[blueprintDir], checkbuildTarget)
2489 }
Colin Cross1f8c52b2015-06-16 16:38:17 -07002490
Colin Cross0875c522017-11-28 17:34:01 -08002491 if installTarget != nil {
2492 modulesInDir[blueprintDir] = append(modulesInDir[blueprintDir], installTarget)
Colin Cross1f8c52b2015-06-16 16:38:17 -07002493 }
2494 })
2495
Dan Willemsen5ba07e82015-12-11 13:51:06 -08002496 suffix := ""
Colin Crossaabf6792017-11-29 00:27:14 -08002497 if ctx.Config().EmbeddedInMake() {
Dan Willemsen5ba07e82015-12-11 13:51:06 -08002498 suffix = "-soong"
2499 }
2500
Colin Cross1f8c52b2015-06-16 16:38:17 -07002501 // Create a top-level checkbuild target that depends on all modules
Colin Crossc3d87d32020-06-04 13:25:17 -07002502 ctx.Phony("checkbuild"+suffix, checkbuildDeps...)
Colin Cross1f8c52b2015-06-16 16:38:17 -07002503
Dan Willemsend2e95fb2017-09-20 14:30:50 -07002504 // Make will generate the MODULES-IN-* targets
Colin Crossaabf6792017-11-29 00:27:14 -08002505 if ctx.Config().EmbeddedInMake() {
Dan Willemsend2e95fb2017-09-20 14:30:50 -07002506 return
2507 }
2508
Colin Cross87d8b562017-04-25 10:01:55 -07002509 // Ensure ancestor directories are in modulesInDir
Inseob Kim1a365c62019-06-08 15:47:51 +09002510 dirs := SortedStringKeys(modulesInDir)
Colin Cross87d8b562017-04-25 10:01:55 -07002511 for _, dir := range dirs {
2512 dir := parentDir(dir)
2513 for dir != "." && dir != "/" {
2514 if _, exists := modulesInDir[dir]; exists {
2515 break
2516 }
2517 modulesInDir[dir] = nil
2518 dir = parentDir(dir)
2519 }
2520 }
2521
2522 // Make directories build their direct subdirectories
Colin Cross87d8b562017-04-25 10:01:55 -07002523 for _, dir := range dirs {
2524 p := parentDir(dir)
2525 if p != "." && p != "/" {
Colin Crossc3d87d32020-06-04 13:25:17 -07002526 modulesInDir[p] = append(modulesInDir[p], PathForPhony(ctx, mmTarget(dir)))
Colin Cross87d8b562017-04-25 10:01:55 -07002527 }
2528 }
2529
Dan Willemsend2e95fb2017-09-20 14:30:50 -07002530 // Create a MODULES-IN-<directory> target that depends on all modules in a directory, and
2531 // depends on the MODULES-IN-* targets of all of its subdirectories that contain Android.bp
2532 // files.
Colin Cross1f8c52b2015-06-16 16:38:17 -07002533 for _, dir := range dirs {
Colin Crossc3d87d32020-06-04 13:25:17 -07002534 ctx.Phony(mmTarget(dir), modulesInDir[dir]...)
Colin Cross1f8c52b2015-06-16 16:38:17 -07002535 }
Dan Willemsen61d88b82017-09-20 17:29:08 -07002536
2537 // Create (host|host-cross|target)-<OS> phony rules to build a reduced checkbuild.
Jiyong Park1613e552020-09-14 19:43:17 +09002538 type osAndCross struct {
2539 os OsType
2540 hostCross bool
2541 }
2542 osDeps := map[osAndCross]Paths{}
Colin Cross0875c522017-11-28 17:34:01 -08002543 ctx.VisitAllModules(func(module Module) {
2544 if module.Enabled() {
Jiyong Park1613e552020-09-14 19:43:17 +09002545 key := osAndCross{os: module.Target().Os, hostCross: module.Target().HostCross}
2546 osDeps[key] = append(osDeps[key], module.base().checkbuildFiles...)
Dan Willemsen61d88b82017-09-20 17:29:08 -07002547 }
2548 })
2549
Colin Cross0875c522017-11-28 17:34:01 -08002550 osClass := make(map[string]Paths)
Jiyong Park1613e552020-09-14 19:43:17 +09002551 for key, deps := range osDeps {
Dan Willemsen61d88b82017-09-20 17:29:08 -07002552 var className string
2553
Jiyong Park1613e552020-09-14 19:43:17 +09002554 switch key.os.Class {
Dan Willemsen61d88b82017-09-20 17:29:08 -07002555 case Host:
Jiyong Park1613e552020-09-14 19:43:17 +09002556 if key.hostCross {
2557 className = "host-cross"
2558 } else {
2559 className = "host"
2560 }
Dan Willemsen61d88b82017-09-20 17:29:08 -07002561 case Device:
2562 className = "target"
2563 default:
2564 continue
2565 }
2566
Jiyong Park1613e552020-09-14 19:43:17 +09002567 name := className + "-" + key.os.Name
Colin Crossc3d87d32020-06-04 13:25:17 -07002568 osClass[className] = append(osClass[className], PathForPhony(ctx, name))
Dan Willemsen61d88b82017-09-20 17:29:08 -07002569
Colin Crossc3d87d32020-06-04 13:25:17 -07002570 ctx.Phony(name, deps...)
Dan Willemsen61d88b82017-09-20 17:29:08 -07002571 }
2572
2573 // Wrap those into host|host-cross|target phony rules
Inseob Kim1a365c62019-06-08 15:47:51 +09002574 for _, class := range SortedStringKeys(osClass) {
Colin Crossc3d87d32020-06-04 13:25:17 -07002575 ctx.Phony(class, osClass[class]...)
Dan Willemsen61d88b82017-09-20 17:29:08 -07002576 }
Colin Cross1f8c52b2015-06-16 16:38:17 -07002577}
Colin Crossd779da42015-12-17 18:00:23 -08002578
Brandon Lee5d45c6f2018-08-15 15:35:38 -07002579// Collect information for opening IDE project files in java/jdeps.go.
2580type IDEInfo interface {
2581 IDEInfo(ideInfo *IdeInfo)
2582 BaseModuleName() string
2583}
2584
2585// Extract the base module name from the Import name.
2586// Often the Import name has a prefix "prebuilt_".
2587// Remove the prefix explicitly if needed
2588// until we find a better solution to get the Import name.
2589type IDECustomizedModuleName interface {
2590 IDECustomizedModuleName() string
2591}
2592
2593type IdeInfo struct {
2594 Deps []string `json:"dependencies,omitempty"`
2595 Srcs []string `json:"srcs,omitempty"`
2596 Aidl_include_dirs []string `json:"aidl_include_dirs,omitempty"`
2597 Jarjar_rules []string `json:"jarjar_rules,omitempty"`
2598 Jars []string `json:"jars,omitempty"`
2599 Classes []string `json:"class,omitempty"`
2600 Installed_paths []string `json:"installed,omitempty"`
patricktu18c82ff2019-05-10 15:48:50 +08002601 SrcJars []string `json:"srcjars,omitempty"`
bralee1fbf4402020-05-21 10:11:59 +08002602 Paths []string `json:"path,omitempty"`
Brandon Lee5d45c6f2018-08-15 15:35:38 -07002603}
Paul Duffinf88d8e02020-05-07 20:21:34 +01002604
2605func CheckBlueprintSyntax(ctx BaseModuleContext, filename string, contents string) []error {
2606 bpctx := ctx.blueprintBaseModuleContext()
2607 return blueprint.CheckBlueprintSyntax(bpctx.ModuleFactories(), filename, contents)
2608}