2020-09-29 08:23:17 +02:00
|
|
|
// Copyright 2020 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 (
|
|
|
|
"bytes"
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
2020-10-13 05:44:08 +02:00
|
|
|
"io/ioutil"
|
2020-09-29 08:23:17 +02:00
|
|
|
"os"
|
|
|
|
"os/exec"
|
2020-10-13 05:44:08 +02:00
|
|
|
"path/filepath"
|
2020-09-29 08:23:17 +02:00
|
|
|
"runtime"
|
|
|
|
"strings"
|
|
|
|
"sync"
|
2020-10-13 05:44:08 +02:00
|
|
|
|
|
|
|
"github.com/google/blueprint/bootstrap"
|
2020-09-29 08:23:17 +02:00
|
|
|
)
|
|
|
|
|
2020-10-23 22:48:08 +02:00
|
|
|
type CqueryRequestType int
|
|
|
|
|
|
|
|
const (
|
|
|
|
getAllFiles CqueryRequestType = iota
|
|
|
|
)
|
|
|
|
|
2020-09-29 08:23:17 +02:00
|
|
|
// Map key to describe bazel cquery requests.
|
|
|
|
type cqueryKey struct {
|
2020-10-23 22:48:08 +02:00
|
|
|
label string
|
|
|
|
requestType CqueryRequestType
|
2020-09-29 08:23:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
type BazelContext interface {
|
|
|
|
// The below methods involve queuing cquery requests to be later invoked
|
|
|
|
// by bazel. If any of these methods return (_, false), then the request
|
|
|
|
// has been queued to be run later.
|
|
|
|
|
|
|
|
// Returns result files built by building the given bazel target label.
|
|
|
|
GetAllFiles(label string) ([]string, bool)
|
|
|
|
|
|
|
|
// TODO(cparsons): Other cquery-related methods should be added here.
|
|
|
|
// ** End cquery methods
|
|
|
|
|
|
|
|
// Issues commands to Bazel to receive results for all cquery requests
|
|
|
|
// queued in the BazelContext.
|
|
|
|
InvokeBazel() error
|
|
|
|
|
|
|
|
// Returns true if bazel is enabled for the given configuration.
|
|
|
|
BazelEnabled() bool
|
|
|
|
}
|
|
|
|
|
|
|
|
// A context object which tracks queued requests that need to be made to Bazel,
|
|
|
|
// and their results after the requests have been made.
|
|
|
|
type bazelContext struct {
|
|
|
|
homeDir string
|
|
|
|
bazelPath string
|
|
|
|
outputBase string
|
|
|
|
workspaceDir string
|
2020-10-23 22:48:08 +02:00
|
|
|
buildDir string
|
2020-09-29 08:23:17 +02:00
|
|
|
|
|
|
|
requests map[cqueryKey]bool // cquery requests that have not yet been issued to Bazel
|
|
|
|
requestMutex sync.Mutex // requests can be written in parallel
|
|
|
|
|
|
|
|
results map[cqueryKey]string // Results of cquery requests after Bazel invocations
|
|
|
|
}
|
|
|
|
|
|
|
|
var _ BazelContext = &bazelContext{}
|
|
|
|
|
|
|
|
// A bazel context to use when Bazel is disabled.
|
|
|
|
type noopBazelContext struct{}
|
|
|
|
|
|
|
|
var _ BazelContext = noopBazelContext{}
|
|
|
|
|
|
|
|
// A bazel context to use for tests.
|
|
|
|
type MockBazelContext struct {
|
|
|
|
AllFiles map[string][]string
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m MockBazelContext) GetAllFiles(label string) ([]string, bool) {
|
|
|
|
result, ok := m.AllFiles[label]
|
|
|
|
return result, ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m MockBazelContext) InvokeBazel() error {
|
|
|
|
panic("unimplemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m MockBazelContext) BazelEnabled() bool {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
var _ BazelContext = MockBazelContext{}
|
|
|
|
|
|
|
|
func (bazelCtx *bazelContext) GetAllFiles(label string) ([]string, bool) {
|
2020-10-23 22:48:08 +02:00
|
|
|
result, ok := bazelCtx.cquery(label, getAllFiles)
|
2020-09-29 08:23:17 +02:00
|
|
|
if ok {
|
|
|
|
bazelOutput := strings.TrimSpace(result)
|
|
|
|
return strings.Split(bazelOutput, ", "), true
|
|
|
|
} else {
|
|
|
|
return nil, false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n noopBazelContext) GetAllFiles(label string) ([]string, bool) {
|
|
|
|
panic("unimplemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n noopBazelContext) InvokeBazel() error {
|
|
|
|
panic("unimplemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n noopBazelContext) BazelEnabled() bool {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewBazelContext(c *config) (BazelContext, error) {
|
2020-10-27 23:59:25 +01:00
|
|
|
// TODO(cparsons): Assess USE_BAZEL=1 instead once "mixed Soong/Bazel builds"
|
|
|
|
// are production ready.
|
|
|
|
if c.Getenv("USE_BAZEL_ANALYSIS") != "1" {
|
2020-09-29 08:23:17 +02:00
|
|
|
return noopBazelContext{}, nil
|
|
|
|
}
|
|
|
|
|
2020-10-23 22:48:08 +02:00
|
|
|
bazelCtx := bazelContext{buildDir: c.buildDir, requests: make(map[cqueryKey]bool)}
|
2020-09-29 08:23:17 +02:00
|
|
|
missingEnvVars := []string{}
|
|
|
|
if len(c.Getenv("BAZEL_HOME")) > 1 {
|
|
|
|
bazelCtx.homeDir = c.Getenv("BAZEL_HOME")
|
|
|
|
} else {
|
|
|
|
missingEnvVars = append(missingEnvVars, "BAZEL_HOME")
|
|
|
|
}
|
|
|
|
if len(c.Getenv("BAZEL_PATH")) > 1 {
|
|
|
|
bazelCtx.bazelPath = c.Getenv("BAZEL_PATH")
|
|
|
|
} else {
|
|
|
|
missingEnvVars = append(missingEnvVars, "BAZEL_PATH")
|
|
|
|
}
|
|
|
|
if len(c.Getenv("BAZEL_OUTPUT_BASE")) > 1 {
|
|
|
|
bazelCtx.outputBase = c.Getenv("BAZEL_OUTPUT_BASE")
|
|
|
|
} else {
|
|
|
|
missingEnvVars = append(missingEnvVars, "BAZEL_OUTPUT_BASE")
|
|
|
|
}
|
|
|
|
if len(c.Getenv("BAZEL_WORKSPACE")) > 1 {
|
|
|
|
bazelCtx.workspaceDir = c.Getenv("BAZEL_WORKSPACE")
|
|
|
|
} else {
|
|
|
|
missingEnvVars = append(missingEnvVars, "BAZEL_WORKSPACE")
|
|
|
|
}
|
|
|
|
if len(missingEnvVars) > 0 {
|
|
|
|
return nil, errors.New(fmt.Sprintf("missing required env vars to use bazel: %s", missingEnvVars))
|
|
|
|
} else {
|
|
|
|
return &bazelCtx, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (context *bazelContext) BazelEnabled() bool {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
// Adds a cquery request to the Bazel request queue, to be later invoked, or
|
|
|
|
// returns the result of the given request if the request was already made.
|
|
|
|
// If the given request was already made (and the results are available), then
|
|
|
|
// returns (result, true). If the request is queued but no results are available,
|
|
|
|
// then returns ("", false).
|
2020-10-23 22:48:08 +02:00
|
|
|
func (context *bazelContext) cquery(label string, requestType CqueryRequestType) (string, bool) {
|
|
|
|
key := cqueryKey{label, requestType}
|
2020-09-29 08:23:17 +02:00
|
|
|
if result, ok := context.results[key]; ok {
|
|
|
|
return result, true
|
|
|
|
} else {
|
|
|
|
context.requestMutex.Lock()
|
|
|
|
defer context.requestMutex.Unlock()
|
|
|
|
context.requests[key] = true
|
|
|
|
return "", false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func pwdPrefix() string {
|
|
|
|
// Darwin doesn't have /proc
|
|
|
|
if runtime.GOOS != "darwin" {
|
|
|
|
return "PWD=/proc/self/cwd"
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (context *bazelContext) issueBazelCommand(command string, labels []string,
|
|
|
|
extraFlags ...string) (string, error) {
|
|
|
|
|
2020-11-02 08:56:20 +01:00
|
|
|
cmdFlags := []string{"--output_base=" + context.outputBase, command}
|
2020-09-29 08:23:17 +02:00
|
|
|
cmdFlags = append(cmdFlags, labels...)
|
2020-11-17 21:41:01 +01:00
|
|
|
cmdFlags = append(cmdFlags, "--package_path=%workspace%/"+context.intermediatesDir())
|
2020-09-29 08:23:17 +02:00
|
|
|
cmdFlags = append(cmdFlags, extraFlags...)
|
|
|
|
|
|
|
|
bazelCmd := exec.Command(context.bazelPath, cmdFlags...)
|
|
|
|
bazelCmd.Dir = context.workspaceDir
|
|
|
|
bazelCmd.Env = append(os.Environ(), "HOME="+context.homeDir, pwdPrefix())
|
|
|
|
|
2020-10-10 04:24:15 +02:00
|
|
|
stderr := &bytes.Buffer{}
|
|
|
|
bazelCmd.Stderr = stderr
|
2020-09-29 08:23:17 +02:00
|
|
|
|
|
|
|
if output, err := bazelCmd.Output(); err != nil {
|
|
|
|
return "", fmt.Errorf("bazel command failed. command: [%s], error [%s]", bazelCmd, stderr)
|
|
|
|
} else {
|
|
|
|
return string(output), nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-17 21:41:01 +01:00
|
|
|
// Returns the string contents of a workspace file that should be output
|
|
|
|
// adjacent to the main bzl file and build file.
|
|
|
|
// This workspace file allows, via local_repository rule, sourcetree-level
|
|
|
|
// BUILD targets to be referenced via @sourceroot.
|
|
|
|
func (context *bazelContext) workspaceFileContents() []byte {
|
|
|
|
formatString := `
|
|
|
|
# This file is generated by soong_build. Do not edit.
|
|
|
|
local_repository(
|
|
|
|
name = "sourceroot",
|
|
|
|
path = "%s",
|
|
|
|
)
|
|
|
|
`
|
|
|
|
return []byte(fmt.Sprintf(formatString, context.workspaceDir))
|
|
|
|
}
|
|
|
|
|
2020-10-23 22:48:08 +02:00
|
|
|
func (context *bazelContext) mainBzlFileContents() []byte {
|
|
|
|
contents := `
|
|
|
|
# This file is generated by soong_build. Do not edit.
|
|
|
|
def _mixed_build_root_impl(ctx):
|
|
|
|
return [DefaultInfo(files = depset(ctx.files.deps))]
|
|
|
|
|
|
|
|
mixed_build_root = rule(
|
|
|
|
implementation = _mixed_build_root_impl,
|
|
|
|
attrs = {"deps" : attr.label_list()},
|
|
|
|
)
|
|
|
|
`
|
|
|
|
return []byte(contents)
|
|
|
|
}
|
|
|
|
|
2020-11-17 21:41:01 +01:00
|
|
|
// Returns a "canonicalized" corresponding to the given sourcetree-level label.
|
|
|
|
// This abstraction is required because a sourcetree label such as //foo/bar:baz
|
|
|
|
// must be referenced via the local repository prefix, such as
|
|
|
|
// @sourceroot//foo/bar:baz.
|
|
|
|
func canonicalizeLabel(label string) string {
|
|
|
|
if strings.HasPrefix(label, "//") {
|
|
|
|
return "@sourceroot" + label
|
|
|
|
} else {
|
|
|
|
return "@sourceroot//" + label
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-23 22:48:08 +02:00
|
|
|
func (context *bazelContext) mainBuildFileContents() []byte {
|
|
|
|
formatString := `
|
|
|
|
# This file is generated by soong_build. Do not edit.
|
|
|
|
load(":main.bzl", "mixed_build_root")
|
|
|
|
|
|
|
|
mixed_build_root(name = "buildroot",
|
|
|
|
deps = [%s],
|
|
|
|
)
|
|
|
|
`
|
|
|
|
var buildRootDeps []string = nil
|
|
|
|
for val, _ := range context.requests {
|
2020-11-17 21:41:01 +01:00
|
|
|
buildRootDeps = append(buildRootDeps, fmt.Sprintf("\"%s\"", canonicalizeLabel(val.label)))
|
2020-10-23 22:48:08 +02:00
|
|
|
}
|
|
|
|
buildRootDepsString := strings.Join(buildRootDeps, ",\n ")
|
|
|
|
|
|
|
|
return []byte(fmt.Sprintf(formatString, buildRootDepsString))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (context *bazelContext) cqueryStarlarkFileContents() []byte {
|
|
|
|
formatString := `
|
|
|
|
# This file is generated by soong_build. Do not edit.
|
|
|
|
getAllFilesLabels = {
|
|
|
|
%s
|
|
|
|
}
|
|
|
|
|
|
|
|
def format(target):
|
|
|
|
if str(target.label) in getAllFilesLabels:
|
|
|
|
return str(target.label) + ">>" + ', '.join([f.path for f in target.files.to_list()])
|
|
|
|
else:
|
|
|
|
# This target was not requested via cquery, and thus must be a dependency
|
|
|
|
# of a requested target.
|
|
|
|
return ""
|
|
|
|
`
|
|
|
|
var buildRootDeps []string = nil
|
|
|
|
// TODO(cparsons): Sort by request type instead of assuming all requests
|
|
|
|
// are of GetAllFiles type.
|
|
|
|
for val, _ := range context.requests {
|
2020-11-17 21:41:01 +01:00
|
|
|
buildRootDeps = append(buildRootDeps, fmt.Sprintf("\"%s\" : True", canonicalizeLabel(val.label)))
|
2020-10-23 22:48:08 +02:00
|
|
|
}
|
|
|
|
buildRootDepsString := strings.Join(buildRootDeps, ",\n ")
|
|
|
|
|
|
|
|
return []byte(fmt.Sprintf(formatString, buildRootDepsString))
|
|
|
|
}
|
|
|
|
|
2020-11-17 21:41:01 +01:00
|
|
|
// Returns a workspace-relative path containing build-related metadata required
|
|
|
|
// for interfacing with Bazel. Example: out/soong/bazel.
|
|
|
|
func (context *bazelContext) intermediatesDir() string {
|
|
|
|
return filepath.Join(context.buildDir, "bazel")
|
|
|
|
}
|
|
|
|
|
2020-09-29 08:23:17 +02:00
|
|
|
// Issues commands to Bazel to receive results for all cquery requests
|
|
|
|
// queued in the BazelContext.
|
|
|
|
func (context *bazelContext) InvokeBazel() error {
|
|
|
|
context.results = make(map[cqueryKey]string)
|
|
|
|
|
|
|
|
var cqueryOutput string
|
|
|
|
var err error
|
2020-11-17 21:41:01 +01:00
|
|
|
|
|
|
|
err = os.Mkdir(absolutePath(context.intermediatesDir()), 0777)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2020-10-23 22:48:08 +02:00
|
|
|
err = ioutil.WriteFile(
|
2020-11-17 21:41:01 +01:00
|
|
|
absolutePath(filepath.Join(context.intermediatesDir(), "main.bzl")),
|
2020-10-23 22:48:08 +02:00
|
|
|
context.mainBzlFileContents(), 0666)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
err = ioutil.WriteFile(
|
2020-11-17 21:41:01 +01:00
|
|
|
absolutePath(filepath.Join(context.intermediatesDir(), "BUILD.bazel")),
|
2020-10-23 22:48:08 +02:00
|
|
|
context.mainBuildFileContents(), 0666)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2020-11-17 21:41:01 +01:00
|
|
|
cquery_file_relpath := filepath.Join(context.intermediatesDir(), "buildroot.cquery")
|
2020-10-23 22:48:08 +02:00
|
|
|
err = ioutil.WriteFile(
|
|
|
|
absolutePath(cquery_file_relpath),
|
|
|
|
context.cqueryStarlarkFileContents(), 0666)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2020-11-17 21:41:01 +01:00
|
|
|
workspace_file_relpath := filepath.Join(context.intermediatesDir(), "WORKSPACE.bazel")
|
|
|
|
err = ioutil.WriteFile(
|
|
|
|
absolutePath(workspace_file_relpath),
|
|
|
|
context.workspaceFileContents(), 0666)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
buildroot_label := "//:buildroot"
|
2020-10-23 22:48:08 +02:00
|
|
|
cqueryOutput, err = context.issueBazelCommand("cquery",
|
|
|
|
[]string{fmt.Sprintf("deps(%s)", buildroot_label)},
|
|
|
|
"--output=starlark",
|
|
|
|
"--starlark:file="+cquery_file_relpath)
|
2020-09-29 08:23:17 +02:00
|
|
|
|
2020-10-23 22:48:08 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2020-09-29 08:23:17 +02:00
|
|
|
|
2020-10-23 22:48:08 +02:00
|
|
|
cqueryResults := map[string]string{}
|
|
|
|
for _, outputLine := range strings.Split(cqueryOutput, "\n") {
|
|
|
|
if strings.Contains(outputLine, ">>") {
|
|
|
|
splitLine := strings.SplitN(outputLine, ">>", 2)
|
|
|
|
cqueryResults[splitLine[0]] = splitLine[1]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for val, _ := range context.requests {
|
2020-11-17 21:41:01 +01:00
|
|
|
if cqueryResult, ok := cqueryResults[canonicalizeLabel(val.label)]; ok {
|
2020-10-23 22:48:08 +02:00
|
|
|
context.results[val] = string(cqueryResult)
|
2020-09-29 08:23:17 +02:00
|
|
|
} else {
|
2020-10-23 22:48:08 +02:00
|
|
|
return fmt.Errorf("missing result for bazel target %s", val.label)
|
2020-09-29 08:23:17 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Issue a build command.
|
|
|
|
// TODO(cparsons): Invoking bazel execution during soong_build should be avoided;
|
|
|
|
// bazel actions should either be added to the Ninja file and executed later,
|
|
|
|
// or bazel should handle execution.
|
|
|
|
// TODO(cparsons): Use --target_pattern_file to avoid command line limits.
|
2020-10-23 22:48:08 +02:00
|
|
|
_, err = context.issueBazelCommand("build", []string{buildroot_label})
|
2020-09-29 08:23:17 +02:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Clear requests.
|
|
|
|
context.requests = map[cqueryKey]bool{}
|
|
|
|
return nil
|
|
|
|
}
|
2020-10-13 05:44:08 +02:00
|
|
|
|
|
|
|
// Singleton used for registering BUILD file ninja dependencies (needed
|
|
|
|
// for correctness of builds which use Bazel.
|
|
|
|
func BazelSingleton() Singleton {
|
|
|
|
return &bazelSingleton{}
|
|
|
|
}
|
|
|
|
|
|
|
|
type bazelSingleton struct{}
|
|
|
|
|
|
|
|
func (c *bazelSingleton) GenerateBuildActions(ctx SingletonContext) {
|
|
|
|
if ctx.Config().BazelContext.BazelEnabled() {
|
|
|
|
bazelBuildList := absolutePath(filepath.Join(
|
|
|
|
filepath.Dir(bootstrap.ModuleListFile), "bazel.list"))
|
|
|
|
ctx.AddNinjaFileDeps(bazelBuildList)
|
|
|
|
|
|
|
|
data, err := ioutil.ReadFile(bazelBuildList)
|
|
|
|
if err != nil {
|
|
|
|
ctx.Errorf(err.Error())
|
|
|
|
}
|
|
|
|
files := strings.Split(strings.TrimSpace(string(data)), "\n")
|
|
|
|
for _, file := range files {
|
|
|
|
ctx.AddNinjaFileDeps(file)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|