blob: ca282b66d9f403eaa1814df8f0bf0107e6b55d2c [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.
The Android Open Source Project88b60792009-03-03 19:28:42 -080017- godir: Go to the directory containing a file.
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070018
19Look at the source to view more functions. The complete list is:
20EOF
21 T=$(gettop)
22 local A
23 A=""
24 for i in `cat $T/build/envsetup.sh | sed -n "/^function /s/function \([a-z_]*\).*/\1/p" | sort`; do
25 A="$A $i"
26 done
27 echo $A
28}
29
30# Get the value of a build variable as an absolute path.
31function get_abs_build_var()
32{
33 T=$(gettop)
34 if [ ! "$T" ]; then
35 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
36 return
37 fi
Ying Wang9cd17642012-12-13 10:52:07 -080038 (\cd $T; CALLED_FROM_SETUP=true BUILD_SYSTEM=build/core \
Ed Heylc6d11f82014-06-27 13:32:39 -070039 command make --no-print-directory -f build/core/config.mk dumpvar-abs-$1)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070040}
41
42# Get the exact value of a build variable.
43function get_build_var()
44{
45 T=$(gettop)
46 if [ ! "$T" ]; then
47 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
48 return
49 fi
Andrew Boie6905e212013-12-19 13:21:46 -080050 (\cd $T; CALLED_FROM_SETUP=true BUILD_SYSTEM=build/core \
Ed Heylc6d11f82014-06-27 13:32:39 -070051 command make --no-print-directory -f build/core/config.mk dumpvar-$1)
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -080052}
53
54# check to see if the supplied product is one we can build
55function check_product()
56{
57 T=$(gettop)
58 if [ ! "$T" ]; then
59 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
60 return
61 fi
Jeff Browne33ba4c2011-07-11 22:11:46 -070062 TARGET_PRODUCT=$1 \
63 TARGET_BUILD_VARIANT= \
64 TARGET_BUILD_TYPE= \
Joe Onoratoda12daf2010-06-09 18:18:31 -070065 TARGET_BUILD_APPS= \
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -080066 get_build_var TARGET_DEVICE > /dev/null
67 # hide successful answers, but allow the errors to show
68}
69
70VARIANT_CHOICES=(user userdebug eng)
71
72# check to see if the supplied variant is valid
73function check_variant()
74{
75 for v in ${VARIANT_CHOICES[@]}
76 do
77 if [ "$v" = "$1" ]
78 then
79 return 0
80 fi
81 done
82 return 1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070083}
84
85function setpaths()
86{
87 T=$(gettop)
88 if [ ! "$T" ]; then
89 echo "Couldn't locate the top of the tree. Try setting TOP."
90 return
91 fi
92
93 ##################################################################
94 # #
95 # Read me before you modify this code #
96 # #
97 # This function sets ANDROID_BUILD_PATHS to what it is adding #
98 # to PATH, and the next time it is run, it removes that from #
99 # PATH. This is required so lunch can be run more than once #
100 # and still have working paths. #
101 # #
102 ##################################################################
103
Raphael Mollc639c782011-06-20 17:25:01 -0700104 # Note: on windows/cygwin, ANDROID_BUILD_PATHS will contain spaces
105 # due to "C:\Program Files" being in the path.
106
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700107 # out with the old
Raphael Mollc639c782011-06-20 17:25:01 -0700108 if [ -n "$ANDROID_BUILD_PATHS" ] ; then
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700109 export PATH=${PATH/$ANDROID_BUILD_PATHS/}
110 fi
Raphael Mollc639c782011-06-20 17:25:01 -0700111 if [ -n "$ANDROID_PRE_BUILD_PATHS" ] ; then
Doug Zongker29034982011-04-22 08:16:56 -0700112 export PATH=${PATH/$ANDROID_PRE_BUILD_PATHS/}
Ying Wangaa1c9b52012-11-26 20:51:59 -0800113 # strip leading ':', if any
114 export PATH=${PATH/:%/}
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500115 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700116
117 # and in with the new
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700118 prebuiltdir=$(getprebuilt)
Jing Yuf5172c72012-03-29 20:45:50 -0700119 gccprebuiltdir=$(get_abs_build_var ANDROID_GCC_PREBUILTS)
Raphael732936d2011-06-22 14:35:32 -0700120
Ben Cheng8bc4c432012-11-16 13:29:13 -0800121 # defined in core/config.mk
122 targetgccversion=$(get_build_var TARGET_GCC_VERSION)
Colin Cross03b424a2014-05-22 11:57:43 -0700123 targetgccversion2=$(get_build_var 2ND_TARGET_GCC_VERSION)
Ben Cheng15266702012-12-10 16:04:39 -0800124 export TARGET_GCC_VERSION=$targetgccversion
Ben Cheng8bc4c432012-11-16 13:29:13 -0800125
Raphael Mollc639c782011-06-20 17:25:01 -0700126 # The gcc toolchain does not exists for windows/cygwin. In this case, do not reference it.
Ben Chengfba67bf2014-02-25 10:27:07 -0800127 export ANDROID_TOOLCHAIN=
128 export ANDROID_TOOLCHAIN_2ND_ARCH=
David 'Digit' Turner2056c252012-04-17 14:50:47 +0200129 local ARCH=$(get_build_var TARGET_ARCH)
130 case $ARCH in
Pavel Chupinc1a56642013-08-23 16:49:21 +0400131 x86) toolchaindir=x86/x86_64-linux-android-$targetgccversion/bin
Mark D Horn7d0ede72012-03-14 14:20:30 -0700132 ;;
Pavel Chupinfd82a492012-11-26 09:50:07 +0400133 x86_64) toolchaindir=x86/x86_64-linux-android-$targetgccversion/bin
134 ;;
Ben Cheng8bc4c432012-11-16 13:29:13 -0800135 arm) toolchaindir=arm/arm-linux-androideabi-$targetgccversion/bin
David 'Digit' Turner2056c252012-04-17 14:50:47 +0200136 ;;
Ben Chengfba67bf2014-02-25 10:27:07 -0800137 arm64) toolchaindir=aarch64/aarch64-linux-android-$targetgccversion/bin;
Colin Cross03b424a2014-05-22 11:57:43 -0700138 toolchaindir2=arm/arm-linux-androideabi-$targetgccversion2/bin
Ben Chengdb4fc202013-10-04 16:02:59 -0700139 ;;
Duane Sand3c4fcd82014-07-22 14:34:00 -0700140 mips|mips64) toolchaindir=mips/mips64el-linux-android-$targetgccversion/bin
Serban Constantinescu9b68fb22014-01-14 10:33:53 +0000141 ;;
David 'Digit' Turner2056c252012-04-17 14:50:47 +0200142 *)
143 echo "Can't find toolchain for unknown architecture: $ARCH"
144 toolchaindir=xxxxxxxxx
Mark D Horn7d0ede72012-03-14 14:20:30 -0700145 ;;
146 esac
Jing Yuf5172c72012-03-29 20:45:50 -0700147 if [ -d "$gccprebuiltdir/$toolchaindir" ]; then
Ben Chengfba67bf2014-02-25 10:27:07 -0800148 export ANDROID_TOOLCHAIN=$gccprebuiltdir/$toolchaindir
Raphael Mollc639c782011-06-20 17:25:01 -0700149 fi
Raphael732936d2011-06-22 14:35:32 -0700150
Ben Chengfba67bf2014-02-25 10:27:07 -0800151 if [ -d "$gccprebuiltdir/$toolchaindir2" ]; then
152 export ANDROID_TOOLCHAIN_2ND_ARCH=$gccprebuiltdir/$toolchaindir2
153 fi
154
155 unset ANDROID_KERNEL_TOOLCHAIN_PATH
Ying Wang08f5e9a2012-04-17 18:10:11 -0700156 case $ARCH in
Bruce Beare42ced6d2012-07-17 21:40:01 -0700157 arm)
Ben Chengfba67bf2014-02-25 10:27:07 -0800158 # Legacy toolchain configuration used for ARM kernel compilation
Ben Cheng8bc4c432012-11-16 13:29:13 -0800159 toolchaindir=arm/arm-eabi-$targetgccversion/bin
Bruce Beare42ced6d2012-07-17 21:40:01 -0700160 if [ -d "$gccprebuiltdir/$toolchaindir" ]; then
Torne (Richard Coles)f24c3562014-04-25 16:24:22 +0100161 export ARM_EABI_TOOLCHAIN="$gccprebuiltdir/$toolchaindir"
162 ANDROID_KERNEL_TOOLCHAIN_PATH="$ARM_EABI_TOOLCHAIN":
Bruce Beare42ced6d2012-07-17 21:40:01 -0700163 fi
Ying Wang08f5e9a2012-04-17 18:10:11 -0700164 ;;
165 *)
Bruce Beare42ced6d2012-07-17 21:40:01 -0700166 # No need to set ARM_EABI_TOOLCHAIN for other ARCHs
Ying Wang08f5e9a2012-04-17 18:10:11 -0700167 ;;
168 esac
Ying Wang08f5e9a2012-04-17 18:10:11 -0700169
Ying Wang564f9122013-03-29 17:40:14 -0700170 export ANDROID_DEV_SCRIPTS=$T/development/scripts:$T/prebuilts/devtools/tools
Ying Wang2a859d52014-06-30 10:25:33 -0700171 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 +0200172
173 # If prebuilts/android-emulator/<system>/ exists, prepend it to our PATH
174 # to ensure that the corresponding 'emulator' binaries are used.
175 case $(uname -s) in
176 Darwin)
177 ANDROID_EMULATOR_PREBUILTS=$T/prebuilts/android-emulator/darwin-x86_64
178 ;;
179 Linux)
180 ANDROID_EMULATOR_PREBUILTS=$T/prebuilts/android-emulator/linux-x86_64
181 ;;
182 *)
183 ANDROID_EMULATOR_PREBUILTS=
184 ;;
185 esac
186 if [ -n "$ANDROID_EMULATOR_PREBUILTS" -a -d "$ANDROID_EMULATOR_PREBUILTS" ]; then
Christopher Ferris7110f242014-05-20 13:56:00 -0700187 ANDROID_BUILD_PATHS=$ANDROID_BUILD_PATHS$ANDROID_EMULATOR_PREBUILTS:
David 'Digit' Turner94d16e52014-05-05 16:13:50 +0200188 export ANDROID_EMULATOR_PREBUILTS
189 fi
190
Ying Wangaa1c9b52012-11-26 20:51:59 -0800191 export PATH=$ANDROID_BUILD_PATHS$PATH
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800192
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500193 unset ANDROID_JAVA_TOOLCHAIN
Ji-Hwan Lee752ad062011-07-04 14:09:47 +0900194 unset ANDROID_PRE_BUILD_PATHS
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500195 if [ -n "$JAVA_HOME" ]; then
196 export ANDROID_JAVA_TOOLCHAIN=$JAVA_HOME/bin
Ji-Hwan Lee752ad062011-07-04 14:09:47 +0900197 export ANDROID_PRE_BUILD_PATHS=$ANDROID_JAVA_TOOLCHAIN:
198 export PATH=$ANDROID_PRE_BUILD_PATHS$PATH
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500199 fi
200
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800201 unset ANDROID_PRODUCT_OUT
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700202 export ANDROID_PRODUCT_OUT=$(get_abs_build_var PRODUCT_OUT)
203 export OUT=$ANDROID_PRODUCT_OUT
204
Jeff Brown8fd5cce2011-03-24 17:03:06 -0700205 unset ANDROID_HOST_OUT
206 export ANDROID_HOST_OUT=$(get_abs_build_var HOST_OUT)
207
David 'Digit' Turner7cde0302014-05-05 16:13:50 +0200208 # If prebuilts/android-emulator/<system>/ exists, prepend it to our PATH
209 # to ensure that the corresponding 'emulator' binaries are used.
210 case $(uname -s) in
211 Darwin)
212 ANDROID_EMULATOR_PREBUILTS=$T/prebuilts/android-emulator/darwin-x86_64
213 ;;
214 Linux)
215 ANDROID_EMULATOR_PREBUILTS=$T/prebuilts/android-emulator/linux-x86_64
216 ;;
217 *)
218 ANDROID_EMULATOR_PREBUILTS=
219 ;;
220 esac
221 if [ -n "$ANDROID_EMULATOR_PREBUILTS" -a -d "$ANDROID_EMULATOR_PREBUILTS" ]; then
222 PATH=$ANDROID_EMULATOR_PREBUILTS:$PATH
223 export ANDROID_EMULATOR_PREBUILTS
224 fi
225
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800226 # needed for building linux on MacOS
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700227 # TODO: fix the path
228 #export HOST_EXTRACFLAGS="-I "$T/system/kernel_headers/host_include
229}
230
231function printconfig()
232{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800233 T=$(gettop)
234 if [ ! "$T" ]; then
235 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
236 return
237 fi
238 get_build_var report_config
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700239}
240
241function set_stuff_for_environment()
242{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800243 settitle
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500244 set_java_home
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800245 setpaths
246 set_sequence_number
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700247
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800248 export ANDROID_BUILD_TOP=$(gettop)
Ben Chengaac3f812013-08-13 14:38:15 -0700249 # With this environment variable new GCC can apply colors to warnings/errors
250 export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700251}
252
253function set_sequence_number()
254{
Joe Onoratoaee4daa2010-06-23 14:03:13 -0700255 export BUILD_ENV_SEQUENCE_NUMBER=10
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700256}
257
258function settitle()
259{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800260 if [ "$STAY_OFF_MY_LAWN" = "" ]; then
Raghu Gandham8da43102012-07-25 19:57:22 -0700261 local arch=$(gettargetarch)
Joe Onoratoda12daf2010-06-09 18:18:31 -0700262 local product=$TARGET_PRODUCT
263 local variant=$TARGET_BUILD_VARIANT
264 local apps=$TARGET_BUILD_APPS
265 if [ -z "$apps" ]; then
Raghu Gandham8da43102012-07-25 19:57:22 -0700266 export PROMPT_COMMAND="echo -ne \"\033]0;[${arch}-${product}-${variant}] ${USER}@${HOSTNAME}: ${PWD}\007\""
Joe Onoratoda12daf2010-06-09 18:18:31 -0700267 else
Raghu Gandham8da43102012-07-25 19:57:22 -0700268 export PROMPT_COMMAND="echo -ne \"\033]0;[$arch $apps $variant] ${USER}@${HOSTNAME}: ${PWD}\007\""
Joe Onoratoda12daf2010-06-09 18:18:31 -0700269 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800270 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700271}
272
Kenny Root52aa81c2011-07-15 11:07:06 -0700273function addcompletions()
274{
275 local T dir f
276
277 # Keep us from trying to run in something that isn't bash.
278 if [ -z "${BASH_VERSION}" ]; then
279 return
280 fi
281
282 # Keep us from trying to run in bash that's too old.
283 if [ ${BASH_VERSINFO[0]} -lt 3 ]; then
284 return
285 fi
286
287 dir="sdk/bash_completion"
288 if [ -d ${dir} ]; then
Kenny Root7546d612011-07-18 13:11:34 -0700289 for f in `/bin/ls ${dir}/[a-z]*.bash 2> /dev/null`; do
Kenny Root52aa81c2011-07-15 11:07:06 -0700290 echo "including $f"
291 . $f
292 done
293 fi
294}
295
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700296function choosetype()
297{
298 echo "Build type choices are:"
299 echo " 1. release"
300 echo " 2. debug"
301 echo
302
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800303 local DEFAULT_NUM DEFAULT_VALUE
Jeff Browne33ba4c2011-07-11 22:11:46 -0700304 DEFAULT_NUM=1
305 DEFAULT_VALUE=release
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700306
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800307 export TARGET_BUILD_TYPE=
308 local ANSWER
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700309 while [ -z $TARGET_BUILD_TYPE ]
310 do
311 echo -n "Which would you like? ["$DEFAULT_NUM"] "
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800312 if [ -z "$1" ] ; then
313 read ANSWER
314 else
315 echo $1
316 ANSWER=$1
317 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700318 case $ANSWER in
319 "")
320 export TARGET_BUILD_TYPE=$DEFAULT_VALUE
321 ;;
322 1)
323 export TARGET_BUILD_TYPE=release
324 ;;
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800325 release)
326 export TARGET_BUILD_TYPE=release
327 ;;
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700328 2)
329 export TARGET_BUILD_TYPE=debug
330 ;;
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800331 debug)
332 export TARGET_BUILD_TYPE=debug
333 ;;
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700334 *)
335 echo
336 echo "I didn't understand your response. Please try again."
337 echo
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700338 ;;
339 esac
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800340 if [ -n "$1" ] ; then
341 break
342 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700343 done
344
345 set_stuff_for_environment
346}
347
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800348#
349# This function isn't really right: It chooses a TARGET_PRODUCT
350# based on the list of boards. Usually, that gets you something
351# that kinda works with a generic product, but really, you should
352# pick a product by name.
353#
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700354function chooseproduct()
355{
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700356 if [ "x$TARGET_PRODUCT" != x ] ; then
357 default_value=$TARGET_PRODUCT
358 else
Jeff Browne33ba4c2011-07-11 22:11:46 -0700359 default_value=full
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700360 fi
361
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800362 export TARGET_PRODUCT=
363 local ANSWER
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700364 while [ -z "$TARGET_PRODUCT" ]
365 do
Joe Onorato8849aed2009-04-29 15:56:47 -0700366 echo -n "Which product would you like? [$default_value] "
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800367 if [ -z "$1" ] ; then
368 read ANSWER
369 else
370 echo $1
371 ANSWER=$1
372 fi
373
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700374 if [ -z "$ANSWER" ] ; then
375 export TARGET_PRODUCT=$default_value
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800376 else
377 if check_product $ANSWER
378 then
379 export TARGET_PRODUCT=$ANSWER
380 else
381 echo "** Not a valid product: $ANSWER"
382 fi
383 fi
384 if [ -n "$1" ] ; then
385 break
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700386 fi
387 done
388
389 set_stuff_for_environment
390}
391
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800392function choosevariant()
393{
394 echo "Variant choices are:"
395 local index=1
396 local v
397 for v in ${VARIANT_CHOICES[@]}
398 do
399 # The product name is the name of the directory containing
400 # the makefile we found, above.
401 echo " $index. $v"
402 index=$(($index+1))
403 done
404
405 local default_value=eng
406 local ANSWER
407
408 export TARGET_BUILD_VARIANT=
409 while [ -z "$TARGET_BUILD_VARIANT" ]
410 do
411 echo -n "Which would you like? [$default_value] "
412 if [ -z "$1" ] ; then
413 read ANSWER
414 else
415 echo $1
416 ANSWER=$1
417 fi
418
419 if [ -z "$ANSWER" ] ; then
420 export TARGET_BUILD_VARIANT=$default_value
421 elif (echo -n $ANSWER | grep -q -e "^[0-9][0-9]*$") ; then
422 if [ "$ANSWER" -le "${#VARIANT_CHOICES[@]}" ] ; then
Kan-Ru Chen07453762010-07-05 15:53:47 +0800423 export TARGET_BUILD_VARIANT=${VARIANT_CHOICES[$(($ANSWER-1))]}
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800424 fi
425 else
426 if check_variant $ANSWER
427 then
428 export TARGET_BUILD_VARIANT=$ANSWER
429 else
430 echo "** Not a valid variant: $ANSWER"
431 fi
432 fi
433 if [ -n "$1" ] ; then
434 break
435 fi
436 done
437}
438
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700439function choosecombo()
440{
Jeff Browne33ba4c2011-07-11 22:11:46 -0700441 choosetype $1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700442
443 echo
444 echo
Jeff Browne33ba4c2011-07-11 22:11:46 -0700445 chooseproduct $2
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700446
447 echo
448 echo
Jeff Browne33ba4c2011-07-11 22:11:46 -0700449 choosevariant $3
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800450
451 echo
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700452 set_stuff_for_environment
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800453 printconfig
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700454}
455
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800456# Clear this variable. It will be built up again when the vendorsetup.sh
457# files are included at the end of this file.
458unset LUNCH_MENU_CHOICES
459function add_lunch_combo()
460{
461 local new_combo=$1
462 local c
463 for c in ${LUNCH_MENU_CHOICES[@]} ; do
464 if [ "$new_combo" = "$c" ] ; then
465 return
466 fi
467 done
468 LUNCH_MENU_CHOICES=(${LUNCH_MENU_CHOICES[@]} $new_combo)
469}
470
471# add the default one here
Jean-Baptiste Queru324c1232013-03-22 15:53:54 -0700472add_lunch_combo aosp_arm-eng
Colin Cross4f0eb7d2014-01-21 19:35:38 -0800473add_lunch_combo aosp_arm64-eng
Serban Constantinescu9b68fb22014-01-14 10:33:53 +0000474add_lunch_combo aosp_mips-eng
Chris Dearman1efd9e42014-02-03 15:01:24 -0800475add_lunch_combo aosp_mips64-eng
Serban Constantinescu9b68fb22014-01-14 10:33:53 +0000476add_lunch_combo aosp_x86-eng
477add_lunch_combo aosp_x86_64-eng
Bruce Beareba366c42011-02-15 16:46:08 -0800478add_lunch_combo vbox_x86-eng
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800479
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700480function print_lunch_menu()
481{
482 local uname=$(uname)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700483 echo
484 echo "You're building on" $uname
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700485 echo
486 echo "Lunch menu... pick a combo:"
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800487
488 local i=1
489 local choice
490 for choice in ${LUNCH_MENU_CHOICES[@]}
491 do
492 echo " $i. $choice"
493 i=$(($i+1))
494 done
495
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700496 echo
497}
498
499function lunch()
500{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800501 local answer
502
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700503 if [ "$1" ] ; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800504 answer=$1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700505 else
506 print_lunch_menu
Jean-Baptiste Queru324c1232013-03-22 15:53:54 -0700507 echo -n "Which would you like? [aosp_arm-eng] "
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800508 read answer
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700509 fi
510
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800511 local selection=
512
513 if [ -z "$answer" ]
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700514 then
Jean-Baptiste Queru324c1232013-03-22 15:53:54 -0700515 selection=aosp_arm-eng
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800516 elif (echo -n $answer | grep -q -e "^[0-9][0-9]*$")
517 then
518 if [ $answer -le ${#LUNCH_MENU_CHOICES[@]} ]
519 then
Kan-Ru Chen07453762010-07-05 15:53:47 +0800520 selection=${LUNCH_MENU_CHOICES[$(($answer-1))]}
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800521 fi
522 elif (echo -n $answer | grep -q -e "^[^\-][^\-]*-[^\-][^\-]*$")
523 then
524 selection=$answer
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700525 fi
526
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800527 if [ -z "$selection" ]
528 then
529 echo
530 echo "Invalid lunch combo: $answer"
531 return 1
532 fi
533
Joe Onoratoda12daf2010-06-09 18:18:31 -0700534 export TARGET_BUILD_APPS=
535
Jeff Browne33ba4c2011-07-11 22:11:46 -0700536 local product=$(echo -n $selection | sed -e "s/-.*$//")
537 check_product $product
538 if [ $? -ne 0 ]
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800539 then
Jeff Browne33ba4c2011-07-11 22:11:46 -0700540 echo
541 echo "** Don't have a product spec for: '$product'"
542 echo "** Do you have the right repo manifest?"
543 product=
544 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800545
Jeff Browne33ba4c2011-07-11 22:11:46 -0700546 local variant=$(echo -n $selection | sed -e "s/^[^\-]*-//")
547 check_variant $variant
548 if [ $? -ne 0 ]
549 then
550 echo
551 echo "** Invalid variant: '$variant'"
552 echo "** Must be one of ${VARIANT_CHOICES[@]}"
553 variant=
554 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800555
Jeff Browne33ba4c2011-07-11 22:11:46 -0700556 if [ -z "$product" -o -z "$variant" ]
557 then
558 echo
559 return 1
560 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800561
Jeff Browne33ba4c2011-07-11 22:11:46 -0700562 export TARGET_PRODUCT=$product
563 export TARGET_BUILD_VARIANT=$variant
564 export TARGET_BUILD_TYPE=release
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700565
566 echo
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800567
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700568 set_stuff_for_environment
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800569 printconfig
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700570}
571
Jeff Davidson513d7a42010-08-02 10:00:44 -0700572# Tab completion for lunch.
573function _lunch()
574{
575 local cur prev opts
576 COMPREPLY=()
577 cur="${COMP_WORDS[COMP_CWORD]}"
578 prev="${COMP_WORDS[COMP_CWORD-1]}"
579
580 COMPREPLY=( $(compgen -W "${LUNCH_MENU_CHOICES[*]}" -- ${cur}) )
581 return 0
582}
583complete -F _lunch lunch
584
Joe Onoratoda12daf2010-06-09 18:18:31 -0700585# Configures the build to build unbundled apps.
Doug Zongker0d8179e2014-04-16 11:34:34 -0700586# Run tapas with one or more app names (from LOCAL_PACKAGE_NAME)
Joe Onoratoda12daf2010-06-09 18:18:31 -0700587function tapas()
588{
Ying Wangb541ab62014-05-29 17:57:40 -0700589 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 -0700590 local variant="$(echo $* | xargs -n 1 echo | \grep -E '^(user|userdebug|eng)$' | xargs)"
Ying Wangb541ab62014-05-29 17:57:40 -0700591 local apps="$(echo $* | xargs -n 1 echo | \grep -E -v '^(user|userdebug|eng|arm|x86|mips|armv5|arm64|x86_64|mips64)$' | xargs)"
Joe Onoratoda12daf2010-06-09 18:18:31 -0700592
Ying Wang67f02922012-08-22 10:25:20 -0700593 if [ $(echo $arch | wc -w) -gt 1 ]; then
594 echo "tapas: Error: Multiple build archs supplied: $arch"
595 return
596 fi
Joe Onoratoda12daf2010-06-09 18:18:31 -0700597 if [ $(echo $variant | wc -w) -gt 1 ]; then
598 echo "tapas: Error: Multiple build variants supplied: $variant"
599 return
600 fi
Ying Wang67f02922012-08-22 10:25:20 -0700601
602 local product=full
603 case $arch in
Ying Wangb541ab62014-05-29 17:57:40 -0700604 x86) product=full_x86;;
605 mips) product=full_mips;;
606 armv5) product=generic_armv5;;
607 arm64) product=aosp_arm64;;
608 x86_64) product=aosp_x86_64;;
609 mips64) product=aosp_mips64;;
Ying Wang67f02922012-08-22 10:25:20 -0700610 esac
Joe Onoratoda12daf2010-06-09 18:18:31 -0700611 if [ -z "$variant" ]; then
612 variant=eng
613 fi
Ying Wangc048c9b2010-06-24 15:08:33 -0700614 if [ -z "$apps" ]; then
615 apps=all
616 fi
Joe Onoratoda12daf2010-06-09 18:18:31 -0700617
Ying Wang67f02922012-08-22 10:25:20 -0700618 export TARGET_PRODUCT=$product
Joe Onoratoda12daf2010-06-09 18:18:31 -0700619 export TARGET_BUILD_VARIANT=$variant
Joe Onoratoda12daf2010-06-09 18:18:31 -0700620 export TARGET_BUILD_TYPE=release
621 export TARGET_BUILD_APPS=$apps
622
623 set_stuff_for_environment
624 printconfig
625}
626
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700627function gettop
628{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800629 local TOPFILE=build/core/envsetup.mk
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700630 if [ -n "$TOP" -a -f "$TOP/$TOPFILE" ] ; then
631 echo $TOP
632 else
633 if [ -f $TOPFILE ] ; then
Dan Bornsteind0b274d2009-11-24 15:48:50 -0800634 # The following circumlocution (repeated below as well) ensures
635 # that we record the true directory name and not one that is
636 # faked up with symlink names.
637 PWD= /bin/pwd
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700638 else
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800639 local HERE=$PWD
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700640 T=
641 while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do
Ying Wang9cd17642012-12-13 10:52:07 -0800642 \cd ..
synergyb112a402013-07-05 19:47:47 -0700643 T=`PWD= /bin/pwd -P`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700644 done
Ying Wang9cd17642012-12-13 10:52:07 -0800645 \cd $HERE
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700646 if [ -f "$T/$TOPFILE" ]; then
647 echo $T
648 fi
649 fi
650 fi
651}
652
Andrew Hsieh906cb782013-09-10 17:37:14 +0800653# Return driver for "make", if any (eg. static analyzer)
654function getdriver()
655{
656 local T="$1"
657 test "$WITH_STATIC_ANALYZER" = "0" && unset WITH_STATIC_ANALYZER
658 if [ -n "$WITH_STATIC_ANALYZER" ]; then
659 echo "\
Andrew Hsiehc4f7fba2014-03-03 16:53:17 +0800660$T/prebuilts/misc/linux-x86/analyzer/tools/scan-build/scan-build \
661--use-analyzer $T/prebuilts/misc/linux-x86/analyzer/bin/analyzer \
Andrew Hsieh906cb782013-09-10 17:37:14 +0800662--status-bugs \
663--top=$T"
664 fi
665}
666
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700667function m()
668{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800669 local T=$(gettop)
670 local DRV=$(getdriver $T)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700671 if [ "$T" ]; then
Andrew Hsieh906cb782013-09-10 17:37:14 +0800672 $DRV make -C $T -f build/core/main.mk $@
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700673 else
674 echo "Couldn't locate the top of the tree. Try setting TOP."
675 fi
676}
677
678function findmakefile()
679{
680 TOPFILE=build/core/envsetup.mk
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800681 local HERE=$PWD
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700682 T=
683 while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do
Ying Wang11b15b12012-10-11 15:05:07 -0700684 T=`PWD= /bin/pwd`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700685 if [ -f "$T/Android.mk" ]; then
686 echo $T/Android.mk
Ying Wang9cd17642012-12-13 10:52:07 -0800687 \cd $HERE
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700688 return
689 fi
Ying Wang9cd17642012-12-13 10:52:07 -0800690 \cd ..
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700691 done
Ying Wang9cd17642012-12-13 10:52:07 -0800692 \cd $HERE
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700693}
694
695function mm()
696{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800697 local T=$(gettop)
698 local DRV=$(getdriver $T)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700699 # If we're sitting in the root of the build tree, just do a
700 # normal make.
701 if [ -f build/core/envsetup.mk -a -f Makefile ]; then
Andrew Hsieh906cb782013-09-10 17:37:14 +0800702 $DRV make $@
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700703 else
704 # Find the closest Android.mk file.
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800705 local M=$(findmakefile)
Ying Wanga7deb082013-08-16 13:24:47 -0700706 local MODULES=
707 local GET_INSTALL_PATH=
708 local ARGS=
Robert Greenwalt3c794d72009-07-15 15:07:44 -0700709 # Remove the path to top as the makefilepath needs to be relative
710 local M=`echo $M|sed 's:'$T'/::'`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700711 if [ ! "$T" ]; then
712 echo "Couldn't locate the top of the tree. Try setting TOP."
713 elif [ ! "$M" ]; then
714 echo "Couldn't locate a makefile from the current directory."
715 else
Ying Wanga7deb082013-08-16 13:24:47 -0700716 for ARG in $@; do
717 case $ARG in
718 GET-INSTALL-PATH) GET_INSTALL_PATH=$ARG;;
719 esac
720 done
721 if [ -n "$GET_INSTALL_PATH" ]; then
722 MODULES=
723 ARGS=GET-INSTALL-PATH
724 else
725 MODULES=all_modules
726 ARGS=$@
727 fi
Andrew Hsieh246daf72013-09-10 18:07:23 -0700728 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 -0700729 fi
730 fi
731}
732
733function mmm()
734{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800735 local T=$(gettop)
736 local DRV=$(getdriver $T)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700737 if [ "$T" ]; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800738 local MAKEFILE=
Alon Albert68895a92011-11-30 12:40:19 -0800739 local MODULES=
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800740 local ARGS=
741 local DIR TO_CHOP
Ying Wanga7deb082013-08-16 13:24:47 -0700742 local GET_INSTALL_PATH=
The Android Open Source Project88b60792009-03-03 19:28:42 -0800743 local DASH_ARGS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^-.*$/')
744 local DIRS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^[^-].*$/')
745 for DIR in $DIRS ; do
Alon Albert68895a92011-11-30 12:40:19 -0800746 MODULES=`echo $DIR | sed -n -e 's/.*:\(.*$\)/\1/p' | sed 's/,/ /'`
747 if [ "$MODULES" = "" ]; then
748 MODULES=all_modules
749 fi
750 DIR=`echo $DIR | sed -e 's/:.*//' -e 's:/$::'`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700751 if [ -f $DIR/Android.mk ]; then
Ying Wanga7deb082013-08-16 13:24:47 -0700752 local TO_CHOP=`(\cd -P -- $T && pwd -P) | wc -c | tr -d ' '`
753 local TO_CHOP=`expr $TO_CHOP + 1`
754 local START=`PWD= /bin/pwd`
755 local MFILE=`echo $START | cut -c${TO_CHOP}-`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700756 if [ "$MFILE" = "" ] ; then
757 MFILE=$DIR/Android.mk
758 else
759 MFILE=$MFILE/$DIR/Android.mk
760 fi
761 MAKEFILE="$MAKEFILE $MFILE"
762 else
Ying Wanga7deb082013-08-16 13:24:47 -0700763 case $DIR in
764 showcommands | snod | dist | incrementaljavac) ARGS="$ARGS $DIR";;
765 GET-INSTALL-PATH) GET_INSTALL_PATH=$DIR;;
766 *) echo "No Android.mk in $DIR."; return 1;;
767 esac
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700768 fi
769 done
Ying Wanga7deb082013-08-16 13:24:47 -0700770 if [ -n "$GET_INSTALL_PATH" ]; then
771 ARGS=$GET_INSTALL_PATH
772 MODULES=
773 fi
Andrew Hsieh906cb782013-09-10 17:37:14 +0800774 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 -0700775 else
776 echo "Couldn't locate the top of the tree. Try setting TOP."
777 fi
778}
779
Ying Wangb607f7b2013-02-08 18:01:04 -0800780function mma()
781{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800782 local T=$(gettop)
783 local DRV=$(getdriver $T)
Ying Wangb607f7b2013-02-08 18:01:04 -0800784 if [ -f build/core/envsetup.mk -a -f Makefile ]; then
Andrew Hsieh906cb782013-09-10 17:37:14 +0800785 $DRV make $@
Ying Wangb607f7b2013-02-08 18:01:04 -0800786 else
Ying Wangb607f7b2013-02-08 18:01:04 -0800787 if [ ! "$T" ]; then
788 echo "Couldn't locate the top of the tree. Try setting TOP."
789 fi
790 local MY_PWD=`PWD= /bin/pwd|sed 's:'$T'/::'`
Andrew Hsieh906cb782013-09-10 17:37:14 +0800791 $DRV make -C $T -f build/core/main.mk $@ all_modules BUILD_MODULES_IN_PATHS="$MY_PWD"
Ying Wangb607f7b2013-02-08 18:01:04 -0800792 fi
793}
794
795function mmma()
796{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800797 local T=$(gettop)
798 local DRV=$(getdriver $T)
Ying Wangb607f7b2013-02-08 18:01:04 -0800799 if [ "$T" ]; then
800 local DASH_ARGS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^-.*$/')
801 local DIRS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^[^-].*$/')
802 local MY_PWD=`PWD= /bin/pwd`
803 if [ "$MY_PWD" = "$T" ]; then
804 MY_PWD=
805 else
806 MY_PWD=`echo $MY_PWD|sed 's:'$T'/::'`
807 fi
808 local DIR=
809 local MODULE_PATHS=
810 local ARGS=
811 for DIR in $DIRS ; do
812 if [ -d $DIR ]; then
813 if [ "$MY_PWD" = "" ]; then
814 MODULE_PATHS="$MODULE_PATHS $DIR"
815 else
816 MODULE_PATHS="$MODULE_PATHS $MY_PWD/$DIR"
817 fi
818 else
819 case $DIR in
820 showcommands | snod | dist | incrementaljavac) ARGS="$ARGS $DIR";;
821 *) echo "Couldn't find directory $DIR"; return 1;;
822 esac
823 fi
824 done
Andrew Hsieh906cb782013-09-10 17:37:14 +0800825 $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 -0800826 else
827 echo "Couldn't locate the top of the tree. Try setting TOP."
828 fi
829}
830
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700831function croot()
832{
833 T=$(gettop)
834 if [ "$T" ]; then
Ying Wang9cd17642012-12-13 10:52:07 -0800835 \cd $(gettop)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700836 else
837 echo "Couldn't locate the top of the tree. Try setting TOP."
838 fi
839}
840
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700841function cproj()
842{
843 TOPFILE=build/core/envsetup.mk
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700844 local HERE=$PWD
845 T=
846 while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do
847 T=$PWD
848 if [ -f "$T/Android.mk" ]; then
Ying Wang9cd17642012-12-13 10:52:07 -0800849 \cd $T
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700850 return
851 fi
Ying Wang9cd17642012-12-13 10:52:07 -0800852 \cd ..
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700853 done
Ying Wang9cd17642012-12-13 10:52:07 -0800854 \cd $HERE
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700855 echo "can't find Android.mk"
856}
857
Daniel Sandler47e0a882013-07-30 13:23:52 -0400858# simplified version of ps; output in the form
859# <pid> <procname>
860function qpid() {
861 local prepend=''
862 local append=''
863 if [ "$1" = "--exact" ]; then
864 prepend=' '
865 append='$'
866 shift
867 elif [ "$1" = "--help" -o "$1" = "-h" ]; then
868 echo "usage: qpid [[--exact] <process name|pid>"
869 return 255
870 fi
871
872 local EXE="$1"
873 if [ "$EXE" ] ; then
Mathias Agopian44583272013-08-27 14:15:50 -0700874 qpid | \grep "$prepend$EXE$append"
Daniel Sandler47e0a882013-07-30 13:23:52 -0400875 else
876 adb shell ps \
877 | tr -d '\r' \
878 | sed -e 1d -e 's/^[^ ]* *\([0-9]*\).* \([^ ]*\)$/\1 \2/'
879 fi
880}
881
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700882function pid()
883{
Daniel Sandler47e0a882013-07-30 13:23:52 -0400884 local prepend=''
885 local append=''
886 if [ "$1" = "--exact" ]; then
887 prepend=' '
888 append='$'
889 shift
890 fi
891 local EXE="$1"
892 if [ "$EXE" ] ; then
893 local PID=`adb shell ps \
894 | tr -d '\r' \
Mathias Agopian44583272013-08-27 14:15:50 -0700895 | \grep "$prepend$EXE$append" \
Daniel Sandler47e0a882013-07-30 13:23:52 -0400896 | sed -e 's/^[^ ]* *\([0-9]*\).*$/\1/'`
897 echo "$PID"
898 else
899 echo "usage: pid [--exact] <process name>"
900 return 255
901 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700902}
903
Christopher Tate744ee802009-11-12 15:33:08 -0800904# systemstack - dump the current stack trace of all threads in the system process
905# to the usual ANR traces file
906function systemstack()
907{
Jeff Sharkeyf5824372013-02-19 17:00:46 -0800908 stacks system_server
909}
910
911function stacks()
912{
913 if [[ $1 =~ ^[0-9]+$ ]] ; then
914 local PID="$1"
915 elif [ "$1" ] ; then
Jeff Brownb12c2e52013-08-19 15:14:16 -0700916 local PIDLIST="$(pid $1)"
917 if [[ $PIDLIST =~ ^[0-9]+$ ]] ; then
918 local PID="$PIDLIST"
919 elif [ "$PIDLIST" ] ; then
920 echo "more than one process: $1"
921 else
922 echo "no such process: $1"
923 fi
Jeff Sharkeyf5824372013-02-19 17:00:46 -0800924 else
925 echo "usage: stacks [pid|process name]"
926 fi
927
928 if [ "$PID" ] ; then
Jeff Brownb12c2e52013-08-19 15:14:16 -0700929 # Determine whether the process is native
930 if adb shell ls -l /proc/$PID/exe | grep -q /system/bin/app_process ; then
931 # Dump stacks of Dalvik process
932 local TRACES=/data/anr/traces.txt
933 local ORIG=/data/anr/traces.orig
934 local TMP=/data/anr/traces.tmp
Jeff Sharkeyf5824372013-02-19 17:00:46 -0800935
Jeff Brownb12c2e52013-08-19 15:14:16 -0700936 # Keep original traces to avoid clobbering
937 adb shell mv $TRACES $ORIG
Jeff Sharkeyf5824372013-02-19 17:00:46 -0800938
Jeff Brownb12c2e52013-08-19 15:14:16 -0700939 # Make sure we have a usable file
940 adb shell touch $TRACES
941 adb shell chmod 666 $TRACES
Jeff Sharkeyf5824372013-02-19 17:00:46 -0800942
Jeff Brownb12c2e52013-08-19 15:14:16 -0700943 # Dump stacks and wait for dump to finish
944 adb shell kill -3 $PID
945 adb shell notify $TRACES >/dev/null
Jeff Sharkeyf5824372013-02-19 17:00:46 -0800946
Jeff Brownb12c2e52013-08-19 15:14:16 -0700947 # Restore original stacks, and show current output
948 adb shell mv $TRACES $TMP
949 adb shell mv $ORIG $TRACES
950 adb shell cat $TMP
951 else
952 # Dump stacks of native process
Michael Wrightaeed7212014-06-19 19:58:12 -0700953 local USE64BIT="$(is64bit $PID)"
954 adb shell debuggerd$USE64BIT -b $PID
Jeff Brownb12c2e52013-08-19 15:14:16 -0700955 fi
Jeff Sharkeyf5824372013-02-19 17:00:46 -0800956 fi
Christopher Tate744ee802009-11-12 15:33:08 -0800957}
958
John Michelau50200252012-11-09 11:48:04 -0600959function gdbwrapper()
960{
Ben Chengfba67bf2014-02-25 10:27:07 -0800961 local GDB_CMD="$1"
962 shift 1
963 $GDB_CMD -x "$@"
John Michelau50200252012-11-09 11:48:04 -0600964}
965
Brigid Smith0a2712d2014-05-28 14:36:43 -0700966function get_symbols_directory()
967{
968 echo $(get_abs_build_var TARGET_OUT_UNSTRIPPED)
969}
970
Michael Wrightaeed7212014-06-19 19:58:12 -0700971# Read the ELF header from /proc/$PID/exe to determine if the process is
972# 64-bit.
Ben Chengfba67bf2014-02-25 10:27:07 -0800973function is64bit()
974{
975 local PID="$1"
976 if [ "$PID" ] ; then
Michael Wrightaeed7212014-06-19 19:58:12 -0700977 if [[ "$(adb shell cat /proc/$PID/exe | xxd -l 1 -s 4 -ps)" -eq "02" ]] ; then
Ben Chengfba67bf2014-02-25 10:27:07 -0800978 echo "64"
979 else
980 echo ""
981 fi
982 else
983 echo ""
984 fi
985}
986
987# gdbclient now determines whether the user wants to debug a 32-bit or 64-bit
988# executable, set up the approriate gdbserver, then invokes the proper host
989# gdb.
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700990function gdbclient()
991{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800992 local OUT_ROOT=$(get_abs_build_var PRODUCT_OUT)
993 local OUT_SYMBOLS=$(get_abs_build_var TARGET_OUT_UNSTRIPPED)
994 local OUT_SO_SYMBOLS=$(get_abs_build_var TARGET_OUT_SHARED_LIBRARIES_UNSTRIPPED)
Colin Cross3655a682014-05-22 11:59:10 -0700995 local OUT_VENDOR_SO_SYMBOLS=$(get_abs_build_var TARGET_OUT_VENDOR_SHARED_LIBRARIES_UNSTRIPPED)
Brigid Smith0a2712d2014-05-28 14:36:43 -0700996 local OUT_EXE_SYMBOLS=$(get_symbols_directory)
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800997 local PREBUILTS=$(get_abs_build_var ANDROID_PREBUILTS)
Nick Kralevich0ab21d32011-11-11 09:02:01 -0800998 local ARCH=$(get_build_var TARGET_ARCH)
999 local GDB
1000 case "$ARCH" in
Nick Kralevich0ab21d32011-11-11 09:02:01 -08001001 arm) GDB=arm-linux-androideabi-gdb;;
Ben Chengfba67bf2014-02-25 10:27:07 -08001002 arm64) GDB=arm-linux-androideabi-gdb; GDB64=aarch64-linux-android-gdb;;
Duane Sand3c4fcd82014-07-22 14:34:00 -07001003 mips|mips64) GDB=mips64el-linux-android-gdb;;
Serban Constantinescu9b68fb22014-01-14 10:33:53 +00001004 x86) GDB=x86_64-linux-android-gdb;;
1005 x86_64) GDB=x86_64-linux-android-gdb;;
Nick Kralevich0ab21d32011-11-11 09:02:01 -08001006 *) echo "Unknown arch $ARCH"; return 1;;
1007 esac
1008
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001009 if [ "$OUT_ROOT" -a "$PREBUILTS" ]; then
1010 local EXE="$1"
1011 if [ "$EXE" ] ; then
1012 EXE=$1
Brigid Smith7a569a62014-06-20 14:12:12 -07001013 if [[ $EXE =~ ^[^/].* ]] ; then
1014 EXE="system/bin/"$EXE
1015 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001016 else
1017 EXE="app_process"
1018 fi
1019
1020 local PORT="$2"
1021 if [ "$PORT" ] ; then
1022 PORT=$2
1023 else
1024 PORT=":5039"
1025 fi
1026
Chris Craik20c136a2012-11-09 18:02:19 -08001027 local PID="$3"
1028 if [ "$PID" ] ; then
1029 if [[ ! "$PID" =~ ^[0-9]+$ ]] ; then
Grace Klobae9d04bf2011-04-30 11:04:05 -07001030 PID=`pid $3`
Chris Craik20c136a2012-11-09 18:02:19 -08001031 if [[ ! "$PID" =~ ^[0-9]+$ ]] ; then
1032 # that likely didn't work because of returning multiple processes
1033 # try again, filtering by root processes (don't contain colon)
Mathias Agopian44583272013-08-27 14:15:50 -07001034 PID=`adb shell ps | \grep $3 | \grep -v ":" | awk '{print $2}'`
Chris Craik20c136a2012-11-09 18:02:19 -08001035 if [[ ! "$PID" =~ ^[0-9]+$ ]]
1036 then
1037 echo "Couldn't resolve '$3' to single PID"
1038 return 1
1039 else
1040 echo ""
1041 echo "WARNING: multiple processes matching '$3' observed, using root process"
1042 echo ""
1043 fi
1044 fi
Grace Klobae9d04bf2011-04-30 11:04:05 -07001045 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001046 adb forward "tcp$PORT" "tcp$PORT"
Ben Chengfba67bf2014-02-25 10:27:07 -08001047 local USE64BIT="$(is64bit $PID)"
1048 adb shell gdbserver$USE64BIT $PORT --attach $PID &
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001049 sleep 2
1050 else
1051 echo ""
1052 echo "If you haven't done so already, do this first on the device:"
1053 echo " gdbserver $PORT /system/bin/$EXE"
1054 echo " or"
Chris Craik20c136a2012-11-09 18:02:19 -08001055 echo " gdbserver $PORT --attach <PID>"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001056 echo ""
1057 fi
1058
Colin Cross84480ad2014-04-10 12:51:39 -07001059 OUT_SO_SYMBOLS=$OUT_SO_SYMBOLS$USE64BIT
Colin Crossa58f8e02014-06-20 13:33:36 -07001060 OUT_VENDOR_SO_SYMBOLS=$OUT_VENDOR_SO_SYMBOLS$USE64BIT
Colin Cross84480ad2014-04-10 12:51:39 -07001061
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001062 echo >|"$OUT_ROOT/gdbclient.cmds" "set solib-absolute-prefix $OUT_SYMBOLS"
Colin Cross3655a682014-05-22 11:59:10 -07001063 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 -07001064 echo >>"$OUT_ROOT/gdbclient.cmds" "source $ANDROID_BUILD_TOP/development/scripts/gdb/dalvik.gdb"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001065 echo >>"$OUT_ROOT/gdbclient.cmds" "target remote $PORT"
1066 echo >>"$OUT_ROOT/gdbclient.cmds" ""
1067
Ben Chengfba67bf2014-02-25 10:27:07 -08001068 local WHICH_GDB=
1069 # 64-bit exe found
1070 if [ "$USE64BIT" != "" ] ; then
1071 WHICH_GDB=$ANDROID_TOOLCHAIN/$GDB64
1072 # 32-bit exe / 32-bit platform
1073 elif [ "$(get_build_var TARGET_2ND_ARCH)" = "" ]; then
1074 WHICH_GDB=$ANDROID_TOOLCHAIN/$GDB
1075 # 32-bit exe / 64-bit platform
1076 else
1077 WHICH_GDB=$ANDROID_TOOLCHAIN_2ND_ARCH/$GDB
1078 fi
Brigid Smith0a2712d2014-05-28 14:36:43 -07001079
Ben Chengfba67bf2014-02-25 10:27:07 -08001080 gdbwrapper $WHICH_GDB "$OUT_ROOT/gdbclient.cmds" "$OUT_EXE_SYMBOLS/$EXE"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001081 else
1082 echo "Unable to determine build system output dir."
1083 fi
1084
1085}
1086
1087case `uname -s` in
1088 Darwin)
1089 function sgrep()
1090 {
Joe Onoratof50e84b2011-03-15 14:15:46 -07001091 find -E . -name .repo -prune -o -name .git -prune -o -type f -iregex '.*\.(c|h|cpp|S|java|xml|sh|mk)' -print0 | xargs -0 grep --color -n "$@"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001092 }
1093
1094 ;;
1095 *)
1096 function sgrep()
1097 {
Joe Onoratof50e84b2011-03-15 14:15:46 -07001098 find . -name .repo -prune -o -name .git -prune -o -type f -iregex '.*\.\(c\|h\|cpp\|S\|java\|xml\|sh\|mk\)' -print0 | xargs -0 grep --color -n "$@"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001099 }
1100 ;;
1101esac
1102
Raghu Gandham8da43102012-07-25 19:57:22 -07001103function gettargetarch
1104{
1105 get_build_var TARGET_ARCH
1106}
1107
Jon Boekenoogencbca56f2014-04-07 10:57:38 -07001108function ggrep()
1109{
1110 find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -type f -name "*\.gradle" -print0 | xargs -0 grep --color -n "$@"
1111}
1112
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001113function jgrep()
1114{
Anatolii Shuba91c72d22013-07-05 16:09:25 +03001115 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 -07001116}
1117
1118function cgrep()
1119{
Anatolii Shuba91c72d22013-07-05 16:09:25 +03001120 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' \) -print0 | xargs -0 grep --color -n "$@"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001121}
1122
1123function resgrep()
1124{
Anatolii Shuba91c72d22013-07-05 16:09:25 +03001125 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 -07001126}
1127
Jeff Sharkey50b61e92013-03-08 10:20:47 -08001128function mangrep()
1129{
1130 find . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o -type f -name 'AndroidManifest.xml' -print0 | xargs -0 grep --color -n "$@"
1131}
1132
Alex Klyubinba5fc8e2013-05-06 14:11:48 -07001133function sepgrep()
1134{
1135 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 "$@"
1136}
1137
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001138case `uname -s` in
1139 Darwin)
1140 function mgrep()
1141 {
Ying Wang324c2b22012-08-17 15:03:20 -07001142 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 -07001143 }
1144
1145 function treegrep()
1146 {
Joe Onoratof50e84b2011-03-15 14:15:46 -07001147 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 -07001148 }
1149
1150 ;;
1151 *)
1152 function mgrep()
1153 {
Ying Wang324c2b22012-08-17 15:03:20 -07001154 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 -07001155 }
1156
1157 function treegrep()
1158 {
Joe Onoratof50e84b2011-03-15 14:15:46 -07001159 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 -07001160 }
1161
1162 ;;
1163esac
1164
1165function getprebuilt
1166{
1167 get_abs_build_var ANDROID_PREBUILTS
1168}
1169
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001170function tracedmdump()
1171{
1172 T=$(gettop)
1173 if [ ! "$T" ]; then
1174 echo "Couldn't locate the top of the tree. Try setting TOP."
1175 return
1176 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001177 local prebuiltdir=$(getprebuilt)
Raghu Gandham8da43102012-07-25 19:57:22 -07001178 local arch=$(gettargetarch)
1179 local KERNEL=$T/prebuilts/qemu-kernel/$arch/vmlinux-qemu
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001180
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001181 local TRACE=$1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001182 if [ ! "$TRACE" ] ; then
1183 echo "usage: tracedmdump tracename"
1184 return
1185 fi
1186
Jack Veenstra60116fc2009-04-09 18:12:34 -07001187 if [ ! -r "$KERNEL" ] ; then
1188 echo "Error: cannot find kernel: '$KERNEL'"
1189 return
1190 fi
1191
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001192 local BASETRACE=$(basename $TRACE)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001193 if [ "$BASETRACE" = "$TRACE" ] ; then
1194 TRACE=$ANDROID_PRODUCT_OUT/traces/$TRACE
1195 fi
1196
1197 echo "post-processing traces..."
1198 rm -f $TRACE/qtrace.dexlist
1199 post_trace $TRACE
1200 if [ $? -ne 0 ]; then
1201 echo "***"
1202 echo "*** Error: malformed trace. Did you remember to exit the emulator?"
1203 echo "***"
1204 return
1205 fi
1206 echo "generating dexlist output..."
1207 /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
1208 echo "generating dmtrace data..."
1209 q2dm -r $ANDROID_PRODUCT_OUT/symbols $TRACE $KERNEL $TRACE/dmtrace || return
1210 echo "generating html file..."
1211 dmtracedump -h $TRACE/dmtrace >| $TRACE/dmtrace.html || return
1212 echo "done, see $TRACE/dmtrace.html for details"
1213 echo "or run:"
1214 echo " traceview $TRACE/dmtrace"
1215}
1216
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001217# communicate with a running device or emulator, set up necessary state,
1218# and run the hat command.
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001219function runhat()
1220{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001221 # process standard adb options
1222 local adbTarget=""
Andy McFaddenb6289852010-07-12 08:00:19 -07001223 if [ "$1" = "-d" -o "$1" = "-e" ]; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001224 adbTarget=$1
1225 shift 1
Andy McFaddenb6289852010-07-12 08:00:19 -07001226 elif [ "$1" = "-s" ]; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001227 adbTarget="$1 $2"
1228 shift 2
1229 fi
1230 local adbOptions=${adbTarget}
Dianne Hackborn6b9549f2012-09-26 15:00:59 -07001231 #echo adbOptions = ${adbOptions}
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001232
1233 # runhat options
1234 local targetPid=$1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001235
1236 if [ "$targetPid" = "" ]; then
Andy McFaddenb6289852010-07-12 08:00:19 -07001237 echo "Usage: runhat [ -d | -e | -s serial ] target-pid"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001238 return
1239 fi
1240
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001241 # confirm hat is available
1242 if [ -z $(which hat) ]; then
1243 echo "hat is not available in this configuration."
1244 return
1245 fi
1246
Andy McFaddenb6289852010-07-12 08:00:19 -07001247 # issue "am" command to cause the hprof dump
Nick Kralevich9948b1e2014-07-18 15:45:38 -07001248 local devFile=/data/local/tmp/hprof-$targetPid
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001249 echo "Poking $targetPid and waiting for data..."
Dianne Hackborn6b9549f2012-09-26 15:00:59 -07001250 echo "Storing data at $devFile"
Andy McFaddenb6289852010-07-12 08:00:19 -07001251 adb ${adbOptions} shell am dumpheap $targetPid $devFile
The Android Open Source Project88b60792009-03-03 19:28:42 -08001252 echo "Press enter when logcat shows \"hprof: heap dump completed\""
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001253 echo -n "> "
1254 read
1255
The Android Open Source Project88b60792009-03-03 19:28:42 -08001256 local localFile=/tmp/$$-hprof
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001257
The Android Open Source Project88b60792009-03-03 19:28:42 -08001258 echo "Retrieving file $devFile..."
1259 adb ${adbOptions} pull $devFile $localFile
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001260
The Android Open Source Project88b60792009-03-03 19:28:42 -08001261 adb ${adbOptions} shell rm $devFile
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001262
The Android Open Source Project88b60792009-03-03 19:28:42 -08001263 echo "Running hat on $localFile"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001264 echo "View the output by pointing your browser at http://localhost:7000/"
1265 echo ""
Dianne Hackborn6e4e1bb2011-11-10 15:19:51 -08001266 hat -JXmx512m $localFile
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001267}
1268
1269function getbugreports()
1270{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001271 local reports=(`adb shell ls /sdcard/bugreports | tr -d '\r'`)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001272
1273 if [ ! "$reports" ]; then
1274 echo "Could not locate any bugreports."
1275 return
1276 fi
1277
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001278 local report
1279 for report in ${reports[@]}
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001280 do
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001281 echo "/sdcard/bugreports/${report}"
1282 adb pull /sdcard/bugreports/${report} ${report}
1283 gunzip ${report}
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001284 done
1285}
1286
Victoria Lease1b296b42012-08-21 15:44:06 -07001287function getsdcardpath()
1288{
1289 adb ${adbOptions} shell echo -n \$\{EXTERNAL_STORAGE\}
1290}
1291
1292function getscreenshotpath()
1293{
1294 echo "$(getsdcardpath)/Pictures/Screenshots"
1295}
1296
1297function getlastscreenshot()
1298{
1299 local screenshot_path=$(getscreenshotpath)
1300 local screenshot=`adb ${adbOptions} ls ${screenshot_path} | grep Screenshot_[0-9-]*.*\.png | sort -rk 3 | cut -d " " -f 4 | head -n 1`
1301 if [ "$screenshot" = "" ]; then
1302 echo "No screenshots found."
1303 return
1304 fi
1305 echo "${screenshot}"
1306 adb ${adbOptions} pull ${screenshot_path}/${screenshot}
1307}
1308
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001309function startviewserver()
1310{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001311 local port=4939
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001312 if [ $# -gt 0 ]; then
1313 port=$1
1314 fi
1315 adb shell service call window 1 i32 $port
1316}
1317
1318function stopviewserver()
1319{
1320 adb shell service call window 2
1321}
1322
1323function isviewserverstarted()
1324{
1325 adb shell service call window 3
1326}
1327
Romain Guyb84049a2010-10-04 16:56:11 -07001328function key_home()
1329{
1330 adb shell input keyevent 3
1331}
1332
1333function key_back()
1334{
1335 adb shell input keyevent 4
1336}
1337
1338function key_menu()
1339{
1340 adb shell input keyevent 82
1341}
1342
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001343function smoketest()
1344{
1345 if [ ! "$ANDROID_PRODUCT_OUT" ]; then
1346 echo "Couldn't locate output files. Try running 'lunch' first." >&2
1347 return
1348 fi
1349 T=$(gettop)
1350 if [ ! "$T" ]; then
1351 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
1352 return
1353 fi
1354
Ying Wang9cd17642012-12-13 10:52:07 -08001355 (\cd "$T" && mmm tests/SmokeTest) &&
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001356 adb uninstall com.android.smoketest > /dev/null &&
1357 adb uninstall com.android.smoketest.tests > /dev/null &&
1358 adb install $ANDROID_PRODUCT_OUT/data/app/SmokeTestApp.apk &&
1359 adb install $ANDROID_PRODUCT_OUT/data/app/SmokeTest.apk &&
1360 adb shell am instrument -w com.android.smoketest.tests/android.test.InstrumentationTestRunner
1361}
1362
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001363# simple shortcut to the runtest command
1364function runtest()
1365{
1366 T=$(gettop)
1367 if [ ! "$T" ]; then
1368 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
1369 return
1370 fi
Brett Chabot3fb149d2009-10-21 20:05:26 -07001371 ("$T"/development/testrunner/runtest.py $@)
Brett Chabot762748c2009-03-27 10:25:11 -07001372}
1373
The Android Open Source Project88b60792009-03-03 19:28:42 -08001374function godir () {
1375 if [[ -z "$1" ]]; then
1376 echo "Usage: godir <regex>"
1377 return
1378 fi
Brian Carlstromb9915a62010-01-29 16:39:32 -08001379 T=$(gettop)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001380 if [[ ! -f $T/filelist ]]; then
1381 echo -n "Creating index..."
Ying Wang9cd17642012-12-13 10:52:07 -08001382 (\cd $T; find . -wholename ./out -prune -o -wholename ./.repo -prune -o -type f > filelist)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001383 echo " Done"
1384 echo ""
1385 fi
1386 local lines
Jeff Hamilton293f9392011-11-18 17:15:25 -06001387 lines=($(\grep "$1" $T/filelist | sed -e 's/\/[^/]*$//' | sort | uniq))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001388 if [[ ${#lines[@]} = 0 ]]; then
1389 echo "Not found"
1390 return
1391 fi
1392 local pathname
1393 local choice
1394 if [[ ${#lines[@]} > 1 ]]; then
1395 while [[ -z "$pathname" ]]; do
1396 local index=1
1397 local line
1398 for line in ${lines[@]}; do
1399 printf "%6s %s\n" "[$index]" $line
Doug Zongker29034982011-04-22 08:16:56 -07001400 index=$(($index + 1))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001401 done
1402 echo
1403 echo -n "Select one: "
1404 unset choice
1405 read choice
1406 if [[ $choice -gt ${#lines[@]} || $choice -lt 1 ]]; then
1407 echo "Invalid choice"
1408 continue
1409 fi
Kan-Ru Chen07453762010-07-05 15:53:47 +08001410 pathname=${lines[$(($choice-1))]}
The Android Open Source Project88b60792009-03-03 19:28:42 -08001411 done
1412 else
The Android Open Source Project88b60792009-03-03 19:28:42 -08001413 pathname=${lines[0]}
1414 fi
Ying Wang9cd17642012-12-13 10:52:07 -08001415 \cd $T/$pathname
The Android Open Source Project88b60792009-03-03 19:28:42 -08001416}
1417
Narayan Kamath9260bba2014-01-17 10:05:25 +00001418# Force JAVA_HOME to point to java 1.7 or java 1.6 if it isn't already set.
1419#
1420# Note that the MacOS path for java 1.7 includes a minor revision number (sigh).
1421# For some reason, installing the JDK doesn't make it show up in the
1422# JavaVM.framework/Versions/1.7/ folder.
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -05001423function set_java_home() {
Narayan Kamath9260bba2014-01-17 10:05:25 +00001424 # Clear the existing JAVA_HOME value if we set it ourselves, so that
Narayan Kamathc84889b2014-04-01 14:16:26 +01001425 # we can reset it later, depending on the version of java the build
1426 # system needs.
Narayan Kamath9260bba2014-01-17 10:05:25 +00001427 #
1428 # If we don't do this, the JAVA_HOME value set by the first call to
1429 # build/envsetup.sh will persist forever.
1430 if [ -n "$ANDROID_SET_JAVA_HOME" ]; then
1431 export JAVA_HOME=""
1432 fi
1433
Andy McFaddenbd960942010-06-24 12:52:51 -07001434 if [ ! "$JAVA_HOME" ]; then
Narayan Kamathc84889b2014-04-01 14:16:26 +01001435 if [ -n "$LEGACY_USE_JAVA6" ]; then
Andy McFaddenbd960942010-06-24 12:52:51 -07001436 case `uname -s` in
1437 Darwin)
1438 export JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Versions/1.6/Home
1439 ;;
1440 *)
1441 export JAVA_HOME=/usr/lib/jvm/java-6-sun
1442 ;;
1443 esac
Narayan Kamath9260bba2014-01-17 10:05:25 +00001444 else
1445 case `uname -s` in
1446 Darwin)
Jason Parks13b2e192014-04-28 13:32:10 -05001447 export JAVA_HOME=$(/usr/libexec/java_home -v 1.7)
Narayan Kamath9260bba2014-01-17 10:05:25 +00001448 ;;
1449 *)
1450 export JAVA_HOME=/usr/lib/jvm/java-7-openjdk-amd64
1451 ;;
1452 esac
1453 fi
1454
1455 # Keep track of the fact that we set JAVA_HOME ourselves, so that
1456 # we can change it on the next envsetup.sh, if required.
1457 export ANDROID_SET_JAVA_HOME=true
Jeff Hamilton04be0d82010-06-07 15:03:54 -05001458 fi
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -05001459}
Jeff Hamilton04be0d82010-06-07 15:03:54 -05001460
Alex Rayf0d08eb2013-03-08 15:15:06 -08001461# Print colored exit condition
1462function pez {
Michael Wrighteb733842013-03-08 17:34:02 -08001463 "$@"
1464 local retval=$?
1465 if [ $retval -ne 0 ]
1466 then
1467 echo -e "\e[0;31mFAILURE\e[00m"
1468 else
1469 echo -e "\e[0;32mSUCCESS\e[00m"
1470 fi
1471 return $retval
Alex Rayf0d08eb2013-03-08 15:15:06 -08001472}
1473
Ed Heylcc6be0a2014-06-18 14:55:58 -07001474function make()
1475{
1476 local start_time=$(date +"%s")
Ying Wangdcc8b372014-07-01 10:58:10 -07001477 command make "$@"
Ed Heylcc6be0a2014-06-18 14:55:58 -07001478 local ret=$?
1479 local end_time=$(date +"%s")
1480 local tdiff=$(($end_time-$start_time))
1481 local hours=$(($tdiff / 3600 ))
1482 local mins=$((($tdiff % 3600) / 60))
1483 local secs=$(($tdiff % 60))
1484 echo
1485 if [ $ret -eq 0 ] ; then
Ed Heylc6d11f82014-06-27 13:32:39 -07001486 echo -n -e "#### make completed successfully "
Ed Heylcc6be0a2014-06-18 14:55:58 -07001487 else
Ed Heylc6d11f82014-06-27 13:32:39 -07001488 echo -n -e "#### make failed to build some targets "
Ed Heylcc6be0a2014-06-18 14:55:58 -07001489 fi
1490 if [ $hours -gt 0 ] ; then
1491 printf "(%02g:%02g:%02g (hh:mm:ss))" $hours $mins $secs
1492 elif [ $mins -gt 0 ] ; then
1493 printf "(%02g:%02g (mm:ss))" $mins $secs
1494 elif [ $secs -gt 0 ] ; then
1495 printf "(%s seconds)" $secs
1496 fi
Ed Heylc6d11f82014-06-27 13:32:39 -07001497 echo -e " ####"
Ed Heylcc6be0a2014-06-18 14:55:58 -07001498 echo
1499 return $ret
1500}
1501
1502
1503
Raphael Moll70a86b02011-06-20 16:03:14 -07001504if [ "x$SHELL" != "x/bin/bash" ]; then
1505 case `ps -o command -p $$` in
1506 *bash*)
1507 ;;
1508 *)
1509 echo "WARNING: Only bash is supported, use of other shell would lead to erroneous results"
1510 ;;
1511 esac
1512fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001513
1514# Execute the contents of any vendorsetup.sh files we can find.
Ying Wang506410a2014-07-09 15:37:34 -07001515for f in `test -d device && find -L device -maxdepth 4 -name 'vendorsetup.sh' 2> /dev/null` \
1516 `test -d vendor && find -L vendor -maxdepth 4 -name 'vendorsetup.sh' 2> /dev/null`
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001517do
1518 echo "including $f"
1519 . $f
1520done
1521unset f
Kenny Root52aa81c2011-07-15 11:07:06 -07001522
1523addcompletions