blob: 34b52e5373a7792ae86887445aa0dc3ed582abd3 [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 ;;
Ben Cheng054ffd22012-12-11 14:01:10 -0800139 mips) toolchaindir=mips/mipsel-linux-android-$targetgccversion/bin
Raghu Gandham8da43102012-07-25 19:57:22 -0700140 ;;
Chris Dearman1efd9e42014-02-03 15:01:24 -0800141 mips64) toolchaindir=mips/mips64el-linux-android-$targetgccversion/bin
Serban Constantinescu9b68fb22014-01-14 10:33:53 +0000142 ;;
David 'Digit' Turner2056c252012-04-17 14:50:47 +0200143 *)
144 echo "Can't find toolchain for unknown architecture: $ARCH"
145 toolchaindir=xxxxxxxxx
Mark D Horn7d0ede72012-03-14 14:20:30 -0700146 ;;
147 esac
Jing Yuf5172c72012-03-29 20:45:50 -0700148 if [ -d "$gccprebuiltdir/$toolchaindir" ]; then
Ben Chengfba67bf2014-02-25 10:27:07 -0800149 export ANDROID_TOOLCHAIN=$gccprebuiltdir/$toolchaindir
Raphael Mollc639c782011-06-20 17:25:01 -0700150 fi
Raphael732936d2011-06-22 14:35:32 -0700151
Ben Chengfba67bf2014-02-25 10:27:07 -0800152 if [ -d "$gccprebuiltdir/$toolchaindir2" ]; then
153 export ANDROID_TOOLCHAIN_2ND_ARCH=$gccprebuiltdir/$toolchaindir2
154 fi
155
156 unset ANDROID_KERNEL_TOOLCHAIN_PATH
Ying Wang08f5e9a2012-04-17 18:10:11 -0700157 case $ARCH in
Bruce Beare42ced6d2012-07-17 21:40:01 -0700158 arm)
Ben Chengfba67bf2014-02-25 10:27:07 -0800159 # Legacy toolchain configuration used for ARM kernel compilation
Ben Cheng8bc4c432012-11-16 13:29:13 -0800160 toolchaindir=arm/arm-eabi-$targetgccversion/bin
Bruce Beare42ced6d2012-07-17 21:40:01 -0700161 if [ -d "$gccprebuiltdir/$toolchaindir" ]; then
Torne (Richard Coles)f24c3562014-04-25 16:24:22 +0100162 export ARM_EABI_TOOLCHAIN="$gccprebuiltdir/$toolchaindir"
163 ANDROID_KERNEL_TOOLCHAIN_PATH="$ARM_EABI_TOOLCHAIN":
Bruce Beare42ced6d2012-07-17 21:40:01 -0700164 fi
Ying Wang08f5e9a2012-04-17 18:10:11 -0700165 ;;
166 *)
Bruce Beare42ced6d2012-07-17 21:40:01 -0700167 # No need to set ARM_EABI_TOOLCHAIN for other ARCHs
Ying Wang08f5e9a2012-04-17 18:10:11 -0700168 ;;
169 esac
Ying Wang08f5e9a2012-04-17 18:10:11 -0700170
Ying Wang564f9122013-03-29 17:40:14 -0700171 export ANDROID_DEV_SCRIPTS=$T/development/scripts:$T/prebuilts/devtools/tools
Ying Wang2a859d52014-06-30 10:25:33 -0700172 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 +0200173
174 # If prebuilts/android-emulator/<system>/ exists, prepend it to our PATH
175 # to ensure that the corresponding 'emulator' binaries are used.
176 case $(uname -s) in
177 Darwin)
178 ANDROID_EMULATOR_PREBUILTS=$T/prebuilts/android-emulator/darwin-x86_64
179 ;;
180 Linux)
181 ANDROID_EMULATOR_PREBUILTS=$T/prebuilts/android-emulator/linux-x86_64
182 ;;
183 *)
184 ANDROID_EMULATOR_PREBUILTS=
185 ;;
186 esac
187 if [ -n "$ANDROID_EMULATOR_PREBUILTS" -a -d "$ANDROID_EMULATOR_PREBUILTS" ]; then
Christopher Ferris7110f242014-05-20 13:56:00 -0700188 ANDROID_BUILD_PATHS=$ANDROID_BUILD_PATHS$ANDROID_EMULATOR_PREBUILTS:
David 'Digit' Turner94d16e52014-05-05 16:13:50 +0200189 export ANDROID_EMULATOR_PREBUILTS
190 fi
191
Ying Wangaa1c9b52012-11-26 20:51:59 -0800192 export PATH=$ANDROID_BUILD_PATHS$PATH
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800193
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500194 unset ANDROID_JAVA_TOOLCHAIN
Ji-Hwan Lee752ad062011-07-04 14:09:47 +0900195 unset ANDROID_PRE_BUILD_PATHS
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500196 if [ -n "$JAVA_HOME" ]; then
197 export ANDROID_JAVA_TOOLCHAIN=$JAVA_HOME/bin
Ji-Hwan Lee752ad062011-07-04 14:09:47 +0900198 export ANDROID_PRE_BUILD_PATHS=$ANDROID_JAVA_TOOLCHAIN:
199 export PATH=$ANDROID_PRE_BUILD_PATHS$PATH
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500200 fi
201
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800202 unset ANDROID_PRODUCT_OUT
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700203 export ANDROID_PRODUCT_OUT=$(get_abs_build_var PRODUCT_OUT)
204 export OUT=$ANDROID_PRODUCT_OUT
205
Jeff Brown8fd5cce2011-03-24 17:03:06 -0700206 unset ANDROID_HOST_OUT
207 export ANDROID_HOST_OUT=$(get_abs_build_var HOST_OUT)
208
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800209 # needed for building linux on MacOS
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700210 # TODO: fix the path
211 #export HOST_EXTRACFLAGS="-I "$T/system/kernel_headers/host_include
212}
213
214function printconfig()
215{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800216 T=$(gettop)
217 if [ ! "$T" ]; then
218 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
219 return
220 fi
221 get_build_var report_config
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700222}
223
224function set_stuff_for_environment()
225{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800226 settitle
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500227 set_java_home
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800228 setpaths
229 set_sequence_number
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700230
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800231 export ANDROID_BUILD_TOP=$(gettop)
Ben Chengaac3f812013-08-13 14:38:15 -0700232 # With this environment variable new GCC can apply colors to warnings/errors
233 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 -0700234}
235
236function set_sequence_number()
237{
Joe Onoratoaee4daa2010-06-23 14:03:13 -0700238 export BUILD_ENV_SEQUENCE_NUMBER=10
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700239}
240
241function settitle()
242{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800243 if [ "$STAY_OFF_MY_LAWN" = "" ]; then
Raghu Gandham8da43102012-07-25 19:57:22 -0700244 local arch=$(gettargetarch)
Joe Onoratoda12daf2010-06-09 18:18:31 -0700245 local product=$TARGET_PRODUCT
246 local variant=$TARGET_BUILD_VARIANT
247 local apps=$TARGET_BUILD_APPS
248 if [ -z "$apps" ]; then
Raghu Gandham8da43102012-07-25 19:57:22 -0700249 export PROMPT_COMMAND="echo -ne \"\033]0;[${arch}-${product}-${variant}] ${USER}@${HOSTNAME}: ${PWD}\007\""
Joe Onoratoda12daf2010-06-09 18:18:31 -0700250 else
Raghu Gandham8da43102012-07-25 19:57:22 -0700251 export PROMPT_COMMAND="echo -ne \"\033]0;[$arch $apps $variant] ${USER}@${HOSTNAME}: ${PWD}\007\""
Joe Onoratoda12daf2010-06-09 18:18:31 -0700252 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800253 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700254}
255
Kenny Root52aa81c2011-07-15 11:07:06 -0700256function addcompletions()
257{
258 local T dir f
259
260 # Keep us from trying to run in something that isn't bash.
261 if [ -z "${BASH_VERSION}" ]; then
262 return
263 fi
264
265 # Keep us from trying to run in bash that's too old.
266 if [ ${BASH_VERSINFO[0]} -lt 3 ]; then
267 return
268 fi
269
270 dir="sdk/bash_completion"
271 if [ -d ${dir} ]; then
Kenny Root7546d612011-07-18 13:11:34 -0700272 for f in `/bin/ls ${dir}/[a-z]*.bash 2> /dev/null`; do
Kenny Root52aa81c2011-07-15 11:07:06 -0700273 echo "including $f"
274 . $f
275 done
276 fi
277}
278
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700279function choosetype()
280{
281 echo "Build type choices are:"
282 echo " 1. release"
283 echo " 2. debug"
284 echo
285
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800286 local DEFAULT_NUM DEFAULT_VALUE
Jeff Browne33ba4c2011-07-11 22:11:46 -0700287 DEFAULT_NUM=1
288 DEFAULT_VALUE=release
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700289
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800290 export TARGET_BUILD_TYPE=
291 local ANSWER
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700292 while [ -z $TARGET_BUILD_TYPE ]
293 do
294 echo -n "Which would you like? ["$DEFAULT_NUM"] "
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800295 if [ -z "$1" ] ; then
296 read ANSWER
297 else
298 echo $1
299 ANSWER=$1
300 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700301 case $ANSWER in
302 "")
303 export TARGET_BUILD_TYPE=$DEFAULT_VALUE
304 ;;
305 1)
306 export TARGET_BUILD_TYPE=release
307 ;;
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800308 release)
309 export TARGET_BUILD_TYPE=release
310 ;;
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700311 2)
312 export TARGET_BUILD_TYPE=debug
313 ;;
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800314 debug)
315 export TARGET_BUILD_TYPE=debug
316 ;;
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700317 *)
318 echo
319 echo "I didn't understand your response. Please try again."
320 echo
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700321 ;;
322 esac
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800323 if [ -n "$1" ] ; then
324 break
325 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700326 done
327
328 set_stuff_for_environment
329}
330
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800331#
332# This function isn't really right: It chooses a TARGET_PRODUCT
333# based on the list of boards. Usually, that gets you something
334# that kinda works with a generic product, but really, you should
335# pick a product by name.
336#
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700337function chooseproduct()
338{
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700339 if [ "x$TARGET_PRODUCT" != x ] ; then
340 default_value=$TARGET_PRODUCT
341 else
Jeff Browne33ba4c2011-07-11 22:11:46 -0700342 default_value=full
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700343 fi
344
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800345 export TARGET_PRODUCT=
346 local ANSWER
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700347 while [ -z "$TARGET_PRODUCT" ]
348 do
Joe Onorato8849aed2009-04-29 15:56:47 -0700349 echo -n "Which product would you like? [$default_value] "
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800350 if [ -z "$1" ] ; then
351 read ANSWER
352 else
353 echo $1
354 ANSWER=$1
355 fi
356
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700357 if [ -z "$ANSWER" ] ; then
358 export TARGET_PRODUCT=$default_value
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800359 else
360 if check_product $ANSWER
361 then
362 export TARGET_PRODUCT=$ANSWER
363 else
364 echo "** Not a valid product: $ANSWER"
365 fi
366 fi
367 if [ -n "$1" ] ; then
368 break
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700369 fi
370 done
371
372 set_stuff_for_environment
373}
374
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800375function choosevariant()
376{
377 echo "Variant choices are:"
378 local index=1
379 local v
380 for v in ${VARIANT_CHOICES[@]}
381 do
382 # The product name is the name of the directory containing
383 # the makefile we found, above.
384 echo " $index. $v"
385 index=$(($index+1))
386 done
387
388 local default_value=eng
389 local ANSWER
390
391 export TARGET_BUILD_VARIANT=
392 while [ -z "$TARGET_BUILD_VARIANT" ]
393 do
394 echo -n "Which would you like? [$default_value] "
395 if [ -z "$1" ] ; then
396 read ANSWER
397 else
398 echo $1
399 ANSWER=$1
400 fi
401
402 if [ -z "$ANSWER" ] ; then
403 export TARGET_BUILD_VARIANT=$default_value
404 elif (echo -n $ANSWER | grep -q -e "^[0-9][0-9]*$") ; then
405 if [ "$ANSWER" -le "${#VARIANT_CHOICES[@]}" ] ; then
Kan-Ru Chen07453762010-07-05 15:53:47 +0800406 export TARGET_BUILD_VARIANT=${VARIANT_CHOICES[$(($ANSWER-1))]}
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800407 fi
408 else
409 if check_variant $ANSWER
410 then
411 export TARGET_BUILD_VARIANT=$ANSWER
412 else
413 echo "** Not a valid variant: $ANSWER"
414 fi
415 fi
416 if [ -n "$1" ] ; then
417 break
418 fi
419 done
420}
421
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700422function choosecombo()
423{
Jeff Browne33ba4c2011-07-11 22:11:46 -0700424 choosetype $1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700425
426 echo
427 echo
Jeff Browne33ba4c2011-07-11 22:11:46 -0700428 chooseproduct $2
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700429
430 echo
431 echo
Jeff Browne33ba4c2011-07-11 22:11:46 -0700432 choosevariant $3
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800433
434 echo
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700435 set_stuff_for_environment
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800436 printconfig
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700437}
438
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800439# Clear this variable. It will be built up again when the vendorsetup.sh
440# files are included at the end of this file.
441unset LUNCH_MENU_CHOICES
442function add_lunch_combo()
443{
444 local new_combo=$1
445 local c
446 for c in ${LUNCH_MENU_CHOICES[@]} ; do
447 if [ "$new_combo" = "$c" ] ; then
448 return
449 fi
450 done
451 LUNCH_MENU_CHOICES=(${LUNCH_MENU_CHOICES[@]} $new_combo)
452}
453
454# add the default one here
Jean-Baptiste Queru324c1232013-03-22 15:53:54 -0700455add_lunch_combo aosp_arm-eng
Colin Cross4f0eb7d2014-01-21 19:35:38 -0800456add_lunch_combo aosp_arm64-eng
Serban Constantinescu9b68fb22014-01-14 10:33:53 +0000457add_lunch_combo aosp_mips-eng
Chris Dearman1efd9e42014-02-03 15:01:24 -0800458add_lunch_combo aosp_mips64-eng
Serban Constantinescu9b68fb22014-01-14 10:33:53 +0000459add_lunch_combo aosp_x86-eng
460add_lunch_combo aosp_x86_64-eng
Bruce Beareba366c42011-02-15 16:46:08 -0800461add_lunch_combo vbox_x86-eng
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800462
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700463function print_lunch_menu()
464{
465 local uname=$(uname)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700466 echo
467 echo "You're building on" $uname
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700468 echo
469 echo "Lunch menu... pick a combo:"
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800470
471 local i=1
472 local choice
473 for choice in ${LUNCH_MENU_CHOICES[@]}
474 do
475 echo " $i. $choice"
476 i=$(($i+1))
477 done
478
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700479 echo
480}
481
482function lunch()
483{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800484 local answer
485
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700486 if [ "$1" ] ; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800487 answer=$1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700488 else
489 print_lunch_menu
Jean-Baptiste Queru324c1232013-03-22 15:53:54 -0700490 echo -n "Which would you like? [aosp_arm-eng] "
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800491 read answer
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700492 fi
493
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800494 local selection=
495
496 if [ -z "$answer" ]
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700497 then
Jean-Baptiste Queru324c1232013-03-22 15:53:54 -0700498 selection=aosp_arm-eng
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800499 elif (echo -n $answer | grep -q -e "^[0-9][0-9]*$")
500 then
501 if [ $answer -le ${#LUNCH_MENU_CHOICES[@]} ]
502 then
Kan-Ru Chen07453762010-07-05 15:53:47 +0800503 selection=${LUNCH_MENU_CHOICES[$(($answer-1))]}
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800504 fi
505 elif (echo -n $answer | grep -q -e "^[^\-][^\-]*-[^\-][^\-]*$")
506 then
507 selection=$answer
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700508 fi
509
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800510 if [ -z "$selection" ]
511 then
512 echo
513 echo "Invalid lunch combo: $answer"
514 return 1
515 fi
516
Joe Onoratoda12daf2010-06-09 18:18:31 -0700517 export TARGET_BUILD_APPS=
518
Jeff Browne33ba4c2011-07-11 22:11:46 -0700519 local product=$(echo -n $selection | sed -e "s/-.*$//")
520 check_product $product
521 if [ $? -ne 0 ]
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800522 then
Jeff Browne33ba4c2011-07-11 22:11:46 -0700523 echo
524 echo "** Don't have a product spec for: '$product'"
525 echo "** Do you have the right repo manifest?"
526 product=
527 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800528
Jeff Browne33ba4c2011-07-11 22:11:46 -0700529 local variant=$(echo -n $selection | sed -e "s/^[^\-]*-//")
530 check_variant $variant
531 if [ $? -ne 0 ]
532 then
533 echo
534 echo "** Invalid variant: '$variant'"
535 echo "** Must be one of ${VARIANT_CHOICES[@]}"
536 variant=
537 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800538
Jeff Browne33ba4c2011-07-11 22:11:46 -0700539 if [ -z "$product" -o -z "$variant" ]
540 then
541 echo
542 return 1
543 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800544
Jeff Browne33ba4c2011-07-11 22:11:46 -0700545 export TARGET_PRODUCT=$product
546 export TARGET_BUILD_VARIANT=$variant
547 export TARGET_BUILD_TYPE=release
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700548
549 echo
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800550
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700551 set_stuff_for_environment
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800552 printconfig
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700553}
554
Jeff Davidson513d7a42010-08-02 10:00:44 -0700555# Tab completion for lunch.
556function _lunch()
557{
558 local cur prev opts
559 COMPREPLY=()
560 cur="${COMP_WORDS[COMP_CWORD]}"
561 prev="${COMP_WORDS[COMP_CWORD-1]}"
562
563 COMPREPLY=( $(compgen -W "${LUNCH_MENU_CHOICES[*]}" -- ${cur}) )
564 return 0
565}
566complete -F _lunch lunch
567
Joe Onoratoda12daf2010-06-09 18:18:31 -0700568# Configures the build to build unbundled apps.
569# Run tapas with one ore more app names (from LOCAL_PACKAGE_NAME)
570function tapas()
571{
Ying Wangf05c4f72013-01-31 11:16:57 -0800572 local arch=$(echo -n $(echo $* | xargs -n 1 echo | \grep -E '^(arm|x86|mips|armv5)$'))
Jeff Hamilton293f9392011-11-18 17:15:25 -0600573 local variant=$(echo -n $(echo $* | xargs -n 1 echo | \grep -E '^(user|userdebug|eng)$'))
Ying Wangf05c4f72013-01-31 11:16:57 -0800574 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 -0700575
Ying Wang67f02922012-08-22 10:25:20 -0700576 if [ $(echo $arch | wc -w) -gt 1 ]; then
577 echo "tapas: Error: Multiple build archs supplied: $arch"
578 return
579 fi
Joe Onoratoda12daf2010-06-09 18:18:31 -0700580 if [ $(echo $variant | wc -w) -gt 1 ]; then
581 echo "tapas: Error: Multiple build variants supplied: $variant"
582 return
583 fi
Ying Wang67f02922012-08-22 10:25:20 -0700584
585 local product=full
586 case $arch in
587 x86) product=full_x86;;
588 mips) product=full_mips;;
Ying Wangf05c4f72013-01-31 11:16:57 -0800589 armv5) product=generic_armv5;;
Ying Wang67f02922012-08-22 10:25:20 -0700590 esac
Joe Onoratoda12daf2010-06-09 18:18:31 -0700591 if [ -z "$variant" ]; then
592 variant=eng
593 fi
Ying Wangc048c9b2010-06-24 15:08:33 -0700594 if [ -z "$apps" ]; then
595 apps=all
596 fi
Joe Onoratoda12daf2010-06-09 18:18:31 -0700597
Ying Wang67f02922012-08-22 10:25:20 -0700598 export TARGET_PRODUCT=$product
Joe Onoratoda12daf2010-06-09 18:18:31 -0700599 export TARGET_BUILD_VARIANT=$variant
Joe Onoratoda12daf2010-06-09 18:18:31 -0700600 export TARGET_BUILD_TYPE=release
601 export TARGET_BUILD_APPS=$apps
602
603 set_stuff_for_environment
604 printconfig
605}
606
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700607function gettop
608{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800609 local TOPFILE=build/core/envsetup.mk
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700610 if [ -n "$TOP" -a -f "$TOP/$TOPFILE" ] ; then
611 echo $TOP
612 else
613 if [ -f $TOPFILE ] ; then
Dan Bornsteind0b274d2009-11-24 15:48:50 -0800614 # The following circumlocution (repeated below as well) ensures
615 # that we record the true directory name and not one that is
616 # faked up with symlink names.
617 PWD= /bin/pwd
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700618 else
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800619 local HERE=$PWD
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700620 T=
621 while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do
Ying Wang9cd17642012-12-13 10:52:07 -0800622 \cd ..
synergyb112a402013-07-05 19:47:47 -0700623 T=`PWD= /bin/pwd -P`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700624 done
Ying Wang9cd17642012-12-13 10:52:07 -0800625 \cd $HERE
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700626 if [ -f "$T/$TOPFILE" ]; then
627 echo $T
628 fi
629 fi
630 fi
631}
632
Andrew Hsieh906cb782013-09-10 17:37:14 +0800633# Return driver for "make", if any (eg. static analyzer)
634function getdriver()
635{
636 local T="$1"
637 test "$WITH_STATIC_ANALYZER" = "0" && unset WITH_STATIC_ANALYZER
638 if [ -n "$WITH_STATIC_ANALYZER" ]; then
639 echo "\
Andrew Hsiehc4f7fba2014-03-03 16:53:17 +0800640$T/prebuilts/misc/linux-x86/analyzer/tools/scan-build/scan-build \
641--use-analyzer $T/prebuilts/misc/linux-x86/analyzer/bin/analyzer \
Andrew Hsieh906cb782013-09-10 17:37:14 +0800642--status-bugs \
643--top=$T"
644 fi
645}
646
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700647function m()
648{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800649 local T=$(gettop)
650 local DRV=$(getdriver $T)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700651 if [ "$T" ]; then
Andrew Hsieh906cb782013-09-10 17:37:14 +0800652 $DRV make -C $T -f build/core/main.mk $@
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700653 else
654 echo "Couldn't locate the top of the tree. Try setting TOP."
655 fi
656}
657
658function findmakefile()
659{
660 TOPFILE=build/core/envsetup.mk
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800661 local HERE=$PWD
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700662 T=
663 while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do
Ying Wang11b15b12012-10-11 15:05:07 -0700664 T=`PWD= /bin/pwd`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700665 if [ -f "$T/Android.mk" ]; then
666 echo $T/Android.mk
Ying Wang9cd17642012-12-13 10:52:07 -0800667 \cd $HERE
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700668 return
669 fi
Ying Wang9cd17642012-12-13 10:52:07 -0800670 \cd ..
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700671 done
Ying Wang9cd17642012-12-13 10:52:07 -0800672 \cd $HERE
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700673}
674
675function mm()
676{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800677 local T=$(gettop)
678 local DRV=$(getdriver $T)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700679 # If we're sitting in the root of the build tree, just do a
680 # normal make.
681 if [ -f build/core/envsetup.mk -a -f Makefile ]; then
Andrew Hsieh906cb782013-09-10 17:37:14 +0800682 $DRV make $@
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700683 else
684 # Find the closest Android.mk file.
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800685 local M=$(findmakefile)
Ying Wanga7deb082013-08-16 13:24:47 -0700686 local MODULES=
687 local GET_INSTALL_PATH=
688 local ARGS=
Robert Greenwalt3c794d72009-07-15 15:07:44 -0700689 # Remove the path to top as the makefilepath needs to be relative
690 local M=`echo $M|sed 's:'$T'/::'`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700691 if [ ! "$T" ]; then
692 echo "Couldn't locate the top of the tree. Try setting TOP."
693 elif [ ! "$M" ]; then
694 echo "Couldn't locate a makefile from the current directory."
695 else
Ying Wanga7deb082013-08-16 13:24:47 -0700696 for ARG in $@; do
697 case $ARG in
698 GET-INSTALL-PATH) GET_INSTALL_PATH=$ARG;;
699 esac
700 done
701 if [ -n "$GET_INSTALL_PATH" ]; then
702 MODULES=
703 ARGS=GET-INSTALL-PATH
704 else
705 MODULES=all_modules
706 ARGS=$@
707 fi
Andrew Hsieh246daf72013-09-10 18:07:23 -0700708 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 -0700709 fi
710 fi
711}
712
713function mmm()
714{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800715 local T=$(gettop)
716 local DRV=$(getdriver $T)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700717 if [ "$T" ]; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800718 local MAKEFILE=
Alon Albert68895a92011-11-30 12:40:19 -0800719 local MODULES=
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800720 local ARGS=
721 local DIR TO_CHOP
Ying Wanga7deb082013-08-16 13:24:47 -0700722 local GET_INSTALL_PATH=
The Android Open Source Project88b60792009-03-03 19:28:42 -0800723 local DASH_ARGS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^-.*$/')
724 local DIRS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^[^-].*$/')
725 for DIR in $DIRS ; do
Alon Albert68895a92011-11-30 12:40:19 -0800726 MODULES=`echo $DIR | sed -n -e 's/.*:\(.*$\)/\1/p' | sed 's/,/ /'`
727 if [ "$MODULES" = "" ]; then
728 MODULES=all_modules
729 fi
730 DIR=`echo $DIR | sed -e 's/:.*//' -e 's:/$::'`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700731 if [ -f $DIR/Android.mk ]; then
Ying Wanga7deb082013-08-16 13:24:47 -0700732 local TO_CHOP=`(\cd -P -- $T && pwd -P) | wc -c | tr -d ' '`
733 local TO_CHOP=`expr $TO_CHOP + 1`
734 local START=`PWD= /bin/pwd`
735 local MFILE=`echo $START | cut -c${TO_CHOP}-`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700736 if [ "$MFILE" = "" ] ; then
737 MFILE=$DIR/Android.mk
738 else
739 MFILE=$MFILE/$DIR/Android.mk
740 fi
741 MAKEFILE="$MAKEFILE $MFILE"
742 else
Ying Wanga7deb082013-08-16 13:24:47 -0700743 case $DIR in
744 showcommands | snod | dist | incrementaljavac) ARGS="$ARGS $DIR";;
745 GET-INSTALL-PATH) GET_INSTALL_PATH=$DIR;;
746 *) echo "No Android.mk in $DIR."; return 1;;
747 esac
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700748 fi
749 done
Ying Wanga7deb082013-08-16 13:24:47 -0700750 if [ -n "$GET_INSTALL_PATH" ]; then
751 ARGS=$GET_INSTALL_PATH
752 MODULES=
753 fi
Andrew Hsieh906cb782013-09-10 17:37:14 +0800754 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 -0700755 else
756 echo "Couldn't locate the top of the tree. Try setting TOP."
757 fi
758}
759
Ying Wangb607f7b2013-02-08 18:01:04 -0800760function mma()
761{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800762 local T=$(gettop)
763 local DRV=$(getdriver $T)
Ying Wangb607f7b2013-02-08 18:01:04 -0800764 if [ -f build/core/envsetup.mk -a -f Makefile ]; then
Andrew Hsieh906cb782013-09-10 17:37:14 +0800765 $DRV make $@
Ying Wangb607f7b2013-02-08 18:01:04 -0800766 else
Ying Wangb607f7b2013-02-08 18:01:04 -0800767 if [ ! "$T" ]; then
768 echo "Couldn't locate the top of the tree. Try setting TOP."
769 fi
770 local MY_PWD=`PWD= /bin/pwd|sed 's:'$T'/::'`
Andrew Hsieh906cb782013-09-10 17:37:14 +0800771 $DRV make -C $T -f build/core/main.mk $@ all_modules BUILD_MODULES_IN_PATHS="$MY_PWD"
Ying Wangb607f7b2013-02-08 18:01:04 -0800772 fi
773}
774
775function mmma()
776{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800777 local T=$(gettop)
778 local DRV=$(getdriver $T)
Ying Wangb607f7b2013-02-08 18:01:04 -0800779 if [ "$T" ]; then
780 local DASH_ARGS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^-.*$/')
781 local DIRS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^[^-].*$/')
782 local MY_PWD=`PWD= /bin/pwd`
783 if [ "$MY_PWD" = "$T" ]; then
784 MY_PWD=
785 else
786 MY_PWD=`echo $MY_PWD|sed 's:'$T'/::'`
787 fi
788 local DIR=
789 local MODULE_PATHS=
790 local ARGS=
791 for DIR in $DIRS ; do
792 if [ -d $DIR ]; then
793 if [ "$MY_PWD" = "" ]; then
794 MODULE_PATHS="$MODULE_PATHS $DIR"
795 else
796 MODULE_PATHS="$MODULE_PATHS $MY_PWD/$DIR"
797 fi
798 else
799 case $DIR in
800 showcommands | snod | dist | incrementaljavac) ARGS="$ARGS $DIR";;
801 *) echo "Couldn't find directory $DIR"; return 1;;
802 esac
803 fi
804 done
Andrew Hsieh906cb782013-09-10 17:37:14 +0800805 $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 -0800806 else
807 echo "Couldn't locate the top of the tree. Try setting TOP."
808 fi
809}
810
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700811function croot()
812{
813 T=$(gettop)
814 if [ "$T" ]; then
Ying Wang9cd17642012-12-13 10:52:07 -0800815 \cd $(gettop)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700816 else
817 echo "Couldn't locate the top of the tree. Try setting TOP."
818 fi
819}
820
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700821function cproj()
822{
823 TOPFILE=build/core/envsetup.mk
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700824 local HERE=$PWD
825 T=
826 while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do
827 T=$PWD
828 if [ -f "$T/Android.mk" ]; then
Ying Wang9cd17642012-12-13 10:52:07 -0800829 \cd $T
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700830 return
831 fi
Ying Wang9cd17642012-12-13 10:52:07 -0800832 \cd ..
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700833 done
Ying Wang9cd17642012-12-13 10:52:07 -0800834 \cd $HERE
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700835 echo "can't find Android.mk"
836}
837
Daniel Sandler47e0a882013-07-30 13:23:52 -0400838# simplified version of ps; output in the form
839# <pid> <procname>
840function qpid() {
841 local prepend=''
842 local append=''
843 if [ "$1" = "--exact" ]; then
844 prepend=' '
845 append='$'
846 shift
847 elif [ "$1" = "--help" -o "$1" = "-h" ]; then
848 echo "usage: qpid [[--exact] <process name|pid>"
849 return 255
850 fi
851
852 local EXE="$1"
853 if [ "$EXE" ] ; then
Mathias Agopian44583272013-08-27 14:15:50 -0700854 qpid | \grep "$prepend$EXE$append"
Daniel Sandler47e0a882013-07-30 13:23:52 -0400855 else
856 adb shell ps \
857 | tr -d '\r' \
858 | sed -e 1d -e 's/^[^ ]* *\([0-9]*\).* \([^ ]*\)$/\1 \2/'
859 fi
860}
861
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700862function pid()
863{
Daniel Sandler47e0a882013-07-30 13:23:52 -0400864 local prepend=''
865 local append=''
866 if [ "$1" = "--exact" ]; then
867 prepend=' '
868 append='$'
869 shift
870 fi
871 local EXE="$1"
872 if [ "$EXE" ] ; then
873 local PID=`adb shell ps \
874 | tr -d '\r' \
Mathias Agopian44583272013-08-27 14:15:50 -0700875 | \grep "$prepend$EXE$append" \
Daniel Sandler47e0a882013-07-30 13:23:52 -0400876 | sed -e 's/^[^ ]* *\([0-9]*\).*$/\1/'`
877 echo "$PID"
878 else
879 echo "usage: pid [--exact] <process name>"
880 return 255
881 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700882}
883
Christopher Tate744ee802009-11-12 15:33:08 -0800884# systemstack - dump the current stack trace of all threads in the system process
885# to the usual ANR traces file
886function systemstack()
887{
Jeff Sharkeyf5824372013-02-19 17:00:46 -0800888 stacks system_server
889}
890
891function stacks()
892{
893 if [[ $1 =~ ^[0-9]+$ ]] ; then
894 local PID="$1"
895 elif [ "$1" ] ; then
Jeff Brownb12c2e52013-08-19 15:14:16 -0700896 local PIDLIST="$(pid $1)"
897 if [[ $PIDLIST =~ ^[0-9]+$ ]] ; then
898 local PID="$PIDLIST"
899 elif [ "$PIDLIST" ] ; then
900 echo "more than one process: $1"
901 else
902 echo "no such process: $1"
903 fi
Jeff Sharkeyf5824372013-02-19 17:00:46 -0800904 else
905 echo "usage: stacks [pid|process name]"
906 fi
907
908 if [ "$PID" ] ; then
Jeff Brownb12c2e52013-08-19 15:14:16 -0700909 # Determine whether the process is native
910 if adb shell ls -l /proc/$PID/exe | grep -q /system/bin/app_process ; then
911 # Dump stacks of Dalvik process
912 local TRACES=/data/anr/traces.txt
913 local ORIG=/data/anr/traces.orig
914 local TMP=/data/anr/traces.tmp
Jeff Sharkeyf5824372013-02-19 17:00:46 -0800915
Jeff Brownb12c2e52013-08-19 15:14:16 -0700916 # Keep original traces to avoid clobbering
917 adb shell mv $TRACES $ORIG
Jeff Sharkeyf5824372013-02-19 17:00:46 -0800918
Jeff Brownb12c2e52013-08-19 15:14:16 -0700919 # Make sure we have a usable file
920 adb shell touch $TRACES
921 adb shell chmod 666 $TRACES
Jeff Sharkeyf5824372013-02-19 17:00:46 -0800922
Jeff Brownb12c2e52013-08-19 15:14:16 -0700923 # Dump stacks and wait for dump to finish
924 adb shell kill -3 $PID
925 adb shell notify $TRACES >/dev/null
Jeff Sharkeyf5824372013-02-19 17:00:46 -0800926
Jeff Brownb12c2e52013-08-19 15:14:16 -0700927 # Restore original stacks, and show current output
928 adb shell mv $TRACES $TMP
929 adb shell mv $ORIG $TRACES
930 adb shell cat $TMP
931 else
932 # Dump stacks of native process
Michael Wrightaeed7212014-06-19 19:58:12 -0700933 local USE64BIT="$(is64bit $PID)"
934 adb shell debuggerd$USE64BIT -b $PID
Jeff Brownb12c2e52013-08-19 15:14:16 -0700935 fi
Jeff Sharkeyf5824372013-02-19 17:00:46 -0800936 fi
Christopher Tate744ee802009-11-12 15:33:08 -0800937}
938
John Michelau50200252012-11-09 11:48:04 -0600939function gdbwrapper()
940{
Ben Chengfba67bf2014-02-25 10:27:07 -0800941 local GDB_CMD="$1"
942 shift 1
943 $GDB_CMD -x "$@"
John Michelau50200252012-11-09 11:48:04 -0600944}
945
Brigid Smith0a2712d2014-05-28 14:36:43 -0700946function get_symbols_directory()
947{
948 echo $(get_abs_build_var TARGET_OUT_UNSTRIPPED)
949}
950
Michael Wrightaeed7212014-06-19 19:58:12 -0700951# Read the ELF header from /proc/$PID/exe to determine if the process is
952# 64-bit.
Ben Chengfba67bf2014-02-25 10:27:07 -0800953function is64bit()
954{
955 local PID="$1"
956 if [ "$PID" ] ; then
Michael Wrightaeed7212014-06-19 19:58:12 -0700957 if [[ "$(adb shell cat /proc/$PID/exe | xxd -l 1 -s 4 -ps)" -eq "02" ]] ; then
Ben Chengfba67bf2014-02-25 10:27:07 -0800958 echo "64"
959 else
960 echo ""
961 fi
962 else
963 echo ""
964 fi
965}
966
967# gdbclient now determines whether the user wants to debug a 32-bit or 64-bit
968# executable, set up the approriate gdbserver, then invokes the proper host
969# gdb.
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700970function gdbclient()
971{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800972 local OUT_ROOT=$(get_abs_build_var PRODUCT_OUT)
973 local OUT_SYMBOLS=$(get_abs_build_var TARGET_OUT_UNSTRIPPED)
974 local OUT_SO_SYMBOLS=$(get_abs_build_var TARGET_OUT_SHARED_LIBRARIES_UNSTRIPPED)
Colin Cross3655a682014-05-22 11:59:10 -0700975 local OUT_VENDOR_SO_SYMBOLS=$(get_abs_build_var TARGET_OUT_VENDOR_SHARED_LIBRARIES_UNSTRIPPED)
Brigid Smith0a2712d2014-05-28 14:36:43 -0700976 local OUT_EXE_SYMBOLS=$(get_symbols_directory)
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800977 local PREBUILTS=$(get_abs_build_var ANDROID_PREBUILTS)
Nick Kralevich0ab21d32011-11-11 09:02:01 -0800978 local ARCH=$(get_build_var TARGET_ARCH)
979 local GDB
980 case "$ARCH" in
Nick Kralevich0ab21d32011-11-11 09:02:01 -0800981 arm) GDB=arm-linux-androideabi-gdb;;
Ben Chengfba67bf2014-02-25 10:27:07 -0800982 arm64) GDB=arm-linux-androideabi-gdb; GDB64=aarch64-linux-android-gdb;;
Raghu Gandham8da43102012-07-25 19:57:22 -0700983 mips) GDB=mipsel-linux-android-gdb;;
Serban Constantinescu9b68fb22014-01-14 10:33:53 +0000984 mips64) GDB=mipsel-linux-android-gdb;;
985 x86) GDB=x86_64-linux-android-gdb;;
986 x86_64) GDB=x86_64-linux-android-gdb;;
Nick Kralevich0ab21d32011-11-11 09:02:01 -0800987 *) echo "Unknown arch $ARCH"; return 1;;
988 esac
989
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700990 if [ "$OUT_ROOT" -a "$PREBUILTS" ]; then
991 local EXE="$1"
992 if [ "$EXE" ] ; then
993 EXE=$1
Brigid Smith7a569a62014-06-20 14:12:12 -0700994 if [[ $EXE =~ ^[^/].* ]] ; then
995 EXE="system/bin/"$EXE
996 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700997 else
998 EXE="app_process"
999 fi
1000
1001 local PORT="$2"
1002 if [ "$PORT" ] ; then
1003 PORT=$2
1004 else
1005 PORT=":5039"
1006 fi
1007
Chris Craik20c136a2012-11-09 18:02:19 -08001008 local PID="$3"
1009 if [ "$PID" ] ; then
1010 if [[ ! "$PID" =~ ^[0-9]+$ ]] ; then
Grace Klobae9d04bf2011-04-30 11:04:05 -07001011 PID=`pid $3`
Chris Craik20c136a2012-11-09 18:02:19 -08001012 if [[ ! "$PID" =~ ^[0-9]+$ ]] ; then
1013 # that likely didn't work because of returning multiple processes
1014 # try again, filtering by root processes (don't contain colon)
Mathias Agopian44583272013-08-27 14:15:50 -07001015 PID=`adb shell ps | \grep $3 | \grep -v ":" | awk '{print $2}'`
Chris Craik20c136a2012-11-09 18:02:19 -08001016 if [[ ! "$PID" =~ ^[0-9]+$ ]]
1017 then
1018 echo "Couldn't resolve '$3' to single PID"
1019 return 1
1020 else
1021 echo ""
1022 echo "WARNING: multiple processes matching '$3' observed, using root process"
1023 echo ""
1024 fi
1025 fi
Grace Klobae9d04bf2011-04-30 11:04:05 -07001026 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001027 adb forward "tcp$PORT" "tcp$PORT"
Ben Chengfba67bf2014-02-25 10:27:07 -08001028 local USE64BIT="$(is64bit $PID)"
1029 adb shell gdbserver$USE64BIT $PORT --attach $PID &
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001030 sleep 2
1031 else
1032 echo ""
1033 echo "If you haven't done so already, do this first on the device:"
1034 echo " gdbserver $PORT /system/bin/$EXE"
1035 echo " or"
Chris Craik20c136a2012-11-09 18:02:19 -08001036 echo " gdbserver $PORT --attach <PID>"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001037 echo ""
1038 fi
1039
Colin Cross84480ad2014-04-10 12:51:39 -07001040 OUT_SO_SYMBOLS=$OUT_SO_SYMBOLS$USE64BIT
1041
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001042 echo >|"$OUT_ROOT/gdbclient.cmds" "set solib-absolute-prefix $OUT_SYMBOLS"
Colin Cross3655a682014-05-22 11:59:10 -07001043 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 -07001044 echo >>"$OUT_ROOT/gdbclient.cmds" "source $ANDROID_BUILD_TOP/development/scripts/gdb/dalvik.gdb"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001045 echo >>"$OUT_ROOT/gdbclient.cmds" "target remote $PORT"
1046 echo >>"$OUT_ROOT/gdbclient.cmds" ""
1047
Ben Chengfba67bf2014-02-25 10:27:07 -08001048 local WHICH_GDB=
1049 # 64-bit exe found
1050 if [ "$USE64BIT" != "" ] ; then
1051 WHICH_GDB=$ANDROID_TOOLCHAIN/$GDB64
1052 # 32-bit exe / 32-bit platform
1053 elif [ "$(get_build_var TARGET_2ND_ARCH)" = "" ]; then
1054 WHICH_GDB=$ANDROID_TOOLCHAIN/$GDB
1055 # 32-bit exe / 64-bit platform
1056 else
1057 WHICH_GDB=$ANDROID_TOOLCHAIN_2ND_ARCH/$GDB
1058 fi
Brigid Smith0a2712d2014-05-28 14:36:43 -07001059
Ben Chengfba67bf2014-02-25 10:27:07 -08001060 gdbwrapper $WHICH_GDB "$OUT_ROOT/gdbclient.cmds" "$OUT_EXE_SYMBOLS/$EXE"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001061 else
1062 echo "Unable to determine build system output dir."
1063 fi
1064
1065}
1066
1067case `uname -s` in
1068 Darwin)
1069 function sgrep()
1070 {
Joe Onoratof50e84b2011-03-15 14:15:46 -07001071 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 -07001072 }
1073
1074 ;;
1075 *)
1076 function sgrep()
1077 {
Joe Onoratof50e84b2011-03-15 14:15:46 -07001078 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 -07001079 }
1080 ;;
1081esac
1082
Raghu Gandham8da43102012-07-25 19:57:22 -07001083function gettargetarch
1084{
1085 get_build_var TARGET_ARCH
1086}
1087
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001088function jgrep()
1089{
Anatolii Shuba91c72d22013-07-05 16:09:25 +03001090 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 -07001091}
1092
1093function cgrep()
1094{
Anatolii Shuba91c72d22013-07-05 16:09:25 +03001095 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 -07001096}
1097
1098function resgrep()
1099{
Anatolii Shuba91c72d22013-07-05 16:09:25 +03001100 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 -07001101}
1102
Jeff Sharkey50b61e92013-03-08 10:20:47 -08001103function mangrep()
1104{
1105 find . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o -type f -name 'AndroidManifest.xml' -print0 | xargs -0 grep --color -n "$@"
1106}
1107
Alex Klyubinba5fc8e2013-05-06 14:11:48 -07001108function sepgrep()
1109{
1110 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 "$@"
1111}
1112
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001113case `uname -s` in
1114 Darwin)
1115 function mgrep()
1116 {
Ying Wang324c2b22012-08-17 15:03:20 -07001117 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 -07001118 }
1119
1120 function treegrep()
1121 {
Joe Onoratof50e84b2011-03-15 14:15:46 -07001122 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 -07001123 }
1124
1125 ;;
1126 *)
1127 function mgrep()
1128 {
Ying Wang324c2b22012-08-17 15:03:20 -07001129 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 -07001130 }
1131
1132 function treegrep()
1133 {
Joe Onoratof50e84b2011-03-15 14:15:46 -07001134 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 -07001135 }
1136
1137 ;;
1138esac
1139
1140function getprebuilt
1141{
1142 get_abs_build_var ANDROID_PREBUILTS
1143}
1144
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001145function tracedmdump()
1146{
1147 T=$(gettop)
1148 if [ ! "$T" ]; then
1149 echo "Couldn't locate the top of the tree. Try setting TOP."
1150 return
1151 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001152 local prebuiltdir=$(getprebuilt)
Raghu Gandham8da43102012-07-25 19:57:22 -07001153 local arch=$(gettargetarch)
1154 local KERNEL=$T/prebuilts/qemu-kernel/$arch/vmlinux-qemu
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001155
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001156 local TRACE=$1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001157 if [ ! "$TRACE" ] ; then
1158 echo "usage: tracedmdump tracename"
1159 return
1160 fi
1161
Jack Veenstra60116fc2009-04-09 18:12:34 -07001162 if [ ! -r "$KERNEL" ] ; then
1163 echo "Error: cannot find kernel: '$KERNEL'"
1164 return
1165 fi
1166
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001167 local BASETRACE=$(basename $TRACE)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001168 if [ "$BASETRACE" = "$TRACE" ] ; then
1169 TRACE=$ANDROID_PRODUCT_OUT/traces/$TRACE
1170 fi
1171
1172 echo "post-processing traces..."
1173 rm -f $TRACE/qtrace.dexlist
1174 post_trace $TRACE
1175 if [ $? -ne 0 ]; then
1176 echo "***"
1177 echo "*** Error: malformed trace. Did you remember to exit the emulator?"
1178 echo "***"
1179 return
1180 fi
1181 echo "generating dexlist output..."
1182 /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
1183 echo "generating dmtrace data..."
1184 q2dm -r $ANDROID_PRODUCT_OUT/symbols $TRACE $KERNEL $TRACE/dmtrace || return
1185 echo "generating html file..."
1186 dmtracedump -h $TRACE/dmtrace >| $TRACE/dmtrace.html || return
1187 echo "done, see $TRACE/dmtrace.html for details"
1188 echo "or run:"
1189 echo " traceview $TRACE/dmtrace"
1190}
1191
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001192# communicate with a running device or emulator, set up necessary state,
1193# and run the hat command.
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001194function runhat()
1195{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001196 # process standard adb options
1197 local adbTarget=""
Andy McFaddenb6289852010-07-12 08:00:19 -07001198 if [ "$1" = "-d" -o "$1" = "-e" ]; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001199 adbTarget=$1
1200 shift 1
Andy McFaddenb6289852010-07-12 08:00:19 -07001201 elif [ "$1" = "-s" ]; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001202 adbTarget="$1 $2"
1203 shift 2
1204 fi
1205 local adbOptions=${adbTarget}
Dianne Hackborn6b9549f2012-09-26 15:00:59 -07001206 #echo adbOptions = ${adbOptions}
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001207
1208 # runhat options
1209 local targetPid=$1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001210
1211 if [ "$targetPid" = "" ]; then
Andy McFaddenb6289852010-07-12 08:00:19 -07001212 echo "Usage: runhat [ -d | -e | -s serial ] target-pid"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001213 return
1214 fi
1215
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001216 # confirm hat is available
1217 if [ -z $(which hat) ]; then
1218 echo "hat is not available in this configuration."
1219 return
1220 fi
1221
Andy McFaddenb6289852010-07-12 08:00:19 -07001222 # issue "am" command to cause the hprof dump
Christopher Ferris764b4f82013-05-20 16:30:10 -07001223 local sdcard=$(adb ${adbOptions} shell echo -n '$EXTERNAL_STORAGE')
Dianne Hackborn6b9549f2012-09-26 15:00:59 -07001224 local devFile=$sdcard/hprof-$targetPid
1225 #local devFile=/data/local/hprof-$targetPid
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001226 echo "Poking $targetPid and waiting for data..."
Dianne Hackborn6b9549f2012-09-26 15:00:59 -07001227 echo "Storing data at $devFile"
Andy McFaddenb6289852010-07-12 08:00:19 -07001228 adb ${adbOptions} shell am dumpheap $targetPid $devFile
The Android Open Source Project88b60792009-03-03 19:28:42 -08001229 echo "Press enter when logcat shows \"hprof: heap dump completed\""
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001230 echo -n "> "
1231 read
1232
The Android Open Source Project88b60792009-03-03 19:28:42 -08001233 local localFile=/tmp/$$-hprof
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001234
The Android Open Source Project88b60792009-03-03 19:28:42 -08001235 echo "Retrieving file $devFile..."
1236 adb ${adbOptions} pull $devFile $localFile
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001237
The Android Open Source Project88b60792009-03-03 19:28:42 -08001238 adb ${adbOptions} shell rm $devFile
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001239
The Android Open Source Project88b60792009-03-03 19:28:42 -08001240 echo "Running hat on $localFile"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001241 echo "View the output by pointing your browser at http://localhost:7000/"
1242 echo ""
Dianne Hackborn6e4e1bb2011-11-10 15:19:51 -08001243 hat -JXmx512m $localFile
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001244}
1245
1246function getbugreports()
1247{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001248 local reports=(`adb shell ls /sdcard/bugreports | tr -d '\r'`)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001249
1250 if [ ! "$reports" ]; then
1251 echo "Could not locate any bugreports."
1252 return
1253 fi
1254
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001255 local report
1256 for report in ${reports[@]}
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001257 do
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001258 echo "/sdcard/bugreports/${report}"
1259 adb pull /sdcard/bugreports/${report} ${report}
1260 gunzip ${report}
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001261 done
1262}
1263
Victoria Lease1b296b42012-08-21 15:44:06 -07001264function getsdcardpath()
1265{
1266 adb ${adbOptions} shell echo -n \$\{EXTERNAL_STORAGE\}
1267}
1268
1269function getscreenshotpath()
1270{
1271 echo "$(getsdcardpath)/Pictures/Screenshots"
1272}
1273
1274function getlastscreenshot()
1275{
1276 local screenshot_path=$(getscreenshotpath)
1277 local screenshot=`adb ${adbOptions} ls ${screenshot_path} | grep Screenshot_[0-9-]*.*\.png | sort -rk 3 | cut -d " " -f 4 | head -n 1`
1278 if [ "$screenshot" = "" ]; then
1279 echo "No screenshots found."
1280 return
1281 fi
1282 echo "${screenshot}"
1283 adb ${adbOptions} pull ${screenshot_path}/${screenshot}
1284}
1285
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001286function startviewserver()
1287{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001288 local port=4939
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001289 if [ $# -gt 0 ]; then
1290 port=$1
1291 fi
1292 adb shell service call window 1 i32 $port
1293}
1294
1295function stopviewserver()
1296{
1297 adb shell service call window 2
1298}
1299
1300function isviewserverstarted()
1301{
1302 adb shell service call window 3
1303}
1304
Romain Guyb84049a2010-10-04 16:56:11 -07001305function key_home()
1306{
1307 adb shell input keyevent 3
1308}
1309
1310function key_back()
1311{
1312 adb shell input keyevent 4
1313}
1314
1315function key_menu()
1316{
1317 adb shell input keyevent 82
1318}
1319
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001320function smoketest()
1321{
1322 if [ ! "$ANDROID_PRODUCT_OUT" ]; then
1323 echo "Couldn't locate output files. Try running 'lunch' first." >&2
1324 return
1325 fi
1326 T=$(gettop)
1327 if [ ! "$T" ]; then
1328 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
1329 return
1330 fi
1331
Ying Wang9cd17642012-12-13 10:52:07 -08001332 (\cd "$T" && mmm tests/SmokeTest) &&
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001333 adb uninstall com.android.smoketest > /dev/null &&
1334 adb uninstall com.android.smoketest.tests > /dev/null &&
1335 adb install $ANDROID_PRODUCT_OUT/data/app/SmokeTestApp.apk &&
1336 adb install $ANDROID_PRODUCT_OUT/data/app/SmokeTest.apk &&
1337 adb shell am instrument -w com.android.smoketest.tests/android.test.InstrumentationTestRunner
1338}
1339
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001340# simple shortcut to the runtest command
1341function runtest()
1342{
1343 T=$(gettop)
1344 if [ ! "$T" ]; then
1345 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
1346 return
1347 fi
Brett Chabot3fb149d2009-10-21 20:05:26 -07001348 ("$T"/development/testrunner/runtest.py $@)
Brett Chabot762748c2009-03-27 10:25:11 -07001349}
1350
The Android Open Source Project88b60792009-03-03 19:28:42 -08001351function godir () {
1352 if [[ -z "$1" ]]; then
1353 echo "Usage: godir <regex>"
1354 return
1355 fi
Brian Carlstromb9915a62010-01-29 16:39:32 -08001356 T=$(gettop)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001357 if [[ ! -f $T/filelist ]]; then
1358 echo -n "Creating index..."
Ying Wang9cd17642012-12-13 10:52:07 -08001359 (\cd $T; find . -wholename ./out -prune -o -wholename ./.repo -prune -o -type f > filelist)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001360 echo " Done"
1361 echo ""
1362 fi
1363 local lines
Jeff Hamilton293f9392011-11-18 17:15:25 -06001364 lines=($(\grep "$1" $T/filelist | sed -e 's/\/[^/]*$//' | sort | uniq))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001365 if [[ ${#lines[@]} = 0 ]]; then
1366 echo "Not found"
1367 return
1368 fi
1369 local pathname
1370 local choice
1371 if [[ ${#lines[@]} > 1 ]]; then
1372 while [[ -z "$pathname" ]]; do
1373 local index=1
1374 local line
1375 for line in ${lines[@]}; do
1376 printf "%6s %s\n" "[$index]" $line
Doug Zongker29034982011-04-22 08:16:56 -07001377 index=$(($index + 1))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001378 done
1379 echo
1380 echo -n "Select one: "
1381 unset choice
1382 read choice
1383 if [[ $choice -gt ${#lines[@]} || $choice -lt 1 ]]; then
1384 echo "Invalid choice"
1385 continue
1386 fi
Kan-Ru Chen07453762010-07-05 15:53:47 +08001387 pathname=${lines[$(($choice-1))]}
The Android Open Source Project88b60792009-03-03 19:28:42 -08001388 done
1389 else
The Android Open Source Project88b60792009-03-03 19:28:42 -08001390 pathname=${lines[0]}
1391 fi
Ying Wang9cd17642012-12-13 10:52:07 -08001392 \cd $T/$pathname
The Android Open Source Project88b60792009-03-03 19:28:42 -08001393}
1394
Narayan Kamath9260bba2014-01-17 10:05:25 +00001395# Force JAVA_HOME to point to java 1.7 or java 1.6 if it isn't already set.
1396#
1397# Note that the MacOS path for java 1.7 includes a minor revision number (sigh).
1398# For some reason, installing the JDK doesn't make it show up in the
1399# JavaVM.framework/Versions/1.7/ folder.
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -05001400function set_java_home() {
Narayan Kamath9260bba2014-01-17 10:05:25 +00001401 # Clear the existing JAVA_HOME value if we set it ourselves, so that
Narayan Kamathc84889b2014-04-01 14:16:26 +01001402 # we can reset it later, depending on the version of java the build
1403 # system needs.
Narayan Kamath9260bba2014-01-17 10:05:25 +00001404 #
1405 # If we don't do this, the JAVA_HOME value set by the first call to
1406 # build/envsetup.sh will persist forever.
1407 if [ -n "$ANDROID_SET_JAVA_HOME" ]; then
1408 export JAVA_HOME=""
1409 fi
1410
Andy McFaddenbd960942010-06-24 12:52:51 -07001411 if [ ! "$JAVA_HOME" ]; then
Narayan Kamathc84889b2014-04-01 14:16:26 +01001412 if [ -n "$LEGACY_USE_JAVA6" ]; then
Andy McFaddenbd960942010-06-24 12:52:51 -07001413 case `uname -s` in
1414 Darwin)
1415 export JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Versions/1.6/Home
1416 ;;
1417 *)
1418 export JAVA_HOME=/usr/lib/jvm/java-6-sun
1419 ;;
1420 esac
Narayan Kamath9260bba2014-01-17 10:05:25 +00001421 else
1422 case `uname -s` in
1423 Darwin)
Jason Parks30cfbd72014-04-28 13:32:10 -05001424 export JAVA_HOME=$(/usr/libexec/java_home -v 1.7)
Narayan Kamath9260bba2014-01-17 10:05:25 +00001425 ;;
1426 *)
1427 export JAVA_HOME=/usr/lib/jvm/java-7-openjdk-amd64
1428 ;;
1429 esac
1430 fi
1431
1432 # Keep track of the fact that we set JAVA_HOME ourselves, so that
1433 # we can change it on the next envsetup.sh, if required.
1434 export ANDROID_SET_JAVA_HOME=true
Jeff Hamilton04be0d82010-06-07 15:03:54 -05001435 fi
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -05001436}
Jeff Hamilton04be0d82010-06-07 15:03:54 -05001437
Alex Rayf0d08eb2013-03-08 15:15:06 -08001438# Print colored exit condition
1439function pez {
Michael Wrighteb733842013-03-08 17:34:02 -08001440 "$@"
1441 local retval=$?
1442 if [ $retval -ne 0 ]
1443 then
1444 echo -e "\e[0;31mFAILURE\e[00m"
1445 else
1446 echo -e "\e[0;32mSUCCESS\e[00m"
1447 fi
1448 return $retval
Alex Rayf0d08eb2013-03-08 15:15:06 -08001449}
1450
Raphael Moll70a86b02011-06-20 16:03:14 -07001451if [ "x$SHELL" != "x/bin/bash" ]; then
1452 case `ps -o command -p $$` in
1453 *bash*)
1454 ;;
1455 *)
1456 echo "WARNING: Only bash is supported, use of other shell would lead to erroneous results"
1457 ;;
1458 esac
1459fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001460
1461# Execute the contents of any vendorsetup.sh files we can find.
Guilhem IMBERTON58570e72012-10-04 14:26:57 +02001462for f in `test -d device && find device -maxdepth 4 -name 'vendorsetup.sh' 2> /dev/null` \
1463 `test -d vendor && find vendor -maxdepth 4 -name 'vendorsetup.sh' 2> /dev/null`
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001464do
1465 echo "including $f"
1466 . $f
1467done
1468unset f
Kenny Root52aa81c2011-07-15 11:07:06 -07001469
1470addcompletions