blob: 94db01e5553b407c00e2194427469ba4dc13d451 [file] [log] [blame]
Colin Cross8e0c5112015-01-23 14:15:10 -08001// Copyright 2014 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
Jamie Gennis1bc967e2014-05-27 16:34:41 -070015package blueprint
16
17import (
18 "fmt"
19 "path/filepath"
Jamie Gennis6a40c192014-07-02 16:40:31 -070020 "text/scanner"
Jamie Gennis1bc967e2014-05-27 16:34:41 -070021)
22
Jamie Gennisb9e87f62014-09-24 20:28:11 -070023// A Module handles generating all of the Ninja build actions needed to build a
Colin Crossc9028482014-12-18 16:28:54 -080024// single module based on properties defined in a Blueprints file. Module
25// objects are initially created during the parse phase of a Context using one
26// of the registered module types (and the associated ModuleFactory function).
27// The Module's properties struct is automatically filled in with the property
28// values specified in the Blueprints file (see Context.RegisterModuleType for more
Jamie Gennisb9e87f62014-09-24 20:28:11 -070029// information on this).
30//
Colin Crossc9028482014-12-18 16:28:54 -080031// A Module can be split into multiple Modules by a Mutator. All existing
32// properties set on the module will be duplicated to the new Module, and then
33// modified as necessary by the Mutator.
34//
Jamie Gennisb9e87f62014-09-24 20:28:11 -070035// The Module implementation can access the build configuration as well as any
36// modules on which on which it depends (as defined by the "deps" property
37// specified in the Blueprints file or dynamically added by implementing the
38// DynamicDependerModule interface) using the ModuleContext passed to
39// GenerateBuildActions. This ModuleContext is also used to create Ninja build
40// actions and to report errors to the user.
41//
42// In addition to implementing the GenerateBuildActions method, a Module should
43// implement methods that provide dependant modules and singletons information
44// they need to generate their build actions. These methods will only be called
45// after GenerateBuildActions is called because the Context calls
46// GenerateBuildActions in dependency-order (and singletons are invoked after
47// all the Modules). The set of methods a Module supports will determine how
48// dependant Modules interact with it.
49//
50// For example, consider a Module that is responsible for generating a library
51// that other modules can link against. The library Module might implement the
52// following interface:
53//
54// type LibraryProducer interface {
55// LibraryFileName() string
56// }
57//
58// func IsLibraryProducer(module blueprint.Module) {
59// _, ok := module.(LibraryProducer)
60// return ok
61// }
62//
63// A binary-producing Module that depends on the library Module could then do:
64//
65// func (m *myBinaryModule) GenerateBuildActions(ctx blueprint.ModuleContext) {
66// ...
67// var libraryFiles []string
68// ctx.VisitDepsDepthFirstIf(IsLibraryProducer,
69// func(module blueprint.Module) {
70// libProducer := module.(LibraryProducer)
71// libraryFiles = append(libraryFiles, libProducer.LibraryFileName())
72// })
73// ...
74// }
75//
76// to build the list of library file names that should be included in its link
77// command.
Colin Cross691a60d2015-01-07 18:08:56 -080078//
79// GenerateBuildActions may be called from multiple threads. It is guaranteed to
80// be called after it has finished being called on all dependencies and on all
81// variants of that appear earlier in the ModuleContext.VisitAllModuleVariants list.
82// Any accesses to global variables or to Module objects that are not dependencies
83// or variants of the current Module must be synchronized by the implementation of
84// GenerateBuildActions.
Jamie Gennis1bc967e2014-05-27 16:34:41 -070085type Module interface {
Jamie Gennisb9e87f62014-09-24 20:28:11 -070086 // GenerateBuildActions is called by the Context that created the Module
87 // during its generate phase. This call should generate all Ninja build
88 // actions (rules, pools, and build statements) needed to build the module.
Jamie Gennis1bc967e2014-05-27 16:34:41 -070089 GenerateBuildActions(ModuleContext)
90}
91
Jamie Gennisb9e87f62014-09-24 20:28:11 -070092// A DynamicDependerModule is a Module that may add dependencies that do not
93// appear in its "deps" property. Any Module that implements this interface
94// will have its DynamicDependencies method called by the Context that created
95// it during generate phase.
96type DynamicDependerModule interface {
97 Module
98
99 // DynamicDependencies is called by the Context that created the
100 // DynamicDependerModule during its generate phase. This call should return
101 // the list of module names that the DynamicDependerModule depends on
102 // dynamically. Module names that already appear in the "deps" property may
103 // but do not need to be included in the returned list.
104 DynamicDependencies(DynamicDependerModuleContext) []string
105}
106
Colin Crossbe1a9a12014-12-18 11:05:45 -0800107type BaseModuleContext interface {
Jamie Gennis1bc967e2014-05-27 16:34:41 -0700108 ModuleName() string
109 ModuleDir() string
Jamie Gennis6eb4d242014-06-11 18:31:16 -0700110 Config() interface{}
Jamie Gennis1bc967e2014-05-27 16:34:41 -0700111
David Allison701fbad2014-10-29 14:51:13 -0700112 ContainsProperty(name string) bool
Jamie Gennis6a40c192014-07-02 16:40:31 -0700113 Errorf(pos scanner.Position, fmt string, args ...interface{})
Jamie Gennis1bc967e2014-05-27 16:34:41 -0700114 ModuleErrorf(fmt string, args ...interface{})
115 PropertyErrorf(property, fmt string, args ...interface{})
Jamie Gennis6a40c192014-07-02 16:40:31 -0700116 Failed() bool
Jamie Gennisb9e87f62014-09-24 20:28:11 -0700117}
118
Colin Crossbe1a9a12014-12-18 11:05:45 -0800119type DynamicDependerModuleContext interface {
120 BaseModuleContext
Colin Cross65569e42015-03-10 20:08:19 -0700121
Colin Crossf5e34b92015-03-13 16:02:36 -0700122 AddVariationDependencies([]Variation, ...string)
Colin Cross89486232015-05-08 11:14:54 -0700123 AddFarVariationDependencies([]Variation, ...string)
Colin Crossbe1a9a12014-12-18 11:05:45 -0800124}
125
Colin Cross1455a0f2014-12-17 13:23:56 -0800126type ModuleContext interface {
Colin Crossbe1a9a12014-12-18 11:05:45 -0800127 BaseModuleContext
Jamie Gennisb9e87f62014-09-24 20:28:11 -0700128
129 OtherModuleName(m Module) string
130 OtherModuleErrorf(m Module, fmt string, args ...interface{})
Jamie Gennis1bc967e2014-05-27 16:34:41 -0700131
Colin Crossc7ffa302015-02-10 11:24:52 -0800132 VisitDirectDeps(visit func(Module))
133 VisitDirectDepsIf(pred func(Module) bool, visit func(Module))
Colin Crossb2e7b5d2014-11-11 14:18:53 -0800134 VisitDepsDepthFirst(visit func(Module))
135 VisitDepsDepthFirstIf(pred func(Module) bool, visit func(Module))
Yuchen Wu222e2452015-10-06 14:03:27 -0700136 WalkDeps(visit func(Module, Module) bool)
Colin Crossb2e7b5d2014-11-11 14:18:53 -0800137
Colin Crossc9028482014-12-18 16:28:54 -0800138 ModuleSubDir() string
139
Jamie Gennis2fb20952014-10-03 02:49:58 -0700140 Variable(pctx *PackageContext, name, value string)
141 Rule(pctx *PackageContext, name string, params RuleParams, argNames ...string) Rule
142 Build(pctx *PackageContext, params BuildParams)
Jamie Gennis1bc967e2014-05-27 16:34:41 -0700143
Mathias Agopian5b8477d2014-06-25 17:21:54 -0700144 AddNinjaFileDeps(deps ...string)
Colin Crossc9028482014-12-18 16:28:54 -0800145
146 PrimaryModule() Module
Colin Cross80ad04d2015-01-06 16:19:59 -0800147 FinalModule() Module
148 VisitAllModuleVariants(visit func(Module))
Jamie Gennis1bc967e2014-05-27 16:34:41 -0700149}
150
Colin Crossbe1a9a12014-12-18 11:05:45 -0800151var _ BaseModuleContext = (*baseModuleContext)(nil)
Jamie Gennisb9e87f62014-09-24 20:28:11 -0700152
Colin Crossbe1a9a12014-12-18 11:05:45 -0800153type baseModuleContext struct {
Jamie Gennisb9e87f62014-09-24 20:28:11 -0700154 context *Context
155 config interface{}
Colin Crossed342d92015-03-11 00:57:25 -0700156 module *moduleInfo
Jamie Gennisb9e87f62014-09-24 20:28:11 -0700157 errs []error
158}
159
Colin Crossbe1a9a12014-12-18 11:05:45 -0800160func (d *baseModuleContext) ModuleName() string {
Colin Crossed342d92015-03-11 00:57:25 -0700161 return d.module.properties.Name
Jamie Gennisb9e87f62014-09-24 20:28:11 -0700162}
163
Colin Crossbe1a9a12014-12-18 11:05:45 -0800164func (d *baseModuleContext) ContainsProperty(name string) bool {
Colin Crossed342d92015-03-11 00:57:25 -0700165 _, ok := d.module.propertyPos[name]
David Allison701fbad2014-10-29 14:51:13 -0700166 return ok
167}
168
Colin Crossbe1a9a12014-12-18 11:05:45 -0800169func (d *baseModuleContext) ModuleDir() string {
Colin Crossed342d92015-03-11 00:57:25 -0700170 return filepath.Dir(d.module.relBlueprintsFile)
Jamie Gennisb9e87f62014-09-24 20:28:11 -0700171}
172
Colin Crossbe1a9a12014-12-18 11:05:45 -0800173func (d *baseModuleContext) Config() interface{} {
Jamie Gennisb9e87f62014-09-24 20:28:11 -0700174 return d.config
175}
176
Colin Crossbe1a9a12014-12-18 11:05:45 -0800177func (d *baseModuleContext) Errorf(pos scanner.Position,
Jamie Gennisb9e87f62014-09-24 20:28:11 -0700178 format string, args ...interface{}) {
179
180 d.errs = append(d.errs, &Error{
181 Err: fmt.Errorf(format, args...),
182 Pos: pos,
183 })
184}
185
Colin Crossbe1a9a12014-12-18 11:05:45 -0800186func (d *baseModuleContext) ModuleErrorf(format string,
Jamie Gennisb9e87f62014-09-24 20:28:11 -0700187 args ...interface{}) {
188
189 d.errs = append(d.errs, &Error{
190 Err: fmt.Errorf(format, args...),
Colin Crossed342d92015-03-11 00:57:25 -0700191 Pos: d.module.pos,
Jamie Gennisb9e87f62014-09-24 20:28:11 -0700192 })
193}
194
Colin Crossbe1a9a12014-12-18 11:05:45 -0800195func (d *baseModuleContext) PropertyErrorf(property, format string,
Jamie Gennisb9e87f62014-09-24 20:28:11 -0700196 args ...interface{}) {
197
Colin Crossed342d92015-03-11 00:57:25 -0700198 pos, ok := d.module.propertyPos[property]
Jamie Gennisb9e87f62014-09-24 20:28:11 -0700199 if !ok {
200 panic(fmt.Errorf("property %q was not set for this module", property))
201 }
202
203 d.errs = append(d.errs, &Error{
204 Err: fmt.Errorf(format, args...),
205 Pos: pos,
206 })
207}
208
Colin Crossbe1a9a12014-12-18 11:05:45 -0800209func (d *baseModuleContext) Failed() bool {
Jamie Gennisb9e87f62014-09-24 20:28:11 -0700210 return len(d.errs) > 0
211}
212
Colin Cross1455a0f2014-12-17 13:23:56 -0800213var _ ModuleContext = (*moduleContext)(nil)
Jamie Gennis1bc967e2014-05-27 16:34:41 -0700214
Colin Cross1455a0f2014-12-17 13:23:56 -0800215type moduleContext struct {
Colin Crossbe1a9a12014-12-18 11:05:45 -0800216 baseModuleContext
Colin Cross1455a0f2014-12-17 13:23:56 -0800217 scope *localScope
218 ninjaFileDeps []string
219 actionDefs localBuildActions
Jamie Gennis1bc967e2014-05-27 16:34:41 -0700220}
221
Colin Crossed342d92015-03-11 00:57:25 -0700222func (m *moduleContext) OtherModuleName(logicModule Module) string {
223 module := m.context.moduleInfo[logicModule]
224 return module.properties.Name
Jamie Gennisd4c53d82014-06-22 17:02:55 -0700225}
226
Colin Crossed342d92015-03-11 00:57:25 -0700227func (m *moduleContext) OtherModuleErrorf(logicModule Module, format string,
Jamie Gennisd4c53d82014-06-22 17:02:55 -0700228 args ...interface{}) {
229
Colin Crossed342d92015-03-11 00:57:25 -0700230 module := m.context.moduleInfo[logicModule]
Jamie Gennisd4c53d82014-06-22 17:02:55 -0700231 m.errs = append(m.errs, &Error{
232 Err: fmt.Errorf(format, args...),
Colin Crossed342d92015-03-11 00:57:25 -0700233 Pos: module.pos,
Jamie Gennisd4c53d82014-06-22 17:02:55 -0700234 })
235}
236
Colin Crossc7ffa302015-02-10 11:24:52 -0800237func (m *moduleContext) VisitDirectDeps(visit func(Module)) {
238 m.context.visitDirectDeps(m.module, visit)
239}
240
241func (m *moduleContext) VisitDirectDepsIf(pred func(Module) bool, visit func(Module)) {
242 m.context.visitDirectDepsIf(m.module, pred, visit)
243}
244
Colin Cross1455a0f2014-12-17 13:23:56 -0800245func (m *moduleContext) VisitDepsDepthFirst(visit func(Module)) {
Colin Crossb2e7b5d2014-11-11 14:18:53 -0800246 m.context.visitDepsDepthFirst(m.module, visit)
247}
248
Colin Cross1455a0f2014-12-17 13:23:56 -0800249func (m *moduleContext) VisitDepsDepthFirstIf(pred func(Module) bool,
Colin Crossb2e7b5d2014-11-11 14:18:53 -0800250 visit func(Module)) {
251
252 m.context.visitDepsDepthFirstIf(m.module, pred, visit)
253}
254
Yuchen Wu222e2452015-10-06 14:03:27 -0700255func (m *moduleContext) WalkDeps(visit func(Module, Module) bool) {
256 m.context.walkDeps(m.module, visit)
257}
258
Colin Crossc9028482014-12-18 16:28:54 -0800259func (m *moduleContext) ModuleSubDir() string {
Colin Crosse7daa222015-03-11 14:35:41 -0700260 return m.module.variantName
Colin Crossc9028482014-12-18 16:28:54 -0800261}
262
Jamie Gennis2fb20952014-10-03 02:49:58 -0700263func (m *moduleContext) Variable(pctx *PackageContext, name, value string) {
264 m.scope.ReparentTo(pctx)
Jamie Gennis0ed63ef2014-06-30 18:07:17 -0700265
Jamie Gennis1bc967e2014-05-27 16:34:41 -0700266 v, err := m.scope.AddLocalVariable(name, value)
267 if err != nil {
268 panic(err)
269 }
270
271 m.actionDefs.variables = append(m.actionDefs.variables, v)
272}
273
Jamie Gennis2fb20952014-10-03 02:49:58 -0700274func (m *moduleContext) Rule(pctx *PackageContext, name string,
275 params RuleParams, argNames ...string) Rule {
Jamie Genniscbc6f862014-06-05 20:00:22 -0700276
Jamie Gennis2fb20952014-10-03 02:49:58 -0700277 m.scope.ReparentTo(pctx)
Jamie Gennis0ed63ef2014-06-30 18:07:17 -0700278
Jamie Genniscbc6f862014-06-05 20:00:22 -0700279 r, err := m.scope.AddLocalRule(name, &params, argNames...)
Jamie Gennis1bc967e2014-05-27 16:34:41 -0700280 if err != nil {
281 panic(err)
282 }
283
284 m.actionDefs.rules = append(m.actionDefs.rules, r)
285
286 return r
287}
288
Jamie Gennis2fb20952014-10-03 02:49:58 -0700289func (m *moduleContext) Build(pctx *PackageContext, params BuildParams) {
290 m.scope.ReparentTo(pctx)
Jamie Gennis0ed63ef2014-06-30 18:07:17 -0700291
Jamie Gennis1bc967e2014-05-27 16:34:41 -0700292 def, err := parseBuildParams(m.scope, &params)
293 if err != nil {
294 panic(err)
295 }
296
297 m.actionDefs.buildDefs = append(m.actionDefs.buildDefs, def)
298}
299
Mathias Agopian5b8477d2014-06-25 17:21:54 -0700300func (m *moduleContext) AddNinjaFileDeps(deps ...string) {
301 m.ninjaFileDeps = append(m.ninjaFileDeps, deps...)
302}
Colin Crossc9028482014-12-18 16:28:54 -0800303
304func (m *moduleContext) PrimaryModule() Module {
Colin Cross80ad04d2015-01-06 16:19:59 -0800305 return m.module.group.modules[0].logicModule
306}
307
308func (m *moduleContext) FinalModule() Module {
309 return m.module.group.modules[len(m.module.group.modules)-1].logicModule
310}
311
312func (m *moduleContext) VisitAllModuleVariants(visit func(Module)) {
313 for _, module := range m.module.group.modules {
314 visit(module.logicModule)
315 }
Colin Crossc9028482014-12-18 16:28:54 -0800316}
317
318//
Colin Cross65569e42015-03-10 20:08:19 -0700319// DynamicDependerModuleContext
320//
321
322type dynamicDependerModuleContext struct {
323 baseModuleContext
324
325 module *moduleInfo
326}
327
Colin Crossf5e34b92015-03-13 16:02:36 -0700328// AddVariationDependencies adds deps as dependencies of the current module, but uses the variations
329// argument to select which variant of the dependency to use. A variant of the dependency must
330// exist that matches the all of the non-local variations of the current module, plus the variations
331// argument.
332func (mctx *dynamicDependerModuleContext) AddVariationDependencies(variations []Variation,
333 deps ...string) {
334
Colin Cross65569e42015-03-10 20:08:19 -0700335 for _, dep := range deps {
Colin Cross89486232015-05-08 11:14:54 -0700336 errs := mctx.context.addVariationDependency(mctx.module, variations, dep, false)
337 if len(errs) > 0 {
338 mctx.errs = append(mctx.errs, errs...)
339 }
340 }
341}
342
343// AddFarVariationDependencies adds deps as dependencies of the current module, but uses the
344// variations argument to select which variant of the dependency to use. A variant of the
345// dependency must exist that matches the variations argument, but may also have other variations.
346// For any unspecified variation the first variant will be used.
347//
348// Unlike AddVariationDependencies, the variations of the current module are ignored - the
349// depdendency only needs to match the supplied variations.
350func (mctx *dynamicDependerModuleContext) AddFarVariationDependencies(variations []Variation,
351 deps ...string) {
352
353 for _, dep := range deps {
354 errs := mctx.context.addVariationDependency(mctx.module, variations, dep, true)
Colin Cross65569e42015-03-10 20:08:19 -0700355 if len(errs) > 0 {
356 mctx.errs = append(mctx.errs, errs...)
357 }
358 }
359}
360
361//
Colin Crossc9028482014-12-18 16:28:54 -0800362// MutatorContext
363//
364
365type mutatorContext struct {
366 baseModuleContext
Dan Willemsenfdeb7242015-07-24 16:53:27 -0700367 name string
Colin Crossc9028482014-12-18 16:28:54 -0800368}
369
370type baseMutatorContext interface {
371 BaseModuleContext
372
373 Module() Module
374}
375
Colin Cross65569e42015-03-10 20:08:19 -0700376type EarlyMutatorContext interface {
377 baseMutatorContext
378
Colin Crossf5e34b92015-03-13 16:02:36 -0700379 CreateVariations(...string) []Module
380 CreateLocalVariations(...string) []Module
Colin Cross65569e42015-03-10 20:08:19 -0700381}
382
Colin Crossc9028482014-12-18 16:28:54 -0800383type TopDownMutatorContext interface {
384 baseMutatorContext
385
386 VisitDirectDeps(visit func(Module))
387 VisitDirectDepsIf(pred func(Module) bool, visit func(Module))
388 VisitDepsDepthFirst(visit func(Module))
389 VisitDepsDepthFirstIf(pred func(Module) bool, visit func(Module))
Yuchen Wu222e2452015-10-06 14:03:27 -0700390 WalkDeps(visit func(Module, Module) bool)
Colin Crossc9028482014-12-18 16:28:54 -0800391}
392
393type BottomUpMutatorContext interface {
394 baseMutatorContext
395
396 AddDependency(module Module, name string)
Dan Willemsenfdeb7242015-07-24 16:53:27 -0700397 AddReverseDependency(module Module, name string)
Colin Crossf5e34b92015-03-13 16:02:36 -0700398 CreateVariations(...string) []Module
Jamie Gennis6a5825e2015-05-19 11:26:11 -0700399 CreateLocalVariations(...string) []Module
Colin Crossf5e34b92015-03-13 16:02:36 -0700400 SetDependencyVariation(string)
Colin Crossc9028482014-12-18 16:28:54 -0800401}
402
403// A Mutator function is called for each Module, and can use
Colin Crossf5e34b92015-03-13 16:02:36 -0700404// MutatorContext.CreateVariations to split a Module into multiple Modules,
Colin Crossc9028482014-12-18 16:28:54 -0800405// modifying properties on the new modules to differentiate them. It is called
406// after parsing all Blueprint files, but before generating any build rules,
407// and is always called on dependencies before being called on the depending module.
408//
409// The Mutator function should only modify members of properties structs, and not
410// members of the module struct itself, to ensure the modified values are copied
411// if a second Mutator chooses to split the module a second time.
412type TopDownMutator func(mctx TopDownMutatorContext)
413type BottomUpMutator func(mctx BottomUpMutatorContext)
Colin Cross65569e42015-03-10 20:08:19 -0700414type EarlyMutator func(mctx EarlyMutatorContext)
Colin Crossc9028482014-12-18 16:28:54 -0800415
Colin Crossf5e34b92015-03-13 16:02:36 -0700416// Split a module into mulitple variants, one for each name in the variationNames
417// parameter. It returns a list of new modules in the same order as the variationNames
Colin Crossc9028482014-12-18 16:28:54 -0800418// list.
419//
420// If any of the dependencies of the module being operated on were already split
Colin Crossf5e34b92015-03-13 16:02:36 -0700421// by calling CreateVariations with the same name, the dependency will automatically
Colin Crossc9028482014-12-18 16:28:54 -0800422// be updated to point the matching variant.
423//
424// If a module is split, and then a module depending on the first module is not split
425// when the Mutator is later called on it, the dependency of the depending module will
426// automatically be updated to point to the first variant.
Colin Crossf5e34b92015-03-13 16:02:36 -0700427func (mctx *mutatorContext) CreateVariations(variationNames ...string) []Module {
428 return mctx.createVariations(variationNames, false)
Colin Cross65569e42015-03-10 20:08:19 -0700429}
430
431// Split a module into mulitple variants, one for each name in the variantNames
432// parameter. It returns a list of new modules in the same order as the variantNames
433// list.
434//
Colin Crossf5e34b92015-03-13 16:02:36 -0700435// Local variations do not affect automatic dependency resolution - dependencies added
Colin Cross65569e42015-03-10 20:08:19 -0700436// to the split module via deps or DynamicDependerModule must exactly match a variant
Colin Crossf5e34b92015-03-13 16:02:36 -0700437// that contains all the non-local variations.
438func (mctx *mutatorContext) CreateLocalVariations(variationNames ...string) []Module {
439 return mctx.createVariations(variationNames, true)
Colin Cross65569e42015-03-10 20:08:19 -0700440}
441
Colin Crossf5e34b92015-03-13 16:02:36 -0700442func (mctx *mutatorContext) createVariations(variationNames []string, local bool) []Module {
Colin Crossc9028482014-12-18 16:28:54 -0800443 ret := []Module{}
Colin Crossf5e34b92015-03-13 16:02:36 -0700444 modules, errs := mctx.context.createVariations(mctx.module, mctx.name, variationNames)
Colin Cross174ae052015-03-03 17:37:03 -0800445 if len(errs) > 0 {
446 mctx.errs = append(mctx.errs, errs...)
447 }
Colin Crossc9028482014-12-18 16:28:54 -0800448
Colin Cross65569e42015-03-10 20:08:19 -0700449 for i, module := range modules {
Colin Crossc9028482014-12-18 16:28:54 -0800450 ret = append(ret, module.logicModule)
Colin Cross65569e42015-03-10 20:08:19 -0700451 if !local {
Colin Crossf5e34b92015-03-13 16:02:36 -0700452 module.dependencyVariant[mctx.name] = variationNames[i]
Colin Cross65569e42015-03-10 20:08:19 -0700453 }
Colin Crossc9028482014-12-18 16:28:54 -0800454 }
455
Colin Crossf5e34b92015-03-13 16:02:36 -0700456 if len(ret) != len(variationNames) {
Colin Crossc9028482014-12-18 16:28:54 -0800457 panic("oops!")
458 }
459
460 return ret
461}
462
Colin Crossf5e34b92015-03-13 16:02:36 -0700463// Set all dangling dependencies on the current module to point to the variation
Colin Crossc9028482014-12-18 16:28:54 -0800464// with given name.
Colin Crossf5e34b92015-03-13 16:02:36 -0700465func (mctx *mutatorContext) SetDependencyVariation(variationName string) {
466 mctx.context.convertDepsToVariation(mctx.module, mctx.name, variationName)
Colin Crossc9028482014-12-18 16:28:54 -0800467}
468
469func (mctx *mutatorContext) Module() Module {
470 return mctx.module.logicModule
471}
472
Dan Willemsenfdeb7242015-07-24 16:53:27 -0700473// Add a dependency to the given module.
Colin Crossc9028482014-12-18 16:28:54 -0800474// Does not affect the ordering of the current mutator pass, but will be ordered
475// correctly for all future mutator passes.
476func (mctx *mutatorContext) AddDependency(module Module, depName string) {
Colin Cross65569e42015-03-10 20:08:19 -0700477 errs := mctx.context.addDependency(mctx.context.moduleInfo[module], depName)
478 if len(errs) > 0 {
479 mctx.errs = append(mctx.errs, errs...)
480 }
Dan Willemsenfdeb7242015-07-24 16:53:27 -0700481}
482
483// Add a dependency from the destination to the given module.
484// Does not affect the ordering of the current mutator pass, but will be ordered
485// correctly for all future mutator passes.
486func (mctx *mutatorContext) AddReverseDependency(module Module, destName string) {
487 errs := mctx.context.addReverseDependency(mctx.context.moduleInfo[module], destName)
488 if len(errs) > 0 {
489 mctx.errs = append(mctx.errs, errs...)
490 }
Colin Crossc9028482014-12-18 16:28:54 -0800491}
492
493func (mctx *mutatorContext) VisitDirectDeps(visit func(Module)) {
494 mctx.context.visitDirectDeps(mctx.module, visit)
495}
496
497func (mctx *mutatorContext) VisitDirectDepsIf(pred func(Module) bool, visit func(Module)) {
498 mctx.context.visitDirectDepsIf(mctx.module, pred, visit)
499}
500
501func (mctx *mutatorContext) VisitDepsDepthFirst(visit func(Module)) {
502 mctx.context.visitDepsDepthFirst(mctx.module, visit)
503}
504
505func (mctx *mutatorContext) VisitDepsDepthFirstIf(pred func(Module) bool,
506 visit func(Module)) {
507
508 mctx.context.visitDepsDepthFirstIf(mctx.module, pred, visit)
509}
Yuchen Wu222e2452015-10-06 14:03:27 -0700510
511func (mctx *mutatorContext) WalkDeps(visit func(Module, Module) bool) {
512 mctx.context.walkDeps(mctx.module, visit)
513}