2014-05-28 01:34:41 +02:00
|
|
|
package blueprint
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"path/filepath"
|
2014-07-03 01:40:31 +02:00
|
|
|
"text/scanner"
|
2014-05-28 01:34:41 +02:00
|
|
|
)
|
|
|
|
|
2014-09-25 05:28:11 +02:00
|
|
|
// A Module handles generating all of the Ninja build actions needed to build a
|
|
|
|
// single module that is defined in a Blueprints file. Module objects are
|
|
|
|
// created during the parse phase of a Context using one of the registered
|
|
|
|
// module types (and the associated ModuleFactory function). The Module's
|
|
|
|
// properties struct is automatically filled in with the property values
|
|
|
|
// specified in the Blueprints file (see Context.RegisterModuleType for more
|
|
|
|
// information on this).
|
|
|
|
//
|
|
|
|
// The Module implementation can access the build configuration as well as any
|
|
|
|
// modules on which on which it depends (as defined by the "deps" property
|
|
|
|
// specified in the Blueprints file or dynamically added by implementing the
|
|
|
|
// DynamicDependerModule interface) using the ModuleContext passed to
|
|
|
|
// GenerateBuildActions. This ModuleContext is also used to create Ninja build
|
|
|
|
// actions and to report errors to the user.
|
|
|
|
//
|
|
|
|
// In addition to implementing the GenerateBuildActions method, a Module should
|
|
|
|
// implement methods that provide dependant modules and singletons information
|
|
|
|
// they need to generate their build actions. These methods will only be called
|
|
|
|
// after GenerateBuildActions is called because the Context calls
|
|
|
|
// GenerateBuildActions in dependency-order (and singletons are invoked after
|
|
|
|
// all the Modules). The set of methods a Module supports will determine how
|
|
|
|
// dependant Modules interact with it.
|
|
|
|
//
|
|
|
|
// For example, consider a Module that is responsible for generating a library
|
|
|
|
// that other modules can link against. The library Module might implement the
|
|
|
|
// following interface:
|
|
|
|
//
|
|
|
|
// type LibraryProducer interface {
|
|
|
|
// LibraryFileName() string
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// func IsLibraryProducer(module blueprint.Module) {
|
|
|
|
// _, ok := module.(LibraryProducer)
|
|
|
|
// return ok
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// A binary-producing Module that depends on the library Module could then do:
|
|
|
|
//
|
|
|
|
// func (m *myBinaryModule) GenerateBuildActions(ctx blueprint.ModuleContext) {
|
|
|
|
// ...
|
|
|
|
// var libraryFiles []string
|
|
|
|
// ctx.VisitDepsDepthFirstIf(IsLibraryProducer,
|
|
|
|
// func(module blueprint.Module) {
|
|
|
|
// libProducer := module.(LibraryProducer)
|
|
|
|
// libraryFiles = append(libraryFiles, libProducer.LibraryFileName())
|
|
|
|
// })
|
|
|
|
// ...
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// to build the list of library file names that should be included in its link
|
|
|
|
// command.
|
2014-05-28 01:34:41 +02:00
|
|
|
type Module interface {
|
2014-09-25 05:28:11 +02:00
|
|
|
// GenerateBuildActions is called by the Context that created the Module
|
|
|
|
// during its generate phase. This call should generate all Ninja build
|
|
|
|
// actions (rules, pools, and build statements) needed to build the module.
|
2014-05-28 01:34:41 +02:00
|
|
|
GenerateBuildActions(ModuleContext)
|
|
|
|
}
|
|
|
|
|
2014-11-11 23:18:53 +01:00
|
|
|
type preGenerateModule interface {
|
|
|
|
// PreGenerateBuildActions is called by the Context that created the Module
|
|
|
|
// during its generate phase, before calling GenerateBuildActions on
|
|
|
|
// any module. It should not touch any Ninja build actions.
|
|
|
|
PreGenerateBuildActions(PreModuleContext)
|
|
|
|
}
|
|
|
|
|
2014-09-25 05:28:11 +02:00
|
|
|
// A DynamicDependerModule is a Module that may add dependencies that do not
|
|
|
|
// appear in its "deps" property. Any Module that implements this interface
|
|
|
|
// will have its DynamicDependencies method called by the Context that created
|
|
|
|
// it during generate phase.
|
|
|
|
type DynamicDependerModule interface {
|
|
|
|
Module
|
|
|
|
|
|
|
|
// DynamicDependencies is called by the Context that created the
|
|
|
|
// DynamicDependerModule during its generate phase. This call should return
|
|
|
|
// the list of module names that the DynamicDependerModule depends on
|
|
|
|
// dynamically. Module names that already appear in the "deps" property may
|
|
|
|
// but do not need to be included in the returned list.
|
|
|
|
DynamicDependencies(DynamicDependerModuleContext) []string
|
|
|
|
}
|
|
|
|
|
2014-12-18 20:05:45 +01:00
|
|
|
type BaseModuleContext interface {
|
2014-05-28 01:34:41 +02:00
|
|
|
ModuleName() string
|
|
|
|
ModuleDir() string
|
2014-06-12 03:31:16 +02:00
|
|
|
Config() interface{}
|
2014-05-28 01:34:41 +02:00
|
|
|
|
2014-10-29 22:51:13 +01:00
|
|
|
ContainsProperty(name string) bool
|
2014-07-03 01:40:31 +02:00
|
|
|
Errorf(pos scanner.Position, fmt string, args ...interface{})
|
2014-05-28 01:34:41 +02:00
|
|
|
ModuleErrorf(fmt string, args ...interface{})
|
|
|
|
PropertyErrorf(property, fmt string, args ...interface{})
|
2014-07-03 01:40:31 +02:00
|
|
|
Failed() bool
|
2014-09-25 05:28:11 +02:00
|
|
|
}
|
|
|
|
|
2014-12-18 20:05:45 +01:00
|
|
|
type DynamicDependerModuleContext interface {
|
|
|
|
BaseModuleContext
|
|
|
|
}
|
|
|
|
|
2014-11-11 23:18:53 +01:00
|
|
|
type PreModuleContext interface {
|
2014-12-18 20:05:45 +01:00
|
|
|
BaseModuleContext
|
2014-09-25 05:28:11 +02:00
|
|
|
|
|
|
|
OtherModuleName(m Module) string
|
|
|
|
OtherModuleErrorf(m Module, fmt string, args ...interface{})
|
2014-05-28 01:34:41 +02:00
|
|
|
|
2014-11-11 23:18:53 +01:00
|
|
|
VisitDepsDepthFirst(visit func(Module))
|
|
|
|
VisitDepsDepthFirstIf(pred func(Module) bool, visit func(Module))
|
|
|
|
}
|
|
|
|
|
|
|
|
type ModuleContext interface {
|
|
|
|
PreModuleContext
|
|
|
|
|
2014-10-03 11:49:58 +02:00
|
|
|
Variable(pctx *PackageContext, name, value string)
|
|
|
|
Rule(pctx *PackageContext, name string, params RuleParams, argNames ...string) Rule
|
|
|
|
Build(pctx *PackageContext, params BuildParams)
|
2014-05-28 01:34:41 +02:00
|
|
|
|
2014-06-26 02:21:54 +02:00
|
|
|
AddNinjaFileDeps(deps ...string)
|
2014-05-28 01:34:41 +02:00
|
|
|
}
|
|
|
|
|
2014-12-18 20:05:45 +01:00
|
|
|
var _ BaseModuleContext = (*baseModuleContext)(nil)
|
2014-05-28 01:34:41 +02:00
|
|
|
|
2014-12-18 20:05:45 +01:00
|
|
|
type baseModuleContext struct {
|
2014-05-28 01:34:41 +02:00
|
|
|
context *Context
|
2014-06-12 03:31:16 +02:00
|
|
|
config interface{}
|
2014-12-18 01:12:41 +01:00
|
|
|
group *moduleGroup
|
2014-09-25 05:28:11 +02:00
|
|
|
errs []error
|
2014-05-28 01:34:41 +02:00
|
|
|
}
|
|
|
|
|
2014-12-18 20:05:45 +01:00
|
|
|
func (d *baseModuleContext) ModuleName() string {
|
2014-12-18 01:12:41 +01:00
|
|
|
return d.group.properties.Name
|
2014-06-23 02:02:55 +02:00
|
|
|
}
|
|
|
|
|
2014-12-18 20:05:45 +01:00
|
|
|
func (d *baseModuleContext) ContainsProperty(name string) bool {
|
2014-12-18 01:12:41 +01:00
|
|
|
_, ok := d.group.propertyPos[name]
|
2014-10-29 22:51:13 +01:00
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
2014-12-18 20:05:45 +01:00
|
|
|
func (d *baseModuleContext) ModuleDir() string {
|
2014-12-18 01:12:41 +01:00
|
|
|
return filepath.Dir(d.group.relBlueprintsFile)
|
2014-05-28 01:34:41 +02:00
|
|
|
}
|
|
|
|
|
2014-12-18 20:05:45 +01:00
|
|
|
func (d *baseModuleContext) Config() interface{} {
|
2014-09-25 05:28:11 +02:00
|
|
|
return d.config
|
2014-05-28 01:34:41 +02:00
|
|
|
}
|
|
|
|
|
2014-12-18 20:05:45 +01:00
|
|
|
func (d *baseModuleContext) Errorf(pos scanner.Position,
|
2014-09-25 05:28:11 +02:00
|
|
|
format string, args ...interface{}) {
|
2014-07-03 01:40:31 +02:00
|
|
|
|
2014-09-25 05:28:11 +02:00
|
|
|
d.errs = append(d.errs, &Error{
|
2014-07-03 01:40:31 +02:00
|
|
|
Err: fmt.Errorf(format, args...),
|
|
|
|
Pos: pos,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2014-12-18 20:05:45 +01:00
|
|
|
func (d *baseModuleContext) ModuleErrorf(format string,
|
2014-09-25 05:28:11 +02:00
|
|
|
args ...interface{}) {
|
|
|
|
|
|
|
|
d.errs = append(d.errs, &Error{
|
2014-05-28 01:34:41 +02:00
|
|
|
Err: fmt.Errorf(format, args...),
|
2014-12-18 01:12:41 +01:00
|
|
|
Pos: d.group.pos,
|
2014-05-28 01:34:41 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2014-12-18 20:05:45 +01:00
|
|
|
func (d *baseModuleContext) PropertyErrorf(property, format string,
|
2014-05-28 01:34:41 +02:00
|
|
|
args ...interface{}) {
|
|
|
|
|
2014-12-18 01:12:41 +01:00
|
|
|
pos, ok := d.group.propertyPos[property]
|
2014-05-28 01:34:41 +02:00
|
|
|
if !ok {
|
|
|
|
panic(fmt.Errorf("property %q was not set for this module", property))
|
|
|
|
}
|
|
|
|
|
2014-09-25 05:28:11 +02:00
|
|
|
d.errs = append(d.errs, &Error{
|
2014-05-28 01:34:41 +02:00
|
|
|
Err: fmt.Errorf(format, args...),
|
|
|
|
Pos: pos,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2014-12-18 20:05:45 +01:00
|
|
|
func (d *baseModuleContext) Failed() bool {
|
2014-09-25 05:28:11 +02:00
|
|
|
return len(d.errs) > 0
|
|
|
|
}
|
|
|
|
|
2014-11-11 23:18:53 +01:00
|
|
|
var _ PreModuleContext = (*preModuleContext)(nil)
|
2014-09-25 05:28:11 +02:00
|
|
|
|
2014-11-11 23:18:53 +01:00
|
|
|
type preModuleContext struct {
|
2014-12-18 20:05:45 +01:00
|
|
|
baseModuleContext
|
2014-12-18 01:12:41 +01:00
|
|
|
module *moduleInfo
|
2014-09-25 05:28:11 +02:00
|
|
|
}
|
|
|
|
|
2014-11-11 23:18:53 +01:00
|
|
|
func (m *preModuleContext) OtherModuleName(module Module) string {
|
2014-09-25 05:28:11 +02:00
|
|
|
info := m.context.moduleInfo[module]
|
2014-12-18 01:12:41 +01:00
|
|
|
return info.group.properties.Name
|
2014-09-25 05:28:11 +02:00
|
|
|
}
|
|
|
|
|
2014-11-11 23:18:53 +01:00
|
|
|
func (m *preModuleContext) OtherModuleErrorf(module Module, format string,
|
2014-06-23 02:02:55 +02:00
|
|
|
args ...interface{}) {
|
|
|
|
|
|
|
|
info := m.context.moduleInfo[module]
|
|
|
|
m.errs = append(m.errs, &Error{
|
|
|
|
Err: fmt.Errorf(format, args...),
|
2014-12-18 01:12:41 +01:00
|
|
|
Pos: info.group.pos,
|
2014-06-23 02:02:55 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2014-11-11 23:18:53 +01:00
|
|
|
func (m *preModuleContext) VisitDepsDepthFirst(visit func(Module)) {
|
|
|
|
m.context.visitDepsDepthFirst(m.module, visit)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *preModuleContext) VisitDepsDepthFirstIf(pred func(Module) bool,
|
|
|
|
visit func(Module)) {
|
|
|
|
|
|
|
|
m.context.visitDepsDepthFirstIf(m.module, pred, visit)
|
|
|
|
}
|
|
|
|
|
|
|
|
var _ ModuleContext = (*moduleContext)(nil)
|
|
|
|
|
|
|
|
type moduleContext struct {
|
|
|
|
preModuleContext
|
|
|
|
scope *localScope
|
|
|
|
ninjaFileDeps []string
|
|
|
|
actionDefs localBuildActions
|
|
|
|
}
|
|
|
|
|
2014-10-03 11:49:58 +02:00
|
|
|
func (m *moduleContext) Variable(pctx *PackageContext, name, value string) {
|
|
|
|
m.scope.ReparentTo(pctx)
|
2014-07-01 03:07:17 +02:00
|
|
|
|
2014-05-28 01:34:41 +02:00
|
|
|
v, err := m.scope.AddLocalVariable(name, value)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
m.actionDefs.variables = append(m.actionDefs.variables, v)
|
|
|
|
}
|
|
|
|
|
2014-10-03 11:49:58 +02:00
|
|
|
func (m *moduleContext) Rule(pctx *PackageContext, name string,
|
|
|
|
params RuleParams, argNames ...string) Rule {
|
2014-06-06 05:00:22 +02:00
|
|
|
|
2014-10-03 11:49:58 +02:00
|
|
|
m.scope.ReparentTo(pctx)
|
2014-07-01 03:07:17 +02:00
|
|
|
|
2014-06-06 05:00:22 +02:00
|
|
|
r, err := m.scope.AddLocalRule(name, ¶ms, argNames...)
|
2014-05-28 01:34:41 +02:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
m.actionDefs.rules = append(m.actionDefs.rules, r)
|
|
|
|
|
|
|
|
return r
|
|
|
|
}
|
|
|
|
|
2014-10-03 11:49:58 +02:00
|
|
|
func (m *moduleContext) Build(pctx *PackageContext, params BuildParams) {
|
|
|
|
m.scope.ReparentTo(pctx)
|
2014-07-01 03:07:17 +02:00
|
|
|
|
2014-05-28 01:34:41 +02:00
|
|
|
def, err := parseBuildParams(m.scope, ¶ms)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
m.actionDefs.buildDefs = append(m.actionDefs.buildDefs, def)
|
|
|
|
}
|
|
|
|
|
2014-06-26 02:21:54 +02:00
|
|
|
func (m *moduleContext) AddNinjaFileDeps(deps ...string) {
|
|
|
|
m.ninjaFileDeps = append(m.ninjaFileDeps, deps...)
|
|
|
|
}
|