2015-03-25 22:43:57 +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.
|
|
|
|
|
2016-05-19 00:37:25 +02:00
|
|
|
package android
|
2015-03-25 22:43:57 +01:00
|
|
|
|
|
|
|
import (
|
2020-05-18 09:50:18 +02:00
|
|
|
"fmt"
|
2017-05-08 23:15:59 +02:00
|
|
|
"os"
|
|
|
|
"strings"
|
2020-05-18 09:50:18 +02:00
|
|
|
"syscall"
|
2017-05-08 23:15:59 +02:00
|
|
|
|
2021-02-25 14:44:14 +01:00
|
|
|
"android/soong/shared"
|
2015-03-25 22:43:57 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
// This file supports dependencies on environment variables. During build manifest generation,
|
|
|
|
// any dependency on an environment variable is added to a list. During the singleton phase
|
|
|
|
// a JSON file is written containing the current value of all used environment variables.
|
|
|
|
// The next time the top-level build script is run, it uses the soong_env executable to
|
|
|
|
// compare the contents of the environment variables, rewriting the file if necessary to cause
|
|
|
|
// a manifest regeneration.
|
|
|
|
|
2017-05-08 23:15:59 +02:00
|
|
|
var originalEnv map[string]string
|
2020-05-18 09:50:18 +02:00
|
|
|
var soongDelveListen string
|
|
|
|
var soongDelvePath string
|
2021-02-26 14:27:36 +01:00
|
|
|
var isDebugging bool
|
2019-06-19 22:33:24 +02:00
|
|
|
|
2021-02-26 14:27:36 +01:00
|
|
|
func InitEnvironment(envFile string) {
|
|
|
|
var err error
|
|
|
|
originalEnv, err = shared.EnvFromFile(envFile)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
2017-05-08 23:15:59 +02:00
|
|
|
}
|
2020-05-18 09:50:18 +02:00
|
|
|
|
2021-02-26 14:27:36 +01:00
|
|
|
soongDelveListen = originalEnv["SOONG_DELVE"]
|
|
|
|
soongDelvePath = originalEnv["SOONG_DELVE_PATH"]
|
2017-05-08 23:15:59 +02:00
|
|
|
}
|
|
|
|
|
2021-02-26 14:27:36 +01:00
|
|
|
// Returns whether the current process is running under Delve due to
|
|
|
|
// ReexecWithDelveMaybe().
|
|
|
|
func IsDebugging() bool {
|
|
|
|
return isDebugging
|
|
|
|
}
|
2020-05-18 09:50:18 +02:00
|
|
|
func ReexecWithDelveMaybe() {
|
2021-02-26 14:27:36 +01:00
|
|
|
isDebugging = os.Getenv("SOONG_DELVE_REEXECUTED") == "true"
|
|
|
|
if isDebugging || soongDelveListen == "" {
|
2020-05-18 09:50:18 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if soongDelvePath == "" {
|
|
|
|
fmt.Fprintln(os.Stderr, "SOONG_DELVE is set but failed to find dlv")
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
2021-02-26 14:27:36 +01:00
|
|
|
|
|
|
|
soongDelveEnv := []string{}
|
|
|
|
for _, env := range os.Environ() {
|
|
|
|
idx := strings.IndexRune(env, '=')
|
|
|
|
if idx != -1 {
|
|
|
|
soongDelveEnv = append(soongDelveEnv, env)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
soongDelveEnv = append(soongDelveEnv, "SOONG_DELVE_REEXECUTED=true")
|
|
|
|
|
2020-05-18 09:50:18 +02:00
|
|
|
dlvArgv := []string{
|
|
|
|
soongDelvePath,
|
|
|
|
"--listen=:" + soongDelveListen,
|
|
|
|
"--headless=true",
|
|
|
|
"--api-version=2",
|
|
|
|
"exec",
|
|
|
|
os.Args[0],
|
|
|
|
"--",
|
|
|
|
}
|
|
|
|
dlvArgv = append(dlvArgv, os.Args[1:]...)
|
|
|
|
os.Chdir(absSrcDir)
|
|
|
|
syscall.Exec(soongDelvePath, dlvArgv, soongDelveEnv)
|
|
|
|
fmt.Fprintln(os.Stderr, "exec() failed while trying to reexec with Delve")
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
|
2017-11-29 08:55:23 +01:00
|
|
|
func EnvSingleton() Singleton {
|
2015-03-25 22:43:57 +01:00
|
|
|
return &envSingleton{}
|
|
|
|
}
|
|
|
|
|
|
|
|
type envSingleton struct{}
|
|
|
|
|
2017-11-29 08:55:23 +01:00
|
|
|
func (c *envSingleton) GenerateBuildActions(ctx SingletonContext) {
|
2017-11-29 09:27:14 +01:00
|
|
|
envDeps := ctx.Config().EnvDeps()
|
2015-03-25 22:43:57 +01:00
|
|
|
|
2021-02-26 14:27:36 +01:00
|
|
|
envFile := PathForOutput(ctx, "soong.environment.used")
|
2015-09-24 00:26:20 +02:00
|
|
|
if ctx.Failed() {
|
|
|
|
return
|
|
|
|
}
|
2015-03-25 22:43:57 +01:00
|
|
|
|
2021-02-25 14:44:14 +01:00
|
|
|
data, err := shared.EnvFileContents(envDeps)
|
2020-01-11 02:11:46 +01:00
|
|
|
if err != nil {
|
|
|
|
ctx.Errorf(err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
err = WriteFileToOutputDir(envFile, data, 0666)
|
2015-03-25 22:43:57 +01:00
|
|
|
if err != nil {
|
|
|
|
ctx.Errorf(err.Error())
|
|
|
|
}
|
|
|
|
|
2015-09-24 00:26:20 +02:00
|
|
|
ctx.AddNinjaFileDeps(envFile.String())
|
2015-03-25 22:43:57 +01:00
|
|
|
}
|