blob: 5c66a9ee3bd447675bd31aaa8b1654cc2ba79c6d [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 Wangf05c4f72013-01-31 11:16:57 -08005- tapas: tapas [<App1> <App2> ...] [arm|x86|mips|armv5] [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.
14- jgrep: Greps on all local Java files.
15- resgrep: Greps on all local res/*.xml files.
The Android Open Source Project88b60792009-03-03 19:28:42 -080016- godir: Go to the directory containing a file.
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070017
18Look at the source to view more functions. The complete list is:
19EOF
20 T=$(gettop)
21 local A
22 A=""
23 for i in `cat $T/build/envsetup.sh | sed -n "/^function /s/function \([a-z_]*\).*/\1/p" | sort`; do
24 A="$A $i"
25 done
26 echo $A
27}
28
29# Get the value of a build variable as an absolute path.
30function get_abs_build_var()
31{
32 T=$(gettop)
33 if [ ! "$T" ]; then
34 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
35 return
36 fi
Ying Wang9cd17642012-12-13 10:52:07 -080037 (\cd $T; CALLED_FROM_SETUP=true BUILD_SYSTEM=build/core \
Andrew Boie6905e212013-12-19 13:21:46 -080038 make --no-print-directory -f build/core/config.mk dumpvar-abs-$1)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070039}
40
41# Get the exact value of a build variable.
42function get_build_var()
43{
44 T=$(gettop)
45 if [ ! "$T" ]; then
46 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
47 return
48 fi
Andrew Boie6905e212013-12-19 13:21:46 -080049 (\cd $T; CALLED_FROM_SETUP=true BUILD_SYSTEM=build/core \
50 make --no-print-directory -f build/core/config.mk dumpvar-$1)
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -080051}
52
53# check to see if the supplied product is one we can build
54function check_product()
55{
56 T=$(gettop)
57 if [ ! "$T" ]; then
58 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
59 return
60 fi
Jeff Browne33ba4c2011-07-11 22:11:46 -070061 TARGET_PRODUCT=$1 \
62 TARGET_BUILD_VARIANT= \
63 TARGET_BUILD_TYPE= \
Joe Onoratoda12daf2010-06-09 18:18:31 -070064 TARGET_BUILD_APPS= \
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -080065 get_build_var TARGET_DEVICE > /dev/null
66 # hide successful answers, but allow the errors to show
67}
68
69VARIANT_CHOICES=(user userdebug eng)
70
71# check to see if the supplied variant is valid
72function check_variant()
73{
74 for v in ${VARIANT_CHOICES[@]}
75 do
76 if [ "$v" = "$1" ]
77 then
78 return 0
79 fi
80 done
81 return 1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070082}
83
84function setpaths()
85{
86 T=$(gettop)
87 if [ ! "$T" ]; then
88 echo "Couldn't locate the top of the tree. Try setting TOP."
89 return
90 fi
91
92 ##################################################################
93 # #
94 # Read me before you modify this code #
95 # #
96 # This function sets ANDROID_BUILD_PATHS to what it is adding #
97 # to PATH, and the next time it is run, it removes that from #
98 # PATH. This is required so lunch can be run more than once #
99 # and still have working paths. #
100 # #
101 ##################################################################
102
Raphael Mollc639c782011-06-20 17:25:01 -0700103 # Note: on windows/cygwin, ANDROID_BUILD_PATHS will contain spaces
104 # due to "C:\Program Files" being in the path.
105
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700106 # out with the old
Raphael Mollc639c782011-06-20 17:25:01 -0700107 if [ -n "$ANDROID_BUILD_PATHS" ] ; then
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700108 export PATH=${PATH/$ANDROID_BUILD_PATHS/}
109 fi
Raphael Mollc639c782011-06-20 17:25:01 -0700110 if [ -n "$ANDROID_PRE_BUILD_PATHS" ] ; then
Doug Zongker29034982011-04-22 08:16:56 -0700111 export PATH=${PATH/$ANDROID_PRE_BUILD_PATHS/}
Ying Wangaa1c9b52012-11-26 20:51:59 -0800112 # strip leading ':', if any
113 export PATH=${PATH/:%/}
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500114 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700115
116 # and in with the new
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700117 prebuiltdir=$(getprebuilt)
Jing Yuf5172c72012-03-29 20:45:50 -0700118 gccprebuiltdir=$(get_abs_build_var ANDROID_GCC_PREBUILTS)
Raphael732936d2011-06-22 14:35:32 -0700119
Ben Cheng8bc4c432012-11-16 13:29:13 -0800120 # defined in core/config.mk
121 targetgccversion=$(get_build_var TARGET_GCC_VERSION)
Colin Cross03b424a2014-05-22 11:57:43 -0700122 targetgccversion2=$(get_build_var 2ND_TARGET_GCC_VERSION)
Ben Cheng15266702012-12-10 16:04:39 -0800123 export TARGET_GCC_VERSION=$targetgccversion
Ben Cheng8bc4c432012-11-16 13:29:13 -0800124
Raphael Mollc639c782011-06-20 17:25:01 -0700125 # The gcc toolchain does not exists for windows/cygwin. In this case, do not reference it.
Ben Chengfba67bf2014-02-25 10:27:07 -0800126 export ANDROID_TOOLCHAIN=
127 export ANDROID_TOOLCHAIN_2ND_ARCH=
David 'Digit' Turner2056c252012-04-17 14:50:47 +0200128 local ARCH=$(get_build_var TARGET_ARCH)
129 case $ARCH in
Pavel Chupinc1a56642013-08-23 16:49:21 +0400130 x86) toolchaindir=x86/x86_64-linux-android-$targetgccversion/bin
Mark D Horn7d0ede72012-03-14 14:20:30 -0700131 ;;
Pavel Chupinfd82a492012-11-26 09:50:07 +0400132 x86_64) toolchaindir=x86/x86_64-linux-android-$targetgccversion/bin
133 ;;
Ben Cheng8bc4c432012-11-16 13:29:13 -0800134 arm) toolchaindir=arm/arm-linux-androideabi-$targetgccversion/bin
David 'Digit' Turner2056c252012-04-17 14:50:47 +0200135 ;;
Ben Chengfba67bf2014-02-25 10:27:07 -0800136 arm64) toolchaindir=aarch64/aarch64-linux-android-$targetgccversion/bin;
Colin Cross03b424a2014-05-22 11:57:43 -0700137 toolchaindir2=arm/arm-linux-androideabi-$targetgccversion2/bin
Ben Chengdb4fc202013-10-04 16:02:59 -0700138 ;;
Duane Sand6670e242014-07-22 14:34:00 -0700139 mips|mips64) toolchaindir=mips/mips64el-linux-android-$targetgccversion/bin
Serban Constantinescu9b68fb22014-01-14 10:33:53 +0000140 ;;
David 'Digit' Turner2056c252012-04-17 14:50:47 +0200141 *)
142 echo "Can't find toolchain for unknown architecture: $ARCH"
143 toolchaindir=xxxxxxxxx
Mark D Horn7d0ede72012-03-14 14:20:30 -0700144 ;;
145 esac
Jing Yuf5172c72012-03-29 20:45:50 -0700146 if [ -d "$gccprebuiltdir/$toolchaindir" ]; then
Ben Chengfba67bf2014-02-25 10:27:07 -0800147 export ANDROID_TOOLCHAIN=$gccprebuiltdir/$toolchaindir
Raphael Mollc639c782011-06-20 17:25:01 -0700148 fi
Raphael732936d2011-06-22 14:35:32 -0700149
Ben Chengfba67bf2014-02-25 10:27:07 -0800150 if [ -d "$gccprebuiltdir/$toolchaindir2" ]; then
151 export ANDROID_TOOLCHAIN_2ND_ARCH=$gccprebuiltdir/$toolchaindir2
152 fi
153
154 unset ANDROID_KERNEL_TOOLCHAIN_PATH
Ying Wang08f5e9a2012-04-17 18:10:11 -0700155 case $ARCH in
Bruce Beare42ced6d2012-07-17 21:40:01 -0700156 arm)
Ben Chengfba67bf2014-02-25 10:27:07 -0800157 # Legacy toolchain configuration used for ARM kernel compilation
Ben Cheng8bc4c432012-11-16 13:29:13 -0800158 toolchaindir=arm/arm-eabi-$targetgccversion/bin
Bruce Beare42ced6d2012-07-17 21:40:01 -0700159 if [ -d "$gccprebuiltdir/$toolchaindir" ]; then
Torne (Richard Coles)f24c3562014-04-25 16:24:22 +0100160 export ARM_EABI_TOOLCHAIN="$gccprebuiltdir/$toolchaindir"
161 ANDROID_KERNEL_TOOLCHAIN_PATH="$ARM_EABI_TOOLCHAIN":
Bruce Beare42ced6d2012-07-17 21:40:01 -0700162 fi
Ying Wang08f5e9a2012-04-17 18:10:11 -0700163 ;;
164 *)
Bruce Beare42ced6d2012-07-17 21:40:01 -0700165 # No need to set ARM_EABI_TOOLCHAIN for other ARCHs
Ying Wang08f5e9a2012-04-17 18:10:11 -0700166 ;;
167 esac
Ying Wang08f5e9a2012-04-17 18:10:11 -0700168
Ying Wang564f9122013-03-29 17:40:14 -0700169 export ANDROID_DEV_SCRIPTS=$T/development/scripts:$T/prebuilts/devtools/tools
Ying Wang2a859d52014-06-30 10:25:33 -0700170 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 +0200171
172 # If prebuilts/android-emulator/<system>/ exists, prepend it to our PATH
173 # to ensure that the corresponding 'emulator' binaries are used.
174 case $(uname -s) in
175 Darwin)
176 ANDROID_EMULATOR_PREBUILTS=$T/prebuilts/android-emulator/darwin-x86_64
177 ;;
178 Linux)
179 ANDROID_EMULATOR_PREBUILTS=$T/prebuilts/android-emulator/linux-x86_64
180 ;;
181 *)
182 ANDROID_EMULATOR_PREBUILTS=
183 ;;
184 esac
185 if [ -n "$ANDROID_EMULATOR_PREBUILTS" -a -d "$ANDROID_EMULATOR_PREBUILTS" ]; then
Christopher Ferris7110f242014-05-20 13:56:00 -0700186 ANDROID_BUILD_PATHS=$ANDROID_BUILD_PATHS$ANDROID_EMULATOR_PREBUILTS:
David 'Digit' Turner94d16e52014-05-05 16:13:50 +0200187 export ANDROID_EMULATOR_PREBUILTS
188 fi
189
Ying Wangaa1c9b52012-11-26 20:51:59 -0800190 export PATH=$ANDROID_BUILD_PATHS$PATH
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800191
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500192 unset ANDROID_JAVA_TOOLCHAIN
Ji-Hwan Lee752ad062011-07-04 14:09:47 +0900193 unset ANDROID_PRE_BUILD_PATHS
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500194 if [ -n "$JAVA_HOME" ]; then
195 export ANDROID_JAVA_TOOLCHAIN=$JAVA_HOME/bin
Ji-Hwan Lee752ad062011-07-04 14:09:47 +0900196 export ANDROID_PRE_BUILD_PATHS=$ANDROID_JAVA_TOOLCHAIN:
197 export PATH=$ANDROID_PRE_BUILD_PATHS$PATH
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500198 fi
199
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800200 unset ANDROID_PRODUCT_OUT
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700201 export ANDROID_PRODUCT_OUT=$(get_abs_build_var PRODUCT_OUT)
202 export OUT=$ANDROID_PRODUCT_OUT
203
Jeff Brown8fd5cce2011-03-24 17:03:06 -0700204 unset ANDROID_HOST_OUT
205 export ANDROID_HOST_OUT=$(get_abs_build_var HOST_OUT)
206
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800207 # needed for building linux on MacOS
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700208 # TODO: fix the path
209 #export HOST_EXTRACFLAGS="-I "$T/system/kernel_headers/host_include
210}
211
212function printconfig()
213{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800214 T=$(gettop)
215 if [ ! "$T" ]; then
216 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
217 return
218 fi
219 get_build_var report_config
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700220}
221
222function set_stuff_for_environment()
223{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800224 settitle
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500225 set_java_home
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800226 setpaths
227 set_sequence_number
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700228
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800229 export ANDROID_BUILD_TOP=$(gettop)
Ben Chengaac3f812013-08-13 14:38:15 -0700230 # With this environment variable new GCC can apply colors to warnings/errors
231 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 -0700232}
233
234function set_sequence_number()
235{
Joe Onoratoaee4daa2010-06-23 14:03:13 -0700236 export BUILD_ENV_SEQUENCE_NUMBER=10
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700237}
238
239function settitle()
240{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800241 if [ "$STAY_OFF_MY_LAWN" = "" ]; then
Raghu Gandham8da43102012-07-25 19:57:22 -0700242 local arch=$(gettargetarch)
Joe Onoratoda12daf2010-06-09 18:18:31 -0700243 local product=$TARGET_PRODUCT
244 local variant=$TARGET_BUILD_VARIANT
245 local apps=$TARGET_BUILD_APPS
246 if [ -z "$apps" ]; then
Raghu Gandham8da43102012-07-25 19:57:22 -0700247 export PROMPT_COMMAND="echo -ne \"\033]0;[${arch}-${product}-${variant}] ${USER}@${HOSTNAME}: ${PWD}\007\""
Joe Onoratoda12daf2010-06-09 18:18:31 -0700248 else
Raghu Gandham8da43102012-07-25 19:57:22 -0700249 export PROMPT_COMMAND="echo -ne \"\033]0;[$arch $apps $variant] ${USER}@${HOSTNAME}: ${PWD}\007\""
Joe Onoratoda12daf2010-06-09 18:18:31 -0700250 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800251 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700252}
253
Kenny Root52aa81c2011-07-15 11:07:06 -0700254function addcompletions()
255{
256 local T dir f
257
258 # Keep us from trying to run in something that isn't bash.
259 if [ -z "${BASH_VERSION}" ]; then
260 return
261 fi
262
263 # Keep us from trying to run in bash that's too old.
264 if [ ${BASH_VERSINFO[0]} -lt 3 ]; then
265 return
266 fi
267
268 dir="sdk/bash_completion"
269 if [ -d ${dir} ]; then
Kenny Root7546d612011-07-18 13:11:34 -0700270 for f in `/bin/ls ${dir}/[a-z]*.bash 2> /dev/null`; do
Kenny Root52aa81c2011-07-15 11:07:06 -0700271 echo "including $f"
272 . $f
273 done
274 fi
275}
276
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700277function choosetype()
278{
279 echo "Build type choices are:"
280 echo " 1. release"
281 echo " 2. debug"
282 echo
283
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800284 local DEFAULT_NUM DEFAULT_VALUE
Jeff Browne33ba4c2011-07-11 22:11:46 -0700285 DEFAULT_NUM=1
286 DEFAULT_VALUE=release
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700287
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800288 export TARGET_BUILD_TYPE=
289 local ANSWER
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700290 while [ -z $TARGET_BUILD_TYPE ]
291 do
292 echo -n "Which would you like? ["$DEFAULT_NUM"] "
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800293 if [ -z "$1" ] ; then
294 read ANSWER
295 else
296 echo $1
297 ANSWER=$1
298 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700299 case $ANSWER in
300 "")
301 export TARGET_BUILD_TYPE=$DEFAULT_VALUE
302 ;;
303 1)
304 export TARGET_BUILD_TYPE=release
305 ;;
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800306 release)
307 export TARGET_BUILD_TYPE=release
308 ;;
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700309 2)
310 export TARGET_BUILD_TYPE=debug
311 ;;
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800312 debug)
313 export TARGET_BUILD_TYPE=debug
314 ;;
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700315 *)
316 echo
317 echo "I didn't understand your response. Please try again."
318 echo
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700319 ;;
320 esac
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800321 if [ -n "$1" ] ; then
322 break
323 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700324 done
325
326 set_stuff_for_environment
327}
328
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800329#
330# This function isn't really right: It chooses a TARGET_PRODUCT
331# based on the list of boards. Usually, that gets you something
332# that kinda works with a generic product, but really, you should
333# pick a product by name.
334#
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700335function chooseproduct()
336{
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700337 if [ "x$TARGET_PRODUCT" != x ] ; then
338 default_value=$TARGET_PRODUCT
339 else
Jeff Browne33ba4c2011-07-11 22:11:46 -0700340 default_value=full
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700341 fi
342
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800343 export TARGET_PRODUCT=
344 local ANSWER
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700345 while [ -z "$TARGET_PRODUCT" ]
346 do
Joe Onorato8849aed2009-04-29 15:56:47 -0700347 echo -n "Which product would you like? [$default_value] "
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800348 if [ -z "$1" ] ; then
349 read ANSWER
350 else
351 echo $1
352 ANSWER=$1
353 fi
354
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700355 if [ -z "$ANSWER" ] ; then
356 export TARGET_PRODUCT=$default_value
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800357 else
358 if check_product $ANSWER
359 then
360 export TARGET_PRODUCT=$ANSWER
361 else
362 echo "** Not a valid product: $ANSWER"
363 fi
364 fi
365 if [ -n "$1" ] ; then
366 break
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700367 fi
368 done
369
370 set_stuff_for_environment
371}
372
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800373function choosevariant()
374{
375 echo "Variant choices are:"
376 local index=1
377 local v
378 for v in ${VARIANT_CHOICES[@]}
379 do
380 # The product name is the name of the directory containing
381 # the makefile we found, above.
382 echo " $index. $v"
383 index=$(($index+1))
384 done
385
386 local default_value=eng
387 local ANSWER
388
389 export TARGET_BUILD_VARIANT=
390 while [ -z "$TARGET_BUILD_VARIANT" ]
391 do
392 echo -n "Which would you like? [$default_value] "
393 if [ -z "$1" ] ; then
394 read ANSWER
395 else
396 echo $1
397 ANSWER=$1
398 fi
399
400 if [ -z "$ANSWER" ] ; then
401 export TARGET_BUILD_VARIANT=$default_value
402 elif (echo -n $ANSWER | grep -q -e "^[0-9][0-9]*$") ; then
403 if [ "$ANSWER" -le "${#VARIANT_CHOICES[@]}" ] ; then
Kan-Ru Chen07453762010-07-05 15:53:47 +0800404 export TARGET_BUILD_VARIANT=${VARIANT_CHOICES[$(($ANSWER-1))]}
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800405 fi
406 else
407 if check_variant $ANSWER
408 then
409 export TARGET_BUILD_VARIANT=$ANSWER
410 else
411 echo "** Not a valid variant: $ANSWER"
412 fi
413 fi
414 if [ -n "$1" ] ; then
415 break
416 fi
417 done
418}
419
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700420function choosecombo()
421{
Jeff Browne33ba4c2011-07-11 22:11:46 -0700422 choosetype $1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700423
424 echo
425 echo
Jeff Browne33ba4c2011-07-11 22:11:46 -0700426 chooseproduct $2
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700427
428 echo
429 echo
Jeff Browne33ba4c2011-07-11 22:11:46 -0700430 choosevariant $3
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800431
432 echo
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700433 set_stuff_for_environment
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800434 printconfig
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700435}
436
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800437# Clear this variable. It will be built up again when the vendorsetup.sh
438# files are included at the end of this file.
439unset LUNCH_MENU_CHOICES
440function add_lunch_combo()
441{
442 local new_combo=$1
443 local c
444 for c in ${LUNCH_MENU_CHOICES[@]} ; do
445 if [ "$new_combo" = "$c" ] ; then
446 return
447 fi
448 done
449 LUNCH_MENU_CHOICES=(${LUNCH_MENU_CHOICES[@]} $new_combo)
450}
451
452# add the default one here
Jean-Baptiste Queru324c1232013-03-22 15:53:54 -0700453add_lunch_combo aosp_arm-eng
Colin Cross4f0eb7d2014-01-21 19:35:38 -0800454add_lunch_combo aosp_arm64-eng
Serban Constantinescu9b68fb22014-01-14 10:33:53 +0000455add_lunch_combo aosp_mips-eng
Chris Dearman1efd9e42014-02-03 15:01:24 -0800456add_lunch_combo aosp_mips64-eng
Serban Constantinescu9b68fb22014-01-14 10:33:53 +0000457add_lunch_combo aosp_x86-eng
458add_lunch_combo aosp_x86_64-eng
Bruce Beareba366c42011-02-15 16:46:08 -0800459add_lunch_combo vbox_x86-eng
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800460
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700461function print_lunch_menu()
462{
463 local uname=$(uname)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700464 echo
465 echo "You're building on" $uname
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700466 echo
467 echo "Lunch menu... pick a combo:"
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800468
469 local i=1
470 local choice
471 for choice in ${LUNCH_MENU_CHOICES[@]}
472 do
473 echo " $i. $choice"
474 i=$(($i+1))
475 done
476
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700477 echo
478}
479
480function lunch()
481{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800482 local answer
483
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700484 if [ "$1" ] ; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800485 answer=$1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700486 else
487 print_lunch_menu
Jean-Baptiste Queru324c1232013-03-22 15:53:54 -0700488 echo -n "Which would you like? [aosp_arm-eng] "
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800489 read answer
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700490 fi
491
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800492 local selection=
493
494 if [ -z "$answer" ]
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700495 then
Jean-Baptiste Queru324c1232013-03-22 15:53:54 -0700496 selection=aosp_arm-eng
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800497 elif (echo -n $answer | grep -q -e "^[0-9][0-9]*$")
498 then
499 if [ $answer -le ${#LUNCH_MENU_CHOICES[@]} ]
500 then
Kan-Ru Chen07453762010-07-05 15:53:47 +0800501 selection=${LUNCH_MENU_CHOICES[$(($answer-1))]}
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800502 fi
503 elif (echo -n $answer | grep -q -e "^[^\-][^\-]*-[^\-][^\-]*$")
504 then
505 selection=$answer
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700506 fi
507
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800508 if [ -z "$selection" ]
509 then
510 echo
511 echo "Invalid lunch combo: $answer"
512 return 1
513 fi
514
Joe Onoratoda12daf2010-06-09 18:18:31 -0700515 export TARGET_BUILD_APPS=
516
Jeff Browne33ba4c2011-07-11 22:11:46 -0700517 local product=$(echo -n $selection | sed -e "s/-.*$//")
518 check_product $product
519 if [ $? -ne 0 ]
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800520 then
Jeff Browne33ba4c2011-07-11 22:11:46 -0700521 echo
522 echo "** Don't have a product spec for: '$product'"
523 echo "** Do you have the right repo manifest?"
524 product=
525 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800526
Jeff Browne33ba4c2011-07-11 22:11:46 -0700527 local variant=$(echo -n $selection | sed -e "s/^[^\-]*-//")
528 check_variant $variant
529 if [ $? -ne 0 ]
530 then
531 echo
532 echo "** Invalid variant: '$variant'"
533 echo "** Must be one of ${VARIANT_CHOICES[@]}"
534 variant=
535 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800536
Jeff Browne33ba4c2011-07-11 22:11:46 -0700537 if [ -z "$product" -o -z "$variant" ]
538 then
539 echo
540 return 1
541 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800542
Jeff Browne33ba4c2011-07-11 22:11:46 -0700543 export TARGET_PRODUCT=$product
544 export TARGET_BUILD_VARIANT=$variant
545 export TARGET_BUILD_TYPE=release
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700546
547 echo
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800548
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700549 set_stuff_for_environment
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800550 printconfig
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700551}
552
Jeff Davidson513d7a42010-08-02 10:00:44 -0700553# Tab completion for lunch.
554function _lunch()
555{
556 local cur prev opts
557 COMPREPLY=()
558 cur="${COMP_WORDS[COMP_CWORD]}"
559 prev="${COMP_WORDS[COMP_CWORD-1]}"
560
561 COMPREPLY=( $(compgen -W "${LUNCH_MENU_CHOICES[*]}" -- ${cur}) )
562 return 0
563}
564complete -F _lunch lunch
565
Joe Onoratoda12daf2010-06-09 18:18:31 -0700566# Configures the build to build unbundled apps.
567# Run tapas with one ore more app names (from LOCAL_PACKAGE_NAME)
568function tapas()
569{
Ying Wangf05c4f72013-01-31 11:16:57 -0800570 local arch=$(echo -n $(echo $* | xargs -n 1 echo | \grep -E '^(arm|x86|mips|armv5)$'))
Jeff Hamilton293f9392011-11-18 17:15:25 -0600571 local variant=$(echo -n $(echo $* | xargs -n 1 echo | \grep -E '^(user|userdebug|eng)$'))
Ying Wangf05c4f72013-01-31 11:16:57 -0800572 local apps=$(echo -n $(echo $* | xargs -n 1 echo | \grep -E -v '^(user|userdebug|eng|arm|x86|mips|armv5)$'))
Joe Onoratoda12daf2010-06-09 18:18:31 -0700573
Ying Wang67f02922012-08-22 10:25:20 -0700574 if [ $(echo $arch | wc -w) -gt 1 ]; then
575 echo "tapas: Error: Multiple build archs supplied: $arch"
576 return
577 fi
Joe Onoratoda12daf2010-06-09 18:18:31 -0700578 if [ $(echo $variant | wc -w) -gt 1 ]; then
579 echo "tapas: Error: Multiple build variants supplied: $variant"
580 return
581 fi
Ying Wang67f02922012-08-22 10:25:20 -0700582
583 local product=full
584 case $arch in
585 x86) product=full_x86;;
586 mips) product=full_mips;;
Ying Wangf05c4f72013-01-31 11:16:57 -0800587 armv5) product=generic_armv5;;
Ying Wang67f02922012-08-22 10:25:20 -0700588 esac
Joe Onoratoda12daf2010-06-09 18:18:31 -0700589 if [ -z "$variant" ]; then
590 variant=eng
591 fi
Ying Wangc048c9b2010-06-24 15:08:33 -0700592 if [ -z "$apps" ]; then
593 apps=all
594 fi
Joe Onoratoda12daf2010-06-09 18:18:31 -0700595
Ying Wang67f02922012-08-22 10:25:20 -0700596 export TARGET_PRODUCT=$product
Joe Onoratoda12daf2010-06-09 18:18:31 -0700597 export TARGET_BUILD_VARIANT=$variant
Joe Onoratoda12daf2010-06-09 18:18:31 -0700598 export TARGET_BUILD_TYPE=release
599 export TARGET_BUILD_APPS=$apps
600
601 set_stuff_for_environment
602 printconfig
603}
604
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700605function gettop
606{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800607 local TOPFILE=build/core/envsetup.mk
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700608 if [ -n "$TOP" -a -f "$TOP/$TOPFILE" ] ; then
609 echo $TOP
610 else
611 if [ -f $TOPFILE ] ; then
Dan Bornsteind0b274d2009-11-24 15:48:50 -0800612 # The following circumlocution (repeated below as well) ensures
613 # that we record the true directory name and not one that is
614 # faked up with symlink names.
615 PWD= /bin/pwd
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700616 else
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800617 local HERE=$PWD
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700618 T=
619 while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do
Ying Wang9cd17642012-12-13 10:52:07 -0800620 \cd ..
synergyb112a402013-07-05 19:47:47 -0700621 T=`PWD= /bin/pwd -P`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700622 done
Ying Wang9cd17642012-12-13 10:52:07 -0800623 \cd $HERE
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700624 if [ -f "$T/$TOPFILE" ]; then
625 echo $T
626 fi
627 fi
628 fi
629}
630
Andrew Hsieh906cb782013-09-10 17:37:14 +0800631# Return driver for "make", if any (eg. static analyzer)
632function getdriver()
633{
634 local T="$1"
635 test "$WITH_STATIC_ANALYZER" = "0" && unset WITH_STATIC_ANALYZER
636 if [ -n "$WITH_STATIC_ANALYZER" ]; then
637 echo "\
Andrew Hsiehc4f7fba2014-03-03 16:53:17 +0800638$T/prebuilts/misc/linux-x86/analyzer/tools/scan-build/scan-build \
639--use-analyzer $T/prebuilts/misc/linux-x86/analyzer/bin/analyzer \
Andrew Hsieh906cb782013-09-10 17:37:14 +0800640--status-bugs \
641--top=$T"
642 fi
643}
644
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700645function m()
646{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800647 local T=$(gettop)
648 local DRV=$(getdriver $T)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700649 if [ "$T" ]; then
Andrew Hsieh906cb782013-09-10 17:37:14 +0800650 $DRV make -C $T -f build/core/main.mk $@
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700651 else
652 echo "Couldn't locate the top of the tree. Try setting TOP."
653 fi
654}
655
656function findmakefile()
657{
658 TOPFILE=build/core/envsetup.mk
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800659 local HERE=$PWD
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700660 T=
661 while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do
Ying Wang11b15b12012-10-11 15:05:07 -0700662 T=`PWD= /bin/pwd`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700663 if [ -f "$T/Android.mk" ]; then
664 echo $T/Android.mk
Ying Wang9cd17642012-12-13 10:52:07 -0800665 \cd $HERE
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700666 return
667 fi
Ying Wang9cd17642012-12-13 10:52:07 -0800668 \cd ..
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700669 done
Ying Wang9cd17642012-12-13 10:52:07 -0800670 \cd $HERE
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700671}
672
673function mm()
674{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800675 local T=$(gettop)
676 local DRV=$(getdriver $T)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700677 # If we're sitting in the root of the build tree, just do a
678 # normal make.
679 if [ -f build/core/envsetup.mk -a -f Makefile ]; then
Andrew Hsieh906cb782013-09-10 17:37:14 +0800680 $DRV make $@
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700681 else
682 # Find the closest Android.mk file.
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800683 local M=$(findmakefile)
Ying Wanga7deb082013-08-16 13:24:47 -0700684 local MODULES=
685 local GET_INSTALL_PATH=
686 local ARGS=
Robert Greenwalt3c794d72009-07-15 15:07:44 -0700687 # Remove the path to top as the makefilepath needs to be relative
688 local M=`echo $M|sed 's:'$T'/::'`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700689 if [ ! "$T" ]; then
690 echo "Couldn't locate the top of the tree. Try setting TOP."
691 elif [ ! "$M" ]; then
692 echo "Couldn't locate a makefile from the current directory."
693 else
Ying Wanga7deb082013-08-16 13:24:47 -0700694 for ARG in $@; do
695 case $ARG in
696 GET-INSTALL-PATH) GET_INSTALL_PATH=$ARG;;
697 esac
698 done
699 if [ -n "$GET_INSTALL_PATH" ]; then
700 MODULES=
701 ARGS=GET-INSTALL-PATH
702 else
703 MODULES=all_modules
704 ARGS=$@
705 fi
Andrew Hsieh246daf72013-09-10 18:07:23 -0700706 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 -0700707 fi
708 fi
709}
710
711function mmm()
712{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800713 local T=$(gettop)
714 local DRV=$(getdriver $T)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700715 if [ "$T" ]; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800716 local MAKEFILE=
Alon Albert68895a92011-11-30 12:40:19 -0800717 local MODULES=
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800718 local ARGS=
719 local DIR TO_CHOP
Ying Wanga7deb082013-08-16 13:24:47 -0700720 local GET_INSTALL_PATH=
The Android Open Source Project88b60792009-03-03 19:28:42 -0800721 local DASH_ARGS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^-.*$/')
722 local DIRS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^[^-].*$/')
723 for DIR in $DIRS ; do
Alon Albert68895a92011-11-30 12:40:19 -0800724 MODULES=`echo $DIR | sed -n -e 's/.*:\(.*$\)/\1/p' | sed 's/,/ /'`
725 if [ "$MODULES" = "" ]; then
726 MODULES=all_modules
727 fi
728 DIR=`echo $DIR | sed -e 's/:.*//' -e 's:/$::'`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700729 if [ -f $DIR/Android.mk ]; then
Ying Wanga7deb082013-08-16 13:24:47 -0700730 local TO_CHOP=`(\cd -P -- $T && pwd -P) | wc -c | tr -d ' '`
731 local TO_CHOP=`expr $TO_CHOP + 1`
732 local START=`PWD= /bin/pwd`
733 local MFILE=`echo $START | cut -c${TO_CHOP}-`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700734 if [ "$MFILE" = "" ] ; then
735 MFILE=$DIR/Android.mk
736 else
737 MFILE=$MFILE/$DIR/Android.mk
738 fi
739 MAKEFILE="$MAKEFILE $MFILE"
740 else
Ying Wanga7deb082013-08-16 13:24:47 -0700741 case $DIR in
742 showcommands | snod | dist | incrementaljavac) ARGS="$ARGS $DIR";;
743 GET-INSTALL-PATH) GET_INSTALL_PATH=$DIR;;
744 *) echo "No Android.mk in $DIR."; return 1;;
745 esac
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700746 fi
747 done
Ying Wanga7deb082013-08-16 13:24:47 -0700748 if [ -n "$GET_INSTALL_PATH" ]; then
749 ARGS=$GET_INSTALL_PATH
750 MODULES=
751 fi
Andrew Hsieh906cb782013-09-10 17:37:14 +0800752 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 -0700753 else
754 echo "Couldn't locate the top of the tree. Try setting TOP."
755 fi
756}
757
Ying Wangb607f7b2013-02-08 18:01:04 -0800758function mma()
759{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800760 local T=$(gettop)
761 local DRV=$(getdriver $T)
Ying Wangb607f7b2013-02-08 18:01:04 -0800762 if [ -f build/core/envsetup.mk -a -f Makefile ]; then
Andrew Hsieh906cb782013-09-10 17:37:14 +0800763 $DRV make $@
Ying Wangb607f7b2013-02-08 18:01:04 -0800764 else
Ying Wangb607f7b2013-02-08 18:01:04 -0800765 if [ ! "$T" ]; then
766 echo "Couldn't locate the top of the tree. Try setting TOP."
767 fi
768 local MY_PWD=`PWD= /bin/pwd|sed 's:'$T'/::'`
Andrew Hsieh906cb782013-09-10 17:37:14 +0800769 $DRV make -C $T -f build/core/main.mk $@ all_modules BUILD_MODULES_IN_PATHS="$MY_PWD"
Ying Wangb607f7b2013-02-08 18:01:04 -0800770 fi
771}
772
773function mmma()
774{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800775 local T=$(gettop)
776 local DRV=$(getdriver $T)
Ying Wangb607f7b2013-02-08 18:01:04 -0800777 if [ "$T" ]; then
778 local DASH_ARGS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^-.*$/')
779 local DIRS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^[^-].*$/')
780 local MY_PWD=`PWD= /bin/pwd`
781 if [ "$MY_PWD" = "$T" ]; then
782 MY_PWD=
783 else
784 MY_PWD=`echo $MY_PWD|sed 's:'$T'/::'`
785 fi
786 local DIR=
787 local MODULE_PATHS=
788 local ARGS=
789 for DIR in $DIRS ; do
790 if [ -d $DIR ]; then
791 if [ "$MY_PWD" = "" ]; then
792 MODULE_PATHS="$MODULE_PATHS $DIR"
793 else
794 MODULE_PATHS="$MODULE_PATHS $MY_PWD/$DIR"
795 fi
796 else
797 case $DIR in
798 showcommands | snod | dist | incrementaljavac) ARGS="$ARGS $DIR";;
799 *) echo "Couldn't find directory $DIR"; return 1;;
800 esac
801 fi
802 done
Andrew Hsieh906cb782013-09-10 17:37:14 +0800803 $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 -0800804 else
805 echo "Couldn't locate the top of the tree. Try setting TOP."
806 fi
807}
808
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700809function croot()
810{
811 T=$(gettop)
812 if [ "$T" ]; then
Ying Wang9cd17642012-12-13 10:52:07 -0800813 \cd $(gettop)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700814 else
815 echo "Couldn't locate the top of the tree. Try setting TOP."
816 fi
817}
818
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700819function cproj()
820{
821 TOPFILE=build/core/envsetup.mk
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700822 local HERE=$PWD
823 T=
824 while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do
825 T=$PWD
826 if [ -f "$T/Android.mk" ]; then
Ying Wang9cd17642012-12-13 10:52:07 -0800827 \cd $T
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700828 return
829 fi
Ying Wang9cd17642012-12-13 10:52:07 -0800830 \cd ..
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700831 done
Ying Wang9cd17642012-12-13 10:52:07 -0800832 \cd $HERE
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700833 echo "can't find Android.mk"
834}
835
Daniel Sandler47e0a882013-07-30 13:23:52 -0400836# simplified version of ps; output in the form
837# <pid> <procname>
838function qpid() {
839 local prepend=''
840 local append=''
841 if [ "$1" = "--exact" ]; then
842 prepend=' '
843 append='$'
844 shift
845 elif [ "$1" = "--help" -o "$1" = "-h" ]; then
846 echo "usage: qpid [[--exact] <process name|pid>"
847 return 255
848 fi
849
850 local EXE="$1"
851 if [ "$EXE" ] ; then
Mathias Agopian44583272013-08-27 14:15:50 -0700852 qpid | \grep "$prepend$EXE$append"
Daniel Sandler47e0a882013-07-30 13:23:52 -0400853 else
854 adb shell ps \
855 | tr -d '\r' \
856 | sed -e 1d -e 's/^[^ ]* *\([0-9]*\).* \([^ ]*\)$/\1 \2/'
857 fi
858}
859
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700860function pid()
861{
Daniel Sandler47e0a882013-07-30 13:23:52 -0400862 local prepend=''
863 local append=''
864 if [ "$1" = "--exact" ]; then
865 prepend=' '
866 append='$'
867 shift
868 fi
869 local EXE="$1"
870 if [ "$EXE" ] ; then
871 local PID=`adb shell ps \
872 | tr -d '\r' \
Mathias Agopian44583272013-08-27 14:15:50 -0700873 | \grep "$prepend$EXE$append" \
Daniel Sandler47e0a882013-07-30 13:23:52 -0400874 | sed -e 's/^[^ ]* *\([0-9]*\).*$/\1/'`
875 echo "$PID"
876 else
877 echo "usage: pid [--exact] <process name>"
878 return 255
879 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700880}
881
Christopher Tate744ee802009-11-12 15:33:08 -0800882# systemstack - dump the current stack trace of all threads in the system process
883# to the usual ANR traces file
884function systemstack()
885{
Jeff Sharkeyf5824372013-02-19 17:00:46 -0800886 stacks system_server
887}
888
889function stacks()
890{
891 if [[ $1 =~ ^[0-9]+$ ]] ; then
892 local PID="$1"
893 elif [ "$1" ] ; then
Jeff Brownb12c2e52013-08-19 15:14:16 -0700894 local PIDLIST="$(pid $1)"
895 if [[ $PIDLIST =~ ^[0-9]+$ ]] ; then
896 local PID="$PIDLIST"
897 elif [ "$PIDLIST" ] ; then
898 echo "more than one process: $1"
899 else
900 echo "no such process: $1"
901 fi
Jeff Sharkeyf5824372013-02-19 17:00:46 -0800902 else
903 echo "usage: stacks [pid|process name]"
904 fi
905
906 if [ "$PID" ] ; then
Jeff Brownb12c2e52013-08-19 15:14:16 -0700907 # Determine whether the process is native
908 if adb shell ls -l /proc/$PID/exe | grep -q /system/bin/app_process ; then
909 # Dump stacks of Dalvik process
910 local TRACES=/data/anr/traces.txt
911 local ORIG=/data/anr/traces.orig
912 local TMP=/data/anr/traces.tmp
Jeff Sharkeyf5824372013-02-19 17:00:46 -0800913
Jeff Brownb12c2e52013-08-19 15:14:16 -0700914 # Keep original traces to avoid clobbering
915 adb shell mv $TRACES $ORIG
Jeff Sharkeyf5824372013-02-19 17:00:46 -0800916
Jeff Brownb12c2e52013-08-19 15:14:16 -0700917 # Make sure we have a usable file
918 adb shell touch $TRACES
919 adb shell chmod 666 $TRACES
Jeff Sharkeyf5824372013-02-19 17:00:46 -0800920
Jeff Brownb12c2e52013-08-19 15:14:16 -0700921 # Dump stacks and wait for dump to finish
922 adb shell kill -3 $PID
923 adb shell notify $TRACES >/dev/null
Jeff Sharkeyf5824372013-02-19 17:00:46 -0800924
Jeff Brownb12c2e52013-08-19 15:14:16 -0700925 # Restore original stacks, and show current output
926 adb shell mv $TRACES $TMP
927 adb shell mv $ORIG $TRACES
928 adb shell cat $TMP
929 else
930 # Dump stacks of native process
Michael Wrightaeed7212014-06-19 19:58:12 -0700931 local USE64BIT="$(is64bit $PID)"
932 adb shell debuggerd$USE64BIT -b $PID
Jeff Brownb12c2e52013-08-19 15:14:16 -0700933 fi
Jeff Sharkeyf5824372013-02-19 17:00:46 -0800934 fi
Christopher Tate744ee802009-11-12 15:33:08 -0800935}
936
John Michelau50200252012-11-09 11:48:04 -0600937function gdbwrapper()
938{
Ben Chengfba67bf2014-02-25 10:27:07 -0800939 local GDB_CMD="$1"
940 shift 1
941 $GDB_CMD -x "$@"
John Michelau50200252012-11-09 11:48:04 -0600942}
943
Brigid Smith0a2712d2014-05-28 14:36:43 -0700944function get_symbols_directory()
945{
946 echo $(get_abs_build_var TARGET_OUT_UNSTRIPPED)
947}
948
Michael Wrightaeed7212014-06-19 19:58:12 -0700949# Read the ELF header from /proc/$PID/exe to determine if the process is
950# 64-bit.
Ben Chengfba67bf2014-02-25 10:27:07 -0800951function is64bit()
952{
953 local PID="$1"
954 if [ "$PID" ] ; then
Michael Wrightaeed7212014-06-19 19:58:12 -0700955 if [[ "$(adb shell cat /proc/$PID/exe | xxd -l 1 -s 4 -ps)" -eq "02" ]] ; then
Ben Chengfba67bf2014-02-25 10:27:07 -0800956 echo "64"
957 else
958 echo ""
959 fi
960 else
961 echo ""
962 fi
963}
964
965# gdbclient now determines whether the user wants to debug a 32-bit or 64-bit
966# executable, set up the approriate gdbserver, then invokes the proper host
967# gdb.
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700968function gdbclient()
969{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800970 local OUT_ROOT=$(get_abs_build_var PRODUCT_OUT)
971 local OUT_SYMBOLS=$(get_abs_build_var TARGET_OUT_UNSTRIPPED)
972 local OUT_SO_SYMBOLS=$(get_abs_build_var TARGET_OUT_SHARED_LIBRARIES_UNSTRIPPED)
Colin Cross3655a682014-05-22 11:59:10 -0700973 local OUT_VENDOR_SO_SYMBOLS=$(get_abs_build_var TARGET_OUT_VENDOR_SHARED_LIBRARIES_UNSTRIPPED)
Brigid Smith0a2712d2014-05-28 14:36:43 -0700974 local OUT_EXE_SYMBOLS=$(get_symbols_directory)
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800975 local PREBUILTS=$(get_abs_build_var ANDROID_PREBUILTS)
Nick Kralevich0ab21d32011-11-11 09:02:01 -0800976 local ARCH=$(get_build_var TARGET_ARCH)
977 local GDB
978 case "$ARCH" in
Nick Kralevich0ab21d32011-11-11 09:02:01 -0800979 arm) GDB=arm-linux-androideabi-gdb;;
Ben Chengfba67bf2014-02-25 10:27:07 -0800980 arm64) GDB=arm-linux-androideabi-gdb; GDB64=aarch64-linux-android-gdb;;
Duane Sand6670e242014-07-22 14:34:00 -0700981 mips|mips64) GDB=mips64el-linux-android-gdb;;
Serban Constantinescu9b68fb22014-01-14 10:33:53 +0000982 x86) GDB=x86_64-linux-android-gdb;;
983 x86_64) GDB=x86_64-linux-android-gdb;;
Nick Kralevich0ab21d32011-11-11 09:02:01 -0800984 *) echo "Unknown arch $ARCH"; return 1;;
985 esac
986
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700987 if [ "$OUT_ROOT" -a "$PREBUILTS" ]; then
988 local EXE="$1"
989 if [ "$EXE" ] ; then
990 EXE=$1
Brigid Smith7a569a62014-06-20 14:12:12 -0700991 if [[ $EXE =~ ^[^/].* ]] ; then
992 EXE="system/bin/"$EXE
993 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700994 else
995 EXE="app_process"
996 fi
997
998 local PORT="$2"
999 if [ "$PORT" ] ; then
1000 PORT=$2
1001 else
1002 PORT=":5039"
1003 fi
1004
Chris Craik20c136a2012-11-09 18:02:19 -08001005 local PID="$3"
1006 if [ "$PID" ] ; then
1007 if [[ ! "$PID" =~ ^[0-9]+$ ]] ; then
Grace Klobae9d04bf2011-04-30 11:04:05 -07001008 PID=`pid $3`
Chris Craik20c136a2012-11-09 18:02:19 -08001009 if [[ ! "$PID" =~ ^[0-9]+$ ]] ; then
1010 # that likely didn't work because of returning multiple processes
1011 # try again, filtering by root processes (don't contain colon)
Mathias Agopian44583272013-08-27 14:15:50 -07001012 PID=`adb shell ps | \grep $3 | \grep -v ":" | awk '{print $2}'`
Chris Craik20c136a2012-11-09 18:02:19 -08001013 if [[ ! "$PID" =~ ^[0-9]+$ ]]
1014 then
1015 echo "Couldn't resolve '$3' to single PID"
1016 return 1
1017 else
1018 echo ""
1019 echo "WARNING: multiple processes matching '$3' observed, using root process"
1020 echo ""
1021 fi
1022 fi
Grace Klobae9d04bf2011-04-30 11:04:05 -07001023 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001024 adb forward "tcp$PORT" "tcp$PORT"
Ben Chengfba67bf2014-02-25 10:27:07 -08001025 local USE64BIT="$(is64bit $PID)"
1026 adb shell gdbserver$USE64BIT $PORT --attach $PID &
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001027 sleep 2
1028 else
1029 echo ""
1030 echo "If you haven't done so already, do this first on the device:"
1031 echo " gdbserver $PORT /system/bin/$EXE"
1032 echo " or"
Chris Craik20c136a2012-11-09 18:02:19 -08001033 echo " gdbserver $PORT --attach <PID>"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001034 echo ""
1035 fi
1036
Colin Cross84480ad2014-04-10 12:51:39 -07001037 OUT_SO_SYMBOLS=$OUT_SO_SYMBOLS$USE64BIT
1038
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001039 echo >|"$OUT_ROOT/gdbclient.cmds" "set solib-absolute-prefix $OUT_SYMBOLS"
Colin Cross3655a682014-05-22 11:59:10 -07001040 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 -07001041 echo >>"$OUT_ROOT/gdbclient.cmds" "source $ANDROID_BUILD_TOP/development/scripts/gdb/dalvik.gdb"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001042 echo >>"$OUT_ROOT/gdbclient.cmds" "target remote $PORT"
1043 echo >>"$OUT_ROOT/gdbclient.cmds" ""
1044
Ben Chengfba67bf2014-02-25 10:27:07 -08001045 local WHICH_GDB=
1046 # 64-bit exe found
1047 if [ "$USE64BIT" != "" ] ; then
1048 WHICH_GDB=$ANDROID_TOOLCHAIN/$GDB64
1049 # 32-bit exe / 32-bit platform
1050 elif [ "$(get_build_var TARGET_2ND_ARCH)" = "" ]; then
1051 WHICH_GDB=$ANDROID_TOOLCHAIN/$GDB
1052 # 32-bit exe / 64-bit platform
1053 else
1054 WHICH_GDB=$ANDROID_TOOLCHAIN_2ND_ARCH/$GDB
1055 fi
Brigid Smith0a2712d2014-05-28 14:36:43 -07001056
Ben Chengfba67bf2014-02-25 10:27:07 -08001057 gdbwrapper $WHICH_GDB "$OUT_ROOT/gdbclient.cmds" "$OUT_EXE_SYMBOLS/$EXE"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001058 else
1059 echo "Unable to determine build system output dir."
1060 fi
1061
1062}
1063
1064case `uname -s` in
1065 Darwin)
1066 function sgrep()
1067 {
Joe Onoratof50e84b2011-03-15 14:15:46 -07001068 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 -07001069 }
1070
1071 ;;
1072 *)
1073 function sgrep()
1074 {
Joe Onoratof50e84b2011-03-15 14:15:46 -07001075 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 -07001076 }
1077 ;;
1078esac
1079
Raghu Gandham8da43102012-07-25 19:57:22 -07001080function gettargetarch
1081{
1082 get_build_var TARGET_ARCH
1083}
1084
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001085function jgrep()
1086{
Anatolii Shuba91c72d22013-07-05 16:09:25 +03001087 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 -07001088}
1089
1090function cgrep()
1091{
Anatolii Shuba91c72d22013-07-05 16:09:25 +03001092 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 -07001093}
1094
1095function resgrep()
1096{
Anatolii Shuba91c72d22013-07-05 16:09:25 +03001097 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 -07001098}
1099
Jeff Sharkey50b61e92013-03-08 10:20:47 -08001100function mangrep()
1101{
1102 find . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o -type f -name 'AndroidManifest.xml' -print0 | xargs -0 grep --color -n "$@"
1103}
1104
Alex Klyubinba5fc8e2013-05-06 14:11:48 -07001105function sepgrep()
1106{
1107 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 "$@"
1108}
1109
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001110case `uname -s` in
1111 Darwin)
1112 function mgrep()
1113 {
Ying Wang324c2b22012-08-17 15:03:20 -07001114 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 -07001115 }
1116
1117 function treegrep()
1118 {
Joe Onoratof50e84b2011-03-15 14:15:46 -07001119 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 -07001120 }
1121
1122 ;;
1123 *)
1124 function mgrep()
1125 {
Ying Wang324c2b22012-08-17 15:03:20 -07001126 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 -07001127 }
1128
1129 function treegrep()
1130 {
Joe Onoratof50e84b2011-03-15 14:15:46 -07001131 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 -07001132 }
1133
1134 ;;
1135esac
1136
1137function getprebuilt
1138{
1139 get_abs_build_var ANDROID_PREBUILTS
1140}
1141
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001142function tracedmdump()
1143{
1144 T=$(gettop)
1145 if [ ! "$T" ]; then
1146 echo "Couldn't locate the top of the tree. Try setting TOP."
1147 return
1148 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001149 local prebuiltdir=$(getprebuilt)
Raghu Gandham8da43102012-07-25 19:57:22 -07001150 local arch=$(gettargetarch)
1151 local KERNEL=$T/prebuilts/qemu-kernel/$arch/vmlinux-qemu
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001152
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001153 local TRACE=$1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001154 if [ ! "$TRACE" ] ; then
1155 echo "usage: tracedmdump tracename"
1156 return
1157 fi
1158
Jack Veenstra60116fc2009-04-09 18:12:34 -07001159 if [ ! -r "$KERNEL" ] ; then
1160 echo "Error: cannot find kernel: '$KERNEL'"
1161 return
1162 fi
1163
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001164 local BASETRACE=$(basename $TRACE)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001165 if [ "$BASETRACE" = "$TRACE" ] ; then
1166 TRACE=$ANDROID_PRODUCT_OUT/traces/$TRACE
1167 fi
1168
1169 echo "post-processing traces..."
1170 rm -f $TRACE/qtrace.dexlist
1171 post_trace $TRACE
1172 if [ $? -ne 0 ]; then
1173 echo "***"
1174 echo "*** Error: malformed trace. Did you remember to exit the emulator?"
1175 echo "***"
1176 return
1177 fi
1178 echo "generating dexlist output..."
1179 /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
1180 echo "generating dmtrace data..."
1181 q2dm -r $ANDROID_PRODUCT_OUT/symbols $TRACE $KERNEL $TRACE/dmtrace || return
1182 echo "generating html file..."
1183 dmtracedump -h $TRACE/dmtrace >| $TRACE/dmtrace.html || return
1184 echo "done, see $TRACE/dmtrace.html for details"
1185 echo "or run:"
1186 echo " traceview $TRACE/dmtrace"
1187}
1188
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001189# communicate with a running device or emulator, set up necessary state,
1190# and run the hat command.
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001191function runhat()
1192{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001193 # process standard adb options
1194 local adbTarget=""
Andy McFaddenb6289852010-07-12 08:00:19 -07001195 if [ "$1" = "-d" -o "$1" = "-e" ]; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001196 adbTarget=$1
1197 shift 1
Andy McFaddenb6289852010-07-12 08:00:19 -07001198 elif [ "$1" = "-s" ]; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001199 adbTarget="$1 $2"
1200 shift 2
1201 fi
1202 local adbOptions=${adbTarget}
Dianne Hackborn6b9549f2012-09-26 15:00:59 -07001203 #echo adbOptions = ${adbOptions}
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001204
1205 # runhat options
1206 local targetPid=$1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001207
1208 if [ "$targetPid" = "" ]; then
Andy McFaddenb6289852010-07-12 08:00:19 -07001209 echo "Usage: runhat [ -d | -e | -s serial ] target-pid"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001210 return
1211 fi
1212
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001213 # confirm hat is available
1214 if [ -z $(which hat) ]; then
1215 echo "hat is not available in this configuration."
1216 return
1217 fi
1218
Andy McFaddenb6289852010-07-12 08:00:19 -07001219 # issue "am" command to cause the hprof dump
Christopher Ferris764b4f82013-05-20 16:30:10 -07001220 local sdcard=$(adb ${adbOptions} shell echo -n '$EXTERNAL_STORAGE')
Dianne Hackborn6b9549f2012-09-26 15:00:59 -07001221 local devFile=$sdcard/hprof-$targetPid
1222 #local devFile=/data/local/hprof-$targetPid
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001223 echo "Poking $targetPid and waiting for data..."
Dianne Hackborn6b9549f2012-09-26 15:00:59 -07001224 echo "Storing data at $devFile"
Andy McFaddenb6289852010-07-12 08:00:19 -07001225 adb ${adbOptions} shell am dumpheap $targetPid $devFile
The Android Open Source Project88b60792009-03-03 19:28:42 -08001226 echo "Press enter when logcat shows \"hprof: heap dump completed\""
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001227 echo -n "> "
1228 read
1229
The Android Open Source Project88b60792009-03-03 19:28:42 -08001230 local localFile=/tmp/$$-hprof
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001231
The Android Open Source Project88b60792009-03-03 19:28:42 -08001232 echo "Retrieving file $devFile..."
1233 adb ${adbOptions} pull $devFile $localFile
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001234
The Android Open Source Project88b60792009-03-03 19:28:42 -08001235 adb ${adbOptions} shell rm $devFile
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001236
The Android Open Source Project88b60792009-03-03 19:28:42 -08001237 echo "Running hat on $localFile"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001238 echo "View the output by pointing your browser at http://localhost:7000/"
1239 echo ""
Dianne Hackborn6e4e1bb2011-11-10 15:19:51 -08001240 hat -JXmx512m $localFile
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001241}
1242
1243function getbugreports()
1244{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001245 local reports=(`adb shell ls /sdcard/bugreports | tr -d '\r'`)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001246
1247 if [ ! "$reports" ]; then
1248 echo "Could not locate any bugreports."
1249 return
1250 fi
1251
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001252 local report
1253 for report in ${reports[@]}
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001254 do
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001255 echo "/sdcard/bugreports/${report}"
1256 adb pull /sdcard/bugreports/${report} ${report}
1257 gunzip ${report}
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001258 done
1259}
1260
Victoria Lease1b296b42012-08-21 15:44:06 -07001261function getsdcardpath()
1262{
1263 adb ${adbOptions} shell echo -n \$\{EXTERNAL_STORAGE\}
1264}
1265
1266function getscreenshotpath()
1267{
1268 echo "$(getsdcardpath)/Pictures/Screenshots"
1269}
1270
1271function getlastscreenshot()
1272{
1273 local screenshot_path=$(getscreenshotpath)
1274 local screenshot=`adb ${adbOptions} ls ${screenshot_path} | grep Screenshot_[0-9-]*.*\.png | sort -rk 3 | cut -d " " -f 4 | head -n 1`
1275 if [ "$screenshot" = "" ]; then
1276 echo "No screenshots found."
1277 return
1278 fi
1279 echo "${screenshot}"
1280 adb ${adbOptions} pull ${screenshot_path}/${screenshot}
1281}
1282
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001283function startviewserver()
1284{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001285 local port=4939
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001286 if [ $# -gt 0 ]; then
1287 port=$1
1288 fi
1289 adb shell service call window 1 i32 $port
1290}
1291
1292function stopviewserver()
1293{
1294 adb shell service call window 2
1295}
1296
1297function isviewserverstarted()
1298{
1299 adb shell service call window 3
1300}
1301
Romain Guyb84049a2010-10-04 16:56:11 -07001302function key_home()
1303{
1304 adb shell input keyevent 3
1305}
1306
1307function key_back()
1308{
1309 adb shell input keyevent 4
1310}
1311
1312function key_menu()
1313{
1314 adb shell input keyevent 82
1315}
1316
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001317function smoketest()
1318{
1319 if [ ! "$ANDROID_PRODUCT_OUT" ]; then
1320 echo "Couldn't locate output files. Try running 'lunch' first." >&2
1321 return
1322 fi
1323 T=$(gettop)
1324 if [ ! "$T" ]; then
1325 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
1326 return
1327 fi
1328
Ying Wang9cd17642012-12-13 10:52:07 -08001329 (\cd "$T" && mmm tests/SmokeTest) &&
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001330 adb uninstall com.android.smoketest > /dev/null &&
1331 adb uninstall com.android.smoketest.tests > /dev/null &&
1332 adb install $ANDROID_PRODUCT_OUT/data/app/SmokeTestApp.apk &&
1333 adb install $ANDROID_PRODUCT_OUT/data/app/SmokeTest.apk &&
1334 adb shell am instrument -w com.android.smoketest.tests/android.test.InstrumentationTestRunner
1335}
1336
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001337# simple shortcut to the runtest command
1338function runtest()
1339{
1340 T=$(gettop)
1341 if [ ! "$T" ]; then
1342 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
1343 return
1344 fi
Brett Chabot3fb149d2009-10-21 20:05:26 -07001345 ("$T"/development/testrunner/runtest.py $@)
Brett Chabot762748c2009-03-27 10:25:11 -07001346}
1347
The Android Open Source Project88b60792009-03-03 19:28:42 -08001348function godir () {
1349 if [[ -z "$1" ]]; then
1350 echo "Usage: godir <regex>"
1351 return
1352 fi
Brian Carlstromb9915a62010-01-29 16:39:32 -08001353 T=$(gettop)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001354 if [[ ! -f $T/filelist ]]; then
1355 echo -n "Creating index..."
Ying Wang9cd17642012-12-13 10:52:07 -08001356 (\cd $T; find . -wholename ./out -prune -o -wholename ./.repo -prune -o -type f > filelist)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001357 echo " Done"
1358 echo ""
1359 fi
1360 local lines
Jeff Hamilton293f9392011-11-18 17:15:25 -06001361 lines=($(\grep "$1" $T/filelist | sed -e 's/\/[^/]*$//' | sort | uniq))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001362 if [[ ${#lines[@]} = 0 ]]; then
1363 echo "Not found"
1364 return
1365 fi
1366 local pathname
1367 local choice
1368 if [[ ${#lines[@]} > 1 ]]; then
1369 while [[ -z "$pathname" ]]; do
1370 local index=1
1371 local line
1372 for line in ${lines[@]}; do
1373 printf "%6s %s\n" "[$index]" $line
Doug Zongker29034982011-04-22 08:16:56 -07001374 index=$(($index + 1))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001375 done
1376 echo
1377 echo -n "Select one: "
1378 unset choice
1379 read choice
1380 if [[ $choice -gt ${#lines[@]} || $choice -lt 1 ]]; then
1381 echo "Invalid choice"
1382 continue
1383 fi
Kan-Ru Chen07453762010-07-05 15:53:47 +08001384 pathname=${lines[$(($choice-1))]}
The Android Open Source Project88b60792009-03-03 19:28:42 -08001385 done
1386 else
The Android Open Source Project88b60792009-03-03 19:28:42 -08001387 pathname=${lines[0]}
1388 fi
Ying Wang9cd17642012-12-13 10:52:07 -08001389 \cd $T/$pathname
The Android Open Source Project88b60792009-03-03 19:28:42 -08001390}
1391
Narayan Kamath9260bba2014-01-17 10:05:25 +00001392# Force JAVA_HOME to point to java 1.7 or java 1.6 if it isn't already set.
1393#
1394# Note that the MacOS path for java 1.7 includes a minor revision number (sigh).
1395# For some reason, installing the JDK doesn't make it show up in the
1396# JavaVM.framework/Versions/1.7/ folder.
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -05001397function set_java_home() {
Narayan Kamath9260bba2014-01-17 10:05:25 +00001398 # Clear the existing JAVA_HOME value if we set it ourselves, so that
Narayan Kamathc84889b2014-04-01 14:16:26 +01001399 # we can reset it later, depending on the version of java the build
1400 # system needs.
Narayan Kamath9260bba2014-01-17 10:05:25 +00001401 #
1402 # If we don't do this, the JAVA_HOME value set by the first call to
1403 # build/envsetup.sh will persist forever.
1404 if [ -n "$ANDROID_SET_JAVA_HOME" ]; then
1405 export JAVA_HOME=""
1406 fi
1407
Andy McFaddenbd960942010-06-24 12:52:51 -07001408 if [ ! "$JAVA_HOME" ]; then
Narayan Kamathc84889b2014-04-01 14:16:26 +01001409 if [ -n "$LEGACY_USE_JAVA6" ]; then
Andy McFaddenbd960942010-06-24 12:52:51 -07001410 case `uname -s` in
1411 Darwin)
1412 export JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Versions/1.6/Home
1413 ;;
1414 *)
1415 export JAVA_HOME=/usr/lib/jvm/java-6-sun
1416 ;;
1417 esac
Narayan Kamath9260bba2014-01-17 10:05:25 +00001418 else
1419 case `uname -s` in
1420 Darwin)
Jason Parks30cfbd72014-04-28 13:32:10 -05001421 export JAVA_HOME=$(/usr/libexec/java_home -v 1.7)
Narayan Kamath9260bba2014-01-17 10:05:25 +00001422 ;;
1423 *)
1424 export JAVA_HOME=/usr/lib/jvm/java-7-openjdk-amd64
1425 ;;
1426 esac
1427 fi
1428
1429 # Keep track of the fact that we set JAVA_HOME ourselves, so that
1430 # we can change it on the next envsetup.sh, if required.
1431 export ANDROID_SET_JAVA_HOME=true
Jeff Hamilton04be0d82010-06-07 15:03:54 -05001432 fi
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -05001433}
Jeff Hamilton04be0d82010-06-07 15:03:54 -05001434
Alex Rayf0d08eb2013-03-08 15:15:06 -08001435# Print colored exit condition
1436function pez {
Michael Wrighteb733842013-03-08 17:34:02 -08001437 "$@"
1438 local retval=$?
1439 if [ $retval -ne 0 ]
1440 then
1441 echo -e "\e[0;31mFAILURE\e[00m"
1442 else
1443 echo -e "\e[0;32mSUCCESS\e[00m"
1444 fi
1445 return $retval
Alex Rayf0d08eb2013-03-08 15:15:06 -08001446}
1447
Raphael Moll70a86b02011-06-20 16:03:14 -07001448if [ "x$SHELL" != "x/bin/bash" ]; then
1449 case `ps -o command -p $$` in
1450 *bash*)
1451 ;;
1452 *)
1453 echo "WARNING: Only bash is supported, use of other shell would lead to erroneous results"
1454 ;;
1455 esac
1456fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001457
1458# Execute the contents of any vendorsetup.sh files we can find.
Ying Wang506410a2014-07-09 15:37:34 -07001459for f in `test -d device && find -L device -maxdepth 4 -name 'vendorsetup.sh' 2> /dev/null` \
1460 `test -d vendor && find -L vendor -maxdepth 4 -name 'vendorsetup.sh' 2> /dev/null`
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001461do
1462 echo "including $f"
1463 . $f
1464done
1465unset f
Kenny Root52aa81c2011-07-15 11:07:06 -07001466
1467addcompletions