2017-11-29 02:34:01 +01:00
|
|
|
// Copyright 2017 Google Inc. All rights reserved.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package android
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/google/blueprint"
|
|
|
|
)
|
|
|
|
|
|
|
|
// SingletonContext
|
|
|
|
type SingletonContext interface {
|
2017-11-29 09:27:14 +01:00
|
|
|
Config() Config
|
2019-02-07 23:25:51 +01:00
|
|
|
DeviceConfig() DeviceConfig
|
2017-11-29 02:34:01 +01:00
|
|
|
|
|
|
|
ModuleName(module blueprint.Module) string
|
|
|
|
ModuleDir(module blueprint.Module) string
|
|
|
|
ModuleSubDir(module blueprint.Module) string
|
|
|
|
ModuleType(module blueprint.Module) string
|
|
|
|
BlueprintFile(module blueprint.Module) string
|
|
|
|
|
|
|
|
ModuleErrorf(module blueprint.Module, format string, args ...interface{})
|
|
|
|
Errorf(format string, args ...interface{})
|
|
|
|
Failed() bool
|
|
|
|
|
|
|
|
Variable(pctx PackageContext, name, value string)
|
2017-12-12 20:05:06 +01:00
|
|
|
Rule(pctx PackageContext, name string, params blueprint.RuleParams, argNames ...string) blueprint.Rule
|
2017-11-29 02:34:01 +01:00
|
|
|
Build(pctx PackageContext, params BuildParams)
|
2020-06-04 22:25:17 +02:00
|
|
|
|
|
|
|
// Phony creates a Make-style phony rule, a rule with no commands that can depend on other
|
|
|
|
// phony rules or real files. Phony can be called on the same name multiple times to add
|
|
|
|
// additional dependencies.
|
|
|
|
Phony(name string, deps ...Path)
|
|
|
|
|
2017-11-29 02:34:01 +01:00
|
|
|
RequireNinjaVersion(major, minor, micro int)
|
|
|
|
|
|
|
|
// SetNinjaBuildDir sets the value of the top-level "builddir" Ninja variable
|
|
|
|
// that controls where Ninja stores its build log files. This value can be
|
|
|
|
// set at most one time for a single build, later calls are ignored.
|
|
|
|
SetNinjaBuildDir(pctx PackageContext, value string)
|
|
|
|
|
|
|
|
// Eval takes a string with embedded ninja variables, and returns a string
|
|
|
|
// with all of the variables recursively expanded. Any variables references
|
|
|
|
// are expanded in the scope of the PackageContext.
|
|
|
|
Eval(pctx PackageContext, ninjaStr string) (string, error)
|
|
|
|
|
2018-09-28 19:19:18 +02:00
|
|
|
VisitAllModulesBlueprint(visit func(blueprint.Module))
|
2017-11-29 02:34:01 +01:00
|
|
|
VisitAllModules(visit func(Module))
|
|
|
|
VisitAllModulesIf(pred func(Module) bool, visit func(Module))
|
2019-10-17 00:00:12 +02:00
|
|
|
|
|
|
|
VisitDirectDeps(module Module, visit func(Module))
|
|
|
|
VisitDirectDepsIf(module Module, pred func(Module) bool, visit func(Module))
|
|
|
|
|
2018-06-21 22:03:07 +02:00
|
|
|
// Deprecated: use WalkDeps instead to support multiple dependency tags on the same module
|
2017-11-29 02:34:01 +01:00
|
|
|
VisitDepsDepthFirst(module Module, visit func(Module))
|
2018-06-21 22:03:07 +02:00
|
|
|
// Deprecated: use WalkDeps instead to support multiple dependency tags on the same module
|
2017-11-29 02:34:01 +01:00
|
|
|
VisitDepsDepthFirstIf(module Module, pred func(Module) bool,
|
|
|
|
visit func(Module))
|
|
|
|
|
|
|
|
VisitAllModuleVariants(module Module, visit func(Module))
|
|
|
|
|
|
|
|
PrimaryModule(module Module) Module
|
|
|
|
FinalModule(module Module) Module
|
|
|
|
|
|
|
|
AddNinjaFileDeps(deps ...string)
|
|
|
|
|
|
|
|
// GlobWithDeps returns a list of files that match the specified pattern but do not match any
|
|
|
|
// of the patterns in excludes. It also adds efficient dependencies to rerun the primary
|
|
|
|
// builder whenever a file matching the pattern as added or removed, without rerunning if a
|
|
|
|
// file that does not match the pattern is added to a searched directory.
|
|
|
|
GlobWithDeps(pattern string, excludes []string) ([]string, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
type singletonAdaptor struct {
|
|
|
|
Singleton
|
2019-02-25 23:54:28 +01:00
|
|
|
|
|
|
|
buildParams []BuildParams
|
|
|
|
ruleParams map[blueprint.Rule]blueprint.RuleParams
|
|
|
|
}
|
|
|
|
|
|
|
|
var _ testBuildProvider = (*singletonAdaptor)(nil)
|
|
|
|
|
|
|
|
func (s *singletonAdaptor) GenerateBuildActions(ctx blueprint.SingletonContext) {
|
|
|
|
sctx := &singletonContextAdaptor{SingletonContext: ctx}
|
|
|
|
if sctx.Config().captureBuild {
|
|
|
|
sctx.ruleParams = make(map[blueprint.Rule]blueprint.RuleParams)
|
|
|
|
}
|
|
|
|
|
|
|
|
s.Singleton.GenerateBuildActions(sctx)
|
|
|
|
|
|
|
|
s.buildParams = sctx.buildParams
|
|
|
|
s.ruleParams = sctx.ruleParams
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *singletonAdaptor) BuildParamsForTests() []BuildParams {
|
|
|
|
return s.buildParams
|
2017-11-29 02:34:01 +01:00
|
|
|
}
|
|
|
|
|
2019-02-25 23:54:28 +01:00
|
|
|
func (s *singletonAdaptor) RuleParamsForTests() map[blueprint.Rule]blueprint.RuleParams {
|
|
|
|
return s.ruleParams
|
2017-11-29 02:34:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
type Singleton interface {
|
|
|
|
GenerateBuildActions(SingletonContext)
|
|
|
|
}
|
|
|
|
|
|
|
|
type singletonContextAdaptor struct {
|
|
|
|
blueprint.SingletonContext
|
2019-02-25 23:54:28 +01:00
|
|
|
|
|
|
|
buildParams []BuildParams
|
|
|
|
ruleParams map[blueprint.Rule]blueprint.RuleParams
|
2017-11-29 02:34:01 +01:00
|
|
|
}
|
|
|
|
|
2019-02-25 23:54:28 +01:00
|
|
|
func (s *singletonContextAdaptor) Config() Config {
|
2017-11-29 09:27:14 +01:00
|
|
|
return s.SingletonContext.Config().(Config)
|
|
|
|
}
|
|
|
|
|
2019-02-25 23:54:28 +01:00
|
|
|
func (s *singletonContextAdaptor) DeviceConfig() DeviceConfig {
|
2019-02-07 23:25:51 +01:00
|
|
|
return DeviceConfig{s.Config().deviceConfig}
|
|
|
|
}
|
|
|
|
|
2019-02-25 23:54:28 +01:00
|
|
|
func (s *singletonContextAdaptor) Variable(pctx PackageContext, name, value string) {
|
2017-11-29 02:34:01 +01:00
|
|
|
s.SingletonContext.Variable(pctx.PackageContext, name, value)
|
|
|
|
}
|
|
|
|
|
2019-02-25 23:54:28 +01:00
|
|
|
func (s *singletonContextAdaptor) Rule(pctx PackageContext, name string, params blueprint.RuleParams, argNames ...string) blueprint.Rule {
|
2020-04-01 04:14:52 +02:00
|
|
|
if s.Config().UseRemoteBuild() {
|
|
|
|
if params.Pool == nil {
|
|
|
|
// When USE_GOMA=true or USE_RBE=true are set and the rule is not supported by goma/RBE, restrict
|
|
|
|
// jobs to the local parallelism value
|
|
|
|
params.Pool = localPool
|
|
|
|
} else if params.Pool == remotePool {
|
|
|
|
// remotePool is a fake pool used to identify rule that are supported for remoting. If the rule's
|
|
|
|
// pool is the remotePool, replace with nil so that ninja runs it at NINJA_REMOTE_NUM_JOBS
|
|
|
|
// parallelism.
|
|
|
|
params.Pool = nil
|
|
|
|
}
|
2019-09-25 22:31:46 +02:00
|
|
|
}
|
2019-02-25 23:54:28 +01:00
|
|
|
rule := s.SingletonContext.Rule(pctx.PackageContext, name, params, argNames...)
|
|
|
|
if s.Config().captureBuild {
|
|
|
|
s.ruleParams[rule] = params
|
|
|
|
}
|
|
|
|
return rule
|
2017-11-29 02:34:01 +01:00
|
|
|
}
|
|
|
|
|
2019-02-25 23:54:28 +01:00
|
|
|
func (s *singletonContextAdaptor) Build(pctx PackageContext, params BuildParams) {
|
|
|
|
if s.Config().captureBuild {
|
|
|
|
s.buildParams = append(s.buildParams, params)
|
|
|
|
}
|
2017-11-29 02:34:01 +01:00
|
|
|
bparams := convertBuildParams(params)
|
|
|
|
s.SingletonContext.Build(pctx.PackageContext, bparams)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-06-04 22:25:17 +02:00
|
|
|
func (s *singletonContextAdaptor) Phony(name string, deps ...Path) {
|
|
|
|
addPhony(s.Config(), name, deps...)
|
|
|
|
}
|
|
|
|
|
2019-02-25 23:54:28 +01:00
|
|
|
func (s *singletonContextAdaptor) SetNinjaBuildDir(pctx PackageContext, value string) {
|
2017-11-29 02:34:01 +01:00
|
|
|
s.SingletonContext.SetNinjaBuildDir(pctx.PackageContext, value)
|
|
|
|
}
|
|
|
|
|
2019-02-25 23:54:28 +01:00
|
|
|
func (s *singletonContextAdaptor) Eval(pctx PackageContext, ninjaStr string) (string, error) {
|
2017-11-29 02:34:01 +01:00
|
|
|
return s.SingletonContext.Eval(pctx.PackageContext, ninjaStr)
|
|
|
|
}
|
|
|
|
|
|
|
|
// visitAdaptor wraps a visit function that takes an android.Module parameter into
|
|
|
|
// a function that takes an blueprint.Module parameter and only calls the visit function if the
|
|
|
|
// blueprint.Module is an android.Module.
|
|
|
|
func visitAdaptor(visit func(Module)) func(blueprint.Module) {
|
|
|
|
return func(module blueprint.Module) {
|
|
|
|
if aModule, ok := module.(Module); ok {
|
|
|
|
visit(aModule)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// predAdaptor wraps a pred function that takes an android.Module parameter
|
|
|
|
// into a function that takes an blueprint.Module parameter and only calls the visit function if the
|
|
|
|
// blueprint.Module is an android.Module, otherwise returns false.
|
|
|
|
func predAdaptor(pred func(Module) bool) func(blueprint.Module) bool {
|
|
|
|
return func(module blueprint.Module) bool {
|
|
|
|
if aModule, ok := module.(Module); ok {
|
|
|
|
return pred(aModule)
|
|
|
|
} else {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-25 23:54:28 +01:00
|
|
|
func (s *singletonContextAdaptor) VisitAllModulesBlueprint(visit func(blueprint.Module)) {
|
2018-09-28 19:19:18 +02:00
|
|
|
s.SingletonContext.VisitAllModules(visit)
|
|
|
|
}
|
|
|
|
|
2019-02-25 23:54:28 +01:00
|
|
|
func (s *singletonContextAdaptor) VisitAllModules(visit func(Module)) {
|
2017-11-29 02:34:01 +01:00
|
|
|
s.SingletonContext.VisitAllModules(visitAdaptor(visit))
|
|
|
|
}
|
|
|
|
|
2019-02-25 23:54:28 +01:00
|
|
|
func (s *singletonContextAdaptor) VisitAllModulesIf(pred func(Module) bool, visit func(Module)) {
|
2017-11-29 02:34:01 +01:00
|
|
|
s.SingletonContext.VisitAllModulesIf(predAdaptor(pred), visitAdaptor(visit))
|
|
|
|
}
|
|
|
|
|
2019-10-17 00:00:12 +02:00
|
|
|
func (s *singletonContextAdaptor) VisitDirectDeps(module Module, visit func(Module)) {
|
|
|
|
s.SingletonContext.VisitDirectDeps(module, visitAdaptor(visit))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *singletonContextAdaptor) VisitDirectDepsIf(module Module, pred func(Module) bool, visit func(Module)) {
|
|
|
|
s.SingletonContext.VisitDirectDepsIf(module, predAdaptor(pred), visitAdaptor(visit))
|
|
|
|
}
|
|
|
|
|
2019-02-25 23:54:28 +01:00
|
|
|
func (s *singletonContextAdaptor) VisitDepsDepthFirst(module Module, visit func(Module)) {
|
2017-11-29 02:34:01 +01:00
|
|
|
s.SingletonContext.VisitDepsDepthFirst(module, visitAdaptor(visit))
|
|
|
|
}
|
|
|
|
|
2019-02-25 23:54:28 +01:00
|
|
|
func (s *singletonContextAdaptor) VisitDepsDepthFirstIf(module Module, pred func(Module) bool, visit func(Module)) {
|
2017-11-29 02:34:01 +01:00
|
|
|
s.SingletonContext.VisitDepsDepthFirstIf(module, predAdaptor(pred), visitAdaptor(visit))
|
|
|
|
}
|
|
|
|
|
2019-02-25 23:54:28 +01:00
|
|
|
func (s *singletonContextAdaptor) VisitAllModuleVariants(module Module, visit func(Module)) {
|
2017-11-29 02:34:01 +01:00
|
|
|
s.SingletonContext.VisitAllModuleVariants(module, visitAdaptor(visit))
|
|
|
|
}
|
|
|
|
|
2019-02-25 23:54:28 +01:00
|
|
|
func (s *singletonContextAdaptor) PrimaryModule(module Module) Module {
|
2017-11-29 02:34:01 +01:00
|
|
|
return s.SingletonContext.PrimaryModule(module).(Module)
|
|
|
|
}
|
|
|
|
|
2019-02-25 23:54:28 +01:00
|
|
|
func (s *singletonContextAdaptor) FinalModule(module Module) Module {
|
2017-11-29 02:34:01 +01:00
|
|
|
return s.SingletonContext.FinalModule(module).(Module)
|
|
|
|
}
|