Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1 | // 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 Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 15 | package android |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 16 | |
| 17 | import ( |
Colin Cross | 6ff5138 | 2015-12-17 16:39:19 -0800 | [diff] [blame] | 18 | "fmt" |
Colin Cross | 988414c | 2020-01-11 01:11:46 +0000 | [diff] [blame] | 19 | "os" |
Alex Light | fb4353d | 2019-01-17 13:57:45 -0800 | [diff] [blame] | 20 | "path" |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 21 | "path/filepath" |
Colin Cross | d976af0 | 2020-11-16 22:44:30 -0800 | [diff] [blame^] | 22 | "reflect" |
Jiyong Park | 1c7e962 | 2020-05-07 16:12:13 +0900 | [diff] [blame] | 23 | "regexp" |
Colin Cross | 6ff5138 | 2015-12-17 16:39:19 -0800 | [diff] [blame] | 24 | "strings" |
Colin Cross | aabf679 | 2017-11-29 00:27:14 -0800 | [diff] [blame] | 25 | "text/scanner" |
Colin Cross | f6566ed | 2015-03-24 11:13:38 -0700 | [diff] [blame] | 26 | |
| 27 | "github.com/google/blueprint" |
Colin Cross | fe4bc36 | 2018-09-12 10:02:13 -0700 | [diff] [blame] | 28 | "github.com/google/blueprint/proptools" |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 29 | ) |
| 30 | |
| 31 | var ( |
| 32 | DeviceSharedLibrary = "shared_library" |
| 33 | DeviceStaticLibrary = "static_library" |
| 34 | DeviceExecutable = "executable" |
| 35 | HostSharedLibrary = "host_shared_library" |
| 36 | HostStaticLibrary = "host_static_library" |
| 37 | HostExecutable = "host_executable" |
| 38 | ) |
| 39 | |
Colin Cross | ae88703 | 2017-10-23 17:16:14 -0700 | [diff] [blame] | 40 | type BuildParams struct { |
Dan Willemsen | 9f3c574 | 2016-11-03 14:28:31 -0700 | [diff] [blame] | 41 | Rule blueprint.Rule |
Colin Cross | 33bfb0a | 2016-11-21 17:23:08 -0800 | [diff] [blame] | 42 | Deps blueprint.Deps |
| 43 | Depfile WritablePath |
Colin Cross | 67a5c13 | 2017-05-09 13:45:28 -0700 | [diff] [blame] | 44 | Description string |
Dan Willemsen | 9f3c574 | 2016-11-03 14:28:31 -0700 | [diff] [blame] | 45 | Output WritablePath |
| 46 | Outputs WritablePaths |
Jingwen Chen | ce679d2 | 2020-09-23 04:30:02 +0000 | [diff] [blame] | 47 | SymlinkOutput WritablePath |
| 48 | SymlinkOutputs WritablePaths |
Dan Willemsen | 9f3c574 | 2016-11-03 14:28:31 -0700 | [diff] [blame] | 49 | ImplicitOutput WritablePath |
| 50 | ImplicitOutputs WritablePaths |
| 51 | Input Path |
| 52 | Inputs Paths |
| 53 | Implicit Path |
| 54 | Implicits Paths |
| 55 | OrderOnly Paths |
Colin Cross | 824f116 | 2020-07-16 13:07:51 -0700 | [diff] [blame] | 56 | Validation Path |
| 57 | Validations Paths |
Dan Willemsen | 9f3c574 | 2016-11-03 14:28:31 -0700 | [diff] [blame] | 58 | Default bool |
| 59 | Args map[string]string |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 60 | } |
| 61 | |
Colin Cross | ae88703 | 2017-10-23 17:16:14 -0700 | [diff] [blame] | 62 | type ModuleBuildParams BuildParams |
| 63 | |
Colin Cross | 1184b64 | 2019-12-30 18:43:07 -0800 | [diff] [blame] | 64 | // EarlyModuleContext provides methods that can be called early, as soon as the properties have |
| 65 | // been parsed into the module and before any mutators have run. |
| 66 | type EarlyModuleContext interface { |
Colin Cross | 9f35c3d | 2020-09-16 19:04:41 -0700 | [diff] [blame] | 67 | // Module returns the current module as a Module. It should rarely be necessary, as the module already has a |
| 68 | // reference to itself. |
Colin Cross | 1184b64 | 2019-12-30 18:43:07 -0800 | [diff] [blame] | 69 | Module() Module |
Colin Cross | 9f35c3d | 2020-09-16 19:04:41 -0700 | [diff] [blame] | 70 | |
| 71 | // ModuleName returns the name of the module. This is generally the value that was returned by Module.Name() when |
| 72 | // the module was created, but may have been modified by calls to BaseMutatorContext.Rename. |
Colin Cross | 1184b64 | 2019-12-30 18:43:07 -0800 | [diff] [blame] | 73 | ModuleName() string |
Colin Cross | 9f35c3d | 2020-09-16 19:04:41 -0700 | [diff] [blame] | 74 | |
| 75 | // ModuleDir returns the path to the directory that contains the definition of the module. |
Colin Cross | 1184b64 | 2019-12-30 18:43:07 -0800 | [diff] [blame] | 76 | ModuleDir() string |
Colin Cross | 9f35c3d | 2020-09-16 19:04:41 -0700 | [diff] [blame] | 77 | |
| 78 | // ModuleType returns the name of the module type that was used to create the module, as specified in |
| 79 | // RegisterModuleType. |
Colin Cross | 1184b64 | 2019-12-30 18:43:07 -0800 | [diff] [blame] | 80 | ModuleType() string |
Colin Cross | 9f35c3d | 2020-09-16 19:04:41 -0700 | [diff] [blame] | 81 | |
| 82 | // BlueprintFile returns the name of the blueprint file that contains the definition of this |
| 83 | // module. |
Colin Cross | 9d34f35 | 2019-11-22 16:03:51 -0800 | [diff] [blame] | 84 | BlueprintsFile() string |
Colin Cross | 1184b64 | 2019-12-30 18:43:07 -0800 | [diff] [blame] | 85 | |
Colin Cross | 9f35c3d | 2020-09-16 19:04:41 -0700 | [diff] [blame] | 86 | // ContainsProperty returns true if the specified property name was set in the module definition. |
Colin Cross | 1184b64 | 2019-12-30 18:43:07 -0800 | [diff] [blame] | 87 | ContainsProperty(name string) bool |
Colin Cross | 9f35c3d | 2020-09-16 19:04:41 -0700 | [diff] [blame] | 88 | |
| 89 | // Errorf reports an error at the specified position of the module definition file. |
Colin Cross | 1184b64 | 2019-12-30 18:43:07 -0800 | [diff] [blame] | 90 | Errorf(pos scanner.Position, fmt string, args ...interface{}) |
Colin Cross | 9f35c3d | 2020-09-16 19:04:41 -0700 | [diff] [blame] | 91 | |
| 92 | // ModuleErrorf reports an error at the line number of the module type in the module definition. |
Colin Cross | 1184b64 | 2019-12-30 18:43:07 -0800 | [diff] [blame] | 93 | ModuleErrorf(fmt string, args ...interface{}) |
Colin Cross | 9f35c3d | 2020-09-16 19:04:41 -0700 | [diff] [blame] | 94 | |
| 95 | // PropertyErrorf reports an error at the line number of a property in the module definition. |
Colin Cross | 1184b64 | 2019-12-30 18:43:07 -0800 | [diff] [blame] | 96 | PropertyErrorf(property, fmt string, args ...interface{}) |
Colin Cross | 9f35c3d | 2020-09-16 19:04:41 -0700 | [diff] [blame] | 97 | |
| 98 | // Failed returns true if any errors have been reported. In most cases the module can continue with generating |
| 99 | // build rules after an error, allowing it to report additional errors in a single run, but in cases where the error |
| 100 | // has prevented the module from creating necessary data it can return early when Failed returns true. |
Colin Cross | 1184b64 | 2019-12-30 18:43:07 -0800 | [diff] [blame] | 101 | Failed() bool |
| 102 | |
Colin Cross | 9f35c3d | 2020-09-16 19:04:41 -0700 | [diff] [blame] | 103 | // AddNinjaFileDeps adds dependencies on the specified files to the rule that creates the ninja manifest. The |
| 104 | // primary builder will be rerun whenever the specified files are modified. |
Colin Cross | 1184b64 | 2019-12-30 18:43:07 -0800 | [diff] [blame] | 105 | AddNinjaFileDeps(deps ...string) |
| 106 | |
| 107 | DeviceSpecific() bool |
| 108 | SocSpecific() bool |
| 109 | ProductSpecific() bool |
| 110 | SystemExtSpecific() bool |
| 111 | Platform() bool |
| 112 | |
| 113 | Config() Config |
| 114 | DeviceConfig() DeviceConfig |
| 115 | |
| 116 | // Deprecated: use Config() |
| 117 | AConfig() Config |
| 118 | |
| 119 | // GlobWithDeps returns a list of files that match the specified pattern but do not match any |
| 120 | // of the patterns in excludes. It also adds efficient dependencies to rerun the primary |
| 121 | // builder whenever a file matching the pattern as added or removed, without rerunning if a |
| 122 | // file that does not match the pattern is added to a searched directory. |
| 123 | GlobWithDeps(pattern string, excludes []string) ([]string, error) |
| 124 | |
| 125 | Glob(globPattern string, excludes []string) Paths |
| 126 | GlobFiles(globPattern string, excludes []string) Paths |
Colin Cross | 988414c | 2020-01-11 01:11:46 +0000 | [diff] [blame] | 127 | IsSymlink(path Path) bool |
| 128 | Readlink(path Path) string |
Colin Cross | 133ebef | 2020-08-14 17:38:45 -0700 | [diff] [blame] | 129 | |
Colin Cross | 9f35c3d | 2020-09-16 19:04:41 -0700 | [diff] [blame] | 130 | // Namespace returns the Namespace object provided by the NameInterface set by Context.SetNameInterface, or the |
| 131 | // default SimpleNameInterface if Context.SetNameInterface was not called. |
Colin Cross | 133ebef | 2020-08-14 17:38:45 -0700 | [diff] [blame] | 132 | Namespace() *Namespace |
Colin Cross | 1184b64 | 2019-12-30 18:43:07 -0800 | [diff] [blame] | 133 | } |
| 134 | |
Colin Cross | 0ea8ba8 | 2019-06-06 14:33:29 -0700 | [diff] [blame] | 135 | // BaseModuleContext is the same as blueprint.BaseModuleContext except that Config() returns |
Colin Cross | dc35e21 | 2019-06-06 16:13:11 -0700 | [diff] [blame] | 136 | // a Config instead of an interface{}, and some methods have been wrapped to use an android.Module |
| 137 | // instead of a blueprint.Module, plus some extra methods that return Android-specific information |
Colin Cross | 0ea8ba8 | 2019-06-06 14:33:29 -0700 | [diff] [blame] | 138 | // about the current module. |
| 139 | type BaseModuleContext interface { |
Colin Cross | 1184b64 | 2019-12-30 18:43:07 -0800 | [diff] [blame] | 140 | EarlyModuleContext |
Colin Cross | 0ea8ba8 | 2019-06-06 14:33:29 -0700 | [diff] [blame] | 141 | |
Paul Duffin | f88d8e0 | 2020-05-07 20:21:34 +0100 | [diff] [blame] | 142 | blueprintBaseModuleContext() blueprint.BaseModuleContext |
| 143 | |
Colin Cross | 9f35c3d | 2020-09-16 19:04:41 -0700 | [diff] [blame] | 144 | // OtherModuleName returns the name of another Module. See BaseModuleContext.ModuleName for more information. |
| 145 | // It is intended for use inside the visit functions of Visit* and WalkDeps. |
Colin Cross | dc35e21 | 2019-06-06 16:13:11 -0700 | [diff] [blame] | 146 | OtherModuleName(m blueprint.Module) string |
Colin Cross | 9f35c3d | 2020-09-16 19:04:41 -0700 | [diff] [blame] | 147 | |
| 148 | // OtherModuleDir returns the directory of another Module. See BaseModuleContext.ModuleDir for more information. |
| 149 | // It is intended for use inside the visit functions of Visit* and WalkDeps. |
Colin Cross | dc35e21 | 2019-06-06 16:13:11 -0700 | [diff] [blame] | 150 | OtherModuleDir(m blueprint.Module) string |
Colin Cross | 9f35c3d | 2020-09-16 19:04:41 -0700 | [diff] [blame] | 151 | |
| 152 | // OtherModuleErrorf reports an error on another Module. See BaseModuleContext.ModuleErrorf for more information. |
| 153 | // It is intended for use inside the visit functions of Visit* and WalkDeps. |
Colin Cross | dc35e21 | 2019-06-06 16:13:11 -0700 | [diff] [blame] | 154 | OtherModuleErrorf(m blueprint.Module, fmt string, args ...interface{}) |
Colin Cross | 9f35c3d | 2020-09-16 19:04:41 -0700 | [diff] [blame] | 155 | |
| 156 | // OtherModuleDependencyTag returns the dependency tag used to depend on a module, or nil if there is no dependency |
| 157 | // on the module. When called inside a Visit* method with current module being visited, and there are multiple |
| 158 | // dependencies on the module being visited, it returns the dependency tag used for the current dependency. |
Colin Cross | dc35e21 | 2019-06-06 16:13:11 -0700 | [diff] [blame] | 159 | OtherModuleDependencyTag(m blueprint.Module) blueprint.DependencyTag |
Colin Cross | 9f35c3d | 2020-09-16 19:04:41 -0700 | [diff] [blame] | 160 | |
| 161 | // OtherModuleExists returns true if a module with the specified name exists, as determined by the NameInterface |
| 162 | // passed to Context.SetNameInterface, or SimpleNameInterface if it was not called. |
Colin Cross | dc35e21 | 2019-06-06 16:13:11 -0700 | [diff] [blame] | 163 | OtherModuleExists(name string) bool |
Colin Cross | 9f35c3d | 2020-09-16 19:04:41 -0700 | [diff] [blame] | 164 | |
| 165 | // OtherModuleDependencyVariantExists returns true if a module with the |
| 166 | // specified name and variant exists. The variant must match the given |
| 167 | // variations. It must also match all the non-local variations of the current |
| 168 | // module. In other words, it checks for the module AddVariationDependencies |
| 169 | // would add a dependency on with the same arguments. |
Martin Stjernholm | 009a9dc | 2020-03-05 17:34:13 +0000 | [diff] [blame] | 170 | OtherModuleDependencyVariantExists(variations []blueprint.Variation, name string) bool |
Colin Cross | 9f35c3d | 2020-09-16 19:04:41 -0700 | [diff] [blame] | 171 | |
| 172 | // OtherModuleReverseDependencyVariantExists returns true if a module with the |
| 173 | // specified name exists with the same variations as the current module. In |
| 174 | // other words, it checks for the module AddReverseDependency would add a |
| 175 | // dependency on with the same argument. |
Martin Stjernholm | 009a9dc | 2020-03-05 17:34:13 +0000 | [diff] [blame] | 176 | OtherModuleReverseDependencyVariantExists(name string) bool |
Colin Cross | 9f35c3d | 2020-09-16 19:04:41 -0700 | [diff] [blame] | 177 | |
| 178 | // OtherModuleType returns the type of another Module. See BaseModuleContext.ModuleType for more information. |
| 179 | // It is intended for use inside the visit functions of Visit* and WalkDeps. |
Jiyong Park | 9e6c242 | 2019-08-09 20:39:45 +0900 | [diff] [blame] | 180 | OtherModuleType(m blueprint.Module) string |
Colin Cross | dc35e21 | 2019-06-06 16:13:11 -0700 | [diff] [blame] | 181 | |
Colin Cross | d27e7b8 | 2020-07-02 11:38:17 -0700 | [diff] [blame] | 182 | // OtherModuleProvider returns the value for a provider for the given module. If the value is |
| 183 | // not set it returns the zero value of the type of the provider, so the return value can always |
| 184 | // be type asserted to the type of the provider. The value returned may be a deep copy of the |
| 185 | // value originally passed to SetProvider. |
| 186 | OtherModuleProvider(m blueprint.Module, provider blueprint.ProviderKey) interface{} |
| 187 | |
| 188 | // OtherModuleHasProvider returns true if the provider for the given module has been set. |
| 189 | OtherModuleHasProvider(m blueprint.Module, provider blueprint.ProviderKey) bool |
| 190 | |
| 191 | // Provider returns the value for a provider for the current module. If the value is |
| 192 | // not set it returns the zero value of the type of the provider, so the return value can always |
| 193 | // be type asserted to the type of the provider. It panics if called before the appropriate |
| 194 | // mutator or GenerateBuildActions pass for the provider. The value returned may be a deep |
| 195 | // copy of the value originally passed to SetProvider. |
| 196 | Provider(provider blueprint.ProviderKey) interface{} |
| 197 | |
| 198 | // HasProvider returns true if the provider for the current module has been set. |
| 199 | HasProvider(provider blueprint.ProviderKey) bool |
| 200 | |
| 201 | // SetProvider sets the value for a provider for the current module. It panics if not called |
| 202 | // during the appropriate mutator or GenerateBuildActions pass for the provider, if the value |
| 203 | // is not of the appropriate type, or if the value has already been set. The value should not |
| 204 | // be modified after being passed to SetProvider. |
| 205 | SetProvider(provider blueprint.ProviderKey, value interface{}) |
| 206 | |
Colin Cross | dc35e21 | 2019-06-06 16:13:11 -0700 | [diff] [blame] | 207 | GetDirectDepsWithTag(tag blueprint.DependencyTag) []Module |
Colin Cross | 9f35c3d | 2020-09-16 19:04:41 -0700 | [diff] [blame] | 208 | |
| 209 | // GetDirectDepWithTag returns the Module the direct dependency with the specified name, or nil if |
| 210 | // none exists. It panics if the dependency does not have the specified tag. It skips any |
| 211 | // dependencies that are not an android.Module. |
Colin Cross | dc35e21 | 2019-06-06 16:13:11 -0700 | [diff] [blame] | 212 | GetDirectDepWithTag(name string, tag blueprint.DependencyTag) blueprint.Module |
Colin Cross | 9f35c3d | 2020-09-16 19:04:41 -0700 | [diff] [blame] | 213 | |
| 214 | // GetDirectDep returns the Module and DependencyTag for the direct dependency with the specified |
| 215 | // name, or nil if none exists. If there are multiple dependencies on the same module it returns |
| 216 | // the first DependencyTag. It skips any dependencies that are not an android.Module. |
Colin Cross | dc35e21 | 2019-06-06 16:13:11 -0700 | [diff] [blame] | 217 | GetDirectDep(name string) (blueprint.Module, blueprint.DependencyTag) |
| 218 | |
Colin Cross | 9f35c3d | 2020-09-16 19:04:41 -0700 | [diff] [blame] | 219 | // VisitDirectDepsBlueprint calls visit for each direct dependency. If there are multiple |
| 220 | // direct dependencies on the same module visit will be called multiple times on that module |
| 221 | // and OtherModuleDependencyTag will return a different tag for each. |
| 222 | // |
| 223 | // The Module passed to the visit function should not be retained outside of the visit |
| 224 | // function, it may be invalidated by future mutators. |
Colin Cross | dc35e21 | 2019-06-06 16:13:11 -0700 | [diff] [blame] | 225 | VisitDirectDepsBlueprint(visit func(blueprint.Module)) |
Colin Cross | 9f35c3d | 2020-09-16 19:04:41 -0700 | [diff] [blame] | 226 | |
| 227 | // VisitDirectDeps calls visit for each direct dependency. If there are multiple |
| 228 | // direct dependencies on the same module visit will be called multiple times on that module |
| 229 | // and OtherModuleDependencyTag will return a different tag for each. It skips any |
| 230 | // dependencies that are not an android.Module. |
| 231 | // |
| 232 | // The Module passed to the visit function should not be retained outside of the visit |
| 233 | // function, it may be invalidated by future mutators. |
Colin Cross | dc35e21 | 2019-06-06 16:13:11 -0700 | [diff] [blame] | 234 | VisitDirectDeps(visit func(Module)) |
Colin Cross | 9f35c3d | 2020-09-16 19:04:41 -0700 | [diff] [blame] | 235 | |
Colin Cross | dc35e21 | 2019-06-06 16:13:11 -0700 | [diff] [blame] | 236 | VisitDirectDepsWithTag(tag blueprint.DependencyTag, visit func(Module)) |
Colin Cross | 9f35c3d | 2020-09-16 19:04:41 -0700 | [diff] [blame] | 237 | |
| 238 | // VisitDirectDepsIf calls pred for each direct dependency, and if pred returns true calls visit. If there are |
| 239 | // multiple direct dependencies on the same module pred and visit will be called multiple times on that module and |
| 240 | // OtherModuleDependencyTag will return a different tag for each. It skips any |
| 241 | // dependencies that are not an android.Module. |
| 242 | // |
| 243 | // The Module passed to the visit function should not be retained outside of the visit function, it may be |
| 244 | // invalidated by future mutators. |
Colin Cross | dc35e21 | 2019-06-06 16:13:11 -0700 | [diff] [blame] | 245 | VisitDirectDepsIf(pred func(Module) bool, visit func(Module)) |
| 246 | // Deprecated: use WalkDeps instead to support multiple dependency tags on the same module |
| 247 | VisitDepsDepthFirst(visit func(Module)) |
| 248 | // Deprecated: use WalkDeps instead to support multiple dependency tags on the same module |
| 249 | VisitDepsDepthFirstIf(pred func(Module) bool, visit func(Module)) |
Colin Cross | 9f35c3d | 2020-09-16 19:04:41 -0700 | [diff] [blame] | 250 | |
| 251 | // WalkDeps calls visit for each transitive dependency, traversing the dependency tree in top down order. visit may |
| 252 | // be called multiple times for the same (child, parent) pair if there are multiple direct dependencies between the |
| 253 | // child and parent with different tags. OtherModuleDependencyTag will return the tag for the currently visited |
| 254 | // (child, parent) pair. If visit returns false WalkDeps will not continue recursing down to child. It skips |
| 255 | // any dependencies that are not an android.Module. |
| 256 | // |
| 257 | // The Modules passed to the visit function should not be retained outside of the visit function, they may be |
| 258 | // invalidated by future mutators. |
Colin Cross | dc35e21 | 2019-06-06 16:13:11 -0700 | [diff] [blame] | 259 | WalkDeps(visit func(Module, Module) bool) |
Colin Cross | 9f35c3d | 2020-09-16 19:04:41 -0700 | [diff] [blame] | 260 | |
| 261 | // WalkDepsBlueprint calls visit for each transitive dependency, traversing the dependency |
| 262 | // tree in top down order. visit may be called multiple times for the same (child, parent) |
| 263 | // pair if there are multiple direct dependencies between the child and parent with different |
| 264 | // tags. OtherModuleDependencyTag will return the tag for the currently visited |
| 265 | // (child, parent) pair. If visit returns false WalkDeps will not continue recursing down |
| 266 | // to child. |
| 267 | // |
| 268 | // The Modules passed to the visit function should not be retained outside of the visit function, they may be |
| 269 | // invalidated by future mutators. |
Colin Cross | dc35e21 | 2019-06-06 16:13:11 -0700 | [diff] [blame] | 270 | WalkDepsBlueprint(visit func(blueprint.Module, blueprint.Module) bool) |
Colin Cross | 9f35c3d | 2020-09-16 19:04:41 -0700 | [diff] [blame] | 271 | |
Colin Cross | dc35e21 | 2019-06-06 16:13:11 -0700 | [diff] [blame] | 272 | // GetWalkPath is supposed to be called in visit function passed in WalkDeps() |
| 273 | // and returns a top-down dependency path from a start module to current child module. |
| 274 | GetWalkPath() []Module |
| 275 | |
Colin Cross | 4dfacf9 | 2020-09-16 19:22:27 -0700 | [diff] [blame] | 276 | // PrimaryModule returns the first variant of the current module. Variants of a module are always visited in |
| 277 | // order by mutators and GenerateBuildActions, so the data created by the current mutator can be read from the |
| 278 | // Module returned by PrimaryModule without data races. This can be used to perform singleton actions that are |
| 279 | // only done once for all variants of a module. |
| 280 | PrimaryModule() Module |
| 281 | |
| 282 | // FinalModule returns the last variant of the current module. Variants of a module are always visited in |
| 283 | // order by mutators and GenerateBuildActions, so the data created by the current mutator can be read from all |
| 284 | // variants using VisitAllModuleVariants if the current module == FinalModule(). This can be used to perform |
| 285 | // singleton actions that are only done once for all variants of a module. |
| 286 | FinalModule() Module |
| 287 | |
| 288 | // VisitAllModuleVariants calls visit for each variant of the current module. Variants of a module are always |
| 289 | // visited in order by mutators and GenerateBuildActions, so the data created by the current mutator can be read |
| 290 | // from all variants if the current module == FinalModule(). Otherwise, care must be taken to not access any |
| 291 | // data modified by the current mutator. |
| 292 | VisitAllModuleVariants(visit func(Module)) |
| 293 | |
Paul Duffin | c519244 | 2020-03-31 11:31:36 +0100 | [diff] [blame] | 294 | // GetTagPath is supposed to be called in visit function passed in WalkDeps() |
| 295 | // and returns a top-down dependency tags path from a start module to current child module. |
| 296 | // It has one less entry than GetWalkPath() as it contains the dependency tags that |
| 297 | // exist between each adjacent pair of modules in the GetWalkPath(). |
| 298 | // GetTagPath()[i] is the tag between GetWalkPath()[i] and GetWalkPath()[i+1] |
| 299 | GetTagPath() []blueprint.DependencyTag |
| 300 | |
Jiyong Park | 1c7e962 | 2020-05-07 16:12:13 +0900 | [diff] [blame] | 301 | // GetPathString is supposed to be called in visit function passed in WalkDeps() |
| 302 | // and returns a multi-line string showing the modules and dependency tags |
| 303 | // among them along the top-down dependency path from a start module to current child module. |
| 304 | // skipFirst when set to true, the output doesn't include the start module, |
| 305 | // which is already printed when this function is used along with ModuleErrorf(). |
| 306 | GetPathString(skipFirst bool) string |
| 307 | |
Colin Cross | dc35e21 | 2019-06-06 16:13:11 -0700 | [diff] [blame] | 308 | AddMissingDependencies(missingDeps []string) |
| 309 | |
Colin Cross | a1ad8d1 | 2016-06-01 17:09:44 -0700 | [diff] [blame] | 310 | Target() Target |
Colin Cross | 8b74d17 | 2016-09-13 09:59:14 -0700 | [diff] [blame] | 311 | TargetPrimary() bool |
Paul Duffin | ca7f0ef | 2020-02-25 15:50:49 +0000 | [diff] [blame] | 312 | |
| 313 | // The additional arch specific targets (e.g. 32/64 bit) that this module variant is |
| 314 | // responsible for creating. |
Colin Cross | ee0bc3b | 2018-10-02 22:01:37 -0700 | [diff] [blame] | 315 | MultiTargets() []Target |
Colin Cross | f6566ed | 2015-03-24 11:13:38 -0700 | [diff] [blame] | 316 | Arch() Arch |
Colin Cross | a1ad8d1 | 2016-06-01 17:09:44 -0700 | [diff] [blame] | 317 | Os() OsType |
Colin Cross | f6566ed | 2015-03-24 11:13:38 -0700 | [diff] [blame] | 318 | Host() bool |
| 319 | Device() bool |
Colin Cross | 0af4b84 | 2015-04-30 16:36:18 -0700 | [diff] [blame] | 320 | Darwin() bool |
Doug Horn | 21b9427 | 2019-01-16 12:06:11 -0800 | [diff] [blame] | 321 | Fuchsia() bool |
Colin Cross | 3edeee1 | 2017-04-04 12:59:48 -0700 | [diff] [blame] | 322 | Windows() bool |
Colin Cross | f6566ed | 2015-03-24 11:13:38 -0700 | [diff] [blame] | 323 | Debug() bool |
Colin Cross | 1e7d370 | 2016-08-24 15:25:47 -0700 | [diff] [blame] | 324 | PrimaryArch() bool |
Colin Cross | f6566ed | 2015-03-24 11:13:38 -0700 | [diff] [blame] | 325 | } |
| 326 | |
Colin Cross | 1184b64 | 2019-12-30 18:43:07 -0800 | [diff] [blame] | 327 | // Deprecated: use EarlyModuleContext instead |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 328 | type BaseContext interface { |
Colin Cross | 1184b64 | 2019-12-30 18:43:07 -0800 | [diff] [blame] | 329 | EarlyModuleContext |
Colin Cross | aabf679 | 2017-11-29 00:27:14 -0800 | [diff] [blame] | 330 | } |
| 331 | |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 332 | type ModuleContext interface { |
Colin Cross | aabf679 | 2017-11-29 00:27:14 -0800 | [diff] [blame] | 333 | BaseModuleContext |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 334 | |
Colin Cross | ae88703 | 2017-10-23 17:16:14 -0700 | [diff] [blame] | 335 | // Deprecated: use ModuleContext.Build instead. |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 336 | ModuleBuild(pctx PackageContext, params ModuleBuildParams) |
Colin Cross | 8f101b4 | 2015-06-17 15:09:06 -0700 | [diff] [blame] | 337 | |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 338 | ExpandSources(srcFiles, excludes []string) Paths |
Colin Cross | 366938f | 2017-12-11 16:29:02 -0800 | [diff] [blame] | 339 | ExpandSource(srcFile, prop string) Path |
Colin Cross | 2383f3b | 2018-02-06 14:40:13 -0800 | [diff] [blame] | 340 | ExpandOptionalSource(srcFile *string, prop string) OptionalPath |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 341 | |
Colin Cross | 70dda7e | 2019-10-01 22:05:35 -0700 | [diff] [blame] | 342 | InstallExecutable(installPath InstallPath, name string, srcPath Path, deps ...Path) InstallPath |
| 343 | InstallFile(installPath InstallPath, name string, srcPath Path, deps ...Path) InstallPath |
| 344 | InstallSymlink(installPath InstallPath, name string, srcPath InstallPath) InstallPath |
| 345 | InstallAbsoluteSymlink(installPath InstallPath, name string, absPath string) InstallPath |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 346 | CheckbuildFile(srcPath Path) |
Dan Willemsen | 6553f5e | 2016-03-10 18:14:25 -0800 | [diff] [blame] | 347 | |
Colin Cross | 8d8f8e2 | 2016-08-03 11:57:50 -0700 | [diff] [blame] | 348 | InstallInData() bool |
Jaewoong Jung | 0949f31 | 2019-09-11 10:25:18 -0700 | [diff] [blame] | 349 | InstallInTestcases() bool |
Vishwath Mohan | 1dd8839 | 2017-03-29 22:00:18 -0700 | [diff] [blame] | 350 | InstallInSanitizerDir() bool |
Yifan Hong | 1b3348d | 2020-01-21 15:53:22 -0800 | [diff] [blame] | 351 | InstallInRamdisk() bool |
Yifan Hong | 60e0cfb | 2020-10-21 15:17:56 -0700 | [diff] [blame] | 352 | InstallInVendorRamdisk() bool |
Jiyong Park | f9332f1 | 2018-02-01 00:54:12 +0900 | [diff] [blame] | 353 | InstallInRecovery() bool |
Colin Cross | 90ba5f4 | 2019-10-02 11:10:58 -0700 | [diff] [blame] | 354 | InstallInRoot() bool |
Colin Cross | 607d858 | 2019-07-29 16:44:46 -0700 | [diff] [blame] | 355 | InstallBypassMake() bool |
Jiyong Park | 87788b5 | 2020-09-01 12:37:45 +0900 | [diff] [blame] | 356 | InstallForceOS() (*OsType, *ArchType) |
Nan Zhang | 6d34b30 | 2017-02-04 17:47:46 -0800 | [diff] [blame] | 357 | |
| 358 | RequiredModuleNames() []string |
Sasha Smundak | b6d2305 | 2019-04-01 18:37:36 -0700 | [diff] [blame] | 359 | HostRequiredModuleNames() []string |
| 360 | TargetRequiredModuleNames() []string |
Colin Cross | 3f68a13 | 2017-10-23 17:10:29 -0700 | [diff] [blame] | 361 | |
Colin Cross | 3f68a13 | 2017-10-23 17:10:29 -0700 | [diff] [blame] | 362 | ModuleSubDir() string |
| 363 | |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 364 | Variable(pctx PackageContext, name, value string) |
| 365 | Rule(pctx PackageContext, name string, params blueprint.RuleParams, argNames ...string) blueprint.Rule |
Colin Cross | ae88703 | 2017-10-23 17:16:14 -0700 | [diff] [blame] | 366 | // Similar to blueprint.ModuleContext.Build, but takes Paths instead of []string, |
| 367 | // and performs more verification. |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 368 | Build(pctx PackageContext, params BuildParams) |
Colin Cross | c3d87d3 | 2020-06-04 13:25:17 -0700 | [diff] [blame] | 369 | // Phony creates a Make-style phony rule, a rule with no commands that can depend on other |
| 370 | // phony rules or real files. Phony can be called on the same name multiple times to add |
| 371 | // additional dependencies. |
| 372 | Phony(phony string, deps ...Path) |
Colin Cross | 3f68a13 | 2017-10-23 17:10:29 -0700 | [diff] [blame] | 373 | |
Colin Cross | 9f35c3d | 2020-09-16 19:04:41 -0700 | [diff] [blame] | 374 | // GetMissingDependencies returns the list of dependencies that were passed to AddDependencies or related methods, |
| 375 | // but do not exist. |
Colin Cross | 3f68a13 | 2017-10-23 17:10:29 -0700 | [diff] [blame] | 376 | GetMissingDependencies() []string |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 377 | } |
| 378 | |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 379 | type Module interface { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 380 | blueprint.Module |
| 381 | |
Jeff Gaston | af3cc2d | 2017-09-27 17:01:44 -0700 | [diff] [blame] | 382 | // GenerateAndroidBuildActions is analogous to Blueprints' GenerateBuildActions, |
| 383 | // but GenerateAndroidBuildActions also has access to Android-specific information. |
| 384 | // For more information, see Module.GenerateBuildActions within Blueprint's module_ctx.go |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 385 | GenerateAndroidBuildActions(ModuleContext) |
Jeff Gaston | af3cc2d | 2017-09-27 17:01:44 -0700 | [diff] [blame] | 386 | |
Paul Duffin | 44f1d84 | 2020-06-26 20:17:02 +0100 | [diff] [blame] | 387 | // Add dependencies to the components of a module, i.e. modules that are created |
| 388 | // by the module and which are considered to be part of the creating module. |
| 389 | // |
| 390 | // This is called before prebuilts are renamed so as to allow a dependency to be |
| 391 | // added directly to a prebuilt child module instead of depending on a source module |
| 392 | // and relying on prebuilt processing to switch to the prebuilt module if preferred. |
| 393 | // |
| 394 | // A dependency on a prebuilt must include the "prebuilt_" prefix. |
| 395 | ComponentDepsMutator(ctx BottomUpMutatorContext) |
| 396 | |
Colin Cross | 1e676be | 2016-10-12 14:38:15 -0700 | [diff] [blame] | 397 | DepsMutator(BottomUpMutatorContext) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 398 | |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 399 | base() *ModuleBase |
Inseob Kim | eec88e1 | 2020-01-22 11:11:29 +0900 | [diff] [blame] | 400 | Disable() |
Dan Willemsen | 0effe06 | 2015-11-30 16:06:01 -0800 | [diff] [blame] | 401 | Enabled() bool |
Colin Cross | a1ad8d1 | 2016-06-01 17:09:44 -0700 | [diff] [blame] | 402 | Target() Target |
Anton Hansson | 1ee62c0 | 2020-06-30 11:51:53 +0100 | [diff] [blame] | 403 | Owner() string |
Dan Willemsen | 782a2d1 | 2015-12-21 14:55:28 -0800 | [diff] [blame] | 404 | InstallInData() bool |
Jaewoong Jung | 0949f31 | 2019-09-11 10:25:18 -0700 | [diff] [blame] | 405 | InstallInTestcases() bool |
Vishwath Mohan | 1dd8839 | 2017-03-29 22:00:18 -0700 | [diff] [blame] | 406 | InstallInSanitizerDir() bool |
Yifan Hong | 1b3348d | 2020-01-21 15:53:22 -0800 | [diff] [blame] | 407 | InstallInRamdisk() bool |
Yifan Hong | 60e0cfb | 2020-10-21 15:17:56 -0700 | [diff] [blame] | 408 | InstallInVendorRamdisk() bool |
Jiyong Park | f9332f1 | 2018-02-01 00:54:12 +0900 | [diff] [blame] | 409 | InstallInRecovery() bool |
Colin Cross | 90ba5f4 | 2019-10-02 11:10:58 -0700 | [diff] [blame] | 410 | InstallInRoot() bool |
Colin Cross | 607d858 | 2019-07-29 16:44:46 -0700 | [diff] [blame] | 411 | InstallBypassMake() bool |
Jiyong Park | 87788b5 | 2020-09-01 12:37:45 +0900 | [diff] [blame] | 412 | InstallForceOS() (*OsType, *ArchType) |
Colin Cross | a2f296f | 2016-11-29 15:16:18 -0800 | [diff] [blame] | 413 | SkipInstall() |
Ulya Trafimovich | b28cc37 | 2020-01-13 15:18:16 +0000 | [diff] [blame] | 414 | IsSkipInstall() bool |
Martin Stjernholm | 9e9bb7f | 2020-08-06 22:34:42 +0100 | [diff] [blame] | 415 | MakeUninstallable() |
Liz Kammer | 5ca3a62 | 2020-08-05 15:40:41 -0700 | [diff] [blame] | 416 | ReplacedByPrebuilt() |
| 417 | IsReplacedByPrebuilt() bool |
Jiyong Park | 374510b | 2018-03-19 18:23:01 +0900 | [diff] [blame] | 418 | ExportedToMake() bool |
Inseob Kim | 8471cda | 2019-11-15 09:59:12 +0900 | [diff] [blame] | 419 | InitRc() Paths |
| 420 | VintfFragments() Paths |
Bob Badour | a75b057 | 2020-02-18 20:21:55 -0800 | [diff] [blame] | 421 | NoticeFiles() Paths |
Colin Cross | 3624285 | 2017-06-23 15:06:31 -0700 | [diff] [blame] | 422 | |
| 423 | AddProperties(props ...interface{}) |
| 424 | GetProperties() []interface{} |
Colin Cross | cec8171 | 2017-07-13 14:43:27 -0700 | [diff] [blame] | 425 | |
Colin Cross | ae88703 | 2017-10-23 17:16:14 -0700 | [diff] [blame] | 426 | BuildParamsForTests() []BuildParams |
Colin Cross | 4c83e5c | 2019-02-25 14:54:28 -0800 | [diff] [blame] | 427 | RuleParamsForTests() map[blueprint.Rule]blueprint.RuleParams |
Jaewoong Jung | 38e4fb2 | 2018-12-12 09:01:34 -0800 | [diff] [blame] | 428 | VariablesForTests() map[string]string |
Paul Duffin | e2453c7 | 2019-05-31 14:00:04 +0100 | [diff] [blame] | 429 | |
Colin Cross | 9a36223 | 2019-07-01 15:32:45 -0700 | [diff] [blame] | 430 | // String returns a string that includes the module name and variants for printing during debugging. |
| 431 | String() string |
| 432 | |
Paul Duffin | e2453c7 | 2019-05-31 14:00:04 +0100 | [diff] [blame] | 433 | // Get the qualified module id for this module. |
| 434 | qualifiedModuleId(ctx BaseModuleContext) qualifiedModuleName |
| 435 | |
| 436 | // Get information about the properties that can contain visibility rules. |
| 437 | visibilityProperties() []visibilityProperty |
Paul Duffin | 63c6e18 | 2019-07-24 14:24:38 +0100 | [diff] [blame] | 438 | |
Jiyong Park | 6a8cf5f | 2019-12-30 16:31:09 +0900 | [diff] [blame] | 439 | RequiredModuleNames() []string |
| 440 | HostRequiredModuleNames() []string |
| 441 | TargetRequiredModuleNames() []string |
Colin Cross | 897266e | 2020-02-13 13:22:08 -0800 | [diff] [blame] | 442 | |
Jiyong Park | 4dc2a1a | 2020-09-28 17:46:22 +0900 | [diff] [blame] | 443 | FilesToInstall() InstallPaths |
Paul Duffin | e2453c7 | 2019-05-31 14:00:04 +0100 | [diff] [blame] | 444 | } |
| 445 | |
| 446 | // Qualified id for a module |
| 447 | type qualifiedModuleName struct { |
| 448 | // The package (i.e. directory) in which the module is defined, without trailing / |
| 449 | pkg string |
| 450 | |
| 451 | // The name of the module, empty string if package. |
| 452 | name string |
| 453 | } |
| 454 | |
| 455 | func (q qualifiedModuleName) String() string { |
| 456 | if q.name == "" { |
| 457 | return "//" + q.pkg |
| 458 | } |
| 459 | return "//" + q.pkg + ":" + q.name |
| 460 | } |
| 461 | |
Paul Duffin | e484f47 | 2019-06-20 16:38:08 +0100 | [diff] [blame] | 462 | func (q qualifiedModuleName) isRootPackage() bool { |
| 463 | return q.pkg == "" && q.name == "" |
| 464 | } |
| 465 | |
Paul Duffin | e2453c7 | 2019-05-31 14:00:04 +0100 | [diff] [blame] | 466 | // Get the id for the package containing this module. |
| 467 | func (q qualifiedModuleName) getContainingPackageId() qualifiedModuleName { |
| 468 | pkg := q.pkg |
| 469 | if q.name == "" { |
Paul Duffin | e484f47 | 2019-06-20 16:38:08 +0100 | [diff] [blame] | 470 | if pkg == "" { |
| 471 | panic(fmt.Errorf("Cannot get containing package id of root package")) |
| 472 | } |
| 473 | |
| 474 | index := strings.LastIndex(pkg, "/") |
| 475 | if index == -1 { |
| 476 | pkg = "" |
| 477 | } else { |
| 478 | pkg = pkg[:index] |
| 479 | } |
Paul Duffin | e2453c7 | 2019-05-31 14:00:04 +0100 | [diff] [blame] | 480 | } |
| 481 | return newPackageId(pkg) |
| 482 | } |
| 483 | |
| 484 | func newPackageId(pkg string) qualifiedModuleName { |
| 485 | // A qualified id for a package module has no name. |
| 486 | return qualifiedModuleName{pkg: pkg, name: ""} |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 487 | } |
| 488 | |
Jingwen Chen | 40fd90a | 2020-06-15 05:24:19 +0000 | [diff] [blame] | 489 | type Dist struct { |
| 490 | // Copy the output of this module to the $DIST_DIR when `dist` is specified on the |
| 491 | // command line and any of these targets are also on the command line, or otherwise |
| 492 | // built |
| 493 | Targets []string `android:"arch_variant"` |
| 494 | |
| 495 | // The name of the output artifact. This defaults to the basename of the output of |
| 496 | // the module. |
| 497 | Dest *string `android:"arch_variant"` |
| 498 | |
| 499 | // The directory within the dist directory to store the artifact. Defaults to the |
| 500 | // top level directory (""). |
| 501 | Dir *string `android:"arch_variant"` |
| 502 | |
| 503 | // A suffix to add to the artifact file name (before any extension). |
| 504 | Suffix *string `android:"arch_variant"` |
| 505 | |
| 506 | // A string tag to select the OutputFiles associated with the tag. Defaults to the |
| 507 | // the empty "" string. |
| 508 | Tag *string `android:"arch_variant"` |
| 509 | } |
| 510 | |
Colin Cross | fc75458 | 2016-05-17 16:34:16 -0700 | [diff] [blame] | 511 | type nameProperties struct { |
| 512 | // The name of the module. Must be unique across all modules. |
Nan Zhang | 0007d81 | 2017-11-07 10:57:05 -0800 | [diff] [blame] | 513 | Name *string |
Colin Cross | fc75458 | 2016-05-17 16:34:16 -0700 | [diff] [blame] | 514 | } |
| 515 | |
Colin Cross | d976af0 | 2020-11-16 22:44:30 -0800 | [diff] [blame^] | 516 | type enabledProperties struct { |
Dan Willemsen | 0effe06 | 2015-11-30 16:06:01 -0800 | [diff] [blame] | 517 | // emit build rules for this module |
Paul Duffin | 54d9bb7 | 2020-02-12 10:20:56 +0000 | [diff] [blame] | 518 | // |
| 519 | // Disabling a module should only be done for those modules that cannot be built |
| 520 | // in the current environment. Modules that can build in the current environment |
| 521 | // but are not usually required (e.g. superceded by a prebuilt) should not be |
| 522 | // disabled as that will prevent them from being built by the checkbuild target |
| 523 | // and so prevent early detection of changes that have broken those modules. |
Dan Willemsen | 0effe06 | 2015-11-30 16:06:01 -0800 | [diff] [blame] | 524 | Enabled *bool `android:"arch_variant"` |
Colin Cross | d976af0 | 2020-11-16 22:44:30 -0800 | [diff] [blame^] | 525 | } |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 526 | |
Colin Cross | d976af0 | 2020-11-16 22:44:30 -0800 | [diff] [blame^] | 527 | type commonProperties struct { |
Paul Duffin | 2e61fa6 | 2019-03-28 14:10:57 +0000 | [diff] [blame] | 528 | // Controls the visibility of this module to other modules. Allowable values are one or more of |
| 529 | // these formats: |
| 530 | // |
| 531 | // ["//visibility:public"]: Anyone can use this module. |
| 532 | // ["//visibility:private"]: Only rules in the module's package (not its subpackages) can use |
| 533 | // this module. |
Paul Duffin | 51084ff | 2020-05-05 19:19:22 +0100 | [diff] [blame] | 534 | // ["//visibility:override"]: Discards any rules inherited from defaults or a creating module. |
| 535 | // Can only be used at the beginning of a list of visibility rules. |
Paul Duffin | 2e61fa6 | 2019-03-28 14:10:57 +0000 | [diff] [blame] | 536 | // ["//some/package:__pkg__", "//other/package:__pkg__"]: Only modules in some/package and |
| 537 | // other/package (defined in some/package/*.bp and other/package/*.bp) have access to |
| 538 | // this module. Note that sub-packages do not have access to the rule; for example, |
| 539 | // //some/package/foo:bar or //other/package/testing:bla wouldn't have access. __pkg__ |
| 540 | // is a special module and must be used verbatim. It represents all of the modules in the |
| 541 | // package. |
| 542 | // ["//project:__subpackages__", "//other:__subpackages__"]: Only modules in packages project |
| 543 | // or other or in one of their sub-packages have access to this module. For example, |
| 544 | // //project:rule, //project/library:lib or //other/testing/internal:munge are allowed |
| 545 | // to depend on this rule (but not //independent:evil) |
| 546 | // ["//project"]: This is shorthand for ["//project:__pkg__"] |
| 547 | // [":__subpackages__"]: This is shorthand for ["//project:__subpackages__"] where |
| 548 | // //project is the module's package. e.g. using [":__subpackages__"] in |
| 549 | // packages/apps/Settings/Android.bp is equivalent to |
| 550 | // //packages/apps/Settings:__subpackages__. |
| 551 | // ["//visibility:legacy_public"]: The default visibility, behaves as //visibility:public |
| 552 | // for now. It is an error if it is used in a module. |
Paul Duffin | e2453c7 | 2019-05-31 14:00:04 +0100 | [diff] [blame] | 553 | // |
| 554 | // If a module does not specify the `visibility` property then it uses the |
| 555 | // `default_visibility` property of the `package` module in the module's package. |
| 556 | // |
| 557 | // If the `default_visibility` property is not set for the module's package then |
Paul Duffin | e484f47 | 2019-06-20 16:38:08 +0100 | [diff] [blame] | 558 | // it will use the `default_visibility` of its closest ancestor package for which |
| 559 | // a `default_visibility` property is specified. |
| 560 | // |
| 561 | // If no `default_visibility` property can be found then the module uses the |
| 562 | // global default of `//visibility:legacy_public`. |
Paul Duffin | e2453c7 | 2019-05-31 14:00:04 +0100 | [diff] [blame] | 563 | // |
Paul Duffin | 95d53b5 | 2019-07-24 13:45:05 +0100 | [diff] [blame] | 564 | // The `visibility` property has no effect on a defaults module although it does |
| 565 | // apply to any non-defaults module that uses it. To set the visibility of a |
| 566 | // defaults module, use the `defaults_visibility` property on the defaults module; |
| 567 | // not to be confused with the `default_visibility` property on the package module. |
| 568 | // |
Paul Duffin | 2e61fa6 | 2019-03-28 14:10:57 +0000 | [diff] [blame] | 569 | // See https://android.googlesource.com/platform/build/soong/+/master/README.md#visibility for |
| 570 | // more details. |
| 571 | Visibility []string |
| 572 | |
Colin Cross | 7d5136f | 2015-05-11 13:39:40 -0700 | [diff] [blame] | 573 | // control whether this module compiles for 32-bit, 64-bit, or both. Possible values |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 574 | // are "32" (compile for 32-bit only), "64" (compile for 64-bit only), "both" (compile for both |
| 575 | // architectures), or "first" (compile for 64-bit on a 64-bit platform, and 32-bit on a 32-bit |
Roland Levillain | 24bb2e6 | 2020-09-22 11:18:38 +0000 | [diff] [blame] | 576 | // platform). |
Colin Cross | 7d716ba | 2017-11-01 10:38:29 -0700 | [diff] [blame] | 577 | Compile_multilib *string `android:"arch_variant"` |
Colin Cross | 69617d3 | 2016-09-06 10:39:07 -0700 | [diff] [blame] | 578 | |
| 579 | Target struct { |
| 580 | Host struct { |
Colin Cross | 7d716ba | 2017-11-01 10:38:29 -0700 | [diff] [blame] | 581 | Compile_multilib *string |
Colin Cross | 69617d3 | 2016-09-06 10:39:07 -0700 | [diff] [blame] | 582 | } |
| 583 | Android struct { |
Colin Cross | 7d716ba | 2017-11-01 10:38:29 -0700 | [diff] [blame] | 584 | Compile_multilib *string |
Colin Cross | 69617d3 | 2016-09-06 10:39:07 -0700 | [diff] [blame] | 585 | } |
| 586 | } |
| 587 | |
Paul Duffin | ca7f0ef | 2020-02-25 15:50:49 +0000 | [diff] [blame] | 588 | // If set to true then the archMutator will create variants for each arch specific target |
| 589 | // (e.g. 32/64) that the module is required to produce. If set to false then it will only |
| 590 | // create a variant for the architecture and will list the additional arch specific targets |
| 591 | // that the variant needs to produce in the CompileMultiTargets property. |
Colin Cross | ee0bc3b | 2018-10-02 22:01:37 -0700 | [diff] [blame] | 592 | UseTargetVariants bool `blueprint:"mutated"` |
| 593 | Default_multilib string `blueprint:"mutated"` |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 594 | |
Dan Willemsen | 782a2d1 | 2015-12-21 14:55:28 -0800 | [diff] [blame] | 595 | // whether this is a proprietary vendor module, and should be installed into /vendor |
Colin Cross | 7d716ba | 2017-11-01 10:38:29 -0700 | [diff] [blame] | 596 | Proprietary *bool |
Dan Willemsen | 782a2d1 | 2015-12-21 14:55:28 -0800 | [diff] [blame] | 597 | |
Colin Cross | 55708f3 | 2017-03-20 13:23:34 -0700 | [diff] [blame] | 598 | // vendor who owns this module |
Dan Willemsen | efac4a8 | 2017-07-18 19:42:09 -0700 | [diff] [blame] | 599 | Owner *string |
Colin Cross | 55708f3 | 2017-03-20 13:23:34 -0700 | [diff] [blame] | 600 | |
Jiyong Park | 2db7692 | 2017-11-08 16:03:48 +0900 | [diff] [blame] | 601 | // whether this module is specific to an SoC (System-On-a-Chip). When set to true, |
| 602 | // it is installed into /vendor (or /system/vendor if vendor partition does not exist). |
| 603 | // Use `soc_specific` instead for better meaning. |
Colin Cross | 7d716ba | 2017-11-01 10:38:29 -0700 | [diff] [blame] | 604 | Vendor *bool |
Dan Willemsen | aa118f9 | 2017-04-06 12:49:58 -0700 | [diff] [blame] | 605 | |
Jiyong Park | 2db7692 | 2017-11-08 16:03:48 +0900 | [diff] [blame] | 606 | // whether this module is specific to an SoC (System-On-a-Chip). When set to true, |
| 607 | // it is installed into /vendor (or /system/vendor if vendor partition does not exist). |
| 608 | Soc_specific *bool |
| 609 | |
| 610 | // whether this module is specific to a device, not only for SoC, but also for off-chip |
| 611 | // peripherals. When set to true, it is installed into /odm (or /vendor/odm if odm partition |
| 612 | // does not exist, or /system/vendor/odm if both odm and vendor partitions do not exist). |
| 613 | // This implies `soc_specific:true`. |
| 614 | Device_specific *bool |
| 615 | |
| 616 | // whether this module is specific to a software configuration of a product (e.g. country, |
Jaekyun Seok | 5cfbfbb | 2018-01-10 19:00:15 +0900 | [diff] [blame] | 617 | // network operator, etc). When set to true, it is installed into /product (or |
| 618 | // /system/product if product partition does not exist). |
Jiyong Park | 2db7692 | 2017-11-08 16:03:48 +0900 | [diff] [blame] | 619 | Product_specific *bool |
| 620 | |
Justin Yun | d5f6c82 | 2019-06-25 16:47:17 +0900 | [diff] [blame] | 621 | // whether this module extends system. When set to true, it is installed into /system_ext |
| 622 | // (or /system/system_ext if system_ext partition does not exist). |
| 623 | System_ext_specific *bool |
| 624 | |
Jiyong Park | f9332f1 | 2018-02-01 00:54:12 +0900 | [diff] [blame] | 625 | // Whether this module is installed to recovery partition |
| 626 | Recovery *bool |
| 627 | |
Yifan Hong | 1b3348d | 2020-01-21 15:53:22 -0800 | [diff] [blame] | 628 | // Whether this module is installed to ramdisk |
| 629 | Ramdisk *bool |
| 630 | |
Yifan Hong | 60e0cfb | 2020-10-21 15:17:56 -0700 | [diff] [blame] | 631 | // Whether this module is installed to vendor ramdisk |
| 632 | Vendor_ramdisk *bool |
| 633 | |
dimitry | 1f33e40 | 2019-03-26 12:39:31 +0100 | [diff] [blame] | 634 | // Whether this module is built for non-native architecures (also known as native bridge binary) |
| 635 | Native_bridge_supported *bool `android:"arch_variant"` |
| 636 | |
Dan Willemsen | 2277bcb | 2016-07-25 20:27:39 -0700 | [diff] [blame] | 637 | // init.rc files to be installed if this module is installed |
Colin Cross | 0bab877 | 2020-09-25 14:01:21 -0700 | [diff] [blame] | 638 | Init_rc []string `android:"arch_variant,path"` |
Dan Willemsen | 2277bcb | 2016-07-25 20:27:39 -0700 | [diff] [blame] | 639 | |
Steven Moreland | 57a23d2 | 2018-04-04 15:42:19 -0700 | [diff] [blame] | 640 | // VINTF manifest fragments to be installed if this module is installed |
Colin Cross | 27b922f | 2019-03-04 22:35:41 -0800 | [diff] [blame] | 641 | Vintf_fragments []string `android:"path"` |
Steven Moreland | 57a23d2 | 2018-04-04 15:42:19 -0700 | [diff] [blame] | 642 | |
Chris Wolfe | 998306e | 2016-08-15 14:47:23 -0400 | [diff] [blame] | 643 | // names of other modules to install if this module is installed |
Colin Cross | c602b7d | 2017-05-05 13:36:36 -0700 | [diff] [blame] | 644 | Required []string `android:"arch_variant"` |
Chris Wolfe | 998306e | 2016-08-15 14:47:23 -0400 | [diff] [blame] | 645 | |
Sasha Smundak | b6d2305 | 2019-04-01 18:37:36 -0700 | [diff] [blame] | 646 | // names of other modules to install on host if this module is installed |
| 647 | Host_required []string `android:"arch_variant"` |
| 648 | |
| 649 | // names of other modules to install on target if this module is installed |
| 650 | Target_required []string `android:"arch_variant"` |
| 651 | |
Colin Cross | 5aac362 | 2017-08-31 15:07:09 -0700 | [diff] [blame] | 652 | // relative path to a file to include in the list of notices for the device |
Colin Cross | 27b922f | 2019-03-04 22:35:41 -0800 | [diff] [blame] | 653 | Notice *string `android:"path"` |
Colin Cross | 5aac362 | 2017-08-31 15:07:09 -0700 | [diff] [blame] | 654 | |
Paul Duffin | ca7f0ef | 2020-02-25 15:50:49 +0000 | [diff] [blame] | 655 | // The OsType of artifacts that this module variant is responsible for creating. |
| 656 | // |
| 657 | // Set by osMutator |
| 658 | CompileOS OsType `blueprint:"mutated"` |
| 659 | |
| 660 | // The Target of artifacts that this module variant is responsible for creating. |
| 661 | // |
| 662 | // Set by archMutator |
| 663 | CompileTarget Target `blueprint:"mutated"` |
| 664 | |
| 665 | // The additional arch specific targets (e.g. 32/64 bit) that this module variant is |
| 666 | // responsible for creating. |
| 667 | // |
| 668 | // By default this is nil as, where necessary, separate variants are created for the |
| 669 | // different multilib types supported and that information is encapsulated in the |
| 670 | // CompileTarget so the module variant simply needs to create artifacts for that. |
| 671 | // |
| 672 | // However, if UseTargetVariants is set to false (e.g. by |
| 673 | // InitAndroidMultiTargetsArchModule) then no separate variants are created for the |
| 674 | // multilib targets. Instead a single variant is created for the architecture and |
| 675 | // this contains the multilib specific targets that this variant should create. |
| 676 | // |
| 677 | // Set by archMutator |
Colin Cross | ee0bc3b | 2018-10-02 22:01:37 -0700 | [diff] [blame] | 678 | CompileMultiTargets []Target `blueprint:"mutated"` |
Paul Duffin | ca7f0ef | 2020-02-25 15:50:49 +0000 | [diff] [blame] | 679 | |
| 680 | // True if the module variant's CompileTarget is the primary target |
| 681 | // |
| 682 | // Set by archMutator |
| 683 | CompilePrimary bool `blueprint:"mutated"` |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 684 | |
| 685 | // Set by InitAndroidModule |
| 686 | HostOrDeviceSupported HostOrDeviceSupported `blueprint:"mutated"` |
Dan Willemsen | 0b24c74 | 2016-10-04 15:13:37 -0700 | [diff] [blame] | 687 | ArchSpecific bool `blueprint:"mutated"` |
Colin Cross | ce75d2c | 2016-10-06 16:12:58 -0700 | [diff] [blame] | 688 | |
Paul Duffin | 1356d8c | 2020-02-25 19:26:33 +0000 | [diff] [blame] | 689 | // If set to true then a CommonOS variant will be created which will have dependencies |
| 690 | // on all its OsType specific variants. Used by sdk/module_exports to create a snapshot |
| 691 | // that covers all os and architecture variants. |
| 692 | // |
| 693 | // The OsType specific variants can be retrieved by calling |
| 694 | // GetOsSpecificVariantsOfCommonOSVariant |
| 695 | // |
| 696 | // Set at module initialization time by calling InitCommonOSAndroidMultiTargetsArchModule |
| 697 | CreateCommonOSVariant bool `blueprint:"mutated"` |
| 698 | |
| 699 | // If set to true then this variant is the CommonOS variant that has dependencies on its |
| 700 | // OsType specific variants. |
| 701 | // |
| 702 | // Set by osMutator. |
| 703 | CommonOSVariant bool `blueprint:"mutated"` |
| 704 | |
Colin Cross | ce75d2c | 2016-10-06 16:12:58 -0700 | [diff] [blame] | 705 | SkipInstall bool `blueprint:"mutated"` |
Jeff Gaston | 088e29e | 2017-11-29 16:47:17 -0800 | [diff] [blame] | 706 | |
Liz Kammer | 5ca3a62 | 2020-08-05 15:40:41 -0700 | [diff] [blame] | 707 | // Whether the module has been replaced by a prebuilt |
| 708 | ReplacedByPrebuilt bool `blueprint:"mutated"` |
| 709 | |
Justin Yun | 32f053b | 2020-07-31 23:07:17 +0900 | [diff] [blame] | 710 | // Disabled by mutators. If set to true, it overrides Enabled property. |
| 711 | ForcedDisabled bool `blueprint:"mutated"` |
| 712 | |
Jeff Gaston | 088e29e | 2017-11-29 16:47:17 -0800 | [diff] [blame] | 713 | NamespaceExportedToMake bool `blueprint:"mutated"` |
Colin Cross | 6c4f21f | 2019-06-06 15:41:36 -0700 | [diff] [blame] | 714 | |
| 715 | MissingDeps []string `blueprint:"mutated"` |
Colin Cross | 9a36223 | 2019-07-01 15:32:45 -0700 | [diff] [blame] | 716 | |
| 717 | // Name and variant strings stored by mutators to enable Module.String() |
| 718 | DebugName string `blueprint:"mutated"` |
| 719 | DebugMutators []string `blueprint:"mutated"` |
| 720 | DebugVariations []string `blueprint:"mutated"` |
Colin Cross | 7228ecd | 2019-11-18 16:00:16 -0800 | [diff] [blame] | 721 | |
| 722 | // set by ImageMutator |
| 723 | ImageVariation string `blueprint:"mutated"` |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 724 | } |
| 725 | |
Paul Duffin | ed87513 | 2020-09-02 13:08:57 +0100 | [diff] [blame] | 726 | type distProperties struct { |
| 727 | // configuration to distribute output files from this module to the distribution |
| 728 | // directory (default: $OUT/dist, configurable with $DIST_DIR) |
| 729 | Dist Dist `android:"arch_variant"` |
| 730 | |
| 731 | // a list of configurations to distribute output files from this module to the |
| 732 | // distribution directory (default: $OUT/dist, configurable with $DIST_DIR) |
| 733 | Dists []Dist `android:"arch_variant"` |
| 734 | } |
| 735 | |
Jingwen Chen | 40fd90a | 2020-06-15 05:24:19 +0000 | [diff] [blame] | 736 | // A map of OutputFile tag keys to Paths, for disting purposes. |
| 737 | type TaggedDistFiles map[string]Paths |
| 738 | |
| 739 | func MakeDefaultDistFiles(paths ...Path) TaggedDistFiles { |
Jingwen Chen | 7b27ca7 | 2020-07-24 09:13:49 +0000 | [diff] [blame] | 740 | for _, path := range paths { |
| 741 | if path == nil { |
| 742 | panic("The path to a dist file cannot be nil.") |
| 743 | } |
| 744 | } |
| 745 | |
Jingwen Chen | 40fd90a | 2020-06-15 05:24:19 +0000 | [diff] [blame] | 746 | // The default OutputFile tag is the empty "" string. |
| 747 | return TaggedDistFiles{"": paths} |
| 748 | } |
| 749 | |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 750 | type hostAndDeviceProperties struct { |
Colin Cross | 4e81d70 | 2018-11-09 10:36:55 -0800 | [diff] [blame] | 751 | // If set to true, build a variant of the module for the host. Defaults to false. |
| 752 | Host_supported *bool |
| 753 | |
| 754 | // If set to true, build a variant of the module for the device. Defaults to true. |
Colin Cross | a4190c1 | 2016-07-12 13:11:25 -0700 | [diff] [blame] | 755 | Device_supported *bool |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 756 | } |
| 757 | |
Colin Cross | c472d57 | 2015-03-17 15:06:21 -0700 | [diff] [blame] | 758 | type Multilib string |
| 759 | |
| 760 | const ( |
Colin Cross | 6b4a32d | 2017-12-05 13:42:45 -0800 | [diff] [blame] | 761 | MultilibBoth Multilib = "both" |
| 762 | MultilibFirst Multilib = "first" |
| 763 | MultilibCommon Multilib = "common" |
| 764 | MultilibCommonFirst Multilib = "common_first" |
| 765 | MultilibDefault Multilib = "" |
Colin Cross | c472d57 | 2015-03-17 15:06:21 -0700 | [diff] [blame] | 766 | ) |
| 767 | |
Colin Cross | a1ad8d1 | 2016-06-01 17:09:44 -0700 | [diff] [blame] | 768 | type HostOrDeviceSupported int |
| 769 | |
| 770 | const ( |
Colin Cross | 34037c6 | 2020-11-17 13:19:17 -0800 | [diff] [blame] | 771 | hostSupported = 1 << iota |
| 772 | hostCrossSupported |
| 773 | deviceSupported |
| 774 | hostDefault |
| 775 | deviceDefault |
Dan Albert | 0981b5c | 2018-08-02 13:46:35 -0700 | [diff] [blame] | 776 | |
| 777 | // Host and HostCross are built by default. Device is not supported. |
Colin Cross | 34037c6 | 2020-11-17 13:19:17 -0800 | [diff] [blame] | 778 | HostSupported = hostSupported | hostCrossSupported | hostDefault |
Dan Albert | 0981b5c | 2018-08-02 13:46:35 -0700 | [diff] [blame] | 779 | |
| 780 | // Host is built by default. HostCross and Device are not supported. |
Colin Cross | 34037c6 | 2020-11-17 13:19:17 -0800 | [diff] [blame] | 781 | HostSupportedNoCross = hostSupported | hostDefault |
Dan Albert | 0981b5c | 2018-08-02 13:46:35 -0700 | [diff] [blame] | 782 | |
| 783 | // Device is built by default. Host and HostCross are not supported. |
Colin Cross | 34037c6 | 2020-11-17 13:19:17 -0800 | [diff] [blame] | 784 | DeviceSupported = deviceSupported | deviceDefault |
Dan Albert | 0981b5c | 2018-08-02 13:46:35 -0700 | [diff] [blame] | 785 | |
| 786 | // Device is built by default. Host and HostCross are supported. |
Colin Cross | 34037c6 | 2020-11-17 13:19:17 -0800 | [diff] [blame] | 787 | HostAndDeviceSupported = hostSupported | hostCrossSupported | deviceSupported | deviceDefault |
Dan Albert | 0981b5c | 2018-08-02 13:46:35 -0700 | [diff] [blame] | 788 | |
| 789 | // Host, HostCross, and Device are built by default. |
Colin Cross | 34037c6 | 2020-11-17 13:19:17 -0800 | [diff] [blame] | 790 | HostAndDeviceDefault = hostSupported | hostCrossSupported | hostDefault | |
| 791 | deviceSupported | deviceDefault |
Dan Albert | 0981b5c | 2018-08-02 13:46:35 -0700 | [diff] [blame] | 792 | |
| 793 | // Nothing is supported. This is not exposed to the user, but used to mark a |
| 794 | // host only module as unsupported when the module type is not supported on |
| 795 | // the host OS. E.g. benchmarks are supported on Linux but not Darwin. |
Colin Cross | 34037c6 | 2020-11-17 13:19:17 -0800 | [diff] [blame] | 796 | NeitherHostNorDeviceSupported = 0 |
Colin Cross | a1ad8d1 | 2016-06-01 17:09:44 -0700 | [diff] [blame] | 797 | ) |
| 798 | |
Jiyong Park | 2db7692 | 2017-11-08 16:03:48 +0900 | [diff] [blame] | 799 | type moduleKind int |
| 800 | |
| 801 | const ( |
| 802 | platformModule moduleKind = iota |
| 803 | deviceSpecificModule |
| 804 | socSpecificModule |
| 805 | productSpecificModule |
Justin Yun | d5f6c82 | 2019-06-25 16:47:17 +0900 | [diff] [blame] | 806 | systemExtSpecificModule |
Jiyong Park | 2db7692 | 2017-11-08 16:03:48 +0900 | [diff] [blame] | 807 | ) |
| 808 | |
| 809 | func (k moduleKind) String() string { |
| 810 | switch k { |
| 811 | case platformModule: |
| 812 | return "platform" |
| 813 | case deviceSpecificModule: |
| 814 | return "device-specific" |
| 815 | case socSpecificModule: |
| 816 | return "soc-specific" |
| 817 | case productSpecificModule: |
| 818 | return "product-specific" |
Justin Yun | d5f6c82 | 2019-06-25 16:47:17 +0900 | [diff] [blame] | 819 | case systemExtSpecificModule: |
| 820 | return "systemext-specific" |
Jiyong Park | 2db7692 | 2017-11-08 16:03:48 +0900 | [diff] [blame] | 821 | default: |
| 822 | panic(fmt.Errorf("unknown module kind %d", k)) |
| 823 | } |
| 824 | } |
| 825 | |
Colin Cross | 9d34f35 | 2019-11-22 16:03:51 -0800 | [diff] [blame] | 826 | func initAndroidModuleBase(m Module) { |
| 827 | m.base().module = m |
| 828 | } |
| 829 | |
Colin Cross | 3624285 | 2017-06-23 15:06:31 -0700 | [diff] [blame] | 830 | func InitAndroidModule(m Module) { |
Colin Cross | 9d34f35 | 2019-11-22 16:03:51 -0800 | [diff] [blame] | 831 | initAndroidModuleBase(m) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 832 | base := m.base() |
Colin Cross | 5049f02 | 2015-03-18 13:28:46 -0700 | [diff] [blame] | 833 | |
Colin Cross | 3624285 | 2017-06-23 15:06:31 -0700 | [diff] [blame] | 834 | m.AddProperties( |
Colin Cross | fc75458 | 2016-05-17 16:34:16 -0700 | [diff] [blame] | 835 | &base.nameProperties, |
Colin Cross | d976af0 | 2020-11-16 22:44:30 -0800 | [diff] [blame^] | 836 | &base.enabledProperties, |
Paul Duffin | ed87513 | 2020-09-02 13:08:57 +0100 | [diff] [blame] | 837 | &base.commonProperties, |
| 838 | &base.distProperties) |
Colin Cross | 18c4680 | 2019-09-24 22:19:02 -0700 | [diff] [blame] | 839 | |
Colin Cross | eabaedd | 2020-02-06 17:01:55 -0800 | [diff] [blame] | 840 | initProductVariableModule(m) |
Colin Cross | 18c4680 | 2019-09-24 22:19:02 -0700 | [diff] [blame] | 841 | |
Colin Cross | a3a9741 | 2019-03-18 12:24:29 -0700 | [diff] [blame] | 842 | base.generalProperties = m.GetProperties() |
Pirama Arumuga Nainar | 955dc49 | 2018-04-17 14:58:42 -0700 | [diff] [blame] | 843 | base.customizableProperties = m.GetProperties() |
Paul Duffin | 63c6e18 | 2019-07-24 14:24:38 +0100 | [diff] [blame] | 844 | |
| 845 | // The default_visibility property needs to be checked and parsed by the visibility module during |
Paul Duffin | 5ec73ec | 2020-05-01 17:52:01 +0100 | [diff] [blame] | 846 | // its checking and parsing phases so make it the primary visibility property. |
| 847 | setPrimaryVisibilityProperty(m, "visibility", &base.commonProperties.Visibility) |
Colin Cross | 5049f02 | 2015-03-18 13:28:46 -0700 | [diff] [blame] | 848 | } |
| 849 | |
Colin Cross | 3624285 | 2017-06-23 15:06:31 -0700 | [diff] [blame] | 850 | func InitAndroidArchModule(m Module, hod HostOrDeviceSupported, defaultMultilib Multilib) { |
| 851 | InitAndroidModule(m) |
Colin Cross | 5049f02 | 2015-03-18 13:28:46 -0700 | [diff] [blame] | 852 | |
| 853 | base := m.base() |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 854 | base.commonProperties.HostOrDeviceSupported = hod |
Colin Cross | 69617d3 | 2016-09-06 10:39:07 -0700 | [diff] [blame] | 855 | base.commonProperties.Default_multilib = string(defaultMultilib) |
Dan Willemsen | 0b24c74 | 2016-10-04 15:13:37 -0700 | [diff] [blame] | 856 | base.commonProperties.ArchSpecific = true |
Colin Cross | ee0bc3b | 2018-10-02 22:01:37 -0700 | [diff] [blame] | 857 | base.commonProperties.UseTargetVariants = true |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 858 | |
Colin Cross | 34037c6 | 2020-11-17 13:19:17 -0800 | [diff] [blame] | 859 | if hod&hostSupported != 0 && hod&deviceSupported != 0 { |
Colin Cross | 3624285 | 2017-06-23 15:06:31 -0700 | [diff] [blame] | 860 | m.AddProperties(&base.hostAndDeviceProperties) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 861 | } |
| 862 | |
Colin Cross | 3624285 | 2017-06-23 15:06:31 -0700 | [diff] [blame] | 863 | InitArchModule(m) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 864 | } |
| 865 | |
Colin Cross | ee0bc3b | 2018-10-02 22:01:37 -0700 | [diff] [blame] | 866 | func InitAndroidMultiTargetsArchModule(m Module, hod HostOrDeviceSupported, defaultMultilib Multilib) { |
| 867 | InitAndroidArchModule(m, hod, defaultMultilib) |
| 868 | m.base().commonProperties.UseTargetVariants = false |
| 869 | } |
| 870 | |
Paul Duffin | 1356d8c | 2020-02-25 19:26:33 +0000 | [diff] [blame] | 871 | // As InitAndroidMultiTargetsArchModule except it creates an additional CommonOS variant that |
| 872 | // has dependencies on all the OsType specific variants. |
| 873 | func InitCommonOSAndroidMultiTargetsArchModule(m Module, hod HostOrDeviceSupported, defaultMultilib Multilib) { |
| 874 | InitAndroidArchModule(m, hod, defaultMultilib) |
| 875 | m.base().commonProperties.UseTargetVariants = false |
| 876 | m.base().commonProperties.CreateCommonOSVariant = true |
| 877 | } |
| 878 | |
Nan Zhang | b9eeb1d | 2017-02-02 10:46:07 -0800 | [diff] [blame] | 879 | // A ModuleBase object contains the properties that are common to all Android |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 880 | // modules. It should be included as an anonymous field in every module |
| 881 | // struct definition. InitAndroidModule should then be called from the module's |
| 882 | // factory function, and the return values from InitAndroidModule should be |
| 883 | // returned from the factory function. |
| 884 | // |
Nan Zhang | b9eeb1d | 2017-02-02 10:46:07 -0800 | [diff] [blame] | 885 | // The ModuleBase type is responsible for implementing the GenerateBuildActions |
| 886 | // method to support the blueprint.Module interface. This method will then call |
| 887 | // the module's GenerateAndroidBuildActions method once for each build variant |
Colin Cross | 25de6c3 | 2019-06-06 14:29:25 -0700 | [diff] [blame] | 888 | // that is to be built. GenerateAndroidBuildActions is passed a ModuleContext |
| 889 | // rather than the usual blueprint.ModuleContext. |
| 890 | // ModuleContext exposes extra functionality specific to the Android build |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 891 | // system including details about the particular build variant that is to be |
| 892 | // generated. |
| 893 | // |
| 894 | // For example: |
| 895 | // |
| 896 | // import ( |
Nan Zhang | b9eeb1d | 2017-02-02 10:46:07 -0800 | [diff] [blame] | 897 | // "android/soong/android" |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 898 | // ) |
| 899 | // |
| 900 | // type myModule struct { |
Nan Zhang | b9eeb1d | 2017-02-02 10:46:07 -0800 | [diff] [blame] | 901 | // android.ModuleBase |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 902 | // properties struct { |
| 903 | // MyProperty string |
| 904 | // } |
| 905 | // } |
| 906 | // |
Colin Cross | 3624285 | 2017-06-23 15:06:31 -0700 | [diff] [blame] | 907 | // func NewMyModule() android.Module) { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 908 | // m := &myModule{} |
Colin Cross | 3624285 | 2017-06-23 15:06:31 -0700 | [diff] [blame] | 909 | // m.AddProperties(&m.properties) |
| 910 | // android.InitAndroidModule(m) |
| 911 | // return m |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 912 | // } |
| 913 | // |
Nan Zhang | b9eeb1d | 2017-02-02 10:46:07 -0800 | [diff] [blame] | 914 | // func (m *myModule) GenerateAndroidBuildActions(ctx android.ModuleContext) { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 915 | // // Get the CPU architecture for the current build variant. |
| 916 | // variantArch := ctx.Arch() |
| 917 | // |
| 918 | // // ... |
| 919 | // } |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 920 | type ModuleBase struct { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 921 | // Putting the curiously recurring thing pointing to the thing that contains |
| 922 | // the thing pattern to good use. |
Colin Cross | 3624285 | 2017-06-23 15:06:31 -0700 | [diff] [blame] | 923 | // TODO: remove this |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 924 | module Module |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 925 | |
Colin Cross | fc75458 | 2016-05-17 16:34:16 -0700 | [diff] [blame] | 926 | nameProperties nameProperties |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 927 | commonProperties commonProperties |
Paul Duffin | ed87513 | 2020-09-02 13:08:57 +0100 | [diff] [blame] | 928 | distProperties distProperties |
Colin Cross | 18c4680 | 2019-09-24 22:19:02 -0700 | [diff] [blame] | 929 | variableProperties interface{} |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 930 | hostAndDeviceProperties hostAndDeviceProperties |
| 931 | generalProperties []interface{} |
Colin Cross | c17727d | 2018-10-24 12:42:09 -0700 | [diff] [blame] | 932 | archProperties [][]interface{} |
Colin Cross | a120ec1 | 2016-08-19 16:07:38 -0700 | [diff] [blame] | 933 | customizableProperties []interface{} |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 934 | |
Colin Cross | d976af0 | 2020-11-16 22:44:30 -0800 | [diff] [blame^] | 935 | // The enabled property is special-cased so that the osMutator can skip creating variants |
| 936 | // that are disabled. |
| 937 | enabledProperties enabledProperties |
| 938 | archEnabledProperties *archPropRoot |
| 939 | |
Paul Duffin | 63c6e18 | 2019-07-24 14:24:38 +0100 | [diff] [blame] | 940 | // Information about all the properties on the module that contains visibility rules that need |
| 941 | // checking. |
| 942 | visibilityPropertyInfo []visibilityProperty |
| 943 | |
| 944 | // The primary visibility property, may be nil, that controls access to the module. |
| 945 | primaryVisibilityProperty visibilityProperty |
| 946 | |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 947 | noAddressSanitizer bool |
Colin Cross | 897266e | 2020-02-13 13:22:08 -0800 | [diff] [blame] | 948 | installFiles InstallPaths |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 949 | checkbuildFiles Paths |
Bob Badour | a75b057 | 2020-02-18 20:21:55 -0800 | [diff] [blame] | 950 | noticeFiles Paths |
Colin Cross | c3d87d3 | 2020-06-04 13:25:17 -0700 | [diff] [blame] | 951 | phonies map[string]Paths |
Colin Cross | 1f8c52b | 2015-06-16 16:38:17 -0700 | [diff] [blame] | 952 | |
| 953 | // Used by buildTargetSingleton to create checkbuild and per-directory build targets |
| 954 | // Only set on the final variant of each module |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 955 | installTarget WritablePath |
| 956 | checkbuildTarget WritablePath |
Colin Cross | 1f8c52b | 2015-06-16 16:38:17 -0700 | [diff] [blame] | 957 | blueprintDir string |
Colin Cross | a120ec1 | 2016-08-19 16:07:38 -0700 | [diff] [blame] | 958 | |
Colin Cross | 178a509 | 2016-09-13 13:42:32 -0700 | [diff] [blame] | 959 | hooks hooks |
Colin Cross | 3624285 | 2017-06-23 15:06:31 -0700 | [diff] [blame] | 960 | |
| 961 | registerProps []interface{} |
Colin Cross | cec8171 | 2017-07-13 14:43:27 -0700 | [diff] [blame] | 962 | |
| 963 | // For tests |
Colin Cross | ae88703 | 2017-10-23 17:16:14 -0700 | [diff] [blame] | 964 | buildParams []BuildParams |
Colin Cross | 4c83e5c | 2019-02-25 14:54:28 -0800 | [diff] [blame] | 965 | ruleParams map[blueprint.Rule]blueprint.RuleParams |
Jaewoong Jung | 38e4fb2 | 2018-12-12 09:01:34 -0800 | [diff] [blame] | 966 | variables map[string]string |
Colin Cross | a9d8bee | 2018-10-02 13:59:46 -0700 | [diff] [blame] | 967 | |
Inseob Kim | 8471cda | 2019-11-15 09:59:12 +0900 | [diff] [blame] | 968 | initRcPaths Paths |
| 969 | vintfFragmentsPaths Paths |
| 970 | |
Jiyong Park | 1613e55 | 2020-09-14 19:43:17 +0900 | [diff] [blame] | 971 | prefer32 func(ctx BaseModuleContext, base *ModuleBase, os OsType) bool |
Colin Cross | 3624285 | 2017-06-23 15:06:31 -0700 | [diff] [blame] | 972 | } |
| 973 | |
Paul Duffin | 44f1d84 | 2020-06-26 20:17:02 +0100 | [diff] [blame] | 974 | func (m *ModuleBase) ComponentDepsMutator(BottomUpMutatorContext) {} |
| 975 | |
Colin Cross | 4157e88 | 2019-06-06 16:57:04 -0700 | [diff] [blame] | 976 | func (m *ModuleBase) DepsMutator(BottomUpMutatorContext) {} |
Colin Cross | 5f692ec | 2019-02-01 16:53:07 -0800 | [diff] [blame] | 977 | |
Colin Cross | 4157e88 | 2019-06-06 16:57:04 -0700 | [diff] [blame] | 978 | func (m *ModuleBase) AddProperties(props ...interface{}) { |
| 979 | m.registerProps = append(m.registerProps, props...) |
Colin Cross | 3624285 | 2017-06-23 15:06:31 -0700 | [diff] [blame] | 980 | } |
| 981 | |
Colin Cross | 4157e88 | 2019-06-06 16:57:04 -0700 | [diff] [blame] | 982 | func (m *ModuleBase) GetProperties() []interface{} { |
| 983 | return m.registerProps |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 984 | } |
| 985 | |
Colin Cross | 4157e88 | 2019-06-06 16:57:04 -0700 | [diff] [blame] | 986 | func (m *ModuleBase) BuildParamsForTests() []BuildParams { |
| 987 | return m.buildParams |
Colin Cross | cec8171 | 2017-07-13 14:43:27 -0700 | [diff] [blame] | 988 | } |
| 989 | |
Colin Cross | 4157e88 | 2019-06-06 16:57:04 -0700 | [diff] [blame] | 990 | func (m *ModuleBase) RuleParamsForTests() map[blueprint.Rule]blueprint.RuleParams { |
| 991 | return m.ruleParams |
Colin Cross | 4c83e5c | 2019-02-25 14:54:28 -0800 | [diff] [blame] | 992 | } |
| 993 | |
Colin Cross | 4157e88 | 2019-06-06 16:57:04 -0700 | [diff] [blame] | 994 | func (m *ModuleBase) VariablesForTests() map[string]string { |
| 995 | return m.variables |
Jaewoong Jung | 38e4fb2 | 2018-12-12 09:01:34 -0800 | [diff] [blame] | 996 | } |
| 997 | |
Jiyong Park | 1613e55 | 2020-09-14 19:43:17 +0900 | [diff] [blame] | 998 | func (m *ModuleBase) Prefer32(prefer32 func(ctx BaseModuleContext, base *ModuleBase, os OsType) bool) { |
Colin Cross | 4157e88 | 2019-06-06 16:57:04 -0700 | [diff] [blame] | 999 | m.prefer32 = prefer32 |
Colin Cross | a9d8bee | 2018-10-02 13:59:46 -0700 | [diff] [blame] | 1000 | } |
| 1001 | |
Colin Cross | ce75d2c | 2016-10-06 16:12:58 -0700 | [diff] [blame] | 1002 | // Name returns the name of the module. It may be overridden by individual module types, for |
| 1003 | // example prebuilts will prepend prebuilt_ to the name. |
Colin Cross | 4157e88 | 2019-06-06 16:57:04 -0700 | [diff] [blame] | 1004 | func (m *ModuleBase) Name() string { |
| 1005 | return String(m.nameProperties.Name) |
Colin Cross | fc75458 | 2016-05-17 16:34:16 -0700 | [diff] [blame] | 1006 | } |
| 1007 | |
Colin Cross | 9a36223 | 2019-07-01 15:32:45 -0700 | [diff] [blame] | 1008 | // String returns a string that includes the module name and variants for printing during debugging. |
| 1009 | func (m *ModuleBase) String() string { |
| 1010 | sb := strings.Builder{} |
| 1011 | sb.WriteString(m.commonProperties.DebugName) |
| 1012 | sb.WriteString("{") |
| 1013 | for i := range m.commonProperties.DebugMutators { |
| 1014 | if i != 0 { |
| 1015 | sb.WriteString(",") |
| 1016 | } |
| 1017 | sb.WriteString(m.commonProperties.DebugMutators[i]) |
| 1018 | sb.WriteString(":") |
| 1019 | sb.WriteString(m.commonProperties.DebugVariations[i]) |
| 1020 | } |
| 1021 | sb.WriteString("}") |
| 1022 | return sb.String() |
| 1023 | } |
| 1024 | |
Colin Cross | ce75d2c | 2016-10-06 16:12:58 -0700 | [diff] [blame] | 1025 | // BaseModuleName returns the name of the module as specified in the blueprints file. |
Colin Cross | 4157e88 | 2019-06-06 16:57:04 -0700 | [diff] [blame] | 1026 | func (m *ModuleBase) BaseModuleName() string { |
| 1027 | return String(m.nameProperties.Name) |
Colin Cross | ce75d2c | 2016-10-06 16:12:58 -0700 | [diff] [blame] | 1028 | } |
| 1029 | |
Colin Cross | 4157e88 | 2019-06-06 16:57:04 -0700 | [diff] [blame] | 1030 | func (m *ModuleBase) base() *ModuleBase { |
| 1031 | return m |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1032 | } |
| 1033 | |
Paul Duffin | e2453c7 | 2019-05-31 14:00:04 +0100 | [diff] [blame] | 1034 | func (m *ModuleBase) qualifiedModuleId(ctx BaseModuleContext) qualifiedModuleName { |
| 1035 | return qualifiedModuleName{pkg: ctx.ModuleDir(), name: ctx.ModuleName()} |
| 1036 | } |
| 1037 | |
| 1038 | func (m *ModuleBase) visibilityProperties() []visibilityProperty { |
Paul Duffin | 63c6e18 | 2019-07-24 14:24:38 +0100 | [diff] [blame] | 1039 | return m.visibilityPropertyInfo |
| 1040 | } |
| 1041 | |
Jingwen Chen | 40fd90a | 2020-06-15 05:24:19 +0000 | [diff] [blame] | 1042 | func (m *ModuleBase) Dists() []Dist { |
Paul Duffin | ed87513 | 2020-09-02 13:08:57 +0100 | [diff] [blame] | 1043 | if len(m.distProperties.Dist.Targets) > 0 { |
Jingwen Chen | 40fd90a | 2020-06-15 05:24:19 +0000 | [diff] [blame] | 1044 | // Make a copy of the underlying Dists slice to protect against |
| 1045 | // backing array modifications with repeated calls to this method. |
Paul Duffin | ed87513 | 2020-09-02 13:08:57 +0100 | [diff] [blame] | 1046 | distsCopy := append([]Dist(nil), m.distProperties.Dists...) |
| 1047 | return append(distsCopy, m.distProperties.Dist) |
Jingwen Chen | 40fd90a | 2020-06-15 05:24:19 +0000 | [diff] [blame] | 1048 | } else { |
Paul Duffin | ed87513 | 2020-09-02 13:08:57 +0100 | [diff] [blame] | 1049 | return m.distProperties.Dists |
Jingwen Chen | 40fd90a | 2020-06-15 05:24:19 +0000 | [diff] [blame] | 1050 | } |
| 1051 | } |
| 1052 | |
| 1053 | func (m *ModuleBase) GenerateTaggedDistFiles(ctx BaseModuleContext) TaggedDistFiles { |
| 1054 | distFiles := make(TaggedDistFiles) |
| 1055 | for _, dist := range m.Dists() { |
| 1056 | var tag string |
| 1057 | var distFilesForTag Paths |
| 1058 | if dist.Tag == nil { |
| 1059 | tag = "" |
| 1060 | } else { |
| 1061 | tag = *dist.Tag |
| 1062 | } |
| 1063 | distFilesForTag, err := m.base().module.(OutputFileProducer).OutputFiles(tag) |
| 1064 | if err != nil { |
| 1065 | ctx.PropertyErrorf("dist.tag", "%s", err.Error()) |
| 1066 | } |
| 1067 | for _, distFile := range distFilesForTag { |
| 1068 | if distFile != nil && !distFiles[tag].containsPath(distFile) { |
| 1069 | distFiles[tag] = append(distFiles[tag], distFile) |
| 1070 | } |
| 1071 | } |
| 1072 | } |
| 1073 | |
| 1074 | return distFiles |
| 1075 | } |
| 1076 | |
Colin Cross | 4157e88 | 2019-06-06 16:57:04 -0700 | [diff] [blame] | 1077 | func (m *ModuleBase) Target() Target { |
| 1078 | return m.commonProperties.CompileTarget |
Dan Willemsen | 490fd49 | 2015-11-24 17:53:15 -0800 | [diff] [blame] | 1079 | } |
| 1080 | |
Colin Cross | 4157e88 | 2019-06-06 16:57:04 -0700 | [diff] [blame] | 1081 | func (m *ModuleBase) TargetPrimary() bool { |
| 1082 | return m.commonProperties.CompilePrimary |
Colin Cross | 8b74d17 | 2016-09-13 09:59:14 -0700 | [diff] [blame] | 1083 | } |
| 1084 | |
Colin Cross | 4157e88 | 2019-06-06 16:57:04 -0700 | [diff] [blame] | 1085 | func (m *ModuleBase) MultiTargets() []Target { |
| 1086 | return m.commonProperties.CompileMultiTargets |
Colin Cross | ee0bc3b | 2018-10-02 22:01:37 -0700 | [diff] [blame] | 1087 | } |
| 1088 | |
Colin Cross | 4157e88 | 2019-06-06 16:57:04 -0700 | [diff] [blame] | 1089 | func (m *ModuleBase) Os() OsType { |
| 1090 | return m.Target().Os |
Dan Willemsen | 490fd49 | 2015-11-24 17:53:15 -0800 | [diff] [blame] | 1091 | } |
| 1092 | |
Colin Cross | 4157e88 | 2019-06-06 16:57:04 -0700 | [diff] [blame] | 1093 | func (m *ModuleBase) Host() bool { |
Jiyong Park | 1613e55 | 2020-09-14 19:43:17 +0900 | [diff] [blame] | 1094 | return m.Os().Class == Host |
Dan Willemsen | 9775052 | 2016-02-09 17:43:51 -0800 | [diff] [blame] | 1095 | } |
| 1096 | |
Yo Chiang | bba545e | 2020-06-09 16:15:37 +0800 | [diff] [blame] | 1097 | func (m *ModuleBase) Device() bool { |
| 1098 | return m.Os().Class == Device |
| 1099 | } |
| 1100 | |
Colin Cross | 4157e88 | 2019-06-06 16:57:04 -0700 | [diff] [blame] | 1101 | func (m *ModuleBase) Arch() Arch { |
| 1102 | return m.Target().Arch |
Dan Willemsen | 9775052 | 2016-02-09 17:43:51 -0800 | [diff] [blame] | 1103 | } |
| 1104 | |
Colin Cross | 4157e88 | 2019-06-06 16:57:04 -0700 | [diff] [blame] | 1105 | func (m *ModuleBase) ArchSpecific() bool { |
| 1106 | return m.commonProperties.ArchSpecific |
Dan Willemsen | 0b24c74 | 2016-10-04 15:13:37 -0700 | [diff] [blame] | 1107 | } |
| 1108 | |
Paul Duffin | 1356d8c | 2020-02-25 19:26:33 +0000 | [diff] [blame] | 1109 | // True if the current variant is a CommonOS variant, false otherwise. |
| 1110 | func (m *ModuleBase) IsCommonOSVariant() bool { |
| 1111 | return m.commonProperties.CommonOSVariant |
| 1112 | } |
| 1113 | |
Colin Cross | 34037c6 | 2020-11-17 13:19:17 -0800 | [diff] [blame] | 1114 | // supportsTarget returns true if the given Target is supported by the current module. |
| 1115 | func (m *ModuleBase) supportsTarget(target Target) bool { |
| 1116 | switch target.Os.Class { |
| 1117 | case Host: |
| 1118 | if target.HostCross { |
| 1119 | return m.HostCrossSupported() |
| 1120 | } else { |
| 1121 | return m.HostSupported() |
Colin Cross | a1ad8d1 | 2016-06-01 17:09:44 -0700 | [diff] [blame] | 1122 | } |
Colin Cross | 34037c6 | 2020-11-17 13:19:17 -0800 | [diff] [blame] | 1123 | case Device: |
| 1124 | return m.DeviceSupported() |
Colin Cross | a1ad8d1 | 2016-06-01 17:09:44 -0700 | [diff] [blame] | 1125 | default: |
Jiyong Park | 1613e55 | 2020-09-14 19:43:17 +0900 | [diff] [blame] | 1126 | return false |
Colin Cross | a1ad8d1 | 2016-06-01 17:09:44 -0700 | [diff] [blame] | 1127 | } |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1128 | } |
| 1129 | |
Colin Cross | d976af0 | 2020-11-16 22:44:30 -0800 | [diff] [blame^] | 1130 | // osEnabled returns true if the given OS is enabled for the current module. |
| 1131 | func (m *ModuleBase) osEnabled(os OsType) bool { |
| 1132 | targetStruct := reflect.ValueOf(m.archEnabledProperties.Target) |
| 1133 | |
| 1134 | if targetStruct.Kind() != reflect.Ptr || targetStruct.Type().Elem().Kind() != reflect.Struct { |
| 1135 | panic(fmt.Errorf("expected a pointer to a struct, found %s", targetStruct.Type())) |
| 1136 | } |
| 1137 | |
| 1138 | if targetStruct.IsNil() { |
| 1139 | return !os.DefaultDisabled |
| 1140 | } |
| 1141 | |
| 1142 | osStruct := targetStruct.Elem().FieldByName(os.Field) |
| 1143 | |
| 1144 | if targetStruct.Kind() != reflect.Ptr || targetStruct.Type().Elem().Kind() != reflect.Struct { |
| 1145 | panic(fmt.Errorf("expected a pointer to a struct, found %s", targetStruct.Type())) |
| 1146 | } |
| 1147 | |
| 1148 | if osStruct.IsNil() { |
| 1149 | return !os.DefaultDisabled |
| 1150 | } |
| 1151 | |
| 1152 | enabledField := osStruct.Elem().FieldByName("Enabled") |
| 1153 | |
| 1154 | return proptools.BoolDefault(enabledField.Interface().(*bool), !os.DefaultDisabled) |
| 1155 | } |
| 1156 | |
Colin Cross | 34037c6 | 2020-11-17 13:19:17 -0800 | [diff] [blame] | 1157 | // DeviceSupported returns true if the current module is supported and enabled for device targets, |
| 1158 | // i.e. the factory method set the HostOrDeviceSupported value to include device support and |
| 1159 | // the device support is enabled by default or enabled by the device_supported property. |
Colin Cross | 4157e88 | 2019-06-06 16:57:04 -0700 | [diff] [blame] | 1160 | func (m *ModuleBase) DeviceSupported() bool { |
Colin Cross | 34037c6 | 2020-11-17 13:19:17 -0800 | [diff] [blame] | 1161 | hod := m.commonProperties.HostOrDeviceSupported |
| 1162 | // deviceEnabled is true if the device_supported property is true or the HostOrDeviceSupported |
| 1163 | // value has the deviceDefault bit set. |
| 1164 | deviceEnabled := proptools.BoolDefault(m.hostAndDeviceProperties.Device_supported, hod&deviceDefault != 0) |
| 1165 | return hod&deviceSupported != 0 && deviceEnabled |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1166 | } |
| 1167 | |
Colin Cross | 34037c6 | 2020-11-17 13:19:17 -0800 | [diff] [blame] | 1168 | // HostSupported returns true if the current module is supported and enabled for host targets, |
| 1169 | // i.e. the factory method set the HostOrDeviceSupported value to include host support and |
| 1170 | // the host support is enabled by default or enabled by the host_supported property. |
Paul Duffin | e44358f | 2019-11-26 18:04:12 +0000 | [diff] [blame] | 1171 | func (m *ModuleBase) HostSupported() bool { |
Colin Cross | 34037c6 | 2020-11-17 13:19:17 -0800 | [diff] [blame] | 1172 | hod := m.commonProperties.HostOrDeviceSupported |
| 1173 | // hostEnabled is true if the host_supported property is true or the HostOrDeviceSupported |
| 1174 | // value has the hostDefault bit set. |
| 1175 | hostEnabled := proptools.BoolDefault(m.hostAndDeviceProperties.Host_supported, hod&hostDefault != 0) |
| 1176 | return hod&hostSupported != 0 && hostEnabled |
| 1177 | } |
| 1178 | |
| 1179 | // HostCrossSupported returns true if the current module is supported and enabled for host cross |
| 1180 | // targets, i.e. the factory method set the HostOrDeviceSupported value to include host cross |
| 1181 | // support and the host cross support is enabled by default or enabled by the |
| 1182 | // host_supported property. |
| 1183 | func (m *ModuleBase) HostCrossSupported() bool { |
| 1184 | hod := m.commonProperties.HostOrDeviceSupported |
| 1185 | // hostEnabled is true if the host_supported property is true or the HostOrDeviceSupported |
| 1186 | // value has the hostDefault bit set. |
| 1187 | hostEnabled := proptools.BoolDefault(m.hostAndDeviceProperties.Host_supported, hod&hostDefault != 0) |
| 1188 | return hod&hostCrossSupported != 0 && hostEnabled |
Paul Duffin | e44358f | 2019-11-26 18:04:12 +0000 | [diff] [blame] | 1189 | } |
| 1190 | |
Colin Cross | 4157e88 | 2019-06-06 16:57:04 -0700 | [diff] [blame] | 1191 | func (m *ModuleBase) Platform() bool { |
Justin Yun | d5f6c82 | 2019-06-25 16:47:17 +0900 | [diff] [blame] | 1192 | return !m.DeviceSpecific() && !m.SocSpecific() && !m.ProductSpecific() && !m.SystemExtSpecific() |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 1193 | } |
| 1194 | |
Colin Cross | 4157e88 | 2019-06-06 16:57:04 -0700 | [diff] [blame] | 1195 | func (m *ModuleBase) DeviceSpecific() bool { |
| 1196 | return Bool(m.commonProperties.Device_specific) |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 1197 | } |
| 1198 | |
Colin Cross | 4157e88 | 2019-06-06 16:57:04 -0700 | [diff] [blame] | 1199 | func (m *ModuleBase) SocSpecific() bool { |
| 1200 | return Bool(m.commonProperties.Vendor) || Bool(m.commonProperties.Proprietary) || Bool(m.commonProperties.Soc_specific) |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 1201 | } |
| 1202 | |
Colin Cross | 4157e88 | 2019-06-06 16:57:04 -0700 | [diff] [blame] | 1203 | func (m *ModuleBase) ProductSpecific() bool { |
| 1204 | return Bool(m.commonProperties.Product_specific) |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 1205 | } |
| 1206 | |
Justin Yun | d5f6c82 | 2019-06-25 16:47:17 +0900 | [diff] [blame] | 1207 | func (m *ModuleBase) SystemExtSpecific() bool { |
| 1208 | return Bool(m.commonProperties.System_ext_specific) |
Dario Freni | fd05a74 | 2018-05-29 13:28:54 +0100 | [diff] [blame] | 1209 | } |
| 1210 | |
Colin Cross | c2d2405 | 2020-05-13 11:05:02 -0700 | [diff] [blame] | 1211 | // RequiresStableAPIs returns true if the module will be installed to a partition that may |
| 1212 | // be updated separately from the system image. |
| 1213 | func (m *ModuleBase) RequiresStableAPIs(ctx BaseModuleContext) bool { |
| 1214 | return m.SocSpecific() || m.DeviceSpecific() || |
| 1215 | (m.ProductSpecific() && ctx.Config().EnforceProductPartitionInterface()) |
| 1216 | } |
| 1217 | |
Bill Peckham | fff3f8a | 2020-03-20 18:33:20 -0700 | [diff] [blame] | 1218 | func (m *ModuleBase) PartitionTag(config DeviceConfig) string { |
| 1219 | partition := "system" |
| 1220 | if m.SocSpecific() { |
| 1221 | // A SoC-specific module could be on the vendor partition at |
| 1222 | // "vendor" or the system partition at "system/vendor". |
| 1223 | if config.VendorPath() == "vendor" { |
| 1224 | partition = "vendor" |
| 1225 | } |
| 1226 | } else if m.DeviceSpecific() { |
| 1227 | // A device-specific module could be on the odm partition at |
| 1228 | // "odm", the vendor partition at "vendor/odm", or the system |
| 1229 | // partition at "system/vendor/odm". |
| 1230 | if config.OdmPath() == "odm" { |
| 1231 | partition = "odm" |
Ramy Medhat | 944839a | 2020-03-31 22:14:52 -0400 | [diff] [blame] | 1232 | } else if strings.HasPrefix(config.OdmPath(), "vendor/") { |
Bill Peckham | fff3f8a | 2020-03-20 18:33:20 -0700 | [diff] [blame] | 1233 | partition = "vendor" |
| 1234 | } |
| 1235 | } else if m.ProductSpecific() { |
| 1236 | // A product-specific module could be on the product partition |
| 1237 | // at "product" or the system partition at "system/product". |
| 1238 | if config.ProductPath() == "product" { |
| 1239 | partition = "product" |
| 1240 | } |
| 1241 | } else if m.SystemExtSpecific() { |
| 1242 | // A system_ext-specific module could be on the system_ext |
| 1243 | // partition at "system_ext" or the system partition at |
| 1244 | // "system/system_ext". |
| 1245 | if config.SystemExtPath() == "system_ext" { |
| 1246 | partition = "system_ext" |
| 1247 | } |
| 1248 | } |
| 1249 | return partition |
| 1250 | } |
| 1251 | |
Colin Cross | 4157e88 | 2019-06-06 16:57:04 -0700 | [diff] [blame] | 1252 | func (m *ModuleBase) Enabled() bool { |
Justin Yun | 32f053b | 2020-07-31 23:07:17 +0900 | [diff] [blame] | 1253 | if m.commonProperties.ForcedDisabled { |
| 1254 | return false |
| 1255 | } |
Colin Cross | d976af0 | 2020-11-16 22:44:30 -0800 | [diff] [blame^] | 1256 | return proptools.BoolDefault(m.enabledProperties.Enabled, !m.Os().DefaultDisabled) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1257 | } |
| 1258 | |
Inseob Kim | eec88e1 | 2020-01-22 11:11:29 +0900 | [diff] [blame] | 1259 | func (m *ModuleBase) Disable() { |
Justin Yun | 32f053b | 2020-07-31 23:07:17 +0900 | [diff] [blame] | 1260 | m.commonProperties.ForcedDisabled = true |
Inseob Kim | eec88e1 | 2020-01-22 11:11:29 +0900 | [diff] [blame] | 1261 | } |
| 1262 | |
Colin Cross | 4157e88 | 2019-06-06 16:57:04 -0700 | [diff] [blame] | 1263 | func (m *ModuleBase) SkipInstall() { |
| 1264 | m.commonProperties.SkipInstall = true |
Colin Cross | ce75d2c | 2016-10-06 16:12:58 -0700 | [diff] [blame] | 1265 | } |
| 1266 | |
Ulya Trafimovich | b28cc37 | 2020-01-13 15:18:16 +0000 | [diff] [blame] | 1267 | func (m *ModuleBase) IsSkipInstall() bool { |
| 1268 | return m.commonProperties.SkipInstall == true |
| 1269 | } |
| 1270 | |
Martin Stjernholm | 9e9bb7f | 2020-08-06 22:34:42 +0100 | [diff] [blame] | 1271 | // Similar to SkipInstall, but if the AndroidMk entry would set |
| 1272 | // LOCAL_UNINSTALLABLE_MODULE then this variant may still output that entry |
| 1273 | // rather than leaving it out altogether. That happens in cases where it would |
| 1274 | // have other side effects, in particular when it adds a NOTICE file target, |
| 1275 | // which other install targets might depend on. |
| 1276 | func (m *ModuleBase) MakeUninstallable() { |
| 1277 | m.SkipInstall() |
| 1278 | } |
| 1279 | |
Liz Kammer | 5ca3a62 | 2020-08-05 15:40:41 -0700 | [diff] [blame] | 1280 | func (m *ModuleBase) ReplacedByPrebuilt() { |
| 1281 | m.commonProperties.ReplacedByPrebuilt = true |
| 1282 | m.SkipInstall() |
| 1283 | } |
| 1284 | |
| 1285 | func (m *ModuleBase) IsReplacedByPrebuilt() bool { |
| 1286 | return m.commonProperties.ReplacedByPrebuilt |
| 1287 | } |
| 1288 | |
Colin Cross | 4157e88 | 2019-06-06 16:57:04 -0700 | [diff] [blame] | 1289 | func (m *ModuleBase) ExportedToMake() bool { |
| 1290 | return m.commonProperties.NamespaceExportedToMake |
Jiyong Park | 374510b | 2018-03-19 18:23:01 +0900 | [diff] [blame] | 1291 | } |
| 1292 | |
Colin Cross | 897266e | 2020-02-13 13:22:08 -0800 | [diff] [blame] | 1293 | func (m *ModuleBase) computeInstallDeps(ctx blueprint.ModuleContext) InstallPaths { |
Colin Cross | b5ae193 | 2020-11-17 06:32:06 +0000 | [diff] [blame] | 1294 | |
Colin Cross | 897266e | 2020-02-13 13:22:08 -0800 | [diff] [blame] | 1295 | var result InstallPaths |
Colin Cross | b5ae193 | 2020-11-17 06:32:06 +0000 | [diff] [blame] | 1296 | // TODO(ccross): we need to use WalkDeps and have some way to know which dependencies require installation |
| 1297 | ctx.VisitDepsDepthFirst(func(m blueprint.Module) { |
| 1298 | if a, ok := m.(Module); ok { |
| 1299 | result = append(result, a.FilesToInstall()...) |
Colin Cross | 897266e | 2020-02-13 13:22:08 -0800 | [diff] [blame] | 1300 | } |
| 1301 | }) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1302 | |
| 1303 | return result |
| 1304 | } |
| 1305 | |
Jiyong Park | 4dc2a1a | 2020-09-28 17:46:22 +0900 | [diff] [blame] | 1306 | func (m *ModuleBase) FilesToInstall() InstallPaths { |
Colin Cross | 4157e88 | 2019-06-06 16:57:04 -0700 | [diff] [blame] | 1307 | return m.installFiles |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1308 | } |
| 1309 | |
Colin Cross | 4157e88 | 2019-06-06 16:57:04 -0700 | [diff] [blame] | 1310 | func (m *ModuleBase) NoAddressSanitizer() bool { |
| 1311 | return m.noAddressSanitizer |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1312 | } |
| 1313 | |
Colin Cross | 4157e88 | 2019-06-06 16:57:04 -0700 | [diff] [blame] | 1314 | func (m *ModuleBase) InstallInData() bool { |
Dan Willemsen | 782a2d1 | 2015-12-21 14:55:28 -0800 | [diff] [blame] | 1315 | return false |
| 1316 | } |
| 1317 | |
Jaewoong Jung | 0949f31 | 2019-09-11 10:25:18 -0700 | [diff] [blame] | 1318 | func (m *ModuleBase) InstallInTestcases() bool { |
| 1319 | return false |
| 1320 | } |
| 1321 | |
Colin Cross | 4157e88 | 2019-06-06 16:57:04 -0700 | [diff] [blame] | 1322 | func (m *ModuleBase) InstallInSanitizerDir() bool { |
Vishwath Mohan | 1dd8839 | 2017-03-29 22:00:18 -0700 | [diff] [blame] | 1323 | return false |
| 1324 | } |
| 1325 | |
Yifan Hong | 1b3348d | 2020-01-21 15:53:22 -0800 | [diff] [blame] | 1326 | func (m *ModuleBase) InstallInRamdisk() bool { |
| 1327 | return Bool(m.commonProperties.Ramdisk) |
| 1328 | } |
| 1329 | |
Yifan Hong | 60e0cfb | 2020-10-21 15:17:56 -0700 | [diff] [blame] | 1330 | func (m *ModuleBase) InstallInVendorRamdisk() bool { |
| 1331 | return Bool(m.commonProperties.Vendor_ramdisk) |
| 1332 | } |
| 1333 | |
Colin Cross | 4157e88 | 2019-06-06 16:57:04 -0700 | [diff] [blame] | 1334 | func (m *ModuleBase) InstallInRecovery() bool { |
| 1335 | return Bool(m.commonProperties.Recovery) |
Jiyong Park | f9332f1 | 2018-02-01 00:54:12 +0900 | [diff] [blame] | 1336 | } |
| 1337 | |
Colin Cross | 90ba5f4 | 2019-10-02 11:10:58 -0700 | [diff] [blame] | 1338 | func (m *ModuleBase) InstallInRoot() bool { |
| 1339 | return false |
| 1340 | } |
| 1341 | |
Colin Cross | 607d858 | 2019-07-29 16:44:46 -0700 | [diff] [blame] | 1342 | func (m *ModuleBase) InstallBypassMake() bool { |
| 1343 | return false |
| 1344 | } |
| 1345 | |
Jiyong Park | 87788b5 | 2020-09-01 12:37:45 +0900 | [diff] [blame] | 1346 | func (m *ModuleBase) InstallForceOS() (*OsType, *ArchType) { |
| 1347 | return nil, nil |
Colin Cross | 6e35940 | 2020-02-10 15:29:54 -0800 | [diff] [blame] | 1348 | } |
| 1349 | |
Colin Cross | 4157e88 | 2019-06-06 16:57:04 -0700 | [diff] [blame] | 1350 | func (m *ModuleBase) Owner() string { |
| 1351 | return String(m.commonProperties.Owner) |
Sundong Ahn | 4fd04bb | 2018-08-31 18:01:37 +0900 | [diff] [blame] | 1352 | } |
| 1353 | |
Bob Badour | a75b057 | 2020-02-18 20:21:55 -0800 | [diff] [blame] | 1354 | func (m *ModuleBase) NoticeFiles() Paths { |
| 1355 | return m.noticeFiles |
Jiyong Park | 52818fc | 2019-03-18 12:01:38 +0900 | [diff] [blame] | 1356 | } |
| 1357 | |
Colin Cross | 7228ecd | 2019-11-18 16:00:16 -0800 | [diff] [blame] | 1358 | func (m *ModuleBase) setImageVariation(variant string) { |
| 1359 | m.commonProperties.ImageVariation = variant |
| 1360 | } |
| 1361 | |
| 1362 | func (m *ModuleBase) ImageVariation() blueprint.Variation { |
| 1363 | return blueprint.Variation{ |
| 1364 | Mutator: "image", |
| 1365 | Variation: m.base().commonProperties.ImageVariation, |
| 1366 | } |
| 1367 | } |
| 1368 | |
Paul Duffin | 9b76c0b | 2020-03-12 10:24:35 +0000 | [diff] [blame] | 1369 | func (m *ModuleBase) getVariationByMutatorName(mutator string) string { |
| 1370 | for i, v := range m.commonProperties.DebugMutators { |
| 1371 | if v == mutator { |
| 1372 | return m.commonProperties.DebugVariations[i] |
| 1373 | } |
| 1374 | } |
| 1375 | |
| 1376 | return "" |
| 1377 | } |
| 1378 | |
Yifan Hong | 1b3348d | 2020-01-21 15:53:22 -0800 | [diff] [blame] | 1379 | func (m *ModuleBase) InRamdisk() bool { |
| 1380 | return m.base().commonProperties.ImageVariation == RamdiskVariation |
| 1381 | } |
| 1382 | |
Yifan Hong | 60e0cfb | 2020-10-21 15:17:56 -0700 | [diff] [blame] | 1383 | func (m *ModuleBase) InVendorRamdisk() bool { |
| 1384 | return m.base().commonProperties.ImageVariation == VendorRamdiskVariation |
| 1385 | } |
| 1386 | |
Colin Cross | 7228ecd | 2019-11-18 16:00:16 -0800 | [diff] [blame] | 1387 | func (m *ModuleBase) InRecovery() bool { |
| 1388 | return m.base().commonProperties.ImageVariation == RecoveryVariation |
| 1389 | } |
| 1390 | |
Jiyong Park | 6a8cf5f | 2019-12-30 16:31:09 +0900 | [diff] [blame] | 1391 | func (m *ModuleBase) RequiredModuleNames() []string { |
| 1392 | return m.base().commonProperties.Required |
| 1393 | } |
| 1394 | |
| 1395 | func (m *ModuleBase) HostRequiredModuleNames() []string { |
| 1396 | return m.base().commonProperties.Host_required |
| 1397 | } |
| 1398 | |
| 1399 | func (m *ModuleBase) TargetRequiredModuleNames() []string { |
| 1400 | return m.base().commonProperties.Target_required |
| 1401 | } |
| 1402 | |
Inseob Kim | 8471cda | 2019-11-15 09:59:12 +0900 | [diff] [blame] | 1403 | func (m *ModuleBase) InitRc() Paths { |
| 1404 | return append(Paths{}, m.initRcPaths...) |
| 1405 | } |
| 1406 | |
| 1407 | func (m *ModuleBase) VintfFragments() Paths { |
| 1408 | return append(Paths{}, m.vintfFragmentsPaths...) |
| 1409 | } |
| 1410 | |
Colin Cross | 4157e88 | 2019-06-06 16:57:04 -0700 | [diff] [blame] | 1411 | func (m *ModuleBase) generateModuleTarget(ctx ModuleContext) { |
Colin Cross | 897266e | 2020-02-13 13:22:08 -0800 | [diff] [blame] | 1412 | var allInstalledFiles InstallPaths |
| 1413 | var allCheckbuildFiles Paths |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 1414 | ctx.VisitAllModuleVariants(func(module Module) { |
| 1415 | a := module.base() |
Colin Cross | c940435 | 2015-03-26 16:10:12 -0700 | [diff] [blame] | 1416 | allInstalledFiles = append(allInstalledFiles, a.installFiles...) |
| 1417 | allCheckbuildFiles = append(allCheckbuildFiles, a.checkbuildFiles...) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1418 | }) |
| 1419 | |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 1420 | var deps Paths |
Colin Cross | 9454bfa | 2015-03-17 13:24:18 -0700 | [diff] [blame] | 1421 | |
Colin Cross | 133ebef | 2020-08-14 17:38:45 -0700 | [diff] [blame] | 1422 | namespacePrefix := ctx.Namespace().id |
Jeff Gaston | 088e29e | 2017-11-29 16:47:17 -0800 | [diff] [blame] | 1423 | if namespacePrefix != "" { |
| 1424 | namespacePrefix = namespacePrefix + "-" |
| 1425 | } |
| 1426 | |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1427 | if len(allInstalledFiles) > 0 { |
Colin Cross | c3d87d3 | 2020-06-04 13:25:17 -0700 | [diff] [blame] | 1428 | name := namespacePrefix + ctx.ModuleName() + "-install" |
| 1429 | ctx.Phony(name, allInstalledFiles.Paths()...) |
| 1430 | m.installTarget = PathForPhony(ctx, name) |
| 1431 | deps = append(deps, m.installTarget) |
Colin Cross | 9454bfa | 2015-03-17 13:24:18 -0700 | [diff] [blame] | 1432 | } |
| 1433 | |
| 1434 | if len(allCheckbuildFiles) > 0 { |
Colin Cross | c3d87d3 | 2020-06-04 13:25:17 -0700 | [diff] [blame] | 1435 | name := namespacePrefix + ctx.ModuleName() + "-checkbuild" |
| 1436 | ctx.Phony(name, allCheckbuildFiles...) |
| 1437 | m.checkbuildTarget = PathForPhony(ctx, name) |
| 1438 | deps = append(deps, m.checkbuildTarget) |
Colin Cross | 9454bfa | 2015-03-17 13:24:18 -0700 | [diff] [blame] | 1439 | } |
| 1440 | |
| 1441 | if len(deps) > 0 { |
Dan Willemsen | 5ba07e8 | 2015-12-11 13:51:06 -0800 | [diff] [blame] | 1442 | suffix := "" |
Colin Cross | aabf679 | 2017-11-29 00:27:14 -0800 | [diff] [blame] | 1443 | if ctx.Config().EmbeddedInMake() { |
Dan Willemsen | 5ba07e8 | 2015-12-11 13:51:06 -0800 | [diff] [blame] | 1444 | suffix = "-soong" |
| 1445 | } |
| 1446 | |
Colin Cross | c3d87d3 | 2020-06-04 13:25:17 -0700 | [diff] [blame] | 1447 | ctx.Phony(namespacePrefix+ctx.ModuleName()+suffix, deps...) |
Colin Cross | 1f8c52b | 2015-06-16 16:38:17 -0700 | [diff] [blame] | 1448 | |
Colin Cross | 4157e88 | 2019-06-06 16:57:04 -0700 | [diff] [blame] | 1449 | m.blueprintDir = ctx.ModuleDir() |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1450 | } |
| 1451 | } |
| 1452 | |
Colin Cross | c34d232 | 2020-01-03 15:23:27 -0800 | [diff] [blame] | 1453 | func determineModuleKind(m *ModuleBase, ctx blueprint.EarlyModuleContext) moduleKind { |
Colin Cross | 4157e88 | 2019-06-06 16:57:04 -0700 | [diff] [blame] | 1454 | var socSpecific = Bool(m.commonProperties.Vendor) || Bool(m.commonProperties.Proprietary) || Bool(m.commonProperties.Soc_specific) |
| 1455 | var deviceSpecific = Bool(m.commonProperties.Device_specific) |
| 1456 | var productSpecific = Bool(m.commonProperties.Product_specific) |
Justin Yun | d5f6c82 | 2019-06-25 16:47:17 +0900 | [diff] [blame] | 1457 | var systemExtSpecific = Bool(m.commonProperties.System_ext_specific) |
Jiyong Park | 2db7692 | 2017-11-08 16:03:48 +0900 | [diff] [blame] | 1458 | |
Dario Freni | fd05a74 | 2018-05-29 13:28:54 +0100 | [diff] [blame] | 1459 | msg := "conflicting value set here" |
| 1460 | if socSpecific && deviceSpecific { |
| 1461 | ctx.PropertyErrorf("device_specific", "a module cannot be specific to SoC and device at the same time.") |
Colin Cross | 4157e88 | 2019-06-06 16:57:04 -0700 | [diff] [blame] | 1462 | if Bool(m.commonProperties.Vendor) { |
Jiyong Park | 2db7692 | 2017-11-08 16:03:48 +0900 | [diff] [blame] | 1463 | ctx.PropertyErrorf("vendor", msg) |
| 1464 | } |
Colin Cross | 4157e88 | 2019-06-06 16:57:04 -0700 | [diff] [blame] | 1465 | if Bool(m.commonProperties.Proprietary) { |
Jiyong Park | 2db7692 | 2017-11-08 16:03:48 +0900 | [diff] [blame] | 1466 | ctx.PropertyErrorf("proprietary", msg) |
| 1467 | } |
Colin Cross | 4157e88 | 2019-06-06 16:57:04 -0700 | [diff] [blame] | 1468 | if Bool(m.commonProperties.Soc_specific) { |
Jiyong Park | 2db7692 | 2017-11-08 16:03:48 +0900 | [diff] [blame] | 1469 | ctx.PropertyErrorf("soc_specific", msg) |
| 1470 | } |
| 1471 | } |
| 1472 | |
Justin Yun | d5f6c82 | 2019-06-25 16:47:17 +0900 | [diff] [blame] | 1473 | if productSpecific && systemExtSpecific { |
| 1474 | ctx.PropertyErrorf("product_specific", "a module cannot be specific to product and system_ext at the same time.") |
| 1475 | ctx.PropertyErrorf("system_ext_specific", msg) |
Dario Freni | fd05a74 | 2018-05-29 13:28:54 +0100 | [diff] [blame] | 1476 | } |
| 1477 | |
Justin Yun | d5f6c82 | 2019-06-25 16:47:17 +0900 | [diff] [blame] | 1478 | if (socSpecific || deviceSpecific) && (productSpecific || systemExtSpecific) { |
Dario Freni | fd05a74 | 2018-05-29 13:28:54 +0100 | [diff] [blame] | 1479 | if productSpecific { |
| 1480 | ctx.PropertyErrorf("product_specific", "a module cannot be specific to SoC or device and product at the same time.") |
| 1481 | } else { |
Justin Yun | d5f6c82 | 2019-06-25 16:47:17 +0900 | [diff] [blame] | 1482 | ctx.PropertyErrorf("system_ext_specific", "a module cannot be specific to SoC or device and system_ext at the same time.") |
Dario Freni | fd05a74 | 2018-05-29 13:28:54 +0100 | [diff] [blame] | 1483 | } |
| 1484 | if deviceSpecific { |
| 1485 | ctx.PropertyErrorf("device_specific", msg) |
| 1486 | } else { |
Colin Cross | 4157e88 | 2019-06-06 16:57:04 -0700 | [diff] [blame] | 1487 | if Bool(m.commonProperties.Vendor) { |
Dario Freni | fd05a74 | 2018-05-29 13:28:54 +0100 | [diff] [blame] | 1488 | ctx.PropertyErrorf("vendor", msg) |
| 1489 | } |
Colin Cross | 4157e88 | 2019-06-06 16:57:04 -0700 | [diff] [blame] | 1490 | if Bool(m.commonProperties.Proprietary) { |
Dario Freni | fd05a74 | 2018-05-29 13:28:54 +0100 | [diff] [blame] | 1491 | ctx.PropertyErrorf("proprietary", msg) |
| 1492 | } |
Colin Cross | 4157e88 | 2019-06-06 16:57:04 -0700 | [diff] [blame] | 1493 | if Bool(m.commonProperties.Soc_specific) { |
Dario Freni | fd05a74 | 2018-05-29 13:28:54 +0100 | [diff] [blame] | 1494 | ctx.PropertyErrorf("soc_specific", msg) |
| 1495 | } |
| 1496 | } |
| 1497 | } |
| 1498 | |
Jiyong Park | 2db7692 | 2017-11-08 16:03:48 +0900 | [diff] [blame] | 1499 | if productSpecific { |
| 1500 | return productSpecificModule |
Justin Yun | d5f6c82 | 2019-06-25 16:47:17 +0900 | [diff] [blame] | 1501 | } else if systemExtSpecific { |
| 1502 | return systemExtSpecificModule |
Jiyong Park | 2db7692 | 2017-11-08 16:03:48 +0900 | [diff] [blame] | 1503 | } else if deviceSpecific { |
| 1504 | return deviceSpecificModule |
| 1505 | } else if socSpecific { |
| 1506 | return socSpecificModule |
| 1507 | } else { |
| 1508 | return platformModule |
| 1509 | } |
| 1510 | } |
| 1511 | |
Colin Cross | c34d232 | 2020-01-03 15:23:27 -0800 | [diff] [blame] | 1512 | func (m *ModuleBase) earlyModuleContextFactory(ctx blueprint.EarlyModuleContext) earlyModuleContext { |
Colin Cross | 1184b64 | 2019-12-30 18:43:07 -0800 | [diff] [blame] | 1513 | return earlyModuleContext{ |
Colin Cross | c34d232 | 2020-01-03 15:23:27 -0800 | [diff] [blame] | 1514 | EarlyModuleContext: ctx, |
| 1515 | kind: determineModuleKind(m, ctx), |
| 1516 | config: ctx.Config().(Config), |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1517 | } |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1518 | } |
| 1519 | |
Colin Cross | 1184b64 | 2019-12-30 18:43:07 -0800 | [diff] [blame] | 1520 | func (m *ModuleBase) baseModuleContextFactory(ctx blueprint.BaseModuleContext) baseModuleContext { |
| 1521 | return baseModuleContext{ |
| 1522 | bp: ctx, |
| 1523 | earlyModuleContext: m.earlyModuleContextFactory(ctx), |
| 1524 | os: m.commonProperties.CompileOS, |
| 1525 | target: m.commonProperties.CompileTarget, |
| 1526 | targetPrimary: m.commonProperties.CompilePrimary, |
| 1527 | multiTargets: m.commonProperties.CompileMultiTargets, |
| 1528 | } |
| 1529 | } |
| 1530 | |
Colin Cross | 4157e88 | 2019-06-06 16:57:04 -0700 | [diff] [blame] | 1531 | func (m *ModuleBase) GenerateBuildActions(blueprintCtx blueprint.ModuleContext) { |
Colin Cross | 25de6c3 | 2019-06-06 14:29:25 -0700 | [diff] [blame] | 1532 | ctx := &moduleContext{ |
Colin Cross | 0ea8ba8 | 2019-06-06 14:33:29 -0700 | [diff] [blame] | 1533 | module: m.module, |
Colin Cross | dc35e21 | 2019-06-06 16:13:11 -0700 | [diff] [blame] | 1534 | bp: blueprintCtx, |
Colin Cross | 0ea8ba8 | 2019-06-06 14:33:29 -0700 | [diff] [blame] | 1535 | baseModuleContext: m.baseModuleContextFactory(blueprintCtx), |
| 1536 | installDeps: m.computeInstallDeps(blueprintCtx), |
| 1537 | installFiles: m.installFiles, |
Colin Cross | 0ea8ba8 | 2019-06-06 14:33:29 -0700 | [diff] [blame] | 1538 | variables: make(map[string]string), |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1539 | } |
| 1540 | |
Colin Cross | 6c4f21f | 2019-06-06 15:41:36 -0700 | [diff] [blame] | 1541 | // Temporarily continue to call blueprintCtx.GetMissingDependencies() to maintain the previous behavior of never |
| 1542 | // reporting missing dependency errors in Blueprint when AllowMissingDependencies == true. |
| 1543 | // TODO: This will be removed once defaults modules handle missing dependency errors |
| 1544 | blueprintCtx.GetMissingDependencies() |
| 1545 | |
Colin Cross | dc35e21 | 2019-06-06 16:13:11 -0700 | [diff] [blame] | 1546 | // For the final GenerateAndroidBuildActions pass, require that all visited dependencies Soong modules and |
Paul Duffin | 1356d8c | 2020-02-25 19:26:33 +0000 | [diff] [blame] | 1547 | // are enabled. Unless the module is a CommonOS variant which may have dependencies on disabled variants |
| 1548 | // (because the dependencies are added before the modules are disabled). The |
| 1549 | // GetOsSpecificVariantsOfCommonOSVariant(...) method will ensure that the disabled variants are |
| 1550 | // ignored. |
| 1551 | ctx.baseModuleContext.strictVisitDeps = !m.IsCommonOSVariant() |
Colin Cross | dc35e21 | 2019-06-06 16:13:11 -0700 | [diff] [blame] | 1552 | |
Colin Cross | 4c83e5c | 2019-02-25 14:54:28 -0800 | [diff] [blame] | 1553 | if ctx.config.captureBuild { |
| 1554 | ctx.ruleParams = make(map[blueprint.Rule]blueprint.RuleParams) |
| 1555 | } |
| 1556 | |
Colin Cross | 67a5c13 | 2017-05-09 13:45:28 -0700 | [diff] [blame] | 1557 | desc := "//" + ctx.ModuleDir() + ":" + ctx.ModuleName() + " " |
| 1558 | var suffix []string |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 1559 | if ctx.Os().Class != Device && ctx.Os().Class != Generic { |
| 1560 | suffix = append(suffix, ctx.Os().String()) |
Colin Cross | 67a5c13 | 2017-05-09 13:45:28 -0700 | [diff] [blame] | 1561 | } |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 1562 | if !ctx.PrimaryArch() { |
| 1563 | suffix = append(suffix, ctx.Arch().ArchType.String()) |
Colin Cross | 67a5c13 | 2017-05-09 13:45:28 -0700 | [diff] [blame] | 1564 | } |
Colin Cross | 56a8321 | 2020-09-15 18:30:11 -0700 | [diff] [blame] | 1565 | if apexInfo := ctx.Provider(ApexInfoProvider).(ApexInfo); !apexInfo.IsForPlatform() { |
| 1566 | suffix = append(suffix, apexInfo.ApexVariationName) |
Dan Willemsen | b13a948 | 2020-02-14 11:25:54 -0800 | [diff] [blame] | 1567 | } |
Colin Cross | 67a5c13 | 2017-05-09 13:45:28 -0700 | [diff] [blame] | 1568 | |
| 1569 | ctx.Variable(pctx, "moduleDesc", desc) |
| 1570 | |
| 1571 | s := "" |
| 1572 | if len(suffix) > 0 { |
| 1573 | s = " [" + strings.Join(suffix, " ") + "]" |
| 1574 | } |
| 1575 | ctx.Variable(pctx, "moduleDescSuffix", s) |
| 1576 | |
Dan Willemsen | 569edc5 | 2018-11-19 09:33:29 -0800 | [diff] [blame] | 1577 | // Some common property checks for properties that will be used later in androidmk.go |
Paul Duffin | ed87513 | 2020-09-02 13:08:57 +0100 | [diff] [blame] | 1578 | if m.distProperties.Dist.Dest != nil { |
| 1579 | _, err := validateSafePath(*m.distProperties.Dist.Dest) |
Dan Willemsen | 569edc5 | 2018-11-19 09:33:29 -0800 | [diff] [blame] | 1580 | if err != nil { |
| 1581 | ctx.PropertyErrorf("dist.dest", "%s", err.Error()) |
| 1582 | } |
| 1583 | } |
Paul Duffin | ed87513 | 2020-09-02 13:08:57 +0100 | [diff] [blame] | 1584 | if m.distProperties.Dist.Dir != nil { |
| 1585 | _, err := validateSafePath(*m.distProperties.Dist.Dir) |
Dan Willemsen | 569edc5 | 2018-11-19 09:33:29 -0800 | [diff] [blame] | 1586 | if err != nil { |
| 1587 | ctx.PropertyErrorf("dist.dir", "%s", err.Error()) |
| 1588 | } |
| 1589 | } |
Paul Duffin | ed87513 | 2020-09-02 13:08:57 +0100 | [diff] [blame] | 1590 | if m.distProperties.Dist.Suffix != nil { |
| 1591 | if strings.Contains(*m.distProperties.Dist.Suffix, "/") { |
Dan Willemsen | 569edc5 | 2018-11-19 09:33:29 -0800 | [diff] [blame] | 1592 | ctx.PropertyErrorf("dist.suffix", "Suffix may not contain a '/' character.") |
| 1593 | } |
| 1594 | } |
| 1595 | |
Colin Cross | 4157e88 | 2019-06-06 16:57:04 -0700 | [diff] [blame] | 1596 | if m.Enabled() { |
Jooyung Han | d48f3c3 | 2019-08-23 11:18:57 +0900 | [diff] [blame] | 1597 | // ensure all direct android.Module deps are enabled |
| 1598 | ctx.VisitDirectDepsBlueprint(func(bm blueprint.Module) { |
| 1599 | if _, ok := bm.(Module); ok { |
| 1600 | ctx.validateAndroidModule(bm, ctx.baseModuleContext.strictVisitDeps) |
| 1601 | } |
| 1602 | }) |
| 1603 | |
Bob Badour | a75b057 | 2020-02-18 20:21:55 -0800 | [diff] [blame] | 1604 | m.noticeFiles = make([]Path, 0) |
| 1605 | optPath := OptionalPath{} |
| 1606 | notice := proptools.StringDefault(m.commonProperties.Notice, "") |
Colin Cross | 4157e88 | 2019-06-06 16:57:04 -0700 | [diff] [blame] | 1607 | if module := SrcIsModule(notice); module != "" { |
Bob Badour | a75b057 | 2020-02-18 20:21:55 -0800 | [diff] [blame] | 1608 | optPath = ctx.ExpandOptionalSource(¬ice, "notice") |
| 1609 | } else if notice != "" { |
Jiyong Park | 52818fc | 2019-03-18 12:01:38 +0900 | [diff] [blame] | 1610 | noticePath := filepath.Join(ctx.ModuleDir(), notice) |
Bob Badour | a75b057 | 2020-02-18 20:21:55 -0800 | [diff] [blame] | 1611 | optPath = ExistentPathForSource(ctx, noticePath) |
| 1612 | } |
| 1613 | if optPath.Valid() { |
| 1614 | m.noticeFiles = append(m.noticeFiles, optPath.Path()) |
| 1615 | } else { |
| 1616 | for _, notice = range []string{"LICENSE", "LICENCE", "NOTICE"} { |
| 1617 | noticePath := filepath.Join(ctx.ModuleDir(), notice) |
| 1618 | optPath = ExistentPathForSource(ctx, noticePath) |
| 1619 | if optPath.Valid() { |
| 1620 | m.noticeFiles = append(m.noticeFiles, optPath.Path()) |
| 1621 | } |
| 1622 | } |
Jaewoong Jung | 62707f7 | 2018-11-16 13:26:43 -0800 | [diff] [blame] | 1623 | } |
Jaewoong Jung | 5b425e2 | 2019-06-17 17:40:56 -0700 | [diff] [blame] | 1624 | |
| 1625 | m.module.GenerateAndroidBuildActions(ctx) |
| 1626 | if ctx.Failed() { |
| 1627 | return |
| 1628 | } |
| 1629 | |
| 1630 | m.installFiles = append(m.installFiles, ctx.installFiles...) |
| 1631 | m.checkbuildFiles = append(m.checkbuildFiles, ctx.checkbuildFiles...) |
Inseob Kim | 8471cda | 2019-11-15 09:59:12 +0900 | [diff] [blame] | 1632 | m.initRcPaths = PathsForModuleSrc(ctx, m.commonProperties.Init_rc) |
| 1633 | m.vintfFragmentsPaths = PathsForModuleSrc(ctx, m.commonProperties.Vintf_fragments) |
Colin Cross | c3d87d3 | 2020-06-04 13:25:17 -0700 | [diff] [blame] | 1634 | for k, v := range ctx.phonies { |
| 1635 | m.phonies[k] = append(m.phonies[k], v...) |
| 1636 | } |
Colin Cross | dc35e21 | 2019-06-06 16:13:11 -0700 | [diff] [blame] | 1637 | } else if ctx.Config().AllowMissingDependencies() { |
| 1638 | // If the module is not enabled it will not create any build rules, nothing will call |
| 1639 | // ctx.GetMissingDependencies(), and blueprint will consider the missing dependencies to be unhandled |
| 1640 | // and report them as an error even when AllowMissingDependencies = true. Call |
| 1641 | // ctx.GetMissingDependencies() here to tell blueprint not to handle them. |
| 1642 | ctx.GetMissingDependencies() |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1643 | } |
| 1644 | |
Colin Cross | 4157e88 | 2019-06-06 16:57:04 -0700 | [diff] [blame] | 1645 | if m == ctx.FinalModule().(Module).base() { |
| 1646 | m.generateModuleTarget(ctx) |
Colin Cross | 9b1d13d | 2016-09-19 15:18:11 -0700 | [diff] [blame] | 1647 | if ctx.Failed() { |
| 1648 | return |
| 1649 | } |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1650 | } |
Colin Cross | cec8171 | 2017-07-13 14:43:27 -0700 | [diff] [blame] | 1651 | |
Colin Cross | 4157e88 | 2019-06-06 16:57:04 -0700 | [diff] [blame] | 1652 | m.buildParams = ctx.buildParams |
| 1653 | m.ruleParams = ctx.ruleParams |
| 1654 | m.variables = ctx.variables |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1655 | } |
| 1656 | |
Colin Cross | 1184b64 | 2019-12-30 18:43:07 -0800 | [diff] [blame] | 1657 | type earlyModuleContext struct { |
Colin Cross | c34d232 | 2020-01-03 15:23:27 -0800 | [diff] [blame] | 1658 | blueprint.EarlyModuleContext |
Colin Cross | 1184b64 | 2019-12-30 18:43:07 -0800 | [diff] [blame] | 1659 | |
| 1660 | kind moduleKind |
| 1661 | config Config |
| 1662 | } |
| 1663 | |
| 1664 | func (e *earlyModuleContext) Glob(globPattern string, excludes []string) Paths { |
| 1665 | ret, err := e.GlobWithDeps(globPattern, excludes) |
| 1666 | if err != nil { |
| 1667 | e.ModuleErrorf("glob: %s", err.Error()) |
| 1668 | } |
| 1669 | return pathsForModuleSrcFromFullPath(e, ret, true) |
| 1670 | } |
| 1671 | |
| 1672 | func (e *earlyModuleContext) GlobFiles(globPattern string, excludes []string) Paths { |
| 1673 | ret, err := e.GlobWithDeps(globPattern, excludes) |
| 1674 | if err != nil { |
| 1675 | e.ModuleErrorf("glob: %s", err.Error()) |
| 1676 | } |
| 1677 | return pathsForModuleSrcFromFullPath(e, ret, false) |
| 1678 | } |
| 1679 | |
Colin Cross | 988414c | 2020-01-11 01:11:46 +0000 | [diff] [blame] | 1680 | func (b *earlyModuleContext) IsSymlink(path Path) bool { |
| 1681 | fileInfo, err := b.config.fs.Lstat(path.String()) |
| 1682 | if err != nil { |
| 1683 | b.ModuleErrorf("os.Lstat(%q) failed: %s", path.String(), err) |
| 1684 | } |
| 1685 | return fileInfo.Mode()&os.ModeSymlink == os.ModeSymlink |
| 1686 | } |
| 1687 | |
| 1688 | func (b *earlyModuleContext) Readlink(path Path) string { |
| 1689 | dest, err := b.config.fs.Readlink(path.String()) |
| 1690 | if err != nil { |
| 1691 | b.ModuleErrorf("os.Readlink(%q) failed: %s", path.String(), err) |
| 1692 | } |
| 1693 | return dest |
| 1694 | } |
| 1695 | |
Colin Cross | 1184b64 | 2019-12-30 18:43:07 -0800 | [diff] [blame] | 1696 | func (e *earlyModuleContext) Module() Module { |
Colin Cross | c34d232 | 2020-01-03 15:23:27 -0800 | [diff] [blame] | 1697 | module, _ := e.EarlyModuleContext.Module().(Module) |
Colin Cross | 1184b64 | 2019-12-30 18:43:07 -0800 | [diff] [blame] | 1698 | return module |
| 1699 | } |
| 1700 | |
| 1701 | func (e *earlyModuleContext) Config() Config { |
Colin Cross | c34d232 | 2020-01-03 15:23:27 -0800 | [diff] [blame] | 1702 | return e.EarlyModuleContext.Config().(Config) |
Colin Cross | 1184b64 | 2019-12-30 18:43:07 -0800 | [diff] [blame] | 1703 | } |
| 1704 | |
| 1705 | func (e *earlyModuleContext) AConfig() Config { |
| 1706 | return e.config |
| 1707 | } |
| 1708 | |
| 1709 | func (e *earlyModuleContext) DeviceConfig() DeviceConfig { |
| 1710 | return DeviceConfig{e.config.deviceConfig} |
| 1711 | } |
| 1712 | |
| 1713 | func (e *earlyModuleContext) Platform() bool { |
| 1714 | return e.kind == platformModule |
| 1715 | } |
| 1716 | |
| 1717 | func (e *earlyModuleContext) DeviceSpecific() bool { |
| 1718 | return e.kind == deviceSpecificModule |
| 1719 | } |
| 1720 | |
| 1721 | func (e *earlyModuleContext) SocSpecific() bool { |
| 1722 | return e.kind == socSpecificModule |
| 1723 | } |
| 1724 | |
| 1725 | func (e *earlyModuleContext) ProductSpecific() bool { |
| 1726 | return e.kind == productSpecificModule |
| 1727 | } |
| 1728 | |
| 1729 | func (e *earlyModuleContext) SystemExtSpecific() bool { |
| 1730 | return e.kind == systemExtSpecificModule |
| 1731 | } |
| 1732 | |
Colin Cross | 133ebef | 2020-08-14 17:38:45 -0700 | [diff] [blame] | 1733 | func (e *earlyModuleContext) Namespace() *Namespace { |
| 1734 | return e.EarlyModuleContext.Namespace().(*Namespace) |
| 1735 | } |
| 1736 | |
Colin Cross | 1184b64 | 2019-12-30 18:43:07 -0800 | [diff] [blame] | 1737 | type baseModuleContext struct { |
| 1738 | bp blueprint.BaseModuleContext |
| 1739 | earlyModuleContext |
Colin Cross | fb0c16e | 2019-11-20 17:12:35 -0800 | [diff] [blame] | 1740 | os OsType |
Colin Cross | 8b74d17 | 2016-09-13 09:59:14 -0700 | [diff] [blame] | 1741 | target Target |
Colin Cross | ee0bc3b | 2018-10-02 22:01:37 -0700 | [diff] [blame] | 1742 | multiTargets []Target |
Colin Cross | 8b74d17 | 2016-09-13 09:59:14 -0700 | [diff] [blame] | 1743 | targetPrimary bool |
| 1744 | debug bool |
Colin Cross | dc35e21 | 2019-06-06 16:13:11 -0700 | [diff] [blame] | 1745 | |
| 1746 | walkPath []Module |
Paul Duffin | c519244 | 2020-03-31 11:31:36 +0100 | [diff] [blame] | 1747 | tagPath []blueprint.DependencyTag |
Colin Cross | dc35e21 | 2019-06-06 16:13:11 -0700 | [diff] [blame] | 1748 | |
| 1749 | strictVisitDeps bool // If true, enforce that all dependencies are enabled |
Colin Cross | f6566ed | 2015-03-24 11:13:38 -0700 | [diff] [blame] | 1750 | } |
| 1751 | |
Paul Duffin | ca7f0ef | 2020-02-25 15:50:49 +0000 | [diff] [blame] | 1752 | func (b *baseModuleContext) OtherModuleName(m blueprint.Module) string { |
| 1753 | return b.bp.OtherModuleName(m) |
| 1754 | } |
| 1755 | func (b *baseModuleContext) OtherModuleDir(m blueprint.Module) string { return b.bp.OtherModuleDir(m) } |
Colin Cross | 1184b64 | 2019-12-30 18:43:07 -0800 | [diff] [blame] | 1756 | func (b *baseModuleContext) OtherModuleErrorf(m blueprint.Module, fmt string, args ...interface{}) { |
Jooyung Han | cd87c69 | 2020-02-26 02:05:18 +0900 | [diff] [blame] | 1757 | b.bp.OtherModuleErrorf(m, fmt, args...) |
Colin Cross | 1184b64 | 2019-12-30 18:43:07 -0800 | [diff] [blame] | 1758 | } |
| 1759 | func (b *baseModuleContext) OtherModuleDependencyTag(m blueprint.Module) blueprint.DependencyTag { |
| 1760 | return b.bp.OtherModuleDependencyTag(m) |
| 1761 | } |
Paul Duffin | ca7f0ef | 2020-02-25 15:50:49 +0000 | [diff] [blame] | 1762 | func (b *baseModuleContext) OtherModuleExists(name string) bool { return b.bp.OtherModuleExists(name) } |
Martin Stjernholm | 009a9dc | 2020-03-05 17:34:13 +0000 | [diff] [blame] | 1763 | func (b *baseModuleContext) OtherModuleDependencyVariantExists(variations []blueprint.Variation, name string) bool { |
| 1764 | return b.bp.OtherModuleDependencyVariantExists(variations, name) |
| 1765 | } |
| 1766 | func (b *baseModuleContext) OtherModuleReverseDependencyVariantExists(name string) bool { |
| 1767 | return b.bp.OtherModuleReverseDependencyVariantExists(name) |
| 1768 | } |
Paul Duffin | ca7f0ef | 2020-02-25 15:50:49 +0000 | [diff] [blame] | 1769 | func (b *baseModuleContext) OtherModuleType(m blueprint.Module) string { |
| 1770 | return b.bp.OtherModuleType(m) |
| 1771 | } |
Colin Cross | d27e7b8 | 2020-07-02 11:38:17 -0700 | [diff] [blame] | 1772 | func (b *baseModuleContext) OtherModuleProvider(m blueprint.Module, provider blueprint.ProviderKey) interface{} { |
| 1773 | return b.bp.OtherModuleProvider(m, provider) |
| 1774 | } |
| 1775 | func (b *baseModuleContext) OtherModuleHasProvider(m blueprint.Module, provider blueprint.ProviderKey) bool { |
| 1776 | return b.bp.OtherModuleHasProvider(m, provider) |
| 1777 | } |
| 1778 | func (b *baseModuleContext) Provider(provider blueprint.ProviderKey) interface{} { |
| 1779 | return b.bp.Provider(provider) |
| 1780 | } |
| 1781 | func (b *baseModuleContext) HasProvider(provider blueprint.ProviderKey) bool { |
| 1782 | return b.bp.HasProvider(provider) |
| 1783 | } |
| 1784 | func (b *baseModuleContext) SetProvider(provider blueprint.ProviderKey, value interface{}) { |
| 1785 | b.bp.SetProvider(provider, value) |
| 1786 | } |
Colin Cross | 1184b64 | 2019-12-30 18:43:07 -0800 | [diff] [blame] | 1787 | |
| 1788 | func (b *baseModuleContext) GetDirectDepWithTag(name string, tag blueprint.DependencyTag) blueprint.Module { |
| 1789 | return b.bp.GetDirectDepWithTag(name, tag) |
| 1790 | } |
| 1791 | |
Paul Duffin | f88d8e0 | 2020-05-07 20:21:34 +0100 | [diff] [blame] | 1792 | func (b *baseModuleContext) blueprintBaseModuleContext() blueprint.BaseModuleContext { |
| 1793 | return b.bp |
| 1794 | } |
| 1795 | |
Colin Cross | 25de6c3 | 2019-06-06 14:29:25 -0700 | [diff] [blame] | 1796 | type moduleContext struct { |
Colin Cross | dc35e21 | 2019-06-06 16:13:11 -0700 | [diff] [blame] | 1797 | bp blueprint.ModuleContext |
Colin Cross | 0ea8ba8 | 2019-06-06 14:33:29 -0700 | [diff] [blame] | 1798 | baseModuleContext |
Colin Cross | 897266e | 2020-02-13 13:22:08 -0800 | [diff] [blame] | 1799 | installDeps InstallPaths |
| 1800 | installFiles InstallPaths |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 1801 | checkbuildFiles Paths |
Colin Cross | 8d8f8e2 | 2016-08-03 11:57:50 -0700 | [diff] [blame] | 1802 | module Module |
Colin Cross | c3d87d3 | 2020-06-04 13:25:17 -0700 | [diff] [blame] | 1803 | phonies map[string]Paths |
Colin Cross | cec8171 | 2017-07-13 14:43:27 -0700 | [diff] [blame] | 1804 | |
| 1805 | // For tests |
Colin Cross | ae88703 | 2017-10-23 17:16:14 -0700 | [diff] [blame] | 1806 | buildParams []BuildParams |
Colin Cross | 4c83e5c | 2019-02-25 14:54:28 -0800 | [diff] [blame] | 1807 | ruleParams map[blueprint.Rule]blueprint.RuleParams |
Jaewoong Jung | 38e4fb2 | 2018-12-12 09:01:34 -0800 | [diff] [blame] | 1808 | variables map[string]string |
Colin Cross | 6ff5138 | 2015-12-17 16:39:19 -0800 | [diff] [blame] | 1809 | } |
| 1810 | |
Colin Cross | b88b3c5 | 2019-06-10 15:15:17 -0700 | [diff] [blame] | 1811 | func (m *moduleContext) ninjaError(params BuildParams, err error) (PackageContext, BuildParams) { |
| 1812 | return pctx, BuildParams{ |
Colin Cross | 4b69c49 | 2019-06-07 13:06:06 -0700 | [diff] [blame] | 1813 | Rule: ErrorRule, |
| 1814 | Description: params.Description, |
| 1815 | Output: params.Output, |
| 1816 | Outputs: params.Outputs, |
| 1817 | ImplicitOutput: params.ImplicitOutput, |
| 1818 | ImplicitOutputs: params.ImplicitOutputs, |
Colin Cross | 6ff5138 | 2015-12-17 16:39:19 -0800 | [diff] [blame] | 1819 | Args: map[string]string{ |
| 1820 | "error": err.Error(), |
| 1821 | }, |
Colin Cross | b88b3c5 | 2019-06-10 15:15:17 -0700 | [diff] [blame] | 1822 | } |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1823 | } |
| 1824 | |
Colin Cross | 25de6c3 | 2019-06-06 14:29:25 -0700 | [diff] [blame] | 1825 | func (m *moduleContext) ModuleBuild(pctx PackageContext, params ModuleBuildParams) { |
| 1826 | m.Build(pctx, BuildParams(params)) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1827 | } |
| 1828 | |
Jingwen Chen | ce679d2 | 2020-09-23 04:30:02 +0000 | [diff] [blame] | 1829 | func validateBuildParams(params blueprint.BuildParams) error { |
| 1830 | // Validate that the symlink outputs are declared outputs or implicit outputs |
| 1831 | allOutputs := map[string]bool{} |
| 1832 | for _, output := range params.Outputs { |
| 1833 | allOutputs[output] = true |
| 1834 | } |
| 1835 | for _, output := range params.ImplicitOutputs { |
| 1836 | allOutputs[output] = true |
| 1837 | } |
| 1838 | for _, symlinkOutput := range params.SymlinkOutputs { |
| 1839 | if !allOutputs[symlinkOutput] { |
| 1840 | return fmt.Errorf( |
| 1841 | "Symlink output %s is not a declared output or implicit output", |
| 1842 | symlinkOutput) |
| 1843 | } |
| 1844 | } |
| 1845 | return nil |
| 1846 | } |
| 1847 | |
| 1848 | // Convert build parameters from their concrete Android types into their string representations, |
| 1849 | // and combine the singular and plural fields of the same type (e.g. Output and Outputs). |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 1850 | func convertBuildParams(params BuildParams) blueprint.BuildParams { |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 1851 | bparams := blueprint.BuildParams{ |
Dan Willemsen | 9f3c574 | 2016-11-03 14:28:31 -0700 | [diff] [blame] | 1852 | Rule: params.Rule, |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 1853 | Description: params.Description, |
Colin Cross | 33bfb0a | 2016-11-21 17:23:08 -0800 | [diff] [blame] | 1854 | Deps: params.Deps, |
Dan Willemsen | 9f3c574 | 2016-11-03 14:28:31 -0700 | [diff] [blame] | 1855 | Outputs: params.Outputs.Strings(), |
| 1856 | ImplicitOutputs: params.ImplicitOutputs.Strings(), |
Jingwen Chen | ce679d2 | 2020-09-23 04:30:02 +0000 | [diff] [blame] | 1857 | SymlinkOutputs: params.SymlinkOutputs.Strings(), |
Dan Willemsen | 9f3c574 | 2016-11-03 14:28:31 -0700 | [diff] [blame] | 1858 | Inputs: params.Inputs.Strings(), |
| 1859 | Implicits: params.Implicits.Strings(), |
| 1860 | OrderOnly: params.OrderOnly.Strings(), |
Colin Cross | 824f116 | 2020-07-16 13:07:51 -0700 | [diff] [blame] | 1861 | Validations: params.Validations.Strings(), |
Dan Willemsen | 9f3c574 | 2016-11-03 14:28:31 -0700 | [diff] [blame] | 1862 | Args: params.Args, |
| 1863 | Optional: !params.Default, |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 1864 | } |
| 1865 | |
Colin Cross | 33bfb0a | 2016-11-21 17:23:08 -0800 | [diff] [blame] | 1866 | if params.Depfile != nil { |
| 1867 | bparams.Depfile = params.Depfile.String() |
| 1868 | } |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 1869 | if params.Output != nil { |
| 1870 | bparams.Outputs = append(bparams.Outputs, params.Output.String()) |
| 1871 | } |
Jingwen Chen | ce679d2 | 2020-09-23 04:30:02 +0000 | [diff] [blame] | 1872 | if params.SymlinkOutput != nil { |
| 1873 | bparams.SymlinkOutputs = append(bparams.SymlinkOutputs, params.SymlinkOutput.String()) |
| 1874 | } |
Dan Willemsen | 9f3c574 | 2016-11-03 14:28:31 -0700 | [diff] [blame] | 1875 | if params.ImplicitOutput != nil { |
| 1876 | bparams.ImplicitOutputs = append(bparams.ImplicitOutputs, params.ImplicitOutput.String()) |
| 1877 | } |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 1878 | if params.Input != nil { |
| 1879 | bparams.Inputs = append(bparams.Inputs, params.Input.String()) |
| 1880 | } |
| 1881 | if params.Implicit != nil { |
| 1882 | bparams.Implicits = append(bparams.Implicits, params.Implicit.String()) |
| 1883 | } |
Colin Cross | 824f116 | 2020-07-16 13:07:51 -0700 | [diff] [blame] | 1884 | if params.Validation != nil { |
| 1885 | bparams.Validations = append(bparams.Validations, params.Validation.String()) |
| 1886 | } |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 1887 | |
Colin Cross | 0b9f31f | 2019-02-28 11:00:01 -0800 | [diff] [blame] | 1888 | bparams.Outputs = proptools.NinjaEscapeList(bparams.Outputs) |
| 1889 | bparams.ImplicitOutputs = proptools.NinjaEscapeList(bparams.ImplicitOutputs) |
Jingwen Chen | ce679d2 | 2020-09-23 04:30:02 +0000 | [diff] [blame] | 1890 | bparams.SymlinkOutputs = proptools.NinjaEscapeList(bparams.SymlinkOutputs) |
Colin Cross | 0b9f31f | 2019-02-28 11:00:01 -0800 | [diff] [blame] | 1891 | bparams.Inputs = proptools.NinjaEscapeList(bparams.Inputs) |
| 1892 | bparams.Implicits = proptools.NinjaEscapeList(bparams.Implicits) |
| 1893 | bparams.OrderOnly = proptools.NinjaEscapeList(bparams.OrderOnly) |
Colin Cross | 824f116 | 2020-07-16 13:07:51 -0700 | [diff] [blame] | 1894 | bparams.Validations = proptools.NinjaEscapeList(bparams.Validations) |
| 1895 | bparams.Depfile = proptools.NinjaEscape(bparams.Depfile) |
Colin Cross | fe4bc36 | 2018-09-12 10:02:13 -0700 | [diff] [blame] | 1896 | |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 1897 | return bparams |
| 1898 | } |
| 1899 | |
Colin Cross | 25de6c3 | 2019-06-06 14:29:25 -0700 | [diff] [blame] | 1900 | func (m *moduleContext) Variable(pctx PackageContext, name, value string) { |
| 1901 | if m.config.captureBuild { |
| 1902 | m.variables[name] = value |
Jaewoong Jung | 38e4fb2 | 2018-12-12 09:01:34 -0800 | [diff] [blame] | 1903 | } |
| 1904 | |
Colin Cross | dc35e21 | 2019-06-06 16:13:11 -0700 | [diff] [blame] | 1905 | m.bp.Variable(pctx.PackageContext, name, value) |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 1906 | } |
| 1907 | |
Colin Cross | 25de6c3 | 2019-06-06 14:29:25 -0700 | [diff] [blame] | 1908 | func (m *moduleContext) Rule(pctx PackageContext, name string, params blueprint.RuleParams, |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 1909 | argNames ...string) blueprint.Rule { |
| 1910 | |
Ramy Medhat | 944839a | 2020-03-31 22:14:52 -0400 | [diff] [blame] | 1911 | if m.config.UseRemoteBuild() { |
| 1912 | if params.Pool == nil { |
| 1913 | // When USE_GOMA=true or USE_RBE=true are set and the rule is not supported by goma/RBE, restrict |
| 1914 | // jobs to the local parallelism value |
| 1915 | params.Pool = localPool |
| 1916 | } else if params.Pool == remotePool { |
| 1917 | // remotePool is a fake pool used to identify rule that are supported for remoting. If the rule's |
| 1918 | // pool is the remotePool, replace with nil so that ninja runs it at NINJA_REMOTE_NUM_JOBS |
| 1919 | // parallelism. |
| 1920 | params.Pool = nil |
| 1921 | } |
Colin Cross | 2e2dbc2 | 2019-09-25 13:31:46 -0700 | [diff] [blame] | 1922 | } |
| 1923 | |
Colin Cross | dc35e21 | 2019-06-06 16:13:11 -0700 | [diff] [blame] | 1924 | rule := m.bp.Rule(pctx.PackageContext, name, params, argNames...) |
Colin Cross | 4c83e5c | 2019-02-25 14:54:28 -0800 | [diff] [blame] | 1925 | |
Colin Cross | 25de6c3 | 2019-06-06 14:29:25 -0700 | [diff] [blame] | 1926 | if m.config.captureBuild { |
| 1927 | m.ruleParams[rule] = params |
Colin Cross | 4c83e5c | 2019-02-25 14:54:28 -0800 | [diff] [blame] | 1928 | } |
| 1929 | |
| 1930 | return rule |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 1931 | } |
| 1932 | |
Colin Cross | 25de6c3 | 2019-06-06 14:29:25 -0700 | [diff] [blame] | 1933 | func (m *moduleContext) Build(pctx PackageContext, params BuildParams) { |
Colin Cross | b88b3c5 | 2019-06-10 15:15:17 -0700 | [diff] [blame] | 1934 | if params.Description != "" { |
| 1935 | params.Description = "${moduleDesc}" + params.Description + "${moduleDescSuffix}" |
| 1936 | } |
| 1937 | |
| 1938 | if missingDeps := m.GetMissingDependencies(); len(missingDeps) > 0 { |
| 1939 | pctx, params = m.ninjaError(params, fmt.Errorf("module %s missing dependencies: %s\n", |
| 1940 | m.ModuleName(), strings.Join(missingDeps, ", "))) |
| 1941 | } |
| 1942 | |
Colin Cross | 25de6c3 | 2019-06-06 14:29:25 -0700 | [diff] [blame] | 1943 | if m.config.captureBuild { |
| 1944 | m.buildParams = append(m.buildParams, params) |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 1945 | } |
| 1946 | |
Jingwen Chen | ce679d2 | 2020-09-23 04:30:02 +0000 | [diff] [blame] | 1947 | bparams := convertBuildParams(params) |
| 1948 | err := validateBuildParams(bparams) |
| 1949 | if err != nil { |
| 1950 | m.ModuleErrorf( |
| 1951 | "%s: build parameter validation failed: %s", |
| 1952 | m.ModuleName(), |
| 1953 | err.Error()) |
| 1954 | } |
| 1955 | m.bp.Build(pctx.PackageContext, bparams) |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 1956 | } |
Colin Cross | c3d87d3 | 2020-06-04 13:25:17 -0700 | [diff] [blame] | 1957 | |
| 1958 | func (m *moduleContext) Phony(name string, deps ...Path) { |
| 1959 | addPhony(m.config, name, deps...) |
| 1960 | } |
| 1961 | |
Colin Cross | 25de6c3 | 2019-06-06 14:29:25 -0700 | [diff] [blame] | 1962 | func (m *moduleContext) GetMissingDependencies() []string { |
Colin Cross | 6c4f21f | 2019-06-06 15:41:36 -0700 | [diff] [blame] | 1963 | var missingDeps []string |
| 1964 | missingDeps = append(missingDeps, m.Module().base().commonProperties.MissingDeps...) |
Colin Cross | dc35e21 | 2019-06-06 16:13:11 -0700 | [diff] [blame] | 1965 | missingDeps = append(missingDeps, m.bp.GetMissingDependencies()...) |
Colin Cross | 6c4f21f | 2019-06-06 15:41:36 -0700 | [diff] [blame] | 1966 | missingDeps = FirstUniqueStrings(missingDeps) |
| 1967 | return missingDeps |
Colin Cross | 6ff5138 | 2015-12-17 16:39:19 -0800 | [diff] [blame] | 1968 | } |
| 1969 | |
Colin Cross | dc35e21 | 2019-06-06 16:13:11 -0700 | [diff] [blame] | 1970 | func (b *baseModuleContext) AddMissingDependencies(deps []string) { |
Dan Willemsen | 6553f5e | 2016-03-10 18:14:25 -0800 | [diff] [blame] | 1971 | if deps != nil { |
Colin Cross | dc35e21 | 2019-06-06 16:13:11 -0700 | [diff] [blame] | 1972 | missingDeps := &b.Module().base().commonProperties.MissingDeps |
Colin Cross | 6c4f21f | 2019-06-06 15:41:36 -0700 | [diff] [blame] | 1973 | *missingDeps = append(*missingDeps, deps...) |
| 1974 | *missingDeps = FirstUniqueStrings(*missingDeps) |
Dan Willemsen | 6553f5e | 2016-03-10 18:14:25 -0800 | [diff] [blame] | 1975 | } |
| 1976 | } |
| 1977 | |
Colin Cross | dc35e21 | 2019-06-06 16:13:11 -0700 | [diff] [blame] | 1978 | func (b *baseModuleContext) validateAndroidModule(module blueprint.Module, strict bool) Module { |
Colin Cross | d11fcda | 2017-10-23 17:59:01 -0700 | [diff] [blame] | 1979 | aModule, _ := module.(Module) |
Colin Cross | dc35e21 | 2019-06-06 16:13:11 -0700 | [diff] [blame] | 1980 | |
| 1981 | if !strict { |
| 1982 | return aModule |
| 1983 | } |
| 1984 | |
Colin Cross | 380c69a | 2019-06-10 17:49:58 +0000 | [diff] [blame] | 1985 | if aModule == nil { |
Colin Cross | dc35e21 | 2019-06-06 16:13:11 -0700 | [diff] [blame] | 1986 | b.ModuleErrorf("module %q not an android module", b.OtherModuleName(module)) |
Colin Cross | 380c69a | 2019-06-10 17:49:58 +0000 | [diff] [blame] | 1987 | return nil |
| 1988 | } |
| 1989 | |
| 1990 | if !aModule.Enabled() { |
Colin Cross | dc35e21 | 2019-06-06 16:13:11 -0700 | [diff] [blame] | 1991 | if b.Config().AllowMissingDependencies() { |
| 1992 | b.AddMissingDependencies([]string{b.OtherModuleName(aModule)}) |
Colin Cross | 380c69a | 2019-06-10 17:49:58 +0000 | [diff] [blame] | 1993 | } else { |
Colin Cross | dc35e21 | 2019-06-06 16:13:11 -0700 | [diff] [blame] | 1994 | b.ModuleErrorf("depends on disabled module %q", b.OtherModuleName(aModule)) |
Colin Cross | 380c69a | 2019-06-10 17:49:58 +0000 | [diff] [blame] | 1995 | } |
| 1996 | return nil |
| 1997 | } |
Colin Cross | d11fcda | 2017-10-23 17:59:01 -0700 | [diff] [blame] | 1998 | return aModule |
| 1999 | } |
| 2000 | |
Colin Cross | dc35e21 | 2019-06-06 16:13:11 -0700 | [diff] [blame] | 2001 | func (b *baseModuleContext) getDirectDepInternal(name string, tag blueprint.DependencyTag) (blueprint.Module, blueprint.DependencyTag) { |
Jiyong Park | f297630 | 2019-04-17 21:47:37 +0900 | [diff] [blame] | 2002 | type dep struct { |
| 2003 | mod blueprint.Module |
| 2004 | tag blueprint.DependencyTag |
| 2005 | } |
| 2006 | var deps []dep |
Colin Cross | dc35e21 | 2019-06-06 16:13:11 -0700 | [diff] [blame] | 2007 | b.VisitDirectDepsBlueprint(func(module blueprint.Module) { |
Colin Cross | 25de6c3 | 2019-06-06 14:29:25 -0700 | [diff] [blame] | 2008 | if aModule, _ := module.(Module); aModule != nil && aModule.base().BaseModuleName() == name { |
Colin Cross | 1184b64 | 2019-12-30 18:43:07 -0800 | [diff] [blame] | 2009 | returnedTag := b.bp.OtherModuleDependencyTag(aModule) |
Jiyong Park | f297630 | 2019-04-17 21:47:37 +0900 | [diff] [blame] | 2010 | if tag == nil || returnedTag == tag { |
| 2011 | deps = append(deps, dep{aModule, returnedTag}) |
| 2012 | } |
| 2013 | } |
| 2014 | }) |
| 2015 | if len(deps) == 1 { |
| 2016 | return deps[0].mod, deps[0].tag |
| 2017 | } else if len(deps) >= 2 { |
| 2018 | panic(fmt.Errorf("Multiple dependencies having same BaseModuleName() %q found from %q", |
Colin Cross | dc35e21 | 2019-06-06 16:13:11 -0700 | [diff] [blame] | 2019 | name, b.ModuleName())) |
Jiyong Park | f297630 | 2019-04-17 21:47:37 +0900 | [diff] [blame] | 2020 | } else { |
| 2021 | return nil, nil |
| 2022 | } |
| 2023 | } |
| 2024 | |
Colin Cross | dc35e21 | 2019-06-06 16:13:11 -0700 | [diff] [blame] | 2025 | func (b *baseModuleContext) GetDirectDepsWithTag(tag blueprint.DependencyTag) []Module { |
Colin Cross | 0ef0816 | 2019-05-01 15:50:51 -0700 | [diff] [blame] | 2026 | var deps []Module |
Colin Cross | dc35e21 | 2019-06-06 16:13:11 -0700 | [diff] [blame] | 2027 | b.VisitDirectDepsBlueprint(func(module blueprint.Module) { |
Colin Cross | 25de6c3 | 2019-06-06 14:29:25 -0700 | [diff] [blame] | 2028 | if aModule, _ := module.(Module); aModule != nil { |
Colin Cross | 1184b64 | 2019-12-30 18:43:07 -0800 | [diff] [blame] | 2029 | if b.bp.OtherModuleDependencyTag(aModule) == tag { |
Colin Cross | 0ef0816 | 2019-05-01 15:50:51 -0700 | [diff] [blame] | 2030 | deps = append(deps, aModule) |
| 2031 | } |
| 2032 | } |
| 2033 | }) |
| 2034 | return deps |
| 2035 | } |
| 2036 | |
Colin Cross | 25de6c3 | 2019-06-06 14:29:25 -0700 | [diff] [blame] | 2037 | func (m *moduleContext) GetDirectDepWithTag(name string, tag blueprint.DependencyTag) blueprint.Module { |
| 2038 | module, _ := m.getDirectDepInternal(name, tag) |
| 2039 | return module |
Jiyong Park | f297630 | 2019-04-17 21:47:37 +0900 | [diff] [blame] | 2040 | } |
| 2041 | |
Colin Cross | dc35e21 | 2019-06-06 16:13:11 -0700 | [diff] [blame] | 2042 | func (b *baseModuleContext) GetDirectDep(name string) (blueprint.Module, blueprint.DependencyTag) { |
| 2043 | return b.getDirectDepInternal(name, nil) |
Jiyong Park | f297630 | 2019-04-17 21:47:37 +0900 | [diff] [blame] | 2044 | } |
| 2045 | |
Colin Cross | dc35e21 | 2019-06-06 16:13:11 -0700 | [diff] [blame] | 2046 | func (b *baseModuleContext) VisitDirectDepsBlueprint(visit func(blueprint.Module)) { |
Colin Cross | 1184b64 | 2019-12-30 18:43:07 -0800 | [diff] [blame] | 2047 | b.bp.VisitDirectDeps(visit) |
Colin Cross | 35143d0 | 2017-11-16 00:11:20 -0800 | [diff] [blame] | 2048 | } |
| 2049 | |
Colin Cross | dc35e21 | 2019-06-06 16:13:11 -0700 | [diff] [blame] | 2050 | func (b *baseModuleContext) VisitDirectDeps(visit func(Module)) { |
Colin Cross | 1184b64 | 2019-12-30 18:43:07 -0800 | [diff] [blame] | 2051 | b.bp.VisitDirectDeps(func(module blueprint.Module) { |
Colin Cross | dc35e21 | 2019-06-06 16:13:11 -0700 | [diff] [blame] | 2052 | if aModule := b.validateAndroidModule(module, b.strictVisitDeps); aModule != nil { |
Colin Cross | d11fcda | 2017-10-23 17:59:01 -0700 | [diff] [blame] | 2053 | visit(aModule) |
| 2054 | } |
| 2055 | }) |
| 2056 | } |
| 2057 | |
Colin Cross | dc35e21 | 2019-06-06 16:13:11 -0700 | [diff] [blame] | 2058 | func (b *baseModuleContext) VisitDirectDepsWithTag(tag blueprint.DependencyTag, visit func(Module)) { |
Colin Cross | 1184b64 | 2019-12-30 18:43:07 -0800 | [diff] [blame] | 2059 | b.bp.VisitDirectDeps(func(module blueprint.Module) { |
Colin Cross | dc35e21 | 2019-06-06 16:13:11 -0700 | [diff] [blame] | 2060 | if aModule := b.validateAndroidModule(module, b.strictVisitDeps); aModule != nil { |
Colin Cross | 1184b64 | 2019-12-30 18:43:07 -0800 | [diff] [blame] | 2061 | if b.bp.OtherModuleDependencyTag(aModule) == tag { |
Colin Cross | ee6143c | 2017-12-30 17:54:27 -0800 | [diff] [blame] | 2062 | visit(aModule) |
| 2063 | } |
| 2064 | } |
| 2065 | }) |
| 2066 | } |
| 2067 | |
Colin Cross | dc35e21 | 2019-06-06 16:13:11 -0700 | [diff] [blame] | 2068 | func (b *baseModuleContext) VisitDirectDepsIf(pred func(Module) bool, visit func(Module)) { |
Colin Cross | 1184b64 | 2019-12-30 18:43:07 -0800 | [diff] [blame] | 2069 | b.bp.VisitDirectDepsIf( |
Colin Cross | d11fcda | 2017-10-23 17:59:01 -0700 | [diff] [blame] | 2070 | // pred |
| 2071 | func(module blueprint.Module) bool { |
Colin Cross | dc35e21 | 2019-06-06 16:13:11 -0700 | [diff] [blame] | 2072 | if aModule := b.validateAndroidModule(module, b.strictVisitDeps); aModule != nil { |
Colin Cross | d11fcda | 2017-10-23 17:59:01 -0700 | [diff] [blame] | 2073 | return pred(aModule) |
| 2074 | } else { |
| 2075 | return false |
| 2076 | } |
| 2077 | }, |
| 2078 | // visit |
| 2079 | func(module blueprint.Module) { |
| 2080 | visit(module.(Module)) |
| 2081 | }) |
| 2082 | } |
| 2083 | |
Colin Cross | dc35e21 | 2019-06-06 16:13:11 -0700 | [diff] [blame] | 2084 | func (b *baseModuleContext) VisitDepsDepthFirst(visit func(Module)) { |
Colin Cross | 1184b64 | 2019-12-30 18:43:07 -0800 | [diff] [blame] | 2085 | b.bp.VisitDepsDepthFirst(func(module blueprint.Module) { |
Colin Cross | dc35e21 | 2019-06-06 16:13:11 -0700 | [diff] [blame] | 2086 | if aModule := b.validateAndroidModule(module, b.strictVisitDeps); aModule != nil { |
Colin Cross | d11fcda | 2017-10-23 17:59:01 -0700 | [diff] [blame] | 2087 | visit(aModule) |
| 2088 | } |
| 2089 | }) |
| 2090 | } |
| 2091 | |
Colin Cross | dc35e21 | 2019-06-06 16:13:11 -0700 | [diff] [blame] | 2092 | func (b *baseModuleContext) VisitDepsDepthFirstIf(pred func(Module) bool, visit func(Module)) { |
Colin Cross | 1184b64 | 2019-12-30 18:43:07 -0800 | [diff] [blame] | 2093 | b.bp.VisitDepsDepthFirstIf( |
Colin Cross | d11fcda | 2017-10-23 17:59:01 -0700 | [diff] [blame] | 2094 | // pred |
| 2095 | func(module blueprint.Module) bool { |
Colin Cross | dc35e21 | 2019-06-06 16:13:11 -0700 | [diff] [blame] | 2096 | if aModule := b.validateAndroidModule(module, b.strictVisitDeps); aModule != nil { |
Colin Cross | d11fcda | 2017-10-23 17:59:01 -0700 | [diff] [blame] | 2097 | return pred(aModule) |
| 2098 | } else { |
| 2099 | return false |
| 2100 | } |
| 2101 | }, |
| 2102 | // visit |
| 2103 | func(module blueprint.Module) { |
| 2104 | visit(module.(Module)) |
| 2105 | }) |
| 2106 | } |
| 2107 | |
Colin Cross | dc35e21 | 2019-06-06 16:13:11 -0700 | [diff] [blame] | 2108 | func (b *baseModuleContext) WalkDepsBlueprint(visit func(blueprint.Module, blueprint.Module) bool) { |
Colin Cross | 1184b64 | 2019-12-30 18:43:07 -0800 | [diff] [blame] | 2109 | b.bp.WalkDeps(visit) |
Alex Light | 778127a | 2019-02-27 14:19:50 -0800 | [diff] [blame] | 2110 | } |
| 2111 | |
Colin Cross | dc35e21 | 2019-06-06 16:13:11 -0700 | [diff] [blame] | 2112 | func (b *baseModuleContext) WalkDeps(visit func(Module, Module) bool) { |
| 2113 | b.walkPath = []Module{b.Module()} |
Paul Duffin | c519244 | 2020-03-31 11:31:36 +0100 | [diff] [blame] | 2114 | b.tagPath = []blueprint.DependencyTag{} |
Colin Cross | 1184b64 | 2019-12-30 18:43:07 -0800 | [diff] [blame] | 2115 | b.bp.WalkDeps(func(child, parent blueprint.Module) bool { |
Colin Cross | dc35e21 | 2019-06-06 16:13:11 -0700 | [diff] [blame] | 2116 | childAndroidModule, _ := child.(Module) |
| 2117 | parentAndroidModule, _ := parent.(Module) |
Colin Cross | d11fcda | 2017-10-23 17:59:01 -0700 | [diff] [blame] | 2118 | if childAndroidModule != nil && parentAndroidModule != nil { |
Colin Cross | dc35e21 | 2019-06-06 16:13:11 -0700 | [diff] [blame] | 2119 | // record walkPath before visit |
| 2120 | for b.walkPath[len(b.walkPath)-1] != parentAndroidModule { |
| 2121 | b.walkPath = b.walkPath[0 : len(b.walkPath)-1] |
Paul Duffin | c519244 | 2020-03-31 11:31:36 +0100 | [diff] [blame] | 2122 | b.tagPath = b.tagPath[0 : len(b.tagPath)-1] |
Colin Cross | dc35e21 | 2019-06-06 16:13:11 -0700 | [diff] [blame] | 2123 | } |
| 2124 | b.walkPath = append(b.walkPath, childAndroidModule) |
Paul Duffin | c519244 | 2020-03-31 11:31:36 +0100 | [diff] [blame] | 2125 | b.tagPath = append(b.tagPath, b.OtherModuleDependencyTag(childAndroidModule)) |
Colin Cross | d11fcda | 2017-10-23 17:59:01 -0700 | [diff] [blame] | 2126 | return visit(childAndroidModule, parentAndroidModule) |
| 2127 | } else { |
| 2128 | return false |
| 2129 | } |
| 2130 | }) |
| 2131 | } |
| 2132 | |
Colin Cross | dc35e21 | 2019-06-06 16:13:11 -0700 | [diff] [blame] | 2133 | func (b *baseModuleContext) GetWalkPath() []Module { |
| 2134 | return b.walkPath |
| 2135 | } |
| 2136 | |
Paul Duffin | c519244 | 2020-03-31 11:31:36 +0100 | [diff] [blame] | 2137 | func (b *baseModuleContext) GetTagPath() []blueprint.DependencyTag { |
| 2138 | return b.tagPath |
| 2139 | } |
| 2140 | |
Colin Cross | 4dfacf9 | 2020-09-16 19:22:27 -0700 | [diff] [blame] | 2141 | func (b *baseModuleContext) VisitAllModuleVariants(visit func(Module)) { |
| 2142 | b.bp.VisitAllModuleVariants(func(module blueprint.Module) { |
| 2143 | visit(module.(Module)) |
| 2144 | }) |
| 2145 | } |
| 2146 | |
| 2147 | func (b *baseModuleContext) PrimaryModule() Module { |
| 2148 | return b.bp.PrimaryModule().(Module) |
| 2149 | } |
| 2150 | |
| 2151 | func (b *baseModuleContext) FinalModule() Module { |
| 2152 | return b.bp.FinalModule().(Module) |
| 2153 | } |
| 2154 | |
Jiyong Park | 1c7e962 | 2020-05-07 16:12:13 +0900 | [diff] [blame] | 2155 | // A regexp for removing boilerplate from BaseDependencyTag from the string representation of |
| 2156 | // a dependency tag. |
Colin Cross | 6e511a9 | 2020-07-27 21:26:48 -0700 | [diff] [blame] | 2157 | var tagCleaner = regexp.MustCompile(`\QBaseDependencyTag:{}\E(, )?`) |
Jiyong Park | 1c7e962 | 2020-05-07 16:12:13 +0900 | [diff] [blame] | 2158 | |
| 2159 | // PrettyPrintTag returns string representation of the tag, but prefers |
| 2160 | // custom String() method if available. |
| 2161 | func PrettyPrintTag(tag blueprint.DependencyTag) string { |
| 2162 | // Use tag's custom String() method if available. |
| 2163 | if stringer, ok := tag.(fmt.Stringer); ok { |
| 2164 | return stringer.String() |
| 2165 | } |
| 2166 | |
| 2167 | // Otherwise, get a default string representation of the tag's struct. |
Colin Cross | 6e511a9 | 2020-07-27 21:26:48 -0700 | [diff] [blame] | 2168 | tagString := fmt.Sprintf("%T: %+v", tag, tag) |
Jiyong Park | 1c7e962 | 2020-05-07 16:12:13 +0900 | [diff] [blame] | 2169 | |
| 2170 | // Remove the boilerplate from BaseDependencyTag as it adds no value. |
| 2171 | tagString = tagCleaner.ReplaceAllString(tagString, "") |
| 2172 | return tagString |
| 2173 | } |
| 2174 | |
| 2175 | func (b *baseModuleContext) GetPathString(skipFirst bool) string { |
| 2176 | sb := strings.Builder{} |
| 2177 | tagPath := b.GetTagPath() |
| 2178 | walkPath := b.GetWalkPath() |
| 2179 | if !skipFirst { |
| 2180 | sb.WriteString(walkPath[0].String()) |
| 2181 | } |
| 2182 | for i, m := range walkPath[1:] { |
| 2183 | sb.WriteString("\n") |
| 2184 | sb.WriteString(fmt.Sprintf(" via tag %s\n", PrettyPrintTag(tagPath[i]))) |
| 2185 | sb.WriteString(fmt.Sprintf(" -> %s", m.String())) |
| 2186 | } |
| 2187 | return sb.String() |
| 2188 | } |
| 2189 | |
Colin Cross | dc35e21 | 2019-06-06 16:13:11 -0700 | [diff] [blame] | 2190 | func (m *moduleContext) ModuleSubDir() string { |
| 2191 | return m.bp.ModuleSubDir() |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 2192 | } |
| 2193 | |
Colin Cross | 0ea8ba8 | 2019-06-06 14:33:29 -0700 | [diff] [blame] | 2194 | func (b *baseModuleContext) Target() Target { |
Colin Cross | 25de6c3 | 2019-06-06 14:29:25 -0700 | [diff] [blame] | 2195 | return b.target |
Colin Cross | a1ad8d1 | 2016-06-01 17:09:44 -0700 | [diff] [blame] | 2196 | } |
| 2197 | |
Colin Cross | 0ea8ba8 | 2019-06-06 14:33:29 -0700 | [diff] [blame] | 2198 | func (b *baseModuleContext) TargetPrimary() bool { |
Colin Cross | 25de6c3 | 2019-06-06 14:29:25 -0700 | [diff] [blame] | 2199 | return b.targetPrimary |
Colin Cross | 8b74d17 | 2016-09-13 09:59:14 -0700 | [diff] [blame] | 2200 | } |
| 2201 | |
Colin Cross | 0ea8ba8 | 2019-06-06 14:33:29 -0700 | [diff] [blame] | 2202 | func (b *baseModuleContext) MultiTargets() []Target { |
Colin Cross | 25de6c3 | 2019-06-06 14:29:25 -0700 | [diff] [blame] | 2203 | return b.multiTargets |
Colin Cross | ee0bc3b | 2018-10-02 22:01:37 -0700 | [diff] [blame] | 2204 | } |
| 2205 | |
Colin Cross | 0ea8ba8 | 2019-06-06 14:33:29 -0700 | [diff] [blame] | 2206 | func (b *baseModuleContext) Arch() Arch { |
Colin Cross | 25de6c3 | 2019-06-06 14:29:25 -0700 | [diff] [blame] | 2207 | return b.target.Arch |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 2208 | } |
| 2209 | |
Colin Cross | 0ea8ba8 | 2019-06-06 14:33:29 -0700 | [diff] [blame] | 2210 | func (b *baseModuleContext) Os() OsType { |
Colin Cross | fb0c16e | 2019-11-20 17:12:35 -0800 | [diff] [blame] | 2211 | return b.os |
Dan Willemsen | 490fd49 | 2015-11-24 17:53:15 -0800 | [diff] [blame] | 2212 | } |
| 2213 | |
Colin Cross | 0ea8ba8 | 2019-06-06 14:33:29 -0700 | [diff] [blame] | 2214 | func (b *baseModuleContext) Host() bool { |
Jiyong Park | 1613e55 | 2020-09-14 19:43:17 +0900 | [diff] [blame] | 2215 | return b.os.Class == Host |
Colin Cross | f6566ed | 2015-03-24 11:13:38 -0700 | [diff] [blame] | 2216 | } |
| 2217 | |
Colin Cross | 0ea8ba8 | 2019-06-06 14:33:29 -0700 | [diff] [blame] | 2218 | func (b *baseModuleContext) Device() bool { |
Colin Cross | fb0c16e | 2019-11-20 17:12:35 -0800 | [diff] [blame] | 2219 | return b.os.Class == Device |
Colin Cross | f6566ed | 2015-03-24 11:13:38 -0700 | [diff] [blame] | 2220 | } |
| 2221 | |
Colin Cross | 0ea8ba8 | 2019-06-06 14:33:29 -0700 | [diff] [blame] | 2222 | func (b *baseModuleContext) Darwin() bool { |
Colin Cross | fb0c16e | 2019-11-20 17:12:35 -0800 | [diff] [blame] | 2223 | return b.os == Darwin |
Colin Cross | 0af4b84 | 2015-04-30 16:36:18 -0700 | [diff] [blame] | 2224 | } |
| 2225 | |
Colin Cross | 0ea8ba8 | 2019-06-06 14:33:29 -0700 | [diff] [blame] | 2226 | func (b *baseModuleContext) Fuchsia() bool { |
Colin Cross | fb0c16e | 2019-11-20 17:12:35 -0800 | [diff] [blame] | 2227 | return b.os == Fuchsia |
Doug Horn | 21b9427 | 2019-01-16 12:06:11 -0800 | [diff] [blame] | 2228 | } |
| 2229 | |
Colin Cross | 0ea8ba8 | 2019-06-06 14:33:29 -0700 | [diff] [blame] | 2230 | func (b *baseModuleContext) Windows() bool { |
Colin Cross | fb0c16e | 2019-11-20 17:12:35 -0800 | [diff] [blame] | 2231 | return b.os == Windows |
Colin Cross | 3edeee1 | 2017-04-04 12:59:48 -0700 | [diff] [blame] | 2232 | } |
| 2233 | |
Colin Cross | 0ea8ba8 | 2019-06-06 14:33:29 -0700 | [diff] [blame] | 2234 | func (b *baseModuleContext) Debug() bool { |
Colin Cross | 25de6c3 | 2019-06-06 14:29:25 -0700 | [diff] [blame] | 2235 | return b.debug |
Colin Cross | f6566ed | 2015-03-24 11:13:38 -0700 | [diff] [blame] | 2236 | } |
| 2237 | |
Colin Cross | 0ea8ba8 | 2019-06-06 14:33:29 -0700 | [diff] [blame] | 2238 | func (b *baseModuleContext) PrimaryArch() bool { |
Colin Cross | 25de6c3 | 2019-06-06 14:29:25 -0700 | [diff] [blame] | 2239 | if len(b.config.Targets[b.target.Os]) <= 1 { |
Colin Cross | 67a5c13 | 2017-05-09 13:45:28 -0700 | [diff] [blame] | 2240 | return true |
| 2241 | } |
Colin Cross | 25de6c3 | 2019-06-06 14:29:25 -0700 | [diff] [blame] | 2242 | return b.target.Arch.ArchType == b.config.Targets[b.target.Os][0].Arch.ArchType |
Colin Cross | 1e7d370 | 2016-08-24 15:25:47 -0700 | [diff] [blame] | 2243 | } |
| 2244 | |
Jiyong Park | 5baac54 | 2018-08-28 09:55:37 +0900 | [diff] [blame] | 2245 | // Makes this module a platform module, i.e. not specific to soc, device, |
Justin Yun | d5f6c82 | 2019-06-25 16:47:17 +0900 | [diff] [blame] | 2246 | // product, or system_ext. |
Colin Cross | 4157e88 | 2019-06-06 16:57:04 -0700 | [diff] [blame] | 2247 | func (m *ModuleBase) MakeAsPlatform() { |
| 2248 | m.commonProperties.Vendor = boolPtr(false) |
| 2249 | m.commonProperties.Proprietary = boolPtr(false) |
| 2250 | m.commonProperties.Soc_specific = boolPtr(false) |
| 2251 | m.commonProperties.Product_specific = boolPtr(false) |
Justin Yun | d5f6c82 | 2019-06-25 16:47:17 +0900 | [diff] [blame] | 2252 | m.commonProperties.System_ext_specific = boolPtr(false) |
Jiyong Park | 5baac54 | 2018-08-28 09:55:37 +0900 | [diff] [blame] | 2253 | } |
| 2254 | |
Colin Cross | 4157e88 | 2019-06-06 16:57:04 -0700 | [diff] [blame] | 2255 | func (m *ModuleBase) EnableNativeBridgeSupportByDefault() { |
| 2256 | m.commonProperties.Native_bridge_supported = boolPtr(true) |
dimitry | 03dc3f6 | 2019-05-09 14:07:34 +0200 | [diff] [blame] | 2257 | } |
| 2258 | |
Sundong Ahn | d95aa2d | 2019-10-08 19:34:03 +0900 | [diff] [blame] | 2259 | func (m *ModuleBase) MakeAsSystemExt() { |
Jooyung Han | 91df208 | 2019-11-20 01:49:42 +0900 | [diff] [blame] | 2260 | m.commonProperties.Vendor = boolPtr(false) |
| 2261 | m.commonProperties.Proprietary = boolPtr(false) |
| 2262 | m.commonProperties.Soc_specific = boolPtr(false) |
| 2263 | m.commonProperties.Product_specific = boolPtr(false) |
| 2264 | m.commonProperties.System_ext_specific = boolPtr(true) |
Sundong Ahn | d95aa2d | 2019-10-08 19:34:03 +0900 | [diff] [blame] | 2265 | } |
| 2266 | |
Jooyung Han | 344d543 | 2019-08-23 11:17:39 +0900 | [diff] [blame] | 2267 | // IsNativeBridgeSupported returns true if "native_bridge_supported" is explicitly set as "true" |
| 2268 | func (m *ModuleBase) IsNativeBridgeSupported() bool { |
| 2269 | return proptools.Bool(m.commonProperties.Native_bridge_supported) |
| 2270 | } |
| 2271 | |
Colin Cross | 25de6c3 | 2019-06-06 14:29:25 -0700 | [diff] [blame] | 2272 | func (m *moduleContext) InstallInData() bool { |
| 2273 | return m.module.InstallInData() |
Dan Willemsen | 782a2d1 | 2015-12-21 14:55:28 -0800 | [diff] [blame] | 2274 | } |
| 2275 | |
Jaewoong Jung | 0949f31 | 2019-09-11 10:25:18 -0700 | [diff] [blame] | 2276 | func (m *moduleContext) InstallInTestcases() bool { |
| 2277 | return m.module.InstallInTestcases() |
| 2278 | } |
| 2279 | |
Colin Cross | 25de6c3 | 2019-06-06 14:29:25 -0700 | [diff] [blame] | 2280 | func (m *moduleContext) InstallInSanitizerDir() bool { |
| 2281 | return m.module.InstallInSanitizerDir() |
Vishwath Mohan | 1dd8839 | 2017-03-29 22:00:18 -0700 | [diff] [blame] | 2282 | } |
| 2283 | |
Yifan Hong | 1b3348d | 2020-01-21 15:53:22 -0800 | [diff] [blame] | 2284 | func (m *moduleContext) InstallInRamdisk() bool { |
| 2285 | return m.module.InstallInRamdisk() |
| 2286 | } |
| 2287 | |
Yifan Hong | 60e0cfb | 2020-10-21 15:17:56 -0700 | [diff] [blame] | 2288 | func (m *moduleContext) InstallInVendorRamdisk() bool { |
| 2289 | return m.module.InstallInVendorRamdisk() |
| 2290 | } |
| 2291 | |
Colin Cross | 25de6c3 | 2019-06-06 14:29:25 -0700 | [diff] [blame] | 2292 | func (m *moduleContext) InstallInRecovery() bool { |
| 2293 | return m.module.InstallInRecovery() |
Jiyong Park | f9332f1 | 2018-02-01 00:54:12 +0900 | [diff] [blame] | 2294 | } |
| 2295 | |
Colin Cross | 90ba5f4 | 2019-10-02 11:10:58 -0700 | [diff] [blame] | 2296 | func (m *moduleContext) InstallInRoot() bool { |
| 2297 | return m.module.InstallInRoot() |
| 2298 | } |
| 2299 | |
Colin Cross | 607d858 | 2019-07-29 16:44:46 -0700 | [diff] [blame] | 2300 | func (m *moduleContext) InstallBypassMake() bool { |
| 2301 | return m.module.InstallBypassMake() |
| 2302 | } |
| 2303 | |
Jiyong Park | 87788b5 | 2020-09-01 12:37:45 +0900 | [diff] [blame] | 2304 | func (m *moduleContext) InstallForceOS() (*OsType, *ArchType) { |
Colin Cross | 6e35940 | 2020-02-10 15:29:54 -0800 | [diff] [blame] | 2305 | return m.module.InstallForceOS() |
| 2306 | } |
| 2307 | |
Colin Cross | 70dda7e | 2019-10-01 22:05:35 -0700 | [diff] [blame] | 2308 | func (m *moduleContext) skipInstall(fullInstallPath InstallPath) bool { |
Colin Cross | 25de6c3 | 2019-06-06 14:29:25 -0700 | [diff] [blame] | 2309 | if m.module.base().commonProperties.SkipInstall { |
Colin Cross | 893d816 | 2017-04-26 17:34:03 -0700 | [diff] [blame] | 2310 | return true |
| 2311 | } |
| 2312 | |
Colin Cross | 3607f21 | 2018-05-07 15:28:05 -0700 | [diff] [blame] | 2313 | // We'll need a solution for choosing which of modules with the same name in different |
| 2314 | // namespaces to install. For now, reuse the list of namespaces exported to Make as the |
| 2315 | // list of namespaces to install in a Soong-only build. |
Colin Cross | 25de6c3 | 2019-06-06 14:29:25 -0700 | [diff] [blame] | 2316 | if !m.module.base().commonProperties.NamespaceExportedToMake { |
Colin Cross | 3607f21 | 2018-05-07 15:28:05 -0700 | [diff] [blame] | 2317 | return true |
| 2318 | } |
| 2319 | |
Colin Cross | 25de6c3 | 2019-06-06 14:29:25 -0700 | [diff] [blame] | 2320 | if m.Device() { |
Colin Cross | 607d858 | 2019-07-29 16:44:46 -0700 | [diff] [blame] | 2321 | if m.Config().EmbeddedInMake() && !m.InstallBypassMake() { |
Colin Cross | 893d816 | 2017-04-26 17:34:03 -0700 | [diff] [blame] | 2322 | return true |
| 2323 | } |
| 2324 | |
Colin Cross | 25de6c3 | 2019-06-06 14:29:25 -0700 | [diff] [blame] | 2325 | if m.Config().SkipMegaDeviceInstall(fullInstallPath.String()) { |
Colin Cross | 893d816 | 2017-04-26 17:34:03 -0700 | [diff] [blame] | 2326 | return true |
| 2327 | } |
| 2328 | } |
| 2329 | |
| 2330 | return false |
| 2331 | } |
| 2332 | |
Colin Cross | 70dda7e | 2019-10-01 22:05:35 -0700 | [diff] [blame] | 2333 | func (m *moduleContext) InstallFile(installPath InstallPath, name string, srcPath Path, |
| 2334 | deps ...Path) InstallPath { |
Colin Cross | 25de6c3 | 2019-06-06 14:29:25 -0700 | [diff] [blame] | 2335 | return m.installFile(installPath, name, srcPath, Cp, deps) |
Colin Cross | 5c51792 | 2017-08-31 12:29:17 -0700 | [diff] [blame] | 2336 | } |
| 2337 | |
Colin Cross | 70dda7e | 2019-10-01 22:05:35 -0700 | [diff] [blame] | 2338 | func (m *moduleContext) InstallExecutable(installPath InstallPath, name string, srcPath Path, |
| 2339 | deps ...Path) InstallPath { |
Colin Cross | 25de6c3 | 2019-06-06 14:29:25 -0700 | [diff] [blame] | 2340 | return m.installFile(installPath, name, srcPath, CpExecutable, deps) |
Colin Cross | 5c51792 | 2017-08-31 12:29:17 -0700 | [diff] [blame] | 2341 | } |
| 2342 | |
Colin Cross | 70dda7e | 2019-10-01 22:05:35 -0700 | [diff] [blame] | 2343 | func (m *moduleContext) installFile(installPath InstallPath, name string, srcPath Path, |
| 2344 | rule blueprint.Rule, deps []Path) InstallPath { |
Colin Cross | 35cec12 | 2015-04-02 14:37:16 -0700 | [diff] [blame] | 2345 | |
Colin Cross | 25de6c3 | 2019-06-06 14:29:25 -0700 | [diff] [blame] | 2346 | fullInstallPath := installPath.Join(m, name) |
David Srbecky | 0765641 | 2020-06-04 01:26:16 +0100 | [diff] [blame] | 2347 | m.module.base().hooks.runInstallHooks(m, srcPath, fullInstallPath, false) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 2348 | |
Colin Cross | 25de6c3 | 2019-06-06 14:29:25 -0700 | [diff] [blame] | 2349 | if !m.skipInstall(fullInstallPath) { |
Colin Cross | ce75d2c | 2016-10-06 16:12:58 -0700 | [diff] [blame] | 2350 | |
Colin Cross | 897266e | 2020-02-13 13:22:08 -0800 | [diff] [blame] | 2351 | deps = append(deps, m.installDeps.Paths()...) |
Colin Cross | 35cec12 | 2015-04-02 14:37:16 -0700 | [diff] [blame] | 2352 | |
Colin Cross | 89562dc | 2016-10-03 17:47:19 -0700 | [diff] [blame] | 2353 | var implicitDeps, orderOnlyDeps Paths |
| 2354 | |
Colin Cross | 25de6c3 | 2019-06-06 14:29:25 -0700 | [diff] [blame] | 2355 | if m.Host() { |
Colin Cross | 89562dc | 2016-10-03 17:47:19 -0700 | [diff] [blame] | 2356 | // Installed host modules might be used during the build, depend directly on their |
| 2357 | // dependencies so their timestamp is updated whenever their dependency is updated |
| 2358 | implicitDeps = deps |
| 2359 | } else { |
| 2360 | orderOnlyDeps = deps |
| 2361 | } |
| 2362 | |
Colin Cross | 25de6c3 | 2019-06-06 14:29:25 -0700 | [diff] [blame] | 2363 | m.Build(pctx, BuildParams{ |
Colin Cross | 5c51792 | 2017-08-31 12:29:17 -0700 | [diff] [blame] | 2364 | Rule: rule, |
Colin Cross | 67a5c13 | 2017-05-09 13:45:28 -0700 | [diff] [blame] | 2365 | Description: "install " + fullInstallPath.Base(), |
| 2366 | Output: fullInstallPath, |
| 2367 | Input: srcPath, |
| 2368 | Implicits: implicitDeps, |
| 2369 | OrderOnly: orderOnlyDeps, |
Colin Cross | 25de6c3 | 2019-06-06 14:29:25 -0700 | [diff] [blame] | 2370 | Default: !m.Config().EmbeddedInMake(), |
Dan Willemsen | 322acaf | 2016-01-12 23:07:05 -0800 | [diff] [blame] | 2371 | }) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 2372 | |
Colin Cross | 25de6c3 | 2019-06-06 14:29:25 -0700 | [diff] [blame] | 2373 | m.installFiles = append(m.installFiles, fullInstallPath) |
Dan Willemsen | 322acaf | 2016-01-12 23:07:05 -0800 | [diff] [blame] | 2374 | } |
Colin Cross | 25de6c3 | 2019-06-06 14:29:25 -0700 | [diff] [blame] | 2375 | m.checkbuildFiles = append(m.checkbuildFiles, srcPath) |
Colin Cross | 35cec12 | 2015-04-02 14:37:16 -0700 | [diff] [blame] | 2376 | return fullInstallPath |
| 2377 | } |
| 2378 | |
Colin Cross | 70dda7e | 2019-10-01 22:05:35 -0700 | [diff] [blame] | 2379 | func (m *moduleContext) InstallSymlink(installPath InstallPath, name string, srcPath InstallPath) InstallPath { |
Colin Cross | 25de6c3 | 2019-06-06 14:29:25 -0700 | [diff] [blame] | 2380 | fullInstallPath := installPath.Join(m, name) |
David Srbecky | 0765641 | 2020-06-04 01:26:16 +0100 | [diff] [blame] | 2381 | m.module.base().hooks.runInstallHooks(m, srcPath, fullInstallPath, true) |
Colin Cross | 3854a60 | 2016-01-11 12:49:11 -0800 | [diff] [blame] | 2382 | |
Colin Cross | 25de6c3 | 2019-06-06 14:29:25 -0700 | [diff] [blame] | 2383 | if !m.skipInstall(fullInstallPath) { |
Colin Cross | ce75d2c | 2016-10-06 16:12:58 -0700 | [diff] [blame] | 2384 | |
Alex Light | fb4353d | 2019-01-17 13:57:45 -0800 | [diff] [blame] | 2385 | relPath, err := filepath.Rel(path.Dir(fullInstallPath.String()), srcPath.String()) |
| 2386 | if err != nil { |
| 2387 | panic(fmt.Sprintf("Unable to generate symlink between %q and %q: %s", fullInstallPath.Base(), srcPath.Base(), err)) |
| 2388 | } |
Colin Cross | 25de6c3 | 2019-06-06 14:29:25 -0700 | [diff] [blame] | 2389 | m.Build(pctx, BuildParams{ |
Colin Cross | 67a5c13 | 2017-05-09 13:45:28 -0700 | [diff] [blame] | 2390 | Rule: Symlink, |
| 2391 | Description: "install symlink " + fullInstallPath.Base(), |
| 2392 | Output: fullInstallPath, |
Dan Willemsen | 40efa1c | 2020-01-14 15:19:52 -0800 | [diff] [blame] | 2393 | Input: srcPath, |
Colin Cross | 25de6c3 | 2019-06-06 14:29:25 -0700 | [diff] [blame] | 2394 | Default: !m.Config().EmbeddedInMake(), |
Colin Cross | 12fc497 | 2016-01-11 12:49:11 -0800 | [diff] [blame] | 2395 | Args: map[string]string{ |
Alex Light | fb4353d | 2019-01-17 13:57:45 -0800 | [diff] [blame] | 2396 | "fromPath": relPath, |
Colin Cross | 12fc497 | 2016-01-11 12:49:11 -0800 | [diff] [blame] | 2397 | }, |
| 2398 | }) |
Colin Cross | 3854a60 | 2016-01-11 12:49:11 -0800 | [diff] [blame] | 2399 | |
Colin Cross | 25de6c3 | 2019-06-06 14:29:25 -0700 | [diff] [blame] | 2400 | m.installFiles = append(m.installFiles, fullInstallPath) |
| 2401 | m.checkbuildFiles = append(m.checkbuildFiles, srcPath) |
Colin Cross | 12fc497 | 2016-01-11 12:49:11 -0800 | [diff] [blame] | 2402 | } |
Colin Cross | 3854a60 | 2016-01-11 12:49:11 -0800 | [diff] [blame] | 2403 | return fullInstallPath |
| 2404 | } |
| 2405 | |
Jiyong Park | f119435 | 2019-02-25 11:05:47 +0900 | [diff] [blame] | 2406 | // installPath/name -> absPath where absPath might be a path that is available only at runtime |
| 2407 | // (e.g. /apex/...) |
Colin Cross | 70dda7e | 2019-10-01 22:05:35 -0700 | [diff] [blame] | 2408 | func (m *moduleContext) InstallAbsoluteSymlink(installPath InstallPath, name string, absPath string) InstallPath { |
Colin Cross | 25de6c3 | 2019-06-06 14:29:25 -0700 | [diff] [blame] | 2409 | fullInstallPath := installPath.Join(m, name) |
David Srbecky | 0765641 | 2020-06-04 01:26:16 +0100 | [diff] [blame] | 2410 | m.module.base().hooks.runInstallHooks(m, nil, fullInstallPath, true) |
Jiyong Park | f119435 | 2019-02-25 11:05:47 +0900 | [diff] [blame] | 2411 | |
Colin Cross | 25de6c3 | 2019-06-06 14:29:25 -0700 | [diff] [blame] | 2412 | if !m.skipInstall(fullInstallPath) { |
| 2413 | m.Build(pctx, BuildParams{ |
Jiyong Park | f119435 | 2019-02-25 11:05:47 +0900 | [diff] [blame] | 2414 | Rule: Symlink, |
| 2415 | Description: "install symlink " + fullInstallPath.Base() + " -> " + absPath, |
| 2416 | Output: fullInstallPath, |
Colin Cross | 25de6c3 | 2019-06-06 14:29:25 -0700 | [diff] [blame] | 2417 | Default: !m.Config().EmbeddedInMake(), |
Jiyong Park | f119435 | 2019-02-25 11:05:47 +0900 | [diff] [blame] | 2418 | Args: map[string]string{ |
| 2419 | "fromPath": absPath, |
| 2420 | }, |
| 2421 | }) |
| 2422 | |
Colin Cross | 25de6c3 | 2019-06-06 14:29:25 -0700 | [diff] [blame] | 2423 | m.installFiles = append(m.installFiles, fullInstallPath) |
Jiyong Park | f119435 | 2019-02-25 11:05:47 +0900 | [diff] [blame] | 2424 | } |
| 2425 | return fullInstallPath |
| 2426 | } |
| 2427 | |
Colin Cross | 25de6c3 | 2019-06-06 14:29:25 -0700 | [diff] [blame] | 2428 | func (m *moduleContext) CheckbuildFile(srcPath Path) { |
| 2429 | m.checkbuildFiles = append(m.checkbuildFiles, srcPath) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 2430 | } |
| 2431 | |
Colin Cross | 41955e8 | 2019-05-29 14:40:35 -0700 | [diff] [blame] | 2432 | // SrcIsModule decodes module references in the format ":name" into the module name, or empty string if the input |
| 2433 | // was not a module reference. |
| 2434 | func SrcIsModule(s string) (module string) { |
Colin Cross | 068e0fe | 2016-12-13 15:23:47 -0800 | [diff] [blame] | 2435 | if len(s) > 1 && s[0] == ':' { |
| 2436 | return s[1:] |
| 2437 | } |
| 2438 | return "" |
| 2439 | } |
| 2440 | |
Colin Cross | 41955e8 | 2019-05-29 14:40:35 -0700 | [diff] [blame] | 2441 | // SrcIsModule decodes module references in the format ":name{.tag}" into the module name and tag, ":name" into the |
| 2442 | // module name and an empty string for the tag, or empty strings if the input was not a module reference. |
| 2443 | func SrcIsModuleWithTag(s string) (module, tag string) { |
| 2444 | if len(s) > 1 && s[0] == ':' { |
| 2445 | module = s[1:] |
| 2446 | if tagStart := strings.IndexByte(module, '{'); tagStart > 0 { |
| 2447 | if module[len(module)-1] == '}' { |
| 2448 | tag = module[tagStart+1 : len(module)-1] |
| 2449 | module = module[:tagStart] |
| 2450 | return module, tag |
| 2451 | } |
| 2452 | } |
| 2453 | return module, "" |
| 2454 | } |
| 2455 | return "", "" |
Colin Cross | 068e0fe | 2016-12-13 15:23:47 -0800 | [diff] [blame] | 2456 | } |
| 2457 | |
Colin Cross | 41955e8 | 2019-05-29 14:40:35 -0700 | [diff] [blame] | 2458 | type sourceOrOutputDependencyTag struct { |
| 2459 | blueprint.BaseDependencyTag |
| 2460 | tag string |
| 2461 | } |
| 2462 | |
| 2463 | func sourceOrOutputDepTag(tag string) blueprint.DependencyTag { |
| 2464 | return sourceOrOutputDependencyTag{tag: tag} |
| 2465 | } |
| 2466 | |
| 2467 | var SourceDepTag = sourceOrOutputDepTag("") |
Colin Cross | 068e0fe | 2016-12-13 15:23:47 -0800 | [diff] [blame] | 2468 | |
Colin Cross | 366938f | 2017-12-11 16:29:02 -0800 | [diff] [blame] | 2469 | // Adds necessary dependencies to satisfy filegroup or generated sources modules listed in srcFiles |
| 2470 | // using ":module" syntax, if any. |
Colin Cross | 27b922f | 2019-03-04 22:35:41 -0800 | [diff] [blame] | 2471 | // |
| 2472 | // Deprecated: tag the property with `android:"path"` instead. |
Colin Cross | 068e0fe | 2016-12-13 15:23:47 -0800 | [diff] [blame] | 2473 | func ExtractSourcesDeps(ctx BottomUpMutatorContext, srcFiles []string) { |
Nan Zhang | 2439eb7 | 2017-04-10 11:27:50 -0700 | [diff] [blame] | 2474 | set := make(map[string]bool) |
| 2475 | |
Colin Cross | 068e0fe | 2016-12-13 15:23:47 -0800 | [diff] [blame] | 2476 | for _, s := range srcFiles { |
Colin Cross | 41955e8 | 2019-05-29 14:40:35 -0700 | [diff] [blame] | 2477 | if m, t := SrcIsModuleWithTag(s); m != "" { |
| 2478 | if _, found := set[s]; found { |
| 2479 | ctx.ModuleErrorf("found source dependency duplicate: %q!", s) |
Nan Zhang | 2439eb7 | 2017-04-10 11:27:50 -0700 | [diff] [blame] | 2480 | } else { |
Colin Cross | 41955e8 | 2019-05-29 14:40:35 -0700 | [diff] [blame] | 2481 | set[s] = true |
| 2482 | ctx.AddDependency(ctx.Module(), sourceOrOutputDepTag(t), m) |
Nan Zhang | 2439eb7 | 2017-04-10 11:27:50 -0700 | [diff] [blame] | 2483 | } |
Colin Cross | 068e0fe | 2016-12-13 15:23:47 -0800 | [diff] [blame] | 2484 | } |
| 2485 | } |
Colin Cross | 068e0fe | 2016-12-13 15:23:47 -0800 | [diff] [blame] | 2486 | } |
| 2487 | |
Colin Cross | 366938f | 2017-12-11 16:29:02 -0800 | [diff] [blame] | 2488 | // Adds necessary dependencies to satisfy filegroup or generated sources modules specified in s |
| 2489 | // using ":module" syntax, if any. |
Colin Cross | 27b922f | 2019-03-04 22:35:41 -0800 | [diff] [blame] | 2490 | // |
| 2491 | // Deprecated: tag the property with `android:"path"` instead. |
Colin Cross | 366938f | 2017-12-11 16:29:02 -0800 | [diff] [blame] | 2492 | func ExtractSourceDeps(ctx BottomUpMutatorContext, s *string) { |
| 2493 | if s != nil { |
Colin Cross | 41955e8 | 2019-05-29 14:40:35 -0700 | [diff] [blame] | 2494 | if m, t := SrcIsModuleWithTag(*s); m != "" { |
| 2495 | ctx.AddDependency(ctx.Module(), sourceOrOutputDepTag(t), m) |
Colin Cross | 366938f | 2017-12-11 16:29:02 -0800 | [diff] [blame] | 2496 | } |
| 2497 | } |
| 2498 | } |
| 2499 | |
Colin Cross | 41955e8 | 2019-05-29 14:40:35 -0700 | [diff] [blame] | 2500 | // A module that implements SourceFileProducer can be referenced from any property that is tagged with `android:"path"` |
| 2501 | // using the ":module" syntax and provides a list of paths to be used as if they were listed in the property. |
Colin Cross | 068e0fe | 2016-12-13 15:23:47 -0800 | [diff] [blame] | 2502 | type SourceFileProducer interface { |
| 2503 | Srcs() Paths |
| 2504 | } |
| 2505 | |
Colin Cross | 41955e8 | 2019-05-29 14:40:35 -0700 | [diff] [blame] | 2506 | // A module that implements OutputFileProducer can be referenced from any property that is tagged with `android:"path"` |
Roland Levillain | 97c1f34 | 2019-11-22 14:20:54 +0000 | [diff] [blame] | 2507 | // using the ":module" syntax or ":module{.tag}" syntax and provides a list of output files to be used as if they were |
Colin Cross | 41955e8 | 2019-05-29 14:40:35 -0700 | [diff] [blame] | 2508 | // listed in the property. |
| 2509 | type OutputFileProducer interface { |
| 2510 | OutputFiles(tag string) (Paths, error) |
| 2511 | } |
| 2512 | |
Colin Cross | 5e70805 | 2019-08-06 13:59:50 -0700 | [diff] [blame] | 2513 | // OutputFilesForModule returns the paths from an OutputFileProducer with the given tag. On error, including if the |
| 2514 | // module produced zero paths, it reports errors to the ctx and returns nil. |
| 2515 | func OutputFilesForModule(ctx PathContext, module blueprint.Module, tag string) Paths { |
| 2516 | paths, err := outputFilesForModule(ctx, module, tag) |
| 2517 | if err != nil { |
| 2518 | reportPathError(ctx, err) |
| 2519 | return nil |
| 2520 | } |
| 2521 | return paths |
| 2522 | } |
| 2523 | |
| 2524 | // OutputFileForModule returns the path from an OutputFileProducer with the given tag. On error, including if the |
| 2525 | // module produced zero or multiple paths, it reports errors to the ctx and returns nil. |
| 2526 | func OutputFileForModule(ctx PathContext, module blueprint.Module, tag string) Path { |
| 2527 | paths, err := outputFilesForModule(ctx, module, tag) |
| 2528 | if err != nil { |
| 2529 | reportPathError(ctx, err) |
| 2530 | return nil |
| 2531 | } |
| 2532 | if len(paths) > 1 { |
Ulya Trafimovich | 5ab276a | 2020-08-25 12:45:15 +0100 | [diff] [blame] | 2533 | ReportPathErrorf(ctx, "got multiple output files from module %q, expected exactly one", |
Colin Cross | 5e70805 | 2019-08-06 13:59:50 -0700 | [diff] [blame] | 2534 | pathContextName(ctx, module)) |
| 2535 | return nil |
| 2536 | } |
| 2537 | return paths[0] |
| 2538 | } |
| 2539 | |
| 2540 | func outputFilesForModule(ctx PathContext, module blueprint.Module, tag string) (Paths, error) { |
| 2541 | if outputFileProducer, ok := module.(OutputFileProducer); ok { |
| 2542 | paths, err := outputFileProducer.OutputFiles(tag) |
| 2543 | if err != nil { |
| 2544 | return nil, fmt.Errorf("failed to get output file from module %q: %s", |
| 2545 | pathContextName(ctx, module), err.Error()) |
| 2546 | } |
| 2547 | if len(paths) == 0 { |
| 2548 | return nil, fmt.Errorf("failed to get output files from module %q", pathContextName(ctx, module)) |
| 2549 | } |
| 2550 | return paths, nil |
| 2551 | } else { |
| 2552 | return nil, fmt.Errorf("module %q is not an OutputFileProducer", pathContextName(ctx, module)) |
| 2553 | } |
| 2554 | } |
| 2555 | |
Colin Cross | fe17f6f | 2019-03-28 19:30:56 -0700 | [diff] [blame] | 2556 | type HostToolProvider interface { |
| 2557 | HostToolPath() OptionalPath |
| 2558 | } |
| 2559 | |
Colin Cross | 27b922f | 2019-03-04 22:35:41 -0800 | [diff] [blame] | 2560 | // Returns a list of paths expanded from globs and modules referenced using ":module" syntax. The property must |
| 2561 | // be tagged with `android:"path" to support automatic source module dependency resolution. |
Colin Cross | 8a49795 | 2019-03-05 22:25:09 -0800 | [diff] [blame] | 2562 | // |
| 2563 | // Deprecated: use PathsForModuleSrc or PathsForModuleSrcExcludes instead. |
Colin Cross | 25de6c3 | 2019-06-06 14:29:25 -0700 | [diff] [blame] | 2564 | func (m *moduleContext) ExpandSources(srcFiles, excludes []string) Paths { |
| 2565 | return PathsForModuleSrcExcludes(m, srcFiles, excludes) |
Colin Cross | 8f101b4 | 2015-06-17 15:09:06 -0700 | [diff] [blame] | 2566 | } |
| 2567 | |
Colin Cross | 2fafa3e | 2019-03-05 12:39:51 -0800 | [diff] [blame] | 2568 | // Returns a single path expanded from globs and modules referenced using ":module" syntax. The property must |
| 2569 | // be tagged with `android:"path" to support automatic source module dependency resolution. |
Colin Cross | 8a49795 | 2019-03-05 22:25:09 -0800 | [diff] [blame] | 2570 | // |
| 2571 | // Deprecated: use PathForModuleSrc instead. |
Colin Cross | 25de6c3 | 2019-06-06 14:29:25 -0700 | [diff] [blame] | 2572 | func (m *moduleContext) ExpandSource(srcFile, prop string) Path { |
| 2573 | return PathForModuleSrc(m, srcFile) |
Colin Cross | 2fafa3e | 2019-03-05 12:39:51 -0800 | [diff] [blame] | 2574 | } |
| 2575 | |
| 2576 | // Returns an optional single path expanded from globs and modules referenced using ":module" syntax if |
| 2577 | // the srcFile is non-nil. The property must be tagged with `android:"path" to support automatic source module |
| 2578 | // dependency resolution. |
Colin Cross | 25de6c3 | 2019-06-06 14:29:25 -0700 | [diff] [blame] | 2579 | func (m *moduleContext) ExpandOptionalSource(srcFile *string, prop string) OptionalPath { |
Colin Cross | 2fafa3e | 2019-03-05 12:39:51 -0800 | [diff] [blame] | 2580 | if srcFile != nil { |
Colin Cross | 25de6c3 | 2019-06-06 14:29:25 -0700 | [diff] [blame] | 2581 | return OptionalPathForPath(PathForModuleSrc(m, *srcFile)) |
Colin Cross | 2fafa3e | 2019-03-05 12:39:51 -0800 | [diff] [blame] | 2582 | } |
| 2583 | return OptionalPath{} |
| 2584 | } |
| 2585 | |
Colin Cross | 25de6c3 | 2019-06-06 14:29:25 -0700 | [diff] [blame] | 2586 | func (m *moduleContext) RequiredModuleNames() []string { |
Jiyong Park | 6a8cf5f | 2019-12-30 16:31:09 +0900 | [diff] [blame] | 2587 | return m.module.RequiredModuleNames() |
Nan Zhang | 6d34b30 | 2017-02-04 17:47:46 -0800 | [diff] [blame] | 2588 | } |
| 2589 | |
Colin Cross | 25de6c3 | 2019-06-06 14:29:25 -0700 | [diff] [blame] | 2590 | func (m *moduleContext) HostRequiredModuleNames() []string { |
Jiyong Park | 6a8cf5f | 2019-12-30 16:31:09 +0900 | [diff] [blame] | 2591 | return m.module.HostRequiredModuleNames() |
Sasha Smundak | b6d2305 | 2019-04-01 18:37:36 -0700 | [diff] [blame] | 2592 | } |
| 2593 | |
Colin Cross | 25de6c3 | 2019-06-06 14:29:25 -0700 | [diff] [blame] | 2594 | func (m *moduleContext) TargetRequiredModuleNames() []string { |
Jiyong Park | 6a8cf5f | 2019-12-30 16:31:09 +0900 | [diff] [blame] | 2595 | return m.module.TargetRequiredModuleNames() |
Sasha Smundak | b6d2305 | 2019-04-01 18:37:36 -0700 | [diff] [blame] | 2596 | } |
| 2597 | |
Colin Cross | 463a90e | 2015-06-17 14:20:06 -0700 | [diff] [blame] | 2598 | func init() { |
Colin Cross | 798bfce | 2016-10-12 14:28:16 -0700 | [diff] [blame] | 2599 | RegisterSingletonType("buildtarget", BuildTargetSingleton) |
Colin Cross | 463a90e | 2015-06-17 14:20:06 -0700 | [diff] [blame] | 2600 | } |
| 2601 | |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 2602 | func BuildTargetSingleton() Singleton { |
Colin Cross | 1f8c52b | 2015-06-16 16:38:17 -0700 | [diff] [blame] | 2603 | return &buildTargetSingleton{} |
| 2604 | } |
| 2605 | |
Colin Cross | 87d8b56 | 2017-04-25 10:01:55 -0700 | [diff] [blame] | 2606 | func parentDir(dir string) string { |
| 2607 | dir, _ = filepath.Split(dir) |
| 2608 | return filepath.Clean(dir) |
| 2609 | } |
| 2610 | |
Colin Cross | 1f8c52b | 2015-06-16 16:38:17 -0700 | [diff] [blame] | 2611 | type buildTargetSingleton struct{} |
| 2612 | |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 2613 | func (c *buildTargetSingleton) GenerateBuildActions(ctx SingletonContext) { |
| 2614 | var checkbuildDeps Paths |
Colin Cross | 1f8c52b | 2015-06-16 16:38:17 -0700 | [diff] [blame] | 2615 | |
Colin Cross | c3d87d3 | 2020-06-04 13:25:17 -0700 | [diff] [blame] | 2616 | mmTarget := func(dir string) string { |
| 2617 | return "MODULES-IN-" + strings.Replace(filepath.Clean(dir), "/", "-", -1) |
Colin Cross | 87d8b56 | 2017-04-25 10:01:55 -0700 | [diff] [blame] | 2618 | } |
| 2619 | |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 2620 | modulesInDir := make(map[string]Paths) |
Colin Cross | 1f8c52b | 2015-06-16 16:38:17 -0700 | [diff] [blame] | 2621 | |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 2622 | ctx.VisitAllModules(func(module Module) { |
| 2623 | blueprintDir := module.base().blueprintDir |
| 2624 | installTarget := module.base().installTarget |
| 2625 | checkbuildTarget := module.base().checkbuildTarget |
Colin Cross | 1f8c52b | 2015-06-16 16:38:17 -0700 | [diff] [blame] | 2626 | |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 2627 | if checkbuildTarget != nil { |
| 2628 | checkbuildDeps = append(checkbuildDeps, checkbuildTarget) |
| 2629 | modulesInDir[blueprintDir] = append(modulesInDir[blueprintDir], checkbuildTarget) |
| 2630 | } |
Colin Cross | 1f8c52b | 2015-06-16 16:38:17 -0700 | [diff] [blame] | 2631 | |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 2632 | if installTarget != nil { |
| 2633 | modulesInDir[blueprintDir] = append(modulesInDir[blueprintDir], installTarget) |
Colin Cross | 1f8c52b | 2015-06-16 16:38:17 -0700 | [diff] [blame] | 2634 | } |
| 2635 | }) |
| 2636 | |
Dan Willemsen | 5ba07e8 | 2015-12-11 13:51:06 -0800 | [diff] [blame] | 2637 | suffix := "" |
Colin Cross | aabf679 | 2017-11-29 00:27:14 -0800 | [diff] [blame] | 2638 | if ctx.Config().EmbeddedInMake() { |
Dan Willemsen | 5ba07e8 | 2015-12-11 13:51:06 -0800 | [diff] [blame] | 2639 | suffix = "-soong" |
| 2640 | } |
| 2641 | |
Colin Cross | 1f8c52b | 2015-06-16 16:38:17 -0700 | [diff] [blame] | 2642 | // Create a top-level checkbuild target that depends on all modules |
Colin Cross | c3d87d3 | 2020-06-04 13:25:17 -0700 | [diff] [blame] | 2643 | ctx.Phony("checkbuild"+suffix, checkbuildDeps...) |
Colin Cross | 1f8c52b | 2015-06-16 16:38:17 -0700 | [diff] [blame] | 2644 | |
Dan Willemsen | d2e95fb | 2017-09-20 14:30:50 -0700 | [diff] [blame] | 2645 | // Make will generate the MODULES-IN-* targets |
Colin Cross | aabf679 | 2017-11-29 00:27:14 -0800 | [diff] [blame] | 2646 | if ctx.Config().EmbeddedInMake() { |
Dan Willemsen | d2e95fb | 2017-09-20 14:30:50 -0700 | [diff] [blame] | 2647 | return |
| 2648 | } |
| 2649 | |
Colin Cross | 87d8b56 | 2017-04-25 10:01:55 -0700 | [diff] [blame] | 2650 | // Ensure ancestor directories are in modulesInDir |
Inseob Kim | 1a365c6 | 2019-06-08 15:47:51 +0900 | [diff] [blame] | 2651 | dirs := SortedStringKeys(modulesInDir) |
Colin Cross | 87d8b56 | 2017-04-25 10:01:55 -0700 | [diff] [blame] | 2652 | for _, dir := range dirs { |
| 2653 | dir := parentDir(dir) |
| 2654 | for dir != "." && dir != "/" { |
| 2655 | if _, exists := modulesInDir[dir]; exists { |
| 2656 | break |
| 2657 | } |
| 2658 | modulesInDir[dir] = nil |
| 2659 | dir = parentDir(dir) |
| 2660 | } |
| 2661 | } |
| 2662 | |
| 2663 | // Make directories build their direct subdirectories |
Colin Cross | 87d8b56 | 2017-04-25 10:01:55 -0700 | [diff] [blame] | 2664 | for _, dir := range dirs { |
| 2665 | p := parentDir(dir) |
| 2666 | if p != "." && p != "/" { |
Colin Cross | c3d87d3 | 2020-06-04 13:25:17 -0700 | [diff] [blame] | 2667 | modulesInDir[p] = append(modulesInDir[p], PathForPhony(ctx, mmTarget(dir))) |
Colin Cross | 87d8b56 | 2017-04-25 10:01:55 -0700 | [diff] [blame] | 2668 | } |
| 2669 | } |
| 2670 | |
Dan Willemsen | d2e95fb | 2017-09-20 14:30:50 -0700 | [diff] [blame] | 2671 | // Create a MODULES-IN-<directory> target that depends on all modules in a directory, and |
| 2672 | // depends on the MODULES-IN-* targets of all of its subdirectories that contain Android.bp |
| 2673 | // files. |
Colin Cross | 1f8c52b | 2015-06-16 16:38:17 -0700 | [diff] [blame] | 2674 | for _, dir := range dirs { |
Colin Cross | c3d87d3 | 2020-06-04 13:25:17 -0700 | [diff] [blame] | 2675 | ctx.Phony(mmTarget(dir), modulesInDir[dir]...) |
Colin Cross | 1f8c52b | 2015-06-16 16:38:17 -0700 | [diff] [blame] | 2676 | } |
Dan Willemsen | 61d88b8 | 2017-09-20 17:29:08 -0700 | [diff] [blame] | 2677 | |
| 2678 | // Create (host|host-cross|target)-<OS> phony rules to build a reduced checkbuild. |
Jiyong Park | 1613e55 | 2020-09-14 19:43:17 +0900 | [diff] [blame] | 2679 | type osAndCross struct { |
| 2680 | os OsType |
| 2681 | hostCross bool |
| 2682 | } |
| 2683 | osDeps := map[osAndCross]Paths{} |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 2684 | ctx.VisitAllModules(func(module Module) { |
| 2685 | if module.Enabled() { |
Jiyong Park | 1613e55 | 2020-09-14 19:43:17 +0900 | [diff] [blame] | 2686 | key := osAndCross{os: module.Target().Os, hostCross: module.Target().HostCross} |
| 2687 | osDeps[key] = append(osDeps[key], module.base().checkbuildFiles...) |
Dan Willemsen | 61d88b8 | 2017-09-20 17:29:08 -0700 | [diff] [blame] | 2688 | } |
| 2689 | }) |
| 2690 | |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 2691 | osClass := make(map[string]Paths) |
Jiyong Park | 1613e55 | 2020-09-14 19:43:17 +0900 | [diff] [blame] | 2692 | for key, deps := range osDeps { |
Dan Willemsen | 61d88b8 | 2017-09-20 17:29:08 -0700 | [diff] [blame] | 2693 | var className string |
| 2694 | |
Jiyong Park | 1613e55 | 2020-09-14 19:43:17 +0900 | [diff] [blame] | 2695 | switch key.os.Class { |
Dan Willemsen | 61d88b8 | 2017-09-20 17:29:08 -0700 | [diff] [blame] | 2696 | case Host: |
Jiyong Park | 1613e55 | 2020-09-14 19:43:17 +0900 | [diff] [blame] | 2697 | if key.hostCross { |
| 2698 | className = "host-cross" |
| 2699 | } else { |
| 2700 | className = "host" |
| 2701 | } |
Dan Willemsen | 61d88b8 | 2017-09-20 17:29:08 -0700 | [diff] [blame] | 2702 | case Device: |
| 2703 | className = "target" |
| 2704 | default: |
| 2705 | continue |
| 2706 | } |
| 2707 | |
Jiyong Park | 1613e55 | 2020-09-14 19:43:17 +0900 | [diff] [blame] | 2708 | name := className + "-" + key.os.Name |
Colin Cross | c3d87d3 | 2020-06-04 13:25:17 -0700 | [diff] [blame] | 2709 | osClass[className] = append(osClass[className], PathForPhony(ctx, name)) |
Dan Willemsen | 61d88b8 | 2017-09-20 17:29:08 -0700 | [diff] [blame] | 2710 | |
Colin Cross | c3d87d3 | 2020-06-04 13:25:17 -0700 | [diff] [blame] | 2711 | ctx.Phony(name, deps...) |
Dan Willemsen | 61d88b8 | 2017-09-20 17:29:08 -0700 | [diff] [blame] | 2712 | } |
| 2713 | |
| 2714 | // Wrap those into host|host-cross|target phony rules |
Inseob Kim | 1a365c6 | 2019-06-08 15:47:51 +0900 | [diff] [blame] | 2715 | for _, class := range SortedStringKeys(osClass) { |
Colin Cross | c3d87d3 | 2020-06-04 13:25:17 -0700 | [diff] [blame] | 2716 | ctx.Phony(class, osClass[class]...) |
Dan Willemsen | 61d88b8 | 2017-09-20 17:29:08 -0700 | [diff] [blame] | 2717 | } |
Colin Cross | 1f8c52b | 2015-06-16 16:38:17 -0700 | [diff] [blame] | 2718 | } |
Colin Cross | d779da4 | 2015-12-17 18:00:23 -0800 | [diff] [blame] | 2719 | |
Brandon Lee | 5d45c6f | 2018-08-15 15:35:38 -0700 | [diff] [blame] | 2720 | // Collect information for opening IDE project files in java/jdeps.go. |
| 2721 | type IDEInfo interface { |
| 2722 | IDEInfo(ideInfo *IdeInfo) |
| 2723 | BaseModuleName() string |
| 2724 | } |
| 2725 | |
| 2726 | // Extract the base module name from the Import name. |
| 2727 | // Often the Import name has a prefix "prebuilt_". |
| 2728 | // Remove the prefix explicitly if needed |
| 2729 | // until we find a better solution to get the Import name. |
| 2730 | type IDECustomizedModuleName interface { |
| 2731 | IDECustomizedModuleName() string |
| 2732 | } |
| 2733 | |
| 2734 | type IdeInfo struct { |
| 2735 | Deps []string `json:"dependencies,omitempty"` |
| 2736 | Srcs []string `json:"srcs,omitempty"` |
| 2737 | Aidl_include_dirs []string `json:"aidl_include_dirs,omitempty"` |
| 2738 | Jarjar_rules []string `json:"jarjar_rules,omitempty"` |
| 2739 | Jars []string `json:"jars,omitempty"` |
| 2740 | Classes []string `json:"class,omitempty"` |
| 2741 | Installed_paths []string `json:"installed,omitempty"` |
patricktu | 18c82ff | 2019-05-10 15:48:50 +0800 | [diff] [blame] | 2742 | SrcJars []string `json:"srcjars,omitempty"` |
bralee | 1fbf440 | 2020-05-21 10:11:59 +0800 | [diff] [blame] | 2743 | Paths []string `json:"path,omitempty"` |
Brandon Lee | 5d45c6f | 2018-08-15 15:35:38 -0700 | [diff] [blame] | 2744 | } |
Paul Duffin | f88d8e0 | 2020-05-07 20:21:34 +0100 | [diff] [blame] | 2745 | |
| 2746 | func CheckBlueprintSyntax(ctx BaseModuleContext, filename string, contents string) []error { |
| 2747 | bpctx := ctx.blueprintBaseModuleContext() |
| 2748 | return blueprint.CheckBlueprintSyntax(bpctx.ModuleFactories(), filename, contents) |
| 2749 | } |