Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 1 | // 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 | |
| 15 | package android |
| 16 | |
| 17 | import ( |
| 18 | "github.com/google/blueprint" |
| 19 | "github.com/google/blueprint/pathtools" |
| 20 | ) |
| 21 | |
| 22 | // SingletonContext |
| 23 | type SingletonContext interface { |
Colin Cross | aabf679 | 2017-11-29 00:27:14 -0800 | [diff] [blame] | 24 | Config() Config |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 25 | |
| 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 Cross | 5901439 | 2017-12-12 11:05:06 -0800 | [diff] [blame] | 37 | Rule(pctx PackageContext, name string, params blueprint.RuleParams, argNames ...string) blueprint.Rule |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 38 | 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 Cross | 6b75360 | 2018-06-21 13:03:07 -0700 | [diff] [blame] | 53 | // Deprecated: use WalkDeps instead to support multiple dependency tags on the same module |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 54 | VisitDepsDepthFirst(module Module, visit func(Module)) |
Colin Cross | 6b75360 | 2018-06-21 13:03:07 -0700 | [diff] [blame] | 55 | // Deprecated: use WalkDeps instead to support multiple dependency tags on the same module |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 56 | 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 | |
| 75 | type singletonAdaptor struct { |
| 76 | Singleton |
| 77 | } |
| 78 | |
| 79 | func (s singletonAdaptor) GenerateBuildActions(ctx blueprint.SingletonContext) { |
| 80 | s.Singleton.GenerateBuildActions(singletonContextAdaptor{ctx}) |
| 81 | } |
| 82 | |
| 83 | type Singleton interface { |
| 84 | GenerateBuildActions(SingletonContext) |
| 85 | } |
| 86 | |
| 87 | type singletonContextAdaptor struct { |
| 88 | blueprint.SingletonContext |
| 89 | } |
| 90 | |
Colin Cross | aabf679 | 2017-11-29 00:27:14 -0800 | [diff] [blame] | 91 | func (s singletonContextAdaptor) Config() Config { |
| 92 | return s.SingletonContext.Config().(Config) |
| 93 | } |
| 94 | |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 95 | func (s singletonContextAdaptor) Variable(pctx PackageContext, name, value string) { |
| 96 | s.SingletonContext.Variable(pctx.PackageContext, name, value) |
| 97 | } |
| 98 | |
Colin Cross | 5901439 | 2017-12-12 11:05:06 -0800 | [diff] [blame] | 99 | func (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 Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 101 | } |
| 102 | |
| 103 | func (s singletonContextAdaptor) Build(pctx PackageContext, params BuildParams) { |
| 104 | bparams := convertBuildParams(params) |
| 105 | s.SingletonContext.Build(pctx.PackageContext, bparams) |
| 106 | |
| 107 | } |
| 108 | |
| 109 | func (s singletonContextAdaptor) SetNinjaBuildDir(pctx PackageContext, value string) { |
| 110 | s.SingletonContext.SetNinjaBuildDir(pctx.PackageContext, value) |
| 111 | } |
| 112 | |
| 113 | func (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. |
| 120 | func 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. |
| 131 | func 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 | |
| 141 | func (s singletonContextAdaptor) VisitAllModules(visit func(Module)) { |
| 142 | s.SingletonContext.VisitAllModules(visitAdaptor(visit)) |
| 143 | } |
| 144 | |
| 145 | func (s singletonContextAdaptor) VisitAllModulesIf(pred func(Module) bool, visit func(Module)) { |
| 146 | s.SingletonContext.VisitAllModulesIf(predAdaptor(pred), visitAdaptor(visit)) |
| 147 | } |
| 148 | |
| 149 | func (s singletonContextAdaptor) VisitDepsDepthFirst(module Module, visit func(Module)) { |
| 150 | s.SingletonContext.VisitDepsDepthFirst(module, visitAdaptor(visit)) |
| 151 | } |
| 152 | |
| 153 | func (s singletonContextAdaptor) VisitDepsDepthFirstIf(module Module, pred func(Module) bool, visit func(Module)) { |
| 154 | s.SingletonContext.VisitDepsDepthFirstIf(module, predAdaptor(pred), visitAdaptor(visit)) |
| 155 | } |
| 156 | |
| 157 | func (s singletonContextAdaptor) VisitAllModuleVariants(module Module, visit func(Module)) { |
| 158 | s.SingletonContext.VisitAllModuleVariants(module, visitAdaptor(visit)) |
| 159 | } |
| 160 | |
| 161 | func (s singletonContextAdaptor) PrimaryModule(module Module) Module { |
| 162 | return s.SingletonContext.PrimaryModule(module).(Module) |
| 163 | } |
| 164 | |
| 165 | func (s singletonContextAdaptor) FinalModule(module Module) Module { |
| 166 | return s.SingletonContext.FinalModule(module).(Module) |
| 167 | } |