blob: 8936cac656c511c04e0177c87ce8567f44b05243 [file] [log] [blame]
Colin Cross0875c522017-11-28 17:34:01 -08001// Copyright 2017 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
15package android
16
17import (
18 "github.com/google/blueprint"
Colin Cross0875c522017-11-28 17:34:01 -080019)
20
21// SingletonContext
22type SingletonContext interface {
Colin Cross3c0a83d2023-12-12 14:13:26 -080023 blueprintSingletonContext() blueprint.SingletonContext
24
Colin Crossaabf6792017-11-29 00:27:14 -080025 Config() Config
Colin Cross65494b92019-02-07 14:25:51 -080026 DeviceConfig() DeviceConfig
Colin Cross0875c522017-11-28 17:34:01 -080027
28 ModuleName(module blueprint.Module) string
29 ModuleDir(module blueprint.Module) string
30 ModuleSubDir(module blueprint.Module) string
31 ModuleType(module blueprint.Module) string
32 BlueprintFile(module blueprint.Module) string
33
Bob Badoureef4c1c2022-05-16 12:20:04 -070034 // ModuleVariantsFromName returns the list of module variants named `name` in the same namespace as `referer` enforcing visibility rules.
35 // Allows generating build actions for `referer` based on the metadata for `name` deferred until the singleton context.
36 ModuleVariantsFromName(referer Module, name string) []Module
37
Colin Crossd27e7b82020-07-02 11:38:17 -070038 // ModuleProvider returns the value, if any, for the provider for a module. If the value for the
39 // provider was not set it returns the zero value of the type of the provider, which means the
40 // return value can always be type-asserted to the type of the provider. The return value should
41 // always be considered read-only. It panics if called before the appropriate mutator or
42 // GenerateBuildActions pass for the provider on the module.
Colin Cross3c0a83d2023-12-12 14:13:26 -080043 ModuleProvider(module blueprint.Module, provider blueprint.AnyProviderKey) any
Colin Crossd27e7b82020-07-02 11:38:17 -070044
45 // ModuleHasProvider returns true if the provider for the given module has been set.
Colin Cross3c0a83d2023-12-12 14:13:26 -080046 ModuleHasProvider(module blueprint.Module, provider blueprint.AnyProviderKey) bool
47
48 moduleProvider(module blueprint.Module, provider blueprint.AnyProviderKey) (any, bool)
Colin Crossd27e7b82020-07-02 11:38:17 -070049
Colin Cross0875c522017-11-28 17:34:01 -080050 ModuleErrorf(module blueprint.Module, format string, args ...interface{})
51 Errorf(format string, args ...interface{})
52 Failed() bool
53
54 Variable(pctx PackageContext, name, value string)
Colin Cross59014392017-12-12 11:05:06 -080055 Rule(pctx PackageContext, name string, params blueprint.RuleParams, argNames ...string) blueprint.Rule
Colin Cross0875c522017-11-28 17:34:01 -080056 Build(pctx PackageContext, params BuildParams)
Colin Crossc3d87d32020-06-04 13:25:17 -070057
58 // Phony creates a Make-style phony rule, a rule with no commands that can depend on other
59 // phony rules or real files. Phony can be called on the same name multiple times to add
60 // additional dependencies.
61 Phony(name string, deps ...Path)
62
Colin Cross0875c522017-11-28 17:34:01 -080063 RequireNinjaVersion(major, minor, micro int)
64
Lukacs T. Berki9f6c24a2021-08-26 15:07:24 +020065 // SetOutDir sets the value of the top-level "builddir" Ninja variable
Colin Cross0875c522017-11-28 17:34:01 -080066 // that controls where Ninja stores its build log files. This value can be
67 // set at most one time for a single build, later calls are ignored.
Lukacs T. Berki9f6c24a2021-08-26 15:07:24 +020068 SetOutDir(pctx PackageContext, value string)
Colin Cross0875c522017-11-28 17:34:01 -080069
70 // Eval takes a string with embedded ninja variables, and returns a string
71 // with all of the variables recursively expanded. Any variables references
72 // are expanded in the scope of the PackageContext.
73 Eval(pctx PackageContext, ninjaStr string) (string, error)
74
Colin Cross2465c3d2018-09-28 10:19:18 -070075 VisitAllModulesBlueprint(visit func(blueprint.Module))
Colin Cross0875c522017-11-28 17:34:01 -080076 VisitAllModules(visit func(Module))
77 VisitAllModulesIf(pred func(Module) bool, visit func(Module))
Mitch Phillips3a7a31b2019-10-16 15:00:12 -070078
79 VisitDirectDeps(module Module, visit func(Module))
80 VisitDirectDepsIf(module Module, pred func(Module) bool, visit func(Module))
81
Colin Cross6b753602018-06-21 13:03:07 -070082 // Deprecated: use WalkDeps instead to support multiple dependency tags on the same module
Colin Cross0875c522017-11-28 17:34:01 -080083 VisitDepsDepthFirst(module Module, visit func(Module))
Colin Cross6b753602018-06-21 13:03:07 -070084 // Deprecated: use WalkDeps instead to support multiple dependency tags on the same module
Colin Cross0875c522017-11-28 17:34:01 -080085 VisitDepsDepthFirstIf(module Module, pred func(Module) bool,
86 visit func(Module))
87
88 VisitAllModuleVariants(module Module, visit func(Module))
89
90 PrimaryModule(module Module) Module
91 FinalModule(module Module) Module
92
93 AddNinjaFileDeps(deps ...string)
94
95 // GlobWithDeps returns a list of files that match the specified pattern but do not match any
96 // of the patterns in excludes. It also adds efficient dependencies to rerun the primary
97 // builder whenever a file matching the pattern as added or removed, without rerunning if a
98 // file that does not match the pattern is added to a searched directory.
99 GlobWithDeps(pattern string, excludes []string) ([]string, error)
Colin Cross0875c522017-11-28 17:34:01 -0800100}
101
102type singletonAdaptor struct {
103 Singleton
Colin Cross4c83e5c2019-02-25 14:54:28 -0800104
105 buildParams []BuildParams
106 ruleParams map[blueprint.Rule]blueprint.RuleParams
Colin Cross0875c522017-11-28 17:34:01 -0800107}
108
Colin Cross4c83e5c2019-02-25 14:54:28 -0800109var _ testBuildProvider = (*singletonAdaptor)(nil)
110
111func (s *singletonAdaptor) GenerateBuildActions(ctx blueprint.SingletonContext) {
112 sctx := &singletonContextAdaptor{SingletonContext: ctx}
113 if sctx.Config().captureBuild {
114 sctx.ruleParams = make(map[blueprint.Rule]blueprint.RuleParams)
115 }
116
117 s.Singleton.GenerateBuildActions(sctx)
118
119 s.buildParams = sctx.buildParams
120 s.ruleParams = sctx.ruleParams
121}
122
123func (s *singletonAdaptor) BuildParamsForTests() []BuildParams {
124 return s.buildParams
125}
126
127func (s *singletonAdaptor) RuleParamsForTests() map[blueprint.Rule]blueprint.RuleParams {
128 return s.ruleParams
Colin Cross0875c522017-11-28 17:34:01 -0800129}
130
131type Singleton interface {
132 GenerateBuildActions(SingletonContext)
133}
134
135type singletonContextAdaptor struct {
136 blueprint.SingletonContext
Colin Cross4c83e5c2019-02-25 14:54:28 -0800137
138 buildParams []BuildParams
139 ruleParams map[blueprint.Rule]blueprint.RuleParams
Colin Cross0875c522017-11-28 17:34:01 -0800140}
141
Colin Cross3c0a83d2023-12-12 14:13:26 -0800142func (s *singletonContextAdaptor) blueprintSingletonContext() blueprint.SingletonContext {
143 return s.SingletonContext
144}
145
Colin Cross4c83e5c2019-02-25 14:54:28 -0800146func (s *singletonContextAdaptor) Config() Config {
Colin Crossaabf6792017-11-29 00:27:14 -0800147 return s.SingletonContext.Config().(Config)
148}
149
Colin Cross4c83e5c2019-02-25 14:54:28 -0800150func (s *singletonContextAdaptor) DeviceConfig() DeviceConfig {
Colin Cross65494b92019-02-07 14:25:51 -0800151 return DeviceConfig{s.Config().deviceConfig}
152}
153
Colin Cross4c83e5c2019-02-25 14:54:28 -0800154func (s *singletonContextAdaptor) Variable(pctx PackageContext, name, value string) {
Colin Cross0875c522017-11-28 17:34:01 -0800155 s.SingletonContext.Variable(pctx.PackageContext, name, value)
156}
157
Colin Cross4c83e5c2019-02-25 14:54:28 -0800158func (s *singletonContextAdaptor) Rule(pctx PackageContext, name string, params blueprint.RuleParams, argNames ...string) blueprint.Rule {
Ramy Medhat944839a2020-03-31 22:14:52 -0400159 if s.Config().UseRemoteBuild() {
160 if params.Pool == nil {
161 // When USE_GOMA=true or USE_RBE=true are set and the rule is not supported by goma/RBE, restrict
162 // jobs to the local parallelism value
163 params.Pool = localPool
164 } else if params.Pool == remotePool {
165 // remotePool is a fake pool used to identify rule that are supported for remoting. If the rule's
166 // pool is the remotePool, replace with nil so that ninja runs it at NINJA_REMOTE_NUM_JOBS
167 // parallelism.
168 params.Pool = nil
169 }
Colin Cross2e2dbc22019-09-25 13:31:46 -0700170 }
Colin Cross4c83e5c2019-02-25 14:54:28 -0800171 rule := s.SingletonContext.Rule(pctx.PackageContext, name, params, argNames...)
172 if s.Config().captureBuild {
173 s.ruleParams[rule] = params
174 }
175 return rule
Colin Cross0875c522017-11-28 17:34:01 -0800176}
177
Colin Cross4c83e5c2019-02-25 14:54:28 -0800178func (s *singletonContextAdaptor) Build(pctx PackageContext, params BuildParams) {
179 if s.Config().captureBuild {
180 s.buildParams = append(s.buildParams, params)
181 }
Colin Cross0875c522017-11-28 17:34:01 -0800182 bparams := convertBuildParams(params)
Jingwen Chence679d22020-09-23 04:30:02 +0000183 err := validateBuildParams(bparams)
184 if err != nil {
185 s.Errorf("%s: build parameter validation failed: %s", s.Name(), err.Error())
186 }
Colin Cross0875c522017-11-28 17:34:01 -0800187 s.SingletonContext.Build(pctx.PackageContext, bparams)
188
189}
190
Colin Crossc3d87d32020-06-04 13:25:17 -0700191func (s *singletonContextAdaptor) Phony(name string, deps ...Path) {
192 addPhony(s.Config(), name, deps...)
193}
194
Lukacs T. Berki9f6c24a2021-08-26 15:07:24 +0200195func (s *singletonContextAdaptor) SetOutDir(pctx PackageContext, value string) {
196 s.SingletonContext.SetOutDir(pctx.PackageContext, value)
Colin Cross0875c522017-11-28 17:34:01 -0800197}
198
Colin Cross4c83e5c2019-02-25 14:54:28 -0800199func (s *singletonContextAdaptor) Eval(pctx PackageContext, ninjaStr string) (string, error) {
Colin Cross0875c522017-11-28 17:34:01 -0800200 return s.SingletonContext.Eval(pctx.PackageContext, ninjaStr)
201}
202
203// visitAdaptor wraps a visit function that takes an android.Module parameter into
204// a function that takes an blueprint.Module parameter and only calls the visit function if the
205// blueprint.Module is an android.Module.
206func visitAdaptor(visit func(Module)) func(blueprint.Module) {
207 return func(module blueprint.Module) {
208 if aModule, ok := module.(Module); ok {
209 visit(aModule)
210 }
211 }
212}
213
214// predAdaptor wraps a pred function that takes an android.Module parameter
215// into a function that takes an blueprint.Module parameter and only calls the visit function if the
216// blueprint.Module is an android.Module, otherwise returns false.
217func predAdaptor(pred func(Module) bool) func(blueprint.Module) bool {
218 return func(module blueprint.Module) bool {
219 if aModule, ok := module.(Module); ok {
220 return pred(aModule)
221 } else {
222 return false
223 }
224 }
225}
226
Colin Cross4c83e5c2019-02-25 14:54:28 -0800227func (s *singletonContextAdaptor) VisitAllModulesBlueprint(visit func(blueprint.Module)) {
Colin Cross2465c3d2018-09-28 10:19:18 -0700228 s.SingletonContext.VisitAllModules(visit)
229}
230
Colin Cross4c83e5c2019-02-25 14:54:28 -0800231func (s *singletonContextAdaptor) VisitAllModules(visit func(Module)) {
Colin Cross0875c522017-11-28 17:34:01 -0800232 s.SingletonContext.VisitAllModules(visitAdaptor(visit))
233}
234
Colin Cross4c83e5c2019-02-25 14:54:28 -0800235func (s *singletonContextAdaptor) VisitAllModulesIf(pred func(Module) bool, visit func(Module)) {
Colin Cross0875c522017-11-28 17:34:01 -0800236 s.SingletonContext.VisitAllModulesIf(predAdaptor(pred), visitAdaptor(visit))
237}
238
Mitch Phillips3a7a31b2019-10-16 15:00:12 -0700239func (s *singletonContextAdaptor) VisitDirectDeps(module Module, visit func(Module)) {
240 s.SingletonContext.VisitDirectDeps(module, visitAdaptor(visit))
241}
242
243func (s *singletonContextAdaptor) VisitDirectDepsIf(module Module, pred func(Module) bool, visit func(Module)) {
244 s.SingletonContext.VisitDirectDepsIf(module, predAdaptor(pred), visitAdaptor(visit))
245}
246
Colin Cross4c83e5c2019-02-25 14:54:28 -0800247func (s *singletonContextAdaptor) VisitDepsDepthFirst(module Module, visit func(Module)) {
Colin Cross0875c522017-11-28 17:34:01 -0800248 s.SingletonContext.VisitDepsDepthFirst(module, visitAdaptor(visit))
249}
250
Colin Cross4c83e5c2019-02-25 14:54:28 -0800251func (s *singletonContextAdaptor) VisitDepsDepthFirstIf(module Module, pred func(Module) bool, visit func(Module)) {
Colin Cross0875c522017-11-28 17:34:01 -0800252 s.SingletonContext.VisitDepsDepthFirstIf(module, predAdaptor(pred), visitAdaptor(visit))
253}
254
Colin Cross4c83e5c2019-02-25 14:54:28 -0800255func (s *singletonContextAdaptor) VisitAllModuleVariants(module Module, visit func(Module)) {
Colin Cross0875c522017-11-28 17:34:01 -0800256 s.SingletonContext.VisitAllModuleVariants(module, visitAdaptor(visit))
257}
258
Colin Cross4c83e5c2019-02-25 14:54:28 -0800259func (s *singletonContextAdaptor) PrimaryModule(module Module) Module {
Colin Cross0875c522017-11-28 17:34:01 -0800260 return s.SingletonContext.PrimaryModule(module).(Module)
261}
262
Colin Cross4c83e5c2019-02-25 14:54:28 -0800263func (s *singletonContextAdaptor) FinalModule(module Module) Module {
Colin Cross0875c522017-11-28 17:34:01 -0800264 return s.SingletonContext.FinalModule(module).(Module)
265}
Bob Badoureef4c1c2022-05-16 12:20:04 -0700266
267func (s *singletonContextAdaptor) ModuleVariantsFromName(referer Module, name string) []Module {
268 // get qualified module name for visibility enforcement
269 qualified := createQualifiedModuleName(s.ModuleName(referer), s.ModuleDir(referer))
270
271 modules := s.SingletonContext.ModuleVariantsFromName(referer, name)
272 result := make([]Module, 0, len(modules))
273 for _, m := range modules {
274 if module, ok := m.(Module); ok {
275 // enforce visibility
276 depName := s.ModuleName(module)
277 depDir := s.ModuleDir(module)
278 depQualified := qualifiedModuleName{depDir, depName}
279 // Targets are always visible to other targets in their own package.
280 if depQualified.pkg != qualified.pkg {
281 rule := effectiveVisibilityRules(s.Config(), depQualified)
282 if !rule.matches(qualified) {
Bob Badoura5ea2472022-05-20 16:37:26 -0700283 s.ModuleErrorf(referer, "module %q references %q which is not visible to this module\nYou may need to add %q to its visibility",
284 referer.Name(), depQualified, "//"+s.ModuleDir(referer))
Bob Badoureef4c1c2022-05-16 12:20:04 -0700285 continue
286 }
287 }
288 result = append(result, module)
289 }
290 }
291 return result
292}
Colin Cross3c0a83d2023-12-12 14:13:26 -0800293
294func (s *singletonContextAdaptor) ModuleProvider(module blueprint.Module, provider blueprint.AnyProviderKey) any {
295 value, _ := s.SingletonContext.ModuleProvider(module, provider)
296 return value
297}
298
299// ModuleHasProvider returns true if the provider for the given module has been set.
300func (s *singletonContextAdaptor) ModuleHasProvider(module blueprint.Module, provider blueprint.AnyProviderKey) bool {
301 _, ok := s.SingletonContext.ModuleProvider(module, provider)
302 return ok
303}
304
305func (s *singletonContextAdaptor) moduleProvider(module blueprint.Module, provider blueprint.AnyProviderKey) (any, bool) {
306 return s.SingletonContext.ModuleProvider(module, provider)
307}