blob: 02b2c8926eb5e97ed9e8d3d429911832ba195347 [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"
Colin Cross6ff51382015-12-17 16:39:19 -080022 "strings"
Colin Crossaabf6792017-11-29 00:27:14 -080023 "text/scanner"
Colin Crossf6566ed2015-03-24 11:13:38 -070024
25 "github.com/google/blueprint"
Colin Crossfe4bc362018-09-12 10:02:13 -070026 "github.com/google/blueprint/proptools"
Colin Cross3f40fa42015-01-30 17:27:36 -080027)
28
29var (
30 DeviceSharedLibrary = "shared_library"
31 DeviceStaticLibrary = "static_library"
32 DeviceExecutable = "executable"
33 HostSharedLibrary = "host_shared_library"
34 HostStaticLibrary = "host_static_library"
35 HostExecutable = "host_executable"
36)
37
Colin Crossae887032017-10-23 17:16:14 -070038type BuildParams struct {
Dan Willemsen9f3c5742016-11-03 14:28:31 -070039 Rule blueprint.Rule
Colin Cross33bfb0a2016-11-21 17:23:08 -080040 Deps blueprint.Deps
41 Depfile WritablePath
Colin Cross67a5c132017-05-09 13:45:28 -070042 Description string
Dan Willemsen9f3c5742016-11-03 14:28:31 -070043 Output WritablePath
44 Outputs WritablePaths
45 ImplicitOutput WritablePath
46 ImplicitOutputs WritablePaths
47 Input Path
48 Inputs Paths
49 Implicit Path
50 Implicits Paths
51 OrderOnly Paths
52 Default bool
53 Args map[string]string
Dan Willemsen34cc69e2015-09-23 15:26:20 -070054}
55
Colin Crossae887032017-10-23 17:16:14 -070056type ModuleBuildParams BuildParams
57
Colin Cross1184b642019-12-30 18:43:07 -080058// EarlyModuleContext provides methods that can be called early, as soon as the properties have
59// been parsed into the module and before any mutators have run.
60type EarlyModuleContext interface {
61 Module() Module
62 ModuleName() string
63 ModuleDir() string
64 ModuleType() string
Colin Cross9d34f352019-11-22 16:03:51 -080065 BlueprintsFile() string
Colin Cross1184b642019-12-30 18:43:07 -080066
67 ContainsProperty(name string) bool
68 Errorf(pos scanner.Position, fmt string, args ...interface{})
69 ModuleErrorf(fmt string, args ...interface{})
70 PropertyErrorf(property, fmt string, args ...interface{})
71 Failed() bool
72
73 AddNinjaFileDeps(deps ...string)
74
75 DeviceSpecific() bool
76 SocSpecific() bool
77 ProductSpecific() bool
78 SystemExtSpecific() bool
79 Platform() bool
80
81 Config() Config
82 DeviceConfig() DeviceConfig
83
84 // Deprecated: use Config()
85 AConfig() Config
86
87 // GlobWithDeps returns a list of files that match the specified pattern but do not match any
88 // of the patterns in excludes. It also adds efficient dependencies to rerun the primary
89 // builder whenever a file matching the pattern as added or removed, without rerunning if a
90 // file that does not match the pattern is added to a searched directory.
91 GlobWithDeps(pattern string, excludes []string) ([]string, error)
92
93 Glob(globPattern string, excludes []string) Paths
94 GlobFiles(globPattern string, excludes []string) Paths
Colin Cross988414c2020-01-11 01:11:46 +000095 IsSymlink(path Path) bool
96 Readlink(path Path) string
Colin Cross1184b642019-12-30 18:43:07 -080097}
98
Colin Cross0ea8ba82019-06-06 14:33:29 -070099// BaseModuleContext is the same as blueprint.BaseModuleContext except that Config() returns
Colin Crossdc35e212019-06-06 16:13:11 -0700100// a Config instead of an interface{}, and some methods have been wrapped to use an android.Module
101// instead of a blueprint.Module, plus some extra methods that return Android-specific information
Colin Cross0ea8ba82019-06-06 14:33:29 -0700102// about the current module.
103type BaseModuleContext interface {
Colin Cross1184b642019-12-30 18:43:07 -0800104 EarlyModuleContext
Colin Cross0ea8ba82019-06-06 14:33:29 -0700105
Colin Crossdc35e212019-06-06 16:13:11 -0700106 OtherModuleName(m blueprint.Module) string
107 OtherModuleDir(m blueprint.Module) string
108 OtherModuleErrorf(m blueprint.Module, fmt string, args ...interface{})
109 OtherModuleDependencyTag(m blueprint.Module) blueprint.DependencyTag
110 OtherModuleExists(name string) bool
Jiyong Park9e6c2422019-08-09 20:39:45 +0900111 OtherModuleType(m blueprint.Module) string
Colin Crossdc35e212019-06-06 16:13:11 -0700112
113 GetDirectDepsWithTag(tag blueprint.DependencyTag) []Module
114 GetDirectDepWithTag(name string, tag blueprint.DependencyTag) blueprint.Module
115 GetDirectDep(name string) (blueprint.Module, blueprint.DependencyTag)
116
117 VisitDirectDepsBlueprint(visit func(blueprint.Module))
118 VisitDirectDeps(visit func(Module))
119 VisitDirectDepsWithTag(tag blueprint.DependencyTag, visit func(Module))
120 VisitDirectDepsIf(pred func(Module) bool, visit func(Module))
121 // Deprecated: use WalkDeps instead to support multiple dependency tags on the same module
122 VisitDepsDepthFirst(visit func(Module))
123 // Deprecated: use WalkDeps instead to support multiple dependency tags on the same module
124 VisitDepsDepthFirstIf(pred func(Module) bool, visit func(Module))
125 WalkDeps(visit func(Module, Module) bool)
126 WalkDepsBlueprint(visit func(blueprint.Module, blueprint.Module) bool)
127 // GetWalkPath is supposed to be called in visit function passed in WalkDeps()
128 // and returns a top-down dependency path from a start module to current child module.
129 GetWalkPath() []Module
130
Paul Duffinc5192442020-03-31 11:31:36 +0100131 // GetTagPath is supposed to be called in visit function passed in WalkDeps()
132 // and returns a top-down dependency tags path from a start module to current child module.
133 // It has one less entry than GetWalkPath() as it contains the dependency tags that
134 // exist between each adjacent pair of modules in the GetWalkPath().
135 // GetTagPath()[i] is the tag between GetWalkPath()[i] and GetWalkPath()[i+1]
136 GetTagPath() []blueprint.DependencyTag
137
Colin Crossdc35e212019-06-06 16:13:11 -0700138 AddMissingDependencies(missingDeps []string)
139
Colin Crossa1ad8d12016-06-01 17:09:44 -0700140 Target() Target
Colin Cross8b74d172016-09-13 09:59:14 -0700141 TargetPrimary() bool
Paul Duffinca7f0ef2020-02-25 15:50:49 +0000142
143 // The additional arch specific targets (e.g. 32/64 bit) that this module variant is
144 // responsible for creating.
Colin Crossee0bc3b2018-10-02 22:01:37 -0700145 MultiTargets() []Target
Colin Crossf6566ed2015-03-24 11:13:38 -0700146 Arch() Arch
Colin Crossa1ad8d12016-06-01 17:09:44 -0700147 Os() OsType
Colin Crossf6566ed2015-03-24 11:13:38 -0700148 Host() bool
149 Device() bool
Colin Cross0af4b842015-04-30 16:36:18 -0700150 Darwin() bool
Doug Horn21b94272019-01-16 12:06:11 -0800151 Fuchsia() bool
Colin Cross3edeee12017-04-04 12:59:48 -0700152 Windows() bool
Colin Crossf6566ed2015-03-24 11:13:38 -0700153 Debug() bool
Colin Cross1e7d3702016-08-24 15:25:47 -0700154 PrimaryArch() bool
Colin Crossf6566ed2015-03-24 11:13:38 -0700155}
156
Colin Cross1184b642019-12-30 18:43:07 -0800157// Deprecated: use EarlyModuleContext instead
Colin Cross635c3b02016-05-18 15:37:25 -0700158type BaseContext interface {
Colin Cross1184b642019-12-30 18:43:07 -0800159 EarlyModuleContext
Colin Crossaabf6792017-11-29 00:27:14 -0800160}
161
Colin Cross635c3b02016-05-18 15:37:25 -0700162type ModuleContext interface {
Colin Crossaabf6792017-11-29 00:27:14 -0800163 BaseModuleContext
Colin Cross3f40fa42015-01-30 17:27:36 -0800164
Colin Crossae887032017-10-23 17:16:14 -0700165 // Deprecated: use ModuleContext.Build instead.
Colin Cross0875c522017-11-28 17:34:01 -0800166 ModuleBuild(pctx PackageContext, params ModuleBuildParams)
Colin Cross8f101b42015-06-17 15:09:06 -0700167
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700168 ExpandSources(srcFiles, excludes []string) Paths
Colin Cross366938f2017-12-11 16:29:02 -0800169 ExpandSource(srcFile, prop string) Path
Colin Cross2383f3b2018-02-06 14:40:13 -0800170 ExpandOptionalSource(srcFile *string, prop string) OptionalPath
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700171
Colin Cross70dda7e2019-10-01 22:05:35 -0700172 InstallExecutable(installPath InstallPath, name string, srcPath Path, deps ...Path) InstallPath
173 InstallFile(installPath InstallPath, name string, srcPath Path, deps ...Path) InstallPath
174 InstallSymlink(installPath InstallPath, name string, srcPath InstallPath) InstallPath
175 InstallAbsoluteSymlink(installPath InstallPath, name string, absPath string) InstallPath
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700176 CheckbuildFile(srcPath Path)
Dan Willemsen6553f5e2016-03-10 18:14:25 -0800177
Colin Cross8d8f8e22016-08-03 11:57:50 -0700178 InstallInData() bool
Jaewoong Jung0949f312019-09-11 10:25:18 -0700179 InstallInTestcases() bool
Vishwath Mohan1dd88392017-03-29 22:00:18 -0700180 InstallInSanitizerDir() bool
Yifan Hong1b3348d2020-01-21 15:53:22 -0800181 InstallInRamdisk() bool
Jiyong Parkf9332f12018-02-01 00:54:12 +0900182 InstallInRecovery() bool
Colin Cross90ba5f42019-10-02 11:10:58 -0700183 InstallInRoot() bool
Colin Cross607d8582019-07-29 16:44:46 -0700184 InstallBypassMake() bool
Colin Cross6e359402020-02-10 15:29:54 -0800185 InstallForceOS() *OsType
Nan Zhang6d34b302017-02-04 17:47:46 -0800186
187 RequiredModuleNames() []string
Sasha Smundakb6d23052019-04-01 18:37:36 -0700188 HostRequiredModuleNames() []string
189 TargetRequiredModuleNames() []string
Colin Cross3f68a132017-10-23 17:10:29 -0700190
Colin Cross3f68a132017-10-23 17:10:29 -0700191 ModuleSubDir() string
192
Colin Cross0875c522017-11-28 17:34:01 -0800193 Variable(pctx PackageContext, name, value string)
194 Rule(pctx PackageContext, name string, params blueprint.RuleParams, argNames ...string) blueprint.Rule
Colin Crossae887032017-10-23 17:16:14 -0700195 // Similar to blueprint.ModuleContext.Build, but takes Paths instead of []string,
196 // and performs more verification.
Colin Cross0875c522017-11-28 17:34:01 -0800197 Build(pctx PackageContext, params BuildParams)
Colin Cross3f68a132017-10-23 17:10:29 -0700198
Colin Cross0875c522017-11-28 17:34:01 -0800199 PrimaryModule() Module
200 FinalModule() Module
201 VisitAllModuleVariants(visit func(Module))
Colin Cross3f68a132017-10-23 17:10:29 -0700202
203 GetMissingDependencies() []string
Jeff Gaston088e29e2017-11-29 16:47:17 -0800204 Namespace() blueprint.Namespace
Colin Cross3f40fa42015-01-30 17:27:36 -0800205}
206
Colin Cross635c3b02016-05-18 15:37:25 -0700207type Module interface {
Colin Cross3f40fa42015-01-30 17:27:36 -0800208 blueprint.Module
209
Jeff Gastonaf3cc2d2017-09-27 17:01:44 -0700210 // GenerateAndroidBuildActions is analogous to Blueprints' GenerateBuildActions,
211 // but GenerateAndroidBuildActions also has access to Android-specific information.
212 // For more information, see Module.GenerateBuildActions within Blueprint's module_ctx.go
Colin Cross635c3b02016-05-18 15:37:25 -0700213 GenerateAndroidBuildActions(ModuleContext)
Jeff Gastonaf3cc2d2017-09-27 17:01:44 -0700214
Colin Cross1e676be2016-10-12 14:38:15 -0700215 DepsMutator(BottomUpMutatorContext)
Colin Cross3f40fa42015-01-30 17:27:36 -0800216
Colin Cross635c3b02016-05-18 15:37:25 -0700217 base() *ModuleBase
Inseob Kimeec88e12020-01-22 11:11:29 +0900218 Disable()
Dan Willemsen0effe062015-11-30 16:06:01 -0800219 Enabled() bool
Colin Crossa1ad8d12016-06-01 17:09:44 -0700220 Target() Target
Dan Willemsen782a2d12015-12-21 14:55:28 -0800221 InstallInData() bool
Jaewoong Jung0949f312019-09-11 10:25:18 -0700222 InstallInTestcases() bool
Vishwath Mohan1dd88392017-03-29 22:00:18 -0700223 InstallInSanitizerDir() bool
Yifan Hong1b3348d2020-01-21 15:53:22 -0800224 InstallInRamdisk() bool
Jiyong Parkf9332f12018-02-01 00:54:12 +0900225 InstallInRecovery() bool
Colin Cross90ba5f42019-10-02 11:10:58 -0700226 InstallInRoot() bool
Colin Cross607d8582019-07-29 16:44:46 -0700227 InstallBypassMake() bool
Colin Cross6e359402020-02-10 15:29:54 -0800228 InstallForceOS() *OsType
Colin Crossa2f296f2016-11-29 15:16:18 -0800229 SkipInstall()
Ulya Trafimovichb28cc372020-01-13 15:18:16 +0000230 IsSkipInstall() bool
Jiyong Park374510b2018-03-19 18:23:01 +0900231 ExportedToMake() bool
Inseob Kim8471cda2019-11-15 09:59:12 +0900232 InitRc() Paths
233 VintfFragments() Paths
Bob Badoura75b0572020-02-18 20:21:55 -0800234 NoticeFiles() Paths
Colin Cross36242852017-06-23 15:06:31 -0700235
236 AddProperties(props ...interface{})
237 GetProperties() []interface{}
Colin Crosscec81712017-07-13 14:43:27 -0700238
Colin Crossae887032017-10-23 17:16:14 -0700239 BuildParamsForTests() []BuildParams
Colin Cross4c83e5c2019-02-25 14:54:28 -0800240 RuleParamsForTests() map[blueprint.Rule]blueprint.RuleParams
Jaewoong Jung38e4fb22018-12-12 09:01:34 -0800241 VariablesForTests() map[string]string
Paul Duffine2453c72019-05-31 14:00:04 +0100242
Colin Cross9a362232019-07-01 15:32:45 -0700243 // String returns a string that includes the module name and variants for printing during debugging.
244 String() string
245
Paul Duffine2453c72019-05-31 14:00:04 +0100246 // Get the qualified module id for this module.
247 qualifiedModuleId(ctx BaseModuleContext) qualifiedModuleName
248
249 // Get information about the properties that can contain visibility rules.
250 visibilityProperties() []visibilityProperty
Paul Duffin63c6e182019-07-24 14:24:38 +0100251
252 // Get the visibility rules that control the visibility of this module.
253 visibility() []string
Jiyong Park6a8cf5f2019-12-30 16:31:09 +0900254
255 RequiredModuleNames() []string
256 HostRequiredModuleNames() []string
257 TargetRequiredModuleNames() []string
Colin Cross897266e2020-02-13 13:22:08 -0800258
259 filesToInstall() InstallPaths
Paul Duffine2453c72019-05-31 14:00:04 +0100260}
261
262// Qualified id for a module
263type qualifiedModuleName struct {
264 // The package (i.e. directory) in which the module is defined, without trailing /
265 pkg string
266
267 // The name of the module, empty string if package.
268 name string
269}
270
271func (q qualifiedModuleName) String() string {
272 if q.name == "" {
273 return "//" + q.pkg
274 }
275 return "//" + q.pkg + ":" + q.name
276}
277
Paul Duffine484f472019-06-20 16:38:08 +0100278func (q qualifiedModuleName) isRootPackage() bool {
279 return q.pkg == "" && q.name == ""
280}
281
Paul Duffine2453c72019-05-31 14:00:04 +0100282// Get the id for the package containing this module.
283func (q qualifiedModuleName) getContainingPackageId() qualifiedModuleName {
284 pkg := q.pkg
285 if q.name == "" {
Paul Duffine484f472019-06-20 16:38:08 +0100286 if pkg == "" {
287 panic(fmt.Errorf("Cannot get containing package id of root package"))
288 }
289
290 index := strings.LastIndex(pkg, "/")
291 if index == -1 {
292 pkg = ""
293 } else {
294 pkg = pkg[:index]
295 }
Paul Duffine2453c72019-05-31 14:00:04 +0100296 }
297 return newPackageId(pkg)
298}
299
300func newPackageId(pkg string) qualifiedModuleName {
301 // A qualified id for a package module has no name.
302 return qualifiedModuleName{pkg: pkg, name: ""}
Colin Cross3f40fa42015-01-30 17:27:36 -0800303}
304
Colin Crossfc754582016-05-17 16:34:16 -0700305type nameProperties struct {
306 // The name of the module. Must be unique across all modules.
Nan Zhang0007d812017-11-07 10:57:05 -0800307 Name *string
Colin Crossfc754582016-05-17 16:34:16 -0700308}
309
310type commonProperties struct {
Dan Willemsen0effe062015-11-30 16:06:01 -0800311 // emit build rules for this module
Paul Duffin54d9bb72020-02-12 10:20:56 +0000312 //
313 // Disabling a module should only be done for those modules that cannot be built
314 // in the current environment. Modules that can build in the current environment
315 // but are not usually required (e.g. superceded by a prebuilt) should not be
316 // disabled as that will prevent them from being built by the checkbuild target
317 // and so prevent early detection of changes that have broken those modules.
Dan Willemsen0effe062015-11-30 16:06:01 -0800318 Enabled *bool `android:"arch_variant"`
Colin Cross3f40fa42015-01-30 17:27:36 -0800319
Paul Duffin2e61fa62019-03-28 14:10:57 +0000320 // Controls the visibility of this module to other modules. Allowable values are one or more of
321 // these formats:
322 //
323 // ["//visibility:public"]: Anyone can use this module.
324 // ["//visibility:private"]: Only rules in the module's package (not its subpackages) can use
325 // this module.
326 // ["//some/package:__pkg__", "//other/package:__pkg__"]: Only modules in some/package and
327 // other/package (defined in some/package/*.bp and other/package/*.bp) have access to
328 // this module. Note that sub-packages do not have access to the rule; for example,
329 // //some/package/foo:bar or //other/package/testing:bla wouldn't have access. __pkg__
330 // is a special module and must be used verbatim. It represents all of the modules in the
331 // package.
332 // ["//project:__subpackages__", "//other:__subpackages__"]: Only modules in packages project
333 // or other or in one of their sub-packages have access to this module. For example,
334 // //project:rule, //project/library:lib or //other/testing/internal:munge are allowed
335 // to depend on this rule (but not //independent:evil)
336 // ["//project"]: This is shorthand for ["//project:__pkg__"]
337 // [":__subpackages__"]: This is shorthand for ["//project:__subpackages__"] where
338 // //project is the module's package. e.g. using [":__subpackages__"] in
339 // packages/apps/Settings/Android.bp is equivalent to
340 // //packages/apps/Settings:__subpackages__.
341 // ["//visibility:legacy_public"]: The default visibility, behaves as //visibility:public
342 // for now. It is an error if it is used in a module.
Paul Duffine2453c72019-05-31 14:00:04 +0100343 //
344 // If a module does not specify the `visibility` property then it uses the
345 // `default_visibility` property of the `package` module in the module's package.
346 //
347 // If the `default_visibility` property is not set for the module's package then
Paul Duffine484f472019-06-20 16:38:08 +0100348 // it will use the `default_visibility` of its closest ancestor package for which
349 // a `default_visibility` property is specified.
350 //
351 // If no `default_visibility` property can be found then the module uses the
352 // global default of `//visibility:legacy_public`.
Paul Duffine2453c72019-05-31 14:00:04 +0100353 //
Paul Duffin95d53b52019-07-24 13:45:05 +0100354 // The `visibility` property has no effect on a defaults module although it does
355 // apply to any non-defaults module that uses it. To set the visibility of a
356 // defaults module, use the `defaults_visibility` property on the defaults module;
357 // not to be confused with the `default_visibility` property on the package module.
358 //
Paul Duffin2e61fa62019-03-28 14:10:57 +0000359 // See https://android.googlesource.com/platform/build/soong/+/master/README.md#visibility for
360 // more details.
361 Visibility []string
362
Colin Cross7d5136f2015-05-11 13:39:40 -0700363 // control whether this module compiles for 32-bit, 64-bit, or both. Possible values
Colin Cross3f40fa42015-01-30 17:27:36 -0800364 // are "32" (compile for 32-bit only), "64" (compile for 64-bit only), "both" (compile for both
365 // architectures), or "first" (compile for 64-bit on a 64-bit platform, and 32-bit on a 32-bit
366 // platform
Colin Cross7d716ba2017-11-01 10:38:29 -0700367 Compile_multilib *string `android:"arch_variant"`
Colin Cross69617d32016-09-06 10:39:07 -0700368
369 Target struct {
370 Host struct {
Colin Cross7d716ba2017-11-01 10:38:29 -0700371 Compile_multilib *string
Colin Cross69617d32016-09-06 10:39:07 -0700372 }
373 Android struct {
Colin Cross7d716ba2017-11-01 10:38:29 -0700374 Compile_multilib *string
Colin Cross69617d32016-09-06 10:39:07 -0700375 }
376 }
377
Paul Duffinca7f0ef2020-02-25 15:50:49 +0000378 // If set to true then the archMutator will create variants for each arch specific target
379 // (e.g. 32/64) that the module is required to produce. If set to false then it will only
380 // create a variant for the architecture and will list the additional arch specific targets
381 // that the variant needs to produce in the CompileMultiTargets property.
Colin Crossee0bc3b2018-10-02 22:01:37 -0700382 UseTargetVariants bool `blueprint:"mutated"`
383 Default_multilib string `blueprint:"mutated"`
Colin Cross3f40fa42015-01-30 17:27:36 -0800384
Dan Willemsen782a2d12015-12-21 14:55:28 -0800385 // whether this is a proprietary vendor module, and should be installed into /vendor
Colin Cross7d716ba2017-11-01 10:38:29 -0700386 Proprietary *bool
Dan Willemsen782a2d12015-12-21 14:55:28 -0800387
Colin Cross55708f32017-03-20 13:23:34 -0700388 // vendor who owns this module
Dan Willemsenefac4a82017-07-18 19:42:09 -0700389 Owner *string
Colin Cross55708f32017-03-20 13:23:34 -0700390
Jiyong Park2db76922017-11-08 16:03:48 +0900391 // whether this module is specific to an SoC (System-On-a-Chip). When set to true,
392 // it is installed into /vendor (or /system/vendor if vendor partition does not exist).
393 // Use `soc_specific` instead for better meaning.
Colin Cross7d716ba2017-11-01 10:38:29 -0700394 Vendor *bool
Dan Willemsenaa118f92017-04-06 12:49:58 -0700395
Jiyong Park2db76922017-11-08 16:03:48 +0900396 // whether this module is specific to an SoC (System-On-a-Chip). When set to true,
397 // it is installed into /vendor (or /system/vendor if vendor partition does not exist).
398 Soc_specific *bool
399
400 // whether this module is specific to a device, not only for SoC, but also for off-chip
401 // peripherals. When set to true, it is installed into /odm (or /vendor/odm if odm partition
402 // does not exist, or /system/vendor/odm if both odm and vendor partitions do not exist).
403 // This implies `soc_specific:true`.
404 Device_specific *bool
405
406 // whether this module is specific to a software configuration of a product (e.g. country,
Jaekyun Seok5cfbfbb2018-01-10 19:00:15 +0900407 // network operator, etc). When set to true, it is installed into /product (or
408 // /system/product if product partition does not exist).
Jiyong Park2db76922017-11-08 16:03:48 +0900409 Product_specific *bool
410
Justin Yund5f6c822019-06-25 16:47:17 +0900411 // whether this module extends system. When set to true, it is installed into /system_ext
412 // (or /system/system_ext if system_ext partition does not exist).
413 System_ext_specific *bool
414
Jiyong Parkf9332f12018-02-01 00:54:12 +0900415 // Whether this module is installed to recovery partition
416 Recovery *bool
417
Yifan Hong1b3348d2020-01-21 15:53:22 -0800418 // Whether this module is installed to ramdisk
419 Ramdisk *bool
420
dimitry1f33e402019-03-26 12:39:31 +0100421 // Whether this module is built for non-native architecures (also known as native bridge binary)
422 Native_bridge_supported *bool `android:"arch_variant"`
423
Dan Willemsen2277bcb2016-07-25 20:27:39 -0700424 // init.rc files to be installed if this module is installed
Colin Cross27b922f2019-03-04 22:35:41 -0800425 Init_rc []string `android:"path"`
Dan Willemsen2277bcb2016-07-25 20:27:39 -0700426
Steven Moreland57a23d22018-04-04 15:42:19 -0700427 // VINTF manifest fragments to be installed if this module is installed
Colin Cross27b922f2019-03-04 22:35:41 -0800428 Vintf_fragments []string `android:"path"`
Steven Moreland57a23d22018-04-04 15:42:19 -0700429
Chris Wolfe998306e2016-08-15 14:47:23 -0400430 // names of other modules to install if this module is installed
Colin Crossc602b7d2017-05-05 13:36:36 -0700431 Required []string `android:"arch_variant"`
Chris Wolfe998306e2016-08-15 14:47:23 -0400432
Sasha Smundakb6d23052019-04-01 18:37:36 -0700433 // names of other modules to install on host if this module is installed
434 Host_required []string `android:"arch_variant"`
435
436 // names of other modules to install on target if this module is installed
437 Target_required []string `android:"arch_variant"`
438
Colin Cross5aac3622017-08-31 15:07:09 -0700439 // relative path to a file to include in the list of notices for the device
Colin Cross27b922f2019-03-04 22:35:41 -0800440 Notice *string `android:"path"`
Colin Cross5aac3622017-08-31 15:07:09 -0700441
Dan Willemsen569edc52018-11-19 09:33:29 -0800442 Dist struct {
443 // copy the output of this module to the $DIST_DIR when `dist` is specified on the
444 // command line and any of these targets are also on the command line, or otherwise
445 // built
446 Targets []string `android:"arch_variant"`
447
448 // The name of the output artifact. This defaults to the basename of the output of
449 // the module.
450 Dest *string `android:"arch_variant"`
451
452 // The directory within the dist directory to store the artifact. Defaults to the
453 // top level directory ("").
454 Dir *string `android:"arch_variant"`
455
456 // A suffix to add to the artifact file name (before any extension).
457 Suffix *string `android:"arch_variant"`
458 } `android:"arch_variant"`
459
Paul Duffinca7f0ef2020-02-25 15:50:49 +0000460 // The OsType of artifacts that this module variant is responsible for creating.
461 //
462 // Set by osMutator
463 CompileOS OsType `blueprint:"mutated"`
464
465 // The Target of artifacts that this module variant is responsible for creating.
466 //
467 // Set by archMutator
468 CompileTarget Target `blueprint:"mutated"`
469
470 // The additional arch specific targets (e.g. 32/64 bit) that this module variant is
471 // responsible for creating.
472 //
473 // By default this is nil as, where necessary, separate variants are created for the
474 // different multilib types supported and that information is encapsulated in the
475 // CompileTarget so the module variant simply needs to create artifacts for that.
476 //
477 // However, if UseTargetVariants is set to false (e.g. by
478 // InitAndroidMultiTargetsArchModule) then no separate variants are created for the
479 // multilib targets. Instead a single variant is created for the architecture and
480 // this contains the multilib specific targets that this variant should create.
481 //
482 // Set by archMutator
Colin Crossee0bc3b2018-10-02 22:01:37 -0700483 CompileMultiTargets []Target `blueprint:"mutated"`
Paul Duffinca7f0ef2020-02-25 15:50:49 +0000484
485 // True if the module variant's CompileTarget is the primary target
486 //
487 // Set by archMutator
488 CompilePrimary bool `blueprint:"mutated"`
Colin Cross3f40fa42015-01-30 17:27:36 -0800489
490 // Set by InitAndroidModule
491 HostOrDeviceSupported HostOrDeviceSupported `blueprint:"mutated"`
Dan Willemsen0b24c742016-10-04 15:13:37 -0700492 ArchSpecific bool `blueprint:"mutated"`
Colin Crossce75d2c2016-10-06 16:12:58 -0700493
Paul Duffin1356d8c2020-02-25 19:26:33 +0000494 // If set to true then a CommonOS variant will be created which will have dependencies
495 // on all its OsType specific variants. Used by sdk/module_exports to create a snapshot
496 // that covers all os and architecture variants.
497 //
498 // The OsType specific variants can be retrieved by calling
499 // GetOsSpecificVariantsOfCommonOSVariant
500 //
501 // Set at module initialization time by calling InitCommonOSAndroidMultiTargetsArchModule
502 CreateCommonOSVariant bool `blueprint:"mutated"`
503
504 // If set to true then this variant is the CommonOS variant that has dependencies on its
505 // OsType specific variants.
506 //
507 // Set by osMutator.
508 CommonOSVariant bool `blueprint:"mutated"`
509
Colin Crossce75d2c2016-10-06 16:12:58 -0700510 SkipInstall bool `blueprint:"mutated"`
Jeff Gaston088e29e2017-11-29 16:47:17 -0800511
512 NamespaceExportedToMake bool `blueprint:"mutated"`
Colin Cross6c4f21f2019-06-06 15:41:36 -0700513
514 MissingDeps []string `blueprint:"mutated"`
Colin Cross9a362232019-07-01 15:32:45 -0700515
516 // Name and variant strings stored by mutators to enable Module.String()
517 DebugName string `blueprint:"mutated"`
518 DebugMutators []string `blueprint:"mutated"`
519 DebugVariations []string `blueprint:"mutated"`
Colin Cross7228ecd2019-11-18 16:00:16 -0800520
521 // set by ImageMutator
522 ImageVariation string `blueprint:"mutated"`
Colin Cross3f40fa42015-01-30 17:27:36 -0800523}
524
525type hostAndDeviceProperties struct {
Colin Cross4e81d702018-11-09 10:36:55 -0800526 // If set to true, build a variant of the module for the host. Defaults to false.
527 Host_supported *bool
528
529 // If set to true, build a variant of the module for the device. Defaults to true.
Colin Crossa4190c12016-07-12 13:11:25 -0700530 Device_supported *bool
Colin Cross3f40fa42015-01-30 17:27:36 -0800531}
532
Colin Crossc472d572015-03-17 15:06:21 -0700533type Multilib string
534
535const (
Colin Cross6b4a32d2017-12-05 13:42:45 -0800536 MultilibBoth Multilib = "both"
537 MultilibFirst Multilib = "first"
538 MultilibCommon Multilib = "common"
539 MultilibCommonFirst Multilib = "common_first"
540 MultilibDefault Multilib = ""
Colin Crossc472d572015-03-17 15:06:21 -0700541)
542
Colin Crossa1ad8d12016-06-01 17:09:44 -0700543type HostOrDeviceSupported int
544
545const (
546 _ HostOrDeviceSupported = iota
Dan Albert0981b5c2018-08-02 13:46:35 -0700547
548 // Host and HostCross are built by default. Device is not supported.
Colin Crossa1ad8d12016-06-01 17:09:44 -0700549 HostSupported
Dan Albert0981b5c2018-08-02 13:46:35 -0700550
551 // Host is built by default. HostCross and Device are not supported.
Dan Albertc6345fb2016-10-20 01:36:11 -0700552 HostSupportedNoCross
Dan Albert0981b5c2018-08-02 13:46:35 -0700553
554 // Device is built by default. Host and HostCross are not supported.
Colin Crossa1ad8d12016-06-01 17:09:44 -0700555 DeviceSupported
Dan Albert0981b5c2018-08-02 13:46:35 -0700556
557 // Device is built by default. Host and HostCross are supported.
Colin Crossa1ad8d12016-06-01 17:09:44 -0700558 HostAndDeviceSupported
Dan Albert0981b5c2018-08-02 13:46:35 -0700559
560 // Host, HostCross, and Device are built by default.
Colin Crossa1ad8d12016-06-01 17:09:44 -0700561 HostAndDeviceDefault
Dan Albert0981b5c2018-08-02 13:46:35 -0700562
563 // Nothing is supported. This is not exposed to the user, but used to mark a
564 // host only module as unsupported when the module type is not supported on
565 // the host OS. E.g. benchmarks are supported on Linux but not Darwin.
Dan Willemsen0b24c742016-10-04 15:13:37 -0700566 NeitherHostNorDeviceSupported
Colin Crossa1ad8d12016-06-01 17:09:44 -0700567)
568
Jiyong Park2db76922017-11-08 16:03:48 +0900569type moduleKind int
570
571const (
572 platformModule moduleKind = iota
573 deviceSpecificModule
574 socSpecificModule
575 productSpecificModule
Justin Yund5f6c822019-06-25 16:47:17 +0900576 systemExtSpecificModule
Jiyong Park2db76922017-11-08 16:03:48 +0900577)
578
579func (k moduleKind) String() string {
580 switch k {
581 case platformModule:
582 return "platform"
583 case deviceSpecificModule:
584 return "device-specific"
585 case socSpecificModule:
586 return "soc-specific"
587 case productSpecificModule:
588 return "product-specific"
Justin Yund5f6c822019-06-25 16:47:17 +0900589 case systemExtSpecificModule:
590 return "systemext-specific"
Jiyong Park2db76922017-11-08 16:03:48 +0900591 default:
592 panic(fmt.Errorf("unknown module kind %d", k))
593 }
594}
595
Colin Cross9d34f352019-11-22 16:03:51 -0800596func initAndroidModuleBase(m Module) {
597 m.base().module = m
598}
599
Colin Cross36242852017-06-23 15:06:31 -0700600func InitAndroidModule(m Module) {
Colin Cross9d34f352019-11-22 16:03:51 -0800601 initAndroidModuleBase(m)
Colin Cross3f40fa42015-01-30 17:27:36 -0800602 base := m.base()
Colin Cross5049f022015-03-18 13:28:46 -0700603
Colin Cross36242852017-06-23 15:06:31 -0700604 m.AddProperties(
Colin Crossfc754582016-05-17 16:34:16 -0700605 &base.nameProperties,
Colin Cross18c46802019-09-24 22:19:02 -0700606 &base.commonProperties)
607
Colin Crosseabaedd2020-02-06 17:01:55 -0800608 initProductVariableModule(m)
Colin Cross18c46802019-09-24 22:19:02 -0700609
Colin Crossa3a97412019-03-18 12:24:29 -0700610 base.generalProperties = m.GetProperties()
Pirama Arumuga Nainar955dc492018-04-17 14:58:42 -0700611 base.customizableProperties = m.GetProperties()
Paul Duffin63c6e182019-07-24 14:24:38 +0100612
613 // The default_visibility property needs to be checked and parsed by the visibility module during
614 // its checking and parsing phases.
615 base.primaryVisibilityProperty =
616 newVisibilityProperty("visibility", &base.commonProperties.Visibility)
617 base.visibilityPropertyInfo = []visibilityProperty{base.primaryVisibilityProperty}
Colin Cross5049f022015-03-18 13:28:46 -0700618}
619
Colin Cross36242852017-06-23 15:06:31 -0700620func InitAndroidArchModule(m Module, hod HostOrDeviceSupported, defaultMultilib Multilib) {
621 InitAndroidModule(m)
Colin Cross5049f022015-03-18 13:28:46 -0700622
623 base := m.base()
Colin Cross3f40fa42015-01-30 17:27:36 -0800624 base.commonProperties.HostOrDeviceSupported = hod
Colin Cross69617d32016-09-06 10:39:07 -0700625 base.commonProperties.Default_multilib = string(defaultMultilib)
Dan Willemsen0b24c742016-10-04 15:13:37 -0700626 base.commonProperties.ArchSpecific = true
Colin Crossee0bc3b2018-10-02 22:01:37 -0700627 base.commonProperties.UseTargetVariants = true
Colin Cross3f40fa42015-01-30 17:27:36 -0800628
Dan Willemsen218f6562015-07-08 18:13:11 -0700629 switch hod {
Nan Zhang1a0f09b2017-07-05 10:35:11 -0700630 case HostAndDeviceSupported, HostAndDeviceDefault:
Colin Cross36242852017-06-23 15:06:31 -0700631 m.AddProperties(&base.hostAndDeviceProperties)
Colin Cross3f40fa42015-01-30 17:27:36 -0800632 }
633
Colin Cross36242852017-06-23 15:06:31 -0700634 InitArchModule(m)
Colin Cross3f40fa42015-01-30 17:27:36 -0800635}
636
Colin Crossee0bc3b2018-10-02 22:01:37 -0700637func InitAndroidMultiTargetsArchModule(m Module, hod HostOrDeviceSupported, defaultMultilib Multilib) {
638 InitAndroidArchModule(m, hod, defaultMultilib)
639 m.base().commonProperties.UseTargetVariants = false
640}
641
Paul Duffin1356d8c2020-02-25 19:26:33 +0000642// As InitAndroidMultiTargetsArchModule except it creates an additional CommonOS variant that
643// has dependencies on all the OsType specific variants.
644func InitCommonOSAndroidMultiTargetsArchModule(m Module, hod HostOrDeviceSupported, defaultMultilib Multilib) {
645 InitAndroidArchModule(m, hod, defaultMultilib)
646 m.base().commonProperties.UseTargetVariants = false
647 m.base().commonProperties.CreateCommonOSVariant = true
648}
649
Nan Zhangb9eeb1d2017-02-02 10:46:07 -0800650// A ModuleBase object contains the properties that are common to all Android
Colin Cross3f40fa42015-01-30 17:27:36 -0800651// modules. It should be included as an anonymous field in every module
652// struct definition. InitAndroidModule should then be called from the module's
653// factory function, and the return values from InitAndroidModule should be
654// returned from the factory function.
655//
Nan Zhangb9eeb1d2017-02-02 10:46:07 -0800656// The ModuleBase type is responsible for implementing the GenerateBuildActions
657// method to support the blueprint.Module interface. This method will then call
658// the module's GenerateAndroidBuildActions method once for each build variant
Colin Cross25de6c32019-06-06 14:29:25 -0700659// that is to be built. GenerateAndroidBuildActions is passed a ModuleContext
660// rather than the usual blueprint.ModuleContext.
661// ModuleContext exposes extra functionality specific to the Android build
Colin Cross3f40fa42015-01-30 17:27:36 -0800662// system including details about the particular build variant that is to be
663// generated.
664//
665// For example:
666//
667// import (
Nan Zhangb9eeb1d2017-02-02 10:46:07 -0800668// "android/soong/android"
Colin Cross3f40fa42015-01-30 17:27:36 -0800669// )
670//
671// type myModule struct {
Nan Zhangb9eeb1d2017-02-02 10:46:07 -0800672// android.ModuleBase
Colin Cross3f40fa42015-01-30 17:27:36 -0800673// properties struct {
674// MyProperty string
675// }
676// }
677//
Colin Cross36242852017-06-23 15:06:31 -0700678// func NewMyModule() android.Module) {
Colin Cross3f40fa42015-01-30 17:27:36 -0800679// m := &myModule{}
Colin Cross36242852017-06-23 15:06:31 -0700680// m.AddProperties(&m.properties)
681// android.InitAndroidModule(m)
682// return m
Colin Cross3f40fa42015-01-30 17:27:36 -0800683// }
684//
Nan Zhangb9eeb1d2017-02-02 10:46:07 -0800685// func (m *myModule) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Colin Cross3f40fa42015-01-30 17:27:36 -0800686// // Get the CPU architecture for the current build variant.
687// variantArch := ctx.Arch()
688//
689// // ...
690// }
Colin Cross635c3b02016-05-18 15:37:25 -0700691type ModuleBase struct {
Colin Cross3f40fa42015-01-30 17:27:36 -0800692 // Putting the curiously recurring thing pointing to the thing that contains
693 // the thing pattern to good use.
Colin Cross36242852017-06-23 15:06:31 -0700694 // TODO: remove this
Colin Cross635c3b02016-05-18 15:37:25 -0700695 module Module
Colin Cross3f40fa42015-01-30 17:27:36 -0800696
Colin Crossfc754582016-05-17 16:34:16 -0700697 nameProperties nameProperties
Colin Cross3f40fa42015-01-30 17:27:36 -0800698 commonProperties commonProperties
Colin Cross18c46802019-09-24 22:19:02 -0700699 variableProperties interface{}
Colin Cross3f40fa42015-01-30 17:27:36 -0800700 hostAndDeviceProperties hostAndDeviceProperties
701 generalProperties []interface{}
Colin Crossc17727d2018-10-24 12:42:09 -0700702 archProperties [][]interface{}
Colin Crossa120ec12016-08-19 16:07:38 -0700703 customizableProperties []interface{}
Colin Cross3f40fa42015-01-30 17:27:36 -0800704
Paul Duffin63c6e182019-07-24 14:24:38 +0100705 // Information about all the properties on the module that contains visibility rules that need
706 // checking.
707 visibilityPropertyInfo []visibilityProperty
708
709 // The primary visibility property, may be nil, that controls access to the module.
710 primaryVisibilityProperty visibilityProperty
711
Colin Cross3f40fa42015-01-30 17:27:36 -0800712 noAddressSanitizer bool
Colin Cross897266e2020-02-13 13:22:08 -0800713 installFiles InstallPaths
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700714 checkbuildFiles Paths
Bob Badoura75b0572020-02-18 20:21:55 -0800715 noticeFiles Paths
Colin Cross1f8c52b2015-06-16 16:38:17 -0700716
717 // Used by buildTargetSingleton to create checkbuild and per-directory build targets
718 // Only set on the final variant of each module
Colin Cross0875c522017-11-28 17:34:01 -0800719 installTarget WritablePath
720 checkbuildTarget WritablePath
Colin Cross1f8c52b2015-06-16 16:38:17 -0700721 blueprintDir string
Colin Crossa120ec12016-08-19 16:07:38 -0700722
Colin Cross178a5092016-09-13 13:42:32 -0700723 hooks hooks
Colin Cross36242852017-06-23 15:06:31 -0700724
725 registerProps []interface{}
Colin Crosscec81712017-07-13 14:43:27 -0700726
727 // For tests
Colin Crossae887032017-10-23 17:16:14 -0700728 buildParams []BuildParams
Colin Cross4c83e5c2019-02-25 14:54:28 -0800729 ruleParams map[blueprint.Rule]blueprint.RuleParams
Jaewoong Jung38e4fb22018-12-12 09:01:34 -0800730 variables map[string]string
Colin Crossa9d8bee2018-10-02 13:59:46 -0700731
Inseob Kim8471cda2019-11-15 09:59:12 +0900732 initRcPaths Paths
733 vintfFragmentsPaths Paths
734
Colin Crossa9d8bee2018-10-02 13:59:46 -0700735 prefer32 func(ctx BaseModuleContext, base *ModuleBase, class OsClass) bool
Colin Cross36242852017-06-23 15:06:31 -0700736}
737
Colin Cross4157e882019-06-06 16:57:04 -0700738func (m *ModuleBase) DepsMutator(BottomUpMutatorContext) {}
Colin Cross5f692ec2019-02-01 16:53:07 -0800739
Colin Cross4157e882019-06-06 16:57:04 -0700740func (m *ModuleBase) AddProperties(props ...interface{}) {
741 m.registerProps = append(m.registerProps, props...)
Colin Cross36242852017-06-23 15:06:31 -0700742}
743
Colin Cross4157e882019-06-06 16:57:04 -0700744func (m *ModuleBase) GetProperties() []interface{} {
745 return m.registerProps
Colin Cross3f40fa42015-01-30 17:27:36 -0800746}
747
Colin Cross4157e882019-06-06 16:57:04 -0700748func (m *ModuleBase) BuildParamsForTests() []BuildParams {
749 return m.buildParams
Colin Crosscec81712017-07-13 14:43:27 -0700750}
751
Colin Cross4157e882019-06-06 16:57:04 -0700752func (m *ModuleBase) RuleParamsForTests() map[blueprint.Rule]blueprint.RuleParams {
753 return m.ruleParams
Colin Cross4c83e5c2019-02-25 14:54:28 -0800754}
755
Colin Cross4157e882019-06-06 16:57:04 -0700756func (m *ModuleBase) VariablesForTests() map[string]string {
757 return m.variables
Jaewoong Jung38e4fb22018-12-12 09:01:34 -0800758}
759
Colin Cross4157e882019-06-06 16:57:04 -0700760func (m *ModuleBase) Prefer32(prefer32 func(ctx BaseModuleContext, base *ModuleBase, class OsClass) bool) {
761 m.prefer32 = prefer32
Colin Crossa9d8bee2018-10-02 13:59:46 -0700762}
763
Colin Crossce75d2c2016-10-06 16:12:58 -0700764// Name returns the name of the module. It may be overridden by individual module types, for
765// example prebuilts will prepend prebuilt_ to the name.
Colin Cross4157e882019-06-06 16:57:04 -0700766func (m *ModuleBase) Name() string {
767 return String(m.nameProperties.Name)
Colin Crossfc754582016-05-17 16:34:16 -0700768}
769
Colin Cross9a362232019-07-01 15:32:45 -0700770// String returns a string that includes the module name and variants for printing during debugging.
771func (m *ModuleBase) String() string {
772 sb := strings.Builder{}
773 sb.WriteString(m.commonProperties.DebugName)
774 sb.WriteString("{")
775 for i := range m.commonProperties.DebugMutators {
776 if i != 0 {
777 sb.WriteString(",")
778 }
779 sb.WriteString(m.commonProperties.DebugMutators[i])
780 sb.WriteString(":")
781 sb.WriteString(m.commonProperties.DebugVariations[i])
782 }
783 sb.WriteString("}")
784 return sb.String()
785}
786
Colin Crossce75d2c2016-10-06 16:12:58 -0700787// BaseModuleName returns the name of the module as specified in the blueprints file.
Colin Cross4157e882019-06-06 16:57:04 -0700788func (m *ModuleBase) BaseModuleName() string {
789 return String(m.nameProperties.Name)
Colin Crossce75d2c2016-10-06 16:12:58 -0700790}
791
Colin Cross4157e882019-06-06 16:57:04 -0700792func (m *ModuleBase) base() *ModuleBase {
793 return m
Colin Cross3f40fa42015-01-30 17:27:36 -0800794}
795
Paul Duffine2453c72019-05-31 14:00:04 +0100796func (m *ModuleBase) qualifiedModuleId(ctx BaseModuleContext) qualifiedModuleName {
797 return qualifiedModuleName{pkg: ctx.ModuleDir(), name: ctx.ModuleName()}
798}
799
800func (m *ModuleBase) visibilityProperties() []visibilityProperty {
Paul Duffin63c6e182019-07-24 14:24:38 +0100801 return m.visibilityPropertyInfo
802}
803
804func (m *ModuleBase) visibility() []string {
805 // The soong_namespace module does not initialize the primaryVisibilityProperty.
806 if m.primaryVisibilityProperty != nil {
807 return m.primaryVisibilityProperty.getStrings()
808 } else {
809 return nil
Paul Duffine2453c72019-05-31 14:00:04 +0100810 }
811}
812
Colin Cross4157e882019-06-06 16:57:04 -0700813func (m *ModuleBase) Target() Target {
814 return m.commonProperties.CompileTarget
Dan Willemsen490fd492015-11-24 17:53:15 -0800815}
816
Colin Cross4157e882019-06-06 16:57:04 -0700817func (m *ModuleBase) TargetPrimary() bool {
818 return m.commonProperties.CompilePrimary
Colin Cross8b74d172016-09-13 09:59:14 -0700819}
820
Colin Cross4157e882019-06-06 16:57:04 -0700821func (m *ModuleBase) MultiTargets() []Target {
822 return m.commonProperties.CompileMultiTargets
Colin Crossee0bc3b2018-10-02 22:01:37 -0700823}
824
Colin Cross4157e882019-06-06 16:57:04 -0700825func (m *ModuleBase) Os() OsType {
826 return m.Target().Os
Dan Willemsen490fd492015-11-24 17:53:15 -0800827}
828
Colin Cross4157e882019-06-06 16:57:04 -0700829func (m *ModuleBase) Host() bool {
830 return m.Os().Class == Host || m.Os().Class == HostCross
Dan Willemsen97750522016-02-09 17:43:51 -0800831}
832
Colin Cross4157e882019-06-06 16:57:04 -0700833func (m *ModuleBase) Arch() Arch {
834 return m.Target().Arch
Dan Willemsen97750522016-02-09 17:43:51 -0800835}
836
Colin Cross4157e882019-06-06 16:57:04 -0700837func (m *ModuleBase) ArchSpecific() bool {
838 return m.commonProperties.ArchSpecific
Dan Willemsen0b24c742016-10-04 15:13:37 -0700839}
840
Paul Duffin1356d8c2020-02-25 19:26:33 +0000841// True if the current variant is a CommonOS variant, false otherwise.
842func (m *ModuleBase) IsCommonOSVariant() bool {
843 return m.commonProperties.CommonOSVariant
844}
845
Colin Cross4157e882019-06-06 16:57:04 -0700846func (m *ModuleBase) OsClassSupported() []OsClass {
847 switch m.commonProperties.HostOrDeviceSupported {
Colin Crossa1ad8d12016-06-01 17:09:44 -0700848 case HostSupported:
Colin Crossa1ad8d12016-06-01 17:09:44 -0700849 return []OsClass{Host, HostCross}
Dan Albertc6345fb2016-10-20 01:36:11 -0700850 case HostSupportedNoCross:
851 return []OsClass{Host}
Colin Crossa1ad8d12016-06-01 17:09:44 -0700852 case DeviceSupported:
853 return []OsClass{Device}
Dan Albert0981b5c2018-08-02 13:46:35 -0700854 case HostAndDeviceSupported, HostAndDeviceDefault:
Colin Crossa1ad8d12016-06-01 17:09:44 -0700855 var supported []OsClass
Colin Cross4157e882019-06-06 16:57:04 -0700856 if Bool(m.hostAndDeviceProperties.Host_supported) ||
857 (m.commonProperties.HostOrDeviceSupported == HostAndDeviceDefault &&
858 m.hostAndDeviceProperties.Host_supported == nil) {
Colin Crossa1ad8d12016-06-01 17:09:44 -0700859 supported = append(supported, Host, HostCross)
860 }
Colin Cross4157e882019-06-06 16:57:04 -0700861 if m.hostAndDeviceProperties.Device_supported == nil ||
862 *m.hostAndDeviceProperties.Device_supported {
Colin Crossa1ad8d12016-06-01 17:09:44 -0700863 supported = append(supported, Device)
864 }
865 return supported
866 default:
867 return nil
868 }
Colin Cross3f40fa42015-01-30 17:27:36 -0800869}
870
Colin Cross4157e882019-06-06 16:57:04 -0700871func (m *ModuleBase) DeviceSupported() bool {
872 return m.commonProperties.HostOrDeviceSupported == DeviceSupported ||
873 m.commonProperties.HostOrDeviceSupported == HostAndDeviceSupported &&
874 (m.hostAndDeviceProperties.Device_supported == nil ||
875 *m.hostAndDeviceProperties.Device_supported)
Colin Cross3f40fa42015-01-30 17:27:36 -0800876}
877
Paul Duffine44358f2019-11-26 18:04:12 +0000878func (m *ModuleBase) HostSupported() bool {
879 return m.commonProperties.HostOrDeviceSupported == HostSupported ||
880 m.commonProperties.HostOrDeviceSupported == HostAndDeviceSupported &&
881 (m.hostAndDeviceProperties.Host_supported != nil &&
882 *m.hostAndDeviceProperties.Host_supported)
883}
884
Colin Cross4157e882019-06-06 16:57:04 -0700885func (m *ModuleBase) Platform() bool {
Justin Yund5f6c822019-06-25 16:47:17 +0900886 return !m.DeviceSpecific() && !m.SocSpecific() && !m.ProductSpecific() && !m.SystemExtSpecific()
Jiyong Parkc678ad32018-04-10 13:07:10 +0900887}
888
Colin Cross4157e882019-06-06 16:57:04 -0700889func (m *ModuleBase) DeviceSpecific() bool {
890 return Bool(m.commonProperties.Device_specific)
Jiyong Parkc678ad32018-04-10 13:07:10 +0900891}
892
Colin Cross4157e882019-06-06 16:57:04 -0700893func (m *ModuleBase) SocSpecific() bool {
894 return Bool(m.commonProperties.Vendor) || Bool(m.commonProperties.Proprietary) || Bool(m.commonProperties.Soc_specific)
Jiyong Parkc678ad32018-04-10 13:07:10 +0900895}
896
Colin Cross4157e882019-06-06 16:57:04 -0700897func (m *ModuleBase) ProductSpecific() bool {
898 return Bool(m.commonProperties.Product_specific)
Jiyong Parkc678ad32018-04-10 13:07:10 +0900899}
900
Justin Yund5f6c822019-06-25 16:47:17 +0900901func (m *ModuleBase) SystemExtSpecific() bool {
902 return Bool(m.commonProperties.System_ext_specific)
Dario Frenifd05a742018-05-29 13:28:54 +0100903}
904
Bill Peckhamfff3f8a2020-03-20 18:33:20 -0700905func (m *ModuleBase) PartitionTag(config DeviceConfig) string {
906 partition := "system"
907 if m.SocSpecific() {
908 // A SoC-specific module could be on the vendor partition at
909 // "vendor" or the system partition at "system/vendor".
910 if config.VendorPath() == "vendor" {
911 partition = "vendor"
912 }
913 } else if m.DeviceSpecific() {
914 // A device-specific module could be on the odm partition at
915 // "odm", the vendor partition at "vendor/odm", or the system
916 // partition at "system/vendor/odm".
917 if config.OdmPath() == "odm" {
918 partition = "odm"
Ramy Medhat944839a2020-03-31 22:14:52 -0400919 } else if strings.HasPrefix(config.OdmPath(), "vendor/") {
Bill Peckhamfff3f8a2020-03-20 18:33:20 -0700920 partition = "vendor"
921 }
922 } else if m.ProductSpecific() {
923 // A product-specific module could be on the product partition
924 // at "product" or the system partition at "system/product".
925 if config.ProductPath() == "product" {
926 partition = "product"
927 }
928 } else if m.SystemExtSpecific() {
929 // A system_ext-specific module could be on the system_ext
930 // partition at "system_ext" or the system partition at
931 // "system/system_ext".
932 if config.SystemExtPath() == "system_ext" {
933 partition = "system_ext"
934 }
935 }
936 return partition
937}
938
Colin Cross4157e882019-06-06 16:57:04 -0700939func (m *ModuleBase) Enabled() bool {
940 if m.commonProperties.Enabled == nil {
941 return !m.Os().DefaultDisabled
Dan Willemsen490fd492015-11-24 17:53:15 -0800942 }
Colin Cross4157e882019-06-06 16:57:04 -0700943 return *m.commonProperties.Enabled
Colin Cross3f40fa42015-01-30 17:27:36 -0800944}
945
Inseob Kimeec88e12020-01-22 11:11:29 +0900946func (m *ModuleBase) Disable() {
947 m.commonProperties.Enabled = proptools.BoolPtr(false)
948}
949
Colin Cross4157e882019-06-06 16:57:04 -0700950func (m *ModuleBase) SkipInstall() {
951 m.commonProperties.SkipInstall = true
Colin Crossce75d2c2016-10-06 16:12:58 -0700952}
953
Ulya Trafimovichb28cc372020-01-13 15:18:16 +0000954func (m *ModuleBase) IsSkipInstall() bool {
955 return m.commonProperties.SkipInstall == true
956}
957
Colin Cross4157e882019-06-06 16:57:04 -0700958func (m *ModuleBase) ExportedToMake() bool {
959 return m.commonProperties.NamespaceExportedToMake
Jiyong Park374510b2018-03-19 18:23:01 +0900960}
961
Colin Cross897266e2020-02-13 13:22:08 -0800962func (m *ModuleBase) computeInstallDeps(ctx blueprint.ModuleContext) InstallPaths {
Colin Cross3f40fa42015-01-30 17:27:36 -0800963
Colin Cross897266e2020-02-13 13:22:08 -0800964 var result InstallPaths
Colin Cross6b753602018-06-21 13:03:07 -0700965 // TODO(ccross): we need to use WalkDeps and have some way to know which dependencies require installation
Colin Cross897266e2020-02-13 13:22:08 -0800966 ctx.VisitDepsDepthFirst(func(m blueprint.Module) {
967 if a, ok := m.(Module); ok {
968 result = append(result, a.filesToInstall()...)
969 }
970 })
Colin Cross3f40fa42015-01-30 17:27:36 -0800971
972 return result
973}
974
Colin Cross897266e2020-02-13 13:22:08 -0800975func (m *ModuleBase) filesToInstall() InstallPaths {
Colin Cross4157e882019-06-06 16:57:04 -0700976 return m.installFiles
Colin Cross3f40fa42015-01-30 17:27:36 -0800977}
978
Colin Cross4157e882019-06-06 16:57:04 -0700979func (m *ModuleBase) NoAddressSanitizer() bool {
980 return m.noAddressSanitizer
Colin Cross3f40fa42015-01-30 17:27:36 -0800981}
982
Colin Cross4157e882019-06-06 16:57:04 -0700983func (m *ModuleBase) InstallInData() bool {
Dan Willemsen782a2d12015-12-21 14:55:28 -0800984 return false
985}
986
Jaewoong Jung0949f312019-09-11 10:25:18 -0700987func (m *ModuleBase) InstallInTestcases() bool {
988 return false
989}
990
Colin Cross4157e882019-06-06 16:57:04 -0700991func (m *ModuleBase) InstallInSanitizerDir() bool {
Vishwath Mohan1dd88392017-03-29 22:00:18 -0700992 return false
993}
994
Yifan Hong1b3348d2020-01-21 15:53:22 -0800995func (m *ModuleBase) InstallInRamdisk() bool {
996 return Bool(m.commonProperties.Ramdisk)
997}
998
Colin Cross4157e882019-06-06 16:57:04 -0700999func (m *ModuleBase) InstallInRecovery() bool {
1000 return Bool(m.commonProperties.Recovery)
Jiyong Parkf9332f12018-02-01 00:54:12 +09001001}
1002
Colin Cross90ba5f42019-10-02 11:10:58 -07001003func (m *ModuleBase) InstallInRoot() bool {
1004 return false
1005}
1006
Colin Cross607d8582019-07-29 16:44:46 -07001007func (m *ModuleBase) InstallBypassMake() bool {
1008 return false
1009}
1010
Colin Cross6e359402020-02-10 15:29:54 -08001011func (m *ModuleBase) InstallForceOS() *OsType {
1012 return nil
1013}
1014
Colin Cross4157e882019-06-06 16:57:04 -07001015func (m *ModuleBase) Owner() string {
1016 return String(m.commonProperties.Owner)
Sundong Ahn4fd04bb2018-08-31 18:01:37 +09001017}
1018
Bob Badoura75b0572020-02-18 20:21:55 -08001019func (m *ModuleBase) NoticeFiles() Paths {
1020 return m.noticeFiles
Jiyong Park52818fc2019-03-18 12:01:38 +09001021}
1022
Colin Cross7228ecd2019-11-18 16:00:16 -08001023func (m *ModuleBase) setImageVariation(variant string) {
1024 m.commonProperties.ImageVariation = variant
1025}
1026
1027func (m *ModuleBase) ImageVariation() blueprint.Variation {
1028 return blueprint.Variation{
1029 Mutator: "image",
1030 Variation: m.base().commonProperties.ImageVariation,
1031 }
1032}
1033
Paul Duffin9b76c0b2020-03-12 10:24:35 +00001034func (m *ModuleBase) getVariationByMutatorName(mutator string) string {
1035 for i, v := range m.commonProperties.DebugMutators {
1036 if v == mutator {
1037 return m.commonProperties.DebugVariations[i]
1038 }
1039 }
1040
1041 return ""
1042}
1043
Yifan Hong1b3348d2020-01-21 15:53:22 -08001044func (m *ModuleBase) InRamdisk() bool {
1045 return m.base().commonProperties.ImageVariation == RamdiskVariation
1046}
1047
Colin Cross7228ecd2019-11-18 16:00:16 -08001048func (m *ModuleBase) InRecovery() bool {
1049 return m.base().commonProperties.ImageVariation == RecoveryVariation
1050}
1051
Jiyong Park6a8cf5f2019-12-30 16:31:09 +09001052func (m *ModuleBase) RequiredModuleNames() []string {
1053 return m.base().commonProperties.Required
1054}
1055
1056func (m *ModuleBase) HostRequiredModuleNames() []string {
1057 return m.base().commonProperties.Host_required
1058}
1059
1060func (m *ModuleBase) TargetRequiredModuleNames() []string {
1061 return m.base().commonProperties.Target_required
1062}
1063
Inseob Kim8471cda2019-11-15 09:59:12 +09001064func (m *ModuleBase) InitRc() Paths {
1065 return append(Paths{}, m.initRcPaths...)
1066}
1067
1068func (m *ModuleBase) VintfFragments() Paths {
1069 return append(Paths{}, m.vintfFragmentsPaths...)
1070}
1071
Colin Cross4157e882019-06-06 16:57:04 -07001072func (m *ModuleBase) generateModuleTarget(ctx ModuleContext) {
Colin Cross897266e2020-02-13 13:22:08 -08001073 var allInstalledFiles InstallPaths
1074 var allCheckbuildFiles Paths
Colin Cross0875c522017-11-28 17:34:01 -08001075 ctx.VisitAllModuleVariants(func(module Module) {
1076 a := module.base()
Colin Crossc9404352015-03-26 16:10:12 -07001077 allInstalledFiles = append(allInstalledFiles, a.installFiles...)
1078 allCheckbuildFiles = append(allCheckbuildFiles, a.checkbuildFiles...)
Colin Cross3f40fa42015-01-30 17:27:36 -08001079 })
1080
Colin Cross0875c522017-11-28 17:34:01 -08001081 var deps Paths
Colin Cross9454bfa2015-03-17 13:24:18 -07001082
Jeff Gaston088e29e2017-11-29 16:47:17 -08001083 namespacePrefix := ctx.Namespace().(*Namespace).id
1084 if namespacePrefix != "" {
1085 namespacePrefix = namespacePrefix + "-"
1086 }
1087
Colin Cross3f40fa42015-01-30 17:27:36 -08001088 if len(allInstalledFiles) > 0 {
Jeff Gaston088e29e2017-11-29 16:47:17 -08001089 name := PathForPhony(ctx, namespacePrefix+ctx.ModuleName()+"-install")
Colin Cross0875c522017-11-28 17:34:01 -08001090 ctx.Build(pctx, BuildParams{
Colin Cross9454bfa2015-03-17 13:24:18 -07001091 Rule: blueprint.Phony,
Colin Cross0875c522017-11-28 17:34:01 -08001092 Output: name,
Colin Cross897266e2020-02-13 13:22:08 -08001093 Implicits: allInstalledFiles.Paths(),
Colin Crossaabf6792017-11-29 00:27:14 -08001094 Default: !ctx.Config().EmbeddedInMake(),
Colin Cross9454bfa2015-03-17 13:24:18 -07001095 })
1096 deps = append(deps, name)
Colin Cross4157e882019-06-06 16:57:04 -07001097 m.installTarget = name
Colin Cross9454bfa2015-03-17 13:24:18 -07001098 }
1099
1100 if len(allCheckbuildFiles) > 0 {
Jeff Gaston088e29e2017-11-29 16:47:17 -08001101 name := PathForPhony(ctx, namespacePrefix+ctx.ModuleName()+"-checkbuild")
Colin Cross0875c522017-11-28 17:34:01 -08001102 ctx.Build(pctx, BuildParams{
Colin Cross9454bfa2015-03-17 13:24:18 -07001103 Rule: blueprint.Phony,
Colin Cross0875c522017-11-28 17:34:01 -08001104 Output: name,
1105 Implicits: allCheckbuildFiles,
Colin Cross9454bfa2015-03-17 13:24:18 -07001106 })
1107 deps = append(deps, name)
Colin Cross4157e882019-06-06 16:57:04 -07001108 m.checkbuildTarget = name
Colin Cross9454bfa2015-03-17 13:24:18 -07001109 }
1110
1111 if len(deps) > 0 {
Dan Willemsen5ba07e82015-12-11 13:51:06 -08001112 suffix := ""
Colin Crossaabf6792017-11-29 00:27:14 -08001113 if ctx.Config().EmbeddedInMake() {
Dan Willemsen5ba07e82015-12-11 13:51:06 -08001114 suffix = "-soong"
1115 }
1116
Jeff Gaston088e29e2017-11-29 16:47:17 -08001117 name := PathForPhony(ctx, namespacePrefix+ctx.ModuleName()+suffix)
Colin Cross0875c522017-11-28 17:34:01 -08001118 ctx.Build(pctx, BuildParams{
Colin Cross9454bfa2015-03-17 13:24:18 -07001119 Rule: blueprint.Phony,
Jeff Gaston088e29e2017-11-29 16:47:17 -08001120 Outputs: []WritablePath{name},
Colin Cross9454bfa2015-03-17 13:24:18 -07001121 Implicits: deps,
Colin Cross3f40fa42015-01-30 17:27:36 -08001122 })
Colin Cross1f8c52b2015-06-16 16:38:17 -07001123
Colin Cross4157e882019-06-06 16:57:04 -07001124 m.blueprintDir = ctx.ModuleDir()
Colin Cross3f40fa42015-01-30 17:27:36 -08001125 }
1126}
1127
Colin Crossc34d2322020-01-03 15:23:27 -08001128func determineModuleKind(m *ModuleBase, ctx blueprint.EarlyModuleContext) moduleKind {
Colin Cross4157e882019-06-06 16:57:04 -07001129 var socSpecific = Bool(m.commonProperties.Vendor) || Bool(m.commonProperties.Proprietary) || Bool(m.commonProperties.Soc_specific)
1130 var deviceSpecific = Bool(m.commonProperties.Device_specific)
1131 var productSpecific = Bool(m.commonProperties.Product_specific)
Justin Yund5f6c822019-06-25 16:47:17 +09001132 var systemExtSpecific = Bool(m.commonProperties.System_ext_specific)
Jiyong Park2db76922017-11-08 16:03:48 +09001133
Dario Frenifd05a742018-05-29 13:28:54 +01001134 msg := "conflicting value set here"
1135 if socSpecific && deviceSpecific {
1136 ctx.PropertyErrorf("device_specific", "a module cannot be specific to SoC and device at the same time.")
Colin Cross4157e882019-06-06 16:57:04 -07001137 if Bool(m.commonProperties.Vendor) {
Jiyong Park2db76922017-11-08 16:03:48 +09001138 ctx.PropertyErrorf("vendor", msg)
1139 }
Colin Cross4157e882019-06-06 16:57:04 -07001140 if Bool(m.commonProperties.Proprietary) {
Jiyong Park2db76922017-11-08 16:03:48 +09001141 ctx.PropertyErrorf("proprietary", msg)
1142 }
Colin Cross4157e882019-06-06 16:57:04 -07001143 if Bool(m.commonProperties.Soc_specific) {
Jiyong Park2db76922017-11-08 16:03:48 +09001144 ctx.PropertyErrorf("soc_specific", msg)
1145 }
1146 }
1147
Justin Yund5f6c822019-06-25 16:47:17 +09001148 if productSpecific && systemExtSpecific {
1149 ctx.PropertyErrorf("product_specific", "a module cannot be specific to product and system_ext at the same time.")
1150 ctx.PropertyErrorf("system_ext_specific", msg)
Dario Frenifd05a742018-05-29 13:28:54 +01001151 }
1152
Justin Yund5f6c822019-06-25 16:47:17 +09001153 if (socSpecific || deviceSpecific) && (productSpecific || systemExtSpecific) {
Dario Frenifd05a742018-05-29 13:28:54 +01001154 if productSpecific {
1155 ctx.PropertyErrorf("product_specific", "a module cannot be specific to SoC or device and product at the same time.")
1156 } else {
Justin Yund5f6c822019-06-25 16:47:17 +09001157 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 +01001158 }
1159 if deviceSpecific {
1160 ctx.PropertyErrorf("device_specific", msg)
1161 } else {
Colin Cross4157e882019-06-06 16:57:04 -07001162 if Bool(m.commonProperties.Vendor) {
Dario Frenifd05a742018-05-29 13:28:54 +01001163 ctx.PropertyErrorf("vendor", msg)
1164 }
Colin Cross4157e882019-06-06 16:57:04 -07001165 if Bool(m.commonProperties.Proprietary) {
Dario Frenifd05a742018-05-29 13:28:54 +01001166 ctx.PropertyErrorf("proprietary", msg)
1167 }
Colin Cross4157e882019-06-06 16:57:04 -07001168 if Bool(m.commonProperties.Soc_specific) {
Dario Frenifd05a742018-05-29 13:28:54 +01001169 ctx.PropertyErrorf("soc_specific", msg)
1170 }
1171 }
1172 }
1173
Jiyong Park2db76922017-11-08 16:03:48 +09001174 if productSpecific {
1175 return productSpecificModule
Justin Yund5f6c822019-06-25 16:47:17 +09001176 } else if systemExtSpecific {
1177 return systemExtSpecificModule
Jiyong Park2db76922017-11-08 16:03:48 +09001178 } else if deviceSpecific {
1179 return deviceSpecificModule
1180 } else if socSpecific {
1181 return socSpecificModule
1182 } else {
1183 return platformModule
1184 }
1185}
1186
Colin Crossc34d2322020-01-03 15:23:27 -08001187func (m *ModuleBase) earlyModuleContextFactory(ctx blueprint.EarlyModuleContext) earlyModuleContext {
Colin Cross1184b642019-12-30 18:43:07 -08001188 return earlyModuleContext{
Colin Crossc34d2322020-01-03 15:23:27 -08001189 EarlyModuleContext: ctx,
1190 kind: determineModuleKind(m, ctx),
1191 config: ctx.Config().(Config),
Colin Cross3f40fa42015-01-30 17:27:36 -08001192 }
Colin Cross3f40fa42015-01-30 17:27:36 -08001193}
1194
Colin Cross1184b642019-12-30 18:43:07 -08001195func (m *ModuleBase) baseModuleContextFactory(ctx blueprint.BaseModuleContext) baseModuleContext {
1196 return baseModuleContext{
1197 bp: ctx,
1198 earlyModuleContext: m.earlyModuleContextFactory(ctx),
1199 os: m.commonProperties.CompileOS,
1200 target: m.commonProperties.CompileTarget,
1201 targetPrimary: m.commonProperties.CompilePrimary,
1202 multiTargets: m.commonProperties.CompileMultiTargets,
1203 }
1204}
1205
Colin Cross4157e882019-06-06 16:57:04 -07001206func (m *ModuleBase) GenerateBuildActions(blueprintCtx blueprint.ModuleContext) {
Colin Cross25de6c32019-06-06 14:29:25 -07001207 ctx := &moduleContext{
Colin Cross0ea8ba82019-06-06 14:33:29 -07001208 module: m.module,
Colin Crossdc35e212019-06-06 16:13:11 -07001209 bp: blueprintCtx,
Colin Cross0ea8ba82019-06-06 14:33:29 -07001210 baseModuleContext: m.baseModuleContextFactory(blueprintCtx),
1211 installDeps: m.computeInstallDeps(blueprintCtx),
1212 installFiles: m.installFiles,
Colin Cross0ea8ba82019-06-06 14:33:29 -07001213 variables: make(map[string]string),
Colin Cross3f40fa42015-01-30 17:27:36 -08001214 }
1215
Colin Cross6c4f21f2019-06-06 15:41:36 -07001216 // Temporarily continue to call blueprintCtx.GetMissingDependencies() to maintain the previous behavior of never
1217 // reporting missing dependency errors in Blueprint when AllowMissingDependencies == true.
1218 // TODO: This will be removed once defaults modules handle missing dependency errors
1219 blueprintCtx.GetMissingDependencies()
1220
Colin Crossdc35e212019-06-06 16:13:11 -07001221 // For the final GenerateAndroidBuildActions pass, require that all visited dependencies Soong modules and
Paul Duffin1356d8c2020-02-25 19:26:33 +00001222 // are enabled. Unless the module is a CommonOS variant which may have dependencies on disabled variants
1223 // (because the dependencies are added before the modules are disabled). The
1224 // GetOsSpecificVariantsOfCommonOSVariant(...) method will ensure that the disabled variants are
1225 // ignored.
1226 ctx.baseModuleContext.strictVisitDeps = !m.IsCommonOSVariant()
Colin Crossdc35e212019-06-06 16:13:11 -07001227
Colin Cross4c83e5c2019-02-25 14:54:28 -08001228 if ctx.config.captureBuild {
1229 ctx.ruleParams = make(map[blueprint.Rule]blueprint.RuleParams)
1230 }
1231
Colin Cross67a5c132017-05-09 13:45:28 -07001232 desc := "//" + ctx.ModuleDir() + ":" + ctx.ModuleName() + " "
1233 var suffix []string
Colin Cross0875c522017-11-28 17:34:01 -08001234 if ctx.Os().Class != Device && ctx.Os().Class != Generic {
1235 suffix = append(suffix, ctx.Os().String())
Colin Cross67a5c132017-05-09 13:45:28 -07001236 }
Colin Cross0875c522017-11-28 17:34:01 -08001237 if !ctx.PrimaryArch() {
1238 suffix = append(suffix, ctx.Arch().ArchType.String())
Colin Cross67a5c132017-05-09 13:45:28 -07001239 }
Dan Willemsenb13a9482020-02-14 11:25:54 -08001240 if apex, ok := m.module.(ApexModule); ok && !apex.IsForPlatform() {
1241 suffix = append(suffix, apex.ApexName())
1242 }
Colin Cross67a5c132017-05-09 13:45:28 -07001243
1244 ctx.Variable(pctx, "moduleDesc", desc)
1245
1246 s := ""
1247 if len(suffix) > 0 {
1248 s = " [" + strings.Join(suffix, " ") + "]"
1249 }
1250 ctx.Variable(pctx, "moduleDescSuffix", s)
1251
Dan Willemsen569edc52018-11-19 09:33:29 -08001252 // Some common property checks for properties that will be used later in androidmk.go
Colin Cross4157e882019-06-06 16:57:04 -07001253 if m.commonProperties.Dist.Dest != nil {
1254 _, err := validateSafePath(*m.commonProperties.Dist.Dest)
Dan Willemsen569edc52018-11-19 09:33:29 -08001255 if err != nil {
1256 ctx.PropertyErrorf("dist.dest", "%s", err.Error())
1257 }
1258 }
Colin Cross4157e882019-06-06 16:57:04 -07001259 if m.commonProperties.Dist.Dir != nil {
1260 _, err := validateSafePath(*m.commonProperties.Dist.Dir)
Dan Willemsen569edc52018-11-19 09:33:29 -08001261 if err != nil {
1262 ctx.PropertyErrorf("dist.dir", "%s", err.Error())
1263 }
1264 }
Colin Cross4157e882019-06-06 16:57:04 -07001265 if m.commonProperties.Dist.Suffix != nil {
1266 if strings.Contains(*m.commonProperties.Dist.Suffix, "/") {
Dan Willemsen569edc52018-11-19 09:33:29 -08001267 ctx.PropertyErrorf("dist.suffix", "Suffix may not contain a '/' character.")
1268 }
1269 }
1270
Colin Cross4157e882019-06-06 16:57:04 -07001271 if m.Enabled() {
Jooyung Hand48f3c32019-08-23 11:18:57 +09001272 // ensure all direct android.Module deps are enabled
1273 ctx.VisitDirectDepsBlueprint(func(bm blueprint.Module) {
1274 if _, ok := bm.(Module); ok {
1275 ctx.validateAndroidModule(bm, ctx.baseModuleContext.strictVisitDeps)
1276 }
1277 })
1278
Bob Badoura75b0572020-02-18 20:21:55 -08001279 m.noticeFiles = make([]Path, 0)
1280 optPath := OptionalPath{}
1281 notice := proptools.StringDefault(m.commonProperties.Notice, "")
Colin Cross4157e882019-06-06 16:57:04 -07001282 if module := SrcIsModule(notice); module != "" {
Bob Badoura75b0572020-02-18 20:21:55 -08001283 optPath = ctx.ExpandOptionalSource(&notice, "notice")
1284 } else if notice != "" {
Jiyong Park52818fc2019-03-18 12:01:38 +09001285 noticePath := filepath.Join(ctx.ModuleDir(), notice)
Bob Badoura75b0572020-02-18 20:21:55 -08001286 optPath = ExistentPathForSource(ctx, noticePath)
1287 }
1288 if optPath.Valid() {
1289 m.noticeFiles = append(m.noticeFiles, optPath.Path())
1290 } else {
1291 for _, notice = range []string{"LICENSE", "LICENCE", "NOTICE"} {
1292 noticePath := filepath.Join(ctx.ModuleDir(), notice)
1293 optPath = ExistentPathForSource(ctx, noticePath)
1294 if optPath.Valid() {
1295 m.noticeFiles = append(m.noticeFiles, optPath.Path())
1296 }
1297 }
Jaewoong Jung62707f72018-11-16 13:26:43 -08001298 }
Jaewoong Jung5b425e22019-06-17 17:40:56 -07001299
1300 m.module.GenerateAndroidBuildActions(ctx)
1301 if ctx.Failed() {
1302 return
1303 }
1304
1305 m.installFiles = append(m.installFiles, ctx.installFiles...)
1306 m.checkbuildFiles = append(m.checkbuildFiles, ctx.checkbuildFiles...)
Inseob Kim8471cda2019-11-15 09:59:12 +09001307 m.initRcPaths = PathsForModuleSrc(ctx, m.commonProperties.Init_rc)
1308 m.vintfFragmentsPaths = PathsForModuleSrc(ctx, m.commonProperties.Vintf_fragments)
Colin Crossdc35e212019-06-06 16:13:11 -07001309 } else if ctx.Config().AllowMissingDependencies() {
1310 // If the module is not enabled it will not create any build rules, nothing will call
1311 // ctx.GetMissingDependencies(), and blueprint will consider the missing dependencies to be unhandled
1312 // and report them as an error even when AllowMissingDependencies = true. Call
1313 // ctx.GetMissingDependencies() here to tell blueprint not to handle them.
1314 ctx.GetMissingDependencies()
Colin Cross3f40fa42015-01-30 17:27:36 -08001315 }
1316
Colin Cross4157e882019-06-06 16:57:04 -07001317 if m == ctx.FinalModule().(Module).base() {
1318 m.generateModuleTarget(ctx)
Colin Cross9b1d13d2016-09-19 15:18:11 -07001319 if ctx.Failed() {
1320 return
1321 }
Colin Cross3f40fa42015-01-30 17:27:36 -08001322 }
Colin Crosscec81712017-07-13 14:43:27 -07001323
Colin Cross4157e882019-06-06 16:57:04 -07001324 m.buildParams = ctx.buildParams
1325 m.ruleParams = ctx.ruleParams
1326 m.variables = ctx.variables
Colin Cross3f40fa42015-01-30 17:27:36 -08001327}
1328
Colin Cross1184b642019-12-30 18:43:07 -08001329type earlyModuleContext struct {
Colin Crossc34d2322020-01-03 15:23:27 -08001330 blueprint.EarlyModuleContext
Colin Cross1184b642019-12-30 18:43:07 -08001331
1332 kind moduleKind
1333 config Config
1334}
1335
1336func (e *earlyModuleContext) Glob(globPattern string, excludes []string) Paths {
1337 ret, err := e.GlobWithDeps(globPattern, excludes)
1338 if err != nil {
1339 e.ModuleErrorf("glob: %s", err.Error())
1340 }
1341 return pathsForModuleSrcFromFullPath(e, ret, true)
1342}
1343
1344func (e *earlyModuleContext) GlobFiles(globPattern string, excludes []string) Paths {
1345 ret, err := e.GlobWithDeps(globPattern, excludes)
1346 if err != nil {
1347 e.ModuleErrorf("glob: %s", err.Error())
1348 }
1349 return pathsForModuleSrcFromFullPath(e, ret, false)
1350}
1351
Colin Cross988414c2020-01-11 01:11:46 +00001352func (b *earlyModuleContext) IsSymlink(path Path) bool {
1353 fileInfo, err := b.config.fs.Lstat(path.String())
1354 if err != nil {
1355 b.ModuleErrorf("os.Lstat(%q) failed: %s", path.String(), err)
1356 }
1357 return fileInfo.Mode()&os.ModeSymlink == os.ModeSymlink
1358}
1359
1360func (b *earlyModuleContext) Readlink(path Path) string {
1361 dest, err := b.config.fs.Readlink(path.String())
1362 if err != nil {
1363 b.ModuleErrorf("os.Readlink(%q) failed: %s", path.String(), err)
1364 }
1365 return dest
1366}
1367
Colin Cross1184b642019-12-30 18:43:07 -08001368func (e *earlyModuleContext) Module() Module {
Colin Crossc34d2322020-01-03 15:23:27 -08001369 module, _ := e.EarlyModuleContext.Module().(Module)
Colin Cross1184b642019-12-30 18:43:07 -08001370 return module
1371}
1372
1373func (e *earlyModuleContext) Config() Config {
Colin Crossc34d2322020-01-03 15:23:27 -08001374 return e.EarlyModuleContext.Config().(Config)
Colin Cross1184b642019-12-30 18:43:07 -08001375}
1376
1377func (e *earlyModuleContext) AConfig() Config {
1378 return e.config
1379}
1380
1381func (e *earlyModuleContext) DeviceConfig() DeviceConfig {
1382 return DeviceConfig{e.config.deviceConfig}
1383}
1384
1385func (e *earlyModuleContext) Platform() bool {
1386 return e.kind == platformModule
1387}
1388
1389func (e *earlyModuleContext) DeviceSpecific() bool {
1390 return e.kind == deviceSpecificModule
1391}
1392
1393func (e *earlyModuleContext) SocSpecific() bool {
1394 return e.kind == socSpecificModule
1395}
1396
1397func (e *earlyModuleContext) ProductSpecific() bool {
1398 return e.kind == productSpecificModule
1399}
1400
1401func (e *earlyModuleContext) SystemExtSpecific() bool {
1402 return e.kind == systemExtSpecificModule
1403}
1404
1405type baseModuleContext struct {
1406 bp blueprint.BaseModuleContext
1407 earlyModuleContext
Colin Crossfb0c16e2019-11-20 17:12:35 -08001408 os OsType
Colin Cross8b74d172016-09-13 09:59:14 -07001409 target Target
Colin Crossee0bc3b2018-10-02 22:01:37 -07001410 multiTargets []Target
Colin Cross8b74d172016-09-13 09:59:14 -07001411 targetPrimary bool
1412 debug bool
Colin Crossdc35e212019-06-06 16:13:11 -07001413
1414 walkPath []Module
Paul Duffinc5192442020-03-31 11:31:36 +01001415 tagPath []blueprint.DependencyTag
Colin Crossdc35e212019-06-06 16:13:11 -07001416
1417 strictVisitDeps bool // If true, enforce that all dependencies are enabled
Colin Crossf6566ed2015-03-24 11:13:38 -07001418}
1419
Paul Duffinca7f0ef2020-02-25 15:50:49 +00001420func (b *baseModuleContext) OtherModuleName(m blueprint.Module) string {
1421 return b.bp.OtherModuleName(m)
1422}
1423func (b *baseModuleContext) OtherModuleDir(m blueprint.Module) string { return b.bp.OtherModuleDir(m) }
Colin Cross1184b642019-12-30 18:43:07 -08001424func (b *baseModuleContext) OtherModuleErrorf(m blueprint.Module, fmt string, args ...interface{}) {
Jooyung Hancd87c692020-02-26 02:05:18 +09001425 b.bp.OtherModuleErrorf(m, fmt, args...)
Colin Cross1184b642019-12-30 18:43:07 -08001426}
1427func (b *baseModuleContext) OtherModuleDependencyTag(m blueprint.Module) blueprint.DependencyTag {
1428 return b.bp.OtherModuleDependencyTag(m)
1429}
Paul Duffinca7f0ef2020-02-25 15:50:49 +00001430func (b *baseModuleContext) OtherModuleExists(name string) bool { return b.bp.OtherModuleExists(name) }
1431func (b *baseModuleContext) OtherModuleType(m blueprint.Module) string {
1432 return b.bp.OtherModuleType(m)
1433}
Colin Cross1184b642019-12-30 18:43:07 -08001434
1435func (b *baseModuleContext) GetDirectDepWithTag(name string, tag blueprint.DependencyTag) blueprint.Module {
1436 return b.bp.GetDirectDepWithTag(name, tag)
1437}
1438
Colin Cross25de6c32019-06-06 14:29:25 -07001439type moduleContext struct {
Colin Crossdc35e212019-06-06 16:13:11 -07001440 bp blueprint.ModuleContext
Colin Cross0ea8ba82019-06-06 14:33:29 -07001441 baseModuleContext
Colin Cross897266e2020-02-13 13:22:08 -08001442 installDeps InstallPaths
1443 installFiles InstallPaths
Dan Willemsen34cc69e2015-09-23 15:26:20 -07001444 checkbuildFiles Paths
Colin Cross8d8f8e22016-08-03 11:57:50 -07001445 module Module
Colin Crosscec81712017-07-13 14:43:27 -07001446
1447 // For tests
Colin Crossae887032017-10-23 17:16:14 -07001448 buildParams []BuildParams
Colin Cross4c83e5c2019-02-25 14:54:28 -08001449 ruleParams map[blueprint.Rule]blueprint.RuleParams
Jaewoong Jung38e4fb22018-12-12 09:01:34 -08001450 variables map[string]string
Colin Cross6ff51382015-12-17 16:39:19 -08001451}
1452
Colin Crossb88b3c52019-06-10 15:15:17 -07001453func (m *moduleContext) ninjaError(params BuildParams, err error) (PackageContext, BuildParams) {
1454 return pctx, BuildParams{
Colin Cross4b69c492019-06-07 13:06:06 -07001455 Rule: ErrorRule,
1456 Description: params.Description,
1457 Output: params.Output,
1458 Outputs: params.Outputs,
1459 ImplicitOutput: params.ImplicitOutput,
1460 ImplicitOutputs: params.ImplicitOutputs,
Colin Cross6ff51382015-12-17 16:39:19 -08001461 Args: map[string]string{
1462 "error": err.Error(),
1463 },
Colin Crossb88b3c52019-06-10 15:15:17 -07001464 }
Colin Cross3f40fa42015-01-30 17:27:36 -08001465}
1466
Colin Cross25de6c32019-06-06 14:29:25 -07001467func (m *moduleContext) ModuleBuild(pctx PackageContext, params ModuleBuildParams) {
1468 m.Build(pctx, BuildParams(params))
Colin Cross3f40fa42015-01-30 17:27:36 -08001469}
1470
Colin Cross0875c522017-11-28 17:34:01 -08001471func convertBuildParams(params BuildParams) blueprint.BuildParams {
Dan Willemsen34cc69e2015-09-23 15:26:20 -07001472 bparams := blueprint.BuildParams{
Dan Willemsen9f3c5742016-11-03 14:28:31 -07001473 Rule: params.Rule,
Colin Cross0875c522017-11-28 17:34:01 -08001474 Description: params.Description,
Colin Cross33bfb0a2016-11-21 17:23:08 -08001475 Deps: params.Deps,
Dan Willemsen9f3c5742016-11-03 14:28:31 -07001476 Outputs: params.Outputs.Strings(),
1477 ImplicitOutputs: params.ImplicitOutputs.Strings(),
1478 Inputs: params.Inputs.Strings(),
1479 Implicits: params.Implicits.Strings(),
1480 OrderOnly: params.OrderOnly.Strings(),
1481 Args: params.Args,
1482 Optional: !params.Default,
Dan Willemsen34cc69e2015-09-23 15:26:20 -07001483 }
1484
Colin Cross33bfb0a2016-11-21 17:23:08 -08001485 if params.Depfile != nil {
1486 bparams.Depfile = params.Depfile.String()
1487 }
Dan Willemsen34cc69e2015-09-23 15:26:20 -07001488 if params.Output != nil {
1489 bparams.Outputs = append(bparams.Outputs, params.Output.String())
1490 }
Dan Willemsen9f3c5742016-11-03 14:28:31 -07001491 if params.ImplicitOutput != nil {
1492 bparams.ImplicitOutputs = append(bparams.ImplicitOutputs, params.ImplicitOutput.String())
1493 }
Dan Willemsen34cc69e2015-09-23 15:26:20 -07001494 if params.Input != nil {
1495 bparams.Inputs = append(bparams.Inputs, params.Input.String())
1496 }
1497 if params.Implicit != nil {
1498 bparams.Implicits = append(bparams.Implicits, params.Implicit.String())
1499 }
1500
Colin Cross0b9f31f2019-02-28 11:00:01 -08001501 bparams.Outputs = proptools.NinjaEscapeList(bparams.Outputs)
1502 bparams.ImplicitOutputs = proptools.NinjaEscapeList(bparams.ImplicitOutputs)
1503 bparams.Inputs = proptools.NinjaEscapeList(bparams.Inputs)
1504 bparams.Implicits = proptools.NinjaEscapeList(bparams.Implicits)
1505 bparams.OrderOnly = proptools.NinjaEscapeList(bparams.OrderOnly)
1506 bparams.Depfile = proptools.NinjaEscapeList([]string{bparams.Depfile})[0]
Colin Crossfe4bc362018-09-12 10:02:13 -07001507
Colin Cross0875c522017-11-28 17:34:01 -08001508 return bparams
1509}
1510
Colin Cross25de6c32019-06-06 14:29:25 -07001511func (m *moduleContext) Variable(pctx PackageContext, name, value string) {
1512 if m.config.captureBuild {
1513 m.variables[name] = value
Jaewoong Jung38e4fb22018-12-12 09:01:34 -08001514 }
1515
Colin Crossdc35e212019-06-06 16:13:11 -07001516 m.bp.Variable(pctx.PackageContext, name, value)
Colin Cross0875c522017-11-28 17:34:01 -08001517}
1518
Colin Cross25de6c32019-06-06 14:29:25 -07001519func (m *moduleContext) Rule(pctx PackageContext, name string, params blueprint.RuleParams,
Colin Cross0875c522017-11-28 17:34:01 -08001520 argNames ...string) blueprint.Rule {
1521
Ramy Medhat944839a2020-03-31 22:14:52 -04001522 if m.config.UseRemoteBuild() {
1523 if params.Pool == nil {
1524 // When USE_GOMA=true or USE_RBE=true are set and the rule is not supported by goma/RBE, restrict
1525 // jobs to the local parallelism value
1526 params.Pool = localPool
1527 } else if params.Pool == remotePool {
1528 // remotePool is a fake pool used to identify rule that are supported for remoting. If the rule's
1529 // pool is the remotePool, replace with nil so that ninja runs it at NINJA_REMOTE_NUM_JOBS
1530 // parallelism.
1531 params.Pool = nil
1532 }
Colin Cross2e2dbc22019-09-25 13:31:46 -07001533 }
1534
Colin Crossdc35e212019-06-06 16:13:11 -07001535 rule := m.bp.Rule(pctx.PackageContext, name, params, argNames...)
Colin Cross4c83e5c2019-02-25 14:54:28 -08001536
Colin Cross25de6c32019-06-06 14:29:25 -07001537 if m.config.captureBuild {
1538 m.ruleParams[rule] = params
Colin Cross4c83e5c2019-02-25 14:54:28 -08001539 }
1540
1541 return rule
Colin Cross0875c522017-11-28 17:34:01 -08001542}
1543
Colin Cross25de6c32019-06-06 14:29:25 -07001544func (m *moduleContext) Build(pctx PackageContext, params BuildParams) {
Colin Crossb88b3c52019-06-10 15:15:17 -07001545 if params.Description != "" {
1546 params.Description = "${moduleDesc}" + params.Description + "${moduleDescSuffix}"
1547 }
1548
1549 if missingDeps := m.GetMissingDependencies(); len(missingDeps) > 0 {
1550 pctx, params = m.ninjaError(params, fmt.Errorf("module %s missing dependencies: %s\n",
1551 m.ModuleName(), strings.Join(missingDeps, ", ")))
1552 }
1553
Colin Cross25de6c32019-06-06 14:29:25 -07001554 if m.config.captureBuild {
1555 m.buildParams = append(m.buildParams, params)
Colin Cross0875c522017-11-28 17:34:01 -08001556 }
1557
Colin Crossdc35e212019-06-06 16:13:11 -07001558 m.bp.Build(pctx.PackageContext, convertBuildParams(params))
Dan Willemsen34cc69e2015-09-23 15:26:20 -07001559}
Colin Cross25de6c32019-06-06 14:29:25 -07001560func (m *moduleContext) GetMissingDependencies() []string {
Colin Cross6c4f21f2019-06-06 15:41:36 -07001561 var missingDeps []string
1562 missingDeps = append(missingDeps, m.Module().base().commonProperties.MissingDeps...)
Colin Crossdc35e212019-06-06 16:13:11 -07001563 missingDeps = append(missingDeps, m.bp.GetMissingDependencies()...)
Colin Cross6c4f21f2019-06-06 15:41:36 -07001564 missingDeps = FirstUniqueStrings(missingDeps)
1565 return missingDeps
Colin Cross6ff51382015-12-17 16:39:19 -08001566}
1567
Colin Crossdc35e212019-06-06 16:13:11 -07001568func (b *baseModuleContext) AddMissingDependencies(deps []string) {
Dan Willemsen6553f5e2016-03-10 18:14:25 -08001569 if deps != nil {
Colin Crossdc35e212019-06-06 16:13:11 -07001570 missingDeps := &b.Module().base().commonProperties.MissingDeps
Colin Cross6c4f21f2019-06-06 15:41:36 -07001571 *missingDeps = append(*missingDeps, deps...)
1572 *missingDeps = FirstUniqueStrings(*missingDeps)
Dan Willemsen6553f5e2016-03-10 18:14:25 -08001573 }
1574}
1575
Colin Crossdc35e212019-06-06 16:13:11 -07001576func (b *baseModuleContext) validateAndroidModule(module blueprint.Module, strict bool) Module {
Colin Crossd11fcda2017-10-23 17:59:01 -07001577 aModule, _ := module.(Module)
Colin Crossdc35e212019-06-06 16:13:11 -07001578
1579 if !strict {
1580 return aModule
1581 }
1582
Colin Cross380c69a2019-06-10 17:49:58 +00001583 if aModule == nil {
Colin Crossdc35e212019-06-06 16:13:11 -07001584 b.ModuleErrorf("module %q not an android module", b.OtherModuleName(module))
Colin Cross380c69a2019-06-10 17:49:58 +00001585 return nil
1586 }
1587
1588 if !aModule.Enabled() {
Colin Crossdc35e212019-06-06 16:13:11 -07001589 if b.Config().AllowMissingDependencies() {
1590 b.AddMissingDependencies([]string{b.OtherModuleName(aModule)})
Colin Cross380c69a2019-06-10 17:49:58 +00001591 } else {
Colin Crossdc35e212019-06-06 16:13:11 -07001592 b.ModuleErrorf("depends on disabled module %q", b.OtherModuleName(aModule))
Colin Cross380c69a2019-06-10 17:49:58 +00001593 }
1594 return nil
1595 }
Colin Crossd11fcda2017-10-23 17:59:01 -07001596 return aModule
1597}
1598
Colin Crossdc35e212019-06-06 16:13:11 -07001599func (b *baseModuleContext) getDirectDepInternal(name string, tag blueprint.DependencyTag) (blueprint.Module, blueprint.DependencyTag) {
Jiyong Parkf2976302019-04-17 21:47:37 +09001600 type dep struct {
1601 mod blueprint.Module
1602 tag blueprint.DependencyTag
1603 }
1604 var deps []dep
Colin Crossdc35e212019-06-06 16:13:11 -07001605 b.VisitDirectDepsBlueprint(func(module blueprint.Module) {
Colin Cross25de6c32019-06-06 14:29:25 -07001606 if aModule, _ := module.(Module); aModule != nil && aModule.base().BaseModuleName() == name {
Colin Cross1184b642019-12-30 18:43:07 -08001607 returnedTag := b.bp.OtherModuleDependencyTag(aModule)
Jiyong Parkf2976302019-04-17 21:47:37 +09001608 if tag == nil || returnedTag == tag {
1609 deps = append(deps, dep{aModule, returnedTag})
1610 }
1611 }
1612 })
1613 if len(deps) == 1 {
1614 return deps[0].mod, deps[0].tag
1615 } else if len(deps) >= 2 {
1616 panic(fmt.Errorf("Multiple dependencies having same BaseModuleName() %q found from %q",
Colin Crossdc35e212019-06-06 16:13:11 -07001617 name, b.ModuleName()))
Jiyong Parkf2976302019-04-17 21:47:37 +09001618 } else {
1619 return nil, nil
1620 }
1621}
1622
Colin Crossdc35e212019-06-06 16:13:11 -07001623func (b *baseModuleContext) GetDirectDepsWithTag(tag blueprint.DependencyTag) []Module {
Colin Cross0ef08162019-05-01 15:50:51 -07001624 var deps []Module
Colin Crossdc35e212019-06-06 16:13:11 -07001625 b.VisitDirectDepsBlueprint(func(module blueprint.Module) {
Colin Cross25de6c32019-06-06 14:29:25 -07001626 if aModule, _ := module.(Module); aModule != nil {
Colin Cross1184b642019-12-30 18:43:07 -08001627 if b.bp.OtherModuleDependencyTag(aModule) == tag {
Colin Cross0ef08162019-05-01 15:50:51 -07001628 deps = append(deps, aModule)
1629 }
1630 }
1631 })
1632 return deps
1633}
1634
Colin Cross25de6c32019-06-06 14:29:25 -07001635func (m *moduleContext) GetDirectDepWithTag(name string, tag blueprint.DependencyTag) blueprint.Module {
1636 module, _ := m.getDirectDepInternal(name, tag)
1637 return module
Jiyong Parkf2976302019-04-17 21:47:37 +09001638}
1639
Colin Crossdc35e212019-06-06 16:13:11 -07001640func (b *baseModuleContext) GetDirectDep(name string) (blueprint.Module, blueprint.DependencyTag) {
1641 return b.getDirectDepInternal(name, nil)
Jiyong Parkf2976302019-04-17 21:47:37 +09001642}
1643
Colin Crossdc35e212019-06-06 16:13:11 -07001644func (b *baseModuleContext) VisitDirectDepsBlueprint(visit func(blueprint.Module)) {
Colin Cross1184b642019-12-30 18:43:07 -08001645 b.bp.VisitDirectDeps(visit)
Colin Cross35143d02017-11-16 00:11:20 -08001646}
1647
Colin Crossdc35e212019-06-06 16:13:11 -07001648func (b *baseModuleContext) VisitDirectDeps(visit func(Module)) {
Colin Cross1184b642019-12-30 18:43:07 -08001649 b.bp.VisitDirectDeps(func(module blueprint.Module) {
Colin Crossdc35e212019-06-06 16:13:11 -07001650 if aModule := b.validateAndroidModule(module, b.strictVisitDeps); aModule != nil {
Colin Crossd11fcda2017-10-23 17:59:01 -07001651 visit(aModule)
1652 }
1653 })
1654}
1655
Colin Crossdc35e212019-06-06 16:13:11 -07001656func (b *baseModuleContext) VisitDirectDepsWithTag(tag blueprint.DependencyTag, visit func(Module)) {
Colin Cross1184b642019-12-30 18:43:07 -08001657 b.bp.VisitDirectDeps(func(module blueprint.Module) {
Colin Crossdc35e212019-06-06 16:13:11 -07001658 if aModule := b.validateAndroidModule(module, b.strictVisitDeps); aModule != nil {
Colin Cross1184b642019-12-30 18:43:07 -08001659 if b.bp.OtherModuleDependencyTag(aModule) == tag {
Colin Crossee6143c2017-12-30 17:54:27 -08001660 visit(aModule)
1661 }
1662 }
1663 })
1664}
1665
Colin Crossdc35e212019-06-06 16:13:11 -07001666func (b *baseModuleContext) VisitDirectDepsIf(pred func(Module) bool, visit func(Module)) {
Colin Cross1184b642019-12-30 18:43:07 -08001667 b.bp.VisitDirectDepsIf(
Colin Crossd11fcda2017-10-23 17:59:01 -07001668 // pred
1669 func(module blueprint.Module) bool {
Colin Crossdc35e212019-06-06 16:13:11 -07001670 if aModule := b.validateAndroidModule(module, b.strictVisitDeps); aModule != nil {
Colin Crossd11fcda2017-10-23 17:59:01 -07001671 return pred(aModule)
1672 } else {
1673 return false
1674 }
1675 },
1676 // visit
1677 func(module blueprint.Module) {
1678 visit(module.(Module))
1679 })
1680}
1681
Colin Crossdc35e212019-06-06 16:13:11 -07001682func (b *baseModuleContext) VisitDepsDepthFirst(visit func(Module)) {
Colin Cross1184b642019-12-30 18:43:07 -08001683 b.bp.VisitDepsDepthFirst(func(module blueprint.Module) {
Colin Crossdc35e212019-06-06 16:13:11 -07001684 if aModule := b.validateAndroidModule(module, b.strictVisitDeps); aModule != nil {
Colin Crossd11fcda2017-10-23 17:59:01 -07001685 visit(aModule)
1686 }
1687 })
1688}
1689
Colin Crossdc35e212019-06-06 16:13:11 -07001690func (b *baseModuleContext) VisitDepsDepthFirstIf(pred func(Module) bool, visit func(Module)) {
Colin Cross1184b642019-12-30 18:43:07 -08001691 b.bp.VisitDepsDepthFirstIf(
Colin Crossd11fcda2017-10-23 17:59:01 -07001692 // pred
1693 func(module blueprint.Module) bool {
Colin Crossdc35e212019-06-06 16:13:11 -07001694 if aModule := b.validateAndroidModule(module, b.strictVisitDeps); aModule != nil {
Colin Crossd11fcda2017-10-23 17:59:01 -07001695 return pred(aModule)
1696 } else {
1697 return false
1698 }
1699 },
1700 // visit
1701 func(module blueprint.Module) {
1702 visit(module.(Module))
1703 })
1704}
1705
Colin Crossdc35e212019-06-06 16:13:11 -07001706func (b *baseModuleContext) WalkDepsBlueprint(visit func(blueprint.Module, blueprint.Module) bool) {
Colin Cross1184b642019-12-30 18:43:07 -08001707 b.bp.WalkDeps(visit)
Alex Light778127a2019-02-27 14:19:50 -08001708}
1709
Colin Crossdc35e212019-06-06 16:13:11 -07001710func (b *baseModuleContext) WalkDeps(visit func(Module, Module) bool) {
1711 b.walkPath = []Module{b.Module()}
Paul Duffinc5192442020-03-31 11:31:36 +01001712 b.tagPath = []blueprint.DependencyTag{}
Colin Cross1184b642019-12-30 18:43:07 -08001713 b.bp.WalkDeps(func(child, parent blueprint.Module) bool {
Colin Crossdc35e212019-06-06 16:13:11 -07001714 childAndroidModule, _ := child.(Module)
1715 parentAndroidModule, _ := parent.(Module)
Colin Crossd11fcda2017-10-23 17:59:01 -07001716 if childAndroidModule != nil && parentAndroidModule != nil {
Colin Crossdc35e212019-06-06 16:13:11 -07001717 // record walkPath before visit
1718 for b.walkPath[len(b.walkPath)-1] != parentAndroidModule {
1719 b.walkPath = b.walkPath[0 : len(b.walkPath)-1]
Paul Duffinc5192442020-03-31 11:31:36 +01001720 b.tagPath = b.tagPath[0 : len(b.tagPath)-1]
Colin Crossdc35e212019-06-06 16:13:11 -07001721 }
1722 b.walkPath = append(b.walkPath, childAndroidModule)
Paul Duffinc5192442020-03-31 11:31:36 +01001723 b.tagPath = append(b.tagPath, b.OtherModuleDependencyTag(childAndroidModule))
Colin Crossd11fcda2017-10-23 17:59:01 -07001724 return visit(childAndroidModule, parentAndroidModule)
1725 } else {
1726 return false
1727 }
1728 })
1729}
1730
Colin Crossdc35e212019-06-06 16:13:11 -07001731func (b *baseModuleContext) GetWalkPath() []Module {
1732 return b.walkPath
1733}
1734
Paul Duffinc5192442020-03-31 11:31:36 +01001735func (b *baseModuleContext) GetTagPath() []blueprint.DependencyTag {
1736 return b.tagPath
1737}
1738
Colin Cross25de6c32019-06-06 14:29:25 -07001739func (m *moduleContext) VisitAllModuleVariants(visit func(Module)) {
Colin Crossdc35e212019-06-06 16:13:11 -07001740 m.bp.VisitAllModuleVariants(func(module blueprint.Module) {
Colin Cross0875c522017-11-28 17:34:01 -08001741 visit(module.(Module))
1742 })
1743}
1744
Colin Cross25de6c32019-06-06 14:29:25 -07001745func (m *moduleContext) PrimaryModule() Module {
Colin Crossdc35e212019-06-06 16:13:11 -07001746 return m.bp.PrimaryModule().(Module)
Colin Cross0875c522017-11-28 17:34:01 -08001747}
1748
Colin Cross25de6c32019-06-06 14:29:25 -07001749func (m *moduleContext) FinalModule() Module {
Colin Crossdc35e212019-06-06 16:13:11 -07001750 return m.bp.FinalModule().(Module)
1751}
1752
1753func (m *moduleContext) ModuleSubDir() string {
1754 return m.bp.ModuleSubDir()
Colin Cross0875c522017-11-28 17:34:01 -08001755}
1756
Colin Cross0ea8ba82019-06-06 14:33:29 -07001757func (b *baseModuleContext) Target() Target {
Colin Cross25de6c32019-06-06 14:29:25 -07001758 return b.target
Colin Crossa1ad8d12016-06-01 17:09:44 -07001759}
1760
Colin Cross0ea8ba82019-06-06 14:33:29 -07001761func (b *baseModuleContext) TargetPrimary() bool {
Colin Cross25de6c32019-06-06 14:29:25 -07001762 return b.targetPrimary
Colin Cross8b74d172016-09-13 09:59:14 -07001763}
1764
Colin Cross0ea8ba82019-06-06 14:33:29 -07001765func (b *baseModuleContext) MultiTargets() []Target {
Colin Cross25de6c32019-06-06 14:29:25 -07001766 return b.multiTargets
Colin Crossee0bc3b2018-10-02 22:01:37 -07001767}
1768
Colin Cross0ea8ba82019-06-06 14:33:29 -07001769func (b *baseModuleContext) Arch() Arch {
Colin Cross25de6c32019-06-06 14:29:25 -07001770 return b.target.Arch
Colin Cross3f40fa42015-01-30 17:27:36 -08001771}
1772
Colin Cross0ea8ba82019-06-06 14:33:29 -07001773func (b *baseModuleContext) Os() OsType {
Colin Crossfb0c16e2019-11-20 17:12:35 -08001774 return b.os
Dan Willemsen490fd492015-11-24 17:53:15 -08001775}
1776
Colin Cross0ea8ba82019-06-06 14:33:29 -07001777func (b *baseModuleContext) Host() bool {
Colin Crossfb0c16e2019-11-20 17:12:35 -08001778 return b.os.Class == Host || b.os.Class == HostCross
Colin Crossf6566ed2015-03-24 11:13:38 -07001779}
1780
Colin Cross0ea8ba82019-06-06 14:33:29 -07001781func (b *baseModuleContext) Device() bool {
Colin Crossfb0c16e2019-11-20 17:12:35 -08001782 return b.os.Class == Device
Colin Crossf6566ed2015-03-24 11:13:38 -07001783}
1784
Colin Cross0ea8ba82019-06-06 14:33:29 -07001785func (b *baseModuleContext) Darwin() bool {
Colin Crossfb0c16e2019-11-20 17:12:35 -08001786 return b.os == Darwin
Colin Cross0af4b842015-04-30 16:36:18 -07001787}
1788
Colin Cross0ea8ba82019-06-06 14:33:29 -07001789func (b *baseModuleContext) Fuchsia() bool {
Colin Crossfb0c16e2019-11-20 17:12:35 -08001790 return b.os == Fuchsia
Doug Horn21b94272019-01-16 12:06:11 -08001791}
1792
Colin Cross0ea8ba82019-06-06 14:33:29 -07001793func (b *baseModuleContext) Windows() bool {
Colin Crossfb0c16e2019-11-20 17:12:35 -08001794 return b.os == Windows
Colin Cross3edeee12017-04-04 12:59:48 -07001795}
1796
Colin Cross0ea8ba82019-06-06 14:33:29 -07001797func (b *baseModuleContext) Debug() bool {
Colin Cross25de6c32019-06-06 14:29:25 -07001798 return b.debug
Colin Crossf6566ed2015-03-24 11:13:38 -07001799}
1800
Colin Cross0ea8ba82019-06-06 14:33:29 -07001801func (b *baseModuleContext) PrimaryArch() bool {
Colin Cross25de6c32019-06-06 14:29:25 -07001802 if len(b.config.Targets[b.target.Os]) <= 1 {
Colin Cross67a5c132017-05-09 13:45:28 -07001803 return true
1804 }
Colin Cross25de6c32019-06-06 14:29:25 -07001805 return b.target.Arch.ArchType == b.config.Targets[b.target.Os][0].Arch.ArchType
Colin Cross1e7d3702016-08-24 15:25:47 -07001806}
1807
Jiyong Park5baac542018-08-28 09:55:37 +09001808// Makes this module a platform module, i.e. not specific to soc, device,
Justin Yund5f6c822019-06-25 16:47:17 +09001809// product, or system_ext.
Colin Cross4157e882019-06-06 16:57:04 -07001810func (m *ModuleBase) MakeAsPlatform() {
1811 m.commonProperties.Vendor = boolPtr(false)
1812 m.commonProperties.Proprietary = boolPtr(false)
1813 m.commonProperties.Soc_specific = boolPtr(false)
1814 m.commonProperties.Product_specific = boolPtr(false)
Justin Yund5f6c822019-06-25 16:47:17 +09001815 m.commonProperties.System_ext_specific = boolPtr(false)
Jiyong Park5baac542018-08-28 09:55:37 +09001816}
1817
Colin Cross4157e882019-06-06 16:57:04 -07001818func (m *ModuleBase) EnableNativeBridgeSupportByDefault() {
1819 m.commonProperties.Native_bridge_supported = boolPtr(true)
dimitry03dc3f62019-05-09 14:07:34 +02001820}
1821
Sundong Ahnd95aa2d2019-10-08 19:34:03 +09001822func (m *ModuleBase) MakeAsSystemExt() {
Jooyung Han91df2082019-11-20 01:49:42 +09001823 m.commonProperties.Vendor = boolPtr(false)
1824 m.commonProperties.Proprietary = boolPtr(false)
1825 m.commonProperties.Soc_specific = boolPtr(false)
1826 m.commonProperties.Product_specific = boolPtr(false)
1827 m.commonProperties.System_ext_specific = boolPtr(true)
Sundong Ahnd95aa2d2019-10-08 19:34:03 +09001828}
1829
Jooyung Han344d5432019-08-23 11:17:39 +09001830// IsNativeBridgeSupported returns true if "native_bridge_supported" is explicitly set as "true"
1831func (m *ModuleBase) IsNativeBridgeSupported() bool {
1832 return proptools.Bool(m.commonProperties.Native_bridge_supported)
1833}
1834
Colin Cross25de6c32019-06-06 14:29:25 -07001835func (m *moduleContext) InstallInData() bool {
1836 return m.module.InstallInData()
Dan Willemsen782a2d12015-12-21 14:55:28 -08001837}
1838
Jaewoong Jung0949f312019-09-11 10:25:18 -07001839func (m *moduleContext) InstallInTestcases() bool {
1840 return m.module.InstallInTestcases()
1841}
1842
Colin Cross25de6c32019-06-06 14:29:25 -07001843func (m *moduleContext) InstallInSanitizerDir() bool {
1844 return m.module.InstallInSanitizerDir()
Vishwath Mohan1dd88392017-03-29 22:00:18 -07001845}
1846
Yifan Hong1b3348d2020-01-21 15:53:22 -08001847func (m *moduleContext) InstallInRamdisk() bool {
1848 return m.module.InstallInRamdisk()
1849}
1850
Colin Cross25de6c32019-06-06 14:29:25 -07001851func (m *moduleContext) InstallInRecovery() bool {
1852 return m.module.InstallInRecovery()
Jiyong Parkf9332f12018-02-01 00:54:12 +09001853}
1854
Colin Cross90ba5f42019-10-02 11:10:58 -07001855func (m *moduleContext) InstallInRoot() bool {
1856 return m.module.InstallInRoot()
1857}
1858
Colin Cross607d8582019-07-29 16:44:46 -07001859func (m *moduleContext) InstallBypassMake() bool {
1860 return m.module.InstallBypassMake()
1861}
1862
Colin Cross6e359402020-02-10 15:29:54 -08001863func (m *moduleContext) InstallForceOS() *OsType {
1864 return m.module.InstallForceOS()
1865}
1866
Colin Cross70dda7e2019-10-01 22:05:35 -07001867func (m *moduleContext) skipInstall(fullInstallPath InstallPath) bool {
Colin Cross25de6c32019-06-06 14:29:25 -07001868 if m.module.base().commonProperties.SkipInstall {
Colin Cross893d8162017-04-26 17:34:03 -07001869 return true
1870 }
1871
Colin Cross3607f212018-05-07 15:28:05 -07001872 // We'll need a solution for choosing which of modules with the same name in different
1873 // namespaces to install. For now, reuse the list of namespaces exported to Make as the
1874 // list of namespaces to install in a Soong-only build.
Colin Cross25de6c32019-06-06 14:29:25 -07001875 if !m.module.base().commonProperties.NamespaceExportedToMake {
Colin Cross3607f212018-05-07 15:28:05 -07001876 return true
1877 }
1878
Colin Cross25de6c32019-06-06 14:29:25 -07001879 if m.Device() {
Colin Cross607d8582019-07-29 16:44:46 -07001880 if m.Config().EmbeddedInMake() && !m.InstallBypassMake() {
Colin Cross893d8162017-04-26 17:34:03 -07001881 return true
1882 }
1883
Colin Cross25de6c32019-06-06 14:29:25 -07001884 if m.Config().SkipMegaDeviceInstall(fullInstallPath.String()) {
Colin Cross893d8162017-04-26 17:34:03 -07001885 return true
1886 }
1887 }
1888
1889 return false
1890}
1891
Colin Cross70dda7e2019-10-01 22:05:35 -07001892func (m *moduleContext) InstallFile(installPath InstallPath, name string, srcPath Path,
1893 deps ...Path) InstallPath {
Colin Cross25de6c32019-06-06 14:29:25 -07001894 return m.installFile(installPath, name, srcPath, Cp, deps)
Colin Cross5c517922017-08-31 12:29:17 -07001895}
1896
Colin Cross70dda7e2019-10-01 22:05:35 -07001897func (m *moduleContext) InstallExecutable(installPath InstallPath, name string, srcPath Path,
1898 deps ...Path) InstallPath {
Colin Cross25de6c32019-06-06 14:29:25 -07001899 return m.installFile(installPath, name, srcPath, CpExecutable, deps)
Colin Cross5c517922017-08-31 12:29:17 -07001900}
1901
Colin Cross70dda7e2019-10-01 22:05:35 -07001902func (m *moduleContext) installFile(installPath InstallPath, name string, srcPath Path,
1903 rule blueprint.Rule, deps []Path) InstallPath {
Colin Cross35cec122015-04-02 14:37:16 -07001904
Colin Cross25de6c32019-06-06 14:29:25 -07001905 fullInstallPath := installPath.Join(m, name)
1906 m.module.base().hooks.runInstallHooks(m, fullInstallPath, false)
Colin Cross3f40fa42015-01-30 17:27:36 -08001907
Colin Cross25de6c32019-06-06 14:29:25 -07001908 if !m.skipInstall(fullInstallPath) {
Colin Crossce75d2c2016-10-06 16:12:58 -07001909
Colin Cross897266e2020-02-13 13:22:08 -08001910 deps = append(deps, m.installDeps.Paths()...)
Colin Cross35cec122015-04-02 14:37:16 -07001911
Colin Cross89562dc2016-10-03 17:47:19 -07001912 var implicitDeps, orderOnlyDeps Paths
1913
Colin Cross25de6c32019-06-06 14:29:25 -07001914 if m.Host() {
Colin Cross89562dc2016-10-03 17:47:19 -07001915 // Installed host modules might be used during the build, depend directly on their
1916 // dependencies so their timestamp is updated whenever their dependency is updated
1917 implicitDeps = deps
1918 } else {
1919 orderOnlyDeps = deps
1920 }
1921
Colin Cross25de6c32019-06-06 14:29:25 -07001922 m.Build(pctx, BuildParams{
Colin Cross5c517922017-08-31 12:29:17 -07001923 Rule: rule,
Colin Cross67a5c132017-05-09 13:45:28 -07001924 Description: "install " + fullInstallPath.Base(),
1925 Output: fullInstallPath,
1926 Input: srcPath,
1927 Implicits: implicitDeps,
1928 OrderOnly: orderOnlyDeps,
Colin Cross25de6c32019-06-06 14:29:25 -07001929 Default: !m.Config().EmbeddedInMake(),
Dan Willemsen322acaf2016-01-12 23:07:05 -08001930 })
Colin Cross3f40fa42015-01-30 17:27:36 -08001931
Colin Cross25de6c32019-06-06 14:29:25 -07001932 m.installFiles = append(m.installFiles, fullInstallPath)
Dan Willemsen322acaf2016-01-12 23:07:05 -08001933 }
Colin Cross25de6c32019-06-06 14:29:25 -07001934 m.checkbuildFiles = append(m.checkbuildFiles, srcPath)
Colin Cross35cec122015-04-02 14:37:16 -07001935 return fullInstallPath
1936}
1937
Colin Cross70dda7e2019-10-01 22:05:35 -07001938func (m *moduleContext) InstallSymlink(installPath InstallPath, name string, srcPath InstallPath) InstallPath {
Colin Cross25de6c32019-06-06 14:29:25 -07001939 fullInstallPath := installPath.Join(m, name)
1940 m.module.base().hooks.runInstallHooks(m, fullInstallPath, true)
Colin Cross3854a602016-01-11 12:49:11 -08001941
Colin Cross25de6c32019-06-06 14:29:25 -07001942 if !m.skipInstall(fullInstallPath) {
Colin Crossce75d2c2016-10-06 16:12:58 -07001943
Alex Lightfb4353d2019-01-17 13:57:45 -08001944 relPath, err := filepath.Rel(path.Dir(fullInstallPath.String()), srcPath.String())
1945 if err != nil {
1946 panic(fmt.Sprintf("Unable to generate symlink between %q and %q: %s", fullInstallPath.Base(), srcPath.Base(), err))
1947 }
Colin Cross25de6c32019-06-06 14:29:25 -07001948 m.Build(pctx, BuildParams{
Colin Cross67a5c132017-05-09 13:45:28 -07001949 Rule: Symlink,
1950 Description: "install symlink " + fullInstallPath.Base(),
1951 Output: fullInstallPath,
Dan Willemsen40efa1c2020-01-14 15:19:52 -08001952 Input: srcPath,
Colin Cross25de6c32019-06-06 14:29:25 -07001953 Default: !m.Config().EmbeddedInMake(),
Colin Cross12fc4972016-01-11 12:49:11 -08001954 Args: map[string]string{
Alex Lightfb4353d2019-01-17 13:57:45 -08001955 "fromPath": relPath,
Colin Cross12fc4972016-01-11 12:49:11 -08001956 },
1957 })
Colin Cross3854a602016-01-11 12:49:11 -08001958
Colin Cross25de6c32019-06-06 14:29:25 -07001959 m.installFiles = append(m.installFiles, fullInstallPath)
1960 m.checkbuildFiles = append(m.checkbuildFiles, srcPath)
Colin Cross12fc4972016-01-11 12:49:11 -08001961 }
Colin Cross3854a602016-01-11 12:49:11 -08001962 return fullInstallPath
1963}
1964
Jiyong Parkf1194352019-02-25 11:05:47 +09001965// installPath/name -> absPath where absPath might be a path that is available only at runtime
1966// (e.g. /apex/...)
Colin Cross70dda7e2019-10-01 22:05:35 -07001967func (m *moduleContext) InstallAbsoluteSymlink(installPath InstallPath, name string, absPath string) InstallPath {
Colin Cross25de6c32019-06-06 14:29:25 -07001968 fullInstallPath := installPath.Join(m, name)
1969 m.module.base().hooks.runInstallHooks(m, fullInstallPath, true)
Jiyong Parkf1194352019-02-25 11:05:47 +09001970
Colin Cross25de6c32019-06-06 14:29:25 -07001971 if !m.skipInstall(fullInstallPath) {
1972 m.Build(pctx, BuildParams{
Jiyong Parkf1194352019-02-25 11:05:47 +09001973 Rule: Symlink,
1974 Description: "install symlink " + fullInstallPath.Base() + " -> " + absPath,
1975 Output: fullInstallPath,
Colin Cross25de6c32019-06-06 14:29:25 -07001976 Default: !m.Config().EmbeddedInMake(),
Jiyong Parkf1194352019-02-25 11:05:47 +09001977 Args: map[string]string{
1978 "fromPath": absPath,
1979 },
1980 })
1981
Colin Cross25de6c32019-06-06 14:29:25 -07001982 m.installFiles = append(m.installFiles, fullInstallPath)
Jiyong Parkf1194352019-02-25 11:05:47 +09001983 }
1984 return fullInstallPath
1985}
1986
Colin Cross25de6c32019-06-06 14:29:25 -07001987func (m *moduleContext) CheckbuildFile(srcPath Path) {
1988 m.checkbuildFiles = append(m.checkbuildFiles, srcPath)
Colin Cross3f40fa42015-01-30 17:27:36 -08001989}
1990
Dan Willemsen2ef08f42015-06-30 18:15:24 -07001991func findStringInSlice(str string, slice []string) int {
1992 for i, s := range slice {
1993 if s == str {
1994 return i
Colin Crossfce53272015-04-08 11:21:40 -07001995 }
1996 }
Dan Willemsen2ef08f42015-06-30 18:15:24 -07001997 return -1
1998}
1999
Colin Cross41955e82019-05-29 14:40:35 -07002000// SrcIsModule decodes module references in the format ":name" into the module name, or empty string if the input
2001// was not a module reference.
2002func SrcIsModule(s string) (module string) {
Colin Cross068e0fe2016-12-13 15:23:47 -08002003 if len(s) > 1 && s[0] == ':' {
2004 return s[1:]
2005 }
2006 return ""
2007}
2008
Colin Cross41955e82019-05-29 14:40:35 -07002009// SrcIsModule decodes module references in the format ":name{.tag}" into the module name and tag, ":name" into the
2010// module name and an empty string for the tag, or empty strings if the input was not a module reference.
2011func SrcIsModuleWithTag(s string) (module, tag string) {
2012 if len(s) > 1 && s[0] == ':' {
2013 module = s[1:]
2014 if tagStart := strings.IndexByte(module, '{'); tagStart > 0 {
2015 if module[len(module)-1] == '}' {
2016 tag = module[tagStart+1 : len(module)-1]
2017 module = module[:tagStart]
2018 return module, tag
2019 }
2020 }
2021 return module, ""
2022 }
2023 return "", ""
Colin Cross068e0fe2016-12-13 15:23:47 -08002024}
2025
Colin Cross41955e82019-05-29 14:40:35 -07002026type sourceOrOutputDependencyTag struct {
2027 blueprint.BaseDependencyTag
2028 tag string
2029}
2030
2031func sourceOrOutputDepTag(tag string) blueprint.DependencyTag {
2032 return sourceOrOutputDependencyTag{tag: tag}
2033}
2034
2035var SourceDepTag = sourceOrOutputDepTag("")
Colin Cross068e0fe2016-12-13 15:23:47 -08002036
Colin Cross366938f2017-12-11 16:29:02 -08002037// Adds necessary dependencies to satisfy filegroup or generated sources modules listed in srcFiles
2038// using ":module" syntax, if any.
Colin Cross27b922f2019-03-04 22:35:41 -08002039//
2040// Deprecated: tag the property with `android:"path"` instead.
Colin Cross068e0fe2016-12-13 15:23:47 -08002041func ExtractSourcesDeps(ctx BottomUpMutatorContext, srcFiles []string) {
Nan Zhang2439eb72017-04-10 11:27:50 -07002042 set := make(map[string]bool)
2043
Colin Cross068e0fe2016-12-13 15:23:47 -08002044 for _, s := range srcFiles {
Colin Cross41955e82019-05-29 14:40:35 -07002045 if m, t := SrcIsModuleWithTag(s); m != "" {
2046 if _, found := set[s]; found {
2047 ctx.ModuleErrorf("found source dependency duplicate: %q!", s)
Nan Zhang2439eb72017-04-10 11:27:50 -07002048 } else {
Colin Cross41955e82019-05-29 14:40:35 -07002049 set[s] = true
2050 ctx.AddDependency(ctx.Module(), sourceOrOutputDepTag(t), m)
Nan Zhang2439eb72017-04-10 11:27:50 -07002051 }
Colin Cross068e0fe2016-12-13 15:23:47 -08002052 }
2053 }
Colin Cross068e0fe2016-12-13 15:23:47 -08002054}
2055
Colin Cross366938f2017-12-11 16:29:02 -08002056// Adds necessary dependencies to satisfy filegroup or generated sources modules specified in s
2057// using ":module" syntax, if any.
Colin Cross27b922f2019-03-04 22:35:41 -08002058//
2059// Deprecated: tag the property with `android:"path"` instead.
Colin Cross366938f2017-12-11 16:29:02 -08002060func ExtractSourceDeps(ctx BottomUpMutatorContext, s *string) {
2061 if s != nil {
Colin Cross41955e82019-05-29 14:40:35 -07002062 if m, t := SrcIsModuleWithTag(*s); m != "" {
2063 ctx.AddDependency(ctx.Module(), sourceOrOutputDepTag(t), m)
Colin Cross366938f2017-12-11 16:29:02 -08002064 }
2065 }
2066}
2067
Colin Cross41955e82019-05-29 14:40:35 -07002068// A module that implements SourceFileProducer can be referenced from any property that is tagged with `android:"path"`
2069// 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 -08002070type SourceFileProducer interface {
2071 Srcs() Paths
2072}
2073
Colin Cross41955e82019-05-29 14:40:35 -07002074// A module that implements OutputFileProducer can be referenced from any property that is tagged with `android:"path"`
Roland Levillain97c1f342019-11-22 14:20:54 +00002075// 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 -07002076// listed in the property.
2077type OutputFileProducer interface {
2078 OutputFiles(tag string) (Paths, error)
2079}
2080
Colin Cross5e708052019-08-06 13:59:50 -07002081// OutputFilesForModule returns the paths from an OutputFileProducer with the given tag. On error, including if the
2082// module produced zero paths, it reports errors to the ctx and returns nil.
2083func OutputFilesForModule(ctx PathContext, module blueprint.Module, tag string) Paths {
2084 paths, err := outputFilesForModule(ctx, module, tag)
2085 if err != nil {
2086 reportPathError(ctx, err)
2087 return nil
2088 }
2089 return paths
2090}
2091
2092// OutputFileForModule returns the path from an OutputFileProducer with the given tag. On error, including if the
2093// module produced zero or multiple paths, it reports errors to the ctx and returns nil.
2094func OutputFileForModule(ctx PathContext, module blueprint.Module, tag string) Path {
2095 paths, err := outputFilesForModule(ctx, module, tag)
2096 if err != nil {
2097 reportPathError(ctx, err)
2098 return nil
2099 }
2100 if len(paths) > 1 {
2101 reportPathErrorf(ctx, "got multiple output files from module %q, expected exactly one",
2102 pathContextName(ctx, module))
2103 return nil
2104 }
2105 return paths[0]
2106}
2107
2108func outputFilesForModule(ctx PathContext, module blueprint.Module, tag string) (Paths, error) {
2109 if outputFileProducer, ok := module.(OutputFileProducer); ok {
2110 paths, err := outputFileProducer.OutputFiles(tag)
2111 if err != nil {
2112 return nil, fmt.Errorf("failed to get output file from module %q: %s",
2113 pathContextName(ctx, module), err.Error())
2114 }
2115 if len(paths) == 0 {
2116 return nil, fmt.Errorf("failed to get output files from module %q", pathContextName(ctx, module))
2117 }
2118 return paths, nil
2119 } else {
2120 return nil, fmt.Errorf("module %q is not an OutputFileProducer", pathContextName(ctx, module))
2121 }
2122}
2123
Colin Crossfe17f6f2019-03-28 19:30:56 -07002124type HostToolProvider interface {
2125 HostToolPath() OptionalPath
2126}
2127
Colin Cross27b922f2019-03-04 22:35:41 -08002128// Returns a list of paths expanded from globs and modules referenced using ":module" syntax. The property must
2129// be tagged with `android:"path" to support automatic source module dependency resolution.
Colin Cross8a497952019-03-05 22:25:09 -08002130//
2131// Deprecated: use PathsForModuleSrc or PathsForModuleSrcExcludes instead.
Colin Cross25de6c32019-06-06 14:29:25 -07002132func (m *moduleContext) ExpandSources(srcFiles, excludes []string) Paths {
2133 return PathsForModuleSrcExcludes(m, srcFiles, excludes)
Colin Cross8f101b42015-06-17 15:09:06 -07002134}
2135
Colin Cross2fafa3e2019-03-05 12:39:51 -08002136// Returns a single path expanded from globs and modules referenced using ":module" syntax. The property must
2137// be tagged with `android:"path" to support automatic source module dependency resolution.
Colin Cross8a497952019-03-05 22:25:09 -08002138//
2139// Deprecated: use PathForModuleSrc instead.
Colin Cross25de6c32019-06-06 14:29:25 -07002140func (m *moduleContext) ExpandSource(srcFile, prop string) Path {
2141 return PathForModuleSrc(m, srcFile)
Colin Cross2fafa3e2019-03-05 12:39:51 -08002142}
2143
2144// Returns an optional single path expanded from globs and modules referenced using ":module" syntax if
2145// the srcFile is non-nil. The property must be tagged with `android:"path" to support automatic source module
2146// dependency resolution.
Colin Cross25de6c32019-06-06 14:29:25 -07002147func (m *moduleContext) ExpandOptionalSource(srcFile *string, prop string) OptionalPath {
Colin Cross2fafa3e2019-03-05 12:39:51 -08002148 if srcFile != nil {
Colin Cross25de6c32019-06-06 14:29:25 -07002149 return OptionalPathForPath(PathForModuleSrc(m, *srcFile))
Colin Cross2fafa3e2019-03-05 12:39:51 -08002150 }
2151 return OptionalPath{}
2152}
2153
Colin Cross25de6c32019-06-06 14:29:25 -07002154func (m *moduleContext) RequiredModuleNames() []string {
Jiyong Park6a8cf5f2019-12-30 16:31:09 +09002155 return m.module.RequiredModuleNames()
Nan Zhang6d34b302017-02-04 17:47:46 -08002156}
2157
Colin Cross25de6c32019-06-06 14:29:25 -07002158func (m *moduleContext) HostRequiredModuleNames() []string {
Jiyong Park6a8cf5f2019-12-30 16:31:09 +09002159 return m.module.HostRequiredModuleNames()
Sasha Smundakb6d23052019-04-01 18:37:36 -07002160}
2161
Colin Cross25de6c32019-06-06 14:29:25 -07002162func (m *moduleContext) TargetRequiredModuleNames() []string {
Jiyong Park6a8cf5f2019-12-30 16:31:09 +09002163 return m.module.TargetRequiredModuleNames()
Sasha Smundakb6d23052019-04-01 18:37:36 -07002164}
2165
Colin Cross463a90e2015-06-17 14:20:06 -07002166func init() {
Colin Cross798bfce2016-10-12 14:28:16 -07002167 RegisterSingletonType("buildtarget", BuildTargetSingleton)
Colin Cross463a90e2015-06-17 14:20:06 -07002168}
2169
Colin Cross0875c522017-11-28 17:34:01 -08002170func BuildTargetSingleton() Singleton {
Colin Cross1f8c52b2015-06-16 16:38:17 -07002171 return &buildTargetSingleton{}
2172}
2173
Colin Cross87d8b562017-04-25 10:01:55 -07002174func parentDir(dir string) string {
2175 dir, _ = filepath.Split(dir)
2176 return filepath.Clean(dir)
2177}
2178
Colin Cross1f8c52b2015-06-16 16:38:17 -07002179type buildTargetSingleton struct{}
2180
Colin Cross0875c522017-11-28 17:34:01 -08002181func (c *buildTargetSingleton) GenerateBuildActions(ctx SingletonContext) {
2182 var checkbuildDeps Paths
Colin Cross1f8c52b2015-06-16 16:38:17 -07002183
Colin Cross0875c522017-11-28 17:34:01 -08002184 mmTarget := func(dir string) WritablePath {
2185 return PathForPhony(ctx,
2186 "MODULES-IN-"+strings.Replace(filepath.Clean(dir), "/", "-", -1))
Colin Cross87d8b562017-04-25 10:01:55 -07002187 }
2188
Colin Cross0875c522017-11-28 17:34:01 -08002189 modulesInDir := make(map[string]Paths)
Colin Cross1f8c52b2015-06-16 16:38:17 -07002190
Colin Cross0875c522017-11-28 17:34:01 -08002191 ctx.VisitAllModules(func(module Module) {
2192 blueprintDir := module.base().blueprintDir
2193 installTarget := module.base().installTarget
2194 checkbuildTarget := module.base().checkbuildTarget
Colin Cross1f8c52b2015-06-16 16:38:17 -07002195
Colin Cross0875c522017-11-28 17:34:01 -08002196 if checkbuildTarget != nil {
2197 checkbuildDeps = append(checkbuildDeps, checkbuildTarget)
2198 modulesInDir[blueprintDir] = append(modulesInDir[blueprintDir], checkbuildTarget)
2199 }
Colin Cross1f8c52b2015-06-16 16:38:17 -07002200
Colin Cross0875c522017-11-28 17:34:01 -08002201 if installTarget != nil {
2202 modulesInDir[blueprintDir] = append(modulesInDir[blueprintDir], installTarget)
Colin Cross1f8c52b2015-06-16 16:38:17 -07002203 }
2204 })
2205
Dan Willemsen5ba07e82015-12-11 13:51:06 -08002206 suffix := ""
Colin Crossaabf6792017-11-29 00:27:14 -08002207 if ctx.Config().EmbeddedInMake() {
Dan Willemsen5ba07e82015-12-11 13:51:06 -08002208 suffix = "-soong"
2209 }
2210
Colin Cross1f8c52b2015-06-16 16:38:17 -07002211 // Create a top-level checkbuild target that depends on all modules
Colin Cross0875c522017-11-28 17:34:01 -08002212 ctx.Build(pctx, BuildParams{
Colin Cross1f8c52b2015-06-16 16:38:17 -07002213 Rule: blueprint.Phony,
Colin Cross0875c522017-11-28 17:34:01 -08002214 Output: PathForPhony(ctx, "checkbuild"+suffix),
Colin Cross1f8c52b2015-06-16 16:38:17 -07002215 Implicits: checkbuildDeps,
Colin Cross1f8c52b2015-06-16 16:38:17 -07002216 })
2217
Dan Willemsend2e95fb2017-09-20 14:30:50 -07002218 // Make will generate the MODULES-IN-* targets
Colin Crossaabf6792017-11-29 00:27:14 -08002219 if ctx.Config().EmbeddedInMake() {
Dan Willemsend2e95fb2017-09-20 14:30:50 -07002220 return
2221 }
2222
Colin Cross87d8b562017-04-25 10:01:55 -07002223 // Ensure ancestor directories are in modulesInDir
Inseob Kim1a365c62019-06-08 15:47:51 +09002224 dirs := SortedStringKeys(modulesInDir)
Colin Cross87d8b562017-04-25 10:01:55 -07002225 for _, dir := range dirs {
2226 dir := parentDir(dir)
2227 for dir != "." && dir != "/" {
2228 if _, exists := modulesInDir[dir]; exists {
2229 break
2230 }
2231 modulesInDir[dir] = nil
2232 dir = parentDir(dir)
2233 }
2234 }
2235
2236 // Make directories build their direct subdirectories
Colin Cross87d8b562017-04-25 10:01:55 -07002237 for _, dir := range dirs {
2238 p := parentDir(dir)
2239 if p != "." && p != "/" {
2240 modulesInDir[p] = append(modulesInDir[p], mmTarget(dir))
2241 }
2242 }
2243
Dan Willemsend2e95fb2017-09-20 14:30:50 -07002244 // Create a MODULES-IN-<directory> target that depends on all modules in a directory, and
2245 // depends on the MODULES-IN-* targets of all of its subdirectories that contain Android.bp
2246 // files.
Colin Cross1f8c52b2015-06-16 16:38:17 -07002247 for _, dir := range dirs {
Colin Cross0875c522017-11-28 17:34:01 -08002248 ctx.Build(pctx, BuildParams{
Colin Cross1f8c52b2015-06-16 16:38:17 -07002249 Rule: blueprint.Phony,
Colin Cross0875c522017-11-28 17:34:01 -08002250 Output: mmTarget(dir),
Colin Cross87d8b562017-04-25 10:01:55 -07002251 Implicits: modulesInDir[dir],
Dan Willemsen5ba07e82015-12-11 13:51:06 -08002252 // HACK: checkbuild should be an optional build, but force it
2253 // enabled for now in standalone builds
Colin Crossaabf6792017-11-29 00:27:14 -08002254 Default: !ctx.Config().EmbeddedInMake(),
Colin Cross1f8c52b2015-06-16 16:38:17 -07002255 })
2256 }
Dan Willemsen61d88b82017-09-20 17:29:08 -07002257
2258 // Create (host|host-cross|target)-<OS> phony rules to build a reduced checkbuild.
2259 osDeps := map[OsType]Paths{}
Colin Cross0875c522017-11-28 17:34:01 -08002260 ctx.VisitAllModules(func(module Module) {
2261 if module.Enabled() {
2262 os := module.Target().Os
2263 osDeps[os] = append(osDeps[os], module.base().checkbuildFiles...)
Dan Willemsen61d88b82017-09-20 17:29:08 -07002264 }
2265 })
2266
Colin Cross0875c522017-11-28 17:34:01 -08002267 osClass := make(map[string]Paths)
Dan Willemsen61d88b82017-09-20 17:29:08 -07002268 for os, deps := range osDeps {
2269 var className string
2270
2271 switch os.Class {
2272 case Host:
2273 className = "host"
2274 case HostCross:
2275 className = "host-cross"
2276 case Device:
2277 className = "target"
2278 default:
2279 continue
2280 }
2281
Colin Cross0875c522017-11-28 17:34:01 -08002282 name := PathForPhony(ctx, className+"-"+os.Name)
Dan Willemsen61d88b82017-09-20 17:29:08 -07002283 osClass[className] = append(osClass[className], name)
2284
Colin Cross0875c522017-11-28 17:34:01 -08002285 ctx.Build(pctx, BuildParams{
Dan Willemsen61d88b82017-09-20 17:29:08 -07002286 Rule: blueprint.Phony,
Colin Cross0875c522017-11-28 17:34:01 -08002287 Output: name,
2288 Implicits: deps,
Dan Willemsen61d88b82017-09-20 17:29:08 -07002289 })
2290 }
2291
2292 // Wrap those into host|host-cross|target phony rules
Inseob Kim1a365c62019-06-08 15:47:51 +09002293 for _, class := range SortedStringKeys(osClass) {
Colin Cross0875c522017-11-28 17:34:01 -08002294 ctx.Build(pctx, BuildParams{
Dan Willemsen61d88b82017-09-20 17:29:08 -07002295 Rule: blueprint.Phony,
Colin Cross0875c522017-11-28 17:34:01 -08002296 Output: PathForPhony(ctx, class),
Dan Willemsen61d88b82017-09-20 17:29:08 -07002297 Implicits: osClass[class],
Dan Willemsen61d88b82017-09-20 17:29:08 -07002298 })
2299 }
Colin Cross1f8c52b2015-06-16 16:38:17 -07002300}
Colin Crossd779da42015-12-17 18:00:23 -08002301
Brandon Lee5d45c6f2018-08-15 15:35:38 -07002302// Collect information for opening IDE project files in java/jdeps.go.
2303type IDEInfo interface {
2304 IDEInfo(ideInfo *IdeInfo)
2305 BaseModuleName() string
2306}
2307
2308// Extract the base module name from the Import name.
2309// Often the Import name has a prefix "prebuilt_".
2310// Remove the prefix explicitly if needed
2311// until we find a better solution to get the Import name.
2312type IDECustomizedModuleName interface {
2313 IDECustomizedModuleName() string
2314}
2315
2316type IdeInfo struct {
2317 Deps []string `json:"dependencies,omitempty"`
2318 Srcs []string `json:"srcs,omitempty"`
2319 Aidl_include_dirs []string `json:"aidl_include_dirs,omitempty"`
2320 Jarjar_rules []string `json:"jarjar_rules,omitempty"`
2321 Jars []string `json:"jars,omitempty"`
2322 Classes []string `json:"class,omitempty"`
2323 Installed_paths []string `json:"installed,omitempty"`
patricktu18c82ff2019-05-10 15:48:50 +08002324 SrcJars []string `json:"srcjars,omitempty"`
Brandon Lee5d45c6f2018-08-15 15:35:38 -07002325}