Dan Willemsen | 4b7d5de | 2016-01-12 23:20:28 -0800 | [diff] [blame] | 1 | // Copyright 2016 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 |
Dan Willemsen | 4b7d5de | 2016-01-12 23:20:28 -0800 | [diff] [blame] | 16 | |
| 17 | import ( |
| 18 | "bytes" |
| 19 | "fmt" |
Colin Cross | 6301c3c | 2021-09-28 17:40:21 -0700 | [diff] [blame] | 20 | "path/filepath" |
| 21 | "runtime" |
Dan Willemsen | 6a6478d | 2020-07-17 19:28:53 -0700 | [diff] [blame] | 22 | "sort" |
Colin Cross | 3165695 | 2018-05-24 16:11:20 -0700 | [diff] [blame] | 23 | "strings" |
Dan Willemsen | 4b7d5de | 2016-01-12 23:20:28 -0800 | [diff] [blame] | 24 | |
Colin Cross | 65494b9 | 2019-02-07 14:25:51 -0800 | [diff] [blame] | 25 | "github.com/google/blueprint" |
Colin Cross | c3d87d3 | 2020-06-04 13:25:17 -0700 | [diff] [blame] | 26 | "github.com/google/blueprint/pathtools" |
Dan Willemsen | 4b7d5de | 2016-01-12 23:20:28 -0800 | [diff] [blame] | 27 | "github.com/google/blueprint/proptools" |
| 28 | ) |
| 29 | |
Dan Albert | f5415d7 | 2017-08-17 16:19:59 -0700 | [diff] [blame] | 30 | func init() { |
| 31 | RegisterMakeVarsProvider(pctx, androidMakeVarsProvider) |
| 32 | } |
| 33 | |
| 34 | func androidMakeVarsProvider(ctx MakeVarsContext) { |
Dan Albert | 1a24627 | 2020-07-06 14:49:35 -0700 | [diff] [blame] | 35 | ctx.Strict("MIN_SUPPORTED_SDK_VERSION", ctx.Config().MinSupportedSdkVersion().String()) |
Dan Albert | f5415d7 | 2017-08-17 16:19:59 -0700 | [diff] [blame] | 36 | } |
| 37 | |
Paul Duffin | 8eb4573 | 2022-10-04 19:03:31 +0100 | [diff] [blame] | 38 | // ///////////////////////////////////////////////////////////////////////////// |
Dan Willemsen | 6a6478d | 2020-07-17 19:28:53 -0700 | [diff] [blame] | 39 | |
| 40 | // BaseMakeVarsContext contains the common functions for other packages to use |
| 41 | // to declare make variables |
| 42 | type BaseMakeVarsContext interface { |
Dan Willemsen | 4b7d5de | 2016-01-12 23:20:28 -0800 | [diff] [blame] | 43 | Config() Config |
Dan Willemsen | 3fb1fae | 2018-03-12 15:30:26 -0700 | [diff] [blame] | 44 | DeviceConfig() DeviceConfig |
Colin Cross | 65494b9 | 2019-02-07 14:25:51 -0800 | [diff] [blame] | 45 | AddNinjaFileDeps(deps ...string) |
Colin Cross | 65494b9 | 2019-02-07 14:25:51 -0800 | [diff] [blame] | 46 | |
Colin Cross | 65494b9 | 2019-02-07 14:25:51 -0800 | [diff] [blame] | 47 | Failed() bool |
| 48 | |
Dan Willemsen | 558e517 | 2016-05-19 16:58:46 -0700 | [diff] [blame] | 49 | // These are equivalent to Strict and Check, but do not attempt to |
| 50 | // evaluate the values before writing them to the Makefile. They can |
| 51 | // be used when all ninja variables have already been evaluated through |
| 52 | // Eval(). |
| 53 | StrictRaw(name, value string) |
| 54 | CheckRaw(name, value string) |
Colin Cross | 8177ad2 | 2019-11-04 10:27:48 -0800 | [diff] [blame] | 55 | |
| 56 | // GlobWithDeps returns a list of files that match the specified pattern but do not match any |
| 57 | // of the patterns in excludes. It also adds efficient dependencies to rerun the primary |
| 58 | // builder whenever a file matching the pattern as added or removed, without rerunning if a |
| 59 | // file that does not match the pattern is added to a searched directory. |
| 60 | GlobWithDeps(pattern string, excludes []string) ([]string, error) |
Colin Cross | c3d87d3 | 2020-06-04 13:25:17 -0700 | [diff] [blame] | 61 | |
| 62 | // Phony creates a phony rule in Make, which will allow additional DistForGoal |
| 63 | // dependencies to be added to it. Phony can be called on the same name multiple |
| 64 | // times to add additional dependencies. |
| 65 | Phony(names string, deps ...Path) |
Colin Cross | 3cda0d8 | 2019-09-24 13:40:07 -0700 | [diff] [blame] | 66 | |
| 67 | // DistForGoal creates a rule to copy one or more Paths to the artifacts |
| 68 | // directory on the build server when the specified goal is built. |
| 69 | DistForGoal(goal string, paths ...Path) |
| 70 | |
| 71 | // DistForGoalWithFilename creates a rule to copy a Path to the artifacts |
| 72 | // directory on the build server with the given filename when the specified |
| 73 | // goal is built. |
| 74 | DistForGoalWithFilename(goal string, path Path, filename string) |
| 75 | |
| 76 | // DistForGoals creates a rule to copy one or more Paths to the artifacts |
| 77 | // directory on the build server when any of the specified goals are built. |
| 78 | DistForGoals(goals []string, paths ...Path) |
| 79 | |
| 80 | // DistForGoalsWithFilename creates a rule to copy a Path to the artifacts |
| 81 | // directory on the build server with the given filename when any of the |
| 82 | // specified goals are built. |
| 83 | DistForGoalsWithFilename(goals []string, path Path, filename string) |
Dan Willemsen | 4b7d5de | 2016-01-12 23:20:28 -0800 | [diff] [blame] | 84 | } |
| 85 | |
Dan Willemsen | 6a6478d | 2020-07-17 19:28:53 -0700 | [diff] [blame] | 86 | // MakeVarsContext contains the set of functions available for MakeVarsProvider |
| 87 | // and SingletonMakeVarsProvider implementations. |
| 88 | type MakeVarsContext interface { |
| 89 | BaseMakeVarsContext |
| 90 | |
| 91 | ModuleName(module blueprint.Module) string |
| 92 | ModuleDir(module blueprint.Module) string |
| 93 | ModuleSubDir(module blueprint.Module) string |
| 94 | ModuleType(module blueprint.Module) string |
Colin Cross | 3c0a83d | 2023-12-12 14:13:26 -0800 | [diff] [blame] | 95 | moduleProvider(module blueprint.Module, key blueprint.AnyProviderKey) (any, bool) |
Dan Willemsen | 6a6478d | 2020-07-17 19:28:53 -0700 | [diff] [blame] | 96 | BlueprintFile(module blueprint.Module) string |
| 97 | |
| 98 | ModuleErrorf(module blueprint.Module, format string, args ...interface{}) |
| 99 | Errorf(format string, args ...interface{}) |
| 100 | |
| 101 | VisitAllModules(visit func(Module)) |
| 102 | VisitAllModulesIf(pred func(Module) bool, visit func(Module)) |
| 103 | |
| 104 | // Verify the make variable matches the Soong version, fail the build |
| 105 | // if it does not. If the make variable is empty, just set it. |
| 106 | Strict(name, ninjaStr string) |
| 107 | // Check to see if the make variable matches the Soong version, warn if |
| 108 | // it does not. If the make variable is empty, just set it. |
| 109 | Check(name, ninjaStr string) |
| 110 | |
| 111 | // These are equivalent to the above, but sort the make and soong |
| 112 | // variables before comparing them. They also show the unique entries |
| 113 | // in each list when displaying the difference, instead of the entire |
| 114 | // string. |
| 115 | StrictSorted(name, ninjaStr string) |
| 116 | CheckSorted(name, ninjaStr string) |
| 117 | |
| 118 | // Evaluates a ninja string and returns the result. Used if more |
| 119 | // complicated modification needs to happen before giving it to Make. |
| 120 | Eval(ninjaStr string) (string, error) |
| 121 | } |
| 122 | |
| 123 | // MakeVarsModuleContext contains the set of functions available for modules |
| 124 | // implementing the ModuleMakeVarsProvider interface. |
| 125 | type MakeVarsModuleContext interface { |
| 126 | BaseMakeVarsContext |
| 127 | } |
| 128 | |
Colin Cross | 65494b9 | 2019-02-07 14:25:51 -0800 | [diff] [blame] | 129 | var _ PathContext = MakeVarsContext(nil) |
| 130 | |
Dan Willemsen | 4b7d5de | 2016-01-12 23:20:28 -0800 | [diff] [blame] | 131 | type MakeVarsProvider func(ctx MakeVarsContext) |
| 132 | |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 133 | func RegisterMakeVarsProvider(pctx PackageContext, provider MakeVarsProvider) { |
Chris Parsons | f3c96ef | 2020-09-29 02:23:17 -0400 | [diff] [blame] | 134 | makeVarsInitProviders = append(makeVarsInitProviders, makeVarsProvider{pctx, provider}) |
Dan Willemsen | 4b7d5de | 2016-01-12 23:20:28 -0800 | [diff] [blame] | 135 | } |
| 136 | |
Colin Cross | ed023ec | 2019-02-19 12:38:45 -0800 | [diff] [blame] | 137 | // SingletonMakeVarsProvider is a Singleton with an extra method to provide extra values to be exported to Make. |
| 138 | type SingletonMakeVarsProvider interface { |
Colin Cross | ed023ec | 2019-02-19 12:38:45 -0800 | [diff] [blame] | 139 | // MakeVars uses a MakeVarsContext to provide extra values to be exported to Make. |
| 140 | MakeVars(ctx MakeVarsContext) |
| 141 | } |
| 142 | |
Colin Cross | 06fa588 | 2020-10-29 18:21:38 -0700 | [diff] [blame] | 143 | var singletonMakeVarsProvidersKey = NewOnceKey("singletonMakeVarsProvidersKey") |
| 144 | |
Colin Cross | 6ac9576 | 2021-11-09 13:17:44 -0800 | [diff] [blame] | 145 | func getSingletonMakevarsProviders(config Config) *[]makeVarsProvider { |
| 146 | return config.Once(singletonMakeVarsProvidersKey, func() interface{} { |
| 147 | return &[]makeVarsProvider{} |
| 148 | }).(*[]makeVarsProvider) |
| 149 | } |
| 150 | |
Colin Cross | 06fa588 | 2020-10-29 18:21:38 -0700 | [diff] [blame] | 151 | // registerSingletonMakeVarsProvider adds a singleton that implements SingletonMakeVarsProvider to |
| 152 | // the list of MakeVarsProviders to run. |
| 153 | func registerSingletonMakeVarsProvider(config Config, singleton SingletonMakeVarsProvider) { |
| 154 | // Singletons are registered on the Context and may be different between different Contexts, |
| 155 | // for example when running multiple tests. Store the SingletonMakeVarsProviders in the |
| 156 | // Config so they are attached to the Context. |
Colin Cross | 6ac9576 | 2021-11-09 13:17:44 -0800 | [diff] [blame] | 157 | singletonMakeVarsProviders := getSingletonMakevarsProviders(config) |
Colin Cross | 06fa588 | 2020-10-29 18:21:38 -0700 | [diff] [blame] | 158 | |
| 159 | *singletonMakeVarsProviders = append(*singletonMakeVarsProviders, |
| 160 | makeVarsProvider{pctx, singletonMakeVarsProviderAdapter(singleton)}) |
Colin Cross | ed023ec | 2019-02-19 12:38:45 -0800 | [diff] [blame] | 161 | } |
| 162 | |
Colin Cross | 06fa588 | 2020-10-29 18:21:38 -0700 | [diff] [blame] | 163 | // singletonMakeVarsProviderAdapter converts a SingletonMakeVarsProvider to a MakeVarsProvider. |
| 164 | func singletonMakeVarsProviderAdapter(singleton SingletonMakeVarsProvider) MakeVarsProvider { |
Colin Cross | ed023ec | 2019-02-19 12:38:45 -0800 | [diff] [blame] | 165 | return func(ctx MakeVarsContext) { singleton.MakeVars(ctx) } |
| 166 | } |
| 167 | |
Dan Willemsen | 6a6478d | 2020-07-17 19:28:53 -0700 | [diff] [blame] | 168 | // ModuleMakeVarsProvider is a Module with an extra method to provide extra values to be exported to Make. |
| 169 | type ModuleMakeVarsProvider interface { |
| 170 | Module |
| 171 | |
| 172 | // MakeVars uses a MakeVarsModuleContext to provide extra values to be exported to Make. |
| 173 | MakeVars(ctx MakeVarsModuleContext) |
| 174 | } |
| 175 | |
Paul Duffin | 8eb4573 | 2022-10-04 19:03:31 +0100 | [diff] [blame] | 176 | // ///////////////////////////////////////////////////////////////////////////// |
Dan Willemsen | 4b7d5de | 2016-01-12 23:20:28 -0800 | [diff] [blame] | 177 | |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 178 | func makeVarsSingletonFunc() Singleton { |
Dan Willemsen | 4b7d5de | 2016-01-12 23:20:28 -0800 | [diff] [blame] | 179 | return &makeVarsSingleton{} |
| 180 | } |
| 181 | |
Colin Cross | 6ac9576 | 2021-11-09 13:17:44 -0800 | [diff] [blame] | 182 | type makeVarsSingleton struct { |
Paul Duffin | 8eb4573 | 2022-10-04 19:03:31 +0100 | [diff] [blame] | 183 | varsForTesting []makeVarsVariable |
Colin Cross | 6ac9576 | 2021-11-09 13:17:44 -0800 | [diff] [blame] | 184 | installsForTesting []byte |
| 185 | } |
Dan Willemsen | 4b7d5de | 2016-01-12 23:20:28 -0800 | [diff] [blame] | 186 | |
| 187 | type makeVarsProvider struct { |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 188 | pctx PackageContext |
Dan Willemsen | 4b7d5de | 2016-01-12 23:20:28 -0800 | [diff] [blame] | 189 | call MakeVarsProvider |
| 190 | } |
| 191 | |
Chris Parsons | f3c96ef | 2020-09-29 02:23:17 -0400 | [diff] [blame] | 192 | // Collection of makevars providers that are registered in init() methods. |
| 193 | var makeVarsInitProviders []makeVarsProvider |
| 194 | |
Dan Willemsen | 4b7d5de | 2016-01-12 23:20:28 -0800 | [diff] [blame] | 195 | type makeVarsContext struct { |
Colin Cross | 65494b9 | 2019-02-07 14:25:51 -0800 | [diff] [blame] | 196 | SingletonContext |
Colin Cross | c3d87d3 | 2020-06-04 13:25:17 -0700 | [diff] [blame] | 197 | config Config |
| 198 | pctx PackageContext |
| 199 | vars []makeVarsVariable |
| 200 | phonies []phony |
Colin Cross | 3cda0d8 | 2019-09-24 13:40:07 -0700 | [diff] [blame] | 201 | dists []dist |
Dan Willemsen | 4b7d5de | 2016-01-12 23:20:28 -0800 | [diff] [blame] | 202 | } |
| 203 | |
| 204 | var _ MakeVarsContext = &makeVarsContext{} |
| 205 | |
| 206 | type makeVarsVariable struct { |
| 207 | name string |
| 208 | value string |
| 209 | sort bool |
| 210 | strict bool |
| 211 | } |
| 212 | |
Colin Cross | c3d87d3 | 2020-06-04 13:25:17 -0700 | [diff] [blame] | 213 | type phony struct { |
| 214 | name string |
| 215 | deps []string |
| 216 | } |
| 217 | |
Colin Cross | 3cda0d8 | 2019-09-24 13:40:07 -0700 | [diff] [blame] | 218 | type dist struct { |
| 219 | goals []string |
| 220 | paths []string |
| 221 | } |
| 222 | |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 223 | func (s *makeVarsSingleton) GenerateBuildActions(ctx SingletonContext) { |
Jingwen Chen | cda22c9 | 2020-11-23 00:22:30 -0500 | [diff] [blame] | 224 | if !ctx.Config().KatiEnabled() { |
Dan Willemsen | 4b7d5de | 2016-01-12 23:20:28 -0800 | [diff] [blame] | 225 | return |
| 226 | } |
| 227 | |
Colin Cross | 988414c | 2020-01-11 01:11:46 +0000 | [diff] [blame] | 228 | outFile := absolutePath(PathForOutput(ctx, |
| 229 | "make_vars"+proptools.String(ctx.Config().productVariables.Make_suffix)+".mk").String()) |
Dan Willemsen | 4b7d5de | 2016-01-12 23:20:28 -0800 | [diff] [blame] | 230 | |
Colin Cross | c3d87d3 | 2020-06-04 13:25:17 -0700 | [diff] [blame] | 231 | lateOutFile := absolutePath(PathForOutput(ctx, |
| 232 | "late"+proptools.String(ctx.Config().productVariables.Make_suffix)+".mk").String()) |
| 233 | |
Colin Cross | 6301c3c | 2021-09-28 17:40:21 -0700 | [diff] [blame] | 234 | installsFile := absolutePath(PathForOutput(ctx, |
| 235 | "installs"+proptools.String(ctx.Config().productVariables.Make_suffix)+".mk").String()) |
| 236 | |
Dan Willemsen | 4b7d5de | 2016-01-12 23:20:28 -0800 | [diff] [blame] | 237 | if ctx.Failed() { |
| 238 | return |
| 239 | } |
| 240 | |
Colin Cross | 3cda0d8 | 2019-09-24 13:40:07 -0700 | [diff] [blame] | 241 | var vars []makeVarsVariable |
| 242 | var dists []dist |
Colin Cross | c3d87d3 | 2020-06-04 13:25:17 -0700 | [diff] [blame] | 243 | var phonies []phony |
Colin Cross | 6301c3c | 2021-09-28 17:40:21 -0700 | [diff] [blame] | 244 | var katiInstalls []katiInstall |
| 245 | var katiSymlinks []katiInstall |
Colin Cross | 06fa588 | 2020-10-29 18:21:38 -0700 | [diff] [blame] | 246 | |
| 247 | providers := append([]makeVarsProvider(nil), makeVarsInitProviders...) |
Colin Cross | 6ac9576 | 2021-11-09 13:17:44 -0800 | [diff] [blame] | 248 | providers = append(providers, *getSingletonMakevarsProviders(ctx.Config())...) |
Colin Cross | 06fa588 | 2020-10-29 18:21:38 -0700 | [diff] [blame] | 249 | |
| 250 | for _, provider := range providers { |
Dan Willemsen | 4b7d5de | 2016-01-12 23:20:28 -0800 | [diff] [blame] | 251 | mctx := &makeVarsContext{ |
Colin Cross | 65494b9 | 2019-02-07 14:25:51 -0800 | [diff] [blame] | 252 | SingletonContext: ctx, |
| 253 | pctx: provider.pctx, |
Dan Willemsen | 4b7d5de | 2016-01-12 23:20:28 -0800 | [diff] [blame] | 254 | } |
| 255 | |
| 256 | provider.call(mctx) |
| 257 | |
| 258 | vars = append(vars, mctx.vars...) |
Colin Cross | c3d87d3 | 2020-06-04 13:25:17 -0700 | [diff] [blame] | 259 | phonies = append(phonies, mctx.phonies...) |
Colin Cross | 3cda0d8 | 2019-09-24 13:40:07 -0700 | [diff] [blame] | 260 | dists = append(dists, mctx.dists...) |
Dan Willemsen | 4b7d5de | 2016-01-12 23:20:28 -0800 | [diff] [blame] | 261 | } |
| 262 | |
Dan Willemsen | 6a6478d | 2020-07-17 19:28:53 -0700 | [diff] [blame] | 263 | ctx.VisitAllModules(func(m Module) { |
Jiyong Park | f78531b | 2020-09-09 17:14:28 +0900 | [diff] [blame] | 264 | if provider, ok := m.(ModuleMakeVarsProvider); ok && m.Enabled() { |
Dan Willemsen | 6a6478d | 2020-07-17 19:28:53 -0700 | [diff] [blame] | 265 | mctx := &makeVarsContext{ |
| 266 | SingletonContext: ctx, |
| 267 | } |
| 268 | |
| 269 | provider.MakeVars(mctx) |
| 270 | |
| 271 | vars = append(vars, mctx.vars...) |
| 272 | phonies = append(phonies, mctx.phonies...) |
| 273 | dists = append(dists, mctx.dists...) |
| 274 | } |
Colin Cross | 6301c3c | 2021-09-28 17:40:21 -0700 | [diff] [blame] | 275 | |
| 276 | if m.ExportedToMake() { |
| 277 | katiInstalls = append(katiInstalls, m.base().katiInstalls...) |
| 278 | katiSymlinks = append(katiSymlinks, m.base().katiSymlinks...) |
| 279 | } |
Dan Willemsen | 6a6478d | 2020-07-17 19:28:53 -0700 | [diff] [blame] | 280 | }) |
| 281 | |
Dan Willemsen | 4b7d5de | 2016-01-12 23:20:28 -0800 | [diff] [blame] | 282 | if ctx.Failed() { |
| 283 | return |
| 284 | } |
| 285 | |
Dan Willemsen | 6a6478d | 2020-07-17 19:28:53 -0700 | [diff] [blame] | 286 | sort.Slice(vars, func(i, j int) bool { |
| 287 | return vars[i].name < vars[j].name |
| 288 | }) |
| 289 | sort.Slice(phonies, func(i, j int) bool { |
| 290 | return phonies[i].name < phonies[j].name |
| 291 | }) |
| 292 | lessArr := func(a, b []string) bool { |
| 293 | if len(a) == len(b) { |
| 294 | for i := range a { |
| 295 | if a[i] < b[i] { |
| 296 | return true |
| 297 | } |
| 298 | } |
| 299 | return false |
| 300 | } |
| 301 | return len(a) < len(b) |
| 302 | } |
| 303 | sort.Slice(dists, func(i, j int) bool { |
| 304 | return lessArr(dists[i].goals, dists[j].goals) || lessArr(dists[i].paths, dists[j].paths) |
| 305 | }) |
| 306 | |
Dan Willemsen | 4b7d5de | 2016-01-12 23:20:28 -0800 | [diff] [blame] | 307 | outBytes := s.writeVars(vars) |
| 308 | |
Colin Cross | c3d87d3 | 2020-06-04 13:25:17 -0700 | [diff] [blame] | 309 | if err := pathtools.WriteFileIfChanged(outFile, outBytes, 0666); err != nil { |
Dan Willemsen | 4b7d5de | 2016-01-12 23:20:28 -0800 | [diff] [blame] | 310 | ctx.Errorf(err.Error()) |
| 311 | } |
Colin Cross | c3d87d3 | 2020-06-04 13:25:17 -0700 | [diff] [blame] | 312 | |
Colin Cross | 3cda0d8 | 2019-09-24 13:40:07 -0700 | [diff] [blame] | 313 | lateOutBytes := s.writeLate(phonies, dists) |
Colin Cross | c3d87d3 | 2020-06-04 13:25:17 -0700 | [diff] [blame] | 314 | |
| 315 | if err := pathtools.WriteFileIfChanged(lateOutFile, lateOutBytes, 0666); err != nil { |
| 316 | ctx.Errorf(err.Error()) |
| 317 | } |
| 318 | |
Colin Cross | 6301c3c | 2021-09-28 17:40:21 -0700 | [diff] [blame] | 319 | installsBytes := s.writeInstalls(katiInstalls, katiSymlinks) |
| 320 | if err := pathtools.WriteFileIfChanged(installsFile, installsBytes, 0666); err != nil { |
| 321 | ctx.Errorf(err.Error()) |
| 322 | } |
Colin Cross | 6ac9576 | 2021-11-09 13:17:44 -0800 | [diff] [blame] | 323 | |
Paul Duffin | 8eb4573 | 2022-10-04 19:03:31 +0100 | [diff] [blame] | 324 | // Only save state for tests when testing. |
| 325 | if ctx.Config().RunningInsideUnitTest() { |
| 326 | s.varsForTesting = vars |
| 327 | s.installsForTesting = installsBytes |
| 328 | } |
Dan Willemsen | 4b7d5de | 2016-01-12 23:20:28 -0800 | [diff] [blame] | 329 | } |
| 330 | |
| 331 | func (s *makeVarsSingleton) writeVars(vars []makeVarsVariable) []byte { |
| 332 | buf := &bytes.Buffer{} |
| 333 | |
Dan Willemsen | 59339a2 | 2018-07-22 21:18:45 -0700 | [diff] [blame] | 334 | fmt.Fprint(buf, `# Autogenerated file |
Dan Willemsen | 4b7d5de | 2016-01-12 23:20:28 -0800 | [diff] [blame] | 335 | |
| 336 | # Compares SOONG_$(1) against $(1), and warns if they are not equal. |
| 337 | # |
| 338 | # If the original variable is empty, then just set it to the SOONG_ version. |
| 339 | # |
| 340 | # $(1): Name of the variable to check |
| 341 | # $(2): If not-empty, sort the values before comparing |
| 342 | # $(3): Extra snippet to run if it does not match |
| 343 | define soong-compare-var |
| 344 | ifneq ($$($(1)),) |
Dan Willemsen | 558e517 | 2016-05-19 16:58:46 -0700 | [diff] [blame] | 345 | my_val_make := $$(strip $(if $(2),$$(sort $$($(1))),$$($(1)))) |
Dan Willemsen | 4b7d5de | 2016-01-12 23:20:28 -0800 | [diff] [blame] | 346 | my_val_soong := $(if $(2),$$(sort $$(SOONG_$(1))),$$(SOONG_$(1))) |
| 347 | ifneq ($$(my_val_make),$$(my_val_soong)) |
| 348 | $$(warning $(1) does not match between Make and Soong:) |
| 349 | $(if $(2),$$(warning Make adds: $$(filter-out $$(my_val_soong),$$(my_val_make))),$$(warning Make : $$(my_val_make))) |
| 350 | $(if $(2),$$(warning Soong adds: $$(filter-out $$(my_val_make),$$(my_val_soong))),$$(warning Soong: $$(my_val_soong))) |
| 351 | $(3) |
| 352 | endif |
| 353 | my_val_make := |
| 354 | my_val_soong := |
| 355 | else |
| 356 | $(1) := $$(SOONG_$(1)) |
| 357 | endif |
Dan Willemsen | de18f47 | 2016-09-30 10:16:38 -0700 | [diff] [blame] | 358 | .KATI_READONLY := $(1) SOONG_$(1) |
Dan Willemsen | 4b7d5de | 2016-01-12 23:20:28 -0800 | [diff] [blame] | 359 | endef |
| 360 | |
| 361 | my_check_failed := false |
| 362 | |
| 363 | `) |
| 364 | |
| 365 | // Write all the strict checks out first so that if one of them errors, |
| 366 | // we get all of the strict errors printed, but not the non-strict |
| 367 | // warnings. |
| 368 | for _, v := range vars { |
| 369 | if !v.strict { |
| 370 | continue |
| 371 | } |
| 372 | |
| 373 | sort := "" |
| 374 | if v.sort { |
| 375 | sort = "true" |
| 376 | } |
| 377 | |
| 378 | fmt.Fprintf(buf, "SOONG_%s := %s\n", v.name, v.value) |
| 379 | fmt.Fprintf(buf, "$(eval $(call soong-compare-var,%s,%s,my_check_failed := true))\n\n", v.name, sort) |
| 380 | } |
| 381 | |
Dan Willemsen | 59339a2 | 2018-07-22 21:18:45 -0700 | [diff] [blame] | 382 | fmt.Fprint(buf, ` |
Dan Willemsen | 4b7d5de | 2016-01-12 23:20:28 -0800 | [diff] [blame] | 383 | ifneq ($(my_check_failed),false) |
| 384 | $(error Soong variable check failed) |
| 385 | endif |
| 386 | my_check_failed := |
| 387 | |
| 388 | |
| 389 | `) |
| 390 | |
| 391 | for _, v := range vars { |
| 392 | if v.strict { |
| 393 | continue |
| 394 | } |
| 395 | |
| 396 | sort := "" |
| 397 | if v.sort { |
| 398 | sort = "true" |
| 399 | } |
| 400 | |
| 401 | fmt.Fprintf(buf, "SOONG_%s := %s\n", v.name, v.value) |
| 402 | fmt.Fprintf(buf, "$(eval $(call soong-compare-var,%s,%s))\n\n", v.name, sort) |
| 403 | } |
| 404 | |
| 405 | fmt.Fprintln(buf, "\nsoong-compare-var :=") |
| 406 | |
Colin Cross | c3d87d3 | 2020-06-04 13:25:17 -0700 | [diff] [blame] | 407 | fmt.Fprintln(buf) |
| 408 | |
| 409 | return buf.Bytes() |
| 410 | } |
| 411 | |
Colin Cross | 3cda0d8 | 2019-09-24 13:40:07 -0700 | [diff] [blame] | 412 | func (s *makeVarsSingleton) writeLate(phonies []phony, dists []dist) []byte { |
Colin Cross | c3d87d3 | 2020-06-04 13:25:17 -0700 | [diff] [blame] | 413 | buf := &bytes.Buffer{} |
| 414 | |
| 415 | fmt.Fprint(buf, `# Autogenerated file |
| 416 | |
| 417 | # Values written by Soong read after parsing all Android.mk files. |
| 418 | |
| 419 | |
| 420 | `) |
| 421 | |
| 422 | for _, phony := range phonies { |
| 423 | fmt.Fprintf(buf, ".PHONY: %s\n", phony.name) |
| 424 | fmt.Fprintf(buf, "%s: %s\n", phony.name, strings.Join(phony.deps, "\\\n ")) |
| 425 | } |
| 426 | |
Colin Cross | 3cda0d8 | 2019-09-24 13:40:07 -0700 | [diff] [blame] | 427 | fmt.Fprintln(buf) |
| 428 | |
| 429 | for _, dist := range dists { |
Colin Cross | b5399c8 | 2021-11-11 16:33:24 -0800 | [diff] [blame] | 430 | fmt.Fprintf(buf, ".PHONY: %s\n", strings.Join(dist.goals, " ")) |
Colin Cross | 3cda0d8 | 2019-09-24 13:40:07 -0700 | [diff] [blame] | 431 | fmt.Fprintf(buf, "$(call dist-for-goals,%s,%s)\n", |
| 432 | strings.Join(dist.goals, " "), strings.Join(dist.paths, " ")) |
| 433 | } |
| 434 | |
Dan Willemsen | 4b7d5de | 2016-01-12 23:20:28 -0800 | [diff] [blame] | 435 | return buf.Bytes() |
| 436 | } |
| 437 | |
Colin Cross | 6301c3c | 2021-09-28 17:40:21 -0700 | [diff] [blame] | 438 | // writeInstalls writes the list of install rules generated by Soong to a makefile. The rules |
| 439 | // are exported to Make instead of written directly to the ninja file so that main.mk can add |
| 440 | // the dependencies from the `required` property that are hard to resolve in Soong. |
| 441 | func (s *makeVarsSingleton) writeInstalls(installs, symlinks []katiInstall) []byte { |
| 442 | buf := &bytes.Buffer{} |
| 443 | |
| 444 | fmt.Fprint(buf, `# Autogenerated file |
| 445 | |
| 446 | # Values written by Soong to generate install rules that can be amended by Kati. |
| 447 | |
| 448 | |
| 449 | `) |
| 450 | |
| 451 | preserveSymlinksFlag := "-d" |
| 452 | if runtime.GOOS == "darwin" { |
| 453 | preserveSymlinksFlag = "-R" |
| 454 | } |
| 455 | |
| 456 | for _, install := range installs { |
| 457 | // Write a rule for each install request in the form: |
| 458 | // to: from [ deps ] [ | order only deps ] |
| 459 | // cp -f -d $< $@ [ && chmod +x $@ ] |
| 460 | fmt.Fprintf(buf, "%s: %s", install.to.String(), install.from.String()) |
| 461 | for _, dep := range install.implicitDeps { |
| 462 | fmt.Fprintf(buf, " %s", dep.String()) |
| 463 | } |
Colin Cross | 50ed1f9 | 2021-11-12 17:41:02 -0800 | [diff] [blame] | 464 | if extraFiles := install.extraFiles; extraFiles != nil { |
| 465 | fmt.Fprintf(buf, " %s", extraFiles.zip.String()) |
| 466 | } |
Colin Cross | 6301c3c | 2021-09-28 17:40:21 -0700 | [diff] [blame] | 467 | if len(install.orderOnlyDeps) > 0 { |
| 468 | fmt.Fprintf(buf, " |") |
| 469 | } |
| 470 | for _, dep := range install.orderOnlyDeps { |
| 471 | fmt.Fprintf(buf, " %s", dep.String()) |
| 472 | } |
| 473 | fmt.Fprintln(buf) |
Alessandro Astone | 2b17a23 | 2022-10-25 11:44:59 +0200 | [diff] [blame] | 474 | fmt.Fprintln(buf, "\t@echo \"Install: $@\"") |
Colin Cross | 50ed1f9 | 2021-11-12 17:41:02 -0800 | [diff] [blame] | 475 | fmt.Fprintf(buf, "\trm -f $@ && cp -f %s $< $@\n", preserveSymlinksFlag) |
Colin Cross | 6301c3c | 2021-09-28 17:40:21 -0700 | [diff] [blame] | 476 | if install.executable { |
Colin Cross | 50ed1f9 | 2021-11-12 17:41:02 -0800 | [diff] [blame] | 477 | fmt.Fprintf(buf, "\tchmod +x $@\n") |
Colin Cross | 6301c3c | 2021-09-28 17:40:21 -0700 | [diff] [blame] | 478 | } |
Colin Cross | 50ed1f9 | 2021-11-12 17:41:02 -0800 | [diff] [blame] | 479 | if extraFiles := install.extraFiles; extraFiles != nil { |
Romain Jobredeaux | 1cef629 | 2022-05-19 11:11:51 -0400 | [diff] [blame] | 480 | fmt.Fprintf(buf, "\t( unzip -qDD -d '%s' '%s' 2>&1 | grep -v \"zipfile is empty\"; exit $${PIPESTATUS[0]} ) || \\\n", extraFiles.dir.String(), extraFiles.zip.String()) |
| 481 | fmt.Fprintf(buf, "\t ( code=$$?; if [ $$code -ne 0 -a $$code -ne 1 ]; then exit $$code; fi )\n") |
Colin Cross | 50ed1f9 | 2021-11-12 17:41:02 -0800 | [diff] [blame] | 482 | } |
Colin Cross | 6301c3c | 2021-09-28 17:40:21 -0700 | [diff] [blame] | 483 | fmt.Fprintln(buf) |
| 484 | } |
| 485 | |
| 486 | for _, symlink := range symlinks { |
| 487 | fmt.Fprintf(buf, "%s:", symlink.to.String()) |
Colin Cross | 64002af | 2021-11-09 16:37:52 -0800 | [diff] [blame] | 488 | if symlink.from != nil { |
| 489 | // The symlink doesn't need updating when the target is modified, but we sometimes |
| 490 | // have a dependency on a symlink to a binary instead of to the binary directly, and |
| 491 | // the mtime of the symlink must be updated when the binary is modified, so use a |
| 492 | // normal dependency here instead of an order-only dependency. |
| 493 | fmt.Fprintf(buf, " %s", symlink.from.String()) |
| 494 | } |
Colin Cross | 6301c3c | 2021-09-28 17:40:21 -0700 | [diff] [blame] | 495 | for _, dep := range symlink.implicitDeps { |
| 496 | fmt.Fprintf(buf, " %s", dep.String()) |
| 497 | } |
Colin Cross | 64002af | 2021-11-09 16:37:52 -0800 | [diff] [blame] | 498 | if len(symlink.orderOnlyDeps) > 0 { |
Colin Cross | 6301c3c | 2021-09-28 17:40:21 -0700 | [diff] [blame] | 499 | fmt.Fprintf(buf, " |") |
| 500 | } |
Colin Cross | 6301c3c | 2021-09-28 17:40:21 -0700 | [diff] [blame] | 501 | for _, dep := range symlink.orderOnlyDeps { |
| 502 | fmt.Fprintf(buf, " %s", dep.String()) |
| 503 | } |
| 504 | fmt.Fprintln(buf) |
| 505 | |
| 506 | fromStr := "" |
| 507 | if symlink.from != nil { |
| 508 | rel, err := filepath.Rel(filepath.Dir(symlink.to.String()), symlink.from.String()) |
| 509 | if err != nil { |
| 510 | panic(fmt.Errorf("failed to find relative path for symlink from %q to %q: %w", |
| 511 | symlink.from.String(), symlink.to.String(), err)) |
| 512 | } |
| 513 | fromStr = rel |
| 514 | } else { |
| 515 | fromStr = symlink.absFrom |
| 516 | } |
| 517 | |
Alessandro Astone | 2b17a23 | 2022-10-25 11:44:59 +0200 | [diff] [blame] | 518 | fmt.Fprintln(buf, "\t@echo \"Symlink: $@\"") |
Colin Cross | 6301c3c | 2021-09-28 17:40:21 -0700 | [diff] [blame] | 519 | fmt.Fprintf(buf, "\trm -f $@ && ln -sfn %s $@", fromStr) |
| 520 | fmt.Fprintln(buf) |
| 521 | fmt.Fprintln(buf) |
| 522 | } |
| 523 | |
| 524 | return buf.Bytes() |
| 525 | } |
| 526 | |
Dan Willemsen | 3fb1fae | 2018-03-12 15:30:26 -0700 | [diff] [blame] | 527 | func (c *makeVarsContext) DeviceConfig() DeviceConfig { |
Colin Cross | 65494b9 | 2019-02-07 14:25:51 -0800 | [diff] [blame] | 528 | return DeviceConfig{c.Config().deviceConfig} |
Jiyong Park | 374510b | 2018-03-19 18:23:01 +0900 | [diff] [blame] | 529 | } |
| 530 | |
Colin Cross | 3165695 | 2018-05-24 16:11:20 -0700 | [diff] [blame] | 531 | var ninjaDescaper = strings.NewReplacer("$$", "$") |
| 532 | |
Dan Willemsen | 558e517 | 2016-05-19 16:58:46 -0700 | [diff] [blame] | 533 | func (c *makeVarsContext) Eval(ninjaStr string) (string, error) { |
Colin Cross | 65494b9 | 2019-02-07 14:25:51 -0800 | [diff] [blame] | 534 | s, err := c.SingletonContext.Eval(c.pctx, ninjaStr) |
Colin Cross | 3165695 | 2018-05-24 16:11:20 -0700 | [diff] [blame] | 535 | if err != nil { |
| 536 | return "", err |
| 537 | } |
| 538 | // SingletonContext.Eval returns an exapnded string that is valid for a ninja file, de-escape $$ to $ for use |
| 539 | // in a Makefile |
| 540 | return ninjaDescaper.Replace(s), nil |
Dan Willemsen | 558e517 | 2016-05-19 16:58:46 -0700 | [diff] [blame] | 541 | } |
| 542 | |
| 543 | func (c *makeVarsContext) addVariableRaw(name, value string, strict, sort bool) { |
Dan Willemsen | 4b7d5de | 2016-01-12 23:20:28 -0800 | [diff] [blame] | 544 | c.vars = append(c.vars, makeVarsVariable{ |
| 545 | name: name, |
| 546 | value: value, |
| 547 | strict: strict, |
| 548 | sort: sort, |
| 549 | }) |
| 550 | } |
| 551 | |
Dan Willemsen | 558e517 | 2016-05-19 16:58:46 -0700 | [diff] [blame] | 552 | func (c *makeVarsContext) addVariable(name, ninjaStr string, strict, sort bool) { |
| 553 | value, err := c.Eval(ninjaStr) |
| 554 | if err != nil { |
Colin Cross | 65494b9 | 2019-02-07 14:25:51 -0800 | [diff] [blame] | 555 | c.SingletonContext.Errorf(err.Error()) |
Dan Willemsen | 558e517 | 2016-05-19 16:58:46 -0700 | [diff] [blame] | 556 | } |
| 557 | c.addVariableRaw(name, value, strict, sort) |
| 558 | } |
| 559 | |
Colin Cross | c3d87d3 | 2020-06-04 13:25:17 -0700 | [diff] [blame] | 560 | func (c *makeVarsContext) addPhony(name string, deps []string) { |
| 561 | c.phonies = append(c.phonies, phony{name, deps}) |
| 562 | } |
| 563 | |
Colin Cross | 3cda0d8 | 2019-09-24 13:40:07 -0700 | [diff] [blame] | 564 | func (c *makeVarsContext) addDist(goals []string, paths []string) { |
| 565 | c.dists = append(c.dists, dist{ |
| 566 | goals: goals, |
| 567 | paths: paths, |
| 568 | }) |
| 569 | } |
| 570 | |
Dan Willemsen | 4b7d5de | 2016-01-12 23:20:28 -0800 | [diff] [blame] | 571 | func (c *makeVarsContext) Strict(name, ninjaStr string) { |
| 572 | c.addVariable(name, ninjaStr, true, false) |
| 573 | } |
| 574 | func (c *makeVarsContext) StrictSorted(name, ninjaStr string) { |
| 575 | c.addVariable(name, ninjaStr, true, true) |
| 576 | } |
Dan Willemsen | 558e517 | 2016-05-19 16:58:46 -0700 | [diff] [blame] | 577 | func (c *makeVarsContext) StrictRaw(name, value string) { |
| 578 | c.addVariableRaw(name, value, true, false) |
| 579 | } |
Dan Willemsen | 4b7d5de | 2016-01-12 23:20:28 -0800 | [diff] [blame] | 580 | |
| 581 | func (c *makeVarsContext) Check(name, ninjaStr string) { |
| 582 | c.addVariable(name, ninjaStr, false, false) |
| 583 | } |
| 584 | func (c *makeVarsContext) CheckSorted(name, ninjaStr string) { |
| 585 | c.addVariable(name, ninjaStr, false, true) |
| 586 | } |
Dan Willemsen | 558e517 | 2016-05-19 16:58:46 -0700 | [diff] [blame] | 587 | func (c *makeVarsContext) CheckRaw(name, value string) { |
| 588 | c.addVariableRaw(name, value, false, false) |
| 589 | } |
Colin Cross | c3d87d3 | 2020-06-04 13:25:17 -0700 | [diff] [blame] | 590 | |
| 591 | func (c *makeVarsContext) Phony(name string, deps ...Path) { |
| 592 | c.addPhony(name, Paths(deps).Strings()) |
| 593 | } |
Colin Cross | 3cda0d8 | 2019-09-24 13:40:07 -0700 | [diff] [blame] | 594 | |
| 595 | func (c *makeVarsContext) DistForGoal(goal string, paths ...Path) { |
| 596 | c.DistForGoals([]string{goal}, paths...) |
| 597 | } |
| 598 | |
| 599 | func (c *makeVarsContext) DistForGoalWithFilename(goal string, path Path, filename string) { |
| 600 | c.DistForGoalsWithFilename([]string{goal}, path, filename) |
| 601 | } |
| 602 | |
| 603 | func (c *makeVarsContext) DistForGoals(goals []string, paths ...Path) { |
| 604 | c.addDist(goals, Paths(paths).Strings()) |
| 605 | } |
| 606 | |
| 607 | func (c *makeVarsContext) DistForGoalsWithFilename(goals []string, path Path, filename string) { |
| 608 | c.addDist(goals, []string{path.String() + ":" + filename}) |
| 609 | } |