blob: e35336dc42cef4c12478b4ee1576abebbb383419 [file] [log] [blame]
Scott Anderson1a5fc952012-03-07 17:15:06 -08001function hmm() {
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07002cat <<EOF
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08003Invoke ". build/envsetup.sh" from your shell to add the following functions to your environment:
Ying Wang67f02922012-08-22 10:25:20 -07004- lunch: lunch <product_name>-<build_variant>
Ying Wangb541ab62014-05-29 17:57:40 -07005- tapas: tapas [<App1> <App2> ...] [arm|x86|mips|armv5|arm64|x86_64|mips64] [eng|userdebug|user]
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07006- croot: Changes directory to the top of the tree.
7- m: Makes from the top of the tree.
Ying Wangb607f7b2013-02-08 18:01:04 -08008- 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.
Primiano Tucci6a8069d2014-02-26 11:09:19 +000010 To limit the modules being built use the syntax: mmm dir/:target1,target2.
Ying Wangb607f7b2013-02-08 18:01:04 -080011- 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.
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070013- cgrep: Greps on all local C/C++ files.
Jon Boekenoogencbca56f2014-04-07 10:57:38 -070014- ggrep: Greps on all local Gradle files.
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070015- jgrep: Greps on all local Java files.
16- resgrep: Greps on all local res/*.xml files.
Jeff Brown46cbd202014-07-26 15:15:41 -070017- sgrep: Greps on all local source files.
The Android Open Source Project88b60792009-03-03 19:28:42 -080018- godir: Go to the directory containing a file.
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070019
Dan Albert4ae5d4b2014-10-31 16:23:08 -070020Environemnt options:
21- SANITIZE_HOST: Set to 'true' to use ASAN for all host modules. Note that
22 ASAN_OPTIONS=detect_leaks=0 will be set by default until the
23 build is leak-check clean.
24
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070025Look at the source to view more functions. The complete list is:
26EOF
27 T=$(gettop)
28 local A
29 A=""
Jeff Brown46cbd202014-07-26 15:15:41 -070030 for i in `cat $T/build/envsetup.sh | sed -n "/^[ \t]*function /s/function \([a-z_]*\).*/\1/p" | sort | uniq`; do
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070031 A="$A $i"
32 done
33 echo $A
34}
35
36# Get the value of a build variable as an absolute path.
37function get_abs_build_var()
38{
39 T=$(gettop)
40 if [ ! "$T" ]; then
41 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
42 return
43 fi
Ying Wang9cd17642012-12-13 10:52:07 -080044 (\cd $T; CALLED_FROM_SETUP=true BUILD_SYSTEM=build/core \
Ed Heylc6d11f82014-06-27 13:32:39 -070045 command make --no-print-directory -f build/core/config.mk dumpvar-abs-$1)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070046}
47
48# Get the exact value of a build variable.
49function get_build_var()
50{
51 T=$(gettop)
52 if [ ! "$T" ]; then
53 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
54 return
55 fi
Andrew Boie6905e212013-12-19 13:21:46 -080056 (\cd $T; CALLED_FROM_SETUP=true BUILD_SYSTEM=build/core \
Ed Heylc6d11f82014-06-27 13:32:39 -070057 command make --no-print-directory -f build/core/config.mk dumpvar-$1)
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -080058}
59
60# check to see if the supplied product is one we can build
61function check_product()
62{
63 T=$(gettop)
64 if [ ! "$T" ]; then
65 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
66 return
67 fi
Jeff Browne33ba4c2011-07-11 22:11:46 -070068 TARGET_PRODUCT=$1 \
69 TARGET_BUILD_VARIANT= \
70 TARGET_BUILD_TYPE= \
Joe Onoratoda12daf2010-06-09 18:18:31 -070071 TARGET_BUILD_APPS= \
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -080072 get_build_var TARGET_DEVICE > /dev/null
73 # hide successful answers, but allow the errors to show
74}
75
76VARIANT_CHOICES=(user userdebug eng)
77
78# check to see if the supplied variant is valid
79function check_variant()
80{
81 for v in ${VARIANT_CHOICES[@]}
82 do
83 if [ "$v" = "$1" ]
84 then
85 return 0
86 fi
87 done
88 return 1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070089}
90
91function setpaths()
92{
93 T=$(gettop)
94 if [ ! "$T" ]; then
95 echo "Couldn't locate the top of the tree. Try setting TOP."
96 return
97 fi
98
99 ##################################################################
100 # #
101 # Read me before you modify this code #
102 # #
103 # This function sets ANDROID_BUILD_PATHS to what it is adding #
104 # to PATH, and the next time it is run, it removes that from #
105 # PATH. This is required so lunch can be run more than once #
106 # and still have working paths. #
107 # #
108 ##################################################################
109
Raphael Mollc639c782011-06-20 17:25:01 -0700110 # Note: on windows/cygwin, ANDROID_BUILD_PATHS will contain spaces
111 # due to "C:\Program Files" being in the path.
112
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700113 # out with the old
Raphael Mollc639c782011-06-20 17:25:01 -0700114 if [ -n "$ANDROID_BUILD_PATHS" ] ; then
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700115 export PATH=${PATH/$ANDROID_BUILD_PATHS/}
116 fi
Raphael Mollc639c782011-06-20 17:25:01 -0700117 if [ -n "$ANDROID_PRE_BUILD_PATHS" ] ; then
Doug Zongker29034982011-04-22 08:16:56 -0700118 export PATH=${PATH/$ANDROID_PRE_BUILD_PATHS/}
Ying Wangaa1c9b52012-11-26 20:51:59 -0800119 # strip leading ':', if any
120 export PATH=${PATH/:%/}
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500121 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700122
123 # and in with the new
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700124 prebuiltdir=$(getprebuilt)
Jing Yuf5172c72012-03-29 20:45:50 -0700125 gccprebuiltdir=$(get_abs_build_var ANDROID_GCC_PREBUILTS)
Raphael732936d2011-06-22 14:35:32 -0700126
Ben Cheng8bc4c432012-11-16 13:29:13 -0800127 # defined in core/config.mk
128 targetgccversion=$(get_build_var TARGET_GCC_VERSION)
Colin Cross03b424a2014-05-22 11:57:43 -0700129 targetgccversion2=$(get_build_var 2ND_TARGET_GCC_VERSION)
Ben Cheng15266702012-12-10 16:04:39 -0800130 export TARGET_GCC_VERSION=$targetgccversion
Ben Cheng8bc4c432012-11-16 13:29:13 -0800131
Raphael Mollc639c782011-06-20 17:25:01 -0700132 # The gcc toolchain does not exists for windows/cygwin. In this case, do not reference it.
Ben Chengfba67bf2014-02-25 10:27:07 -0800133 export ANDROID_TOOLCHAIN=
134 export ANDROID_TOOLCHAIN_2ND_ARCH=
David 'Digit' Turner2056c252012-04-17 14:50:47 +0200135 local ARCH=$(get_build_var TARGET_ARCH)
136 case $ARCH in
Pavel Chupinc1a56642013-08-23 16:49:21 +0400137 x86) toolchaindir=x86/x86_64-linux-android-$targetgccversion/bin
Mark D Horn7d0ede72012-03-14 14:20:30 -0700138 ;;
Pavel Chupinfd82a492012-11-26 09:50:07 +0400139 x86_64) toolchaindir=x86/x86_64-linux-android-$targetgccversion/bin
140 ;;
Ben Cheng8bc4c432012-11-16 13:29:13 -0800141 arm) toolchaindir=arm/arm-linux-androideabi-$targetgccversion/bin
David 'Digit' Turner2056c252012-04-17 14:50:47 +0200142 ;;
Ben Chengfba67bf2014-02-25 10:27:07 -0800143 arm64) toolchaindir=aarch64/aarch64-linux-android-$targetgccversion/bin;
Colin Cross03b424a2014-05-22 11:57:43 -0700144 toolchaindir2=arm/arm-linux-androideabi-$targetgccversion2/bin
Ben Chengdb4fc202013-10-04 16:02:59 -0700145 ;;
Duane Sand3c4fcd82014-07-22 14:34:00 -0700146 mips|mips64) toolchaindir=mips/mips64el-linux-android-$targetgccversion/bin
Serban Constantinescu9b68fb22014-01-14 10:33:53 +0000147 ;;
David 'Digit' Turner2056c252012-04-17 14:50:47 +0200148 *)
149 echo "Can't find toolchain for unknown architecture: $ARCH"
150 toolchaindir=xxxxxxxxx
Mark D Horn7d0ede72012-03-14 14:20:30 -0700151 ;;
152 esac
Jing Yuf5172c72012-03-29 20:45:50 -0700153 if [ -d "$gccprebuiltdir/$toolchaindir" ]; then
Ben Chengfba67bf2014-02-25 10:27:07 -0800154 export ANDROID_TOOLCHAIN=$gccprebuiltdir/$toolchaindir
Raphael Mollc639c782011-06-20 17:25:01 -0700155 fi
Raphael732936d2011-06-22 14:35:32 -0700156
Ben Chengfba67bf2014-02-25 10:27:07 -0800157 if [ -d "$gccprebuiltdir/$toolchaindir2" ]; then
158 export ANDROID_TOOLCHAIN_2ND_ARCH=$gccprebuiltdir/$toolchaindir2
159 fi
160
161 unset ANDROID_KERNEL_TOOLCHAIN_PATH
Ying Wang08f5e9a2012-04-17 18:10:11 -0700162 case $ARCH in
Bruce Beare42ced6d2012-07-17 21:40:01 -0700163 arm)
Ben Chengfba67bf2014-02-25 10:27:07 -0800164 # Legacy toolchain configuration used for ARM kernel compilation
Ben Cheng8bc4c432012-11-16 13:29:13 -0800165 toolchaindir=arm/arm-eabi-$targetgccversion/bin
Bruce Beare42ced6d2012-07-17 21:40:01 -0700166 if [ -d "$gccprebuiltdir/$toolchaindir" ]; then
Torne (Richard Coles)f24c3562014-04-25 16:24:22 +0100167 export ARM_EABI_TOOLCHAIN="$gccprebuiltdir/$toolchaindir"
168 ANDROID_KERNEL_TOOLCHAIN_PATH="$ARM_EABI_TOOLCHAIN":
Bruce Beare42ced6d2012-07-17 21:40:01 -0700169 fi
Ying Wang08f5e9a2012-04-17 18:10:11 -0700170 ;;
171 *)
Bruce Beare42ced6d2012-07-17 21:40:01 -0700172 # No need to set ARM_EABI_TOOLCHAIN for other ARCHs
Ying Wang08f5e9a2012-04-17 18:10:11 -0700173 ;;
174 esac
Ying Wang08f5e9a2012-04-17 18:10:11 -0700175
Ying Wang564f9122013-03-29 17:40:14 -0700176 export ANDROID_DEV_SCRIPTS=$T/development/scripts:$T/prebuilts/devtools/tools
Ying Wang2a859d52014-06-30 10:25:33 -0700177 export ANDROID_BUILD_PATHS=$(get_build_var ANDROID_BUILD_PATHS):$ANDROID_TOOLCHAIN:$ANDROID_TOOLCHAIN_2ND_ARCH:$ANDROID_KERNEL_TOOLCHAIN_PATH$ANDROID_DEV_SCRIPTS:
David 'Digit' Turner94d16e52014-05-05 16:13:50 +0200178
179 # If prebuilts/android-emulator/<system>/ exists, prepend it to our PATH
180 # to ensure that the corresponding 'emulator' binaries are used.
181 case $(uname -s) in
182 Darwin)
183 ANDROID_EMULATOR_PREBUILTS=$T/prebuilts/android-emulator/darwin-x86_64
184 ;;
185 Linux)
186 ANDROID_EMULATOR_PREBUILTS=$T/prebuilts/android-emulator/linux-x86_64
187 ;;
188 *)
189 ANDROID_EMULATOR_PREBUILTS=
190 ;;
191 esac
192 if [ -n "$ANDROID_EMULATOR_PREBUILTS" -a -d "$ANDROID_EMULATOR_PREBUILTS" ]; then
Christopher Ferris7110f242014-05-20 13:56:00 -0700193 ANDROID_BUILD_PATHS=$ANDROID_BUILD_PATHS$ANDROID_EMULATOR_PREBUILTS:
David 'Digit' Turner94d16e52014-05-05 16:13:50 +0200194 export ANDROID_EMULATOR_PREBUILTS
195 fi
196
Ying Wangaa1c9b52012-11-26 20:51:59 -0800197 export PATH=$ANDROID_BUILD_PATHS$PATH
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800198
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500199 unset ANDROID_JAVA_TOOLCHAIN
Ji-Hwan Lee752ad062011-07-04 14:09:47 +0900200 unset ANDROID_PRE_BUILD_PATHS
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500201 if [ -n "$JAVA_HOME" ]; then
202 export ANDROID_JAVA_TOOLCHAIN=$JAVA_HOME/bin
Ji-Hwan Lee752ad062011-07-04 14:09:47 +0900203 export ANDROID_PRE_BUILD_PATHS=$ANDROID_JAVA_TOOLCHAIN:
204 export PATH=$ANDROID_PRE_BUILD_PATHS$PATH
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500205 fi
206
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800207 unset ANDROID_PRODUCT_OUT
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700208 export ANDROID_PRODUCT_OUT=$(get_abs_build_var PRODUCT_OUT)
209 export OUT=$ANDROID_PRODUCT_OUT
210
Jeff Brown8fd5cce2011-03-24 17:03:06 -0700211 unset ANDROID_HOST_OUT
212 export ANDROID_HOST_OUT=$(get_abs_build_var HOST_OUT)
213
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800214 # needed for building linux on MacOS
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700215 # TODO: fix the path
216 #export HOST_EXTRACFLAGS="-I "$T/system/kernel_headers/host_include
217}
218
219function printconfig()
220{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800221 T=$(gettop)
222 if [ ! "$T" ]; then
223 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
224 return
225 fi
226 get_build_var report_config
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700227}
228
229function set_stuff_for_environment()
230{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800231 settitle
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500232 set_java_home
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800233 setpaths
234 set_sequence_number
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700235
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800236 export ANDROID_BUILD_TOP=$(gettop)
Ben Chengaac3f812013-08-13 14:38:15 -0700237 # With this environment variable new GCC can apply colors to warnings/errors
238 export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
Dan Albert4ae5d4b2014-10-31 16:23:08 -0700239 export ASAN_OPTIONS=detect_leaks=0
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700240}
241
242function set_sequence_number()
243{
Joe Onoratoaee4daa2010-06-23 14:03:13 -0700244 export BUILD_ENV_SEQUENCE_NUMBER=10
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700245}
246
247function settitle()
248{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800249 if [ "$STAY_OFF_MY_LAWN" = "" ]; then
Raghu Gandham8da43102012-07-25 19:57:22 -0700250 local arch=$(gettargetarch)
Joe Onoratoda12daf2010-06-09 18:18:31 -0700251 local product=$TARGET_PRODUCT
252 local variant=$TARGET_BUILD_VARIANT
253 local apps=$TARGET_BUILD_APPS
254 if [ -z "$apps" ]; then
Raghu Gandham8da43102012-07-25 19:57:22 -0700255 export PROMPT_COMMAND="echo -ne \"\033]0;[${arch}-${product}-${variant}] ${USER}@${HOSTNAME}: ${PWD}\007\""
Joe Onoratoda12daf2010-06-09 18:18:31 -0700256 else
Raghu Gandham8da43102012-07-25 19:57:22 -0700257 export PROMPT_COMMAND="echo -ne \"\033]0;[$arch $apps $variant] ${USER}@${HOSTNAME}: ${PWD}\007\""
Joe Onoratoda12daf2010-06-09 18:18:31 -0700258 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800259 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700260}
261
Kenny Root52aa81c2011-07-15 11:07:06 -0700262function addcompletions()
263{
264 local T dir f
265
266 # Keep us from trying to run in something that isn't bash.
267 if [ -z "${BASH_VERSION}" ]; then
268 return
269 fi
270
271 # Keep us from trying to run in bash that's too old.
272 if [ ${BASH_VERSINFO[0]} -lt 3 ]; then
273 return
274 fi
275
276 dir="sdk/bash_completion"
277 if [ -d ${dir} ]; then
Kenny Root7546d612011-07-18 13:11:34 -0700278 for f in `/bin/ls ${dir}/[a-z]*.bash 2> /dev/null`; do
Kenny Root52aa81c2011-07-15 11:07:06 -0700279 echo "including $f"
280 . $f
281 done
282 fi
283}
284
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700285function choosetype()
286{
287 echo "Build type choices are:"
288 echo " 1. release"
289 echo " 2. debug"
290 echo
291
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800292 local DEFAULT_NUM DEFAULT_VALUE
Jeff Browne33ba4c2011-07-11 22:11:46 -0700293 DEFAULT_NUM=1
294 DEFAULT_VALUE=release
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700295
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800296 export TARGET_BUILD_TYPE=
297 local ANSWER
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700298 while [ -z $TARGET_BUILD_TYPE ]
299 do
300 echo -n "Which would you like? ["$DEFAULT_NUM"] "
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800301 if [ -z "$1" ] ; then
302 read ANSWER
303 else
304 echo $1
305 ANSWER=$1
306 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700307 case $ANSWER in
308 "")
309 export TARGET_BUILD_TYPE=$DEFAULT_VALUE
310 ;;
311 1)
312 export TARGET_BUILD_TYPE=release
313 ;;
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800314 release)
315 export TARGET_BUILD_TYPE=release
316 ;;
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700317 2)
318 export TARGET_BUILD_TYPE=debug
319 ;;
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800320 debug)
321 export TARGET_BUILD_TYPE=debug
322 ;;
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700323 *)
324 echo
325 echo "I didn't understand your response. Please try again."
326 echo
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700327 ;;
328 esac
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800329 if [ -n "$1" ] ; then
330 break
331 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700332 done
333
334 set_stuff_for_environment
335}
336
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800337#
338# This function isn't really right: It chooses a TARGET_PRODUCT
339# based on the list of boards. Usually, that gets you something
340# that kinda works with a generic product, but really, you should
341# pick a product by name.
342#
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700343function chooseproduct()
344{
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700345 if [ "x$TARGET_PRODUCT" != x ] ; then
346 default_value=$TARGET_PRODUCT
347 else
Jeff Browne33ba4c2011-07-11 22:11:46 -0700348 default_value=full
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700349 fi
350
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800351 export TARGET_PRODUCT=
352 local ANSWER
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700353 while [ -z "$TARGET_PRODUCT" ]
354 do
Joe Onorato8849aed2009-04-29 15:56:47 -0700355 echo -n "Which product would you like? [$default_value] "
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800356 if [ -z "$1" ] ; then
357 read ANSWER
358 else
359 echo $1
360 ANSWER=$1
361 fi
362
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700363 if [ -z "$ANSWER" ] ; then
364 export TARGET_PRODUCT=$default_value
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800365 else
366 if check_product $ANSWER
367 then
368 export TARGET_PRODUCT=$ANSWER
369 else
370 echo "** Not a valid product: $ANSWER"
371 fi
372 fi
373 if [ -n "$1" ] ; then
374 break
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700375 fi
376 done
377
378 set_stuff_for_environment
379}
380
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800381function choosevariant()
382{
383 echo "Variant choices are:"
384 local index=1
385 local v
386 for v in ${VARIANT_CHOICES[@]}
387 do
388 # The product name is the name of the directory containing
389 # the makefile we found, above.
390 echo " $index. $v"
391 index=$(($index+1))
392 done
393
394 local default_value=eng
395 local ANSWER
396
397 export TARGET_BUILD_VARIANT=
398 while [ -z "$TARGET_BUILD_VARIANT" ]
399 do
400 echo -n "Which would you like? [$default_value] "
401 if [ -z "$1" ] ; then
402 read ANSWER
403 else
404 echo $1
405 ANSWER=$1
406 fi
407
408 if [ -z "$ANSWER" ] ; then
409 export TARGET_BUILD_VARIANT=$default_value
410 elif (echo -n $ANSWER | grep -q -e "^[0-9][0-9]*$") ; then
411 if [ "$ANSWER" -le "${#VARIANT_CHOICES[@]}" ] ; then
Kan-Ru Chen07453762010-07-05 15:53:47 +0800412 export TARGET_BUILD_VARIANT=${VARIANT_CHOICES[$(($ANSWER-1))]}
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800413 fi
414 else
415 if check_variant $ANSWER
416 then
417 export TARGET_BUILD_VARIANT=$ANSWER
418 else
419 echo "** Not a valid variant: $ANSWER"
420 fi
421 fi
422 if [ -n "$1" ] ; then
423 break
424 fi
425 done
426}
427
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700428function choosecombo()
429{
Jeff Browne33ba4c2011-07-11 22:11:46 -0700430 choosetype $1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700431
432 echo
433 echo
Jeff Browne33ba4c2011-07-11 22:11:46 -0700434 chooseproduct $2
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700435
436 echo
437 echo
Jeff Browne33ba4c2011-07-11 22:11:46 -0700438 choosevariant $3
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800439
440 echo
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700441 set_stuff_for_environment
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800442 printconfig
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700443}
444
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800445# Clear this variable. It will be built up again when the vendorsetup.sh
446# files are included at the end of this file.
447unset LUNCH_MENU_CHOICES
448function add_lunch_combo()
449{
450 local new_combo=$1
451 local c
452 for c in ${LUNCH_MENU_CHOICES[@]} ; do
453 if [ "$new_combo" = "$c" ] ; then
454 return
455 fi
456 done
457 LUNCH_MENU_CHOICES=(${LUNCH_MENU_CHOICES[@]} $new_combo)
458}
459
460# add the default one here
Jean-Baptiste Queru324c1232013-03-22 15:53:54 -0700461add_lunch_combo aosp_arm-eng
Colin Cross4f0eb7d2014-01-21 19:35:38 -0800462add_lunch_combo aosp_arm64-eng
Serban Constantinescu9b68fb22014-01-14 10:33:53 +0000463add_lunch_combo aosp_mips-eng
Chris Dearman1efd9e42014-02-03 15:01:24 -0800464add_lunch_combo aosp_mips64-eng
Serban Constantinescu9b68fb22014-01-14 10:33:53 +0000465add_lunch_combo aosp_x86-eng
466add_lunch_combo aosp_x86_64-eng
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800467
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700468function print_lunch_menu()
469{
470 local uname=$(uname)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700471 echo
472 echo "You're building on" $uname
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700473 echo
474 echo "Lunch menu... pick a combo:"
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800475
476 local i=1
477 local choice
478 for choice in ${LUNCH_MENU_CHOICES[@]}
479 do
480 echo " $i. $choice"
481 i=$(($i+1))
482 done
483
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700484 echo
485}
486
487function lunch()
488{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800489 local answer
490
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700491 if [ "$1" ] ; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800492 answer=$1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700493 else
494 print_lunch_menu
Jean-Baptiste Queru324c1232013-03-22 15:53:54 -0700495 echo -n "Which would you like? [aosp_arm-eng] "
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800496 read answer
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700497 fi
498
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800499 local selection=
500
501 if [ -z "$answer" ]
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700502 then
Jean-Baptiste Queru324c1232013-03-22 15:53:54 -0700503 selection=aosp_arm-eng
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800504 elif (echo -n $answer | grep -q -e "^[0-9][0-9]*$")
505 then
506 if [ $answer -le ${#LUNCH_MENU_CHOICES[@]} ]
507 then
Kan-Ru Chen07453762010-07-05 15:53:47 +0800508 selection=${LUNCH_MENU_CHOICES[$(($answer-1))]}
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800509 fi
510 elif (echo -n $answer | grep -q -e "^[^\-][^\-]*-[^\-][^\-]*$")
511 then
512 selection=$answer
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700513 fi
514
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800515 if [ -z "$selection" ]
516 then
517 echo
518 echo "Invalid lunch combo: $answer"
519 return 1
520 fi
521
Joe Onoratoda12daf2010-06-09 18:18:31 -0700522 export TARGET_BUILD_APPS=
523
Jeff Browne33ba4c2011-07-11 22:11:46 -0700524 local product=$(echo -n $selection | sed -e "s/-.*$//")
525 check_product $product
526 if [ $? -ne 0 ]
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800527 then
Jeff Browne33ba4c2011-07-11 22:11:46 -0700528 echo
529 echo "** Don't have a product spec for: '$product'"
530 echo "** Do you have the right repo manifest?"
531 product=
532 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800533
Jeff Browne33ba4c2011-07-11 22:11:46 -0700534 local variant=$(echo -n $selection | sed -e "s/^[^\-]*-//")
535 check_variant $variant
536 if [ $? -ne 0 ]
537 then
538 echo
539 echo "** Invalid variant: '$variant'"
540 echo "** Must be one of ${VARIANT_CHOICES[@]}"
541 variant=
542 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800543
Jeff Browne33ba4c2011-07-11 22:11:46 -0700544 if [ -z "$product" -o -z "$variant" ]
545 then
546 echo
547 return 1
548 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800549
Jeff Browne33ba4c2011-07-11 22:11:46 -0700550 export TARGET_PRODUCT=$product
551 export TARGET_BUILD_VARIANT=$variant
552 export TARGET_BUILD_TYPE=release
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700553
554 echo
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800555
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700556 set_stuff_for_environment
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800557 printconfig
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700558}
559
Jeff Davidson513d7a42010-08-02 10:00:44 -0700560# Tab completion for lunch.
561function _lunch()
562{
563 local cur prev opts
564 COMPREPLY=()
565 cur="${COMP_WORDS[COMP_CWORD]}"
566 prev="${COMP_WORDS[COMP_CWORD-1]}"
567
568 COMPREPLY=( $(compgen -W "${LUNCH_MENU_CHOICES[*]}" -- ${cur}) )
569 return 0
570}
571complete -F _lunch lunch
572
Joe Onoratoda12daf2010-06-09 18:18:31 -0700573# Configures the build to build unbundled apps.
Doug Zongker0d8179e2014-04-16 11:34:34 -0700574# Run tapas with one or more app names (from LOCAL_PACKAGE_NAME)
Joe Onoratoda12daf2010-06-09 18:18:31 -0700575function tapas()
576{
Ying Wangb541ab62014-05-29 17:57:40 -0700577 local arch="$(echo $* | xargs -n 1 echo | \grep -E '^(arm|x86|mips|armv5|arm64|x86_64|mips64)$' | xargs)"
Doug Zongker0d8179e2014-04-16 11:34:34 -0700578 local variant="$(echo $* | xargs -n 1 echo | \grep -E '^(user|userdebug|eng)$' | xargs)"
Jeff Hamilton5069bd62014-09-04 21:28:00 -0700579 local density="$(echo $* | xargs -n 1 echo | \grep -E '^(ldpi|mdpi|tvdpi|hdpi|xhdpi|xxhdpi|xxxhdpi|alldpi)$' | xargs)"
580 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 Onoratoda12daf2010-06-09 18:18:31 -0700581
Ying Wang67f02922012-08-22 10:25:20 -0700582 if [ $(echo $arch | wc -w) -gt 1 ]; then
583 echo "tapas: Error: Multiple build archs supplied: $arch"
584 return
585 fi
Joe Onoratoda12daf2010-06-09 18:18:31 -0700586 if [ $(echo $variant | wc -w) -gt 1 ]; then
587 echo "tapas: Error: Multiple build variants supplied: $variant"
588 return
589 fi
Jeff Hamilton5069bd62014-09-04 21:28:00 -0700590 if [ $(echo $density | wc -w) -gt 1 ]; then
591 echo "tapas: Error: Multiple densities supplied: $density"
592 return
593 fi
Ying Wang67f02922012-08-22 10:25:20 -0700594
595 local product=full
596 case $arch in
Ying Wangb541ab62014-05-29 17:57:40 -0700597 x86) product=full_x86;;
598 mips) product=full_mips;;
599 armv5) product=generic_armv5;;
600 arm64) product=aosp_arm64;;
601 x86_64) product=aosp_x86_64;;
602 mips64) product=aosp_mips64;;
Ying Wang67f02922012-08-22 10:25:20 -0700603 esac
Joe Onoratoda12daf2010-06-09 18:18:31 -0700604 if [ -z "$variant" ]; then
605 variant=eng
606 fi
Ying Wangc048c9b2010-06-24 15:08:33 -0700607 if [ -z "$apps" ]; then
608 apps=all
609 fi
Justin Morey29d225c2014-11-04 13:35:51 -0600610 if [ -z "$density" ]; then
611 density=alldpi
612 fi
Joe Onoratoda12daf2010-06-09 18:18:31 -0700613
Ying Wang67f02922012-08-22 10:25:20 -0700614 export TARGET_PRODUCT=$product
Joe Onoratoda12daf2010-06-09 18:18:31 -0700615 export TARGET_BUILD_VARIANT=$variant
Jeff Hamilton5069bd62014-09-04 21:28:00 -0700616 export TARGET_BUILD_DENSITY=$density
Joe Onoratoda12daf2010-06-09 18:18:31 -0700617 export TARGET_BUILD_TYPE=release
618 export TARGET_BUILD_APPS=$apps
619
620 set_stuff_for_environment
621 printconfig
622}
623
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700624function gettop
625{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800626 local TOPFILE=build/core/envsetup.mk
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700627 if [ -n "$TOP" -a -f "$TOP/$TOPFILE" ] ; then
Brian Carlstroma5c4f172014-09-12 00:33:25 -0700628 # The following circumlocution ensures we remove symlinks from TOP.
629 (cd $TOP; PWD= /bin/pwd)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700630 else
631 if [ -f $TOPFILE ] ; then
Dan Bornsteind0b274d2009-11-24 15:48:50 -0800632 # The following circumlocution (repeated below as well) ensures
633 # that we record the true directory name and not one that is
634 # faked up with symlink names.
635 PWD= /bin/pwd
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700636 else
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800637 local HERE=$PWD
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700638 T=
639 while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do
Ying Wang9cd17642012-12-13 10:52:07 -0800640 \cd ..
synergyb112a402013-07-05 19:47:47 -0700641 T=`PWD= /bin/pwd -P`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700642 done
Ying Wang9cd17642012-12-13 10:52:07 -0800643 \cd $HERE
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700644 if [ -f "$T/$TOPFILE" ]; then
645 echo $T
646 fi
647 fi
648 fi
649}
650
Andrew Hsieh906cb782013-09-10 17:37:14 +0800651# Return driver for "make", if any (eg. static analyzer)
652function getdriver()
653{
654 local T="$1"
655 test "$WITH_STATIC_ANALYZER" = "0" && unset WITH_STATIC_ANALYZER
656 if [ -n "$WITH_STATIC_ANALYZER" ]; then
657 echo "\
Andrew Hsiehc4f7fba2014-03-03 16:53:17 +0800658$T/prebuilts/misc/linux-x86/analyzer/tools/scan-build/scan-build \
659--use-analyzer $T/prebuilts/misc/linux-x86/analyzer/bin/analyzer \
Andrew Hsieh906cb782013-09-10 17:37:14 +0800660--status-bugs \
661--top=$T"
662 fi
663}
664
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700665function m()
666{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800667 local T=$(gettop)
668 local DRV=$(getdriver $T)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700669 if [ "$T" ]; then
Andrew Hsieh906cb782013-09-10 17:37:14 +0800670 $DRV make -C $T -f build/core/main.mk $@
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700671 else
672 echo "Couldn't locate the top of the tree. Try setting TOP."
673 fi
674}
675
676function findmakefile()
677{
678 TOPFILE=build/core/envsetup.mk
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800679 local HERE=$PWD
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700680 T=
681 while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do
Ying Wang11b15b12012-10-11 15:05:07 -0700682 T=`PWD= /bin/pwd`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700683 if [ -f "$T/Android.mk" ]; then
684 echo $T/Android.mk
Ying Wang9cd17642012-12-13 10:52:07 -0800685 \cd $HERE
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700686 return
687 fi
Ying Wang9cd17642012-12-13 10:52:07 -0800688 \cd ..
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700689 done
Ying Wang9cd17642012-12-13 10:52:07 -0800690 \cd $HERE
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700691}
692
693function mm()
694{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800695 local T=$(gettop)
696 local DRV=$(getdriver $T)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700697 # If we're sitting in the root of the build tree, just do a
698 # normal make.
699 if [ -f build/core/envsetup.mk -a -f Makefile ]; then
Andrew Hsieh906cb782013-09-10 17:37:14 +0800700 $DRV make $@
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700701 else
702 # Find the closest Android.mk file.
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800703 local M=$(findmakefile)
Ying Wanga7deb082013-08-16 13:24:47 -0700704 local MODULES=
705 local GET_INSTALL_PATH=
706 local ARGS=
Robert Greenwalt3c794d72009-07-15 15:07:44 -0700707 # Remove the path to top as the makefilepath needs to be relative
708 local M=`echo $M|sed 's:'$T'/::'`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700709 if [ ! "$T" ]; then
710 echo "Couldn't locate the top of the tree. Try setting TOP."
711 elif [ ! "$M" ]; then
712 echo "Couldn't locate a makefile from the current directory."
713 else
Ying Wanga7deb082013-08-16 13:24:47 -0700714 for ARG in $@; do
715 case $ARG in
716 GET-INSTALL-PATH) GET_INSTALL_PATH=$ARG;;
717 esac
718 done
719 if [ -n "$GET_INSTALL_PATH" ]; then
720 MODULES=
721 ARGS=GET-INSTALL-PATH
722 else
723 MODULES=all_modules
724 ARGS=$@
725 fi
Andrew Hsieh246daf72013-09-10 18:07:23 -0700726 ONE_SHOT_MAKEFILE=$M $DRV make -C $T -f build/core/main.mk $MODULES $ARGS
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700727 fi
728 fi
729}
730
731function mmm()
732{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800733 local T=$(gettop)
734 local DRV=$(getdriver $T)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700735 if [ "$T" ]; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800736 local MAKEFILE=
Alon Albert68895a92011-11-30 12:40:19 -0800737 local MODULES=
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800738 local ARGS=
739 local DIR TO_CHOP
Ying Wanga7deb082013-08-16 13:24:47 -0700740 local GET_INSTALL_PATH=
The Android Open Source Project88b60792009-03-03 19:28:42 -0800741 local DASH_ARGS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^-.*$/')
742 local DIRS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^[^-].*$/')
743 for DIR in $DIRS ; do
Alon Albert68895a92011-11-30 12:40:19 -0800744 MODULES=`echo $DIR | sed -n -e 's/.*:\(.*$\)/\1/p' | sed 's/,/ /'`
745 if [ "$MODULES" = "" ]; then
746 MODULES=all_modules
747 fi
748 DIR=`echo $DIR | sed -e 's/:.*//' -e 's:/$::'`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700749 if [ -f $DIR/Android.mk ]; then
Ying Wanga7deb082013-08-16 13:24:47 -0700750 local TO_CHOP=`(\cd -P -- $T && pwd -P) | wc -c | tr -d ' '`
751 local TO_CHOP=`expr $TO_CHOP + 1`
752 local START=`PWD= /bin/pwd`
753 local MFILE=`echo $START | cut -c${TO_CHOP}-`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700754 if [ "$MFILE" = "" ] ; then
755 MFILE=$DIR/Android.mk
756 else
757 MFILE=$MFILE/$DIR/Android.mk
758 fi
759 MAKEFILE="$MAKEFILE $MFILE"
760 else
Ying Wanga7deb082013-08-16 13:24:47 -0700761 case $DIR in
762 showcommands | snod | dist | incrementaljavac) ARGS="$ARGS $DIR";;
763 GET-INSTALL-PATH) GET_INSTALL_PATH=$DIR;;
764 *) echo "No Android.mk in $DIR."; return 1;;
765 esac
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700766 fi
767 done
Ying Wanga7deb082013-08-16 13:24:47 -0700768 if [ -n "$GET_INSTALL_PATH" ]; then
769 ARGS=$GET_INSTALL_PATH
770 MODULES=
771 fi
Andrew Hsieh906cb782013-09-10 17:37:14 +0800772 ONE_SHOT_MAKEFILE="$MAKEFILE" $DRV make -C $T -f build/core/main.mk $DASH_ARGS $MODULES $ARGS
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700773 else
774 echo "Couldn't locate the top of the tree. Try setting TOP."
775 fi
776}
777
Ying Wangb607f7b2013-02-08 18:01:04 -0800778function mma()
779{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800780 local T=$(gettop)
781 local DRV=$(getdriver $T)
Ying Wangb607f7b2013-02-08 18:01:04 -0800782 if [ -f build/core/envsetup.mk -a -f Makefile ]; then
Andrew Hsieh906cb782013-09-10 17:37:14 +0800783 $DRV make $@
Ying Wangb607f7b2013-02-08 18:01:04 -0800784 else
Ying Wangb607f7b2013-02-08 18:01:04 -0800785 if [ ! "$T" ]; then
786 echo "Couldn't locate the top of the tree. Try setting TOP."
787 fi
788 local MY_PWD=`PWD= /bin/pwd|sed 's:'$T'/::'`
Andrew Hsieh906cb782013-09-10 17:37:14 +0800789 $DRV make -C $T -f build/core/main.mk $@ all_modules BUILD_MODULES_IN_PATHS="$MY_PWD"
Ying Wangb607f7b2013-02-08 18:01:04 -0800790 fi
791}
792
793function mmma()
794{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800795 local T=$(gettop)
796 local DRV=$(getdriver $T)
Ying Wangb607f7b2013-02-08 18:01:04 -0800797 if [ "$T" ]; then
798 local DASH_ARGS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^-.*$/')
799 local DIRS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^[^-].*$/')
800 local MY_PWD=`PWD= /bin/pwd`
801 if [ "$MY_PWD" = "$T" ]; then
802 MY_PWD=
803 else
804 MY_PWD=`echo $MY_PWD|sed 's:'$T'/::'`
805 fi
806 local DIR=
807 local MODULE_PATHS=
808 local ARGS=
809 for DIR in $DIRS ; do
810 if [ -d $DIR ]; then
811 if [ "$MY_PWD" = "" ]; then
812 MODULE_PATHS="$MODULE_PATHS $DIR"
813 else
814 MODULE_PATHS="$MODULE_PATHS $MY_PWD/$DIR"
815 fi
816 else
817 case $DIR in
818 showcommands | snod | dist | incrementaljavac) ARGS="$ARGS $DIR";;
819 *) echo "Couldn't find directory $DIR"; return 1;;
820 esac
821 fi
822 done
Andrew Hsieh906cb782013-09-10 17:37:14 +0800823 $DRV make -C $T -f build/core/main.mk $DASH_ARGS $ARGS all_modules BUILD_MODULES_IN_PATHS="$MODULE_PATHS"
Ying Wangb607f7b2013-02-08 18:01:04 -0800824 else
825 echo "Couldn't locate the top of the tree. Try setting TOP."
826 fi
827}
828
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700829function croot()
830{
831 T=$(gettop)
832 if [ "$T" ]; then
Ying Wang9cd17642012-12-13 10:52:07 -0800833 \cd $(gettop)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700834 else
835 echo "Couldn't locate the top of the tree. Try setting TOP."
836 fi
837}
838
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700839function cproj()
840{
841 TOPFILE=build/core/envsetup.mk
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700842 local HERE=$PWD
843 T=
844 while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do
845 T=$PWD
846 if [ -f "$T/Android.mk" ]; then
Ying Wang9cd17642012-12-13 10:52:07 -0800847 \cd $T
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700848 return
849 fi
Ying Wang9cd17642012-12-13 10:52:07 -0800850 \cd ..
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700851 done
Ying Wang9cd17642012-12-13 10:52:07 -0800852 \cd $HERE
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700853 echo "can't find Android.mk"
854}
855
Daniel Sandler47e0a882013-07-30 13:23:52 -0400856# simplified version of ps; output in the form
857# <pid> <procname>
858function qpid() {
859 local prepend=''
860 local append=''
861 if [ "$1" = "--exact" ]; then
862 prepend=' '
863 append='$'
864 shift
865 elif [ "$1" = "--help" -o "$1" = "-h" ]; then
866 echo "usage: qpid [[--exact] <process name|pid>"
867 return 255
868 fi
869
870 local EXE="$1"
871 if [ "$EXE" ] ; then
Mathias Agopian44583272013-08-27 14:15:50 -0700872 qpid | \grep "$prepend$EXE$append"
Daniel Sandler47e0a882013-07-30 13:23:52 -0400873 else
874 adb shell ps \
875 | tr -d '\r' \
876 | sed -e 1d -e 's/^[^ ]* *\([0-9]*\).* \([^ ]*\)$/\1 \2/'
877 fi
878}
879
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700880function pid()
881{
Daniel Sandler47e0a882013-07-30 13:23:52 -0400882 local prepend=''
883 local append=''
884 if [ "$1" = "--exact" ]; then
885 prepend=' '
886 append='$'
887 shift
888 fi
889 local EXE="$1"
890 if [ "$EXE" ] ; then
891 local PID=`adb shell ps \
892 | tr -d '\r' \
Mathias Agopian44583272013-08-27 14:15:50 -0700893 | \grep "$prepend$EXE$append" \
Daniel Sandler47e0a882013-07-30 13:23:52 -0400894 | sed -e 's/^[^ ]* *\([0-9]*\).*$/\1/'`
895 echo "$PID"
896 else
897 echo "usage: pid [--exact] <process name>"
898 return 255
899 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700900}
901
Iliyan Malcheve675cfb2014-11-03 17:04:47 -0800902# coredump_setup - enable core dumps globally for any process
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700903# that has the core-file-size limit set correctly
904#
Iliyan Malchevaf5de972014-11-04 20:57:37 -0800905# NOTE: You must call also coredump_enable for a specific process
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700906# if its core-file-size limit is not set already.
907# NOTE: Core dumps are written to ramdisk; they will not survive a reboot!
908
Iliyan Malcheve675cfb2014-11-03 17:04:47 -0800909function coredump_setup()
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700910{
911 echo "Getting root...";
912 adb root;
913 adb wait-for-device;
914
915 echo "Remounting root parition read-write...";
916 adb shell mount -w -o remount -t rootfs rootfs;
917 sleep 1;
918 adb wait-for-device;
919 adb shell mkdir -p /cores;
Nick Kralevicha94282c2014-11-04 11:17:20 -0800920 adb shell mount -t tmpfs tmpfs /cores;
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700921 adb shell chmod 0777 /cores;
922
923 echo "Granting SELinux permission to dump in /cores...";
924 adb shell restorecon -R /cores;
925
926 echo "Set core pattern.";
927 adb shell 'echo /cores/core.%p > /proc/sys/kernel/core_pattern';
928
929 echo "Done."
930}
931
Iliyan Malchevaf5de972014-11-04 20:57:37 -0800932# coredump_enable - enable core dumps for the specified process
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700933# $1 = PID of process (e.g., $(pid mediaserver))
934#
Iliyan Malchevaf5de972014-11-04 20:57:37 -0800935# NOTE: coredump_setup must have been called as well for a core
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700936# dump to actually be generated.
937
Iliyan Malchevaf5de972014-11-04 20:57:37 -0800938function coredump_enable()
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700939{
940 local PID=$1;
941 if [ -z "$PID" ]; then
942 printf "Expecting a PID!\n";
943 return;
944 fi;
945 echo "Setting core limit for $PID to infinite...";
946 adb shell prlimit $PID 4 -1 -1
947}
948
949# core - send SIGV and pull the core for process
950# $1 = PID of process (e.g., $(pid mediaserver))
951#
Iliyan Malchevaf5de972014-11-04 20:57:37 -0800952# NOTE: coredump_setup must be called once per boot for core dumps to be
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700953# enabled globally.
954
955function core()
956{
957 local PID=$1;
958
959 if [ -z "$PID" ]; then
960 printf "Expecting a PID!\n";
961 return;
962 fi;
963
964 local CORENAME=core.$PID;
965 local COREPATH=/cores/$CORENAME;
966 local SIG=SEGV;
967
Iliyan Malchevaf5de972014-11-04 20:57:37 -0800968 coredump_enable $1;
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700969
970 local done=0;
971 while [ $(adb shell "[ -d /proc/$PID ] && echo -n yes") ]; do
972 printf "\tSending SIG%s to %d...\n" $SIG $PID;
973 adb shell kill -$SIG $PID;
974 sleep 1;
975 done;
976
977 adb shell "while [ ! -f $COREPATH ] ; do echo waiting for $COREPATH to be generated; sleep 1; done"
978 echo "Done: core is under $COREPATH on device.";
979}
980
Christopher Tate744ee802009-11-12 15:33:08 -0800981# systemstack - dump the current stack trace of all threads in the system process
982# to the usual ANR traces file
983function systemstack()
984{
Jeff Sharkeyf5824372013-02-19 17:00:46 -0800985 stacks system_server
986}
987
988function stacks()
989{
990 if [[ $1 =~ ^[0-9]+$ ]] ; then
991 local PID="$1"
992 elif [ "$1" ] ; then
Jeff Brownb12c2e52013-08-19 15:14:16 -0700993 local PIDLIST="$(pid $1)"
994 if [[ $PIDLIST =~ ^[0-9]+$ ]] ; then
995 local PID="$PIDLIST"
996 elif [ "$PIDLIST" ] ; then
997 echo "more than one process: $1"
998 else
999 echo "no such process: $1"
1000 fi
Jeff Sharkeyf5824372013-02-19 17:00:46 -08001001 else
1002 echo "usage: stacks [pid|process name]"
1003 fi
1004
1005 if [ "$PID" ] ; then
Jeff Brownb12c2e52013-08-19 15:14:16 -07001006 # Determine whether the process is native
1007 if adb shell ls -l /proc/$PID/exe | grep -q /system/bin/app_process ; then
1008 # Dump stacks of Dalvik process
1009 local TRACES=/data/anr/traces.txt
1010 local ORIG=/data/anr/traces.orig
1011 local TMP=/data/anr/traces.tmp
Jeff Sharkeyf5824372013-02-19 17:00:46 -08001012
Jeff Brownb12c2e52013-08-19 15:14:16 -07001013 # Keep original traces to avoid clobbering
1014 adb shell mv $TRACES $ORIG
Jeff Sharkeyf5824372013-02-19 17:00:46 -08001015
Jeff Brownb12c2e52013-08-19 15:14:16 -07001016 # Make sure we have a usable file
1017 adb shell touch $TRACES
1018 adb shell chmod 666 $TRACES
Jeff Sharkeyf5824372013-02-19 17:00:46 -08001019
Jeff Brownb12c2e52013-08-19 15:14:16 -07001020 # Dump stacks and wait for dump to finish
1021 adb shell kill -3 $PID
1022 adb shell notify $TRACES >/dev/null
Jeff Sharkeyf5824372013-02-19 17:00:46 -08001023
Jeff Brownb12c2e52013-08-19 15:14:16 -07001024 # Restore original stacks, and show current output
1025 adb shell mv $TRACES $TMP
1026 adb shell mv $ORIG $TRACES
1027 adb shell cat $TMP
1028 else
1029 # Dump stacks of native process
Michael Wrightaeed7212014-06-19 19:58:12 -07001030 local USE64BIT="$(is64bit $PID)"
1031 adb shell debuggerd$USE64BIT -b $PID
Jeff Brownb12c2e52013-08-19 15:14:16 -07001032 fi
Jeff Sharkeyf5824372013-02-19 17:00:46 -08001033 fi
Christopher Tate744ee802009-11-12 15:33:08 -08001034}
1035
John Michelau50200252012-11-09 11:48:04 -06001036function gdbwrapper()
1037{
Ben Chengfba67bf2014-02-25 10:27:07 -08001038 local GDB_CMD="$1"
1039 shift 1
1040 $GDB_CMD -x "$@"
John Michelau50200252012-11-09 11:48:04 -06001041}
1042
Brigid Smith0a2712d2014-05-28 14:36:43 -07001043function get_symbols_directory()
1044{
1045 echo $(get_abs_build_var TARGET_OUT_UNSTRIPPED)
1046}
1047
Michael Wrightaeed7212014-06-19 19:58:12 -07001048# Read the ELF header from /proc/$PID/exe to determine if the process is
1049# 64-bit.
Ben Chengfba67bf2014-02-25 10:27:07 -08001050function is64bit()
1051{
1052 local PID="$1"
1053 if [ "$PID" ] ; then
Michael Wrightaeed7212014-06-19 19:58:12 -07001054 if [[ "$(adb shell cat /proc/$PID/exe | xxd -l 1 -s 4 -ps)" -eq "02" ]] ; then
Ben Chengfba67bf2014-02-25 10:27:07 -08001055 echo "64"
1056 else
1057 echo ""
1058 fi
1059 else
1060 echo ""
1061 fi
1062}
1063
Dmitriy Ivanov9b8e4b32014-10-30 22:00:17 -07001064function adb_get_product_device() {
Dmitriy Ivanov8cde5282014-11-12 14:16:12 -08001065 local candidate=`adb shell getprop ro.product.device | sed s/.$//`
1066 if [ -z $candidate ]; then
1067 candidate=`adb shell getprop ro.hardware | sed s/.$//`
1068 fi
1069 echo $candidate
Dmitriy Ivanov9b8e4b32014-10-30 22:00:17 -07001070}
1071
1072# returns 0 when process is not traced
1073function adb_get_traced_by() {
1074 echo `adb shell cat /proc/$1/status | grep -e "^TracerPid:" | sed "s/^TracerPid:\t//" | sed s/.$//`
1075}
1076
1077function gdbclient() {
1078 # TODO:
1079 # 1. Check for ANDROID_SERIAL/multiple devices
1080 local PROCESS_NAME="n/a"
1081 local PID=$1
1082 local PORT=5039
1083 if [ -z "$PID" ]; then
1084 echo "Usage: gdbclient <pid|processname> [port number]"
1085 return -1
1086 fi
1087 local DEVICE=$(adb_get_product_device)
1088
1089 if [ -z "$DEVICE" ]; then
1090 echo "Error: Unable to get device name. Please check if device is connected and ANDROID_SERIAL is set."
1091 return -2
1092 fi
1093
1094 if [ -n "$2" ]; then
1095 PORT=$2
1096 fi
1097
1098 local ROOT=$(gettop)
1099 if [ -z "$ROOT" ]; then
1100 # This is for the situation with downloaded symbols (from the build server)
1101 # we check if they are available.
1102 ROOT=`realpath .`
1103 fi
1104
1105 local OUT_ROOT="$ROOT/out/target/product/$DEVICE"
1106 local SYMBOLS_DIR="$OUT_ROOT/symbols"
Dmitriy Ivanov8cde5282014-11-12 14:16:12 -08001107 local IS_TAPAS_USER="$(get_build_var TARGET_BUILD_APPS)"
1108 local TAPAS_SYMBOLS_DIR=
1109
1110 if [ $IS_TAPAS_USER ]; then
1111 TAPAS_SYMBOLS_DIR=$(get_symbols_directory)
1112 fi
Dmitriy Ivanov9b8e4b32014-10-30 22:00:17 -07001113
1114 if [ ! -d $SYMBOLS_DIR ]; then
Dmitriy Ivanov8cde5282014-11-12 14:16:12 -08001115 if [ $IS_TAPAS_USER ]; then
1116 mkdir -p $SYMBOLS_DIR/system/bin
1117 else
1118 echo "Error: couldn't find symbols: $SYMBOLS_DIR does not exist or is not a directory."
1119 return -3
1120 fi
Dmitriy Ivanov9b8e4b32014-10-30 22:00:17 -07001121 fi
1122
1123 # let's figure out which executable we are about to debug
1124
1125 # check if user specified a name -> resolve to pid
1126 if [[ ! "$PID" =~ ^[0-9]+$ ]] ; then
1127 PROCESS_NAME=$PID
1128 PID=$(pid --exact $PROCESS_NAME)
1129 if [ -z "$PID" ]; then
1130 echo "Error: couldn't resolve pid by process name: $PROCESS_NAME"
1131 return -4
Dmitriy Ivanovdfff1702015-01-22 13:22:17 -08001132 else
1133 echo "Resolved pid for $PROCESS_NAME is $PID"
Dmitriy Ivanov9b8e4b32014-10-30 22:00:17 -07001134 fi
1135 fi
1136
1137 local EXE=`adb shell readlink /proc/$PID/exe | sed s/.$//`
Dmitriy Ivanovdfff1702015-01-22 13:22:17 -08001138
1139 if [ -z "$EXE" ]; then
1140 echo "Error: no such pid=$PID - is process still alive?"
1141 return -4
1142 fi
1143
Dmitriy Ivanov9b8e4b32014-10-30 22:00:17 -07001144 local LOCAL_EXE_PATH=$SYMBOLS_DIR$EXE
1145
1146 if [ ! -f $LOCAL_EXE_PATH ]; then
Dmitriy Ivanov8cde5282014-11-12 14:16:12 -08001147 if [ $IS_TAPAS_USER ]; then
1148 adb pull $EXE $LOCAL_EXE_PATH
1149 else
1150 echo "Error: unable to find symbols for executable $EXE: file $LOCAL_EXE_PATH does not exist"
1151 return -5
1152 fi
Dmitriy Ivanov9b8e4b32014-10-30 22:00:17 -07001153 fi
1154
1155 local USE64BIT=""
1156
1157 if [[ "$(file $LOCAL_EXE_PATH)" =~ 64-bit ]]; then
1158 USE64BIT="64"
1159 fi
1160
Dmitriy Ivanov8cde5282014-11-12 14:16:12 -08001161 # and now linker for tapas users...
1162 if [ -n "$IS_TAPAS_USER" -a ! -f "$SYMBOLS_DIR/system/bin/linker$USE64BIT" ]; then
1163 adb pull /system/bin/linker$USE64BIT $SYMBOLS_DIR/system/bin/linker$USE64BIT
1164 fi
1165
Dmitriy Ivanov9b8e4b32014-10-30 22:00:17 -07001166 local GDB=
1167 local GDB64=
1168 local CPU_ABI=`adb shell getprop ro.product.cpu.abilist | sed s/.$//`
1169 # TODO: we assume these are available via $PATH
1170 if [[ $CPU_ABI =~ (^|,)arm64 ]]; then
1171 GDB=arm-linux-androideabi-gdb
1172 GDB64=aarch64-linux-android-gdb
1173 elif [[ $CPU_ABI =~ (^|,)arm ]]; then
1174 GDB=arm-linux-androideabi-gdb
1175 elif [[ $CPU_ABI =~ (^|,)x86_64 ]]; then
Pirama Arumuga Nainar8c346f62015-01-05 14:33:33 -08001176 GDB=x86_64-linux-android-gdb
Dmitriy Ivanov9b8e4b32014-10-30 22:00:17 -07001177 elif [[ $CPU_ABI =~ (^|,)x86 ]]; then
Pirama Arumuga Nainar8c346f62015-01-05 14:33:33 -08001178 GDB=x86_64-linux-android-gdb
Dmitriy Ivanov9b8e4b32014-10-30 22:00:17 -07001179 elif [[ $CPU_ABI =~ (^|,)mips64 ]]; then
1180 GDB=mipsel-linux-android-gdb
1181 GDB64=mips64el-linux-android-gdb
1182 elif [[ $CPU_ABI =~ (^|,)mips ]]; then
1183 GDB=mipsel-linux-android-gdb
1184 else
1185 echo "Error: unrecognized cpu.abilist: $CPU_ABI"
1186 return -6
1187 fi
1188
1189 # TODO: check if tracing process is gdbserver and not some random strace...
Dmitriy Ivanov8cde5282014-11-12 14:16:12 -08001190 if [ "$(adb_get_traced_by $PID)" -eq 0 ]; then
Dmitriy Ivanov9b8e4b32014-10-30 22:00:17 -07001191 # start gdbserver
1192 echo "Starting gdbserver..."
1193 # TODO: check if adb is already listening $PORT
1194 # to avoid unnecessary calls
1195 echo ". adb forward for port=$PORT..."
1196 adb forward tcp:$PORT tcp:$PORT
1197 echo ". starting gdbserver to attach to pid=$PID..."
1198 adb shell gdbserver$USE64BIT :$PORT --attach $PID &
1199 echo ". give it couple of seconds to start..."
1200 sleep 2
1201 echo ". done"
1202 else
1203 echo "It looks like gdbserver is already attached to $PID (process is traced), trying to connect to it using local port=$PORT"
Dmitriy Ivanov8cde5282014-11-12 14:16:12 -08001204 adb forward tcp:$PORT tcp:$PORT
Dmitriy Ivanov9b8e4b32014-10-30 22:00:17 -07001205 fi
1206
1207 local OUT_SO_SYMBOLS=$SYMBOLS_DIR/system/lib$USE64BIT
Dmitriy Ivanov8cde5282014-11-12 14:16:12 -08001208 local TAPAS_OUT_SO_SYMBOLS=$TAPAS_SYMBOLS_DIR/system/lib$USE64BIT
Dmitriy Ivanov9b8e4b32014-10-30 22:00:17 -07001209 local OUT_VENDOR_SO_SYMBOLS=$SYMBOLS_DIR/vendor/lib$USE64BIT
1210 local ART_CMD=""
1211
Dmitriy Ivanov8cde5282014-11-12 14:16:12 -08001212 local SOLIB_SYSROOT=$SYMBOLS_DIR
1213 local SOLIB_SEARCHPATH=$OUT_SO_SYMBOLS:$OUT_SO_SYMBOLS/hw:$OUT_SO_SYMBOLS/ssl/engines:$OUT_SO_SYMBOLS/drm:$OUT_SO_SYMBOLS/egl:$OUT_SO_SYMBOLS/soundfx:$OUT_VENDOR_SO_SYMBOLS:$OUT_VENDOR_SO_SYMBOLS/hw:$OUT_VENDOR_SO_SYMBOLS/egl
1214
1215 if [ $IS_TAPAS_USER ]; then
1216 SOLIB_SYSROOT=$TAPAS_SYMBOLS_DIR:$SOLIB_SYSROOT
1217 SOLIB_SEARCHPATH=$TAPAS_OUT_SO_SYMBOLS:$SOLIB_SEARCHPATH
1218 fi
1219
1220 echo >|"$OUT_ROOT/gdbclient.cmds" "set solib-absolute-prefix $SOLIB_SYSROOT"
1221 echo >>"$OUT_ROOT/gdbclient.cmds" "set solib-search-path $SOLIB_SEARCHPATH"
Dmitriy Ivanov9b8e4b32014-10-30 22:00:17 -07001222 local DALVIK_GDB_SCRIPT=$ROOT/development/scripts/gdb/dalvik.gdb
1223 if [ -f $DALVIK_GDB_SCRIPT ]; then
1224 echo >>"$OUT_ROOT/gdbclient.cmds" "source $DALVIK_GDB_SCRIPT"
1225 ART_CMD="art-on"
1226 else
1227 echo "Warning: couldn't find $DALVIK_GDB_SCRIPT - ART debugging options will not be available"
1228 fi
1229 echo >>"$OUT_ROOT/gdbclient.cmds" "target remote :$PORT"
1230 if [[ $EXE =~ (^|/)(app_process|dalvikvm)(|32|64)$ ]]; then
1231 echo >> "$OUT_ROOT/gdbclient.cmds" $ART_CMD
1232 fi
1233
1234 echo >>"$OUT_ROOT/gdbclient.cmds" ""
1235
1236 local WHICH_GDB=$GDB
1237
1238 if [ -n "$USE64BIT" -a -n "$GDB64" ]; then
1239 WHICH_GDB=$GDB64
1240 fi
1241
1242 gdbwrapper $WHICH_GDB "$OUT_ROOT/gdbclient.cmds" "$LOCAL_EXE_PATH"
1243}
1244
Ben Chengfba67bf2014-02-25 10:27:07 -08001245# gdbclient now determines whether the user wants to debug a 32-bit or 64-bit
1246# executable, set up the approriate gdbserver, then invokes the proper host
1247# gdb.
Dmitriy Ivanov9b8e4b32014-10-30 22:00:17 -07001248function gdbclient_old()
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001249{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001250 local OUT_ROOT=$(get_abs_build_var PRODUCT_OUT)
1251 local OUT_SYMBOLS=$(get_abs_build_var TARGET_OUT_UNSTRIPPED)
1252 local OUT_SO_SYMBOLS=$(get_abs_build_var TARGET_OUT_SHARED_LIBRARIES_UNSTRIPPED)
Colin Cross3655a682014-05-22 11:59:10 -07001253 local OUT_VENDOR_SO_SYMBOLS=$(get_abs_build_var TARGET_OUT_VENDOR_SHARED_LIBRARIES_UNSTRIPPED)
Brigid Smith0a2712d2014-05-28 14:36:43 -07001254 local OUT_EXE_SYMBOLS=$(get_symbols_directory)
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001255 local PREBUILTS=$(get_abs_build_var ANDROID_PREBUILTS)
Nick Kralevich0ab21d32011-11-11 09:02:01 -08001256 local ARCH=$(get_build_var TARGET_ARCH)
1257 local GDB
1258 case "$ARCH" in
Nick Kralevich0ab21d32011-11-11 09:02:01 -08001259 arm) GDB=arm-linux-androideabi-gdb;;
Ben Chengfba67bf2014-02-25 10:27:07 -08001260 arm64) GDB=arm-linux-androideabi-gdb; GDB64=aarch64-linux-android-gdb;;
Duane Sand3c4fcd82014-07-22 14:34:00 -07001261 mips|mips64) GDB=mips64el-linux-android-gdb;;
Serban Constantinescu9b68fb22014-01-14 10:33:53 +00001262 x86) GDB=x86_64-linux-android-gdb;;
1263 x86_64) GDB=x86_64-linux-android-gdb;;
Nick Kralevich0ab21d32011-11-11 09:02:01 -08001264 *) echo "Unknown arch $ARCH"; return 1;;
1265 esac
1266
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001267 if [ "$OUT_ROOT" -a "$PREBUILTS" ]; then
1268 local EXE="$1"
1269 if [ "$EXE" ] ; then
1270 EXE=$1
Brigid Smith7a569a62014-06-20 14:12:12 -07001271 if [[ $EXE =~ ^[^/].* ]] ; then
1272 EXE="system/bin/"$EXE
1273 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001274 else
1275 EXE="app_process"
1276 fi
1277
1278 local PORT="$2"
1279 if [ "$PORT" ] ; then
1280 PORT=$2
1281 else
1282 PORT=":5039"
1283 fi
1284
Chris Craik20c136a2012-11-09 18:02:19 -08001285 local PID="$3"
1286 if [ "$PID" ] ; then
1287 if [[ ! "$PID" =~ ^[0-9]+$ ]] ; then
Grace Klobae9d04bf2011-04-30 11:04:05 -07001288 PID=`pid $3`
Chris Craik20c136a2012-11-09 18:02:19 -08001289 if [[ ! "$PID" =~ ^[0-9]+$ ]] ; then
1290 # that likely didn't work because of returning multiple processes
1291 # try again, filtering by root processes (don't contain colon)
Mathias Agopian44583272013-08-27 14:15:50 -07001292 PID=`adb shell ps | \grep $3 | \grep -v ":" | awk '{print $2}'`
Chris Craik20c136a2012-11-09 18:02:19 -08001293 if [[ ! "$PID" =~ ^[0-9]+$ ]]
1294 then
1295 echo "Couldn't resolve '$3' to single PID"
1296 return 1
1297 else
1298 echo ""
1299 echo "WARNING: multiple processes matching '$3' observed, using root process"
1300 echo ""
1301 fi
1302 fi
Grace Klobae9d04bf2011-04-30 11:04:05 -07001303 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001304 adb forward "tcp$PORT" "tcp$PORT"
Ben Chengfba67bf2014-02-25 10:27:07 -08001305 local USE64BIT="$(is64bit $PID)"
1306 adb shell gdbserver$USE64BIT $PORT --attach $PID &
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001307 sleep 2
1308 else
1309 echo ""
1310 echo "If you haven't done so already, do this first on the device:"
1311 echo " gdbserver $PORT /system/bin/$EXE"
1312 echo " or"
Chris Craik20c136a2012-11-09 18:02:19 -08001313 echo " gdbserver $PORT --attach <PID>"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001314 echo ""
1315 fi
1316
Colin Cross84480ad2014-04-10 12:51:39 -07001317 OUT_SO_SYMBOLS=$OUT_SO_SYMBOLS$USE64BIT
Colin Crossa58f8e02014-06-20 13:33:36 -07001318 OUT_VENDOR_SO_SYMBOLS=$OUT_VENDOR_SO_SYMBOLS$USE64BIT
Colin Cross84480ad2014-04-10 12:51:39 -07001319
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001320 echo >|"$OUT_ROOT/gdbclient.cmds" "set solib-absolute-prefix $OUT_SYMBOLS"
Colin Cross3655a682014-05-22 11:59:10 -07001321 echo >>"$OUT_ROOT/gdbclient.cmds" "set solib-search-path $OUT_SO_SYMBOLS:$OUT_SO_SYMBOLS/hw:$OUT_SO_SYMBOLS/ssl/engines:$OUT_SO_SYMBOLS/drm:$OUT_SO_SYMBOLS/egl:$OUT_SO_SYMBOLS/soundfx:$OUT_VENDOR_SO_SYMBOLS:$OUT_VENDOR_SO_SYMBOLS/hw:$OUT_VENDOR_SO_SYMBOLS/egl"
Ben Cheng72398162013-06-24 14:36:21 -07001322 echo >>"$OUT_ROOT/gdbclient.cmds" "source $ANDROID_BUILD_TOP/development/scripts/gdb/dalvik.gdb"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001323 echo >>"$OUT_ROOT/gdbclient.cmds" "target remote $PORT"
Christopher Ferris855d27f2014-10-03 17:29:27 -07001324 # Enable special debugging for ART processes.
1325 if [[ $EXE =~ (^|/)(app_process|dalvikvm)(|32|64)$ ]]; then
1326 echo >> "$OUT_ROOT/gdbclient.cmds" "art-on"
1327 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001328 echo >>"$OUT_ROOT/gdbclient.cmds" ""
1329
Ben Chengfba67bf2014-02-25 10:27:07 -08001330 local WHICH_GDB=
1331 # 64-bit exe found
1332 if [ "$USE64BIT" != "" ] ; then
1333 WHICH_GDB=$ANDROID_TOOLCHAIN/$GDB64
1334 # 32-bit exe / 32-bit platform
1335 elif [ "$(get_build_var TARGET_2ND_ARCH)" = "" ]; then
1336 WHICH_GDB=$ANDROID_TOOLCHAIN/$GDB
1337 # 32-bit exe / 64-bit platform
1338 else
1339 WHICH_GDB=$ANDROID_TOOLCHAIN_2ND_ARCH/$GDB
1340 fi
Brigid Smith0a2712d2014-05-28 14:36:43 -07001341
Ben Chengfba67bf2014-02-25 10:27:07 -08001342 gdbwrapper $WHICH_GDB "$OUT_ROOT/gdbclient.cmds" "$OUT_EXE_SYMBOLS/$EXE"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001343 else
1344 echo "Unable to determine build system output dir."
1345 fi
1346
1347}
1348
1349case `uname -s` in
1350 Darwin)
1351 function sgrep()
1352 {
Jeff Brown46cbd202014-07-26 15:15:41 -07001353 find -E . -name .repo -prune -o -name .git -prune -o -type f -iregex '.*\.(c|h|cc|cpp|S|java|xml|sh|mk|aidl)' -print0 | xargs -0 grep --color -n "$@"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001354 }
1355
1356 ;;
1357 *)
1358 function sgrep()
1359 {
Jeff Brown46cbd202014-07-26 15:15:41 -07001360 find . -name .repo -prune -o -name .git -prune -o -type f -iregex '.*\.\(c\|h\|cc\|cpp\|S\|java\|xml\|sh\|mk\|aidl\)' -print0 | xargs -0 grep --color -n "$@"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001361 }
1362 ;;
1363esac
1364
Raghu Gandham8da43102012-07-25 19:57:22 -07001365function gettargetarch
1366{
1367 get_build_var TARGET_ARCH
1368}
1369
Jon Boekenoogencbca56f2014-04-07 10:57:38 -07001370function ggrep()
1371{
1372 find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -type f -name "*\.gradle" -print0 | xargs -0 grep --color -n "$@"
1373}
1374
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001375function jgrep()
1376{
Anatolii Shuba91c72d22013-07-05 16:09:25 +03001377 find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -type f -name "*\.java" -print0 | xargs -0 grep --color -n "$@"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001378}
1379
1380function cgrep()
1381{
Dan Albert01961192014-11-22 10:16:01 -08001382 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' \) -print0 | xargs -0 grep --color -n "$@"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001383}
1384
1385function resgrep()
1386{
Anatolii Shuba91c72d22013-07-05 16:09:25 +03001387 for dir in `find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -name res -type d`; do find $dir -type f -name '*\.xml' -print0 | xargs -0 grep --color -n "$@"; done;
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001388}
1389
Jeff Sharkey50b61e92013-03-08 10:20:47 -08001390function mangrep()
1391{
1392 find . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o -type f -name 'AndroidManifest.xml' -print0 | xargs -0 grep --color -n "$@"
1393}
1394
Alex Klyubinba5fc8e2013-05-06 14:11:48 -07001395function sepgrep()
1396{
1397 find . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o -name sepolicy -type d -print0 | xargs -0 grep --color -n -r --exclude-dir=\.git "$@"
1398}
1399
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001400case `uname -s` in
1401 Darwin)
1402 function mgrep()
1403 {
Ying Wang324c2b22012-08-17 15:03:20 -07001404 find -E . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o -type f -iregex '.*/(Makefile|Makefile\..*|.*\.make|.*\.mak|.*\.mk)' -print0 | xargs -0 grep --color -n "$@"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001405 }
1406
1407 function treegrep()
1408 {
Joe Onoratof50e84b2011-03-15 14:15:46 -07001409 find -E . -name .repo -prune -o -name .git -prune -o -type f -iregex '.*\.(c|h|cpp|S|java|xml)' -print0 | xargs -0 grep --color -n -i "$@"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001410 }
1411
1412 ;;
1413 *)
1414 function mgrep()
1415 {
Ying Wang324c2b22012-08-17 15:03:20 -07001416 find . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o -regextype posix-egrep -iregex '(.*\/Makefile|.*\/Makefile\..*|.*\.make|.*\.mak|.*\.mk)' -type f -print0 | xargs -0 grep --color -n "$@"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001417 }
1418
1419 function treegrep()
1420 {
Joe Onoratof50e84b2011-03-15 14:15:46 -07001421 find . -name .repo -prune -o -name .git -prune -o -regextype posix-egrep -iregex '.*\.(c|h|cpp|S|java|xml)' -type f -print0 | xargs -0 grep --color -n -i "$@"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001422 }
1423
1424 ;;
1425esac
1426
1427function getprebuilt
1428{
1429 get_abs_build_var ANDROID_PREBUILTS
1430}
1431
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001432function tracedmdump()
1433{
1434 T=$(gettop)
1435 if [ ! "$T" ]; then
1436 echo "Couldn't locate the top of the tree. Try setting TOP."
1437 return
1438 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001439 local prebuiltdir=$(getprebuilt)
Raghu Gandham8da43102012-07-25 19:57:22 -07001440 local arch=$(gettargetarch)
1441 local KERNEL=$T/prebuilts/qemu-kernel/$arch/vmlinux-qemu
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001442
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001443 local TRACE=$1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001444 if [ ! "$TRACE" ] ; then
1445 echo "usage: tracedmdump tracename"
1446 return
1447 fi
1448
Jack Veenstra60116fc2009-04-09 18:12:34 -07001449 if [ ! -r "$KERNEL" ] ; then
1450 echo "Error: cannot find kernel: '$KERNEL'"
1451 return
1452 fi
1453
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001454 local BASETRACE=$(basename $TRACE)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001455 if [ "$BASETRACE" = "$TRACE" ] ; then
1456 TRACE=$ANDROID_PRODUCT_OUT/traces/$TRACE
1457 fi
1458
1459 echo "post-processing traces..."
1460 rm -f $TRACE/qtrace.dexlist
1461 post_trace $TRACE
1462 if [ $? -ne 0 ]; then
1463 echo "***"
1464 echo "*** Error: malformed trace. Did you remember to exit the emulator?"
1465 echo "***"
1466 return
1467 fi
1468 echo "generating dexlist output..."
1469 /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
1470 echo "generating dmtrace data..."
1471 q2dm -r $ANDROID_PRODUCT_OUT/symbols $TRACE $KERNEL $TRACE/dmtrace || return
1472 echo "generating html file..."
1473 dmtracedump -h $TRACE/dmtrace >| $TRACE/dmtrace.html || return
1474 echo "done, see $TRACE/dmtrace.html for details"
1475 echo "or run:"
1476 echo " traceview $TRACE/dmtrace"
1477}
1478
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001479# communicate with a running device or emulator, set up necessary state,
1480# and run the hat command.
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001481function runhat()
1482{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001483 # process standard adb options
1484 local adbTarget=""
Andy McFaddenb6289852010-07-12 08:00:19 -07001485 if [ "$1" = "-d" -o "$1" = "-e" ]; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001486 adbTarget=$1
1487 shift 1
Andy McFaddenb6289852010-07-12 08:00:19 -07001488 elif [ "$1" = "-s" ]; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001489 adbTarget="$1 $2"
1490 shift 2
1491 fi
1492 local adbOptions=${adbTarget}
Dianne Hackborn6b9549f2012-09-26 15:00:59 -07001493 #echo adbOptions = ${adbOptions}
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001494
1495 # runhat options
1496 local targetPid=$1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001497
1498 if [ "$targetPid" = "" ]; then
Andy McFaddenb6289852010-07-12 08:00:19 -07001499 echo "Usage: runhat [ -d | -e | -s serial ] target-pid"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001500 return
1501 fi
1502
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001503 # confirm hat is available
1504 if [ -z $(which hat) ]; then
1505 echo "hat is not available in this configuration."
1506 return
1507 fi
1508
Andy McFaddenb6289852010-07-12 08:00:19 -07001509 # issue "am" command to cause the hprof dump
Nick Kralevich9948b1e2014-07-18 15:45:38 -07001510 local devFile=/data/local/tmp/hprof-$targetPid
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001511 echo "Poking $targetPid and waiting for data..."
Dianne Hackborn6b9549f2012-09-26 15:00:59 -07001512 echo "Storing data at $devFile"
Andy McFaddenb6289852010-07-12 08:00:19 -07001513 adb ${adbOptions} shell am dumpheap $targetPid $devFile
The Android Open Source Project88b60792009-03-03 19:28:42 -08001514 echo "Press enter when logcat shows \"hprof: heap dump completed\""
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001515 echo -n "> "
1516 read
1517
The Android Open Source Project88b60792009-03-03 19:28:42 -08001518 local localFile=/tmp/$$-hprof
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001519
The Android Open Source Project88b60792009-03-03 19:28:42 -08001520 echo "Retrieving file $devFile..."
1521 adb ${adbOptions} pull $devFile $localFile
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001522
The Android Open Source Project88b60792009-03-03 19:28:42 -08001523 adb ${adbOptions} shell rm $devFile
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001524
The Android Open Source Project88b60792009-03-03 19:28:42 -08001525 echo "Running hat on $localFile"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001526 echo "View the output by pointing your browser at http://localhost:7000/"
1527 echo ""
Dianne Hackborn6e4e1bb2011-11-10 15:19:51 -08001528 hat -JXmx512m $localFile
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001529}
1530
1531function getbugreports()
1532{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001533 local reports=(`adb shell ls /sdcard/bugreports | tr -d '\r'`)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001534
1535 if [ ! "$reports" ]; then
1536 echo "Could not locate any bugreports."
1537 return
1538 fi
1539
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001540 local report
1541 for report in ${reports[@]}
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001542 do
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001543 echo "/sdcard/bugreports/${report}"
1544 adb pull /sdcard/bugreports/${report} ${report}
1545 gunzip ${report}
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001546 done
1547}
1548
Victoria Lease1b296b42012-08-21 15:44:06 -07001549function getsdcardpath()
1550{
1551 adb ${adbOptions} shell echo -n \$\{EXTERNAL_STORAGE\}
1552}
1553
1554function getscreenshotpath()
1555{
1556 echo "$(getsdcardpath)/Pictures/Screenshots"
1557}
1558
1559function getlastscreenshot()
1560{
1561 local screenshot_path=$(getscreenshotpath)
1562 local screenshot=`adb ${adbOptions} ls ${screenshot_path} | grep Screenshot_[0-9-]*.*\.png | sort -rk 3 | cut -d " " -f 4 | head -n 1`
1563 if [ "$screenshot" = "" ]; then
1564 echo "No screenshots found."
1565 return
1566 fi
1567 echo "${screenshot}"
1568 adb ${adbOptions} pull ${screenshot_path}/${screenshot}
1569}
1570
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001571function startviewserver()
1572{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001573 local port=4939
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001574 if [ $# -gt 0 ]; then
1575 port=$1
1576 fi
1577 adb shell service call window 1 i32 $port
1578}
1579
1580function stopviewserver()
1581{
1582 adb shell service call window 2
1583}
1584
1585function isviewserverstarted()
1586{
1587 adb shell service call window 3
1588}
1589
Romain Guyb84049a2010-10-04 16:56:11 -07001590function key_home()
1591{
1592 adb shell input keyevent 3
1593}
1594
1595function key_back()
1596{
1597 adb shell input keyevent 4
1598}
1599
1600function key_menu()
1601{
1602 adb shell input keyevent 82
1603}
1604
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001605function smoketest()
1606{
1607 if [ ! "$ANDROID_PRODUCT_OUT" ]; then
1608 echo "Couldn't locate output files. Try running 'lunch' first." >&2
1609 return
1610 fi
1611 T=$(gettop)
1612 if [ ! "$T" ]; then
1613 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
1614 return
1615 fi
1616
Ying Wang9cd17642012-12-13 10:52:07 -08001617 (\cd "$T" && mmm tests/SmokeTest) &&
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001618 adb uninstall com.android.smoketest > /dev/null &&
1619 adb uninstall com.android.smoketest.tests > /dev/null &&
1620 adb install $ANDROID_PRODUCT_OUT/data/app/SmokeTestApp.apk &&
1621 adb install $ANDROID_PRODUCT_OUT/data/app/SmokeTest.apk &&
1622 adb shell am instrument -w com.android.smoketest.tests/android.test.InstrumentationTestRunner
1623}
1624
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001625# simple shortcut to the runtest command
1626function runtest()
1627{
1628 T=$(gettop)
1629 if [ ! "$T" ]; then
1630 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
1631 return
1632 fi
Brett Chabot3fb149d2009-10-21 20:05:26 -07001633 ("$T"/development/testrunner/runtest.py $@)
Brett Chabot762748c2009-03-27 10:25:11 -07001634}
1635
The Android Open Source Project88b60792009-03-03 19:28:42 -08001636function godir () {
1637 if [[ -z "$1" ]]; then
1638 echo "Usage: godir <regex>"
1639 return
1640 fi
Brian Carlstromb9915a62010-01-29 16:39:32 -08001641 T=$(gettop)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001642 if [[ ! -f $T/filelist ]]; then
1643 echo -n "Creating index..."
Ying Wang9cd17642012-12-13 10:52:07 -08001644 (\cd $T; find . -wholename ./out -prune -o -wholename ./.repo -prune -o -type f > filelist)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001645 echo " Done"
1646 echo ""
1647 fi
1648 local lines
Jeff Hamilton293f9392011-11-18 17:15:25 -06001649 lines=($(\grep "$1" $T/filelist | sed -e 's/\/[^/]*$//' | sort | uniq))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001650 if [[ ${#lines[@]} = 0 ]]; then
1651 echo "Not found"
1652 return
1653 fi
1654 local pathname
1655 local choice
1656 if [[ ${#lines[@]} > 1 ]]; then
1657 while [[ -z "$pathname" ]]; do
1658 local index=1
1659 local line
1660 for line in ${lines[@]}; do
1661 printf "%6s %s\n" "[$index]" $line
Doug Zongker29034982011-04-22 08:16:56 -07001662 index=$(($index + 1))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001663 done
1664 echo
1665 echo -n "Select one: "
1666 unset choice
1667 read choice
1668 if [[ $choice -gt ${#lines[@]} || $choice -lt 1 ]]; then
1669 echo "Invalid choice"
1670 continue
1671 fi
Kan-Ru Chen07453762010-07-05 15:53:47 +08001672 pathname=${lines[$(($choice-1))]}
The Android Open Source Project88b60792009-03-03 19:28:42 -08001673 done
1674 else
The Android Open Source Project88b60792009-03-03 19:28:42 -08001675 pathname=${lines[0]}
1676 fi
Ying Wang9cd17642012-12-13 10:52:07 -08001677 \cd $T/$pathname
The Android Open Source Project88b60792009-03-03 19:28:42 -08001678}
1679
Neil Fuller46e00ea2014-10-16 10:23:03 +01001680# Force JAVA_HOME to point to java 1.7 if it isn't already set.
Narayan Kamath9260bba2014-01-17 10:05:25 +00001681#
1682# Note that the MacOS path for java 1.7 includes a minor revision number (sigh).
1683# For some reason, installing the JDK doesn't make it show up in the
1684# JavaVM.framework/Versions/1.7/ folder.
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -05001685function set_java_home() {
Narayan Kamath9260bba2014-01-17 10:05:25 +00001686 # Clear the existing JAVA_HOME value if we set it ourselves, so that
Narayan Kamathc84889b2014-04-01 14:16:26 +01001687 # we can reset it later, depending on the version of java the build
1688 # system needs.
Narayan Kamath9260bba2014-01-17 10:05:25 +00001689 #
1690 # If we don't do this, the JAVA_HOME value set by the first call to
1691 # build/envsetup.sh will persist forever.
1692 if [ -n "$ANDROID_SET_JAVA_HOME" ]; then
1693 export JAVA_HOME=""
1694 fi
1695
Andy McFaddenbd960942010-06-24 12:52:51 -07001696 if [ ! "$JAVA_HOME" ]; then
Neil Fuller46e00ea2014-10-16 10:23:03 +01001697 case `uname -s` in
1698 Darwin)
1699 export JAVA_HOME=$(/usr/libexec/java_home -v 1.7)
1700 ;;
1701 *)
1702 export JAVA_HOME=/usr/lib/jvm/java-7-openjdk-amd64
1703 ;;
1704 esac
Narayan Kamath9260bba2014-01-17 10:05:25 +00001705
1706 # Keep track of the fact that we set JAVA_HOME ourselves, so that
1707 # we can change it on the next envsetup.sh, if required.
1708 export ANDROID_SET_JAVA_HOME=true
Jeff Hamilton04be0d82010-06-07 15:03:54 -05001709 fi
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -05001710}
Jeff Hamilton04be0d82010-06-07 15:03:54 -05001711
Alex Rayf0d08eb2013-03-08 15:15:06 -08001712# Print colored exit condition
1713function pez {
Michael Wrighteb733842013-03-08 17:34:02 -08001714 "$@"
1715 local retval=$?
1716 if [ $retval -ne 0 ]
1717 then
1718 echo -e "\e[0;31mFAILURE\e[00m"
1719 else
1720 echo -e "\e[0;32mSUCCESS\e[00m"
1721 fi
1722 return $retval
Alex Rayf0d08eb2013-03-08 15:15:06 -08001723}
1724
Ying Wanged21d4c2014-08-24 22:14:19 -07001725function get_make_command()
1726{
1727 echo command make
1728}
1729
Ed Heylcc6be0a2014-06-18 14:55:58 -07001730function make()
1731{
1732 local start_time=$(date +"%s")
Ying Wanged21d4c2014-08-24 22:14:19 -07001733 $(get_make_command) "$@"
Ed Heylcc6be0a2014-06-18 14:55:58 -07001734 local ret=$?
1735 local end_time=$(date +"%s")
1736 local tdiff=$(($end_time-$start_time))
1737 local hours=$(($tdiff / 3600 ))
1738 local mins=$((($tdiff % 3600) / 60))
1739 local secs=$(($tdiff % 60))
1740 echo
1741 if [ $ret -eq 0 ] ; then
Dan Albertb59995d2014-11-08 22:41:52 -08001742 if [ $(uname) != "Darwin" ]; then
1743 echo -n -e "\e[0;32m#### make completed successfully "
1744 else
1745 echo -n -e "#### make completed successfully "
1746 fi
Ed Heylcc6be0a2014-06-18 14:55:58 -07001747 else
Dan Albertb59995d2014-11-08 22:41:52 -08001748 if [ $(uname) != "Darwin" ]; then
1749 echo -n -e "\e[0;31m#### make failed to build some targets "
1750 else
1751 echo -n -e "#### make failed to build some targets "
1752 fi
Ed Heylcc6be0a2014-06-18 14:55:58 -07001753 fi
1754 if [ $hours -gt 0 ] ; then
1755 printf "(%02g:%02g:%02g (hh:mm:ss))" $hours $mins $secs
1756 elif [ $mins -gt 0 ] ; then
1757 printf "(%02g:%02g (mm:ss))" $mins $secs
1758 elif [ $secs -gt 0 ] ; then
1759 printf "(%s seconds)" $secs
1760 fi
Dan Albertb59995d2014-11-08 22:41:52 -08001761 if [ $(uname) != "Darwin" ]; then
1762 echo -e " ####\e[00m"
1763 fi
Ed Heylcc6be0a2014-06-18 14:55:58 -07001764 echo
1765 return $ret
1766}
1767
Raphael Moll70a86b02011-06-20 16:03:14 -07001768if [ "x$SHELL" != "x/bin/bash" ]; then
1769 case `ps -o command -p $$` in
1770 *bash*)
1771 ;;
1772 *)
1773 echo "WARNING: Only bash is supported, use of other shell would lead to erroneous results"
1774 ;;
1775 esac
1776fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001777
1778# Execute the contents of any vendorsetup.sh files we can find.
Ying Wang506410a2014-07-09 15:37:34 -07001779for f in `test -d device && find -L device -maxdepth 4 -name 'vendorsetup.sh' 2> /dev/null` \
1780 `test -d vendor && find -L vendor -maxdepth 4 -name 'vendorsetup.sh' 2> /dev/null`
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001781do
1782 echo "including $f"
1783 . $f
1784done
1785unset f
Kenny Root52aa81c2011-07-15 11:07:06 -07001786
1787addcompletions