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