blob: 2c74b2d81ae9539cdaf028c7ffe1aa78eaf2c04f [file] [log] [blame]
Scott Anderson1a5fc952012-03-07 17:15:06 -08001function hmm() {
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07002cat <<EOF
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08003Invoke ". build/envsetup.sh" from your shell to add the following functions to your environment:
Ying Wang67f02922012-08-22 10:25:20 -07004- lunch: lunch <product_name>-<build_variant>
Ying Wangb541ab62014-05-29 17:57:40 -07005- tapas: tapas [<App1> <App2> ...] [arm|x86|mips|armv5|arm64|x86_64|mips64] [eng|userdebug|user]
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07006- croot: Changes directory to the top of the tree.
7- m: Makes from the top of the tree.
Ying Wangb607f7b2013-02-08 18:01:04 -08008- mm: Builds all of the modules in the current directory, but not their dependencies.
9- mmm: Builds all of the modules in the supplied directories, but not their dependencies.
Primiano Tucci6a8069d2014-02-26 11:09:19 +000010 To limit the modules being built use the syntax: mmm dir/:target1,target2.
Ying Wangb607f7b2013-02-08 18:01:04 -080011- mma: Builds all of the modules in the current directory, and their dependencies.
12- mmma: Builds all of the modules in the supplied directories, and their dependencies.
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070013- cgrep: Greps on all local C/C++ files.
Jon Boekenoogencbca56f2014-04-07 10:57:38 -070014- ggrep: Greps on all local Gradle files.
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070015- jgrep: Greps on all local Java files.
16- resgrep: Greps on all local res/*.xml files.
Jeff Brown46cbd202014-07-26 15:15:41 -070017- sgrep: Greps on all local source files.
The Android Open Source Project88b60792009-03-03 19:28:42 -080018- godir: Go to the directory containing a file.
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070019
20Look at the source to view more functions. The complete list is:
21EOF
22 T=$(gettop)
23 local A
24 A=""
Jeff Brown46cbd202014-07-26 15:15:41 -070025 for i in `cat $T/build/envsetup.sh | sed -n "/^[ \t]*function /s/function \([a-z_]*\).*/\1/p" | sort | uniq`; do
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070026 A="$A $i"
27 done
28 echo $A
29}
30
31# Get the value of a build variable as an absolute path.
32function get_abs_build_var()
33{
34 T=$(gettop)
35 if [ ! "$T" ]; then
36 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
37 return
38 fi
Ying Wang9cd17642012-12-13 10:52:07 -080039 (\cd $T; CALLED_FROM_SETUP=true BUILD_SYSTEM=build/core \
Ed Heylc6d11f82014-06-27 13:32:39 -070040 command make --no-print-directory -f build/core/config.mk dumpvar-abs-$1)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070041}
42
43# Get the exact value of a build variable.
44function get_build_var()
45{
46 T=$(gettop)
47 if [ ! "$T" ]; then
48 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
49 return
50 fi
Andrew Boie6905e212013-12-19 13:21:46 -080051 (\cd $T; CALLED_FROM_SETUP=true BUILD_SYSTEM=build/core \
Ed Heylc6d11f82014-06-27 13:32:39 -070052 command make --no-print-directory -f build/core/config.mk dumpvar-$1)
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -080053}
54
55# check to see if the supplied product is one we can build
56function check_product()
57{
58 T=$(gettop)
59 if [ ! "$T" ]; then
60 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
61 return
62 fi
Jeff Browne33ba4c2011-07-11 22:11:46 -070063 TARGET_PRODUCT=$1 \
64 TARGET_BUILD_VARIANT= \
65 TARGET_BUILD_TYPE= \
Joe Onoratoda12daf2010-06-09 18:18:31 -070066 TARGET_BUILD_APPS= \
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -080067 get_build_var TARGET_DEVICE > /dev/null
68 # hide successful answers, but allow the errors to show
69}
70
71VARIANT_CHOICES=(user userdebug eng)
72
73# check to see if the supplied variant is valid
74function check_variant()
75{
76 for v in ${VARIANT_CHOICES[@]}
77 do
78 if [ "$v" = "$1" ]
79 then
80 return 0
81 fi
82 done
83 return 1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070084}
85
86function setpaths()
87{
88 T=$(gettop)
89 if [ ! "$T" ]; then
90 echo "Couldn't locate the top of the tree. Try setting TOP."
91 return
92 fi
93
94 ##################################################################
95 # #
96 # Read me before you modify this code #
97 # #
98 # This function sets ANDROID_BUILD_PATHS to what it is adding #
99 # to PATH, and the next time it is run, it removes that from #
100 # PATH. This is required so lunch can be run more than once #
101 # and still have working paths. #
102 # #
103 ##################################################################
104
Raphael Mollc639c782011-06-20 17:25:01 -0700105 # Note: on windows/cygwin, ANDROID_BUILD_PATHS will contain spaces
106 # due to "C:\Program Files" being in the path.
107
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700108 # out with the old
Raphael Mollc639c782011-06-20 17:25:01 -0700109 if [ -n "$ANDROID_BUILD_PATHS" ] ; then
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700110 export PATH=${PATH/$ANDROID_BUILD_PATHS/}
111 fi
Raphael Mollc639c782011-06-20 17:25:01 -0700112 if [ -n "$ANDROID_PRE_BUILD_PATHS" ] ; then
Doug Zongker29034982011-04-22 08:16:56 -0700113 export PATH=${PATH/$ANDROID_PRE_BUILD_PATHS/}
Ying Wangaa1c9b52012-11-26 20:51:59 -0800114 # strip leading ':', if any
115 export PATH=${PATH/:%/}
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500116 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700117
118 # and in with the new
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700119 prebuiltdir=$(getprebuilt)
Jing Yuf5172c72012-03-29 20:45:50 -0700120 gccprebuiltdir=$(get_abs_build_var ANDROID_GCC_PREBUILTS)
Raphael732936d2011-06-22 14:35:32 -0700121
Ben Cheng8bc4c432012-11-16 13:29:13 -0800122 # defined in core/config.mk
123 targetgccversion=$(get_build_var TARGET_GCC_VERSION)
Colin Cross03b424a2014-05-22 11:57:43 -0700124 targetgccversion2=$(get_build_var 2ND_TARGET_GCC_VERSION)
Ben Cheng15266702012-12-10 16:04:39 -0800125 export TARGET_GCC_VERSION=$targetgccversion
Ben Cheng8bc4c432012-11-16 13:29:13 -0800126
Raphael Mollc639c782011-06-20 17:25:01 -0700127 # The gcc toolchain does not exists for windows/cygwin. In this case, do not reference it.
Ben Chengfba67bf2014-02-25 10:27:07 -0800128 export ANDROID_TOOLCHAIN=
129 export ANDROID_TOOLCHAIN_2ND_ARCH=
David 'Digit' Turner2056c252012-04-17 14:50:47 +0200130 local ARCH=$(get_build_var TARGET_ARCH)
131 case $ARCH in
Pavel Chupinc1a56642013-08-23 16:49:21 +0400132 x86) toolchaindir=x86/x86_64-linux-android-$targetgccversion/bin
Mark D Horn7d0ede72012-03-14 14:20:30 -0700133 ;;
Pavel Chupinfd82a492012-11-26 09:50:07 +0400134 x86_64) toolchaindir=x86/x86_64-linux-android-$targetgccversion/bin
135 ;;
Ben Cheng8bc4c432012-11-16 13:29:13 -0800136 arm) toolchaindir=arm/arm-linux-androideabi-$targetgccversion/bin
David 'Digit' Turner2056c252012-04-17 14:50:47 +0200137 ;;
Ben Chengfba67bf2014-02-25 10:27:07 -0800138 arm64) toolchaindir=aarch64/aarch64-linux-android-$targetgccversion/bin;
Colin Cross03b424a2014-05-22 11:57:43 -0700139 toolchaindir2=arm/arm-linux-androideabi-$targetgccversion2/bin
Ben Chengdb4fc202013-10-04 16:02:59 -0700140 ;;
Duane Sand3c4fcd82014-07-22 14:34:00 -0700141 mips|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
David 'Digit' Turner7cde0302014-05-05 16:13:50 +0200209 # If prebuilts/android-emulator/<system>/ exists, prepend it to our PATH
210 # to ensure that the corresponding 'emulator' binaries are used.
211 case $(uname -s) in
212 Darwin)
213 ANDROID_EMULATOR_PREBUILTS=$T/prebuilts/android-emulator/darwin-x86_64
214 ;;
215 Linux)
216 ANDROID_EMULATOR_PREBUILTS=$T/prebuilts/android-emulator/linux-x86_64
217 ;;
218 *)
219 ANDROID_EMULATOR_PREBUILTS=
220 ;;
221 esac
222 if [ -n "$ANDROID_EMULATOR_PREBUILTS" -a -d "$ANDROID_EMULATOR_PREBUILTS" ]; then
223 PATH=$ANDROID_EMULATOR_PREBUILTS:$PATH
224 export ANDROID_EMULATOR_PREBUILTS
225 fi
226
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800227 # needed for building linux on MacOS
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700228 # TODO: fix the path
229 #export HOST_EXTRACFLAGS="-I "$T/system/kernel_headers/host_include
230}
231
232function printconfig()
233{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800234 T=$(gettop)
235 if [ ! "$T" ]; then
236 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
237 return
238 fi
239 get_build_var report_config
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700240}
241
242function set_stuff_for_environment()
243{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800244 settitle
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500245 set_java_home
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800246 setpaths
247 set_sequence_number
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700248
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800249 export ANDROID_BUILD_TOP=$(gettop)
Ben Chengaac3f812013-08-13 14:38:15 -0700250 # With this environment variable new GCC can apply colors to warnings/errors
251 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 -0700252}
253
254function set_sequence_number()
255{
Joe Onoratoaee4daa2010-06-23 14:03:13 -0700256 export BUILD_ENV_SEQUENCE_NUMBER=10
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700257}
258
259function settitle()
260{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800261 if [ "$STAY_OFF_MY_LAWN" = "" ]; then
Raghu Gandham8da43102012-07-25 19:57:22 -0700262 local arch=$(gettargetarch)
Joe Onoratoda12daf2010-06-09 18:18:31 -0700263 local product=$TARGET_PRODUCT
264 local variant=$TARGET_BUILD_VARIANT
265 local apps=$TARGET_BUILD_APPS
266 if [ -z "$apps" ]; then
Raghu Gandham8da43102012-07-25 19:57:22 -0700267 export PROMPT_COMMAND="echo -ne \"\033]0;[${arch}-${product}-${variant}] ${USER}@${HOSTNAME}: ${PWD}\007\""
Joe Onoratoda12daf2010-06-09 18:18:31 -0700268 else
Raghu Gandham8da43102012-07-25 19:57:22 -0700269 export PROMPT_COMMAND="echo -ne \"\033]0;[$arch $apps $variant] ${USER}@${HOSTNAME}: ${PWD}\007\""
Joe Onoratoda12daf2010-06-09 18:18:31 -0700270 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800271 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700272}
273
Kenny Root52aa81c2011-07-15 11:07:06 -0700274function addcompletions()
275{
276 local T dir f
277
278 # Keep us from trying to run in something that isn't bash.
279 if [ -z "${BASH_VERSION}" ]; then
280 return
281 fi
282
283 # Keep us from trying to run in bash that's too old.
284 if [ ${BASH_VERSINFO[0]} -lt 3 ]; then
285 return
286 fi
287
288 dir="sdk/bash_completion"
289 if [ -d ${dir} ]; then
Kenny Root7546d612011-07-18 13:11:34 -0700290 for f in `/bin/ls ${dir}/[a-z]*.bash 2> /dev/null`; do
Kenny Root52aa81c2011-07-15 11:07:06 -0700291 echo "including $f"
292 . $f
293 done
294 fi
295}
296
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700297function choosetype()
298{
299 echo "Build type choices are:"
300 echo " 1. release"
301 echo " 2. debug"
302 echo
303
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800304 local DEFAULT_NUM DEFAULT_VALUE
Jeff Browne33ba4c2011-07-11 22:11:46 -0700305 DEFAULT_NUM=1
306 DEFAULT_VALUE=release
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700307
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800308 export TARGET_BUILD_TYPE=
309 local ANSWER
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700310 while [ -z $TARGET_BUILD_TYPE ]
311 do
312 echo -n "Which would you like? ["$DEFAULT_NUM"] "
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800313 if [ -z "$1" ] ; then
314 read ANSWER
315 else
316 echo $1
317 ANSWER=$1
318 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700319 case $ANSWER in
320 "")
321 export TARGET_BUILD_TYPE=$DEFAULT_VALUE
322 ;;
323 1)
324 export TARGET_BUILD_TYPE=release
325 ;;
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800326 release)
327 export TARGET_BUILD_TYPE=release
328 ;;
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700329 2)
330 export TARGET_BUILD_TYPE=debug
331 ;;
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800332 debug)
333 export TARGET_BUILD_TYPE=debug
334 ;;
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700335 *)
336 echo
337 echo "I didn't understand your response. Please try again."
338 echo
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700339 ;;
340 esac
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800341 if [ -n "$1" ] ; then
342 break
343 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700344 done
345
346 set_stuff_for_environment
347}
348
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800349#
350# This function isn't really right: It chooses a TARGET_PRODUCT
351# based on the list of boards. Usually, that gets you something
352# that kinda works with a generic product, but really, you should
353# pick a product by name.
354#
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700355function chooseproduct()
356{
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700357 if [ "x$TARGET_PRODUCT" != x ] ; then
358 default_value=$TARGET_PRODUCT
359 else
Jeff Browne33ba4c2011-07-11 22:11:46 -0700360 default_value=full
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700361 fi
362
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800363 export TARGET_PRODUCT=
364 local ANSWER
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700365 while [ -z "$TARGET_PRODUCT" ]
366 do
Joe Onorato8849aed2009-04-29 15:56:47 -0700367 echo -n "Which product would you like? [$default_value] "
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800368 if [ -z "$1" ] ; then
369 read ANSWER
370 else
371 echo $1
372 ANSWER=$1
373 fi
374
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700375 if [ -z "$ANSWER" ] ; then
376 export TARGET_PRODUCT=$default_value
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800377 else
378 if check_product $ANSWER
379 then
380 export TARGET_PRODUCT=$ANSWER
381 else
382 echo "** Not a valid product: $ANSWER"
383 fi
384 fi
385 if [ -n "$1" ] ; then
386 break
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700387 fi
388 done
389
390 set_stuff_for_environment
391}
392
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800393function choosevariant()
394{
395 echo "Variant choices are:"
396 local index=1
397 local v
398 for v in ${VARIANT_CHOICES[@]}
399 do
400 # The product name is the name of the directory containing
401 # the makefile we found, above.
402 echo " $index. $v"
403 index=$(($index+1))
404 done
405
406 local default_value=eng
407 local ANSWER
408
409 export TARGET_BUILD_VARIANT=
410 while [ -z "$TARGET_BUILD_VARIANT" ]
411 do
412 echo -n "Which would you like? [$default_value] "
413 if [ -z "$1" ] ; then
414 read ANSWER
415 else
416 echo $1
417 ANSWER=$1
418 fi
419
420 if [ -z "$ANSWER" ] ; then
421 export TARGET_BUILD_VARIANT=$default_value
422 elif (echo -n $ANSWER | grep -q -e "^[0-9][0-9]*$") ; then
423 if [ "$ANSWER" -le "${#VARIANT_CHOICES[@]}" ] ; then
Kan-Ru Chen07453762010-07-05 15:53:47 +0800424 export TARGET_BUILD_VARIANT=${VARIANT_CHOICES[$(($ANSWER-1))]}
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800425 fi
426 else
427 if check_variant $ANSWER
428 then
429 export TARGET_BUILD_VARIANT=$ANSWER
430 else
431 echo "** Not a valid variant: $ANSWER"
432 fi
433 fi
434 if [ -n "$1" ] ; then
435 break
436 fi
437 done
438}
439
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700440function choosecombo()
441{
Jeff Browne33ba4c2011-07-11 22:11:46 -0700442 choosetype $1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700443
444 echo
445 echo
Jeff Browne33ba4c2011-07-11 22:11:46 -0700446 chooseproduct $2
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700447
448 echo
449 echo
Jeff Browne33ba4c2011-07-11 22:11:46 -0700450 choosevariant $3
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800451
452 echo
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700453 set_stuff_for_environment
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800454 printconfig
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700455}
456
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800457# Clear this variable. It will be built up again when the vendorsetup.sh
458# files are included at the end of this file.
459unset LUNCH_MENU_CHOICES
460function add_lunch_combo()
461{
462 local new_combo=$1
463 local c
464 for c in ${LUNCH_MENU_CHOICES[@]} ; do
465 if [ "$new_combo" = "$c" ] ; then
466 return
467 fi
468 done
469 LUNCH_MENU_CHOICES=(${LUNCH_MENU_CHOICES[@]} $new_combo)
470}
471
472# add the default one here
Jean-Baptiste Queru324c1232013-03-22 15:53:54 -0700473add_lunch_combo aosp_arm-eng
Colin Cross4f0eb7d2014-01-21 19:35:38 -0800474add_lunch_combo aosp_arm64-eng
Serban Constantinescu9b68fb22014-01-14 10:33:53 +0000475add_lunch_combo aosp_mips-eng
Chris Dearman1efd9e42014-02-03 15:01:24 -0800476add_lunch_combo aosp_mips64-eng
Serban Constantinescu9b68fb22014-01-14 10:33:53 +0000477add_lunch_combo aosp_x86-eng
478add_lunch_combo aosp_x86_64-eng
Bruce Beareba366c42011-02-15 16:46:08 -0800479add_lunch_combo vbox_x86-eng
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800480
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700481function print_lunch_menu()
482{
483 local uname=$(uname)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700484 echo
485 echo "You're building on" $uname
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700486 echo
487 echo "Lunch menu... pick a combo:"
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800488
489 local i=1
490 local choice
491 for choice in ${LUNCH_MENU_CHOICES[@]}
492 do
493 echo " $i. $choice"
494 i=$(($i+1))
495 done
496
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700497 echo
498}
499
500function lunch()
501{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800502 local answer
503
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700504 if [ "$1" ] ; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800505 answer=$1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700506 else
507 print_lunch_menu
Jean-Baptiste Queru324c1232013-03-22 15:53:54 -0700508 echo -n "Which would you like? [aosp_arm-eng] "
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800509 read answer
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700510 fi
511
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800512 local selection=
513
514 if [ -z "$answer" ]
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700515 then
Jean-Baptiste Queru324c1232013-03-22 15:53:54 -0700516 selection=aosp_arm-eng
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800517 elif (echo -n $answer | grep -q -e "^[0-9][0-9]*$")
518 then
519 if [ $answer -le ${#LUNCH_MENU_CHOICES[@]} ]
520 then
Kan-Ru Chen07453762010-07-05 15:53:47 +0800521 selection=${LUNCH_MENU_CHOICES[$(($answer-1))]}
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800522 fi
523 elif (echo -n $answer | grep -q -e "^[^\-][^\-]*-[^\-][^\-]*$")
524 then
525 selection=$answer
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700526 fi
527
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800528 if [ -z "$selection" ]
529 then
530 echo
531 echo "Invalid lunch combo: $answer"
532 return 1
533 fi
534
Joe Onoratoda12daf2010-06-09 18:18:31 -0700535 export TARGET_BUILD_APPS=
536
Jeff Browne33ba4c2011-07-11 22:11:46 -0700537 local product=$(echo -n $selection | sed -e "s/-.*$//")
538 check_product $product
539 if [ $? -ne 0 ]
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800540 then
Jeff Browne33ba4c2011-07-11 22:11:46 -0700541 echo
542 echo "** Don't have a product spec for: '$product'"
543 echo "** Do you have the right repo manifest?"
544 product=
545 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800546
Jeff Browne33ba4c2011-07-11 22:11:46 -0700547 local variant=$(echo -n $selection | sed -e "s/^[^\-]*-//")
548 check_variant $variant
549 if [ $? -ne 0 ]
550 then
551 echo
552 echo "** Invalid variant: '$variant'"
553 echo "** Must be one of ${VARIANT_CHOICES[@]}"
554 variant=
555 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800556
Jeff Browne33ba4c2011-07-11 22:11:46 -0700557 if [ -z "$product" -o -z "$variant" ]
558 then
559 echo
560 return 1
561 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800562
Jeff Browne33ba4c2011-07-11 22:11:46 -0700563 export TARGET_PRODUCT=$product
564 export TARGET_BUILD_VARIANT=$variant
565 export TARGET_BUILD_TYPE=release
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700566
567 echo
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800568
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700569 set_stuff_for_environment
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800570 printconfig
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700571}
572
Jeff Davidson513d7a42010-08-02 10:00:44 -0700573# Tab completion for lunch.
574function _lunch()
575{
576 local cur prev opts
577 COMPREPLY=()
578 cur="${COMP_WORDS[COMP_CWORD]}"
579 prev="${COMP_WORDS[COMP_CWORD-1]}"
580
581 COMPREPLY=( $(compgen -W "${LUNCH_MENU_CHOICES[*]}" -- ${cur}) )
582 return 0
583}
584complete -F _lunch lunch
585
Joe Onoratoda12daf2010-06-09 18:18:31 -0700586# Configures the build to build unbundled apps.
Doug Zongker0d8179e2014-04-16 11:34:34 -0700587# Run tapas with one or more app names (from LOCAL_PACKAGE_NAME)
Joe Onoratoda12daf2010-06-09 18:18:31 -0700588function tapas()
589{
Ying Wangb541ab62014-05-29 17:57:40 -0700590 local arch="$(echo $* | xargs -n 1 echo | \grep -E '^(arm|x86|mips|armv5|arm64|x86_64|mips64)$' | xargs)"
Doug Zongker0d8179e2014-04-16 11:34:34 -0700591 local variant="$(echo $* | xargs -n 1 echo | \grep -E '^(user|userdebug|eng)$' | xargs)"
Ying Wangb541ab62014-05-29 17:57:40 -0700592 local apps="$(echo $* | xargs -n 1 echo | \grep -E -v '^(user|userdebug|eng|arm|x86|mips|armv5|arm64|x86_64|mips64)$' | xargs)"
Joe Onoratoda12daf2010-06-09 18:18:31 -0700593
Ying Wang67f02922012-08-22 10:25:20 -0700594 if [ $(echo $arch | wc -w) -gt 1 ]; then
595 echo "tapas: Error: Multiple build archs supplied: $arch"
596 return
597 fi
Joe Onoratoda12daf2010-06-09 18:18:31 -0700598 if [ $(echo $variant | wc -w) -gt 1 ]; then
599 echo "tapas: Error: Multiple build variants supplied: $variant"
600 return
601 fi
Ying Wang67f02922012-08-22 10:25:20 -0700602
603 local product=full
604 case $arch in
Ying Wangb541ab62014-05-29 17:57:40 -0700605 x86) product=full_x86;;
606 mips) product=full_mips;;
607 armv5) product=generic_armv5;;
608 arm64) product=aosp_arm64;;
609 x86_64) product=aosp_x86_64;;
610 mips64) product=aosp_mips64;;
Ying Wang67f02922012-08-22 10:25:20 -0700611 esac
Joe Onoratoda12daf2010-06-09 18:18:31 -0700612 if [ -z "$variant" ]; then
613 variant=eng
614 fi
Ying Wangc048c9b2010-06-24 15:08:33 -0700615 if [ -z "$apps" ]; then
616 apps=all
617 fi
Joe Onoratoda12daf2010-06-09 18:18:31 -0700618
Ying Wang67f02922012-08-22 10:25:20 -0700619 export TARGET_PRODUCT=$product
Joe Onoratoda12daf2010-06-09 18:18:31 -0700620 export TARGET_BUILD_VARIANT=$variant
Joe Onoratoda12daf2010-06-09 18:18:31 -0700621 export TARGET_BUILD_TYPE=release
622 export TARGET_BUILD_APPS=$apps
623
624 set_stuff_for_environment
625 printconfig
626}
627
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700628function gettop
629{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800630 local TOPFILE=build/core/envsetup.mk
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700631 if [ -n "$TOP" -a -f "$TOP/$TOPFILE" ] ; then
632 echo $TOP
633 else
634 if [ -f $TOPFILE ] ; then
Dan Bornsteind0b274d2009-11-24 15:48:50 -0800635 # The following circumlocution (repeated below as well) ensures
636 # that we record the true directory name and not one that is
637 # faked up with symlink names.
638 PWD= /bin/pwd
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700639 else
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800640 local HERE=$PWD
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700641 T=
642 while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do
Ying Wang9cd17642012-12-13 10:52:07 -0800643 \cd ..
synergyb112a402013-07-05 19:47:47 -0700644 T=`PWD= /bin/pwd -P`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700645 done
Ying Wang9cd17642012-12-13 10:52:07 -0800646 \cd $HERE
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700647 if [ -f "$T/$TOPFILE" ]; then
648 echo $T
649 fi
650 fi
651 fi
652}
653
Andrew Hsieh906cb782013-09-10 17:37:14 +0800654# Return driver for "make", if any (eg. static analyzer)
655function getdriver()
656{
657 local T="$1"
658 test "$WITH_STATIC_ANALYZER" = "0" && unset WITH_STATIC_ANALYZER
659 if [ -n "$WITH_STATIC_ANALYZER" ]; then
660 echo "\
Andrew Hsiehc4f7fba2014-03-03 16:53:17 +0800661$T/prebuilts/misc/linux-x86/analyzer/tools/scan-build/scan-build \
662--use-analyzer $T/prebuilts/misc/linux-x86/analyzer/bin/analyzer \
Andrew Hsieh906cb782013-09-10 17:37:14 +0800663--status-bugs \
664--top=$T"
665 fi
666}
667
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700668function m()
669{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800670 local T=$(gettop)
671 local DRV=$(getdriver $T)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700672 if [ "$T" ]; then
Andrew Hsieh906cb782013-09-10 17:37:14 +0800673 $DRV make -C $T -f build/core/main.mk $@
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700674 else
675 echo "Couldn't locate the top of the tree. Try setting TOP."
676 fi
677}
678
679function findmakefile()
680{
681 TOPFILE=build/core/envsetup.mk
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800682 local HERE=$PWD
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700683 T=
684 while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do
Ying Wang11b15b12012-10-11 15:05:07 -0700685 T=`PWD= /bin/pwd`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700686 if [ -f "$T/Android.mk" ]; then
687 echo $T/Android.mk
Ying Wang9cd17642012-12-13 10:52:07 -0800688 \cd $HERE
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700689 return
690 fi
Ying Wang9cd17642012-12-13 10:52:07 -0800691 \cd ..
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700692 done
Ying Wang9cd17642012-12-13 10:52:07 -0800693 \cd $HERE
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700694}
695
696function mm()
697{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800698 local T=$(gettop)
699 local DRV=$(getdriver $T)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700700 # If we're sitting in the root of the build tree, just do a
701 # normal make.
702 if [ -f build/core/envsetup.mk -a -f Makefile ]; then
Andrew Hsieh906cb782013-09-10 17:37:14 +0800703 $DRV make $@
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700704 else
705 # Find the closest Android.mk file.
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800706 local M=$(findmakefile)
Ying Wanga7deb082013-08-16 13:24:47 -0700707 local MODULES=
708 local GET_INSTALL_PATH=
709 local ARGS=
Robert Greenwalt3c794d72009-07-15 15:07:44 -0700710 # Remove the path to top as the makefilepath needs to be relative
711 local M=`echo $M|sed 's:'$T'/::'`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700712 if [ ! "$T" ]; then
713 echo "Couldn't locate the top of the tree. Try setting TOP."
714 elif [ ! "$M" ]; then
715 echo "Couldn't locate a makefile from the current directory."
716 else
Ying Wanga7deb082013-08-16 13:24:47 -0700717 for ARG in $@; do
718 case $ARG in
719 GET-INSTALL-PATH) GET_INSTALL_PATH=$ARG;;
720 esac
721 done
722 if [ -n "$GET_INSTALL_PATH" ]; then
723 MODULES=
724 ARGS=GET-INSTALL-PATH
725 else
726 MODULES=all_modules
727 ARGS=$@
728 fi
Andrew Hsieh246daf72013-09-10 18:07:23 -0700729 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 -0700730 fi
731 fi
732}
733
734function mmm()
735{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800736 local T=$(gettop)
737 local DRV=$(getdriver $T)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700738 if [ "$T" ]; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800739 local MAKEFILE=
Alon Albert68895a92011-11-30 12:40:19 -0800740 local MODULES=
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800741 local ARGS=
742 local DIR TO_CHOP
Ying Wanga7deb082013-08-16 13:24:47 -0700743 local GET_INSTALL_PATH=
The Android Open Source Project88b60792009-03-03 19:28:42 -0800744 local DASH_ARGS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^-.*$/')
745 local DIRS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^[^-].*$/')
746 for DIR in $DIRS ; do
Alon Albert68895a92011-11-30 12:40:19 -0800747 MODULES=`echo $DIR | sed -n -e 's/.*:\(.*$\)/\1/p' | sed 's/,/ /'`
748 if [ "$MODULES" = "" ]; then
749 MODULES=all_modules
750 fi
751 DIR=`echo $DIR | sed -e 's/:.*//' -e 's:/$::'`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700752 if [ -f $DIR/Android.mk ]; then
Ying Wanga7deb082013-08-16 13:24:47 -0700753 local TO_CHOP=`(\cd -P -- $T && pwd -P) | wc -c | tr -d ' '`
754 local TO_CHOP=`expr $TO_CHOP + 1`
755 local START=`PWD= /bin/pwd`
756 local MFILE=`echo $START | cut -c${TO_CHOP}-`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700757 if [ "$MFILE" = "" ] ; then
758 MFILE=$DIR/Android.mk
759 else
760 MFILE=$MFILE/$DIR/Android.mk
761 fi
762 MAKEFILE="$MAKEFILE $MFILE"
763 else
Ying Wanga7deb082013-08-16 13:24:47 -0700764 case $DIR in
765 showcommands | snod | dist | incrementaljavac) ARGS="$ARGS $DIR";;
766 GET-INSTALL-PATH) GET_INSTALL_PATH=$DIR;;
767 *) echo "No Android.mk in $DIR."; return 1;;
768 esac
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700769 fi
770 done
Ying Wanga7deb082013-08-16 13:24:47 -0700771 if [ -n "$GET_INSTALL_PATH" ]; then
772 ARGS=$GET_INSTALL_PATH
773 MODULES=
774 fi
Andrew Hsieh906cb782013-09-10 17:37:14 +0800775 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 -0700776 else
777 echo "Couldn't locate the top of the tree. Try setting TOP."
778 fi
779}
780
Ying Wangb607f7b2013-02-08 18:01:04 -0800781function mma()
782{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800783 local T=$(gettop)
784 local DRV=$(getdriver $T)
Ying Wangb607f7b2013-02-08 18:01:04 -0800785 if [ -f build/core/envsetup.mk -a -f Makefile ]; then
Andrew Hsieh906cb782013-09-10 17:37:14 +0800786 $DRV make $@
Ying Wangb607f7b2013-02-08 18:01:04 -0800787 else
Ying Wangb607f7b2013-02-08 18:01:04 -0800788 if [ ! "$T" ]; then
789 echo "Couldn't locate the top of the tree. Try setting TOP."
790 fi
791 local MY_PWD=`PWD= /bin/pwd|sed 's:'$T'/::'`
Andrew Hsieh906cb782013-09-10 17:37:14 +0800792 $DRV make -C $T -f build/core/main.mk $@ all_modules BUILD_MODULES_IN_PATHS="$MY_PWD"
Ying Wangb607f7b2013-02-08 18:01:04 -0800793 fi
794}
795
796function mmma()
797{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800798 local T=$(gettop)
799 local DRV=$(getdriver $T)
Ying Wangb607f7b2013-02-08 18:01:04 -0800800 if [ "$T" ]; then
801 local DASH_ARGS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^-.*$/')
802 local DIRS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^[^-].*$/')
803 local MY_PWD=`PWD= /bin/pwd`
804 if [ "$MY_PWD" = "$T" ]; then
805 MY_PWD=
806 else
807 MY_PWD=`echo $MY_PWD|sed 's:'$T'/::'`
808 fi
809 local DIR=
810 local MODULE_PATHS=
811 local ARGS=
812 for DIR in $DIRS ; do
813 if [ -d $DIR ]; then
814 if [ "$MY_PWD" = "" ]; then
815 MODULE_PATHS="$MODULE_PATHS $DIR"
816 else
817 MODULE_PATHS="$MODULE_PATHS $MY_PWD/$DIR"
818 fi
819 else
820 case $DIR in
821 showcommands | snod | dist | incrementaljavac) ARGS="$ARGS $DIR";;
822 *) echo "Couldn't find directory $DIR"; return 1;;
823 esac
824 fi
825 done
Andrew Hsieh906cb782013-09-10 17:37:14 +0800826 $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 -0800827 else
828 echo "Couldn't locate the top of the tree. Try setting TOP."
829 fi
830}
831
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700832function croot()
833{
834 T=$(gettop)
835 if [ "$T" ]; then
Ying Wang9cd17642012-12-13 10:52:07 -0800836 \cd $(gettop)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700837 else
838 echo "Couldn't locate the top of the tree. Try setting TOP."
839 fi
840}
841
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700842function cproj()
843{
844 TOPFILE=build/core/envsetup.mk
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700845 local HERE=$PWD
846 T=
847 while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do
848 T=$PWD
849 if [ -f "$T/Android.mk" ]; then
Ying Wang9cd17642012-12-13 10:52:07 -0800850 \cd $T
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700851 return
852 fi
Ying Wang9cd17642012-12-13 10:52:07 -0800853 \cd ..
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700854 done
Ying Wang9cd17642012-12-13 10:52:07 -0800855 \cd $HERE
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700856 echo "can't find Android.mk"
857}
858
Daniel Sandler47e0a882013-07-30 13:23:52 -0400859# simplified version of ps; output in the form
860# <pid> <procname>
861function qpid() {
862 local prepend=''
863 local append=''
864 if [ "$1" = "--exact" ]; then
865 prepend=' '
866 append='$'
867 shift
868 elif [ "$1" = "--help" -o "$1" = "-h" ]; then
869 echo "usage: qpid [[--exact] <process name|pid>"
870 return 255
871 fi
872
873 local EXE="$1"
874 if [ "$EXE" ] ; then
Mathias Agopian44583272013-08-27 14:15:50 -0700875 qpid | \grep "$prepend$EXE$append"
Daniel Sandler47e0a882013-07-30 13:23:52 -0400876 else
877 adb shell ps \
878 | tr -d '\r' \
879 | sed -e 1d -e 's/^[^ ]* *\([0-9]*\).* \([^ ]*\)$/\1 \2/'
880 fi
881}
882
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700883function pid()
884{
Daniel Sandler47e0a882013-07-30 13:23:52 -0400885 local prepend=''
886 local append=''
887 if [ "$1" = "--exact" ]; then
888 prepend=' '
889 append='$'
890 shift
891 fi
892 local EXE="$1"
893 if [ "$EXE" ] ; then
894 local PID=`adb shell ps \
895 | tr -d '\r' \
Mathias Agopian44583272013-08-27 14:15:50 -0700896 | \grep "$prepend$EXE$append" \
Daniel Sandler47e0a882013-07-30 13:23:52 -0400897 | sed -e 's/^[^ ]* *\([0-9]*\).*$/\1/'`
898 echo "$PID"
899 else
900 echo "usage: pid [--exact] <process name>"
901 return 255
902 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700903}
904
Christopher Tate744ee802009-11-12 15:33:08 -0800905# systemstack - dump the current stack trace of all threads in the system process
906# to the usual ANR traces file
907function systemstack()
908{
Jeff Sharkeyf5824372013-02-19 17:00:46 -0800909 stacks system_server
910}
911
912function stacks()
913{
914 if [[ $1 =~ ^[0-9]+$ ]] ; then
915 local PID="$1"
916 elif [ "$1" ] ; then
Jeff Brownb12c2e52013-08-19 15:14:16 -0700917 local PIDLIST="$(pid $1)"
918 if [[ $PIDLIST =~ ^[0-9]+$ ]] ; then
919 local PID="$PIDLIST"
920 elif [ "$PIDLIST" ] ; then
921 echo "more than one process: $1"
922 else
923 echo "no such process: $1"
924 fi
Jeff Sharkeyf5824372013-02-19 17:00:46 -0800925 else
926 echo "usage: stacks [pid|process name]"
927 fi
928
929 if [ "$PID" ] ; then
Jeff Brownb12c2e52013-08-19 15:14:16 -0700930 # Determine whether the process is native
931 if adb shell ls -l /proc/$PID/exe | grep -q /system/bin/app_process ; then
932 # Dump stacks of Dalvik process
933 local TRACES=/data/anr/traces.txt
934 local ORIG=/data/anr/traces.orig
935 local TMP=/data/anr/traces.tmp
Jeff Sharkeyf5824372013-02-19 17:00:46 -0800936
Jeff Brownb12c2e52013-08-19 15:14:16 -0700937 # Keep original traces to avoid clobbering
938 adb shell mv $TRACES $ORIG
Jeff Sharkeyf5824372013-02-19 17:00:46 -0800939
Jeff Brownb12c2e52013-08-19 15:14:16 -0700940 # Make sure we have a usable file
941 adb shell touch $TRACES
942 adb shell chmod 666 $TRACES
Jeff Sharkeyf5824372013-02-19 17:00:46 -0800943
Jeff Brownb12c2e52013-08-19 15:14:16 -0700944 # Dump stacks and wait for dump to finish
945 adb shell kill -3 $PID
946 adb shell notify $TRACES >/dev/null
Jeff Sharkeyf5824372013-02-19 17:00:46 -0800947
Jeff Brownb12c2e52013-08-19 15:14:16 -0700948 # Restore original stacks, and show current output
949 adb shell mv $TRACES $TMP
950 adb shell mv $ORIG $TRACES
951 adb shell cat $TMP
952 else
953 # Dump stacks of native process
Michael Wrightaeed7212014-06-19 19:58:12 -0700954 local USE64BIT="$(is64bit $PID)"
955 adb shell debuggerd$USE64BIT -b $PID
Jeff Brownb12c2e52013-08-19 15:14:16 -0700956 fi
Jeff Sharkeyf5824372013-02-19 17:00:46 -0800957 fi
Christopher Tate744ee802009-11-12 15:33:08 -0800958}
959
John Michelau50200252012-11-09 11:48:04 -0600960function gdbwrapper()
961{
Ben Chengfba67bf2014-02-25 10:27:07 -0800962 local GDB_CMD="$1"
963 shift 1
964 $GDB_CMD -x "$@"
John Michelau50200252012-11-09 11:48:04 -0600965}
966
Brigid Smith0a2712d2014-05-28 14:36:43 -0700967function get_symbols_directory()
968{
969 echo $(get_abs_build_var TARGET_OUT_UNSTRIPPED)
970}
971
Michael Wrightaeed7212014-06-19 19:58:12 -0700972# Read the ELF header from /proc/$PID/exe to determine if the process is
973# 64-bit.
Ben Chengfba67bf2014-02-25 10:27:07 -0800974function is64bit()
975{
976 local PID="$1"
977 if [ "$PID" ] ; then
Michael Wrightaeed7212014-06-19 19:58:12 -0700978 if [[ "$(adb shell cat /proc/$PID/exe | xxd -l 1 -s 4 -ps)" -eq "02" ]] ; then
Ben Chengfba67bf2014-02-25 10:27:07 -0800979 echo "64"
980 else
981 echo ""
982 fi
983 else
984 echo ""
985 fi
986}
987
988# gdbclient now determines whether the user wants to debug a 32-bit or 64-bit
989# executable, set up the approriate gdbserver, then invokes the proper host
990# gdb.
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700991function gdbclient()
992{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800993 local OUT_ROOT=$(get_abs_build_var PRODUCT_OUT)
994 local OUT_SYMBOLS=$(get_abs_build_var TARGET_OUT_UNSTRIPPED)
995 local OUT_SO_SYMBOLS=$(get_abs_build_var TARGET_OUT_SHARED_LIBRARIES_UNSTRIPPED)
Colin Cross3655a682014-05-22 11:59:10 -0700996 local OUT_VENDOR_SO_SYMBOLS=$(get_abs_build_var TARGET_OUT_VENDOR_SHARED_LIBRARIES_UNSTRIPPED)
Brigid Smith0a2712d2014-05-28 14:36:43 -0700997 local OUT_EXE_SYMBOLS=$(get_symbols_directory)
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800998 local PREBUILTS=$(get_abs_build_var ANDROID_PREBUILTS)
Nick Kralevich0ab21d32011-11-11 09:02:01 -0800999 local ARCH=$(get_build_var TARGET_ARCH)
1000 local GDB
1001 case "$ARCH" in
Nick Kralevich0ab21d32011-11-11 09:02:01 -08001002 arm) GDB=arm-linux-androideabi-gdb;;
Ben Chengfba67bf2014-02-25 10:27:07 -08001003 arm64) GDB=arm-linux-androideabi-gdb; GDB64=aarch64-linux-android-gdb;;
Duane Sand3c4fcd82014-07-22 14:34:00 -07001004 mips|mips64) GDB=mips64el-linux-android-gdb;;
Serban Constantinescu9b68fb22014-01-14 10:33:53 +00001005 x86) GDB=x86_64-linux-android-gdb;;
1006 x86_64) GDB=x86_64-linux-android-gdb;;
Nick Kralevich0ab21d32011-11-11 09:02:01 -08001007 *) echo "Unknown arch $ARCH"; return 1;;
1008 esac
1009
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001010 if [ "$OUT_ROOT" -a "$PREBUILTS" ]; then
1011 local EXE="$1"
1012 if [ "$EXE" ] ; then
1013 EXE=$1
Brigid Smith7a569a62014-06-20 14:12:12 -07001014 if [[ $EXE =~ ^[^/].* ]] ; then
1015 EXE="system/bin/"$EXE
1016 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001017 else
1018 EXE="app_process"
1019 fi
1020
1021 local PORT="$2"
1022 if [ "$PORT" ] ; then
1023 PORT=$2
1024 else
1025 PORT=":5039"
1026 fi
1027
Chris Craik20c136a2012-11-09 18:02:19 -08001028 local PID="$3"
1029 if [ "$PID" ] ; then
1030 if [[ ! "$PID" =~ ^[0-9]+$ ]] ; then
Grace Klobae9d04bf2011-04-30 11:04:05 -07001031 PID=`pid $3`
Chris Craik20c136a2012-11-09 18:02:19 -08001032 if [[ ! "$PID" =~ ^[0-9]+$ ]] ; then
1033 # that likely didn't work because of returning multiple processes
1034 # try again, filtering by root processes (don't contain colon)
Mathias Agopian44583272013-08-27 14:15:50 -07001035 PID=`adb shell ps | \grep $3 | \grep -v ":" | awk '{print $2}'`
Chris Craik20c136a2012-11-09 18:02:19 -08001036 if [[ ! "$PID" =~ ^[0-9]+$ ]]
1037 then
1038 echo "Couldn't resolve '$3' to single PID"
1039 return 1
1040 else
1041 echo ""
1042 echo "WARNING: multiple processes matching '$3' observed, using root process"
1043 echo ""
1044 fi
1045 fi
Grace Klobae9d04bf2011-04-30 11:04:05 -07001046 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001047 adb forward "tcp$PORT" "tcp$PORT"
Ben Chengfba67bf2014-02-25 10:27:07 -08001048 local USE64BIT="$(is64bit $PID)"
1049 adb shell gdbserver$USE64BIT $PORT --attach $PID &
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001050 sleep 2
1051 else
1052 echo ""
1053 echo "If you haven't done so already, do this first on the device:"
1054 echo " gdbserver $PORT /system/bin/$EXE"
1055 echo " or"
Chris Craik20c136a2012-11-09 18:02:19 -08001056 echo " gdbserver $PORT --attach <PID>"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001057 echo ""
1058 fi
1059
Colin Cross84480ad2014-04-10 12:51:39 -07001060 OUT_SO_SYMBOLS=$OUT_SO_SYMBOLS$USE64BIT
Colin Crossa58f8e02014-06-20 13:33:36 -07001061 OUT_VENDOR_SO_SYMBOLS=$OUT_VENDOR_SO_SYMBOLS$USE64BIT
Colin Cross84480ad2014-04-10 12:51:39 -07001062
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001063 echo >|"$OUT_ROOT/gdbclient.cmds" "set solib-absolute-prefix $OUT_SYMBOLS"
Colin Cross3655a682014-05-22 11:59:10 -07001064 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 -07001065 echo >>"$OUT_ROOT/gdbclient.cmds" "source $ANDROID_BUILD_TOP/development/scripts/gdb/dalvik.gdb"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001066 echo >>"$OUT_ROOT/gdbclient.cmds" "target remote $PORT"
1067 echo >>"$OUT_ROOT/gdbclient.cmds" ""
1068
Ben Chengfba67bf2014-02-25 10:27:07 -08001069 local WHICH_GDB=
1070 # 64-bit exe found
1071 if [ "$USE64BIT" != "" ] ; then
1072 WHICH_GDB=$ANDROID_TOOLCHAIN/$GDB64
1073 # 32-bit exe / 32-bit platform
1074 elif [ "$(get_build_var TARGET_2ND_ARCH)" = "" ]; then
1075 WHICH_GDB=$ANDROID_TOOLCHAIN/$GDB
1076 # 32-bit exe / 64-bit platform
1077 else
1078 WHICH_GDB=$ANDROID_TOOLCHAIN_2ND_ARCH/$GDB
1079 fi
Brigid Smith0a2712d2014-05-28 14:36:43 -07001080
Ben Chengfba67bf2014-02-25 10:27:07 -08001081 gdbwrapper $WHICH_GDB "$OUT_ROOT/gdbclient.cmds" "$OUT_EXE_SYMBOLS/$EXE"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001082 else
1083 echo "Unable to determine build system output dir."
1084 fi
1085
1086}
1087
1088case `uname -s` in
1089 Darwin)
1090 function sgrep()
1091 {
Jeff Brown46cbd202014-07-26 15:15:41 -07001092 find -E . -name .repo -prune -o -name .git -prune -o -type f -iregex '.*\.(c|h|cc|cpp|S|java|xml|sh|mk|aidl)' -print0 | xargs -0 grep --color -n "$@"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001093 }
1094
1095 ;;
1096 *)
1097 function sgrep()
1098 {
Jeff Brown46cbd202014-07-26 15:15:41 -07001099 find . -name .repo -prune -o -name .git -prune -o -type f -iregex '.*\.\(c\|h\|cc\|cpp\|S\|java\|xml\|sh\|mk\|aidl\)' -print0 | xargs -0 grep --color -n "$@"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001100 }
1101 ;;
1102esac
1103
Raghu Gandham8da43102012-07-25 19:57:22 -07001104function gettargetarch
1105{
1106 get_build_var TARGET_ARCH
1107}
1108
Jon Boekenoogencbca56f2014-04-07 10:57:38 -07001109function ggrep()
1110{
1111 find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -type f -name "*\.gradle" -print0 | xargs -0 grep --color -n "$@"
1112}
1113
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001114function jgrep()
1115{
Anatolii Shuba91c72d22013-07-05 16:09:25 +03001116 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 -07001117}
1118
1119function cgrep()
1120{
Anatolii Shuba91c72d22013-07-05 16:09:25 +03001121 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 -07001122}
1123
1124function resgrep()
1125{
Anatolii Shuba91c72d22013-07-05 16:09:25 +03001126 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 -07001127}
1128
Jeff Sharkey50b61e92013-03-08 10:20:47 -08001129function mangrep()
1130{
1131 find . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o -type f -name 'AndroidManifest.xml' -print0 | xargs -0 grep --color -n "$@"
1132}
1133
Alex Klyubinba5fc8e2013-05-06 14:11:48 -07001134function sepgrep()
1135{
1136 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 "$@"
1137}
1138
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001139case `uname -s` in
1140 Darwin)
1141 function mgrep()
1142 {
Ying Wang324c2b22012-08-17 15:03:20 -07001143 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 -07001144 }
1145
1146 function treegrep()
1147 {
Joe Onoratof50e84b2011-03-15 14:15:46 -07001148 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 -07001149 }
1150
1151 ;;
1152 *)
1153 function mgrep()
1154 {
Ying Wang324c2b22012-08-17 15:03:20 -07001155 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 -07001156 }
1157
1158 function treegrep()
1159 {
Joe Onoratof50e84b2011-03-15 14:15:46 -07001160 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 -07001161 }
1162
1163 ;;
1164esac
1165
1166function getprebuilt
1167{
1168 get_abs_build_var ANDROID_PREBUILTS
1169}
1170
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001171function tracedmdump()
1172{
1173 T=$(gettop)
1174 if [ ! "$T" ]; then
1175 echo "Couldn't locate the top of the tree. Try setting TOP."
1176 return
1177 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001178 local prebuiltdir=$(getprebuilt)
Raghu Gandham8da43102012-07-25 19:57:22 -07001179 local arch=$(gettargetarch)
1180 local KERNEL=$T/prebuilts/qemu-kernel/$arch/vmlinux-qemu
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001181
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001182 local TRACE=$1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001183 if [ ! "$TRACE" ] ; then
1184 echo "usage: tracedmdump tracename"
1185 return
1186 fi
1187
Jack Veenstra60116fc2009-04-09 18:12:34 -07001188 if [ ! -r "$KERNEL" ] ; then
1189 echo "Error: cannot find kernel: '$KERNEL'"
1190 return
1191 fi
1192
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001193 local BASETRACE=$(basename $TRACE)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001194 if [ "$BASETRACE" = "$TRACE" ] ; then
1195 TRACE=$ANDROID_PRODUCT_OUT/traces/$TRACE
1196 fi
1197
1198 echo "post-processing traces..."
1199 rm -f $TRACE/qtrace.dexlist
1200 post_trace $TRACE
1201 if [ $? -ne 0 ]; then
1202 echo "***"
1203 echo "*** Error: malformed trace. Did you remember to exit the emulator?"
1204 echo "***"
1205 return
1206 fi
1207 echo "generating dexlist output..."
1208 /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
1209 echo "generating dmtrace data..."
1210 q2dm -r $ANDROID_PRODUCT_OUT/symbols $TRACE $KERNEL $TRACE/dmtrace || return
1211 echo "generating html file..."
1212 dmtracedump -h $TRACE/dmtrace >| $TRACE/dmtrace.html || return
1213 echo "done, see $TRACE/dmtrace.html for details"
1214 echo "or run:"
1215 echo " traceview $TRACE/dmtrace"
1216}
1217
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001218# communicate with a running device or emulator, set up necessary state,
1219# and run the hat command.
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001220function runhat()
1221{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001222 # process standard adb options
1223 local adbTarget=""
Andy McFaddenb6289852010-07-12 08:00:19 -07001224 if [ "$1" = "-d" -o "$1" = "-e" ]; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001225 adbTarget=$1
1226 shift 1
Andy McFaddenb6289852010-07-12 08:00:19 -07001227 elif [ "$1" = "-s" ]; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001228 adbTarget="$1 $2"
1229 shift 2
1230 fi
1231 local adbOptions=${adbTarget}
Dianne Hackborn6b9549f2012-09-26 15:00:59 -07001232 #echo adbOptions = ${adbOptions}
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001233
1234 # runhat options
1235 local targetPid=$1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001236
1237 if [ "$targetPid" = "" ]; then
Andy McFaddenb6289852010-07-12 08:00:19 -07001238 echo "Usage: runhat [ -d | -e | -s serial ] target-pid"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001239 return
1240 fi
1241
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001242 # confirm hat is available
1243 if [ -z $(which hat) ]; then
1244 echo "hat is not available in this configuration."
1245 return
1246 fi
1247
Andy McFaddenb6289852010-07-12 08:00:19 -07001248 # issue "am" command to cause the hprof dump
Nick Kralevich9948b1e2014-07-18 15:45:38 -07001249 local devFile=/data/local/tmp/hprof-$targetPid
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001250 echo "Poking $targetPid and waiting for data..."
Dianne Hackborn6b9549f2012-09-26 15:00:59 -07001251 echo "Storing data at $devFile"
Andy McFaddenb6289852010-07-12 08:00:19 -07001252 adb ${adbOptions} shell am dumpheap $targetPid $devFile
The Android Open Source Project88b60792009-03-03 19:28:42 -08001253 echo "Press enter when logcat shows \"hprof: heap dump completed\""
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001254 echo -n "> "
1255 read
1256
The Android Open Source Project88b60792009-03-03 19:28:42 -08001257 local localFile=/tmp/$$-hprof
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001258
The Android Open Source Project88b60792009-03-03 19:28:42 -08001259 echo "Retrieving file $devFile..."
1260 adb ${adbOptions} pull $devFile $localFile
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001261
The Android Open Source Project88b60792009-03-03 19:28:42 -08001262 adb ${adbOptions} shell rm $devFile
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001263
The Android Open Source Project88b60792009-03-03 19:28:42 -08001264 echo "Running hat on $localFile"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001265 echo "View the output by pointing your browser at http://localhost:7000/"
1266 echo ""
Dianne Hackborn6e4e1bb2011-11-10 15:19:51 -08001267 hat -JXmx512m $localFile
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001268}
1269
1270function getbugreports()
1271{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001272 local reports=(`adb shell ls /sdcard/bugreports | tr -d '\r'`)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001273
1274 if [ ! "$reports" ]; then
1275 echo "Could not locate any bugreports."
1276 return
1277 fi
1278
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001279 local report
1280 for report in ${reports[@]}
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001281 do
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001282 echo "/sdcard/bugreports/${report}"
1283 adb pull /sdcard/bugreports/${report} ${report}
1284 gunzip ${report}
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001285 done
1286}
1287
Victoria Lease1b296b42012-08-21 15:44:06 -07001288function getsdcardpath()
1289{
1290 adb ${adbOptions} shell echo -n \$\{EXTERNAL_STORAGE\}
1291}
1292
1293function getscreenshotpath()
1294{
1295 echo "$(getsdcardpath)/Pictures/Screenshots"
1296}
1297
1298function getlastscreenshot()
1299{
1300 local screenshot_path=$(getscreenshotpath)
1301 local screenshot=`adb ${adbOptions} ls ${screenshot_path} | grep Screenshot_[0-9-]*.*\.png | sort -rk 3 | cut -d " " -f 4 | head -n 1`
1302 if [ "$screenshot" = "" ]; then
1303 echo "No screenshots found."
1304 return
1305 fi
1306 echo "${screenshot}"
1307 adb ${adbOptions} pull ${screenshot_path}/${screenshot}
1308}
1309
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001310function startviewserver()
1311{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001312 local port=4939
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001313 if [ $# -gt 0 ]; then
1314 port=$1
1315 fi
1316 adb shell service call window 1 i32 $port
1317}
1318
1319function stopviewserver()
1320{
1321 adb shell service call window 2
1322}
1323
1324function isviewserverstarted()
1325{
1326 adb shell service call window 3
1327}
1328
Romain Guyb84049a2010-10-04 16:56:11 -07001329function key_home()
1330{
1331 adb shell input keyevent 3
1332}
1333
1334function key_back()
1335{
1336 adb shell input keyevent 4
1337}
1338
1339function key_menu()
1340{
1341 adb shell input keyevent 82
1342}
1343
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001344function smoketest()
1345{
1346 if [ ! "$ANDROID_PRODUCT_OUT" ]; then
1347 echo "Couldn't locate output files. Try running 'lunch' first." >&2
1348 return
1349 fi
1350 T=$(gettop)
1351 if [ ! "$T" ]; then
1352 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
1353 return
1354 fi
1355
Ying Wang9cd17642012-12-13 10:52:07 -08001356 (\cd "$T" && mmm tests/SmokeTest) &&
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001357 adb uninstall com.android.smoketest > /dev/null &&
1358 adb uninstall com.android.smoketest.tests > /dev/null &&
1359 adb install $ANDROID_PRODUCT_OUT/data/app/SmokeTestApp.apk &&
1360 adb install $ANDROID_PRODUCT_OUT/data/app/SmokeTest.apk &&
1361 adb shell am instrument -w com.android.smoketest.tests/android.test.InstrumentationTestRunner
1362}
1363
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001364# simple shortcut to the runtest command
1365function runtest()
1366{
1367 T=$(gettop)
1368 if [ ! "$T" ]; then
1369 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
1370 return
1371 fi
Brett Chabot3fb149d2009-10-21 20:05:26 -07001372 ("$T"/development/testrunner/runtest.py $@)
Brett Chabot762748c2009-03-27 10:25:11 -07001373}
1374
The Android Open Source Project88b60792009-03-03 19:28:42 -08001375function godir () {
1376 if [[ -z "$1" ]]; then
1377 echo "Usage: godir <regex>"
1378 return
1379 fi
Brian Carlstromb9915a62010-01-29 16:39:32 -08001380 T=$(gettop)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001381 if [[ ! -f $T/filelist ]]; then
1382 echo -n "Creating index..."
Ying Wang9cd17642012-12-13 10:52:07 -08001383 (\cd $T; find . -wholename ./out -prune -o -wholename ./.repo -prune -o -type f > filelist)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001384 echo " Done"
1385 echo ""
1386 fi
1387 local lines
Jeff Hamilton293f9392011-11-18 17:15:25 -06001388 lines=($(\grep "$1" $T/filelist | sed -e 's/\/[^/]*$//' | sort | uniq))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001389 if [[ ${#lines[@]} = 0 ]]; then
1390 echo "Not found"
1391 return
1392 fi
1393 local pathname
1394 local choice
1395 if [[ ${#lines[@]} > 1 ]]; then
1396 while [[ -z "$pathname" ]]; do
1397 local index=1
1398 local line
1399 for line in ${lines[@]}; do
1400 printf "%6s %s\n" "[$index]" $line
Doug Zongker29034982011-04-22 08:16:56 -07001401 index=$(($index + 1))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001402 done
1403 echo
1404 echo -n "Select one: "
1405 unset choice
1406 read choice
1407 if [[ $choice -gt ${#lines[@]} || $choice -lt 1 ]]; then
1408 echo "Invalid choice"
1409 continue
1410 fi
Kan-Ru Chen07453762010-07-05 15:53:47 +08001411 pathname=${lines[$(($choice-1))]}
The Android Open Source Project88b60792009-03-03 19:28:42 -08001412 done
1413 else
The Android Open Source Project88b60792009-03-03 19:28:42 -08001414 pathname=${lines[0]}
1415 fi
Ying Wang9cd17642012-12-13 10:52:07 -08001416 \cd $T/$pathname
The Android Open Source Project88b60792009-03-03 19:28:42 -08001417}
1418
Narayan Kamath9260bba2014-01-17 10:05:25 +00001419# Force JAVA_HOME to point to java 1.7 or java 1.6 if it isn't already set.
1420#
1421# Note that the MacOS path for java 1.7 includes a minor revision number (sigh).
1422# For some reason, installing the JDK doesn't make it show up in the
1423# JavaVM.framework/Versions/1.7/ folder.
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -05001424function set_java_home() {
Narayan Kamath9260bba2014-01-17 10:05:25 +00001425 # Clear the existing JAVA_HOME value if we set it ourselves, so that
Narayan Kamathc84889b2014-04-01 14:16:26 +01001426 # we can reset it later, depending on the version of java the build
1427 # system needs.
Narayan Kamath9260bba2014-01-17 10:05:25 +00001428 #
1429 # If we don't do this, the JAVA_HOME value set by the first call to
1430 # build/envsetup.sh will persist forever.
1431 if [ -n "$ANDROID_SET_JAVA_HOME" ]; then
1432 export JAVA_HOME=""
1433 fi
1434
Andy McFaddenbd960942010-06-24 12:52:51 -07001435 if [ ! "$JAVA_HOME" ]; then
Narayan Kamathc84889b2014-04-01 14:16:26 +01001436 if [ -n "$LEGACY_USE_JAVA6" ]; then
Andy McFaddenbd960942010-06-24 12:52:51 -07001437 case `uname -s` in
1438 Darwin)
1439 export JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Versions/1.6/Home
1440 ;;
1441 *)
1442 export JAVA_HOME=/usr/lib/jvm/java-6-sun
1443 ;;
1444 esac
Narayan Kamath9260bba2014-01-17 10:05:25 +00001445 else
1446 case `uname -s` in
1447 Darwin)
Jason Parks13b2e192014-04-28 13:32:10 -05001448 export JAVA_HOME=$(/usr/libexec/java_home -v 1.7)
Narayan Kamath9260bba2014-01-17 10:05:25 +00001449 ;;
1450 *)
1451 export JAVA_HOME=/usr/lib/jvm/java-7-openjdk-amd64
1452 ;;
1453 esac
1454 fi
1455
1456 # Keep track of the fact that we set JAVA_HOME ourselves, so that
1457 # we can change it on the next envsetup.sh, if required.
1458 export ANDROID_SET_JAVA_HOME=true
Jeff Hamilton04be0d82010-06-07 15:03:54 -05001459 fi
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -05001460}
Jeff Hamilton04be0d82010-06-07 15:03:54 -05001461
Alex Rayf0d08eb2013-03-08 15:15:06 -08001462# Print colored exit condition
1463function pez {
Michael Wrighteb733842013-03-08 17:34:02 -08001464 "$@"
1465 local retval=$?
1466 if [ $retval -ne 0 ]
1467 then
1468 echo -e "\e[0;31mFAILURE\e[00m"
1469 else
1470 echo -e "\e[0;32mSUCCESS\e[00m"
1471 fi
1472 return $retval
Alex Rayf0d08eb2013-03-08 15:15:06 -08001473}
1474
Ying Wanged21d4c2014-08-24 22:14:19 -07001475function get_make_command()
1476{
1477 echo command make
1478}
1479
Ed Heylcc6be0a2014-06-18 14:55:58 -07001480function make()
1481{
1482 local start_time=$(date +"%s")
Ying Wanged21d4c2014-08-24 22:14:19 -07001483 $(get_make_command) "$@"
Ed Heylcc6be0a2014-06-18 14:55:58 -07001484 local ret=$?
1485 local end_time=$(date +"%s")
1486 local tdiff=$(($end_time-$start_time))
1487 local hours=$(($tdiff / 3600 ))
1488 local mins=$((($tdiff % 3600) / 60))
1489 local secs=$(($tdiff % 60))
1490 echo
1491 if [ $ret -eq 0 ] ; then
Ed Heylc6d11f82014-06-27 13:32:39 -07001492 echo -n -e "#### make completed successfully "
Ed Heylcc6be0a2014-06-18 14:55:58 -07001493 else
Ed Heylc6d11f82014-06-27 13:32:39 -07001494 echo -n -e "#### make failed to build some targets "
Ed Heylcc6be0a2014-06-18 14:55:58 -07001495 fi
1496 if [ $hours -gt 0 ] ; then
1497 printf "(%02g:%02g:%02g (hh:mm:ss))" $hours $mins $secs
1498 elif [ $mins -gt 0 ] ; then
1499 printf "(%02g:%02g (mm:ss))" $mins $secs
1500 elif [ $secs -gt 0 ] ; then
1501 printf "(%s seconds)" $secs
1502 fi
Ed Heylc6d11f82014-06-27 13:32:39 -07001503 echo -e " ####"
Ed Heylcc6be0a2014-06-18 14:55:58 -07001504 echo
1505 return $ret
1506}
1507
1508
1509
Raphael Moll70a86b02011-06-20 16:03:14 -07001510if [ "x$SHELL" != "x/bin/bash" ]; then
1511 case `ps -o command -p $$` in
1512 *bash*)
1513 ;;
1514 *)
1515 echo "WARNING: Only bash is supported, use of other shell would lead to erroneous results"
1516 ;;
1517 esac
1518fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001519
1520# Execute the contents of any vendorsetup.sh files we can find.
Ying Wang506410a2014-07-09 15:37:34 -07001521for f in `test -d device && find -L device -maxdepth 4 -name 'vendorsetup.sh' 2> /dev/null` \
1522 `test -d vendor && find -L vendor -maxdepth 4 -name 'vendorsetup.sh' 2> /dev/null`
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001523do
1524 echo "including $f"
1525 . $f
1526done
1527unset f
Kenny Root52aa81c2011-07-15 11:07:06 -07001528
1529addcompletions