# Copyright (C) 2022 The Android Open Source Project # # 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.
# These tools are intended for interactive environments and were not designed # to work when checking unbound variables is disallowed.
set +u
# gettop is duplicated here and in shell_utils.mk, because it's difficult # to find shell_utils.make without it for all the novel ways this file can be # sourced. Other common functions should only be in one place or the other. function _gettop_once
{
local TOPFILE=build/make/core/envsetup.mk if [ -n "$TOP" -a -f "$TOP/$TOPFILE" ] ; then # The following circumlocution ensures we remove symlinks from TOP.
(cd "$TOP"; PWD= /bin/pwd) else if [ -f $TOPFILE ] ; then # The following circumlocution (repeated below as well) ensures # that we record the true directory name and not one that is # faked up with symlink names.
PWD= /bin/pwd else
local HERE=$PWD
local T= while [ \( ! \( -f $TOPFILE \) \) -a \( "$PWD" != "/" \) ]; do
\cd ..
T=`PWD= /bin/pwd -P` done
\cd "$HERE" if [ -f "$T/$TOPFILE" ]; then echo"$T" fi fi fi
}
T=$(_gettop_once) if [ ! "$T" ]; then echo"Couldn't locate the top of the tree. Always source build/envsetup.sh from the root of the tree." >&2
return 1 fi
IMPORTING_ENVSETUP=true source $T/build/make/shell_utils.sh
# Get all the build variables needed by this script in a single call to the build system. function build_build_var_cache()
{
local T=$(gettop)
local one_true_awk=$T/prebuilts/build-tools/$(get_host_prebuilt_prefix)/bin/one-true-awk # Grep out the variable names from the script.
cached_vars=(`cat $T/build/envsetup.sh | tr '()'' ' | $one_true_awk '{for(i=1;i<=NF;i++) if($i~/_get_build_var_cached/) print $(i+1)}' | grep -vE "^(print|COMMON_LUNCH_CHOICES)$" | sort -u | tr '\n'' '`)
cached_abs_vars=(`cat $T/build/envsetup.sh | tr '()'' ' | $one_true_awk '{for(i=1;i<=NF;i++) if($i~/_get_abs_build_var_cached/) print $(i+1)}' | grep -vE "^(print|COMMON_LUNCH_CHOICES)$" | sort -u | tr '\n'' '`) # Call the build system to dump the "<val>=<value>" pairs as a shell script.
build_dicts_script=`\builtin cd $T; build/soong/soong_ui.bash --dumpvars-mode \
--vars="${cached_vars[*]}" \
--abs-vars="${cached_abs_vars[*]}" \
--var-prefix=var_cache_ \
--abs-var-prefix=abs_var_cache_`
local ret=$? if [ $ret -ne 0 ] then
unset build_dicts_script
return $ret fi # Execute the script to store the "<val>=<value>" pairs as shell variables. eval"$build_dicts_script"
ret=$?
unset build_dicts_script if [ $ret -ne 0 ] then
return $ret fi
BUILD_VAR_CACHE_READY="true"
}
# Delete the build var cache, so that we can still call into the build system # to get build variables not listed in this script. function destroy_build_var_cache()
{
unset BUILD_VAR_CACHE_READY
local v for v in $cached_vars; do
unset var_cache_$v done
unset cached_vars for v in $cached_abs_vars; do
unset abs_var_cache_$v done
unset cached_abs_vars
}
# Get the value of a build variable as an absolute path. function _get_abs_build_var_cached()
{ if [ "$BUILD_VAR_CACHE_READY" = "true" ] then eval"echo \"\${abs_var_cache_$1}\""
return fi
local T=$(gettop) if [ ! "$T" ]; then echo"Couldn't locate the top of the tree. Try setting TOP." >&2
return fi
(\cd $T; build/soong/soong_ui.bash --dumpvar-mode --abs $1)
}
# Get the exact value of a build variable. function _get_build_var_cached()
{ if [ "$BUILD_VAR_CACHE_READY" = "true" ] then eval"echo \"\${var_cache_$1}\""
return 0 fi
local T=$(gettop) if [ ! "$T" ]; then echo"Couldn't locate the top of the tree. Try setting TOP." >&2
return 1 fi
(\cd $T; build/soong/soong_ui.bash --dumpvar-mode $1)
}
# This logic matches envsetup.mk function get_host_prebuilt_prefix
{
local un=$(uname) if [[ $un == "Linux" ]] ; then echo linux-x86 elif [[ $un == "Darwin" ]] ; then echo darwin-x86 else echo"Error: Invalid host operating system: $un"1>&2 fi
}
# Add directories to PATH that are dependent on the lunch target. # For directories that are not lunch-specific, add them in set_global_paths function set_lunch_paths()
{
local T=$(gettop) if [ ! "$T" ]; then echo"Couldn't locate the top of the tree. Try setting TOP."
return fi
################################################################## # # # Read me before you modify this code # # # # This function sets ANDROID_LUNCH_BUILD_PATHS to what it is # # adding to PATH, and the next time it is run, it removes that # # from PATH. This is required so lunch can be run more than # # once and still have working paths. # # # ##################################################################
# Note: on windows/cygwin, ANDROID_LUNCH_BUILD_PATHS will contain spaces # due to "C:\Program Files" being in the path.
# Handle compat with the old ANDROID_BUILD_PATHS variable. # TODO: Remove this after we think everyone has lunched again. if [ -z "$ANDROID_LUNCH_BUILD_PATHS" -a -n "$ANDROID_BUILD_PATHS" ] ; then
ANDROID_LUNCH_BUILD_PATHS="$ANDROID_BUILD_PATHS"
ANDROID_BUILD_PATHS= fi if [ -n "$ANDROID_PRE_BUILD_PATHS" ] ; then export PATH=${PATH/$ANDROID_PRE_BUILD_PATHS/} # strip leading ':', if any export PATH=${PATH/:%/}
ANDROID_PRE_BUILD_PATHS= fi
# Out with the old... if [ -n "$ANDROID_LUNCH_BUILD_PATHS" ] ; then export PATH=${PATH/$ANDROID_LUNCH_BUILD_PATHS/} fi
# And in with the new...
local SOONG_HOST_OUT_EXECUTABLES=$(_get_abs_build_var_cached SOONG_HOST_OUT_EXECUTABLES)
local HOST_OUT_EXECUTABLES=$(_get_abs_build_var_cached HOST_OUT_EXECUTABLES) # Binaries in build/soong/bin should always be preferred over any build path.
ANDROID_LUNCH_BUILD_PATHS=$T/build/soong/bin:${SOONG_HOST_OUT_EXECUTABLES} if [ "${HOST_OUT_EXECUTABLES}" != "${SOONG_HOST_OUT_EXECUTABLES}" ]; then
ANDROID_LUNCH_BUILD_PATHS+=:${HOST_OUT_EXECUTABLES} fi
# Append llvm binutils prebuilts path to ANDROID_LUNCH_BUILD_PATHS.
local ANDROID_LLVM_BINUTILS=$(_get_abs_build_var_cached ANDROID_CLANG_PREBUILTS)/llvm-binutils-stable
ANDROID_LUNCH_BUILD_PATHS+=:$ANDROID_LLVM_BINUTILS
# Set up ASAN_SYMBOLIZER_PATH for SANITIZE_HOST=address builds. export ASAN_SYMBOLIZER_PATH=$ANDROID_LLVM_BINUTILS/llvm-symbolizer
# Append asuite prebuilts path to ANDROID_LUNCH_BUILD_PATHS.
local os_arch=$(_get_build_var_cached HOST_PREBUILT_TAG)
ANDROID_LUNCH_BUILD_PATHS+=:$T/prebuilts/asuite/acloud/$os_arch
ANDROID_LUNCH_BUILD_PATHS+=:$T/prebuilts/asuite/aidegen/$os_arch
ANDROID_LUNCH_BUILD_PATHS+=:$T/prebuilts/asuite/atest/$os_arch
# Fix up PYTHONPATH if [ -n $ANDROID_PYTHONPATH ]; then export PYTHONPATH=${PYTHONPATH//$ANDROID_PYTHONPATH/} fi # //development/python-packages contains both a pseudo-PYTHONPATH which # mimics an already assembled venv, but also contains real Python packages # that are not in that layout until they are installed. We can fake it for # the latter type by adding the package source directories to the PYTHONPATH # directly. For the former group, we only need to add the python-packages # directory itself. # # This could be cleaned up by converting the remaining packages that are in # the first category into a typical python source layout (that is, another # layer of directory nesting) and automatically adding all subdirectories of # python-packages to the PYTHONPATH instead of manually curating this. We # can't convert the packages like adb to the other style because doing so # would prevent exporting type info from those packages. # # http://b/266688086 export ANDROID_PYTHONPATH=$T/development/python-packages/adb:$T/development/python-packages/gdbrunner:$T/development/python-packages: if [ -n $VENDOR_PYTHONPATH ]; then
ANDROID_PYTHONPATH=$ANDROID_PYTHONPATH$VENDOR_PYTHONPATH fi export PYTHONPATH=$ANDROID_PYTHONPATH$PYTHONPATH
# Finally, set PATH export PATH=$ANDROID_LUNCH_BUILD_PATHS:$PATH
}
# Add directories to PATH that are NOT dependent on the lunch target. # For directories that are lunch-specific, add them in set_lunch_paths function set_global_paths()
{
local T=$(gettop) if [ ! "$T" ]; then echo"Couldn't locate the top of the tree. Try setting TOP."
return fi
################################################################## # # # Read me before you modify this code # # # # This function sets ANDROID_GLOBAL_BUILD_PATHS to what it is # # adding to PATH, and the next time it is run, it removes that # # from PATH. This is required so envsetup.sh can be sourced # # more than once and still have working paths. # # # ##################################################################
# Out with the old... if [ -n "$ANDROID_GLOBAL_BUILD_PATHS" ] ; then export PATH=${PATH/$ANDROID_GLOBAL_BUILD_PATHS:/} fi
# And in with the new...
ANDROID_GLOBAL_BUILD_PATHS=$T/build/soong/bin
ANDROID_GLOBAL_BUILD_PATHS+=:$T/build/bazel/bin
ANDROID_GLOBAL_BUILD_PATHS+=:$T/development/scripts
ANDROID_GLOBAL_BUILD_PATHS+=:$T/prebuilts/devtools/tools
# add kernel specific binaries if [ $(uname -s) = Linux ] ; then
ANDROID_GLOBAL_BUILD_PATHS+=:$T/prebuilts/misc/linux-x86/dtc
ANDROID_GLOBAL_BUILD_PATHS+=:$T/prebuilts/misc/linux-x86/libufdt fi
# If prebuilts/android-emulator/<system>/ exists, prepend it to our PATH # to ensure that the corresponding 'emulator' binaries are used.
case $(uname -s) in
Darwin)
ANDROID_EMULATOR_PREBUILTS=$T/prebuilts/android-emulator/darwin-x86_64
;;
Linux)
ANDROID_EMULATOR_PREBUILTS=$T/prebuilts/android-emulator/linux-x86_64
;;
*)
ANDROID_EMULATOR_PREBUILTS=
;;
esac if [ -n "$ANDROID_EMULATOR_PREBUILTS" -a -d "$ANDROID_EMULATOR_PREBUILTS" ]; then
ANDROID_GLOBAL_BUILD_PATHS+=:$ANDROID_EMULATOR_PREBUILTS export ANDROID_EMULATOR_PREBUILTS fi
# Finally, set PATH export PATH=$ANDROID_GLOBAL_BUILD_PATHS:$PATH
}
function printconfig()
{
local T=$(gettop) if [ ! "$T" ]; then echo"Couldn't locate the top of the tree. Try setting TOP." >&2
return fi
_get_build_var_cached report_config
}
function set_stuff_for_environment()
{
set_lunch_paths
set_sequence_number
export ANDROID_BUILD_TOP=$(gettop)
}
function set_sequence_number()
{ export BUILD_ENV_SEQUENCE_NUMBER=13
}
# Takes a command name, and check if it's in ENVSETUP_NO_COMPLETION or not. function should_add_completion() {
local cmd="$(basename $1| sed 's/_completion//' |sed 's/\.\(.*\)*sh$//')"
case :"$ENVSETUP_NO_COMPLETION": in
*:"$cmd":*)
return 1
;;
esac
return 0
}
function addcompletions()
{
local f=
# Keep us from trying to run in something that's neither bash nor zsh. if [ -z "$BASH_VERSION" -a -z "$ZSH_VERSION" ]; then
return fi
# Keep us from trying to run in bash that's too old. if [ -n "$BASH_VERSION" -a ${BASH_VERSINFO[0]} -lt 3 ]; then
return fi
local completion_files=(
packages/modules/adb/adb.bash
system/core/fastboot/fastboot.bash
tools/asuite/asuite.sh
) # Completion can be disabled selectively to allow users to use non-standard completion. # e.g. # ENVSETUP_NO_COMPLETION=adb # -> disable adb completion # ENVSETUP_NO_COMPLETION=adb:bit # -> disable adb and bit completion
local T=$(gettop) for f in ${completion_files[*]}; do
f="$T/$f" if [ ! -f "$f" ]; then echo"Warning: completion file $f not found" elif should_add_completion "$f"; then
. $f fi done
if [ -z "$ZSH_VERSION" ]; then # Doesn't work in zsh.
complete -o nospace -F _croot croot
complete -F _bazel__complete -o nospace b fi
complete -F _lunch_completion lunch
function add_lunch_combo()
{ if [ -n "$ZSH_VERSION" ]; then echo -n "${funcfiletrace[1]}: " else echo -n "${BASH_SOURCE[1]}:${BASH_LINENO[0]}: " fi echo"add_lunch_combo is obsolete. Use COMMON_LUNCH_CHOICES in your AndroidProducts.mk instead."
}
function print_lunch_menu()
{
local uname=$(uname)
local choices
choices=$(TARGET_BUILD_APPS= TARGET_PRODUCT= TARGET_RELEASE= TARGET_BUILD_VARIANT= _get_build_var_cached COMMON_LUNCH_CHOICES 2>/dev/null)
local ret=$?
echo echo"You're building on" $uname echo
if [ $ret -ne 0 ] then echo"Warning: Cannot display lunch menu." echo echo"Note: You can invoke lunch with an explicit target:" echo echo" usage: lunch [target]" >&2 echo
return fi
echo"Lunch menu .. Here are the common combinations:"
local i=1
local choice for choice in $(echo $choices) do echo" $i. $choice"
i=$(($i+1)) done
echo
}
function _lunch_meat()
{
local product=$1
local release=$2
local variant=$3
TARGET_PRODUCT=$product \
TARGET_RELEASE=$release \
TARGET_BUILD_VARIANT=$variant \
TARGET_BUILD_APPS= \
build_build_var_cache if [ $? -ne 0 ] then if [[ "$product" =~ .*_(eng|user|userdebug) ]] then echo"Did you mean -${product/*_/}? (dash instead of underscore)" fi
return 1 fi export TARGET_PRODUCT=$(_get_build_var_cached TARGET_PRODUCT) export TARGET_BUILD_VARIANT=$(_get_build_var_cached TARGET_BUILD_VARIANT) export TARGET_RELEASE=$release # Note this is the string "release", not the value of the variable. export TARGET_BUILD_TYPE=release # Undo any previous tapas or banchan setup export TARGET_BUILD_APPS=
if [[ -z "${ANDROID_QUIET_BUILD}" ]]; then
local spam_for_lunch=$(gettop)/build/make/tools/envsetup/spam_for_lunch if [[ -x $spam_for_lunch ]]; then
$spam_for_lunch fi fi
destroy_build_var_cache
if [[ -n "${CHECK_MU_CONFIG:-}" ]]; then
check_mu_config fi
}
function _lunch_usage()
{
( echo"The lunch command selects the configuration to use for subsequent" echo"Android builds." echo echo"Usage: lunch TARGET_PRODUCT [TARGET_RELEASE [TARGET_BUILD_VARIANT]]" echo echo" Choose the product, release and variant to use. If not" echo" supplied, TARGET_RELEASE will be 'trunk_staging' and" echo" TARGET_BUILD_VARIANT will be 'eng'" echo echo echo"Usage: lunch TARGET_PRODUCT-TARGET_RELEASE-TARGET_BUILD_VARIANT" echo echo" Chose the product, release and variant to use. This" echo" legacy format is maintained for compatibility." echo echo echo"Note that the previous interactive menu and list of hard-coded" echo"list of curated targets has been removed. If you would like the" echo"list of products, release configs for a particular product, or" echo"variants, run the following as individual commands:" echo"list_products, list_releases, or list_variants" echo"respectively." echo
) 1>&2
}
function _lunch_store_leftovers()
{
local product=$1
local release=$2
local variant=$3
function lunch()
{ if [[ $# -eq 1 && $1 = "--help" ]]; then
_lunch_usage
return 0 fi if [[ $# -eq 0 ]]; then echo"No target specified. See lunch --help"1>&2
return 1 fi if [[ $# -gt 3 ]]; then echo"Too many parameters given. See lunch --help"1>&2
return 1 fi
local product release variant
# Handle the legacy format
local legacy=$(echo $1 | grep "-") if [[ $# -eq 1 && -n $legacy ]]; then
IFS="-" read -r product release variant <<< "$1" if [[ -z "$product" ]] || [[ -z "$release" ]] || [[ -z "$variant" ]]; then echo"Invalid lunch combo: $1"1>&2 echo"Valid combos must be of the form <product>-<release>-<variant> when using"1>&2 echo"the legacy format. Run 'lunch --help' for usage."1>&2
return 1 fi fi
# Handle the new format. if [[ -z $legacy ]]; then
product=$1
release=$2 if [[ -z $release ]]; then
release=trunk_staging fi
variant=$3 if [[ -z $variant ]]; then
variant=eng fi fi
# Validate the selection and set all the environment stuff
_lunch_meat $product $release $variant
function leftovers()
{ if [ -t 1 ] && [ $(tput colors) -ge 8 ]; then
local style_reset="$(tput sgr0)"
local style_red="$(tput setaf 1)"
local style_green="$(tput setaf 2)"
local style_bold="$(tput bold)" fi
local FAIL="${style_bold}${style_red}ERROR${style_reset}"
local INFO="${style_bold}${style_green}INFO${style_reset}"
if [[ $# -eq 1 && ($1 = "--help" || $1 == "-h" || $1 == "help") ]]; then
( echo"The leftovers command restores your previous lunch choices, if found." echo echo"Set ${style_bold}USE_LEFTOVERS=1${style_reset} in your environment to automatically run this" echo"from ${style_bold}build/envsetup.sh${style_reset}."
) 1>&2
return fi
local dot_leftovers="$(getoutdir)/.leftovers"
# seamlessly migrate old .leftovers location
local old_leftovers="$(gettop)/.leftovers" if [[ -e $old_leftovers ]] then if [[ -e $dot_leftovers ]]; then rm $old_leftovers else
mv $old_leftovers $dot_leftovers fi fi
if [ ! -f $dot_leftovers ]; then echo -e "$FAIL: .leftovers not found. Run ${style_bold}lunch${style_reset} first."
return 1 fi
# Check if the current environment matches the saved leftovers. Also check if TARGET_BUILD_APPS # is empty because lunch unsets it, while tapas and banchan set it. This ensures that if tapas # or banchan command was run after lunch, that it does not unset it. if [[ "$product" == "$TARGET_PRODUCT" ]] &&
[[ "$release" == "$TARGET_RELEASE" ]] &&
[[ "$variant" == "$TARGET_BUILD_VARIANT" ]] &&
[[ -z "$TARGET_BUILD_APPS" ]]; then echo"$INFO: Already lunched: ${style_bold}$product $release $variant${style_reset}"
return fi
unset ANDROID_LUNCH_COMPLETION_PRODUCT_CACHE
unset ANDROID_LUNCH_COMPLETION_CHOSEN_PRODUCT
unset ANDROID_LUNCH_COMPLETION_RELEASE_CACHE # Tab completion for lunch. function _lunch_completion()
{ # Available products if [[ $COMP_CWORD -eq 1 ]] ; then if [[ -z $ANDROID_LUNCH_COMPLETION_PRODUCT_CACHE ]]; then
ANDROID_LUNCH_COMPLETION_PRODUCT_CACHE=$(list_products) fi
COMPREPLY=( $(compgen -W "${ANDROID_LUNCH_COMPLETION_PRODUCT_CACHE}" -- "${COMP_WORDS[COMP_CWORD]}") ) fi
# Available release configs if [[ $COMP_CWORD -eq 2 ]] ; then if [[ -z $ANDROID_LUNCH_COMPLETION_RELEASE_CACHE || $ANDROID_LUNCH_COMPLETION_CHOSEN_PRODUCT != ${COMP_WORDS[1]} ]] ; then
ANDROID_LUNCH_COMPLETION_RELEASE_CACHE=$(list_releases ${COMP_WORDS[1]})
ANDROID_LUNCH_COMPLETION_CHOSEN_PRODUCT=${COMP_WORDS[1]} fi
COMPREPLY=( $(compgen -W "${ANDROID_LUNCH_COMPLETION_RELEASE_CACHE}" -- "${COMP_WORDS[COMP_CWORD]}") ) fi
# Available variants if [[ $COMP_CWORD -eq 3 ]] ; then
COMPREPLY=(user userdebug eng) fi
return 0
}
# Configures the build to build unbundled apps. # Run tapas with one or more app names (from LOCAL_PACKAGE_NAME) function tapas()
{
local showHelp="$(echo $* | xargs -n 1 echo | \grep -E '^(help)$' | xargs)"
local arch="$(echo $* | xargs -n 1 echo | \grep -E '^(arm|x86|arm64|x86_64)$' | xargs)" # TODO(b/307975293): Expand tapas to take release arguments (and update hmm() usage).
local release="trunk_staging"
local variant="$(echo $* | xargs -n 1 echo | \grep -E '^(user|userdebug|eng)$' | xargs)"
local density="$(echo $* | xargs -n 1 echo | \grep -E '^(ldpi|mdpi|tvdpi|hdpi|xhdpi|xxhdpi|xxxhdpi|alldpi)$' | xargs)"
local keys="$(echo $* | xargs -n 1 echo | \grep -E '^(devkeys)$' | xargs)"
local apps="$(echo $* | xargs -n 1 echo | \grep -E -v '^(user|userdebug|eng|arm|x86|arm64|x86_64|ldpi|mdpi|tvdpi|hdpi|xhdpi|xxhdpi|xxxhdpi|alldpi|devkeys)$' | xargs)"
if [ "$showHelp" != "" ]; then
$(gettop)/build/make/tapasHelp.sh
return fi
if [ $(echo $arch | wc -w) -gt 1 ]; then echo"tapas: Error: Multiple build archs supplied: $arch"
return fi if [ $(echo $release | wc -w) -gt 1 ]; then echo"tapas: Error: Multiple build releases supplied: $release"
return fi if [ $(echo $variant | wc -w) -gt 1 ]; then echo"tapas: Error: Multiple build variants supplied: $variant"
return fi if [ $(echo $density | wc -w) -gt 1 ]; then echo"tapas: Error: Multiple densities supplied: $density"
return fi if [ $(echo $keys | wc -w) -gt 1 ]; then echo"tapas: Error: Multiple keys supplied: $keys"
return fi
local product=aosp_arm
case $arch in
x86) product=aosp_x86;;
arm64) product=aosp_arm64;;
x86_64) product=aosp_x86_64;;
esac if [ -n "$keys" ]; then
product=${product/aosp_/aosp_${keys}_} fi;
if [ -z "$variant" ]; then
variant=eng fi if [ -z "$apps" ]; then
apps=all fi if [ -z "$density" ]; then
density=alldpi fi
# This setup currently uses TARGET_BUILD_APPS just like tapas, but the use # case is different and it may diverge in the future. export TARGET_BUILD_APPS=$apps
function croot()
{
local T=$(gettop) if [ "$T" ]; then if [ "$1" ]; then
\cd $(gettop)/$1 else
\cd $(gettop) fi else echo"Couldn't locate the top of the tree. Try setting TOP." fi
}
function _croot()
{
local T=$(gettop) if [ "$T" ]; then
local cur="${COMP_WORDS[COMP_CWORD]}"
k=0 for c in $(compgen -d ${T}/${cur}); do
COMPREPLY[k++]=${c#${T}/}/ done fi
}
function cproj()
{
local TOPFILE=build/make/core/envsetup.mk
local HERE=$PWD
local T= while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do
T=$PWD if [ -f "$T/Android.mk" ]; then
\cd $T
return fi
\cd .. done
\cd $HERE echo"can't find Android.mk"
}
# Ensure that we're always using the adb in the tree. This works around the fact # that bash caches $PATH lookups, so if you use adb before lunching/building the # one in your tree, you'll continue to get /usr/bin/adb or whatever even after # you have the one from your current tree on your path. Historically this would # cause confusion because glinux had adb in /usr/bin/ by default, though that # doesn't appear to be the case on my rodete hosts; it is however still the case # that my Mac has /usr/local/bin/adb installed by default and on the default # path. function adb() { # We need `command which` because zsh has a built-in `which` that's more # like `type`.
local ADB=$(command which adb) if [ -z "$ADB" ]; then echo"Command adb not found; try lunch (and building) first?"
return 1 fi
run_tool_with_logging "ADB" $ADB "${@}"
}
function fastboot() {
local FASTBOOT=$(command which fastboot) if [ -z "$FASTBOOT" ]; then echo"Command fastboot not found; try lunch (and building) first?"
return 1 fi # Support tool event logging for fastboot command.
run_tool_with_logging "FASTBOOT" $FASTBOOT "${@}"
}
function flashall()
{
local T=$(gettop) if [ "$T" ]; then "$T/vendor/google/tools/flashall""$@" else echo"Couldn't locate the top of the tree. Try setting TOP." fi
}
# communicate with a running device or emulator, set up necessary state, # and run the hat command. function runhat()
{ # process standard adb options
local adbTarget="" if [ "$1" = "-d" -o "$1" = "-e" ]; then
adbTarget=$1
shift 1 elif [ "$1" = "-s" ]; then
adbTarget="$1 $2"
shift 2 fi
local adbOptions=${adbTarget} #echo adbOptions = ${adbOptions}
# runhat options
local targetPid=$1
if [ "$targetPid" = "" ]; then echo"Usage: runhat [ -d | -e | -s serial ] target-pid"
return fi
# confirm hat is available if [ -z $(which hat) ]; then echo"hat is not available in this configuration."
return fi
# issue "am" command to cause the hprof dump
local devFile=/data/local/tmp/hprof-$targetPid echo"Poking $targetPid and waiting for data..." echo"Storing data at $devFile"
adb ${adbOptions} shell am dumpheap $targetPid $devFile echo"Press enter when logcat shows \"hprof: heap dump completed\"" echo -n "> "
read
echo"Running hat on $localFile" echo"View the output by pointing your browser at http://localhost:7000/" echo""
hat -JXmx512m $localFile
}
function godir () { if [[ -z "$1" ]]; then echo"Usage: godir <regex>"
return fi
local T=$(gettop)
local FILELIST if [ ! "$OUT_DIR" = "" ]; then
mkdir -p $OUT_DIR
FILELIST=$OUT_DIR/filelist else
FILELIST=$T/filelist fi if [[ ! -f $FILELIST ]]; then echo -n "Creating index..."
(\cd $T; find . -wholename ./out -prune -o -wholename ./.repo -prune -o -type f > $FILELIST) echo" Done" echo"" fi
local lines
lines=($(\grep "$1" $FILELIST | sed -e 's/\/[^/]*$//' | sort | uniq)) if [[ ${#lines[@]} = 0 ]]; then echo"Not found"
return fi
local pathname
local choice if [[ ${#lines[@]} > 1 ]]; then while [[ -z "$pathname" ]]; do
local index=1
local line for line in ${lines[@]}; do
printf "%6s %s\n""[$index]" $line
index=$(($index + 1)) done echo echo -n "Select one: "
unset choice
read choice if [[ $choice -gt ${#lines[@]} || $choice -lt 1 ]]; then echo"Invalid choice"
continue fi
pathname=${lines[@]:$(($choice-1)):1} done else
pathname=${lines[@]:0:1} fi
\cd $T/$pathname
}
# Go to a specific module in the android tree, as cached in module-info.json. If any build change # is made, and it should be reflected in the output, you should run 'refreshmod' first. # Note: This function is in envsetup because changing the directory needs to happen in the current # shell. All other functions that use module-info.json should be in build/soong/bin. function gomod() { if [[ $# -ne 1 ]]; then echo"usage: gomod <module>" >&2
return 1 fi
local path="$(pathmod $@)" if [ -z "$path" ]; then
return 1 fi
cd $path
}
function _complete_android_module_names() {
local word=${COMP_WORDS[COMP_CWORD]}
COMPREPLY=( $(allmod | grep -E "^$word") )
}
function get_make_command()
{ # If we're in the top of an Android tree, use soong_ui.bash instead of make if [ -f build/soong/soong_ui.bash ]; then # Always use the real make if -C is passed in for arg in "$@"; do if [[ $arg == -C* ]]; then echo command make
return fi done echo build/soong/soong_ui.bash --make-mode else echo command make fi
}
# Zsh needs bashcompinit called to support bash-style completion. function enable_zsh_completion() { # Don't override user's options if bash-style completion is already enabled. if ! declare -f complete >/dev/null; then
autoload -U compinit && compinit
autoload -U bashcompinit && bashcompinit fi
}
function validate_current_shell() {
local current_sh="$(ps -o command -p $$)"
case "$current_sh" in
*bash*) function check_type() { type -t "$1"; }
;;
*zsh*) function check_type() { type "$1"; }
enable_zsh_completion ;;
*) echo -e "WARNING: Only bash and zsh are supported.\nUse of other shell would lead to erroneous results."
;;
esac
}
# Execute the contents of any vendorsetup.sh files we can find. # Unless we find an allowed-vendorsetup_sh-files file, in which case we'll only # load those. # # This allows loading only approved vendorsetup.sh files function source_vendorsetup() {
unset VENDOR_PYTHONPATH
local T="$(gettop)"
local allowed=
local vendorsetups=()
# Find all relevant files in a single traversal to improve performance. while IFS= read -r f; do if [[ -z "$f" ]]; then continue; fi if [[ "$f" == *allowed-vendorsetup_sh-files ]]; then if [ -n "$allowed" ]; then echo"More than one 'allowed_vendorsetup_sh-files' file found, not including any vendorsetup.sh files:" echo" $allowed" echo" $T/$f"
return fi
allowed="$T/$f" elif [[ "$f" == *vendorsetup.sh ]]; then
vendorsetups+=("$f") fi done < <(cd "$T" && find -L device vendor product -maxdepth 4 \( -name 'allowed-vendorsetup_sh-files' -o -name 'vendorsetup.sh' \) 2>/dev/null | sort)
local allowed_files=() if [ -n "$allowed" ]; then
allowed_files=($(cat"$allowed")) fi
for f in "${vendorsetups[@]}"; do if [ -z "$allowed" ]; then echo"including $f"
. "$T/$f" else
local found= for a in "${allowed_files[@]}"; do if [[ "$T/$f" == *"$a"* ]]; then echo"including $f"
. "$T/$f"
found=y
break fi done
[[ -n ${found} ]] || echo"ignoring $f, not in $allowed" fi done
setup_cog_env_if_needed
}
function showcommands() {
local T=$(gettop) if [[ -z "$TARGET_PRODUCT" ]]; then
>&2echo"TARGET_PRODUCT not set. Run lunch."
return fi
case $(uname -s) in
Darwin)
PREBUILT_NAME=darwin-x86
;;
Linux)
PREBUILT_NAME=linux-x86
;;
*)
>&2echo Unknown host $(uname -s)
return
;;
esac
OUT_DIR="$(_get_abs_build_var_cached OUT_DIR)" if [[ "$1" == "--regenerate" ]]; then
shift 1
NINJA_ARGS="-t commands $@" m else
(cd $T && prebuilts/build-tools/$PREBUILT_NAME/bin/ninja \
-f $OUT_DIR/combined-${TARGET_PRODUCT}.ninja \
-t commands "$@") fi
}
# These functions used to be here but are now standalone scripts # in build/soong/bin. Unset these for the time being so the real # script is picked up. # TODO: Remove this some time after a suitable delay (maybe 2025?)
unset allmod
unset aninja
unset cgrep
unset core
unset coredump_enable
unset coredump_setup
unset dirmods
unset get_build_var
unset get_abs_build_var
unset getlastscreenshot
unset getprebuilt
unset getscreenshotpath
unset getsdcardpath
unset gettargetarch
unset ggrep
unset gogrep
unset hmm
unset installmod
unset is64bit
unset isviewserverstarted
unset jgrep
unset jsongrep
unset key_back
unset key_home
unset key_menu
unset ktgrep
unset m
unset mangrep
unset mgrep
unset mm
unset mma
unset mmm
unset mmma
unset outmod
unset overrideflags
unset owngrep
unset pathmod
unset pez
unset pygrep
unset qpid
unset rcgrep
unset refreshmod
unset resgrep
unset rsgrep
unset run_tool_with_logging
unset sepgrep
unset sgrep
unset startviewserver
unset stopviewserver
unset systemstack
unset syswrite
unset tomlgrep
unset treegrep
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.