blob: 754ecfa2f81ff3df0d93c77c2cf8d4b17c758622 [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
Brian Carlstroma5c4f172014-09-12 00:33:25 -0700632 # The following circumlocution ensures we remove symlinks from TOP.
633 (cd $TOP; PWD= /bin/pwd)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700634 else
635 if [ -f $TOPFILE ] ; then
Dan Bornsteind0b274d2009-11-24 15:48:50 -0800636 # The following circumlocution (repeated below as well) ensures
637 # that we record the true directory name and not one that is
638 # faked up with symlink names.
639 PWD= /bin/pwd
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700640 else
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800641 local HERE=$PWD
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700642 T=
643 while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do
Ying Wang9cd17642012-12-13 10:52:07 -0800644 \cd ..
synergyb112a402013-07-05 19:47:47 -0700645 T=`PWD= /bin/pwd -P`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700646 done
Ying Wang9cd17642012-12-13 10:52:07 -0800647 \cd $HERE
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700648 if [ -f "$T/$TOPFILE" ]; then
649 echo $T
650 fi
651 fi
652 fi
653}
654
Andrew Hsieh906cb782013-09-10 17:37:14 +0800655# Return driver for "make", if any (eg. static analyzer)
656function getdriver()
657{
658 local T="$1"
659 test "$WITH_STATIC_ANALYZER" = "0" && unset WITH_STATIC_ANALYZER
660 if [ -n "$WITH_STATIC_ANALYZER" ]; then
661 echo "\
Andrew Hsiehc4f7fba2014-03-03 16:53:17 +0800662$T/prebuilts/misc/linux-x86/analyzer/tools/scan-build/scan-build \
663--use-analyzer $T/prebuilts/misc/linux-x86/analyzer/bin/analyzer \
Andrew Hsieh906cb782013-09-10 17:37:14 +0800664--status-bugs \
665--top=$T"
666 fi
667}
668
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700669function m()
670{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800671 local T=$(gettop)
672 local DRV=$(getdriver $T)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700673 if [ "$T" ]; then
Andrew Hsieh906cb782013-09-10 17:37:14 +0800674 $DRV make -C $T -f build/core/main.mk $@
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700675 else
676 echo "Couldn't locate the top of the tree. Try setting TOP."
677 fi
678}
679
680function findmakefile()
681{
682 TOPFILE=build/core/envsetup.mk
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800683 local HERE=$PWD
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700684 T=
685 while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do
Ying Wang11b15b12012-10-11 15:05:07 -0700686 T=`PWD= /bin/pwd`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700687 if [ -f "$T/Android.mk" ]; then
688 echo $T/Android.mk
Ying Wang9cd17642012-12-13 10:52:07 -0800689 \cd $HERE
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700690 return
691 fi
Ying Wang9cd17642012-12-13 10:52:07 -0800692 \cd ..
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700693 done
Ying Wang9cd17642012-12-13 10:52:07 -0800694 \cd $HERE
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700695}
696
697function mm()
698{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800699 local T=$(gettop)
700 local DRV=$(getdriver $T)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700701 # If we're sitting in the root of the build tree, just do a
702 # normal make.
703 if [ -f build/core/envsetup.mk -a -f Makefile ]; then
Andrew Hsieh906cb782013-09-10 17:37:14 +0800704 $DRV make $@
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700705 else
706 # Find the closest Android.mk file.
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800707 local M=$(findmakefile)
Ying Wanga7deb082013-08-16 13:24:47 -0700708 local MODULES=
709 local GET_INSTALL_PATH=
710 local ARGS=
Robert Greenwalt3c794d72009-07-15 15:07:44 -0700711 # Remove the path to top as the makefilepath needs to be relative
712 local M=`echo $M|sed 's:'$T'/::'`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700713 if [ ! "$T" ]; then
714 echo "Couldn't locate the top of the tree. Try setting TOP."
715 elif [ ! "$M" ]; then
716 echo "Couldn't locate a makefile from the current directory."
717 else
Ying Wanga7deb082013-08-16 13:24:47 -0700718 for ARG in $@; do
719 case $ARG in
720 GET-INSTALL-PATH) GET_INSTALL_PATH=$ARG;;
721 esac
722 done
723 if [ -n "$GET_INSTALL_PATH" ]; then
724 MODULES=
725 ARGS=GET-INSTALL-PATH
726 else
727 MODULES=all_modules
728 ARGS=$@
729 fi
Andrew Hsieh246daf72013-09-10 18:07:23 -0700730 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 -0700731 fi
732 fi
733}
734
735function mmm()
736{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800737 local T=$(gettop)
738 local DRV=$(getdriver $T)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700739 if [ "$T" ]; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800740 local MAKEFILE=
Alon Albert68895a92011-11-30 12:40:19 -0800741 local MODULES=
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800742 local ARGS=
743 local DIR TO_CHOP
Ying Wanga7deb082013-08-16 13:24:47 -0700744 local GET_INSTALL_PATH=
The Android Open Source Project88b60792009-03-03 19:28:42 -0800745 local DASH_ARGS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^-.*$/')
746 local DIRS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^[^-].*$/')
747 for DIR in $DIRS ; do
Alon Albert68895a92011-11-30 12:40:19 -0800748 MODULES=`echo $DIR | sed -n -e 's/.*:\(.*$\)/\1/p' | sed 's/,/ /'`
749 if [ "$MODULES" = "" ]; then
750 MODULES=all_modules
751 fi
752 DIR=`echo $DIR | sed -e 's/:.*//' -e 's:/$::'`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700753 if [ -f $DIR/Android.mk ]; then
Ying Wanga7deb082013-08-16 13:24:47 -0700754 local TO_CHOP=`(\cd -P -- $T && pwd -P) | wc -c | tr -d ' '`
755 local TO_CHOP=`expr $TO_CHOP + 1`
756 local START=`PWD= /bin/pwd`
757 local MFILE=`echo $START | cut -c${TO_CHOP}-`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700758 if [ "$MFILE" = "" ] ; then
759 MFILE=$DIR/Android.mk
760 else
761 MFILE=$MFILE/$DIR/Android.mk
762 fi
763 MAKEFILE="$MAKEFILE $MFILE"
764 else
Ying Wanga7deb082013-08-16 13:24:47 -0700765 case $DIR in
766 showcommands | snod | dist | incrementaljavac) ARGS="$ARGS $DIR";;
767 GET-INSTALL-PATH) GET_INSTALL_PATH=$DIR;;
768 *) echo "No Android.mk in $DIR."; return 1;;
769 esac
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700770 fi
771 done
Ying Wanga7deb082013-08-16 13:24:47 -0700772 if [ -n "$GET_INSTALL_PATH" ]; then
773 ARGS=$GET_INSTALL_PATH
774 MODULES=
775 fi
Andrew Hsieh906cb782013-09-10 17:37:14 +0800776 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 -0700777 else
778 echo "Couldn't locate the top of the tree. Try setting TOP."
779 fi
780}
781
Ying Wangb607f7b2013-02-08 18:01:04 -0800782function mma()
783{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800784 local T=$(gettop)
785 local DRV=$(getdriver $T)
Ying Wangb607f7b2013-02-08 18:01:04 -0800786 if [ -f build/core/envsetup.mk -a -f Makefile ]; then
Andrew Hsieh906cb782013-09-10 17:37:14 +0800787 $DRV make $@
Ying Wangb607f7b2013-02-08 18:01:04 -0800788 else
Ying Wangb607f7b2013-02-08 18:01:04 -0800789 if [ ! "$T" ]; then
790 echo "Couldn't locate the top of the tree. Try setting TOP."
791 fi
792 local MY_PWD=`PWD= /bin/pwd|sed 's:'$T'/::'`
Andrew Hsieh906cb782013-09-10 17:37:14 +0800793 $DRV make -C $T -f build/core/main.mk $@ all_modules BUILD_MODULES_IN_PATHS="$MY_PWD"
Ying Wangb607f7b2013-02-08 18:01:04 -0800794 fi
795}
796
797function mmma()
798{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800799 local T=$(gettop)
800 local DRV=$(getdriver $T)
Ying Wangb607f7b2013-02-08 18:01:04 -0800801 if [ "$T" ]; then
802 local DASH_ARGS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^-.*$/')
803 local DIRS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^[^-].*$/')
804 local MY_PWD=`PWD= /bin/pwd`
805 if [ "$MY_PWD" = "$T" ]; then
806 MY_PWD=
807 else
808 MY_PWD=`echo $MY_PWD|sed 's:'$T'/::'`
809 fi
810 local DIR=
811 local MODULE_PATHS=
812 local ARGS=
813 for DIR in $DIRS ; do
814 if [ -d $DIR ]; then
815 if [ "$MY_PWD" = "" ]; then
816 MODULE_PATHS="$MODULE_PATHS $DIR"
817 else
818 MODULE_PATHS="$MODULE_PATHS $MY_PWD/$DIR"
819 fi
820 else
821 case $DIR in
822 showcommands | snod | dist | incrementaljavac) ARGS="$ARGS $DIR";;
823 *) echo "Couldn't find directory $DIR"; return 1;;
824 esac
825 fi
826 done
Andrew Hsieh906cb782013-09-10 17:37:14 +0800827 $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 -0800828 else
829 echo "Couldn't locate the top of the tree. Try setting TOP."
830 fi
831}
832
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700833function croot()
834{
835 T=$(gettop)
836 if [ "$T" ]; then
Ying Wang9cd17642012-12-13 10:52:07 -0800837 \cd $(gettop)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700838 else
839 echo "Couldn't locate the top of the tree. Try setting TOP."
840 fi
841}
842
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700843function cproj()
844{
845 TOPFILE=build/core/envsetup.mk
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700846 local HERE=$PWD
847 T=
848 while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do
849 T=$PWD
850 if [ -f "$T/Android.mk" ]; then
Ying Wang9cd17642012-12-13 10:52:07 -0800851 \cd $T
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700852 return
853 fi
Ying Wang9cd17642012-12-13 10:52:07 -0800854 \cd ..
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700855 done
Ying Wang9cd17642012-12-13 10:52:07 -0800856 \cd $HERE
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700857 echo "can't find Android.mk"
858}
859
Daniel Sandler47e0a882013-07-30 13:23:52 -0400860# simplified version of ps; output in the form
861# <pid> <procname>
862function qpid() {
863 local prepend=''
864 local append=''
865 if [ "$1" = "--exact" ]; then
866 prepend=' '
867 append='$'
868 shift
869 elif [ "$1" = "--help" -o "$1" = "-h" ]; then
870 echo "usage: qpid [[--exact] <process name|pid>"
871 return 255
872 fi
873
874 local EXE="$1"
875 if [ "$EXE" ] ; then
Mathias Agopian44583272013-08-27 14:15:50 -0700876 qpid | \grep "$prepend$EXE$append"
Daniel Sandler47e0a882013-07-30 13:23:52 -0400877 else
878 adb shell ps \
879 | tr -d '\r' \
880 | sed -e 1d -e 's/^[^ ]* *\([0-9]*\).* \([^ ]*\)$/\1 \2/'
881 fi
882}
883
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700884function pid()
885{
Daniel Sandler47e0a882013-07-30 13:23:52 -0400886 local prepend=''
887 local append=''
888 if [ "$1" = "--exact" ]; then
889 prepend=' '
890 append='$'
891 shift
892 fi
893 local EXE="$1"
894 if [ "$EXE" ] ; then
895 local PID=`adb shell ps \
896 | tr -d '\r' \
Mathias Agopian44583272013-08-27 14:15:50 -0700897 | \grep "$prepend$EXE$append" \
Daniel Sandler47e0a882013-07-30 13:23:52 -0400898 | sed -e 's/^[^ ]* *\([0-9]*\).*$/\1/'`
899 echo "$PID"
900 else
901 echo "usage: pid [--exact] <process name>"
902 return 255
903 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700904}
905
Christopher Tate744ee802009-11-12 15:33:08 -0800906# systemstack - dump the current stack trace of all threads in the system process
907# to the usual ANR traces file
908function systemstack()
909{
Jeff Sharkeyf5824372013-02-19 17:00:46 -0800910 stacks system_server
911}
912
913function stacks()
914{
915 if [[ $1 =~ ^[0-9]+$ ]] ; then
916 local PID="$1"
917 elif [ "$1" ] ; then
Jeff Brownb12c2e52013-08-19 15:14:16 -0700918 local PIDLIST="$(pid $1)"
919 if [[ $PIDLIST =~ ^[0-9]+$ ]] ; then
920 local PID="$PIDLIST"
921 elif [ "$PIDLIST" ] ; then
922 echo "more than one process: $1"
923 else
924 echo "no such process: $1"
925 fi
Jeff Sharkeyf5824372013-02-19 17:00:46 -0800926 else
927 echo "usage: stacks [pid|process name]"
928 fi
929
930 if [ "$PID" ] ; then
Jeff Brownb12c2e52013-08-19 15:14:16 -0700931 # Determine whether the process is native
932 if adb shell ls -l /proc/$PID/exe | grep -q /system/bin/app_process ; then
933 # Dump stacks of Dalvik process
934 local TRACES=/data/anr/traces.txt
935 local ORIG=/data/anr/traces.orig
936 local TMP=/data/anr/traces.tmp
Jeff Sharkeyf5824372013-02-19 17:00:46 -0800937
Jeff Brownb12c2e52013-08-19 15:14:16 -0700938 # Keep original traces to avoid clobbering
939 adb shell mv $TRACES $ORIG
Jeff Sharkeyf5824372013-02-19 17:00:46 -0800940
Jeff Brownb12c2e52013-08-19 15:14:16 -0700941 # Make sure we have a usable file
942 adb shell touch $TRACES
943 adb shell chmod 666 $TRACES
Jeff Sharkeyf5824372013-02-19 17:00:46 -0800944
Jeff Brownb12c2e52013-08-19 15:14:16 -0700945 # Dump stacks and wait for dump to finish
946 adb shell kill -3 $PID
947 adb shell notify $TRACES >/dev/null
Jeff Sharkeyf5824372013-02-19 17:00:46 -0800948
Jeff Brownb12c2e52013-08-19 15:14:16 -0700949 # Restore original stacks, and show current output
950 adb shell mv $TRACES $TMP
951 adb shell mv $ORIG $TRACES
952 adb shell cat $TMP
953 else
954 # Dump stacks of native process
Michael Wrightaeed7212014-06-19 19:58:12 -0700955 local USE64BIT="$(is64bit $PID)"
956 adb shell debuggerd$USE64BIT -b $PID
Jeff Brownb12c2e52013-08-19 15:14:16 -0700957 fi
Jeff Sharkeyf5824372013-02-19 17:00:46 -0800958 fi
Christopher Tate744ee802009-11-12 15:33:08 -0800959}
960
John Michelau50200252012-11-09 11:48:04 -0600961function gdbwrapper()
962{
Ben Chengfba67bf2014-02-25 10:27:07 -0800963 local GDB_CMD="$1"
964 shift 1
965 $GDB_CMD -x "$@"
John Michelau50200252012-11-09 11:48:04 -0600966}
967
Brigid Smith0a2712d2014-05-28 14:36:43 -0700968function get_symbols_directory()
969{
970 echo $(get_abs_build_var TARGET_OUT_UNSTRIPPED)
971}
972
Michael Wrightaeed7212014-06-19 19:58:12 -0700973# Read the ELF header from /proc/$PID/exe to determine if the process is
974# 64-bit.
Ben Chengfba67bf2014-02-25 10:27:07 -0800975function is64bit()
976{
977 local PID="$1"
978 if [ "$PID" ] ; then
Michael Wrightaeed7212014-06-19 19:58:12 -0700979 if [[ "$(adb shell cat /proc/$PID/exe | xxd -l 1 -s 4 -ps)" -eq "02" ]] ; then
Ben Chengfba67bf2014-02-25 10:27:07 -0800980 echo "64"
981 else
982 echo ""
983 fi
984 else
985 echo ""
986 fi
987}
988
989# gdbclient now determines whether the user wants to debug a 32-bit or 64-bit
990# executable, set up the approriate gdbserver, then invokes the proper host
991# gdb.
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700992function gdbclient()
993{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800994 local OUT_ROOT=$(get_abs_build_var PRODUCT_OUT)
995 local OUT_SYMBOLS=$(get_abs_build_var TARGET_OUT_UNSTRIPPED)
996 local OUT_SO_SYMBOLS=$(get_abs_build_var TARGET_OUT_SHARED_LIBRARIES_UNSTRIPPED)
Colin Cross3655a682014-05-22 11:59:10 -0700997 local OUT_VENDOR_SO_SYMBOLS=$(get_abs_build_var TARGET_OUT_VENDOR_SHARED_LIBRARIES_UNSTRIPPED)
Brigid Smith0a2712d2014-05-28 14:36:43 -0700998 local OUT_EXE_SYMBOLS=$(get_symbols_directory)
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800999 local PREBUILTS=$(get_abs_build_var ANDROID_PREBUILTS)
Nick Kralevich0ab21d32011-11-11 09:02:01 -08001000 local ARCH=$(get_build_var TARGET_ARCH)
1001 local GDB
1002 case "$ARCH" in
Nick Kralevich0ab21d32011-11-11 09:02:01 -08001003 arm) GDB=arm-linux-androideabi-gdb;;
Ben Chengfba67bf2014-02-25 10:27:07 -08001004 arm64) GDB=arm-linux-androideabi-gdb; GDB64=aarch64-linux-android-gdb;;
Duane Sand3c4fcd82014-07-22 14:34:00 -07001005 mips|mips64) GDB=mips64el-linux-android-gdb;;
Serban Constantinescu9b68fb22014-01-14 10:33:53 +00001006 x86) GDB=x86_64-linux-android-gdb;;
1007 x86_64) GDB=x86_64-linux-android-gdb;;
Nick Kralevich0ab21d32011-11-11 09:02:01 -08001008 *) echo "Unknown arch $ARCH"; return 1;;
1009 esac
1010
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001011 if [ "$OUT_ROOT" -a "$PREBUILTS" ]; then
1012 local EXE="$1"
1013 if [ "$EXE" ] ; then
1014 EXE=$1
Brigid Smith7a569a62014-06-20 14:12:12 -07001015 if [[ $EXE =~ ^[^/].* ]] ; then
1016 EXE="system/bin/"$EXE
1017 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001018 else
1019 EXE="app_process"
1020 fi
1021
1022 local PORT="$2"
1023 if [ "$PORT" ] ; then
1024 PORT=$2
1025 else
1026 PORT=":5039"
1027 fi
1028
Chris Craik20c136a2012-11-09 18:02:19 -08001029 local PID="$3"
1030 if [ "$PID" ] ; then
1031 if [[ ! "$PID" =~ ^[0-9]+$ ]] ; then
Grace Klobae9d04bf2011-04-30 11:04:05 -07001032 PID=`pid $3`
Chris Craik20c136a2012-11-09 18:02:19 -08001033 if [[ ! "$PID" =~ ^[0-9]+$ ]] ; then
1034 # that likely didn't work because of returning multiple processes
1035 # try again, filtering by root processes (don't contain colon)
Mathias Agopian44583272013-08-27 14:15:50 -07001036 PID=`adb shell ps | \grep $3 | \grep -v ":" | awk '{print $2}'`
Chris Craik20c136a2012-11-09 18:02:19 -08001037 if [[ ! "$PID" =~ ^[0-9]+$ ]]
1038 then
1039 echo "Couldn't resolve '$3' to single PID"
1040 return 1
1041 else
1042 echo ""
1043 echo "WARNING: multiple processes matching '$3' observed, using root process"
1044 echo ""
1045 fi
1046 fi
Grace Klobae9d04bf2011-04-30 11:04:05 -07001047 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001048 adb forward "tcp$PORT" "tcp$PORT"
Ben Chengfba67bf2014-02-25 10:27:07 -08001049 local USE64BIT="$(is64bit $PID)"
1050 adb shell gdbserver$USE64BIT $PORT --attach $PID &
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001051 sleep 2
1052 else
1053 echo ""
1054 echo "If you haven't done so already, do this first on the device:"
1055 echo " gdbserver $PORT /system/bin/$EXE"
1056 echo " or"
Chris Craik20c136a2012-11-09 18:02:19 -08001057 echo " gdbserver $PORT --attach <PID>"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001058 echo ""
1059 fi
1060
Colin Cross84480ad2014-04-10 12:51:39 -07001061 OUT_SO_SYMBOLS=$OUT_SO_SYMBOLS$USE64BIT
Colin Crossa58f8e02014-06-20 13:33:36 -07001062 OUT_VENDOR_SO_SYMBOLS=$OUT_VENDOR_SO_SYMBOLS$USE64BIT
Colin Cross84480ad2014-04-10 12:51:39 -07001063
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001064 echo >|"$OUT_ROOT/gdbclient.cmds" "set solib-absolute-prefix $OUT_SYMBOLS"
Colin Cross3655a682014-05-22 11:59:10 -07001065 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 -07001066 echo >>"$OUT_ROOT/gdbclient.cmds" "source $ANDROID_BUILD_TOP/development/scripts/gdb/dalvik.gdb"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001067 echo >>"$OUT_ROOT/gdbclient.cmds" "target remote $PORT"
1068 echo >>"$OUT_ROOT/gdbclient.cmds" ""
1069
Ben Chengfba67bf2014-02-25 10:27:07 -08001070 local WHICH_GDB=
1071 # 64-bit exe found
1072 if [ "$USE64BIT" != "" ] ; then
1073 WHICH_GDB=$ANDROID_TOOLCHAIN/$GDB64
1074 # 32-bit exe / 32-bit platform
1075 elif [ "$(get_build_var TARGET_2ND_ARCH)" = "" ]; then
1076 WHICH_GDB=$ANDROID_TOOLCHAIN/$GDB
1077 # 32-bit exe / 64-bit platform
1078 else
1079 WHICH_GDB=$ANDROID_TOOLCHAIN_2ND_ARCH/$GDB
1080 fi
Brigid Smith0a2712d2014-05-28 14:36:43 -07001081
Ben Chengfba67bf2014-02-25 10:27:07 -08001082 gdbwrapper $WHICH_GDB "$OUT_ROOT/gdbclient.cmds" "$OUT_EXE_SYMBOLS/$EXE"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001083 else
1084 echo "Unable to determine build system output dir."
1085 fi
1086
1087}
1088
1089case `uname -s` in
1090 Darwin)
1091 function sgrep()
1092 {
Jeff Brown46cbd202014-07-26 15:15:41 -07001093 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 -07001094 }
1095
1096 ;;
1097 *)
1098 function sgrep()
1099 {
Jeff Brown46cbd202014-07-26 15:15:41 -07001100 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 -07001101 }
1102 ;;
1103esac
1104
Raghu Gandham8da43102012-07-25 19:57:22 -07001105function gettargetarch
1106{
1107 get_build_var TARGET_ARCH
1108}
1109
Jon Boekenoogencbca56f2014-04-07 10:57:38 -07001110function ggrep()
1111{
1112 find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -type f -name "*\.gradle" -print0 | xargs -0 grep --color -n "$@"
1113}
1114
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001115function jgrep()
1116{
Anatolii Shuba91c72d22013-07-05 16:09:25 +03001117 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 -07001118}
1119
1120function cgrep()
1121{
Anatolii Shuba91c72d22013-07-05 16:09:25 +03001122 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 -07001123}
1124
1125function resgrep()
1126{
Anatolii Shuba91c72d22013-07-05 16:09:25 +03001127 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 -07001128}
1129
Jeff Sharkey50b61e92013-03-08 10:20:47 -08001130function mangrep()
1131{
1132 find . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o -type f -name 'AndroidManifest.xml' -print0 | xargs -0 grep --color -n "$@"
1133}
1134
Alex Klyubinba5fc8e2013-05-06 14:11:48 -07001135function sepgrep()
1136{
1137 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 "$@"
1138}
1139
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001140case `uname -s` in
1141 Darwin)
1142 function mgrep()
1143 {
Ying Wang324c2b22012-08-17 15:03:20 -07001144 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 -07001145 }
1146
1147 function treegrep()
1148 {
Joe Onoratof50e84b2011-03-15 14:15:46 -07001149 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 -07001150 }
1151
1152 ;;
1153 *)
1154 function mgrep()
1155 {
Ying Wang324c2b22012-08-17 15:03:20 -07001156 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 -07001157 }
1158
1159 function treegrep()
1160 {
Joe Onoratof50e84b2011-03-15 14:15:46 -07001161 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 -07001162 }
1163
1164 ;;
1165esac
1166
1167function getprebuilt
1168{
1169 get_abs_build_var ANDROID_PREBUILTS
1170}
1171
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001172function tracedmdump()
1173{
1174 T=$(gettop)
1175 if [ ! "$T" ]; then
1176 echo "Couldn't locate the top of the tree. Try setting TOP."
1177 return
1178 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001179 local prebuiltdir=$(getprebuilt)
Raghu Gandham8da43102012-07-25 19:57:22 -07001180 local arch=$(gettargetarch)
1181 local KERNEL=$T/prebuilts/qemu-kernel/$arch/vmlinux-qemu
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001182
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001183 local TRACE=$1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001184 if [ ! "$TRACE" ] ; then
1185 echo "usage: tracedmdump tracename"
1186 return
1187 fi
1188
Jack Veenstra60116fc2009-04-09 18:12:34 -07001189 if [ ! -r "$KERNEL" ] ; then
1190 echo "Error: cannot find kernel: '$KERNEL'"
1191 return
1192 fi
1193
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001194 local BASETRACE=$(basename $TRACE)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001195 if [ "$BASETRACE" = "$TRACE" ] ; then
1196 TRACE=$ANDROID_PRODUCT_OUT/traces/$TRACE
1197 fi
1198
1199 echo "post-processing traces..."
1200 rm -f $TRACE/qtrace.dexlist
1201 post_trace $TRACE
1202 if [ $? -ne 0 ]; then
1203 echo "***"
1204 echo "*** Error: malformed trace. Did you remember to exit the emulator?"
1205 echo "***"
1206 return
1207 fi
1208 echo "generating dexlist output..."
1209 /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
1210 echo "generating dmtrace data..."
1211 q2dm -r $ANDROID_PRODUCT_OUT/symbols $TRACE $KERNEL $TRACE/dmtrace || return
1212 echo "generating html file..."
1213 dmtracedump -h $TRACE/dmtrace >| $TRACE/dmtrace.html || return
1214 echo "done, see $TRACE/dmtrace.html for details"
1215 echo "or run:"
1216 echo " traceview $TRACE/dmtrace"
1217}
1218
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001219# communicate with a running device or emulator, set up necessary state,
1220# and run the hat command.
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001221function runhat()
1222{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001223 # process standard adb options
1224 local adbTarget=""
Andy McFaddenb6289852010-07-12 08:00:19 -07001225 if [ "$1" = "-d" -o "$1" = "-e" ]; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001226 adbTarget=$1
1227 shift 1
Andy McFaddenb6289852010-07-12 08:00:19 -07001228 elif [ "$1" = "-s" ]; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001229 adbTarget="$1 $2"
1230 shift 2
1231 fi
1232 local adbOptions=${adbTarget}
Dianne Hackborn6b9549f2012-09-26 15:00:59 -07001233 #echo adbOptions = ${adbOptions}
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001234
1235 # runhat options
1236 local targetPid=$1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001237
1238 if [ "$targetPid" = "" ]; then
Andy McFaddenb6289852010-07-12 08:00:19 -07001239 echo "Usage: runhat [ -d | -e | -s serial ] target-pid"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001240 return
1241 fi
1242
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001243 # confirm hat is available
1244 if [ -z $(which hat) ]; then
1245 echo "hat is not available in this configuration."
1246 return
1247 fi
1248
Andy McFaddenb6289852010-07-12 08:00:19 -07001249 # issue "am" command to cause the hprof dump
Nick Kralevich9948b1e2014-07-18 15:45:38 -07001250 local devFile=/data/local/tmp/hprof-$targetPid
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001251 echo "Poking $targetPid and waiting for data..."
Dianne Hackborn6b9549f2012-09-26 15:00:59 -07001252 echo "Storing data at $devFile"
Andy McFaddenb6289852010-07-12 08:00:19 -07001253 adb ${adbOptions} shell am dumpheap $targetPid $devFile
The Android Open Source Project88b60792009-03-03 19:28:42 -08001254 echo "Press enter when logcat shows \"hprof: heap dump completed\""
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001255 echo -n "> "
1256 read
1257
The Android Open Source Project88b60792009-03-03 19:28:42 -08001258 local localFile=/tmp/$$-hprof
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001259
The Android Open Source Project88b60792009-03-03 19:28:42 -08001260 echo "Retrieving file $devFile..."
1261 adb ${adbOptions} pull $devFile $localFile
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001262
The Android Open Source Project88b60792009-03-03 19:28:42 -08001263 adb ${adbOptions} shell rm $devFile
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001264
The Android Open Source Project88b60792009-03-03 19:28:42 -08001265 echo "Running hat on $localFile"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001266 echo "View the output by pointing your browser at http://localhost:7000/"
1267 echo ""
Dianne Hackborn6e4e1bb2011-11-10 15:19:51 -08001268 hat -JXmx512m $localFile
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001269}
1270
1271function getbugreports()
1272{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001273 local reports=(`adb shell ls /sdcard/bugreports | tr -d '\r'`)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001274
1275 if [ ! "$reports" ]; then
1276 echo "Could not locate any bugreports."
1277 return
1278 fi
1279
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001280 local report
1281 for report in ${reports[@]}
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001282 do
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001283 echo "/sdcard/bugreports/${report}"
1284 adb pull /sdcard/bugreports/${report} ${report}
1285 gunzip ${report}
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001286 done
1287}
1288
Victoria Lease1b296b42012-08-21 15:44:06 -07001289function getsdcardpath()
1290{
1291 adb ${adbOptions} shell echo -n \$\{EXTERNAL_STORAGE\}
1292}
1293
1294function getscreenshotpath()
1295{
1296 echo "$(getsdcardpath)/Pictures/Screenshots"
1297}
1298
1299function getlastscreenshot()
1300{
1301 local screenshot_path=$(getscreenshotpath)
1302 local screenshot=`adb ${adbOptions} ls ${screenshot_path} | grep Screenshot_[0-9-]*.*\.png | sort -rk 3 | cut -d " " -f 4 | head -n 1`
1303 if [ "$screenshot" = "" ]; then
1304 echo "No screenshots found."
1305 return
1306 fi
1307 echo "${screenshot}"
1308 adb ${adbOptions} pull ${screenshot_path}/${screenshot}
1309}
1310
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001311function startviewserver()
1312{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001313 local port=4939
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001314 if [ $# -gt 0 ]; then
1315 port=$1
1316 fi
1317 adb shell service call window 1 i32 $port
1318}
1319
1320function stopviewserver()
1321{
1322 adb shell service call window 2
1323}
1324
1325function isviewserverstarted()
1326{
1327 adb shell service call window 3
1328}
1329
Romain Guyb84049a2010-10-04 16:56:11 -07001330function key_home()
1331{
1332 adb shell input keyevent 3
1333}
1334
1335function key_back()
1336{
1337 adb shell input keyevent 4
1338}
1339
1340function key_menu()
1341{
1342 adb shell input keyevent 82
1343}
1344
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001345function smoketest()
1346{
1347 if [ ! "$ANDROID_PRODUCT_OUT" ]; then
1348 echo "Couldn't locate output files. Try running 'lunch' first." >&2
1349 return
1350 fi
1351 T=$(gettop)
1352 if [ ! "$T" ]; then
1353 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
1354 return
1355 fi
1356
Ying Wang9cd17642012-12-13 10:52:07 -08001357 (\cd "$T" && mmm tests/SmokeTest) &&
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001358 adb uninstall com.android.smoketest > /dev/null &&
1359 adb uninstall com.android.smoketest.tests > /dev/null &&
1360 adb install $ANDROID_PRODUCT_OUT/data/app/SmokeTestApp.apk &&
1361 adb install $ANDROID_PRODUCT_OUT/data/app/SmokeTest.apk &&
1362 adb shell am instrument -w com.android.smoketest.tests/android.test.InstrumentationTestRunner
1363}
1364
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001365# simple shortcut to the runtest command
1366function runtest()
1367{
1368 T=$(gettop)
1369 if [ ! "$T" ]; then
1370 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
1371 return
1372 fi
Brett Chabot3fb149d2009-10-21 20:05:26 -07001373 ("$T"/development/testrunner/runtest.py $@)
Brett Chabot762748c2009-03-27 10:25:11 -07001374}
1375
The Android Open Source Project88b60792009-03-03 19:28:42 -08001376function godir () {
1377 if [[ -z "$1" ]]; then
1378 echo "Usage: godir <regex>"
1379 return
1380 fi
Brian Carlstromb9915a62010-01-29 16:39:32 -08001381 T=$(gettop)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001382 if [[ ! -f $T/filelist ]]; then
1383 echo -n "Creating index..."
Ying Wang9cd17642012-12-13 10:52:07 -08001384 (\cd $T; find . -wholename ./out -prune -o -wholename ./.repo -prune -o -type f > filelist)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001385 echo " Done"
1386 echo ""
1387 fi
1388 local lines
Jeff Hamilton293f9392011-11-18 17:15:25 -06001389 lines=($(\grep "$1" $T/filelist | sed -e 's/\/[^/]*$//' | sort | uniq))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001390 if [[ ${#lines[@]} = 0 ]]; then
1391 echo "Not found"
1392 return
1393 fi
1394 local pathname
1395 local choice
1396 if [[ ${#lines[@]} > 1 ]]; then
1397 while [[ -z "$pathname" ]]; do
1398 local index=1
1399 local line
1400 for line in ${lines[@]}; do
1401 printf "%6s %s\n" "[$index]" $line
Doug Zongker29034982011-04-22 08:16:56 -07001402 index=$(($index + 1))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001403 done
1404 echo
1405 echo -n "Select one: "
1406 unset choice
1407 read choice
1408 if [[ $choice -gt ${#lines[@]} || $choice -lt 1 ]]; then
1409 echo "Invalid choice"
1410 continue
1411 fi
Kan-Ru Chen07453762010-07-05 15:53:47 +08001412 pathname=${lines[$(($choice-1))]}
The Android Open Source Project88b60792009-03-03 19:28:42 -08001413 done
1414 else
The Android Open Source Project88b60792009-03-03 19:28:42 -08001415 pathname=${lines[0]}
1416 fi
Ying Wang9cd17642012-12-13 10:52:07 -08001417 \cd $T/$pathname
The Android Open Source Project88b60792009-03-03 19:28:42 -08001418}
1419
Narayan Kamath9260bba2014-01-17 10:05:25 +00001420# Force JAVA_HOME to point to java 1.7 or java 1.6 if it isn't already set.
1421#
1422# Note that the MacOS path for java 1.7 includes a minor revision number (sigh).
1423# For some reason, installing the JDK doesn't make it show up in the
1424# JavaVM.framework/Versions/1.7/ folder.
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -05001425function set_java_home() {
Narayan Kamath9260bba2014-01-17 10:05:25 +00001426 # Clear the existing JAVA_HOME value if we set it ourselves, so that
Narayan Kamathc84889b2014-04-01 14:16:26 +01001427 # we can reset it later, depending on the version of java the build
1428 # system needs.
Narayan Kamath9260bba2014-01-17 10:05:25 +00001429 #
1430 # If we don't do this, the JAVA_HOME value set by the first call to
1431 # build/envsetup.sh will persist forever.
1432 if [ -n "$ANDROID_SET_JAVA_HOME" ]; then
1433 export JAVA_HOME=""
1434 fi
1435
Andy McFaddenbd960942010-06-24 12:52:51 -07001436 if [ ! "$JAVA_HOME" ]; then
Narayan Kamathc84889b2014-04-01 14:16:26 +01001437 if [ -n "$LEGACY_USE_JAVA6" ]; then
Andy McFaddenbd960942010-06-24 12:52:51 -07001438 case `uname -s` in
1439 Darwin)
1440 export JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Versions/1.6/Home
1441 ;;
1442 *)
1443 export JAVA_HOME=/usr/lib/jvm/java-6-sun
1444 ;;
1445 esac
Narayan Kamath9260bba2014-01-17 10:05:25 +00001446 else
1447 case `uname -s` in
1448 Darwin)
Jason Parks13b2e192014-04-28 13:32:10 -05001449 export JAVA_HOME=$(/usr/libexec/java_home -v 1.7)
Narayan Kamath9260bba2014-01-17 10:05:25 +00001450 ;;
1451 *)
1452 export JAVA_HOME=/usr/lib/jvm/java-7-openjdk-amd64
1453 ;;
1454 esac
1455 fi
1456
1457 # Keep track of the fact that we set JAVA_HOME ourselves, so that
1458 # we can change it on the next envsetup.sh, if required.
1459 export ANDROID_SET_JAVA_HOME=true
Jeff Hamilton04be0d82010-06-07 15:03:54 -05001460 fi
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -05001461}
Jeff Hamilton04be0d82010-06-07 15:03:54 -05001462
Alex Rayf0d08eb2013-03-08 15:15:06 -08001463# Print colored exit condition
1464function pez {
Michael Wrighteb733842013-03-08 17:34:02 -08001465 "$@"
1466 local retval=$?
1467 if [ $retval -ne 0 ]
1468 then
1469 echo -e "\e[0;31mFAILURE\e[00m"
1470 else
1471 echo -e "\e[0;32mSUCCESS\e[00m"
1472 fi
1473 return $retval
Alex Rayf0d08eb2013-03-08 15:15:06 -08001474}
1475
Ying Wanged21d4c2014-08-24 22:14:19 -07001476function get_make_command()
1477{
1478 echo command make
1479}
1480
Ed Heylcc6be0a2014-06-18 14:55:58 -07001481function make()
1482{
1483 local start_time=$(date +"%s")
Ying Wanged21d4c2014-08-24 22:14:19 -07001484 $(get_make_command) "$@"
Ed Heylcc6be0a2014-06-18 14:55:58 -07001485 local ret=$?
1486 local end_time=$(date +"%s")
1487 local tdiff=$(($end_time-$start_time))
1488 local hours=$(($tdiff / 3600 ))
1489 local mins=$((($tdiff % 3600) / 60))
1490 local secs=$(($tdiff % 60))
1491 echo
1492 if [ $ret -eq 0 ] ; then
Ed Heylc6d11f82014-06-27 13:32:39 -07001493 echo -n -e "#### make completed successfully "
Ed Heylcc6be0a2014-06-18 14:55:58 -07001494 else
Ed Heylc6d11f82014-06-27 13:32:39 -07001495 echo -n -e "#### make failed to build some targets "
Ed Heylcc6be0a2014-06-18 14:55:58 -07001496 fi
1497 if [ $hours -gt 0 ] ; then
1498 printf "(%02g:%02g:%02g (hh:mm:ss))" $hours $mins $secs
1499 elif [ $mins -gt 0 ] ; then
1500 printf "(%02g:%02g (mm:ss))" $mins $secs
1501 elif [ $secs -gt 0 ] ; then
1502 printf "(%s seconds)" $secs
1503 fi
Ed Heylc6d11f82014-06-27 13:32:39 -07001504 echo -e " ####"
Ed Heylcc6be0a2014-06-18 14:55:58 -07001505 echo
1506 return $ret
1507}
1508
1509
1510
Raphael Moll70a86b02011-06-20 16:03:14 -07001511if [ "x$SHELL" != "x/bin/bash" ]; then
1512 case `ps -o command -p $$` in
1513 *bash*)
1514 ;;
1515 *)
1516 echo "WARNING: Only bash is supported, use of other shell would lead to erroneous results"
1517 ;;
1518 esac
1519fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001520
1521# Execute the contents of any vendorsetup.sh files we can find.
Ying Wang506410a2014-07-09 15:37:34 -07001522for f in `test -d device && find -L device -maxdepth 4 -name 'vendorsetup.sh' 2> /dev/null` \
1523 `test -d vendor && find -L vendor -maxdepth 4 -name 'vendorsetup.sh' 2> /dev/null`
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001524do
1525 echo "including $f"
1526 . $f
1527done
1528unset f
Kenny Root52aa81c2011-07-15 11:07:06 -07001529
1530addcompletions