2015-01-31 02:27:36 +01:00
|
|
|
// Copyright 2015 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 main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"flag"
|
|
|
|
"fmt"
|
2021-03-23 11:46:47 +01:00
|
|
|
"io/ioutil"
|
2015-01-31 02:27:36 +01:00
|
|
|
"os"
|
|
|
|
"path/filepath"
|
2021-01-28 14:22:12 +01:00
|
|
|
"strings"
|
2021-03-24 10:50:06 +01:00
|
|
|
"time"
|
2015-01-31 02:27:36 +01:00
|
|
|
|
2021-04-14 10:31:00 +02:00
|
|
|
"android/soong/bp2build"
|
2021-02-26 14:27:36 +01:00
|
|
|
"android/soong/shared"
|
2015-03-23 20:57:34 +01:00
|
|
|
"github.com/google/blueprint/bootstrap"
|
2021-04-14 13:49:50 +02:00
|
|
|
"github.com/google/blueprint/deptools"
|
2021-08-18 10:55:32 +02:00
|
|
|
"github.com/google/blueprint/pathtools"
|
2015-01-31 02:27:36 +01:00
|
|
|
|
2016-05-19 00:37:25 +02:00
|
|
|
"android/soong/android"
|
2015-01-31 02:27:36 +01:00
|
|
|
)
|
|
|
|
|
2017-12-12 00:52:26 +01:00
|
|
|
var (
|
2021-04-14 10:31:00 +02:00
|
|
|
topDir string
|
|
|
|
outDir string
|
|
|
|
availableEnvFile string
|
|
|
|
usedEnvFile string
|
|
|
|
|
2021-08-18 10:55:32 +02:00
|
|
|
globFile string
|
|
|
|
globListDir string
|
2021-04-14 10:31:00 +02:00
|
|
|
delveListen string
|
|
|
|
delvePath string
|
|
|
|
|
2020-11-05 13:42:11 +01:00
|
|
|
docFile string
|
|
|
|
bazelQueryViewDir string
|
2021-04-14 10:31:00 +02:00
|
|
|
bp2buildMarker string
|
2021-08-16 15:24:48 +02:00
|
|
|
|
|
|
|
cmdlineArgs bootstrap.Args
|
2017-12-12 00:52:26 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2021-04-14 10:31:00 +02:00
|
|
|
// Flags that make sense in every mode
|
2021-02-26 14:27:36 +01:00
|
|
|
flag.StringVar(&topDir, "top", "", "Top directory of the Android source tree")
|
|
|
|
flag.StringVar(&outDir, "out", "", "Soong output directory (usually $TOP/out/soong)")
|
2021-04-14 10:31:00 +02:00
|
|
|
flag.StringVar(&availableEnvFile, "available_env", "", "File containing available environment variables")
|
|
|
|
flag.StringVar(&usedEnvFile, "used_env", "", "File containing used environment variables")
|
|
|
|
|
|
|
|
// Debug flags
|
2021-03-02 10:09:41 +01:00
|
|
|
flag.StringVar(&delveListen, "delve_listen", "", "Delve port to listen on for debugging")
|
|
|
|
flag.StringVar(&delvePath, "delve_path", "", "Path to Delve. Only used if --delve_listen is set")
|
2021-04-14 10:31:00 +02:00
|
|
|
|
|
|
|
// Flags representing various modes soong_build can run in
|
2017-12-12 00:52:26 +01:00
|
|
|
flag.StringVar(&docFile, "soong_docs", "", "build documentation file to output")
|
2021-03-08 16:34:09 +01:00
|
|
|
flag.StringVar(&bazelQueryViewDir, "bazel_queryview_dir", "", "path to the bazel queryview directory relative to --top")
|
2021-04-14 10:31:00 +02:00
|
|
|
flag.StringVar(&bp2buildMarker, "bp2build_marker", "", "If set, run bp2build, touch the specified marker file then exit")
|
2021-08-16 15:24:48 +02:00
|
|
|
|
|
|
|
flag.StringVar(&cmdlineArgs.OutFile, "o", "build.ninja", "the Ninja file to output")
|
2021-08-18 10:55:32 +02:00
|
|
|
flag.StringVar(&globFile, "globFile", "build-globs.ninja", "the Ninja file of globs to output")
|
|
|
|
flag.StringVar(&globListDir, "globListDir", "", "the directory containing the glob list files")
|
2021-08-16 15:24:48 +02:00
|
|
|
flag.StringVar(&cmdlineArgs.BuildDir, "b", ".", "the build output directory")
|
|
|
|
flag.StringVar(&cmdlineArgs.NinjaBuildDir, "n", "", "the ninja builddir directory")
|
|
|
|
flag.StringVar(&cmdlineArgs.DepFile, "d", "", "the dependency file to output")
|
|
|
|
flag.StringVar(&cmdlineArgs.Cpuprofile, "cpuprofile", "", "write cpu profile to file")
|
|
|
|
flag.StringVar(&cmdlineArgs.TraceFile, "trace", "", "write trace to file")
|
|
|
|
flag.StringVar(&cmdlineArgs.Memprofile, "memprofile", "", "write memory profile to file")
|
|
|
|
flag.BoolVar(&cmdlineArgs.NoGC, "nogc", false, "turn off GC for debugging")
|
|
|
|
flag.BoolVar(&cmdlineArgs.RunGoTests, "t", false, "build and run go tests during bootstrap")
|
|
|
|
flag.BoolVar(&cmdlineArgs.UseValidations, "use-validations", false, "use validations to depend on go tests")
|
|
|
|
flag.StringVar(&cmdlineArgs.ModuleListFile, "l", "", "file that lists filepaths to parse")
|
|
|
|
flag.BoolVar(&cmdlineArgs.EmptyNinjaFile, "empty-ninja-file", false, "write out a 0-byte ninja file")
|
2017-12-12 00:52:26 +01:00
|
|
|
}
|
|
|
|
|
2017-11-30 01:47:17 +01:00
|
|
|
func newNameResolver(config android.Config) *android.NameResolver {
|
|
|
|
namespacePathsToExport := make(map[string]bool)
|
|
|
|
|
2018-03-12 23:30:26 +01:00
|
|
|
for _, namespaceName := range config.ExportedNamespaces() {
|
2017-11-30 01:47:17 +01:00
|
|
|
namespacePathsToExport[namespaceName] = true
|
|
|
|
}
|
|
|
|
|
|
|
|
namespacePathsToExport["."] = true // always export the root namespace
|
|
|
|
|
|
|
|
exportFilter := func(namespace *android.Namespace) bool {
|
|
|
|
return namespacePathsToExport[namespace.Path]
|
|
|
|
}
|
|
|
|
|
|
|
|
return android.NewNameResolver(exportFilter)
|
|
|
|
}
|
|
|
|
|
2021-04-01 17:55:58 +02:00
|
|
|
func newContext(configuration android.Config, prepareBuildActions bool) *android.Context {
|
2020-10-30 01:09:13 +01:00
|
|
|
ctx := android.NewContext(configuration)
|
2020-12-14 08:58:54 +01:00
|
|
|
ctx.Register()
|
2021-04-01 17:55:58 +02:00
|
|
|
if !prepareBuildActions {
|
2020-09-29 08:23:17 +02:00
|
|
|
configuration.SetStopBefore(bootstrap.StopBeforePrepareBuildActions)
|
|
|
|
}
|
|
|
|
ctx.SetNameInterface(newNameResolver(configuration))
|
|
|
|
ctx.SetAllowMissingDependencies(configuration.AllowMissingDependencies())
|
|
|
|
return ctx
|
|
|
|
}
|
2015-01-31 02:27:36 +01:00
|
|
|
|
2021-08-16 17:05:09 +02:00
|
|
|
func newConfig(outDir string, availableEnv map[string]string) android.Config {
|
|
|
|
configuration, err := android.NewConfig(outDir, cmdlineArgs.ModuleListFile, availableEnv)
|
2015-01-31 02:27:36 +01:00
|
|
|
if err != nil {
|
|
|
|
fmt.Fprintf(os.Stderr, "%s", err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
2020-09-29 08:23:17 +02:00
|
|
|
return configuration
|
|
|
|
}
|
2015-01-31 02:27:36 +01:00
|
|
|
|
2021-04-01 17:55:58 +02:00
|
|
|
// Bazel-enabled mode. Soong runs in two passes.
|
|
|
|
// First pass: Analyze the build tree, but only store all bazel commands
|
|
|
|
// needed to correctly evaluate the tree in the second pass.
|
|
|
|
// TODO(cparsons): Don't output any ninja file, as the second pass will overwrite
|
|
|
|
// the incorrect results from the first pass, and file I/O is expensive.
|
|
|
|
func runMixedModeBuild(configuration android.Config, firstCtx *android.Context, extraNinjaDeps []string) {
|
2021-04-14 13:49:50 +02:00
|
|
|
var firstArgs, secondArgs bootstrap.Args
|
|
|
|
|
2021-08-16 15:24:48 +02:00
|
|
|
firstArgs = cmdlineArgs
|
2021-04-01 17:55:58 +02:00
|
|
|
configuration.SetStopBefore(bootstrap.StopBeforeWriteNinja)
|
2021-04-15 15:06:40 +02:00
|
|
|
bootstrap.RunBlueprint(firstArgs, firstCtx.Context, configuration)
|
2021-04-14 13:49:50 +02:00
|
|
|
|
2021-04-01 17:55:58 +02:00
|
|
|
// Invoke bazel commands and save results for second pass.
|
|
|
|
if err := configuration.BazelContext.InvokeBazel(); err != nil {
|
|
|
|
fmt.Fprintf(os.Stderr, "%s", err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
// Second pass: Full analysis, using the bazel command results. Output ninja file.
|
2021-04-14 13:49:50 +02:00
|
|
|
secondConfig, err := android.ConfigForAdditionalRun(configuration)
|
2021-04-01 17:55:58 +02:00
|
|
|
if err != nil {
|
|
|
|
fmt.Fprintf(os.Stderr, "%s", err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
2021-04-14 13:49:50 +02:00
|
|
|
secondCtx := newContext(secondConfig, true)
|
2021-08-16 15:24:48 +02:00
|
|
|
secondArgs = cmdlineArgs
|
2021-04-15 15:06:40 +02:00
|
|
|
ninjaDeps := bootstrap.RunBlueprint(secondArgs, secondCtx.Context, secondConfig)
|
|
|
|
ninjaDeps = append(ninjaDeps, extraNinjaDeps...)
|
2021-08-18 10:55:32 +02:00
|
|
|
|
2021-08-26 15:07:24 +02:00
|
|
|
globListFiles := writeBuildGlobsNinjaFile(secondCtx.SrcDir(), configuration.SoongOutDir(), secondCtx.Globs, configuration)
|
2021-08-18 10:55:32 +02:00
|
|
|
ninjaDeps = append(ninjaDeps, globListFiles...)
|
|
|
|
|
2021-04-14 13:49:50 +02:00
|
|
|
err = deptools.WriteDepFile(shared.JoinPath(topDir, secondArgs.DepFile), secondArgs.OutFile, ninjaDeps)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Fprintf(os.Stderr, "Error writing depfile '%s': %s\n", secondArgs.DepFile, err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
2021-04-01 17:55:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Run the code-generation phase to convert BazelTargetModules to BUILD files.
|
|
|
|
func runQueryView(configuration android.Config, ctx *android.Context) {
|
|
|
|
codegenContext := bp2build.NewCodegenContext(configuration, *ctx, bp2build.QueryView)
|
|
|
|
absoluteQueryViewDir := shared.JoinPath(topDir, bazelQueryViewDir)
|
|
|
|
if err := createBazelQueryView(codegenContext, absoluteQueryViewDir); err != nil {
|
|
|
|
fmt.Fprintf(os.Stderr, "%s", err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-15 15:06:40 +02:00
|
|
|
func runSoongDocs(configuration android.Config) {
|
2021-04-01 17:55:58 +02:00
|
|
|
ctx := newContext(configuration, false)
|
2021-08-16 15:24:48 +02:00
|
|
|
soongDocsArgs := cmdlineArgs
|
2021-04-15 15:06:40 +02:00
|
|
|
bootstrap.RunBlueprint(soongDocsArgs, ctx.Context, configuration)
|
2021-04-01 17:55:58 +02:00
|
|
|
if err := writeDocs(ctx, configuration, docFile); err != nil {
|
|
|
|
fmt.Fprintf(os.Stderr, "%s", err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func writeMetrics(configuration android.Config) {
|
2021-08-26 15:07:24 +02:00
|
|
|
metricsFile := filepath.Join(configuration.SoongOutDir(), "soong_build_metrics.pb")
|
2021-04-01 17:55:58 +02:00
|
|
|
err := android.WriteMetrics(configuration, metricsFile)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Fprintf(os.Stderr, "error writing soong_build metrics %s: %s", metricsFile, err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-01 18:28:45 +02:00
|
|
|
func writeJsonModuleGraph(configuration android.Config, ctx *android.Context, path string, extraNinjaDeps []string) {
|
|
|
|
f, err := os.Create(path)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Fprintf(os.Stderr, "%s", err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
|
|
|
|
defer f.Close()
|
|
|
|
ctx.Context.PrintJSONGraph(f)
|
2021-08-26 15:07:24 +02:00
|
|
|
writeFakeNinjaFile(extraNinjaDeps, configuration.SoongOutDir())
|
2021-04-01 18:28:45 +02:00
|
|
|
}
|
|
|
|
|
2021-08-18 10:55:32 +02:00
|
|
|
func writeBuildGlobsNinjaFile(srcDir, buildDir string, globs func() pathtools.MultipleGlobResults, config interface{}) []string {
|
|
|
|
globDir := bootstrap.GlobDirectory(buildDir, globListDir)
|
|
|
|
bootstrap.WriteBuildGlobsNinjaFile(&bootstrap.GlobSingleton{
|
|
|
|
GlobLister: globs,
|
|
|
|
GlobFile: globFile,
|
|
|
|
GlobDir: globDir,
|
|
|
|
SrcDir: srcDir,
|
|
|
|
}, config)
|
|
|
|
return bootstrap.GlobFileListFiles(globDir)
|
|
|
|
}
|
|
|
|
|
2021-05-25 04:40:29 +02:00
|
|
|
// doChosenActivity runs Soong for a specific activity, like bp2build, queryview
|
|
|
|
// or the actual Soong build for the build.ninja file. Returns the top level
|
|
|
|
// output file of the specific activity.
|
2021-04-14 10:31:00 +02:00
|
|
|
func doChosenActivity(configuration android.Config, extraNinjaDeps []string) string {
|
2021-04-20 21:32:07 +02:00
|
|
|
bazelConversionRequested := bp2buildMarker != ""
|
2021-04-01 17:55:58 +02:00
|
|
|
mixedModeBuild := configuration.BazelContext.BazelEnabled()
|
|
|
|
generateQueryView := bazelQueryViewDir != ""
|
2021-04-01 18:28:45 +02:00
|
|
|
jsonModuleFile := configuration.Getenv("SOONG_DUMP_JSON_MODULE_GRAPH")
|
|
|
|
|
2021-08-16 15:24:48 +02:00
|
|
|
blueprintArgs := cmdlineArgs
|
2021-04-01 18:28:45 +02:00
|
|
|
prepareBuildActions := !generateQueryView && jsonModuleFile == ""
|
2021-04-01 17:55:58 +02:00
|
|
|
if bazelConversionRequested {
|
|
|
|
// Run the alternate pipeline of bp2build mutators and singleton to convert
|
|
|
|
// Blueprint to BUILD files before everything else.
|
|
|
|
runBp2Build(configuration, extraNinjaDeps)
|
2021-05-25 04:40:29 +02:00
|
|
|
return bp2buildMarker
|
2021-04-01 17:55:58 +02:00
|
|
|
}
|
|
|
|
|
2021-04-01 18:28:45 +02:00
|
|
|
ctx := newContext(configuration, prepareBuildActions)
|
2021-04-01 17:55:58 +02:00
|
|
|
if mixedModeBuild {
|
|
|
|
runMixedModeBuild(configuration, ctx, extraNinjaDeps)
|
|
|
|
} else {
|
2021-04-15 15:06:40 +02:00
|
|
|
ninjaDeps := bootstrap.RunBlueprint(blueprintArgs, ctx.Context, configuration)
|
|
|
|
ninjaDeps = append(ninjaDeps, extraNinjaDeps...)
|
2021-08-18 10:55:32 +02:00
|
|
|
|
2021-08-26 15:07:24 +02:00
|
|
|
globListFiles := writeBuildGlobsNinjaFile(ctx.SrcDir(), configuration.SoongOutDir(), ctx.Globs, configuration)
|
2021-08-18 10:55:32 +02:00
|
|
|
ninjaDeps = append(ninjaDeps, globListFiles...)
|
|
|
|
|
2021-04-14 13:49:50 +02:00
|
|
|
err := deptools.WriteDepFile(shared.JoinPath(topDir, blueprintArgs.DepFile), blueprintArgs.OutFile, ninjaDeps)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Fprintf(os.Stderr, "Error writing depfile '%s': %s\n", blueprintArgs.DepFile, err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
2021-04-01 17:55:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Convert the Soong module graph into Bazel BUILD files.
|
|
|
|
if generateQueryView {
|
|
|
|
runQueryView(configuration, ctx)
|
2021-08-16 15:24:48 +02:00
|
|
|
return cmdlineArgs.OutFile // TODO: This is a lie
|
2021-04-01 17:55:58 +02:00
|
|
|
}
|
2021-04-01 18:28:45 +02:00
|
|
|
|
|
|
|
if jsonModuleFile != "" {
|
|
|
|
writeJsonModuleGraph(configuration, ctx, jsonModuleFile, extraNinjaDeps)
|
2021-08-16 15:24:48 +02:00
|
|
|
return cmdlineArgs.OutFile // TODO: This is a lie
|
2021-04-01 18:28:45 +02:00
|
|
|
}
|
|
|
|
|
2021-04-01 17:55:58 +02:00
|
|
|
writeMetrics(configuration)
|
2021-08-16 15:24:48 +02:00
|
|
|
return cmdlineArgs.OutFile
|
2021-04-14 10:31:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// soong_ui dumps the available environment variables to
|
|
|
|
// soong.environment.available . Then soong_build itself is run with an empty
|
|
|
|
// environment so that the only way environment variables can be accessed is
|
|
|
|
// using Config, which tracks access to them.
|
|
|
|
|
|
|
|
// At the end of the build, a file called soong.environment.used is written
|
|
|
|
// containing the current value of all used environment variables. The next
|
|
|
|
// time soong_ui is run, it checks whether any environment variables that was
|
|
|
|
// used had changed and if so, it deletes soong.environment.used to cause a
|
|
|
|
// rebuild.
|
|
|
|
//
|
|
|
|
// The dependency of build.ninja on soong.environment.used is declared in
|
|
|
|
// build.ninja.d
|
|
|
|
func parseAvailableEnv() map[string]string {
|
|
|
|
if availableEnvFile == "" {
|
|
|
|
fmt.Fprintf(os.Stderr, "--available_env not set\n")
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
|
|
|
|
result, err := shared.EnvFromFile(shared.JoinPath(topDir, availableEnvFile))
|
|
|
|
if err != nil {
|
|
|
|
fmt.Fprintf(os.Stderr, "error reading available environment file '%s': %s\n", availableEnvFile, err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
|
|
|
|
return result
|
2021-04-01 17:55:58 +02:00
|
|
|
}
|
|
|
|
|
2020-09-29 08:23:17 +02:00
|
|
|
func main() {
|
|
|
|
flag.Parse()
|
2015-12-18 01:39:19 +01:00
|
|
|
|
2021-03-02 10:09:41 +01:00
|
|
|
shared.ReexecWithDelveMaybe(delveListen, delvePath)
|
2021-02-26 14:27:36 +01:00
|
|
|
android.InitSandbox(topDir)
|
|
|
|
|
2021-04-14 10:31:00 +02:00
|
|
|
availableEnv := parseAvailableEnv()
|
2021-04-12 14:04:24 +02:00
|
|
|
|
2021-08-16 17:05:09 +02:00
|
|
|
configuration := newConfig(outDir, availableEnv)
|
2021-03-23 11:46:47 +01:00
|
|
|
extraNinjaDeps := []string{
|
|
|
|
configuration.ProductVariablesFileName,
|
2021-04-14 13:49:50 +02:00
|
|
|
usedEnvFile,
|
2021-03-23 11:46:47 +01:00
|
|
|
}
|
2019-06-19 22:33:24 +02:00
|
|
|
|
2021-03-16 08:55:23 +01:00
|
|
|
if configuration.Getenv("ALLOW_MISSING_DEPENDENCIES") == "true" {
|
|
|
|
configuration.SetAllowMissingDependencies()
|
|
|
|
}
|
|
|
|
|
2021-03-02 10:09:41 +01:00
|
|
|
if shared.IsDebugging() {
|
2019-06-19 22:33:24 +02:00
|
|
|
// Add a non-existent file to the dependencies so that soong_build will rerun when the debugger is
|
|
|
|
// enabled even if it completed successfully.
|
2021-08-26 15:07:24 +02:00
|
|
|
extraNinjaDeps = append(extraNinjaDeps, filepath.Join(configuration.SoongOutDir(), "always_rerun_for_delve"))
|
2019-06-19 22:33:24 +02:00
|
|
|
}
|
2020-12-14 08:58:54 +01:00
|
|
|
|
2021-04-01 17:55:58 +02:00
|
|
|
if docFile != "" {
|
|
|
|
// We don't write an used variables file when generating documentation
|
|
|
|
// because that is done from within the actual builds as a Ninja action and
|
|
|
|
// thus it would overwrite the actual used variables file so this is
|
|
|
|
// special-cased.
|
2021-04-14 10:31:00 +02:00
|
|
|
// TODO: Fix this by not passing --used_env to the soong_docs invocation
|
2021-04-15 15:06:40 +02:00
|
|
|
runSoongDocs(configuration)
|
2021-04-01 17:55:58 +02:00
|
|
|
return
|
2020-02-10 20:23:49 +01:00
|
|
|
}
|
2021-03-23 11:46:47 +01:00
|
|
|
|
2021-04-14 10:31:00 +02:00
|
|
|
finalOutputFile := doChosenActivity(configuration, extraNinjaDeps)
|
|
|
|
writeUsedEnvironmentFile(configuration, finalOutputFile)
|
2021-03-23 11:46:47 +01:00
|
|
|
}
|
|
|
|
|
2021-04-14 10:31:00 +02:00
|
|
|
func writeUsedEnvironmentFile(configuration android.Config, finalOutputFile string) {
|
|
|
|
if usedEnvFile == "" {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
path := shared.JoinPath(topDir, usedEnvFile)
|
2021-03-23 11:46:47 +01:00
|
|
|
data, err := shared.EnvFileContents(configuration.EnvDeps())
|
|
|
|
if err != nil {
|
2021-04-14 10:31:00 +02:00
|
|
|
fmt.Fprintf(os.Stderr, "error writing used environment file '%s': %s\n", usedEnvFile, err)
|
2021-03-23 11:46:47 +01:00
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
|
|
|
|
err = ioutil.WriteFile(path, data, 0666)
|
|
|
|
if err != nil {
|
2021-04-14 10:31:00 +02:00
|
|
|
fmt.Fprintf(os.Stderr, "error writing used environment file '%s': %s\n", usedEnvFile, err)
|
2021-03-24 10:50:06 +01:00
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
|
2021-04-14 10:31:00 +02:00
|
|
|
// Touch the output file so that it's not older than the file we just
|
2021-03-24 10:50:06 +01:00
|
|
|
// wrote. We can't write the environment file earlier because one an access
|
|
|
|
// new environment variables while writing it.
|
2021-04-14 10:31:00 +02:00
|
|
|
touch(shared.JoinPath(topDir, finalOutputFile))
|
2015-01-31 02:27:36 +01:00
|
|
|
}
|
2020-07-15 12:06:41 +02:00
|
|
|
|
2021-04-01 18:28:45 +02:00
|
|
|
// Workarounds to support running bp2build in a clean AOSP checkout with no
|
|
|
|
// prior builds, and exiting early as soon as the BUILD files get generated,
|
|
|
|
// therefore not creating build.ninja files that soong_ui and callers of
|
|
|
|
// soong_build expects.
|
|
|
|
//
|
|
|
|
// These files are: build.ninja and build.ninja.d. Since Kati hasn't been
|
|
|
|
// ran as well, and `nothing` is defined in a .mk file, there isn't a ninja
|
|
|
|
// target called `nothing`, so we manually create it here.
|
2021-08-26 15:07:24 +02:00
|
|
|
func writeFakeNinjaFile(extraNinjaDeps []string, soongOutDir string) {
|
2021-04-01 18:28:45 +02:00
|
|
|
extraNinjaDepsString := strings.Join(extraNinjaDeps, " \\\n ")
|
|
|
|
|
|
|
|
ninjaFileName := "build.ninja"
|
2021-08-26 15:07:24 +02:00
|
|
|
ninjaFile := shared.JoinPath(topDir, soongOutDir, ninjaFileName)
|
|
|
|
ninjaFileD := shared.JoinPath(topDir, soongOutDir, ninjaFileName+".d")
|
2021-04-01 18:28:45 +02:00
|
|
|
// A workaround to create the 'nothing' ninja target so `m nothing` works,
|
|
|
|
// since bp2build runs without Kati, and the 'nothing' target is declared in
|
|
|
|
// a Makefile.
|
|
|
|
ioutil.WriteFile(ninjaFile, []byte("build nothing: phony\n phony_output = true\n"), 0666)
|
|
|
|
ioutil.WriteFile(ninjaFileD,
|
2021-05-25 04:40:29 +02:00
|
|
|
[]byte(fmt.Sprintf("%s: \\\n %s\n", ninjaFile, extraNinjaDepsString)),
|
2021-04-01 18:28:45 +02:00
|
|
|
0666)
|
|
|
|
}
|
|
|
|
|
2021-04-14 10:31:00 +02:00
|
|
|
func touch(path string) {
|
|
|
|
f, err := os.OpenFile(path, os.O_APPEND|os.O_CREATE|os.O_WRONLY, 0666)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Fprintf(os.Stderr, "Error touching '%s': %s\n", path, err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
|
|
|
|
err = f.Close()
|
|
|
|
if err != nil {
|
|
|
|
fmt.Fprintf(os.Stderr, "Error touching '%s': %s\n", path, err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
|
|
|
|
currentTime := time.Now().Local()
|
|
|
|
err = os.Chtimes(path, currentTime, currentTime)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Fprintf(os.Stderr, "error touching '%s': %s\n", path, err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-13 03:20:13 +02:00
|
|
|
// Find BUILD files in the srcDir which...
|
|
|
|
//
|
|
|
|
// - are not on the allow list (android/bazel.go#ShouldKeepExistingBuildFileForDir())
|
|
|
|
//
|
|
|
|
// - won't be overwritten by corresponding bp2build generated files
|
|
|
|
//
|
|
|
|
// And return their paths so they can be left out of the Bazel workspace dir (i.e. ignored)
|
2021-05-21 01:34:50 +02:00
|
|
|
func getPathsToIgnoredBuildFiles(topDir string, generatedRoot string, srcDirBazelFiles []string) []string {
|
2021-05-13 03:20:13 +02:00
|
|
|
paths := make([]string, 0)
|
|
|
|
|
2021-05-21 01:34:50 +02:00
|
|
|
for _, srcDirBazelFileRelativePath := range srcDirBazelFiles {
|
|
|
|
srcDirBazelFileFullPath := shared.JoinPath(topDir, srcDirBazelFileRelativePath)
|
|
|
|
fileInfo, err := os.Stat(srcDirBazelFileFullPath)
|
2021-05-13 03:20:13 +02:00
|
|
|
if err != nil {
|
2021-05-21 01:34:50 +02:00
|
|
|
// Warn about error, but continue trying to check files
|
|
|
|
fmt.Fprintf(os.Stderr, "WARNING: Error accessing path '%s', err: %s\n", srcDirBazelFileFullPath, err)
|
|
|
|
continue
|
2021-05-13 03:20:13 +02:00
|
|
|
}
|
2021-05-21 01:34:50 +02:00
|
|
|
if fileInfo.IsDir() {
|
2021-05-13 03:20:13 +02:00
|
|
|
// Don't ignore entire directories
|
2021-05-21 01:34:50 +02:00
|
|
|
continue
|
2021-05-13 03:20:13 +02:00
|
|
|
}
|
2021-05-21 01:34:50 +02:00
|
|
|
if !(fileInfo.Name() == "BUILD" || fileInfo.Name() == "BUILD.bazel") {
|
2021-05-13 03:20:13 +02:00
|
|
|
// Don't ignore this file - it is not a build file
|
2021-05-21 01:34:50 +02:00
|
|
|
continue
|
2021-05-13 03:20:13 +02:00
|
|
|
}
|
2021-05-21 01:34:50 +02:00
|
|
|
srcDirBazelFileDir := filepath.Dir(srcDirBazelFileRelativePath)
|
|
|
|
if android.ShouldKeepExistingBuildFileForDir(srcDirBazelFileDir) {
|
2021-05-13 03:20:13 +02:00
|
|
|
// Don't ignore this existing build file
|
2021-05-21 01:34:50 +02:00
|
|
|
continue
|
2021-05-13 03:20:13 +02:00
|
|
|
}
|
2021-05-21 01:34:50 +02:00
|
|
|
correspondingBp2BuildFile := shared.JoinPath(topDir, generatedRoot, srcDirBazelFileRelativePath)
|
|
|
|
if _, err := os.Stat(correspondingBp2BuildFile); err == nil {
|
2021-05-13 03:20:13 +02:00
|
|
|
// If bp2build generated an alternate BUILD file, don't exclude this workspace path
|
|
|
|
// BUILD file clash resolution happens later in the symlink forest creation
|
2021-05-21 01:34:50 +02:00
|
|
|
continue
|
2021-05-13 03:20:13 +02:00
|
|
|
}
|
2021-05-21 01:34:50 +02:00
|
|
|
fmt.Fprintf(os.Stderr, "Ignoring existing BUILD file: %s\n", srcDirBazelFileRelativePath)
|
|
|
|
paths = append(paths, srcDirBazelFileRelativePath)
|
|
|
|
}
|
2021-05-13 03:20:13 +02:00
|
|
|
|
2021-05-21 01:34:50 +02:00
|
|
|
return paths
|
2021-05-13 03:20:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Returns temporary symlink forest excludes necessary for bazel build //external/... (and bazel build //frameworks/...) to work
|
|
|
|
func getTemporaryExcludes() []string {
|
|
|
|
excludes := make([]string, 0)
|
|
|
|
|
|
|
|
// FIXME: 'autotest_lib' is a symlink back to external/autotest, and this causes an infinite symlink expansion error for Bazel
|
|
|
|
excludes = append(excludes, "external/autotest/venv/autotest_lib")
|
|
|
|
|
|
|
|
// FIXME: The external/google-fruit/extras/bazel_root/third_party/fruit dir is poison
|
|
|
|
// It contains several symlinks back to real source dirs, and those source dirs contain BUILD files we want to ignore
|
|
|
|
excludes = append(excludes, "external/google-fruit/extras/bazel_root/third_party/fruit")
|
|
|
|
|
|
|
|
// FIXME: 'frameworks/compile/slang' has a filegroup error due to an escaping issue
|
|
|
|
excludes = append(excludes, "frameworks/compile/slang")
|
|
|
|
|
|
|
|
return excludes
|
|
|
|
}
|
|
|
|
|
2021-05-21 01:34:50 +02:00
|
|
|
// Read the bazel.list file that the Soong Finder already dumped earlier (hopefully)
|
|
|
|
// It contains the locations of BUILD files, BUILD.bazel files, etc. in the source dir
|
|
|
|
func getExistingBazelRelatedFiles(topDir string) ([]string, error) {
|
2021-08-16 15:24:48 +02:00
|
|
|
bazelFinderFile := filepath.Join(filepath.Dir(cmdlineArgs.ModuleListFile), "bazel.list")
|
2021-05-21 01:34:50 +02:00
|
|
|
if !filepath.IsAbs(bazelFinderFile) {
|
|
|
|
// Assume this was a relative path under topDir
|
|
|
|
bazelFinderFile = filepath.Join(topDir, bazelFinderFile)
|
|
|
|
}
|
|
|
|
data, err := ioutil.ReadFile(bazelFinderFile)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
files := strings.Split(strings.TrimSpace(string(data)), "\n")
|
|
|
|
return files, nil
|
|
|
|
}
|
|
|
|
|
2020-12-14 08:58:54 +01:00
|
|
|
// Run Soong in the bp2build mode. This creates a standalone context that registers
|
|
|
|
// an alternate pipeline of mutators and singletons specifically for generating
|
|
|
|
// Bazel BUILD files instead of Ninja files.
|
2021-04-01 17:55:58 +02:00
|
|
|
func runBp2Build(configuration android.Config, extraNinjaDeps []string) {
|
2020-12-14 08:58:54 +01:00
|
|
|
// Register an alternate set of singletons and mutators for bazel
|
|
|
|
// conversion for Bazel conversion.
|
|
|
|
bp2buildCtx := android.NewContext(configuration)
|
2021-01-28 14:22:12 +01:00
|
|
|
|
2021-04-14 13:49:50 +02:00
|
|
|
// Propagate "allow misssing dependencies" bit. This is normally set in
|
|
|
|
// newContext(), but we create bp2buildCtx without calling that method.
|
|
|
|
bp2buildCtx.SetAllowMissingDependencies(configuration.AllowMissingDependencies())
|
2020-12-14 08:58:54 +01:00
|
|
|
bp2buildCtx.SetNameInterface(newNameResolver(configuration))
|
2021-04-14 13:49:50 +02:00
|
|
|
bp2buildCtx.RegisterForBazelConversion()
|
2021-01-28 14:22:12 +01:00
|
|
|
|
2021-02-05 07:28:44 +01:00
|
|
|
// The bp2build process is a purely functional process that only depends on
|
|
|
|
// Android.bp files. It must not depend on the values of per-build product
|
|
|
|
// configurations or variables, since those will generate different BUILD
|
|
|
|
// files based on how the user has configured their tree.
|
2021-08-16 15:24:48 +02:00
|
|
|
bp2buildCtx.SetModuleListFile(cmdlineArgs.ModuleListFile)
|
2021-08-16 17:05:09 +02:00
|
|
|
modulePaths, err := bp2buildCtx.ListModulePaths(".")
|
2021-02-05 07:28:44 +01:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
2021-03-23 11:46:47 +01:00
|
|
|
extraNinjaDeps = append(extraNinjaDeps, modulePaths...)
|
|
|
|
|
2021-04-14 13:49:50 +02:00
|
|
|
// No need to generate Ninja build rules/statements from Modules and Singletons.
|
|
|
|
configuration.SetStopBefore(bootstrap.StopBeforePrepareBuildActions)
|
|
|
|
|
2021-02-05 07:28:44 +01:00
|
|
|
// Run the loading and analysis pipeline to prepare the graph of regular
|
|
|
|
// Modules parsed from Android.bp files, and the BazelTargetModules mapped
|
|
|
|
// from the regular Modules.
|
2021-08-16 15:24:48 +02:00
|
|
|
blueprintArgs := cmdlineArgs
|
2021-04-15 15:06:40 +02:00
|
|
|
ninjaDeps := bootstrap.RunBlueprint(blueprintArgs, bp2buildCtx.Context, configuration)
|
|
|
|
ninjaDeps = append(ninjaDeps, extraNinjaDeps...)
|
2021-04-14 13:49:50 +02:00
|
|
|
|
2021-08-26 15:07:24 +02:00
|
|
|
globListFiles := writeBuildGlobsNinjaFile(bp2buildCtx.SrcDir(), configuration.SoongOutDir(), bp2buildCtx.Globs, configuration)
|
2021-08-18 10:55:32 +02:00
|
|
|
ninjaDeps = append(ninjaDeps, globListFiles...)
|
2021-04-14 13:49:50 +02:00
|
|
|
|
2021-02-19 06:48:40 +01:00
|
|
|
// Run the code-generation phase to convert BazelTargetModules to BUILD files
|
|
|
|
// and print conversion metrics to the user.
|
2021-01-25 04:55:54 +01:00
|
|
|
codegenContext := bp2build.NewCodegenContext(configuration, *bp2buildCtx, bp2build.Bp2Build)
|
2021-02-19 06:48:40 +01:00
|
|
|
metrics := bp2build.Codegen(codegenContext)
|
|
|
|
|
2021-08-26 15:07:24 +02:00
|
|
|
generatedRoot := shared.JoinPath(configuration.SoongOutDir(), "bp2build")
|
|
|
|
workspaceRoot := shared.JoinPath(configuration.SoongOutDir(), "workspace")
|
2021-04-16 13:47:36 +02:00
|
|
|
|
|
|
|
excludes := []string{
|
|
|
|
"bazel-bin",
|
|
|
|
"bazel-genfiles",
|
|
|
|
"bazel-out",
|
|
|
|
"bazel-testlogs",
|
|
|
|
"bazel-" + filepath.Base(topDir),
|
|
|
|
}
|
|
|
|
|
2021-08-16 15:24:48 +02:00
|
|
|
if cmdlineArgs.NinjaBuildDir[0] != '/' {
|
|
|
|
excludes = append(excludes, cmdlineArgs.NinjaBuildDir)
|
2021-04-16 13:47:36 +02:00
|
|
|
}
|
|
|
|
|
2021-05-21 01:34:50 +02:00
|
|
|
existingBazelRelatedFiles, err := getExistingBazelRelatedFiles(topDir)
|
2021-05-13 03:20:13 +02:00
|
|
|
if err != nil {
|
2021-05-21 01:34:50 +02:00
|
|
|
fmt.Fprintf(os.Stderr, "Error determining existing Bazel-related files: %s\n", err)
|
2021-05-13 03:20:13 +02:00
|
|
|
os.Exit(1)
|
|
|
|
}
|
2021-05-21 01:34:50 +02:00
|
|
|
|
|
|
|
pathsToIgnoredBuildFiles := getPathsToIgnoredBuildFiles(topDir, generatedRoot, existingBazelRelatedFiles)
|
2021-05-13 03:20:13 +02:00
|
|
|
excludes = append(excludes, pathsToIgnoredBuildFiles...)
|
|
|
|
|
|
|
|
excludes = append(excludes, getTemporaryExcludes()...)
|
|
|
|
|
2021-04-16 13:47:36 +02:00
|
|
|
symlinkForestDeps := bp2build.PlantSymlinkForest(
|
2021-08-16 17:05:09 +02:00
|
|
|
topDir, workspaceRoot, generatedRoot, ".", excludes)
|
2021-04-16 13:47:36 +02:00
|
|
|
|
2021-02-19 06:48:40 +01:00
|
|
|
// Only report metrics when in bp2build mode. The metrics aren't relevant
|
|
|
|
// for queryview, since that's a total repo-wide conversion and there's a
|
|
|
|
// 1:1 mapping for each module.
|
|
|
|
metrics.Print()
|
2021-01-28 14:22:12 +01:00
|
|
|
|
2021-04-16 13:47:36 +02:00
|
|
|
ninjaDeps = append(ninjaDeps, codegenContext.AdditionalNinjaDeps()...)
|
|
|
|
ninjaDeps = append(ninjaDeps, symlinkForestDeps...)
|
|
|
|
|
|
|
|
depFile := bp2buildMarker + ".d"
|
|
|
|
err = deptools.WriteDepFile(shared.JoinPath(topDir, depFile), bp2buildMarker, ninjaDeps)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Fprintf(os.Stderr, "Cannot write depfile '%s': %s\n", depFile, err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
|
2021-05-25 04:40:29 +02:00
|
|
|
// Create an empty bp2build marker file.
|
|
|
|
touch(shared.JoinPath(topDir, bp2buildMarker))
|
2020-12-14 08:58:54 +01:00
|
|
|
}
|