Scott Anderson | 1a5fc95 | 2012-03-07 17:15:06 -0800 | [diff] [blame] | 1 | function hmm() { |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 2 | cat <<EOF |
Jeff Gaston | c6dfc4e | 2017-05-30 17:12:37 -0700 | [diff] [blame] | 3 | |
| 4 | Run "m help" for help with the build system itself. |
| 5 | |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 6 | Invoke ". build/envsetup.sh" from your shell to add the following functions to your environment: |
Steven Moreland | 62054a4 | 2018-12-06 10:11:40 -0800 | [diff] [blame] | 7 | - lunch: lunch <product_name>-<build_variant> |
| 8 | Selects <product_name> as the product to build, and <build_variant> as the variant to |
| 9 | build, and stores those selections in the environment to be read by subsequent |
| 10 | invocations of 'm' etc. |
| 11 | - tapas: tapas [<App1> <App2> ...] [arm|x86|mips|arm64|x86_64|mips64] [eng|userdebug|user] |
Anton Hansson | ece9c48 | 2019-02-04 18:15:39 +0000 | [diff] [blame] | 12 | - croot: Changes directory to the top of the tree, or a subdirectory thereof. |
Steven Moreland | 62054a4 | 2018-12-06 10:11:40 -0800 | [diff] [blame] | 13 | - m: Makes from the top of the tree. |
Dan Willemsen | 67074fe | 2019-10-30 12:35:34 -0700 | [diff] [blame] | 14 | - mm: Builds and installs all of the modules in the current directory, and their |
| 15 | dependencies. |
| 16 | - mmm: Builds and installs all of the modules in the supplied directories, and their |
| 17 | dependencies. |
Steven Moreland | 62054a4 | 2018-12-06 10:11:40 -0800 | [diff] [blame] | 18 | To limit the modules being built use the syntax: mmm dir/:target1,target2. |
Dan Willemsen | 67074fe | 2019-10-30 12:35:34 -0700 | [diff] [blame] | 19 | - mma: Same as 'mm' |
| 20 | - mmma: Same as 'mmm' |
Steven Moreland | 62054a4 | 2018-12-06 10:11:40 -0800 | [diff] [blame] | 21 | - provision: Flash device with all required partitions. Options will be passed on to fastboot. |
| 22 | - cgrep: Greps on all local C/C++ files. |
| 23 | - ggrep: Greps on all local Gradle files. |
Orion Hodson | 831472d | 2019-10-25 11:35:15 +0100 | [diff] [blame] | 24 | - gogrep: Greps on all local Go files. |
Steven Moreland | 62054a4 | 2018-12-06 10:11:40 -0800 | [diff] [blame] | 25 | - jgrep: Greps on all local Java files. |
| 26 | - resgrep: Greps on all local res/*.xml files. |
| 27 | - mangrep: Greps on all local AndroidManifest.xml files. |
Jaewoong Jung | 892d0fe | 2019-05-04 10:06:28 -0700 | [diff] [blame] | 28 | - mgrep: Greps on all local Makefiles and *.bp files. |
Jeff Sharkey | f17cddf | 2019-08-21 12:51:26 -0600 | [diff] [blame] | 29 | - owngrep: Greps on all local OWNERS files. |
Steven Moreland | 62054a4 | 2018-12-06 10:11:40 -0800 | [diff] [blame] | 30 | - sepgrep: Greps on all local sepolicy files. |
| 31 | - sgrep: Greps on all local source files. |
| 32 | - godir: Go to the directory containing a file. |
| 33 | - allmod: List all modules. |
| 34 | - gomod: Go to the directory containing a module. |
Rett Berg | 78d1c93 | 2019-01-24 14:34:23 -0800 | [diff] [blame] | 35 | - pathmod: Get the directory containing a module. |
Steven Moreland | 62054a4 | 2018-12-06 10:11:40 -0800 | [diff] [blame] | 36 | - refreshmod: Refresh list of modules for allmod/gomod. |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 37 | |
Roland Levillain | 3934192 | 2015-10-20 12:48:19 +0100 | [diff] [blame] | 38 | Environment options: |
Steven Moreland | 115d1f5 | 2019-09-26 16:30:28 -0700 | [diff] [blame] | 39 | - SANITIZE_HOST: Set to 'address' to use ASAN for all host modules. |
Sasha Smundak | 9f27cc0 | 2019-01-31 13:25:31 -0800 | [diff] [blame] | 40 | - ANDROID_QUIET_BUILD: set to 'true' to display only the essential messages. |
Dan Albert | 4ae5d4b | 2014-10-31 16:23:08 -0700 | [diff] [blame] | 41 | |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 42 | Look at the source to view more functions. The complete list is: |
| 43 | EOF |
Christopher Ferris | 55257d2 | 2017-03-23 11:08:58 -0700 | [diff] [blame] | 44 | local T=$(gettop) |
| 45 | local A="" |
| 46 | local i |
Jacky Cao | 89483b8 | 2015-05-15 22:12:53 +0800 | [diff] [blame] | 47 | for i in `cat $T/build/envsetup.sh | sed -n "/^[[:blank:]]*function /s/function \([a-z_]*\).*/\1/p" | sort | uniq`; do |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 48 | A="$A $i" |
| 49 | done |
| 50 | echo $A |
| 51 | } |
| 52 | |
Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 53 | # Get all the build variables needed by this script in a single call to the build system. |
| 54 | function build_build_var_cache() |
| 55 | { |
Christopher Ferris | 55257d2 | 2017-03-23 11:08:58 -0700 | [diff] [blame] | 56 | local T=$(gettop) |
Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 57 | # Grep out the variable names from the script. |
Jim Tang | a881a25 | 2018-06-19 16:34:41 +0800 | [diff] [blame] | 58 | cached_vars=(`cat $T/build/envsetup.sh | tr '()' ' ' | awk '{for(i=1;i<=NF;i++) if($i~/get_build_var/) print $(i+1)}' | sort -u | tr '\n' ' '`) |
| 59 | cached_abs_vars=(`cat $T/build/envsetup.sh | tr '()' ' ' | awk '{for(i=1;i<=NF;i++) if($i~/get_abs_build_var/) print $(i+1)}' | sort -u | tr '\n' ' '`) |
Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 60 | # Call the build system to dump the "<val>=<value>" pairs as a shell script. |
Steven Moreland | 0540296 | 2018-01-05 12:13:11 -0800 | [diff] [blame] | 61 | build_dicts_script=`\builtin cd $T; build/soong/soong_ui.bash --dumpvars-mode \ |
Jim Tang | a881a25 | 2018-06-19 16:34:41 +0800 | [diff] [blame] | 62 | --vars="${cached_vars[*]}" \ |
| 63 | --abs-vars="${cached_abs_vars[*]}" \ |
Dan Willemsen | af88c41 | 2017-07-14 11:29:44 -0700 | [diff] [blame] | 64 | --var-prefix=var_cache_ \ |
| 65 | --abs-var-prefix=abs_var_cache_` |
Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 66 | local ret=$? |
| 67 | if [ $ret -ne 0 ] |
| 68 | then |
| 69 | unset build_dicts_script |
| 70 | return $ret |
| 71 | fi |
Dan Willemsen | af88c41 | 2017-07-14 11:29:44 -0700 | [diff] [blame] | 72 | # Execute the script to store the "<val>=<value>" pairs as shell variables. |
Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 73 | eval "$build_dicts_script" |
Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 74 | ret=$? |
Ying Wang | f0cb397 | 2016-03-04 13:56:23 -0800 | [diff] [blame] | 75 | unset build_dicts_script |
Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 76 | if [ $ret -ne 0 ] |
| 77 | then |
| 78 | return $ret |
| 79 | fi |
| 80 | BUILD_VAR_CACHE_READY="true" |
| 81 | } |
| 82 | |
Ying Wang | f0cb397 | 2016-03-04 13:56:23 -0800 | [diff] [blame] | 83 | # Delete the build var cache, so that we can still call into the build system |
Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 84 | # to get build variables not listed in this script. |
| 85 | function destroy_build_var_cache() |
| 86 | { |
| 87 | unset BUILD_VAR_CACHE_READY |
Christopher Ferris | 55257d2 | 2017-03-23 11:08:58 -0700 | [diff] [blame] | 88 | local v |
Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 89 | for v in $cached_vars; do |
| 90 | unset var_cache_$v |
| 91 | done |
| 92 | unset cached_vars |
| 93 | for v in $cached_abs_vars; do |
| 94 | unset abs_var_cache_$v |
| 95 | done |
| 96 | unset cached_abs_vars |
| 97 | } |
| 98 | |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 99 | # Get the value of a build variable as an absolute path. |
| 100 | function get_abs_build_var() |
| 101 | { |
Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 102 | if [ "$BUILD_VAR_CACHE_READY" = "true" ] |
| 103 | then |
Vishwath Mohan | 7d35f00 | 2016-03-11 10:00:40 -0800 | [diff] [blame] | 104 | eval "echo \"\${abs_var_cache_$1}\"" |
Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 105 | return |
| 106 | fi |
| 107 | |
Christopher Ferris | 55257d2 | 2017-03-23 11:08:58 -0700 | [diff] [blame] | 108 | local T=$(gettop) |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 109 | if [ ! "$T" ]; then |
| 110 | echo "Couldn't locate the top of the tree. Try setting TOP." >&2 |
| 111 | return |
| 112 | fi |
Dan Willemsen | af88c41 | 2017-07-14 11:29:44 -0700 | [diff] [blame] | 113 | (\cd $T; build/soong/soong_ui.bash --dumpvar-mode --abs $1) |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 114 | } |
| 115 | |
| 116 | # Get the exact value of a build variable. |
| 117 | function get_build_var() |
| 118 | { |
Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 119 | if [ "$BUILD_VAR_CACHE_READY" = "true" ] |
| 120 | then |
Vishwath Mohan | 7d35f00 | 2016-03-11 10:00:40 -0800 | [diff] [blame] | 121 | eval "echo \"\${var_cache_$1}\"" |
Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 122 | return |
| 123 | fi |
| 124 | |
Christopher Ferris | 55257d2 | 2017-03-23 11:08:58 -0700 | [diff] [blame] | 125 | local T=$(gettop) |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 126 | if [ ! "$T" ]; then |
| 127 | echo "Couldn't locate the top of the tree. Try setting TOP." >&2 |
| 128 | return |
| 129 | fi |
Dan Willemsen | af88c41 | 2017-07-14 11:29:44 -0700 | [diff] [blame] | 130 | (\cd $T; build/soong/soong_ui.bash --dumpvar-mode $1) |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 131 | } |
| 132 | |
| 133 | # check to see if the supplied product is one we can build |
| 134 | function check_product() |
| 135 | { |
Christopher Ferris | 55257d2 | 2017-03-23 11:08:58 -0700 | [diff] [blame] | 136 | local T=$(gettop) |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 137 | if [ ! "$T" ]; then |
| 138 | echo "Couldn't locate the top of the tree. Try setting TOP." >&2 |
| 139 | return |
| 140 | fi |
Jeff Brown | e33ba4c | 2011-07-11 22:11:46 -0700 | [diff] [blame] | 141 | TARGET_PRODUCT=$1 \ |
| 142 | TARGET_BUILD_VARIANT= \ |
| 143 | TARGET_BUILD_TYPE= \ |
Joe Onorato | da12daf | 2010-06-09 18:18:31 -0700 | [diff] [blame] | 144 | TARGET_BUILD_APPS= \ |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 145 | get_build_var TARGET_DEVICE > /dev/null |
| 146 | # hide successful answers, but allow the errors to show |
| 147 | } |
| 148 | |
| 149 | VARIANT_CHOICES=(user userdebug eng) |
| 150 | |
| 151 | # check to see if the supplied variant is valid |
| 152 | function check_variant() |
| 153 | { |
Christopher Ferris | 55257d2 | 2017-03-23 11:08:58 -0700 | [diff] [blame] | 154 | local v |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 155 | for v in ${VARIANT_CHOICES[@]} |
| 156 | do |
| 157 | if [ "$v" = "$1" ] |
| 158 | then |
| 159 | return 0 |
| 160 | fi |
| 161 | done |
| 162 | return 1 |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 163 | } |
| 164 | |
| 165 | function setpaths() |
| 166 | { |
Christopher Ferris | 55257d2 | 2017-03-23 11:08:58 -0700 | [diff] [blame] | 167 | local T=$(gettop) |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 168 | if [ ! "$T" ]; then |
| 169 | echo "Couldn't locate the top of the tree. Try setting TOP." |
| 170 | return |
| 171 | fi |
| 172 | |
| 173 | ################################################################## |
| 174 | # # |
| 175 | # Read me before you modify this code # |
| 176 | # # |
| 177 | # This function sets ANDROID_BUILD_PATHS to what it is adding # |
| 178 | # to PATH, and the next time it is run, it removes that from # |
| 179 | # PATH. This is required so lunch can be run more than once # |
| 180 | # and still have working paths. # |
| 181 | # # |
| 182 | ################################################################## |
| 183 | |
Raphael Moll | c639c78 | 2011-06-20 17:25:01 -0700 | [diff] [blame] | 184 | # Note: on windows/cygwin, ANDROID_BUILD_PATHS will contain spaces |
| 185 | # due to "C:\Program Files" being in the path. |
| 186 | |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 187 | # out with the old |
Raphael Moll | c639c78 | 2011-06-20 17:25:01 -0700 | [diff] [blame] | 188 | if [ -n "$ANDROID_BUILD_PATHS" ] ; then |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 189 | export PATH=${PATH/$ANDROID_BUILD_PATHS/} |
| 190 | fi |
Raphael Moll | c639c78 | 2011-06-20 17:25:01 -0700 | [diff] [blame] | 191 | if [ -n "$ANDROID_PRE_BUILD_PATHS" ] ; then |
Doug Zongker | 2903498 | 2011-04-22 08:16:56 -0700 | [diff] [blame] | 192 | export PATH=${PATH/$ANDROID_PRE_BUILD_PATHS/} |
Ying Wang | aa1c9b5 | 2012-11-26 20:51:59 -0800 | [diff] [blame] | 193 | # strip leading ':', if any |
| 194 | export PATH=${PATH/:%/} |
Jeff Hamilton | 4a1c70e | 2010-06-21 18:26:38 -0500 | [diff] [blame] | 195 | fi |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 196 | |
| 197 | # and in with the new |
Christopher Ferris | 55257d2 | 2017-03-23 11:08:58 -0700 | [diff] [blame] | 198 | local prebuiltdir=$(getprebuilt) |
| 199 | local gccprebuiltdir=$(get_abs_build_var ANDROID_GCC_PREBUILTS) |
Raphael | 732936d | 2011-06-22 14:35:32 -0700 | [diff] [blame] | 200 | |
Ben Cheng | 8bc4c43 | 2012-11-16 13:29:13 -0800 | [diff] [blame] | 201 | # defined in core/config.mk |
Christopher Ferris | 55257d2 | 2017-03-23 11:08:58 -0700 | [diff] [blame] | 202 | local targetgccversion=$(get_build_var TARGET_GCC_VERSION) |
| 203 | local targetgccversion2=$(get_build_var 2ND_TARGET_GCC_VERSION) |
Ben Cheng | 1526670 | 2012-12-10 16:04:39 -0800 | [diff] [blame] | 204 | export TARGET_GCC_VERSION=$targetgccversion |
Ben Cheng | 8bc4c43 | 2012-11-16 13:29:13 -0800 | [diff] [blame] | 205 | |
Raphael Moll | c639c78 | 2011-06-20 17:25:01 -0700 | [diff] [blame] | 206 | # The gcc toolchain does not exists for windows/cygwin. In this case, do not reference it. |
Ben Cheng | fba67bf | 2014-02-25 10:27:07 -0800 | [diff] [blame] | 207 | export ANDROID_TOOLCHAIN= |
| 208 | export ANDROID_TOOLCHAIN_2ND_ARCH= |
David 'Digit' Turner | 2056c25 | 2012-04-17 14:50:47 +0200 | [diff] [blame] | 209 | local ARCH=$(get_build_var TARGET_ARCH) |
Christopher Ferris | 55257d2 | 2017-03-23 11:08:58 -0700 | [diff] [blame] | 210 | local toolchaindir toolchaindir2= |
David 'Digit' Turner | 2056c25 | 2012-04-17 14:50:47 +0200 | [diff] [blame] | 211 | case $ARCH in |
Pavel Chupin | c1a5664 | 2013-08-23 16:49:21 +0400 | [diff] [blame] | 212 | x86) toolchaindir=x86/x86_64-linux-android-$targetgccversion/bin |
Mark D Horn | 7d0ede7 | 2012-03-14 14:20:30 -0700 | [diff] [blame] | 213 | ;; |
Pavel Chupin | fd82a49 | 2012-11-26 09:50:07 +0400 | [diff] [blame] | 214 | x86_64) toolchaindir=x86/x86_64-linux-android-$targetgccversion/bin |
| 215 | ;; |
Ben Cheng | 8bc4c43 | 2012-11-16 13:29:13 -0800 | [diff] [blame] | 216 | arm) toolchaindir=arm/arm-linux-androideabi-$targetgccversion/bin |
David 'Digit' Turner | 2056c25 | 2012-04-17 14:50:47 +0200 | [diff] [blame] | 217 | ;; |
Ben Cheng | fba67bf | 2014-02-25 10:27:07 -0800 | [diff] [blame] | 218 | arm64) toolchaindir=aarch64/aarch64-linux-android-$targetgccversion/bin; |
Colin Cross | 03b424a | 2014-05-22 11:57:43 -0700 | [diff] [blame] | 219 | toolchaindir2=arm/arm-linux-androideabi-$targetgccversion2/bin |
Ben Cheng | db4fc20 | 2013-10-04 16:02:59 -0700 | [diff] [blame] | 220 | ;; |
Duane Sand | 3c4fcd8 | 2014-07-22 14:34:00 -0700 | [diff] [blame] | 221 | mips|mips64) toolchaindir=mips/mips64el-linux-android-$targetgccversion/bin |
Serban Constantinescu | 9b68fb2 | 2014-01-14 10:33:53 +0000 | [diff] [blame] | 222 | ;; |
David 'Digit' Turner | 2056c25 | 2012-04-17 14:50:47 +0200 | [diff] [blame] | 223 | *) |
| 224 | echo "Can't find toolchain for unknown architecture: $ARCH" |
| 225 | toolchaindir=xxxxxxxxx |
Mark D Horn | 7d0ede7 | 2012-03-14 14:20:30 -0700 | [diff] [blame] | 226 | ;; |
| 227 | esac |
Jing Yu | f5172c7 | 2012-03-29 20:45:50 -0700 | [diff] [blame] | 228 | if [ -d "$gccprebuiltdir/$toolchaindir" ]; then |
Ben Cheng | fba67bf | 2014-02-25 10:27:07 -0800 | [diff] [blame] | 229 | export ANDROID_TOOLCHAIN=$gccprebuiltdir/$toolchaindir |
Raphael Moll | c639c78 | 2011-06-20 17:25:01 -0700 | [diff] [blame] | 230 | fi |
Raphael | 732936d | 2011-06-22 14:35:32 -0700 | [diff] [blame] | 231 | |
Christopher Ferris | 55257d2 | 2017-03-23 11:08:58 -0700 | [diff] [blame] | 232 | if [ "$toolchaindir2" -a -d "$gccprebuiltdir/$toolchaindir2" ]; then |
Ben Cheng | fba67bf | 2014-02-25 10:27:07 -0800 | [diff] [blame] | 233 | export ANDROID_TOOLCHAIN_2ND_ARCH=$gccprebuiltdir/$toolchaindir2 |
| 234 | fi |
| 235 | |
Jeff Vander Stoep | 5f50f05 | 2015-06-12 09:56:39 -0700 | [diff] [blame] | 236 | export ANDROID_DEV_SCRIPTS=$T/development/scripts:$T/prebuilts/devtools/tools:$T/external/selinux/prebuilts/bin |
Yueyao Zhu | efc786a | 2017-04-07 14:11:54 -0700 | [diff] [blame] | 237 | |
| 238 | # add kernel specific binaries |
| 239 | case $(uname -s) in |
| 240 | Linux) |
| 241 | export ANDROID_DEV_SCRIPTS=$ANDROID_DEV_SCRIPTS:$T/prebuilts/misc/linux-x86/dtc:$T/prebuilts/misc/linux-x86/libufdt |
| 242 | ;; |
| 243 | *) |
| 244 | ;; |
| 245 | esac |
| 246 | |
Torne (Richard Coles) | 0091bae | 2017-10-03 16:31:18 -0400 | [diff] [blame] | 247 | ANDROID_BUILD_PATHS=$(get_build_var ANDROID_BUILD_PATHS):$ANDROID_TOOLCHAIN |
| 248 | if [ -n "$ANDROID_TOOLCHAIN_2ND_ARCH" ]; then |
| 249 | ANDROID_BUILD_PATHS=$ANDROID_BUILD_PATHS:$ANDROID_TOOLCHAIN_2ND_ARCH |
| 250 | fi |
Yi Kong | dfd00b1 | 2019-05-21 16:00:04 -0700 | [diff] [blame] | 251 | ANDROID_BUILD_PATHS=$ANDROID_BUILD_PATHS:$ANDROID_DEV_SCRIPTS |
| 252 | |
| 253 | # Append llvm binutils prebuilts path to ANDROID_BUILD_PATHS. |
| 254 | local ANDROID_LLVM_BINUTILS=$(get_abs_build_var ANDROID_CLANG_PREBUILTS)/llvm-binutils-stable |
| 255 | ANDROID_BUILD_PATHS=$ANDROID_BUILD_PATHS:$ANDROID_LLVM_BINUTILS |
David 'Digit' Turner | 94d16e5 | 2014-05-05 16:13:50 +0200 | [diff] [blame] | 256 | |
| 257 | # If prebuilts/android-emulator/<system>/ exists, prepend it to our PATH |
| 258 | # to ensure that the corresponding 'emulator' binaries are used. |
| 259 | case $(uname -s) in |
| 260 | Darwin) |
| 261 | ANDROID_EMULATOR_PREBUILTS=$T/prebuilts/android-emulator/darwin-x86_64 |
| 262 | ;; |
| 263 | Linux) |
| 264 | ANDROID_EMULATOR_PREBUILTS=$T/prebuilts/android-emulator/linux-x86_64 |
| 265 | ;; |
| 266 | *) |
| 267 | ANDROID_EMULATOR_PREBUILTS= |
| 268 | ;; |
| 269 | esac |
| 270 | if [ -n "$ANDROID_EMULATOR_PREBUILTS" -a -d "$ANDROID_EMULATOR_PREBUILTS" ]; then |
Yi Kong | dfd00b1 | 2019-05-21 16:00:04 -0700 | [diff] [blame] | 271 | ANDROID_BUILD_PATHS=$ANDROID_BUILD_PATHS:$ANDROID_EMULATOR_PREBUILTS |
David 'Digit' Turner | 94d16e5 | 2014-05-05 16:13:50 +0200 | [diff] [blame] | 272 | export ANDROID_EMULATOR_PREBUILTS |
| 273 | fi |
| 274 | |
Jim Tang | b3fda30 | 2018-12-22 10:24:55 +0800 | [diff] [blame] | 275 | # Append asuite prebuilts path to ANDROID_BUILD_PATHS. |
| 276 | local os_arch=$(get_build_var HOST_PREBUILT_TAG) |
Ryan Prichard | 8426a19 | 2019-07-15 18:05:29 -0700 | [diff] [blame] | 277 | local ACLOUD_PATH="$T/prebuilts/asuite/acloud/$os_arch" |
| 278 | local AIDEGEN_PATH="$T/prebuilts/asuite/aidegen/$os_arch" |
| 279 | local ATEST_PATH="$T/prebuilts/asuite/atest/$os_arch" |
| 280 | export ANDROID_BUILD_PATHS=$ANDROID_BUILD_PATHS:$ACLOUD_PATH:$AIDEGEN_PATH:$ATEST_PATH: |
Jim Tang | b3fda30 | 2018-12-22 10:24:55 +0800 | [diff] [blame] | 281 | |
Ryan Prichard | 8426a19 | 2019-07-15 18:05:29 -0700 | [diff] [blame] | 282 | export PATH=$ANDROID_BUILD_PATHS$PATH |
Jim Tang | 22f4c32 | 2018-12-17 15:21:53 +0800 | [diff] [blame] | 283 | |
| 284 | # out with the duplicate old |
| 285 | if [ -n $ANDROID_PYTHONPATH ]; then |
| 286 | export PYTHONPATH=${PYTHONPATH//$ANDROID_PYTHONPATH/} |
| 287 | fi |
| 288 | # and in with the new |
| 289 | export ANDROID_PYTHONPATH=$T/development/python-packages: |
Jim Tang | c4dba1d | 2019-07-25 16:54:27 +0800 | [diff] [blame] | 290 | if [ -n $VENDOR_PYTHONPATH ]; then |
| 291 | ANDROID_PYTHONPATH=$ANDROID_PYTHONPATH$VENDOR_PYTHONPATH |
| 292 | fi |
Jim Tang | 22f4c32 | 2018-12-17 15:21:53 +0800 | [diff] [blame] | 293 | export PYTHONPATH=$ANDROID_PYTHONPATH$PYTHONPATH |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 294 | |
Colin Cross | e97e693 | 2017-06-30 16:01:45 -0700 | [diff] [blame] | 295 | export ANDROID_JAVA_HOME=$(get_abs_build_var ANDROID_JAVA_HOME) |
| 296 | export JAVA_HOME=$ANDROID_JAVA_HOME |
| 297 | export ANDROID_JAVA_TOOLCHAIN=$(get_abs_build_var ANDROID_JAVA_TOOLCHAIN) |
| 298 | export ANDROID_PRE_BUILD_PATHS=$ANDROID_JAVA_TOOLCHAIN: |
| 299 | export PATH=$ANDROID_PRE_BUILD_PATHS$PATH |
Jeff Hamilton | 4a1c70e | 2010-06-21 18:26:38 -0500 | [diff] [blame] | 300 | |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 301 | unset ANDROID_PRODUCT_OUT |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 302 | export ANDROID_PRODUCT_OUT=$(get_abs_build_var PRODUCT_OUT) |
| 303 | export OUT=$ANDROID_PRODUCT_OUT |
| 304 | |
Jeff Brown | 8fd5cce | 2011-03-24 17:03:06 -0700 | [diff] [blame] | 305 | unset ANDROID_HOST_OUT |
| 306 | export ANDROID_HOST_OUT=$(get_abs_build_var HOST_OUT) |
| 307 | |
Simran Basi | dd050ed | 2017-02-13 13:46:48 -0800 | [diff] [blame] | 308 | unset ANDROID_HOST_OUT_TESTCASES |
| 309 | export ANDROID_HOST_OUT_TESTCASES=$(get_abs_build_var HOST_OUT_TESTCASES) |
| 310 | |
| 311 | unset ANDROID_TARGET_OUT_TESTCASES |
| 312 | export ANDROID_TARGET_OUT_TESTCASES=$(get_abs_build_var TARGET_OUT_TESTCASES) |
| 313 | |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 314 | # needed for building linux on MacOS |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 315 | # TODO: fix the path |
| 316 | #export HOST_EXTRACFLAGS="-I "$T/system/kernel_headers/host_include |
| 317 | } |
| 318 | |
| 319 | function printconfig() |
| 320 | { |
Christopher Ferris | 55257d2 | 2017-03-23 11:08:58 -0700 | [diff] [blame] | 321 | local T=$(gettop) |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 322 | if [ ! "$T" ]; then |
| 323 | echo "Couldn't locate the top of the tree. Try setting TOP." >&2 |
| 324 | return |
| 325 | fi |
| 326 | get_build_var report_config |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 327 | } |
| 328 | |
| 329 | function set_stuff_for_environment() |
| 330 | { |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 331 | setpaths |
| 332 | set_sequence_number |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 333 | |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 334 | export ANDROID_BUILD_TOP=$(gettop) |
Ben Cheng | aac3f81 | 2013-08-13 14:38:15 -0700 | [diff] [blame] | 335 | # With this environment variable new GCC can apply colors to warnings/errors |
| 336 | export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01' |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 337 | } |
| 338 | |
| 339 | function set_sequence_number() |
| 340 | { |
Colin Cross | 8873713 | 2017-03-21 17:41:03 -0700 | [diff] [blame] | 341 | export BUILD_ENV_SEQUENCE_NUMBER=13 |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 342 | } |
| 343 | |
Makoto Onuki | da97106 | 2018-06-18 10:15:19 -0700 | [diff] [blame] | 344 | # Takes a command name, and check if it's in ENVSETUP_NO_COMPLETION or not. |
| 345 | function should_add_completion() { |
Jim Tang | a881a25 | 2018-06-19 16:34:41 +0800 | [diff] [blame] | 346 | local cmd="$(basename $1| sed 's/_completion//' |sed 's/\.\(.*\)*sh$//')" |
Makoto Onuki | da97106 | 2018-06-18 10:15:19 -0700 | [diff] [blame] | 347 | case :"$ENVSETUP_NO_COMPLETION": in |
Jim Tang | a881a25 | 2018-06-19 16:34:41 +0800 | [diff] [blame] | 348 | *:"$cmd":*) |
| 349 | return 1 |
| 350 | ;; |
Makoto Onuki | da97106 | 2018-06-18 10:15:19 -0700 | [diff] [blame] | 351 | esac |
| 352 | return 0 |
| 353 | } |
| 354 | |
Kenny Root | 52aa81c | 2011-07-15 11:07:06 -0700 | [diff] [blame] | 355 | function addcompletions() |
| 356 | { |
| 357 | local T dir f |
| 358 | |
Jim Tang | a881a25 | 2018-06-19 16:34:41 +0800 | [diff] [blame] | 359 | # Keep us from trying to run in something that's neither bash nor zsh. |
| 360 | if [ -z "$BASH_VERSION" -a -z "$ZSH_VERSION" ]; then |
Kenny Root | 52aa81c | 2011-07-15 11:07:06 -0700 | [diff] [blame] | 361 | return |
| 362 | fi |
| 363 | |
| 364 | # Keep us from trying to run in bash that's too old. |
Jim Tang | a881a25 | 2018-06-19 16:34:41 +0800 | [diff] [blame] | 365 | if [ -n "$BASH_VERSION" -a ${BASH_VERSINFO[0]} -lt 3 ]; then |
Kenny Root | 52aa81c | 2011-07-15 11:07:06 -0700 | [diff] [blame] | 366 | return |
| 367 | fi |
| 368 | |
Jim Tang | a881a25 | 2018-06-19 16:34:41 +0800 | [diff] [blame] | 369 | local completion_files=( |
| 370 | system/core/adb/adb.bash |
| 371 | system/core/fastboot/fastboot.bash |
Jim Tang | b3fda30 | 2018-12-22 10:24:55 +0800 | [diff] [blame] | 372 | tools/asuite/asuite.sh |
Jim Tang | a881a25 | 2018-06-19 16:34:41 +0800 | [diff] [blame] | 373 | ) |
Makoto Onuki | da97106 | 2018-06-18 10:15:19 -0700 | [diff] [blame] | 374 | # Completion can be disabled selectively to allow users to use non-standard completion. |
| 375 | # e.g. |
| 376 | # ENVSETUP_NO_COMPLETION=adb # -> disable adb completion |
| 377 | # ENVSETUP_NO_COMPLETION=adb:bit # -> disable adb and bit completion |
Jim Tang | a881a25 | 2018-06-19 16:34:41 +0800 | [diff] [blame] | 378 | for f in ${completion_files[*]}; do |
| 379 | if [ -f "$f" ] && should_add_completion "$f"; then |
Kenny Root | 52aa81c | 2011-07-15 11:07:06 -0700 | [diff] [blame] | 380 | . $f |
Elliott Hughes | ce18dd4 | 2018-04-03 13:49:48 -0700 | [diff] [blame] | 381 | fi |
| 382 | done |
Joe Onorato | 002a6c7 | 2016-10-20 16:39:49 -0700 | [diff] [blame] | 383 | |
Makoto Onuki | da97106 | 2018-06-18 10:15:19 -0700 | [diff] [blame] | 384 | if should_add_completion bit ; then |
| 385 | complete -C "bit --tab" bit |
| 386 | fi |
Anton Hansson | ece9c48 | 2019-02-04 18:15:39 +0000 | [diff] [blame] | 387 | if [ -z "$ZSH_VERSION" ]; then |
| 388 | # Doesn't work in zsh. |
| 389 | complete -o nospace -F _croot croot |
| 390 | fi |
Jim Tang | a881a25 | 2018-06-19 16:34:41 +0800 | [diff] [blame] | 391 | complete -F _lunch lunch |
Steven Moreland | 62054a4 | 2018-12-06 10:11:40 -0800 | [diff] [blame] | 392 | |
dimitry | 73b8481 | 2018-12-11 18:06:00 +0100 | [diff] [blame] | 393 | complete -F _complete_android_module_names gomod |
| 394 | complete -F _complete_android_module_names m |
Kenny Root | 52aa81c | 2011-07-15 11:07:06 -0700 | [diff] [blame] | 395 | } |
| 396 | |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 397 | function choosetype() |
| 398 | { |
| 399 | echo "Build type choices are:" |
| 400 | echo " 1. release" |
| 401 | echo " 2. debug" |
| 402 | echo |
| 403 | |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 404 | local DEFAULT_NUM DEFAULT_VALUE |
Jeff Brown | e33ba4c | 2011-07-11 22:11:46 -0700 | [diff] [blame] | 405 | DEFAULT_NUM=1 |
| 406 | DEFAULT_VALUE=release |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 407 | |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 408 | export TARGET_BUILD_TYPE= |
| 409 | local ANSWER |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 410 | while [ -z $TARGET_BUILD_TYPE ] |
| 411 | do |
| 412 | echo -n "Which would you like? ["$DEFAULT_NUM"] " |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 413 | if [ -z "$1" ] ; then |
| 414 | read ANSWER |
| 415 | else |
| 416 | echo $1 |
| 417 | ANSWER=$1 |
| 418 | fi |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 419 | case $ANSWER in |
| 420 | "") |
| 421 | export TARGET_BUILD_TYPE=$DEFAULT_VALUE |
| 422 | ;; |
| 423 | 1) |
| 424 | export TARGET_BUILD_TYPE=release |
| 425 | ;; |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 426 | release) |
| 427 | export TARGET_BUILD_TYPE=release |
| 428 | ;; |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 429 | 2) |
| 430 | export TARGET_BUILD_TYPE=debug |
| 431 | ;; |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 432 | debug) |
| 433 | export TARGET_BUILD_TYPE=debug |
| 434 | ;; |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 435 | *) |
| 436 | echo |
| 437 | echo "I didn't understand your response. Please try again." |
| 438 | echo |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 439 | ;; |
| 440 | esac |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 441 | if [ -n "$1" ] ; then |
| 442 | break |
| 443 | fi |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 444 | done |
| 445 | |
Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 446 | build_build_var_cache |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 447 | set_stuff_for_environment |
Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 448 | destroy_build_var_cache |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 449 | } |
| 450 | |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 451 | # |
| 452 | # This function isn't really right: It chooses a TARGET_PRODUCT |
| 453 | # based on the list of boards. Usually, that gets you something |
| 454 | # that kinda works with a generic product, but really, you should |
| 455 | # pick a product by name. |
| 456 | # |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 457 | function chooseproduct() |
| 458 | { |
Christopher Ferris | 55257d2 | 2017-03-23 11:08:58 -0700 | [diff] [blame] | 459 | local default_value |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 460 | if [ "x$TARGET_PRODUCT" != x ] ; then |
| 461 | default_value=$TARGET_PRODUCT |
| 462 | else |
Ying Wang | 0a76df5 | 2015-06-08 11:57:26 -0700 | [diff] [blame] | 463 | default_value=aosp_arm |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 464 | fi |
| 465 | |
Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 466 | export TARGET_BUILD_APPS= |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 467 | export TARGET_PRODUCT= |
| 468 | local ANSWER |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 469 | while [ -z "$TARGET_PRODUCT" ] |
| 470 | do |
Joe Onorato | 8849aed | 2009-04-29 15:56:47 -0700 | [diff] [blame] | 471 | echo -n "Which product would you like? [$default_value] " |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 472 | if [ -z "$1" ] ; then |
| 473 | read ANSWER |
| 474 | else |
| 475 | echo $1 |
| 476 | ANSWER=$1 |
| 477 | fi |
| 478 | |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 479 | if [ -z "$ANSWER" ] ; then |
| 480 | export TARGET_PRODUCT=$default_value |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 481 | else |
| 482 | if check_product $ANSWER |
| 483 | then |
| 484 | export TARGET_PRODUCT=$ANSWER |
| 485 | else |
| 486 | echo "** Not a valid product: $ANSWER" |
| 487 | fi |
| 488 | fi |
| 489 | if [ -n "$1" ] ; then |
| 490 | break |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 491 | fi |
| 492 | done |
| 493 | |
Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 494 | build_build_var_cache |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 495 | set_stuff_for_environment |
Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 496 | destroy_build_var_cache |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 497 | } |
| 498 | |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 499 | function choosevariant() |
| 500 | { |
| 501 | echo "Variant choices are:" |
| 502 | local index=1 |
| 503 | local v |
| 504 | for v in ${VARIANT_CHOICES[@]} |
| 505 | do |
| 506 | # The product name is the name of the directory containing |
| 507 | # the makefile we found, above. |
| 508 | echo " $index. $v" |
| 509 | index=$(($index+1)) |
| 510 | done |
| 511 | |
| 512 | local default_value=eng |
| 513 | local ANSWER |
| 514 | |
| 515 | export TARGET_BUILD_VARIANT= |
| 516 | while [ -z "$TARGET_BUILD_VARIANT" ] |
| 517 | do |
| 518 | echo -n "Which would you like? [$default_value] " |
| 519 | if [ -z "$1" ] ; then |
| 520 | read ANSWER |
| 521 | else |
| 522 | echo $1 |
| 523 | ANSWER=$1 |
| 524 | fi |
| 525 | |
| 526 | if [ -z "$ANSWER" ] ; then |
| 527 | export TARGET_BUILD_VARIANT=$default_value |
| 528 | elif (echo -n $ANSWER | grep -q -e "^[0-9][0-9]*$") ; then |
| 529 | if [ "$ANSWER" -le "${#VARIANT_CHOICES[@]}" ] ; then |
Guillaume Chelfi | ce000fd | 2019-10-03 12:02:46 +0200 | [diff] [blame] | 530 | export TARGET_BUILD_VARIANT=${VARIANT_CHOICES[@]:$(($ANSWER-1)):1} |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 531 | fi |
| 532 | else |
| 533 | if check_variant $ANSWER |
| 534 | then |
| 535 | export TARGET_BUILD_VARIANT=$ANSWER |
| 536 | else |
| 537 | echo "** Not a valid variant: $ANSWER" |
| 538 | fi |
| 539 | fi |
| 540 | if [ -n "$1" ] ; then |
| 541 | break |
| 542 | fi |
| 543 | done |
| 544 | } |
| 545 | |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 546 | function choosecombo() |
| 547 | { |
Jeff Brown | e33ba4c | 2011-07-11 22:11:46 -0700 | [diff] [blame] | 548 | choosetype $1 |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 549 | |
| 550 | echo |
| 551 | echo |
Jeff Brown | e33ba4c | 2011-07-11 22:11:46 -0700 | [diff] [blame] | 552 | chooseproduct $2 |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 553 | |
| 554 | echo |
| 555 | echo |
Jeff Brown | e33ba4c | 2011-07-11 22:11:46 -0700 | [diff] [blame] | 556 | choosevariant $3 |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 557 | |
| 558 | echo |
Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 559 | build_build_var_cache |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 560 | set_stuff_for_environment |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 561 | printconfig |
Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 562 | destroy_build_var_cache |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 563 | } |
| 564 | |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 565 | function add_lunch_combo() |
| 566 | { |
Dan Willemsen | 5436c7e | 2019-02-11 21:31:47 -0800 | [diff] [blame] | 567 | if [ -n "$ZSH_VERSION" ]; then |
| 568 | echo -n "${funcfiletrace[1]}: " |
| 569 | else |
| 570 | echo -n "${BASH_SOURCE[1]}:${BASH_LINENO[0]}: " |
| 571 | fi |
| 572 | echo "add_lunch_combo is obsolete. Use COMMON_LUNCH_CHOICES in your AndroidProducts.mk instead." |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 573 | } |
| 574 | |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 575 | function print_lunch_menu() |
| 576 | { |
| 577 | local uname=$(uname) |
Colin Cross | cb8337d | 2019-09-23 12:52:32 -0700 | [diff] [blame] | 578 | local choices=$(TARGET_BUILD_APPS= get_build_var COMMON_LUNCH_CHOICES) |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 579 | echo |
| 580 | echo "You're building on" $uname |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 581 | echo |
| 582 | echo "Lunch menu... pick a combo:" |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 583 | |
| 584 | local i=1 |
| 585 | local choice |
Dan Willemsen | 91763e9 | 2019-10-03 15:13:12 -0700 | [diff] [blame] | 586 | for choice in $(echo $choices) |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 587 | do |
| 588 | echo " $i. $choice" |
| 589 | i=$(($i+1)) |
| 590 | done |
| 591 | |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 592 | echo |
| 593 | } |
| 594 | |
| 595 | function lunch() |
| 596 | { |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 597 | local answer |
| 598 | |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 599 | if [ "$1" ] ; then |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 600 | answer=$1 |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 601 | else |
| 602 | print_lunch_menu |
Jean-Baptiste Queru | 324c123 | 2013-03-22 15:53:54 -0700 | [diff] [blame] | 603 | echo -n "Which would you like? [aosp_arm-eng] " |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 604 | read answer |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 605 | fi |
| 606 | |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 607 | local selection= |
| 608 | |
| 609 | if [ -z "$answer" ] |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 610 | then |
Jean-Baptiste Queru | 324c123 | 2013-03-22 15:53:54 -0700 | [diff] [blame] | 611 | selection=aosp_arm-eng |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 612 | elif (echo -n $answer | grep -q -e "^[0-9][0-9]*$") |
| 613 | then |
Dan Willemsen | 5436c7e | 2019-02-11 21:31:47 -0800 | [diff] [blame] | 614 | local choices=($(TARGET_BUILD_APPS= get_build_var COMMON_LUNCH_CHOICES)) |
Dan Willemsen | af2e1f8 | 2018-04-04 15:41:41 -0700 | [diff] [blame] | 615 | if [ $answer -le ${#choices[@]} ] |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 616 | then |
Jim Tang | 0e3397b | 2018-10-03 18:25:50 +0800 | [diff] [blame] | 617 | # array in zsh starts from 1 instead of 0. |
| 618 | if [ -n "$ZSH_VERSION" ] |
| 619 | then |
| 620 | selection=${choices[$(($answer))]} |
| 621 | else |
| 622 | selection=${choices[$(($answer-1))]} |
| 623 | fi |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 624 | fi |
Colin Cross | 8873713 | 2017-03-21 17:41:03 -0700 | [diff] [blame] | 625 | else |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 626 | selection=$answer |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 627 | fi |
| 628 | |
Joe Onorato | da12daf | 2010-06-09 18:18:31 -0700 | [diff] [blame] | 629 | export TARGET_BUILD_APPS= |
| 630 | |
Colin Cross | 8873713 | 2017-03-21 17:41:03 -0700 | [diff] [blame] | 631 | local product variant_and_version variant version |
| 632 | |
| 633 | product=${selection%%-*} # Trim everything after first dash |
| 634 | variant_and_version=${selection#*-} # Trim everything up to first dash |
| 635 | if [ "$variant_and_version" != "$selection" ]; then |
| 636 | variant=${variant_and_version%%-*} |
| 637 | if [ "$variant" != "$variant_and_version" ]; then |
| 638 | version=${variant_and_version#*-} |
| 639 | fi |
Jeff Brown | e33ba4c | 2011-07-11 22:11:46 -0700 | [diff] [blame] | 640 | fi |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 641 | |
Colin Cross | 8873713 | 2017-03-21 17:41:03 -0700 | [diff] [blame] | 642 | if [ -z "$product" ] |
Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 643 | then |
| 644 | echo |
Colin Cross | 8873713 | 2017-03-21 17:41:03 -0700 | [diff] [blame] | 645 | echo "Invalid lunch combo: $selection" |
Jeff Brown | e33ba4c | 2011-07-11 22:11:46 -0700 | [diff] [blame] | 646 | return 1 |
| 647 | fi |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 648 | |
Colin Cross | 8873713 | 2017-03-21 17:41:03 -0700 | [diff] [blame] | 649 | TARGET_PRODUCT=$product \ |
| 650 | TARGET_BUILD_VARIANT=$variant \ |
| 651 | TARGET_PLATFORM_VERSION=$version \ |
| 652 | build_build_var_cache |
| 653 | if [ $? -ne 0 ] |
| 654 | then |
| 655 | return 1 |
| 656 | fi |
| 657 | |
| 658 | export TARGET_PRODUCT=$(get_build_var TARGET_PRODUCT) |
| 659 | export TARGET_BUILD_VARIANT=$(get_build_var TARGET_BUILD_VARIANT) |
Colin Cross | b105e36 | 2017-05-01 14:21:28 -0700 | [diff] [blame] | 660 | if [ -n "$version" ]; then |
| 661 | export TARGET_PLATFORM_VERSION=$(get_build_var TARGET_PLATFORM_VERSION) |
| 662 | else |
| 663 | unset TARGET_PLATFORM_VERSION |
| 664 | fi |
Jeff Brown | e33ba4c | 2011-07-11 22:11:46 -0700 | [diff] [blame] | 665 | export TARGET_BUILD_TYPE=release |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 666 | |
| 667 | echo |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 668 | |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 669 | set_stuff_for_environment |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 670 | printconfig |
Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 671 | destroy_build_var_cache |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 672 | } |
| 673 | |
Dan Willemsen | af2e1f8 | 2018-04-04 15:41:41 -0700 | [diff] [blame] | 674 | unset COMMON_LUNCH_CHOICES_CACHE |
Jeff Davidson | 513d7a4 | 2010-08-02 10:00:44 -0700 | [diff] [blame] | 675 | # Tab completion for lunch. |
| 676 | function _lunch() |
| 677 | { |
| 678 | local cur prev opts |
| 679 | COMPREPLY=() |
| 680 | cur="${COMP_WORDS[COMP_CWORD]}" |
| 681 | prev="${COMP_WORDS[COMP_CWORD-1]}" |
| 682 | |
Dan Willemsen | af2e1f8 | 2018-04-04 15:41:41 -0700 | [diff] [blame] | 683 | if [ -z "$COMMON_LUNCH_CHOICES_CACHE" ]; then |
Dan Willemsen | 5436c7e | 2019-02-11 21:31:47 -0800 | [diff] [blame] | 684 | COMMON_LUNCH_CHOICES_CACHE=$(TARGET_BUILD_APPS= get_build_var COMMON_LUNCH_CHOICES) |
Dan Willemsen | af2e1f8 | 2018-04-04 15:41:41 -0700 | [diff] [blame] | 685 | fi |
| 686 | |
| 687 | COMPREPLY=( $(compgen -W "${COMMON_LUNCH_CHOICES_CACHE}" -- ${cur}) ) |
Jeff Davidson | 513d7a4 | 2010-08-02 10:00:44 -0700 | [diff] [blame] | 688 | return 0 |
| 689 | } |
Jeff Davidson | 513d7a4 | 2010-08-02 10:00:44 -0700 | [diff] [blame] | 690 | |
Joe Onorato | da12daf | 2010-06-09 18:18:31 -0700 | [diff] [blame] | 691 | # Configures the build to build unbundled apps. |
Doug Zongker | 0d8179e | 2014-04-16 11:34:34 -0700 | [diff] [blame] | 692 | # Run tapas with one or more app names (from LOCAL_PACKAGE_NAME) |
Joe Onorato | da12daf | 2010-06-09 18:18:31 -0700 | [diff] [blame] | 693 | function tapas() |
| 694 | { |
Jeff Gaston | 9fb05d8 | 2017-08-21 18:27:00 -0700 | [diff] [blame] | 695 | local showHelp="$(echo $* | xargs -n 1 echo | \grep -E '^(help)$' | xargs)" |
Dan Willemsen | dd3a273 | 2018-01-08 15:26:16 -0800 | [diff] [blame] | 696 | local arch="$(echo $* | xargs -n 1 echo | \grep -E '^(arm|x86|mips|arm64|x86_64|mips64)$' | xargs)" |
Doug Zongker | 0d8179e | 2014-04-16 11:34:34 -0700 | [diff] [blame] | 697 | local variant="$(echo $* | xargs -n 1 echo | \grep -E '^(user|userdebug|eng)$' | xargs)" |
Jeff Hamilton | 5069bd6 | 2014-09-04 21:28:00 -0700 | [diff] [blame] | 698 | local density="$(echo $* | xargs -n 1 echo | \grep -E '^(ldpi|mdpi|tvdpi|hdpi|xhdpi|xxhdpi|xxxhdpi|alldpi)$' | xargs)" |
Dan Willemsen | dd3a273 | 2018-01-08 15:26:16 -0800 | [diff] [blame] | 699 | local apps="$(echo $* | xargs -n 1 echo | \grep -E -v '^(user|userdebug|eng|arm|x86|mips|arm64|x86_64|mips64|ldpi|mdpi|tvdpi|hdpi|xhdpi|xxhdpi|xxxhdpi|alldpi)$' | xargs)" |
Joe Onorato | da12daf | 2010-06-09 18:18:31 -0700 | [diff] [blame] | 700 | |
Jeff Gaston | 9fb05d8 | 2017-08-21 18:27:00 -0700 | [diff] [blame] | 701 | if [ "$showHelp" != "" ]; then |
| 702 | $(gettop)/build/make/tapasHelp.sh |
| 703 | return |
| 704 | fi |
| 705 | |
Ying Wang | 67f0292 | 2012-08-22 10:25:20 -0700 | [diff] [blame] | 706 | if [ $(echo $arch | wc -w) -gt 1 ]; then |
| 707 | echo "tapas: Error: Multiple build archs supplied: $arch" |
| 708 | return |
| 709 | fi |
Joe Onorato | da12daf | 2010-06-09 18:18:31 -0700 | [diff] [blame] | 710 | if [ $(echo $variant | wc -w) -gt 1 ]; then |
| 711 | echo "tapas: Error: Multiple build variants supplied: $variant" |
| 712 | return |
| 713 | fi |
Jeff Hamilton | 5069bd6 | 2014-09-04 21:28:00 -0700 | [diff] [blame] | 714 | if [ $(echo $density | wc -w) -gt 1 ]; then |
| 715 | echo "tapas: Error: Multiple densities supplied: $density" |
| 716 | return |
| 717 | fi |
Ying Wang | 67f0292 | 2012-08-22 10:25:20 -0700 | [diff] [blame] | 718 | |
Ying Wang | 0a76df5 | 2015-06-08 11:57:26 -0700 | [diff] [blame] | 719 | local product=aosp_arm |
Ying Wang | 67f0292 | 2012-08-22 10:25:20 -0700 | [diff] [blame] | 720 | case $arch in |
Ying Wang | 0a76df5 | 2015-06-08 11:57:26 -0700 | [diff] [blame] | 721 | x86) product=aosp_x86;; |
| 722 | mips) product=aosp_mips;; |
Ying Wang | b541ab6 | 2014-05-29 17:57:40 -0700 | [diff] [blame] | 723 | arm64) product=aosp_arm64;; |
| 724 | x86_64) product=aosp_x86_64;; |
| 725 | mips64) product=aosp_mips64;; |
Ying Wang | 67f0292 | 2012-08-22 10:25:20 -0700 | [diff] [blame] | 726 | esac |
Joe Onorato | da12daf | 2010-06-09 18:18:31 -0700 | [diff] [blame] | 727 | if [ -z "$variant" ]; then |
| 728 | variant=eng |
| 729 | fi |
Ying Wang | c048c9b | 2010-06-24 15:08:33 -0700 | [diff] [blame] | 730 | if [ -z "$apps" ]; then |
| 731 | apps=all |
| 732 | fi |
Justin Morey | 29d225c | 2014-11-04 13:35:51 -0600 | [diff] [blame] | 733 | if [ -z "$density" ]; then |
| 734 | density=alldpi |
| 735 | fi |
Joe Onorato | da12daf | 2010-06-09 18:18:31 -0700 | [diff] [blame] | 736 | |
Ying Wang | 67f0292 | 2012-08-22 10:25:20 -0700 | [diff] [blame] | 737 | export TARGET_PRODUCT=$product |
Joe Onorato | da12daf | 2010-06-09 18:18:31 -0700 | [diff] [blame] | 738 | export TARGET_BUILD_VARIANT=$variant |
Jeff Hamilton | 5069bd6 | 2014-09-04 21:28:00 -0700 | [diff] [blame] | 739 | export TARGET_BUILD_DENSITY=$density |
Joe Onorato | da12daf | 2010-06-09 18:18:31 -0700 | [diff] [blame] | 740 | export TARGET_BUILD_TYPE=release |
| 741 | export TARGET_BUILD_APPS=$apps |
| 742 | |
Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 743 | build_build_var_cache |
Joe Onorato | da12daf | 2010-06-09 18:18:31 -0700 | [diff] [blame] | 744 | set_stuff_for_environment |
| 745 | printconfig |
Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 746 | destroy_build_var_cache |
Joe Onorato | da12daf | 2010-06-09 18:18:31 -0700 | [diff] [blame] | 747 | } |
| 748 | |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 749 | function gettop |
| 750 | { |
Colin Cross | 6cdc5d2 | 2017-10-20 11:37:33 -0700 | [diff] [blame] | 751 | local TOPFILE=build/make/core/envsetup.mk |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 752 | if [ -n "$TOP" -a -f "$TOP/$TOPFILE" ] ; then |
Brian Carlstrom | a5c4f17 | 2014-09-12 00:33:25 -0700 | [diff] [blame] | 753 | # The following circumlocution ensures we remove symlinks from TOP. |
| 754 | (cd $TOP; PWD= /bin/pwd) |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 755 | else |
| 756 | if [ -f $TOPFILE ] ; then |
Dan Bornstein | d0b274d | 2009-11-24 15:48:50 -0800 | [diff] [blame] | 757 | # The following circumlocution (repeated below as well) ensures |
| 758 | # that we record the true directory name and not one that is |
| 759 | # faked up with symlink names. |
| 760 | PWD= /bin/pwd |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 761 | else |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 762 | local HERE=$PWD |
Christopher Ferris | 55257d2 | 2017-03-23 11:08:58 -0700 | [diff] [blame] | 763 | local T= |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 764 | while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do |
Ying Wang | 9cd1764 | 2012-12-13 10:52:07 -0800 | [diff] [blame] | 765 | \cd .. |
synergy | b112a40 | 2013-07-05 19:47:47 -0700 | [diff] [blame] | 766 | T=`PWD= /bin/pwd -P` |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 767 | done |
Ying Wang | 9cd1764 | 2012-12-13 10:52:07 -0800 | [diff] [blame] | 768 | \cd $HERE |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 769 | if [ -f "$T/$TOPFILE" ]; then |
| 770 | echo $T |
| 771 | fi |
| 772 | fi |
| 773 | fi |
| 774 | } |
| 775 | |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 776 | function croot() |
| 777 | { |
Christopher Ferris | 55257d2 | 2017-03-23 11:08:58 -0700 | [diff] [blame] | 778 | local T=$(gettop) |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 779 | if [ "$T" ]; then |
Marie Janssen | 32ec50a | 2016-04-21 16:53:39 -0700 | [diff] [blame] | 780 | if [ "$1" ]; then |
| 781 | \cd $(gettop)/$1 |
| 782 | else |
| 783 | \cd $(gettop) |
| 784 | fi |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 785 | else |
| 786 | echo "Couldn't locate the top of the tree. Try setting TOP." |
| 787 | fi |
| 788 | } |
| 789 | |
Anton Hansson | ece9c48 | 2019-02-04 18:15:39 +0000 | [diff] [blame] | 790 | function _croot() |
| 791 | { |
| 792 | local T=$(gettop) |
| 793 | if [ "$T" ]; then |
| 794 | local cur="${COMP_WORDS[COMP_CWORD]}" |
| 795 | k=0 |
| 796 | for c in $(compgen -d ${T}/${cur}); do |
| 797 | COMPREPLY[k++]=${c#${T}/}/ |
| 798 | done |
| 799 | fi |
| 800 | } |
| 801 | |
Joe Onorato | 2a5d4d8 | 2009-07-30 10:23:21 -0700 | [diff] [blame] | 802 | function cproj() |
| 803 | { |
Colin Cross | 6cdc5d2 | 2017-10-20 11:37:33 -0700 | [diff] [blame] | 804 | local TOPFILE=build/make/core/envsetup.mk |
Joe Onorato | 2a5d4d8 | 2009-07-30 10:23:21 -0700 | [diff] [blame] | 805 | local HERE=$PWD |
Christopher Ferris | 55257d2 | 2017-03-23 11:08:58 -0700 | [diff] [blame] | 806 | local T= |
Joe Onorato | 2a5d4d8 | 2009-07-30 10:23:21 -0700 | [diff] [blame] | 807 | while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do |
| 808 | T=$PWD |
| 809 | if [ -f "$T/Android.mk" ]; then |
Ying Wang | 9cd1764 | 2012-12-13 10:52:07 -0800 | [diff] [blame] | 810 | \cd $T |
Joe Onorato | 2a5d4d8 | 2009-07-30 10:23:21 -0700 | [diff] [blame] | 811 | return |
| 812 | fi |
Ying Wang | 9cd1764 | 2012-12-13 10:52:07 -0800 | [diff] [blame] | 813 | \cd .. |
Joe Onorato | 2a5d4d8 | 2009-07-30 10:23:21 -0700 | [diff] [blame] | 814 | done |
Ying Wang | 9cd1764 | 2012-12-13 10:52:07 -0800 | [diff] [blame] | 815 | \cd $HERE |
Joe Onorato | 2a5d4d8 | 2009-07-30 10:23:21 -0700 | [diff] [blame] | 816 | echo "can't find Android.mk" |
| 817 | } |
| 818 | |
Daniel Sandler | 47e0a88 | 2013-07-30 13:23:52 -0400 | [diff] [blame] | 819 | # simplified version of ps; output in the form |
| 820 | # <pid> <procname> |
| 821 | function qpid() { |
| 822 | local prepend='' |
| 823 | local append='' |
| 824 | if [ "$1" = "--exact" ]; then |
| 825 | prepend=' ' |
| 826 | append='$' |
| 827 | shift |
| 828 | elif [ "$1" = "--help" -o "$1" = "-h" ]; then |
Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 829 | echo "usage: qpid [[--exact] <process name|pid>" |
| 830 | return 255 |
| 831 | fi |
Daniel Sandler | 47e0a88 | 2013-07-30 13:23:52 -0400 | [diff] [blame] | 832 | |
| 833 | local EXE="$1" |
| 834 | if [ "$EXE" ] ; then |
Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 835 | qpid | \grep "$prepend$EXE$append" |
| 836 | else |
| 837 | adb shell ps \ |
| 838 | | tr -d '\r' \ |
| 839 | | sed -e 1d -e 's/^[^ ]* *\([0-9]*\).* \([^ ]*\)$/\1 \2/' |
| 840 | fi |
Daniel Sandler | 47e0a88 | 2013-07-30 13:23:52 -0400 | [diff] [blame] | 841 | } |
| 842 | |
Iliyan Malchev | e675cfb | 2014-11-03 17:04:47 -0800 | [diff] [blame] | 843 | # coredump_setup - enable core dumps globally for any process |
Iliyan Malchev | 248f4d5 | 2014-10-28 18:00:42 -0700 | [diff] [blame] | 844 | # that has the core-file-size limit set correctly |
| 845 | # |
Iliyan Malchev | af5de97 | 2014-11-04 20:57:37 -0800 | [diff] [blame] | 846 | # NOTE: You must call also coredump_enable for a specific process |
Iliyan Malchev | 248f4d5 | 2014-10-28 18:00:42 -0700 | [diff] [blame] | 847 | # if its core-file-size limit is not set already. |
| 848 | # NOTE: Core dumps are written to ramdisk; they will not survive a reboot! |
| 849 | |
Iliyan Malchev | e675cfb | 2014-11-03 17:04:47 -0800 | [diff] [blame] | 850 | function coredump_setup() |
Iliyan Malchev | 248f4d5 | 2014-10-28 18:00:42 -0700 | [diff] [blame] | 851 | { |
Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 852 | echo "Getting root..."; |
| 853 | adb root; |
| 854 | adb wait-for-device; |
Iliyan Malchev | 248f4d5 | 2014-10-28 18:00:42 -0700 | [diff] [blame] | 855 | |
Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 856 | echo "Remounting root partition read-write..."; |
| 857 | adb shell mount -w -o remount -t rootfs rootfs; |
| 858 | sleep 1; |
| 859 | adb wait-for-device; |
| 860 | adb shell mkdir -p /cores; |
| 861 | adb shell mount -t tmpfs tmpfs /cores; |
| 862 | adb shell chmod 0777 /cores; |
Iliyan Malchev | 248f4d5 | 2014-10-28 18:00:42 -0700 | [diff] [blame] | 863 | |
Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 864 | echo "Granting SELinux permission to dump in /cores..."; |
| 865 | adb shell restorecon -R /cores; |
Iliyan Malchev | 248f4d5 | 2014-10-28 18:00:42 -0700 | [diff] [blame] | 866 | |
Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 867 | echo "Set core pattern."; |
| 868 | adb shell 'echo /cores/core.%p > /proc/sys/kernel/core_pattern'; |
Iliyan Malchev | 248f4d5 | 2014-10-28 18:00:42 -0700 | [diff] [blame] | 869 | |
Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 870 | echo "Done." |
Iliyan Malchev | 248f4d5 | 2014-10-28 18:00:42 -0700 | [diff] [blame] | 871 | } |
| 872 | |
Iliyan Malchev | af5de97 | 2014-11-04 20:57:37 -0800 | [diff] [blame] | 873 | # coredump_enable - enable core dumps for the specified process |
Iliyan Malchev | 248f4d5 | 2014-10-28 18:00:42 -0700 | [diff] [blame] | 874 | # $1 = PID of process (e.g., $(pid mediaserver)) |
| 875 | # |
Iliyan Malchev | af5de97 | 2014-11-04 20:57:37 -0800 | [diff] [blame] | 876 | # NOTE: coredump_setup must have been called as well for a core |
Iliyan Malchev | 248f4d5 | 2014-10-28 18:00:42 -0700 | [diff] [blame] | 877 | # dump to actually be generated. |
| 878 | |
Iliyan Malchev | af5de97 | 2014-11-04 20:57:37 -0800 | [diff] [blame] | 879 | function coredump_enable() |
Iliyan Malchev | 248f4d5 | 2014-10-28 18:00:42 -0700 | [diff] [blame] | 880 | { |
Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 881 | local PID=$1; |
| 882 | if [ -z "$PID" ]; then |
| 883 | printf "Expecting a PID!\n"; |
| 884 | return; |
| 885 | fi; |
| 886 | echo "Setting core limit for $PID to infinite..."; |
Elliott Hughes | 910a355 | 2016-03-07 13:53:53 -0800 | [diff] [blame] | 887 | adb shell /system/bin/ulimit -p $PID -c unlimited |
Iliyan Malchev | 248f4d5 | 2014-10-28 18:00:42 -0700 | [diff] [blame] | 888 | } |
| 889 | |
| 890 | # core - send SIGV and pull the core for process |
| 891 | # $1 = PID of process (e.g., $(pid mediaserver)) |
| 892 | # |
Iliyan Malchev | af5de97 | 2014-11-04 20:57:37 -0800 | [diff] [blame] | 893 | # NOTE: coredump_setup must be called once per boot for core dumps to be |
Iliyan Malchev | 248f4d5 | 2014-10-28 18:00:42 -0700 | [diff] [blame] | 894 | # enabled globally. |
| 895 | |
| 896 | function core() |
| 897 | { |
Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 898 | local PID=$1; |
Iliyan Malchev | 248f4d5 | 2014-10-28 18:00:42 -0700 | [diff] [blame] | 899 | |
Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 900 | if [ -z "$PID" ]; then |
| 901 | printf "Expecting a PID!\n"; |
| 902 | return; |
| 903 | fi; |
Iliyan Malchev | 248f4d5 | 2014-10-28 18:00:42 -0700 | [diff] [blame] | 904 | |
Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 905 | local CORENAME=core.$PID; |
| 906 | local COREPATH=/cores/$CORENAME; |
| 907 | local SIG=SEGV; |
Iliyan Malchev | 248f4d5 | 2014-10-28 18:00:42 -0700 | [diff] [blame] | 908 | |
Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 909 | coredump_enable $1; |
Iliyan Malchev | 248f4d5 | 2014-10-28 18:00:42 -0700 | [diff] [blame] | 910 | |
Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 911 | local done=0; |
| 912 | while [ $(adb shell "[ -d /proc/$PID ] && echo -n yes") ]; do |
| 913 | printf "\tSending SIG%s to %d...\n" $SIG $PID; |
| 914 | adb shell kill -$SIG $PID; |
| 915 | sleep 1; |
| 916 | done; |
Iliyan Malchev | 248f4d5 | 2014-10-28 18:00:42 -0700 | [diff] [blame] | 917 | |
Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 918 | adb shell "while [ ! -f $COREPATH ] ; do echo waiting for $COREPATH to be generated; sleep 1; done" |
| 919 | echo "Done: core is under $COREPATH on device."; |
Iliyan Malchev | 248f4d5 | 2014-10-28 18:00:42 -0700 | [diff] [blame] | 920 | } |
| 921 | |
Christopher Tate | 744ee80 | 2009-11-12 15:33:08 -0800 | [diff] [blame] | 922 | # systemstack - dump the current stack trace of all threads in the system process |
| 923 | # to the usual ANR traces file |
| 924 | function systemstack() |
| 925 | { |
Jeff Sharkey | f582437 | 2013-02-19 17:00:46 -0800 | [diff] [blame] | 926 | stacks system_server |
| 927 | } |
| 928 | |
Michael Wright | aeed721 | 2014-06-19 19:58:12 -0700 | [diff] [blame] | 929 | # Read the ELF header from /proc/$PID/exe to determine if the process is |
| 930 | # 64-bit. |
Ben Cheng | fba67bf | 2014-02-25 10:27:07 -0800 | [diff] [blame] | 931 | function is64bit() |
| 932 | { |
| 933 | local PID="$1" |
| 934 | if [ "$PID" ] ; then |
Elliott Hughes | d3e4725 | 2018-11-15 16:32:14 -0800 | [diff] [blame] | 935 | if [[ "$(adb shell cat /proc/$PID/exe | xxd -l 1 -s 4 -p)" -eq "02" ]] ; then |
Ben Cheng | fba67bf | 2014-02-25 10:27:07 -0800 | [diff] [blame] | 936 | echo "64" |
| 937 | else |
| 938 | echo "" |
| 939 | fi |
| 940 | else |
| 941 | echo "" |
| 942 | fi |
| 943 | } |
| 944 | |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 945 | case `uname -s` in |
| 946 | Darwin) |
| 947 | function sgrep() |
| 948 | { |
Aurelio Jargas | 67edd15 | 2018-11-06 17:25:11 +0100 | [diff] [blame] | 949 | find -E . -name .repo -prune -o -name .git -prune -o -type f -iregex '.*\.(c|h|cc|cpp|hpp|S|java|xml|sh|mk|aidl|vts)' \ |
Mike Frysinger | 5e47973 | 2015-09-22 18:13:48 -0400 | [diff] [blame] | 950 | -exec grep --color -n "$@" {} + |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 951 | } |
| 952 | |
| 953 | ;; |
| 954 | *) |
| 955 | function sgrep() |
| 956 | { |
Aurelio Jargas | 67edd15 | 2018-11-06 17:25:11 +0100 | [diff] [blame] | 957 | find . -name .repo -prune -o -name .git -prune -o -type f -iregex '.*\.\(c\|h\|cc\|cpp\|hpp\|S\|java\|xml\|sh\|mk\|aidl\|vts\)' \ |
Mike Frysinger | 5e47973 | 2015-09-22 18:13:48 -0400 | [diff] [blame] | 958 | -exec grep --color -n "$@" {} + |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 959 | } |
| 960 | ;; |
| 961 | esac |
| 962 | |
Raghu Gandham | 8da4310 | 2012-07-25 19:57:22 -0700 | [diff] [blame] | 963 | function gettargetarch |
| 964 | { |
| 965 | get_build_var TARGET_ARCH |
| 966 | } |
| 967 | |
Jon Boekenoogen | cbca56f | 2014-04-07 10:57:38 -0700 | [diff] [blame] | 968 | function ggrep() |
| 969 | { |
Mike Frysinger | 5e47973 | 2015-09-22 18:13:48 -0400 | [diff] [blame] | 970 | find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -type f -name "*\.gradle" \ |
| 971 | -exec grep --color -n "$@" {} + |
Jon Boekenoogen | cbca56f | 2014-04-07 10:57:38 -0700 | [diff] [blame] | 972 | } |
| 973 | |
Orion Hodson | 831472d | 2019-10-25 11:35:15 +0100 | [diff] [blame] | 974 | function gogrep() |
| 975 | { |
| 976 | find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -type f -name "*\.go" \ |
| 977 | -exec grep --color -n "$@" {} + |
| 978 | } |
| 979 | |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 980 | function jgrep() |
| 981 | { |
Mike Frysinger | 5e47973 | 2015-09-22 18:13:48 -0400 | [diff] [blame] | 982 | find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -type f -name "*\.java" \ |
| 983 | -exec grep --color -n "$@" {} + |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 984 | } |
| 985 | |
| 986 | function cgrep() |
| 987 | { |
Mike Frysinger | 5e47973 | 2015-09-22 18:13:48 -0400 | [diff] [blame] | 988 | find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -type f \( -name '*.c' -o -name '*.cc' -o -name '*.cpp' -o -name '*.h' -o -name '*.hpp' \) \ |
| 989 | -exec grep --color -n "$@" {} + |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 990 | } |
| 991 | |
| 992 | function resgrep() |
| 993 | { |
Christopher Ferris | 55257d2 | 2017-03-23 11:08:58 -0700 | [diff] [blame] | 994 | local dir |
Mike Frysinger | 5e47973 | 2015-09-22 18:13:48 -0400 | [diff] [blame] | 995 | for dir in `find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -name res -type d`; do |
| 996 | find $dir -type f -name '*\.xml' -exec grep --color -n "$@" {} + |
| 997 | done |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 998 | } |
| 999 | |
Jeff Sharkey | 50b61e9 | 2013-03-08 10:20:47 -0800 | [diff] [blame] | 1000 | function mangrep() |
| 1001 | { |
Mike Frysinger | 5e47973 | 2015-09-22 18:13:48 -0400 | [diff] [blame] | 1002 | find . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o -type f -name 'AndroidManifest.xml' \ |
| 1003 | -exec grep --color -n "$@" {} + |
Jeff Sharkey | 50b61e9 | 2013-03-08 10:20:47 -0800 | [diff] [blame] | 1004 | } |
| 1005 | |
Jeff Sharkey | f17cddf | 2019-08-21 12:51:26 -0600 | [diff] [blame] | 1006 | function owngrep() |
| 1007 | { |
| 1008 | find . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o -type f -name 'OWNERS' \ |
| 1009 | -exec grep --color -n "$@" {} + |
| 1010 | } |
| 1011 | |
Alex Klyubin | ba5fc8e | 2013-05-06 14:11:48 -0700 | [diff] [blame] | 1012 | function sepgrep() |
| 1013 | { |
Mike Frysinger | 5e47973 | 2015-09-22 18:13:48 -0400 | [diff] [blame] | 1014 | find . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o -name sepolicy -type d \ |
| 1015 | -exec grep --color -n -r --exclude-dir=\.git "$@" {} + |
Alex Klyubin | ba5fc8e | 2013-05-06 14:11:48 -0700 | [diff] [blame] | 1016 | } |
| 1017 | |
Jeff Sharkey | ea0068a | 2015-02-26 14:13:46 -0800 | [diff] [blame] | 1018 | function rcgrep() |
| 1019 | { |
Mike Frysinger | 5e47973 | 2015-09-22 18:13:48 -0400 | [diff] [blame] | 1020 | find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -type f -name "*\.rc*" \ |
| 1021 | -exec grep --color -n "$@" {} + |
Jeff Sharkey | ea0068a | 2015-02-26 14:13:46 -0800 | [diff] [blame] | 1022 | } |
| 1023 | |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1024 | case `uname -s` in |
| 1025 | Darwin) |
| 1026 | function mgrep() |
| 1027 | { |
Orion Hodson | 831472d | 2019-10-25 11:35:15 +0100 | [diff] [blame] | 1028 | find -E . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o \( -iregex '.*/(Makefile|Makefile\..*|.*\.make|.*\.mak|.*\.mk|.*\.bp)' -o -regex '(.*/)?(build|soong)/.*[^/]*\.go' \) -type f \ |
Mike Frysinger | 5e47973 | 2015-09-22 18:13:48 -0400 | [diff] [blame] | 1029 | -exec grep --color -n "$@" {} + |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1030 | } |
| 1031 | |
| 1032 | function treegrep() |
| 1033 | { |
Aurelio Jargas | 67edd15 | 2018-11-06 17:25:11 +0100 | [diff] [blame] | 1034 | find -E . -name .repo -prune -o -name .git -prune -o -type f -iregex '.*\.(c|h|cpp|hpp|S|java|xml)' \ |
Mike Frysinger | 5e47973 | 2015-09-22 18:13:48 -0400 | [diff] [blame] | 1035 | -exec grep --color -n -i "$@" {} + |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1036 | } |
| 1037 | |
| 1038 | ;; |
| 1039 | *) |
| 1040 | function mgrep() |
| 1041 | { |
Orion Hodson | 831472d | 2019-10-25 11:35:15 +0100 | [diff] [blame] | 1042 | find . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o \( -regextype posix-egrep -iregex '(.*\/Makefile|.*\/Makefile\..*|.*\.make|.*\.mak|.*\.mk|.*\.bp)' -o -regextype posix-extended -regex '(.*/)?(build|soong)/.*[^/]*\.go' \) -type f \ |
Mike Frysinger | 5e47973 | 2015-09-22 18:13:48 -0400 | [diff] [blame] | 1043 | -exec grep --color -n "$@" {} + |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1044 | } |
| 1045 | |
| 1046 | function treegrep() |
| 1047 | { |
Aurelio Jargas | 67edd15 | 2018-11-06 17:25:11 +0100 | [diff] [blame] | 1048 | find . -name .repo -prune -o -name .git -prune -o -regextype posix-egrep -iregex '.*\.(c|h|cpp|hpp|S|java|xml)' -type f \ |
Mike Frysinger | 5e47973 | 2015-09-22 18:13:48 -0400 | [diff] [blame] | 1049 | -exec grep --color -n -i "$@" {} + |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1050 | } |
| 1051 | |
| 1052 | ;; |
| 1053 | esac |
| 1054 | |
| 1055 | function getprebuilt |
| 1056 | { |
| 1057 | get_abs_build_var ANDROID_PREBUILTS |
| 1058 | } |
| 1059 | |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1060 | function tracedmdump() |
| 1061 | { |
Christopher Ferris | 55257d2 | 2017-03-23 11:08:58 -0700 | [diff] [blame] | 1062 | local T=$(gettop) |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1063 | if [ ! "$T" ]; then |
| 1064 | echo "Couldn't locate the top of the tree. Try setting TOP." |
| 1065 | return |
| 1066 | fi |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 1067 | local prebuiltdir=$(getprebuilt) |
Raghu Gandham | 8da4310 | 2012-07-25 19:57:22 -0700 | [diff] [blame] | 1068 | local arch=$(gettargetarch) |
| 1069 | local KERNEL=$T/prebuilts/qemu-kernel/$arch/vmlinux-qemu |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1070 | |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 1071 | local TRACE=$1 |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1072 | if [ ! "$TRACE" ] ; then |
| 1073 | echo "usage: tracedmdump tracename" |
| 1074 | return |
| 1075 | fi |
| 1076 | |
Jack Veenstra | 60116fc | 2009-04-09 18:12:34 -0700 | [diff] [blame] | 1077 | if [ ! -r "$KERNEL" ] ; then |
| 1078 | echo "Error: cannot find kernel: '$KERNEL'" |
| 1079 | return |
| 1080 | fi |
| 1081 | |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 1082 | local BASETRACE=$(basename $TRACE) |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1083 | if [ "$BASETRACE" = "$TRACE" ] ; then |
| 1084 | TRACE=$ANDROID_PRODUCT_OUT/traces/$TRACE |
| 1085 | fi |
| 1086 | |
| 1087 | echo "post-processing traces..." |
| 1088 | rm -f $TRACE/qtrace.dexlist |
| 1089 | post_trace $TRACE |
| 1090 | if [ $? -ne 0 ]; then |
| 1091 | echo "***" |
| 1092 | echo "*** Error: malformed trace. Did you remember to exit the emulator?" |
| 1093 | echo "***" |
| 1094 | return |
| 1095 | fi |
| 1096 | echo "generating dexlist output..." |
| 1097 | /bin/ls $ANDROID_PRODUCT_OUT/system/framework/*.jar $ANDROID_PRODUCT_OUT/system/app/*.apk $ANDROID_PRODUCT_OUT/data/app/*.apk 2>/dev/null | xargs dexlist > $TRACE/qtrace.dexlist |
| 1098 | echo "generating dmtrace data..." |
| 1099 | q2dm -r $ANDROID_PRODUCT_OUT/symbols $TRACE $KERNEL $TRACE/dmtrace || return |
| 1100 | echo "generating html file..." |
| 1101 | dmtracedump -h $TRACE/dmtrace >| $TRACE/dmtrace.html || return |
| 1102 | echo "done, see $TRACE/dmtrace.html for details" |
| 1103 | echo "or run:" |
| 1104 | echo " traceview $TRACE/dmtrace" |
| 1105 | } |
| 1106 | |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 1107 | # communicate with a running device or emulator, set up necessary state, |
| 1108 | # and run the hat command. |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1109 | function runhat() |
| 1110 | { |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 1111 | # process standard adb options |
| 1112 | local adbTarget="" |
Andy McFadden | b628985 | 2010-07-12 08:00:19 -0700 | [diff] [blame] | 1113 | if [ "$1" = "-d" -o "$1" = "-e" ]; then |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 1114 | adbTarget=$1 |
| 1115 | shift 1 |
Andy McFadden | b628985 | 2010-07-12 08:00:19 -0700 | [diff] [blame] | 1116 | elif [ "$1" = "-s" ]; then |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 1117 | adbTarget="$1 $2" |
| 1118 | shift 2 |
| 1119 | fi |
| 1120 | local adbOptions=${adbTarget} |
Dianne Hackborn | 6b9549f | 2012-09-26 15:00:59 -0700 | [diff] [blame] | 1121 | #echo adbOptions = ${adbOptions} |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 1122 | |
| 1123 | # runhat options |
| 1124 | local targetPid=$1 |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1125 | |
| 1126 | if [ "$targetPid" = "" ]; then |
Andy McFadden | b628985 | 2010-07-12 08:00:19 -0700 | [diff] [blame] | 1127 | echo "Usage: runhat [ -d | -e | -s serial ] target-pid" |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1128 | return |
| 1129 | fi |
| 1130 | |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 1131 | # confirm hat is available |
| 1132 | if [ -z $(which hat) ]; then |
| 1133 | echo "hat is not available in this configuration." |
| 1134 | return |
| 1135 | fi |
| 1136 | |
Andy McFadden | b628985 | 2010-07-12 08:00:19 -0700 | [diff] [blame] | 1137 | # issue "am" command to cause the hprof dump |
Nick Kralevich | 9948b1e | 2014-07-18 15:45:38 -0700 | [diff] [blame] | 1138 | local devFile=/data/local/tmp/hprof-$targetPid |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1139 | echo "Poking $targetPid and waiting for data..." |
Dianne Hackborn | 6b9549f | 2012-09-26 15:00:59 -0700 | [diff] [blame] | 1140 | echo "Storing data at $devFile" |
Andy McFadden | b628985 | 2010-07-12 08:00:19 -0700 | [diff] [blame] | 1141 | adb ${adbOptions} shell am dumpheap $targetPid $devFile |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1142 | echo "Press enter when logcat shows \"hprof: heap dump completed\"" |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1143 | echo -n "> " |
| 1144 | read |
| 1145 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1146 | local localFile=/tmp/$$-hprof |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1147 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1148 | echo "Retrieving file $devFile..." |
| 1149 | adb ${adbOptions} pull $devFile $localFile |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1150 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1151 | adb ${adbOptions} shell rm $devFile |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1152 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1153 | echo "Running hat on $localFile" |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1154 | echo "View the output by pointing your browser at http://localhost:7000/" |
| 1155 | echo "" |
Dianne Hackborn | 6e4e1bb | 2011-11-10 15:19:51 -0800 | [diff] [blame] | 1156 | hat -JXmx512m $localFile |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1157 | } |
| 1158 | |
| 1159 | function getbugreports() |
| 1160 | { |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 1161 | local reports=(`adb shell ls /sdcard/bugreports | tr -d '\r'`) |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1162 | |
| 1163 | if [ ! "$reports" ]; then |
| 1164 | echo "Could not locate any bugreports." |
| 1165 | return |
| 1166 | fi |
| 1167 | |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 1168 | local report |
| 1169 | for report in ${reports[@]} |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1170 | do |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 1171 | echo "/sdcard/bugreports/${report}" |
| 1172 | adb pull /sdcard/bugreports/${report} ${report} |
| 1173 | gunzip ${report} |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1174 | done |
| 1175 | } |
| 1176 | |
Victoria Lease | 1b296b4 | 2012-08-21 15:44:06 -0700 | [diff] [blame] | 1177 | function getsdcardpath() |
| 1178 | { |
| 1179 | adb ${adbOptions} shell echo -n \$\{EXTERNAL_STORAGE\} |
| 1180 | } |
| 1181 | |
| 1182 | function getscreenshotpath() |
| 1183 | { |
| 1184 | echo "$(getsdcardpath)/Pictures/Screenshots" |
| 1185 | } |
| 1186 | |
| 1187 | function getlastscreenshot() |
| 1188 | { |
| 1189 | local screenshot_path=$(getscreenshotpath) |
| 1190 | local screenshot=`adb ${adbOptions} ls ${screenshot_path} | grep Screenshot_[0-9-]*.*\.png | sort -rk 3 | cut -d " " -f 4 | head -n 1` |
| 1191 | if [ "$screenshot" = "" ]; then |
| 1192 | echo "No screenshots found." |
| 1193 | return |
| 1194 | fi |
| 1195 | echo "${screenshot}" |
| 1196 | adb ${adbOptions} pull ${screenshot_path}/${screenshot} |
| 1197 | } |
| 1198 | |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1199 | function startviewserver() |
| 1200 | { |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 1201 | local port=4939 |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1202 | if [ $# -gt 0 ]; then |
| 1203 | port=$1 |
| 1204 | fi |
| 1205 | adb shell service call window 1 i32 $port |
| 1206 | } |
| 1207 | |
| 1208 | function stopviewserver() |
| 1209 | { |
| 1210 | adb shell service call window 2 |
| 1211 | } |
| 1212 | |
| 1213 | function isviewserverstarted() |
| 1214 | { |
| 1215 | adb shell service call window 3 |
| 1216 | } |
| 1217 | |
Romain Guy | b84049a | 2010-10-04 16:56:11 -0700 | [diff] [blame] | 1218 | function key_home() |
| 1219 | { |
| 1220 | adb shell input keyevent 3 |
| 1221 | } |
| 1222 | |
| 1223 | function key_back() |
| 1224 | { |
| 1225 | adb shell input keyevent 4 |
| 1226 | } |
| 1227 | |
| 1228 | function key_menu() |
| 1229 | { |
| 1230 | adb shell input keyevent 82 |
| 1231 | } |
| 1232 | |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1233 | function smoketest() |
| 1234 | { |
| 1235 | if [ ! "$ANDROID_PRODUCT_OUT" ]; then |
| 1236 | echo "Couldn't locate output files. Try running 'lunch' first." >&2 |
| 1237 | return |
| 1238 | fi |
Christopher Ferris | 55257d2 | 2017-03-23 11:08:58 -0700 | [diff] [blame] | 1239 | local T=$(gettop) |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1240 | if [ ! "$T" ]; then |
| 1241 | echo "Couldn't locate the top of the tree. Try setting TOP." >&2 |
| 1242 | return |
| 1243 | fi |
| 1244 | |
Ying Wang | 9cd1764 | 2012-12-13 10:52:07 -0800 | [diff] [blame] | 1245 | (\cd "$T" && mmm tests/SmokeTest) && |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1246 | adb uninstall com.android.smoketest > /dev/null && |
| 1247 | adb uninstall com.android.smoketest.tests > /dev/null && |
| 1248 | adb install $ANDROID_PRODUCT_OUT/data/app/SmokeTestApp.apk && |
| 1249 | adb install $ANDROID_PRODUCT_OUT/data/app/SmokeTest.apk && |
| 1250 | adb shell am instrument -w com.android.smoketest.tests/android.test.InstrumentationTestRunner |
| 1251 | } |
| 1252 | |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 1253 | # simple shortcut to the runtest command |
| 1254 | function runtest() |
| 1255 | { |
Christopher Ferris | 55257d2 | 2017-03-23 11:08:58 -0700 | [diff] [blame] | 1256 | local T=$(gettop) |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 1257 | if [ ! "$T" ]; then |
| 1258 | echo "Couldn't locate the top of the tree. Try setting TOP." >&2 |
| 1259 | return |
| 1260 | fi |
Brett Chabot | 3fb149d | 2009-10-21 20:05:26 -0700 | [diff] [blame] | 1261 | ("$T"/development/testrunner/runtest.py $@) |
Brett Chabot | 762748c | 2009-03-27 10:25:11 -0700 | [diff] [blame] | 1262 | } |
| 1263 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1264 | function godir () { |
| 1265 | if [[ -z "$1" ]]; then |
| 1266 | echo "Usage: godir <regex>" |
| 1267 | return |
| 1268 | fi |
Christopher Ferris | 55257d2 | 2017-03-23 11:08:58 -0700 | [diff] [blame] | 1269 | local T=$(gettop) |
| 1270 | local FILELIST |
Brian Carlstrom | f225742 | 2015-09-30 20:28:54 -0700 | [diff] [blame] | 1271 | if [ ! "$OUT_DIR" = "" ]; then |
| 1272 | mkdir -p $OUT_DIR |
| 1273 | FILELIST=$OUT_DIR/filelist |
| 1274 | else |
| 1275 | FILELIST=$T/filelist |
| 1276 | fi |
| 1277 | if [[ ! -f $FILELIST ]]; then |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1278 | echo -n "Creating index..." |
Brian Carlstrom | f225742 | 2015-09-30 20:28:54 -0700 | [diff] [blame] | 1279 | (\cd $T; find . -wholename ./out -prune -o -wholename ./.repo -prune -o -type f > $FILELIST) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1280 | echo " Done" |
| 1281 | echo "" |
| 1282 | fi |
| 1283 | local lines |
Brian Carlstrom | f225742 | 2015-09-30 20:28:54 -0700 | [diff] [blame] | 1284 | lines=($(\grep "$1" $FILELIST | sed -e 's/\/[^/]*$//' | sort | uniq)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1285 | if [[ ${#lines[@]} = 0 ]]; then |
| 1286 | echo "Not found" |
| 1287 | return |
| 1288 | fi |
| 1289 | local pathname |
| 1290 | local choice |
| 1291 | if [[ ${#lines[@]} > 1 ]]; then |
| 1292 | while [[ -z "$pathname" ]]; do |
| 1293 | local index=1 |
| 1294 | local line |
| 1295 | for line in ${lines[@]}; do |
| 1296 | printf "%6s %s\n" "[$index]" $line |
Doug Zongker | 2903498 | 2011-04-22 08:16:56 -0700 | [diff] [blame] | 1297 | index=$(($index + 1)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1298 | done |
| 1299 | echo |
| 1300 | echo -n "Select one: " |
| 1301 | unset choice |
| 1302 | read choice |
| 1303 | if [[ $choice -gt ${#lines[@]} || $choice -lt 1 ]]; then |
| 1304 | echo "Invalid choice" |
| 1305 | continue |
| 1306 | fi |
Guillaume Chelfi | ce000fd | 2019-10-03 12:02:46 +0200 | [diff] [blame] | 1307 | pathname=${lines[@]:$(($choice-1)):1} |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1308 | done |
| 1309 | else |
Guillaume Chelfi | ce000fd | 2019-10-03 12:02:46 +0200 | [diff] [blame] | 1310 | pathname=${lines[@]:0:1} |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1311 | fi |
Ying Wang | 9cd1764 | 2012-12-13 10:52:07 -0800 | [diff] [blame] | 1312 | \cd $T/$pathname |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1313 | } |
| 1314 | |
Steven Moreland | 62054a4 | 2018-12-06 10:11:40 -0800 | [diff] [blame] | 1315 | # Update module-info.json in out. |
| 1316 | function refreshmod() { |
| 1317 | if [ ! "$ANDROID_PRODUCT_OUT" ]; then |
| 1318 | echo "No ANDROID_PRODUCT_OUT. Try running 'lunch' first." >&2 |
| 1319 | return 1 |
| 1320 | fi |
| 1321 | |
| 1322 | echo "Refreshing modules (building module-info.json). Log at $ANDROID_PRODUCT_OUT/module-info.json.build.log." >&2 |
| 1323 | |
| 1324 | # for the output of the next command |
| 1325 | mkdir -p $ANDROID_PRODUCT_OUT || return 1 |
| 1326 | |
| 1327 | # Note, can't use absolute path because of the way make works. |
| 1328 | m out/target/product/$(get_build_var TARGET_DEVICE)/module-info.json \ |
| 1329 | > $ANDROID_PRODUCT_OUT/module-info.json.build.log 2>&1 |
| 1330 | } |
| 1331 | |
| 1332 | # List all modules for the current device, as cached in module-info.json. If any build change is |
| 1333 | # made and it should be reflected in the output, you should run 'refreshmod' first. |
| 1334 | function allmod() { |
| 1335 | if [ ! "$ANDROID_PRODUCT_OUT" ]; then |
| 1336 | echo "No ANDROID_PRODUCT_OUT. Try running 'lunch' first." >&2 |
| 1337 | return 1 |
| 1338 | fi |
| 1339 | |
| 1340 | if [ ! -f "$ANDROID_PRODUCT_OUT/module-info.json" ]; then |
| 1341 | echo "Could not find module-info.json. It will only be built once, and it can be updated with 'refreshmod'" >&2 |
| 1342 | refreshmod || return 1 |
| 1343 | fi |
| 1344 | |
LuK1337 | b6a7819 | 2020-01-12 03:12:17 +0100 | [diff] [blame^] | 1345 | python -c "import json; print('\n'.join(sorted(json.load(open('$ANDROID_PRODUCT_OUT/module-info.json')).keys())))" |
Steven Moreland | 62054a4 | 2018-12-06 10:11:40 -0800 | [diff] [blame] | 1346 | } |
| 1347 | |
Rett Berg | 78d1c93 | 2019-01-24 14:34:23 -0800 | [diff] [blame] | 1348 | # Get the path of a specific module in the android tree, as cached in module-info.json. If any build change |
Steven Moreland | 62054a4 | 2018-12-06 10:11:40 -0800 | [diff] [blame] | 1349 | # is made, and it should be reflected in the output, you should run 'refreshmod' first. |
Rett Berg | 78d1c93 | 2019-01-24 14:34:23 -0800 | [diff] [blame] | 1350 | function pathmod() { |
Steven Moreland | 62054a4 | 2018-12-06 10:11:40 -0800 | [diff] [blame] | 1351 | if [ ! "$ANDROID_PRODUCT_OUT" ]; then |
| 1352 | echo "No ANDROID_PRODUCT_OUT. Try running 'lunch' first." >&2 |
| 1353 | return 1 |
| 1354 | fi |
| 1355 | |
| 1356 | if [[ $# -ne 1 ]]; then |
Rett Berg | 78d1c93 | 2019-01-24 14:34:23 -0800 | [diff] [blame] | 1357 | echo "usage: pathmod <module>" >&2 |
Steven Moreland | 62054a4 | 2018-12-06 10:11:40 -0800 | [diff] [blame] | 1358 | return 1 |
| 1359 | fi |
| 1360 | |
| 1361 | if [ ! -f "$ANDROID_PRODUCT_OUT/module-info.json" ]; then |
| 1362 | echo "Could not find module-info.json. It will only be built once, and it can be updated with 'refreshmod'" >&2 |
| 1363 | refreshmod || return 1 |
| 1364 | fi |
| 1365 | |
| 1366 | local relpath=$(python -c "import json, os |
| 1367 | module = '$1' |
| 1368 | module_info = json.load(open('$ANDROID_PRODUCT_OUT/module-info.json')) |
| 1369 | if module not in module_info: |
| 1370 | exit(1) |
LuK1337 | b6a7819 | 2020-01-12 03:12:17 +0100 | [diff] [blame^] | 1371 | print(module_info[module]['path'][0])" 2>/dev/null) |
Steven Moreland | 62054a4 | 2018-12-06 10:11:40 -0800 | [diff] [blame] | 1372 | |
| 1373 | if [ -z "$relpath" ]; then |
| 1374 | echo "Could not find module '$1' (try 'refreshmod' if there have been build changes?)." >&2 |
| 1375 | return 1 |
| 1376 | else |
Rett Berg | 78d1c93 | 2019-01-24 14:34:23 -0800 | [diff] [blame] | 1377 | echo "$ANDROID_BUILD_TOP/$relpath" |
Steven Moreland | 62054a4 | 2018-12-06 10:11:40 -0800 | [diff] [blame] | 1378 | fi |
| 1379 | } |
| 1380 | |
Rett Berg | 78d1c93 | 2019-01-24 14:34:23 -0800 | [diff] [blame] | 1381 | # Go to a specific module in the android tree, as cached in module-info.json. If any build change |
| 1382 | # is made, and it should be reflected in the output, you should run 'refreshmod' first. |
| 1383 | function gomod() { |
| 1384 | if [[ $# -ne 1 ]]; then |
| 1385 | echo "usage: gomod <module>" >&2 |
| 1386 | return 1 |
| 1387 | fi |
| 1388 | |
| 1389 | local path="$(pathmod $@)" |
| 1390 | if [ -z "$path" ]; then |
| 1391 | return 1 |
| 1392 | fi |
| 1393 | cd $path |
| 1394 | } |
| 1395 | |
dimitry | 73b8481 | 2018-12-11 18:06:00 +0100 | [diff] [blame] | 1396 | function _complete_android_module_names() { |
Steven Moreland | 62054a4 | 2018-12-06 10:11:40 -0800 | [diff] [blame] | 1397 | local word=${COMP_WORDS[COMP_CWORD]} |
| 1398 | COMPREPLY=( $(allmod | grep -E "^$word") ) |
| 1399 | } |
| 1400 | |
Alex Ray | f0d08eb | 2013-03-08 15:15:06 -0800 | [diff] [blame] | 1401 | # Print colored exit condition |
| 1402 | function pez { |
Michael Wright | eb73384 | 2013-03-08 17:34:02 -0800 | [diff] [blame] | 1403 | "$@" |
| 1404 | local retval=$? |
| 1405 | if [ $retval -ne 0 ] |
| 1406 | then |
Jacky Cao | 89483b8 | 2015-05-15 22:12:53 +0800 | [diff] [blame] | 1407 | echo $'\E'"[0;31mFAILURE\e[00m" |
Michael Wright | eb73384 | 2013-03-08 17:34:02 -0800 | [diff] [blame] | 1408 | else |
Jacky Cao | 89483b8 | 2015-05-15 22:12:53 +0800 | [diff] [blame] | 1409 | echo $'\E'"[0;32mSUCCESS\e[00m" |
Michael Wright | eb73384 | 2013-03-08 17:34:02 -0800 | [diff] [blame] | 1410 | fi |
| 1411 | return $retval |
Alex Ray | f0d08eb | 2013-03-08 15:15:06 -0800 | [diff] [blame] | 1412 | } |
| 1413 | |
Ying Wang | ed21d4c | 2014-08-24 22:14:19 -0700 | [diff] [blame] | 1414 | function get_make_command() |
| 1415 | { |
Dan Willemsen | d41ec5a | 2017-07-12 16:14:50 -0700 | [diff] [blame] | 1416 | # If we're in the top of an Android tree, use soong_ui.bash instead of make |
| 1417 | if [ -f build/soong/soong_ui.bash ]; then |
Dan Willemsen | e984224 | 2017-07-28 13:00:13 -0700 | [diff] [blame] | 1418 | # Always use the real make if -C is passed in |
| 1419 | for arg in "$@"; do |
| 1420 | if [[ $arg == -C* ]]; then |
| 1421 | echo command make |
| 1422 | return |
| 1423 | fi |
| 1424 | done |
Dan Willemsen | d41ec5a | 2017-07-12 16:14:50 -0700 | [diff] [blame] | 1425 | echo build/soong/soong_ui.bash --make-mode |
| 1426 | else |
| 1427 | echo command make |
| 1428 | fi |
Ying Wang | ed21d4c | 2014-08-24 22:14:19 -0700 | [diff] [blame] | 1429 | } |
| 1430 | |
Dan Willemsen | d41ec5a | 2017-07-12 16:14:50 -0700 | [diff] [blame] | 1431 | function _wrap_build() |
Ed Heyl | cc6be0a | 2014-06-18 14:55:58 -0700 | [diff] [blame] | 1432 | { |
Sasha Smundak | 9f27cc0 | 2019-01-31 13:25:31 -0800 | [diff] [blame] | 1433 | if [[ "${ANDROID_QUIET_BUILD:-}" == true ]]; then |
| 1434 | "$@" |
| 1435 | return $? |
| 1436 | fi |
Ed Heyl | cc6be0a | 2014-06-18 14:55:58 -0700 | [diff] [blame] | 1437 | local start_time=$(date +"%s") |
Dan Willemsen | d41ec5a | 2017-07-12 16:14:50 -0700 | [diff] [blame] | 1438 | "$@" |
Ed Heyl | cc6be0a | 2014-06-18 14:55:58 -0700 | [diff] [blame] | 1439 | local ret=$? |
| 1440 | local end_time=$(date +"%s") |
| 1441 | local tdiff=$(($end_time-$start_time)) |
| 1442 | local hours=$(($tdiff / 3600 )) |
| 1443 | local mins=$((($tdiff % 3600) / 60)) |
| 1444 | local secs=$(($tdiff % 60)) |
Greg Hackmann | d95c7f7 | 2014-06-23 14:05:06 -0700 | [diff] [blame] | 1445 | local ncolors=$(tput colors 2>/dev/null) |
| 1446 | if [ -n "$ncolors" ] && [ $ncolors -ge 8 ]; then |
Jacky Cao | 89483b8 | 2015-05-15 22:12:53 +0800 | [diff] [blame] | 1447 | color_failed=$'\E'"[0;31m" |
| 1448 | color_success=$'\E'"[0;32m" |
| 1449 | color_reset=$'\E'"[00m" |
Greg Hackmann | d95c7f7 | 2014-06-23 14:05:06 -0700 | [diff] [blame] | 1450 | else |
| 1451 | color_failed="" |
| 1452 | color_success="" |
| 1453 | color_reset="" |
| 1454 | fi |
Ed Heyl | cc6be0a | 2014-06-18 14:55:58 -0700 | [diff] [blame] | 1455 | echo |
| 1456 | if [ $ret -eq 0 ] ; then |
Dan Willemsen | d41ec5a | 2017-07-12 16:14:50 -0700 | [diff] [blame] | 1457 | echo -n "${color_success}#### build completed successfully " |
Ed Heyl | cc6be0a | 2014-06-18 14:55:58 -0700 | [diff] [blame] | 1458 | else |
Dan Willemsen | d41ec5a | 2017-07-12 16:14:50 -0700 | [diff] [blame] | 1459 | echo -n "${color_failed}#### failed to build some targets " |
Ed Heyl | cc6be0a | 2014-06-18 14:55:58 -0700 | [diff] [blame] | 1460 | fi |
| 1461 | if [ $hours -gt 0 ] ; then |
| 1462 | printf "(%02g:%02g:%02g (hh:mm:ss))" $hours $mins $secs |
| 1463 | elif [ $mins -gt 0 ] ; then |
| 1464 | printf "(%02g:%02g (mm:ss))" $mins $secs |
| 1465 | elif [ $secs -gt 0 ] ; then |
| 1466 | printf "(%s seconds)" $secs |
| 1467 | fi |
Jacky Cao | 89483b8 | 2015-05-15 22:12:53 +0800 | [diff] [blame] | 1468 | echo " ####${color_reset}" |
Ed Heyl | cc6be0a | 2014-06-18 14:55:58 -0700 | [diff] [blame] | 1469 | echo |
| 1470 | return $ret |
| 1471 | } |
| 1472 | |
Patrice Arruda | fa7204b | 2019-06-20 23:40:33 +0000 | [diff] [blame] | 1473 | function _trigger_build() |
| 1474 | ( |
| 1475 | local -r bc="$1"; shift |
| 1476 | if T="$(gettop)"; then |
| 1477 | _wrap_build "$T/build/soong/soong_ui.bash" --build-mode --${bc} --dir="$(pwd)" "$@" |
| 1478 | else |
| 1479 | echo "Couldn't locate the top of the tree. Try setting TOP." |
| 1480 | fi |
| 1481 | ) |
| 1482 | |
| 1483 | function m() |
| 1484 | ( |
| 1485 | _trigger_build "all-modules" "$@" |
| 1486 | ) |
| 1487 | |
| 1488 | function mm() |
| 1489 | ( |
| 1490 | _trigger_build "modules-in-a-dir-no-deps" "$@" |
| 1491 | ) |
| 1492 | |
| 1493 | function mmm() |
| 1494 | ( |
| 1495 | _trigger_build "modules-in-dirs-no-deps" "$@" |
| 1496 | ) |
| 1497 | |
| 1498 | function mma() |
| 1499 | ( |
| 1500 | _trigger_build "modules-in-a-dir" "$@" |
| 1501 | ) |
| 1502 | |
| 1503 | function mmma() |
| 1504 | ( |
| 1505 | _trigger_build "modules-in-dirs" "$@" |
| 1506 | ) |
| 1507 | |
Dan Willemsen | d41ec5a | 2017-07-12 16:14:50 -0700 | [diff] [blame] | 1508 | function make() |
| 1509 | { |
Dan Willemsen | e984224 | 2017-07-28 13:00:13 -0700 | [diff] [blame] | 1510 | _wrap_build $(get_make_command "$@") "$@" |
Dan Willemsen | d41ec5a | 2017-07-12 16:14:50 -0700 | [diff] [blame] | 1511 | } |
| 1512 | |
David Zeuthen | 1b126ff | 2015-09-30 17:10:48 -0400 | [diff] [blame] | 1513 | function provision() |
| 1514 | { |
| 1515 | if [ ! "$ANDROID_PRODUCT_OUT" ]; then |
| 1516 | echo "Couldn't locate output files. Try running 'lunch' first." >&2 |
| 1517 | return 1 |
| 1518 | fi |
| 1519 | if [ ! -e "$ANDROID_PRODUCT_OUT/provision-device" ]; then |
| 1520 | echo "There is no provisioning script for the device." >&2 |
| 1521 | return 1 |
| 1522 | fi |
| 1523 | |
| 1524 | # Check if user really wants to do this. |
| 1525 | if [ "$1" = "--no-confirmation" ]; then |
| 1526 | shift 1 |
| 1527 | else |
| 1528 | echo "This action will reflash your device." |
| 1529 | echo "" |
| 1530 | echo "ALL DATA ON THE DEVICE WILL BE IRREVOCABLY ERASED." |
| 1531 | echo "" |
Marie Janssen | 4afc2c0 | 2015-11-10 10:41:15 -0800 | [diff] [blame] | 1532 | echo -n "Are you sure you want to do this (yes/no)? " |
| 1533 | read |
David Zeuthen | 1b126ff | 2015-09-30 17:10:48 -0400 | [diff] [blame] | 1534 | if [[ "${REPLY}" != "yes" ]] ; then |
| 1535 | echo "Not taking any action. Exiting." >&2 |
| 1536 | return 1 |
| 1537 | fi |
| 1538 | fi |
| 1539 | "$ANDROID_PRODUCT_OUT/provision-device" "$@" |
| 1540 | } |
| 1541 | |
Jim Tang | a881a25 | 2018-06-19 16:34:41 +0800 | [diff] [blame] | 1542 | # Zsh needs bashcompinit called to support bash-style completion. |
Patrik Fimml | df248e6 | 2018-10-15 18:15:12 +0200 | [diff] [blame] | 1543 | function enable_zsh_completion() { |
| 1544 | # Don't override user's options if bash-style completion is already enabled. |
| 1545 | if ! declare -f complete >/dev/null; then |
| 1546 | autoload -U compinit && compinit |
| 1547 | autoload -U bashcompinit && bashcompinit |
| 1548 | fi |
Jim Tang | a881a25 | 2018-06-19 16:34:41 +0800 | [diff] [blame] | 1549 | } |
| 1550 | |
| 1551 | function validate_current_shell() { |
| 1552 | local current_sh="$(ps -o command -p $$)" |
| 1553 | case "$current_sh" in |
Raphael Moll | 70a86b0 | 2011-06-20 16:03:14 -0700 | [diff] [blame] | 1554 | *bash*) |
Jim Tang | a881a25 | 2018-06-19 16:34:41 +0800 | [diff] [blame] | 1555 | function check_type() { type -t "$1"; } |
Raphael Moll | 70a86b0 | 2011-06-20 16:03:14 -0700 | [diff] [blame] | 1556 | ;; |
Jim Tang | a881a25 | 2018-06-19 16:34:41 +0800 | [diff] [blame] | 1557 | *zsh*) |
| 1558 | function check_type() { type "$1"; } |
Patrik Fimml | df248e6 | 2018-10-15 18:15:12 +0200 | [diff] [blame] | 1559 | enable_zsh_completion ;; |
Raphael Moll | 70a86b0 | 2011-06-20 16:03:14 -0700 | [diff] [blame] | 1560 | *) |
Jim Tang | a881a25 | 2018-06-19 16:34:41 +0800 | [diff] [blame] | 1561 | echo -e "WARNING: Only bash and zsh are supported.\nUse of other shell would lead to erroneous results." |
Raphael Moll | 70a86b0 | 2011-06-20 16:03:14 -0700 | [diff] [blame] | 1562 | ;; |
| 1563 | esac |
Jim Tang | a881a25 | 2018-06-19 16:34:41 +0800 | [diff] [blame] | 1564 | } |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 1565 | |
| 1566 | # Execute the contents of any vendorsetup.sh files we can find. |
Dan Willemsen | d855a72 | 2019-02-12 15:52:36 -0800 | [diff] [blame] | 1567 | # Unless we find an allowed-vendorsetup_sh-files file, in which case we'll only |
| 1568 | # load those. |
| 1569 | # |
| 1570 | # This allows loading only approved vendorsetup.sh files |
Jim Tang | a881a25 | 2018-06-19 16:34:41 +0800 | [diff] [blame] | 1571 | function source_vendorsetup() { |
Jim Tang | c4dba1d | 2019-07-25 16:54:27 +0800 | [diff] [blame] | 1572 | unset VENDOR_PYTHONPATH |
Dan Willemsen | d855a72 | 2019-02-12 15:52:36 -0800 | [diff] [blame] | 1573 | allowed= |
| 1574 | for f in $(find -L device vendor product -maxdepth 4 -name 'allowed-vendorsetup_sh-files' 2>/dev/null | sort); do |
| 1575 | if [ -n "$allowed" ]; then |
| 1576 | echo "More than one 'allowed_vendorsetup_sh-files' file found, not including any vendorsetup.sh files:" |
| 1577 | echo " $allowed" |
| 1578 | echo " $f" |
| 1579 | return |
| 1580 | fi |
| 1581 | allowed="$f" |
| 1582 | done |
| 1583 | |
| 1584 | allowed_files= |
| 1585 | [ -n "$allowed" ] && allowed_files=$(cat "$allowed") |
Jim Tang | a881a25 | 2018-06-19 16:34:41 +0800 | [diff] [blame] | 1586 | for dir in device vendor product; do |
| 1587 | for f in $(test -d $dir && \ |
| 1588 | find -L $dir -maxdepth 4 -name 'vendorsetup.sh' 2>/dev/null | sort); do |
Dan Willemsen | d855a72 | 2019-02-12 15:52:36 -0800 | [diff] [blame] | 1589 | |
| 1590 | if [[ -z "$allowed" || "$allowed_files" =~ $f ]]; then |
| 1591 | echo "including $f"; . "$f" |
| 1592 | else |
| 1593 | echo "ignoring $f, not in $allowed" |
| 1594 | fi |
Jim Tang | a881a25 | 2018-06-19 16:34:41 +0800 | [diff] [blame] | 1595 | done |
| 1596 | done |
| 1597 | } |
Kenny Root | 52aa81c | 2011-07-15 11:07:06 -0700 | [diff] [blame] | 1598 | |
Jim Tang | a881a25 | 2018-06-19 16:34:41 +0800 | [diff] [blame] | 1599 | validate_current_shell |
| 1600 | source_vendorsetup |
Kenny Root | 52aa81c | 2011-07-15 11:07:06 -0700 | [diff] [blame] | 1601 | addcompletions |