-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsingleton_ctx.go
More file actions
543 lines (420 loc) · 19.6 KB
/
Copy pathsingleton_ctx.go
File metadata and controls
543 lines (420 loc) · 19.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
// Copyright 2014 Google Inc. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package blueprint
import (
"fmt"
"github.com/google/blueprint/pathtools"
)
type Singleton interface {
GenerateBuildActions(SingletonContext)
IncrementalSupported() bool
}
type SingletonContext interface {
// Config returns the config object that was passed to Context.PrepareBuildActions.
Config() interface{}
// Name returns the name of the current singleton passed to Context.RegisterSingletonType
Name() string
// ModuleName returns the name of the given Module. See BaseModuleContext.ModuleName for more information.
ModuleName(module ModuleOrProxy) string
// ModuleDir returns the directory of the given Module. See BaseModuleContext.ModuleDir for more information.
ModuleDir(module ModuleOrProxy) string
// ModuleSubDir returns the unique subdirectory name of the given Module. See ModuleContext.ModuleSubDir for
// more information.
ModuleSubDir(module ModuleOrProxy) string
// ModuleType returns the type of the given Module. See BaseModuleContext.ModuleType for more information.
ModuleType(module ModuleOrProxy) string
// BlueprintFile returns the path of the Blueprint file that defined the given module.
BlueprintFile(module ModuleOrProxy) string
// ModuleProvider returns the value, if any, for the provider for a module. If the value for the
// provider was not set it returns the zero value of the type of the provider, which means the
// return value can always be type-asserted to the type of the provider. The return value should
// always be considered read-only. It panics if called before the appropriate mutator or
// GenerateBuildActions pass for the provider on the module.
ModuleProvider(module ModuleOrProxy, provider AnyProviderKey) (any, bool)
// SetSingletonProvider sets the value for a provider for the current singleton.
// It panics if not called during the appropriate GenerateBuildActions pass for
// the provider, if the provider is not registered as a singleton provider, if the value
// is not of the appropriate type, or if the value has already been set. The value should not
// be modified after being passed to SetSingletonProvider.
SetSingletonProvider(provider AnyProviderKey, value any)
// OtherSingletonProvider returns the value, if any, for the provider for a singleton. If the value for the
// provider was not set it returns the zero value of the type of the provider, which means the
// return value can always be type-asserted to the type of the provider. The return value should
// always be considered read-only. It panics if called before the appropriate
// GenerateBuildActions completes for the provider on the singleton, or if the provider is not
// registered as a singleton provider.
OtherSingletonProvider(singleton SingletonProxy, provider AnyProviderKey) (any, bool)
// ModuleErrorf reports an error at the line number of the module type in the module definition.
ModuleErrorf(module ModuleOrProxy, format string, args ...interface{})
// Errorf reports an error at the specified position of the module definition file.
Errorf(format string, args ...interface{})
// OtherModulePropertyErrorf reports an error on the line number of the given property of the given module
OtherModulePropertyErrorf(module ModuleOrProxy, property string, format string, args ...interface{})
// Failed returns true if any errors have been reported. In most cases the singleton can continue with generating
// build rules after an error, allowing it to report additional errors in a single run, but in cases where the error
// has prevented the singleton from creating necessary data it can return early when Failed returns true.
Failed() bool
// Variable creates a new ninja variable scoped to the singleton. It can be referenced by calls to Rule and Build
// in the same singleton.
Variable(pctx PackageContext, name, value string)
// Rule creates a new ninja rule scoped to the singleton. It can be referenced by calls to Build in the same
// singleton.
Rule(pctx PackageContext, name string, params RuleParams, argNames ...string) Rule
// Build creates a new ninja build statement.
Build(pctx PackageContext, params BuildParams)
// RequireNinjaVersion sets the generated ninja manifest to require at least the specified version of ninja.
RequireNinjaVersion(major, minor, micro int)
// SetOutDir sets the value of the top-level "builddir" Ninja variable
// that controls where Ninja stores its build log files. This value can be
// set at most one time for a single build, later calls are ignored.
SetOutDir(pctx PackageContext, value string)
// AddSubninja adds a ninja file to include with subninja. This should likely
// only ever be used inside bootstrap to handle glob rules.
AddSubninja(file string)
// Eval takes a string with embedded ninja variables, and returns a string
// with all of the variables recursively expanded. Any variables references
// are expanded in the scope of the PackageContext.
Eval(pctx PackageContext, ninjaStr string) (string, error)
// VisitAllModules calls visit for each defined variant of each module in an unspecified order.
VisitAllModules(visit func(Module))
// VisitAllModuleProxies calls visit for each defined variant of each module in an unspecified order.
VisitAllModuleProxies(visit func(proxy ModuleProxy))
// VisitAllModulesOrProxies calls visit for each defined variant of each module in an unspecified order,
// passing a Module if the module did not call FreeModuleAfterGenerateBuildActions, or a ModuleProxy if
// it did.
VisitAllModulesOrProxies(visit func(ModuleOrProxy))
// VisitAllModules calls pred for each defined variant of each module in an unspecified order, and if pred returns
// true calls visit.
VisitAllModulesIf(pred func(Module) bool, visit func(Module))
// VisitDirectDeps calls visit for each direct dependency of the Module. If there are
// multiple direct dependencies on the same module visit will be called multiple times on
// that module and OtherModuleDependencyTag will return a different tag for each.
//
// The Module passed to the visit function should not be retained outside of the visit
// function, it may be invalidated by future mutators.
VisitDirectDeps(module Module, visit func(Module))
// VisitDirectDepsIf calls pred for each direct dependency of the Module, and if pred
// returns true calls visit. If there are multiple direct dependencies on the same module
// pred and visit will be called multiple times on that module and OtherModuleDependencyTag
// will return a different tag for each.
//
// The Module passed to the visit function should not be retained outside of the visit
// function, it may be invalidated by future mutators.
VisitDirectDepsIf(module Module, pred func(Module) bool, visit func(Module))
// VisitDirectDepsProxies calls visit for each direct dependency of the ModuleProxy. If there are
// multiple direct dependencies on the same module visit will be called multiple times on
// that module and OtherModuleDependencyTag will return a different tag for each.
//
// The ModuleProxy passed to the visit function should not be retained outside of the visit
// function, it may be invalidated by future mutators.
VisitDirectDepsProxies(module ModuleProxy, visit func(ModuleProxy))
// VisitAllModuleVariants calls visit for each variant of the given module.
VisitAllModuleVariants(module Module, visit func(Module))
// VisitAllModuleVariantProxies calls visit for each variant of the given module.
VisitAllModuleVariantProxies(module ModuleProxy, visit func(proxy ModuleProxy))
VisitAllSingletons(visit func(singleton SingletonProxy))
// PrimaryModule returns the first variant of the given module. This can be used to perform
// singleton actions that are only done once for all variants of a module.
PrimaryModule(module Module) Module
// PrimaryModuleProxy returns the proxy of the first variant of the given module.
// This can be used to perform singleton actions that are only done once for
// all variants of a module.
PrimaryModuleProxy(module ModuleProxy) ModuleProxy
// IsPrimaryModule returns if the given module is the first variant. This can be used to perform
// singleton actions that are only done once for all variants of a module.
IsPrimaryModule(module ModuleOrProxy) bool
// IsFinalModule returns if the given module is the last variant. This can be used to perform
// singleton actions that are only done once for all variants of a module.
IsFinalModule(module ModuleOrProxy) bool
// AddNinjaFileDeps adds dependencies on the specified files to the rule that creates the ninja manifest. The
// primary builder will be rerun whenever the specified files are modified.
AddNinjaFileDeps(deps ...string)
// GlobWithDeps returns a list of files and directories that match the
// specified pattern but do not match any of the patterns in excludes.
// Any directories will have a '/' suffix. It also adds efficient
// dependencies to rerun the primary builder whenever a file matching
// the pattern as added or removed, without rerunning if a file that
// does not match the pattern is added to a searched directory.
GlobWithDeps(pattern string, excludes []string) ([]string, error)
// Fs returns a pathtools.Filesystem that can be used to interact with files. Using the Filesystem interface allows
// the singleton to be used in build system tests that run against a mock filesystem.
Fs() pathtools.FileSystem
// ModuleVariantsFromName returns the list of module variants named `name` in the same namespace as `referer`.
// Allows generating build actions for `referer` based on the metadata for `name` deferred until the singleton context.
ModuleVariantsFromName(referer ModuleProxy, name string) []ModuleProxy
// HasMutatorFinished returns true if the given mutator has finished running.
// It will panic if given an invalid mutator name.
HasMutatorFinished(mutatorName string) bool
// OtherModuleDependencyTag returns the dependency tag used to depend on a module, or nil if there is no dependency
// on the module. When called inside a Visit* method with current module being visited, and there are multiple
// dependencies on the module being visited, it returns the dependency tag used for the current dependency.
OtherModuleDependencyTag(module ModuleOrProxy) DependencyTag
GetIncrementalAnalysis() bool
// OtherModuleNamespace returns the namespace of the module.
OtherModuleNamespace(module ModuleOrProxy) Namespace
}
type SingletonProxy struct {
singleton *singletonInfo
}
var _ SingletonContext = (*singletonContext)(nil)
type singletonContext struct {
singleton *singletonInfo
context *Context
config interface{}
scope *localScope
globals *liveTracker
ninjaFileDeps []string
errs []error
visitingDep depInfo
actionDefs localBuildActions
depProviders map[int]bool
}
func (s *singletonContext) Config() interface{} {
return s.config
}
func (s *singletonContext) Name() string {
return s.singleton.name
}
func (s *singletonContext) ModuleName(logicModule ModuleOrProxy) string {
return s.context.ModuleName(logicModule)
}
func (s *singletonContext) ModuleDir(logicModule ModuleOrProxy) string {
return s.context.ModuleDir(logicModule)
}
func (s *singletonContext) ModuleSubDir(logicModule ModuleOrProxy) string {
return s.context.ModuleSubDir(logicModule)
}
func (s *singletonContext) ModuleType(logicModule ModuleOrProxy) string {
return s.context.ModuleType(logicModule)
}
func (s *singletonContext) ModuleProvider(logicModule ModuleOrProxy, provider AnyProviderKey) (any, bool) {
s.depProviders[provider.provider().id] = true
return s.context.ModuleProvider(logicModule, provider)
}
func (s *singletonContext) SetSingletonProvider(provider AnyProviderKey, value any) {
s.context.setSingletonProvider(s.singleton, provider.provider(), value)
}
func (s *singletonContext) OtherSingletonProvider(singleton SingletonProxy, provider AnyProviderKey) (any, bool) {
s.depProviders[provider.provider().id] = true
return s.context.singletonProvider(singleton.singleton, provider.provider())
}
func (s *singletonContext) BlueprintFile(logicModule ModuleOrProxy) string {
return s.context.BlueprintFile(logicModule)
}
func (s *singletonContext) error(err error) {
if err != nil {
s.errs = append(s.errs, err)
}
}
func (s *singletonContext) ModuleErrorf(logicModule ModuleOrProxy, format string,
args ...interface{}) {
s.error(s.context.ModuleErrorf(logicModule, format, args...))
}
func (s *singletonContext) Errorf(format string, args ...interface{}) {
// TODO: Make this not result in the error being printed as "internal error"
s.error(fmt.Errorf(format, args...))
}
func (s *singletonContext) OtherModulePropertyErrorf(logicModule ModuleOrProxy, property string, format string,
args ...interface{}) {
s.error(s.context.PropertyErrorf(logicModule, property, format, args...))
}
func (s *singletonContext) Failed() bool {
return len(s.errs) > 0
}
func (s *singletonContext) Variable(pctx PackageContext, name, value string) {
s.scope.ReparentTo(pctx)
v, err := s.scope.AddLocalVariable(name, value)
if err != nil {
panic(err)
}
s.actionDefs.variables = append(s.actionDefs.variables, v)
}
func (s *singletonContext) Rule(pctx PackageContext, name string,
params RuleParams, argNames ...string) Rule {
s.scope.ReparentTo(pctx)
r, err := s.scope.AddLocalRule(name, ¶ms, argNames...)
if err != nil {
panic(err)
}
s.actionDefs.rules = append(s.actionDefs.rules, r)
return r
}
func (s *singletonContext) Build(pctx PackageContext, params BuildParams) {
s.scope.ReparentTo(pctx)
def, err := parseBuildParams(s.scope, ¶ms, map[string]string{
"module_name": s.singleton.name,
"module_type": "singleton",
})
if err != nil {
panic(err)
}
s.actionDefs.buildDefs = append(s.actionDefs.buildDefs, def)
}
func (s *singletonContext) Eval(pctx PackageContext, str string) (string, error) {
s.scope.ReparentTo(pctx)
ninjaStr, err := parseNinjaString(s.scope, str)
if err != nil {
return "", err
}
err = s.globals.addNinjaStringDeps(ninjaStr)
if err != nil {
return "", err
}
return s.globals.Eval(ninjaStr)
}
func (s *singletonContext) RequireNinjaVersion(major, minor, micro int) {
s.context.requireNinjaVersion(major, minor, micro)
}
func (s *singletonContext) SetOutDir(pctx PackageContext, value string) {
s.scope.ReparentTo(pctx)
ninjaValue, err := parseNinjaString(s.scope, value)
if err != nil {
panic(err)
}
s.context.setOutDir(ninjaValue)
}
func (s *singletonContext) AddSubninja(file string) {
s.context.subninjas = append(s.context.subninjas, file)
}
func (s *singletonContext) VisitAllModules(visit func(Module)) {
s.context.VisitAllModules(visit)
}
func (s *singletonContext) VisitAllModulesOrProxies(visit func(ModuleOrProxy)) {
s.context.VisitAllModulesOrProxies(visit)
}
func (s *singletonContext) VisitAllModuleProxies(visit func(proxy ModuleProxy)) {
s.context.VisitAllModulesProxies(visit)
}
func (s *singletonContext) VisitAllModulesIf(pred func(Module) bool,
visit func(Module)) {
s.context.VisitAllModulesIf(pred, visit)
}
func (s *singletonContext) VisitDirectDeps(module Module, visit func(Module)) {
topModule := module.info()
defer func() {
if r := recover(); r != nil {
panic(newPanicErrorf(r, "VisitDirectDeps(%s, %s) for dependency %s",
topModule, funcName(visit), s.visitingDep.module))
}
}()
for _, dep := range topModule.directDeps {
s.visitingDep = dep
if dep.module.logicModule == nil {
panic(fmt.Errorf("VisitDirectDeps visited module %s that called FreeAfterGenerateBuildActions()", dep.module))
}
visit(dep.module.logicModule)
}
}
func (s *singletonContext) VisitDirectDepsIf(module Module, pred func(Module) bool, visit func(Module)) {
topModule := module.info()
defer func() {
if r := recover(); r != nil {
panic(newPanicErrorf(r, "VisitDirectDepsIf(%s, %s, %s) for dependency %s",
topModule, funcName(pred), funcName(visit), s.visitingDep.module))
}
}()
for _, dep := range topModule.directDeps {
s.visitingDep = dep
if dep.module.logicModule == nil {
panic(fmt.Errorf("VisitDirectDepsIf visited module %s that called FreeAfterGenerateBuildActions()", dep.module))
}
if pred(dep.module.logicModule) {
visit(dep.module.logicModule)
}
}
}
func (s *singletonContext) VisitDirectDepsProxies(module ModuleProxy, visit func(ModuleProxy)) {
topModule := module.info()
defer func() {
if r := recover(); r != nil {
panic(newPanicErrorf(r, "VisitDirectDepsProxies(%s, %s) for dependency %s",
topModule, funcName(visit), s.visitingDep.module))
}
}()
for _, dep := range topModule.directDeps {
s.visitingDep = dep
visit(ModuleProxy{dep.module})
}
}
func (s *singletonContext) OtherModuleDependencyTag(module ModuleOrProxy) DependencyTag {
if s.visitingDep.module == module.info() {
return s.visitingDep.tag
}
return nil
}
func (s *singletonContext) PrimaryModule(module Module) Module {
return s.context.PrimaryModule(module)
}
func (s *singletonContext) PrimaryModuleProxy(module ModuleProxy) ModuleProxy {
return ModuleProxy{s.context.primaryModule(module.info())}
}
func (s *singletonContext) IsPrimaryModule(module ModuleOrProxy) bool {
return s.context.IsPrimaryModule(module)
}
func (s *singletonContext) IsFinalModule(module ModuleOrProxy) bool {
return s.context.IsFinalModule(module)
}
func (s *singletonContext) VisitAllModuleVariants(module Module, visit func(Module)) {
s.context.VisitAllModuleVariants(module, visit)
}
func (s *singletonContext) VisitAllModuleVariantProxies(module ModuleProxy, visit func(proxy ModuleProxy)) {
s.context.VisitAllModuleVariantProxies(module, visitProxyAdaptor(visit))
}
func (s *singletonContext) VisitAllSingletons(visit func(singleton SingletonProxy)) {
if s.singleton.parallel {
panic(fmt.Sprintf("VisitAllSingletons not allowed in parallel singletons %s", s.Name()))
}
s.context.VisitAllSingletons(visit)
}
func (s *singletonContext) AddNinjaFileDeps(deps ...string) {
s.ninjaFileDeps = append(s.ninjaFileDeps, deps...)
}
func (s *singletonContext) GlobWithDeps(pattern string,
excludes []string) ([]string, error) {
return s.context.glob(pattern, excludes)
}
func (s *singletonContext) Fs() pathtools.FileSystem {
return s.context.fs
}
func (s *singletonContext) ModuleVariantsFromName(referer ModuleProxy, name string) []ModuleProxy {
c := s.context
refererInfo := referer.info()
if refererInfo == nil {
s.ModuleErrorf(referer, "could not find module %q", referer.Name())
return nil
}
moduleGroup, exists := c.nameInterface.ModuleFromName(name, refererInfo.namespace())
if !exists {
return nil
}
result := make([]ModuleProxy, 0, len(moduleGroup.modules))
for _, moduleInfo := range moduleGroup.modules {
result = append(result, ModuleProxy{moduleInfo})
}
return result
}
func (s *singletonContext) HasMutatorFinished(mutatorName string) bool {
return s.context.HasMutatorFinished(mutatorName)
}
func visitProxyAdaptor(visit func(proxy ModuleProxy)) func(module ModuleProxy) {
return func(module ModuleProxy) {
visit(ModuleProxy{module.info()})
}
}
func (s *singletonContext) GetIncrementalAnalysis() bool {
return s.context.GetIncrementalAnalysis()
}
func (s *singletonContext) OtherModuleNamespace(module ModuleOrProxy) Namespace {
return s.context.nameInterface.GetNamespace(newNamespaceContext(module.info()))
}