blob: fa1efdc0f161aaa108c12c4d69b9c1a37e2b9fd8 [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"
19 "github.com/google/blueprint/pathtools"
20)
21
22// SingletonContext
23type SingletonContext interface {
Colin Crossaabf6792017-11-29 00:27:14 -080024 Config() Config
Colin Cross0875c522017-11-28 17:34:01 -080025
26 ModuleName(module blueprint.Module) string
27 ModuleDir(module blueprint.Module) string
28 ModuleSubDir(module blueprint.Module) string
29 ModuleType(module blueprint.Module) string
30 BlueprintFile(module blueprint.Module) string
31
32 ModuleErrorf(module blueprint.Module, format string, args ...interface{})
33 Errorf(format string, args ...interface{})
34 Failed() bool
35
36 Variable(pctx PackageContext, name, value string)
Colin Cross59014392017-12-12 11:05:06 -080037 Rule(pctx PackageContext, name string, params blueprint.RuleParams, argNames ...string) blueprint.Rule
Colin Cross0875c522017-11-28 17:34:01 -080038 Build(pctx PackageContext, params BuildParams)
39 RequireNinjaVersion(major, minor, micro int)
40
41 // SetNinjaBuildDir sets the value of the top-level "builddir" Ninja variable
42 // that controls where Ninja stores its build log files. This value can be
43 // set at most one time for a single build, later calls are ignored.
44 SetNinjaBuildDir(pctx PackageContext, value string)
45
46 // Eval takes a string with embedded ninja variables, and returns a string
47 // with all of the variables recursively expanded. Any variables references
48 // are expanded in the scope of the PackageContext.
49 Eval(pctx PackageContext, ninjaStr string) (string, error)
50
51 VisitAllModules(visit func(Module))
52 VisitAllModulesIf(pred func(Module) bool, visit func(Module))
Colin Cross6b753602018-06-21 13:03:07 -070053 // Deprecated: use WalkDeps instead to support multiple dependency tags on the same module
Colin Cross0875c522017-11-28 17:34:01 -080054 VisitDepsDepthFirst(module Module, visit func(Module))
Colin Cross6b753602018-06-21 13:03:07 -070055 // Deprecated: use WalkDeps instead to support multiple dependency tags on the same module
Colin Cross0875c522017-11-28 17:34:01 -080056 VisitDepsDepthFirstIf(module Module, pred func(Module) bool,
57 visit func(Module))
58
59 VisitAllModuleVariants(module Module, visit func(Module))
60
61 PrimaryModule(module Module) Module
62 FinalModule(module Module) Module
63
64 AddNinjaFileDeps(deps ...string)
65
66 // GlobWithDeps returns a list of files that match the specified pattern but do not match any
67 // of the patterns in excludes. It also adds efficient dependencies to rerun the primary
68 // builder whenever a file matching the pattern as added or removed, without rerunning if a
69 // file that does not match the pattern is added to a searched directory.
70 GlobWithDeps(pattern string, excludes []string) ([]string, error)
71
72 Fs() pathtools.FileSystem
73}
74
75type singletonAdaptor struct {
76 Singleton
77}
78
79func (s singletonAdaptor) GenerateBuildActions(ctx blueprint.SingletonContext) {
80 s.Singleton.GenerateBuildActions(singletonContextAdaptor{ctx})
81}
82
83type Singleton interface {
84 GenerateBuildActions(SingletonContext)
85}
86
87type singletonContextAdaptor struct {
88 blueprint.SingletonContext
89}
90
Colin Crossaabf6792017-11-29 00:27:14 -080091func (s singletonContextAdaptor) Config() Config {
92 return s.SingletonContext.Config().(Config)
93}
94
Colin Cross0875c522017-11-28 17:34:01 -080095func (s singletonContextAdaptor) Variable(pctx PackageContext, name, value string) {
96 s.SingletonContext.Variable(pctx.PackageContext, name, value)
97}
98
Colin Cross59014392017-12-12 11:05:06 -080099func (s singletonContextAdaptor) Rule(pctx PackageContext, name string, params blueprint.RuleParams, argNames ...string) blueprint.Rule {
100 return s.SingletonContext.Rule(pctx.PackageContext, name, params, argNames...)
Colin Cross0875c522017-11-28 17:34:01 -0800101}
102
103func (s singletonContextAdaptor) Build(pctx PackageContext, params BuildParams) {
104 bparams := convertBuildParams(params)
105 s.SingletonContext.Build(pctx.PackageContext, bparams)
106
107}
108
109func (s singletonContextAdaptor) SetNinjaBuildDir(pctx PackageContext, value string) {
110 s.SingletonContext.SetNinjaBuildDir(pctx.PackageContext, value)
111}
112
113func (s singletonContextAdaptor) Eval(pctx PackageContext, ninjaStr string) (string, error) {
114 return s.SingletonContext.Eval(pctx.PackageContext, ninjaStr)
115}
116
117// visitAdaptor wraps a visit function that takes an android.Module parameter into
118// a function that takes an blueprint.Module parameter and only calls the visit function if the
119// blueprint.Module is an android.Module.
120func visitAdaptor(visit func(Module)) func(blueprint.Module) {
121 return func(module blueprint.Module) {
122 if aModule, ok := module.(Module); ok {
123 visit(aModule)
124 }
125 }
126}
127
128// predAdaptor wraps a pred function that takes an android.Module parameter
129// into a function that takes an blueprint.Module parameter and only calls the visit function if the
130// blueprint.Module is an android.Module, otherwise returns false.
131func predAdaptor(pred func(Module) bool) func(blueprint.Module) bool {
132 return func(module blueprint.Module) bool {
133 if aModule, ok := module.(Module); ok {
134 return pred(aModule)
135 } else {
136 return false
137 }
138 }
139}
140
141func (s singletonContextAdaptor) VisitAllModules(visit func(Module)) {
142 s.SingletonContext.VisitAllModules(visitAdaptor(visit))
143}
144
145func (s singletonContextAdaptor) VisitAllModulesIf(pred func(Module) bool, visit func(Module)) {
146 s.SingletonContext.VisitAllModulesIf(predAdaptor(pred), visitAdaptor(visit))
147}
148
149func (s singletonContextAdaptor) VisitDepsDepthFirst(module Module, visit func(Module)) {
150 s.SingletonContext.VisitDepsDepthFirst(module, visitAdaptor(visit))
151}
152
153func (s singletonContextAdaptor) VisitDepsDepthFirstIf(module Module, pred func(Module) bool, visit func(Module)) {
154 s.SingletonContext.VisitDepsDepthFirstIf(module, predAdaptor(pred), visitAdaptor(visit))
155}
156
157func (s singletonContextAdaptor) VisitAllModuleVariants(module Module, visit func(Module)) {
158 s.SingletonContext.VisitAllModuleVariants(module, visitAdaptor(visit))
159}
160
161func (s singletonContextAdaptor) PrimaryModule(module Module) Module {
162 return s.SingletonContext.PrimaryModule(module).(Module)
163}
164
165func (s singletonContextAdaptor) FinalModule(module Module) Module {
166 return s.SingletonContext.FinalModule(module).(Module)
167}