blob: 2ed12c99e7f4dac5c6cb52ec3acd1b2a4ec5384e [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
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800209 # needed for building linux on MacOS
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700210 # TODO: fix the path
211 #export HOST_EXTRACFLAGS="-I "$T/system/kernel_headers/host_include
212}
213
214function printconfig()
215{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800216 T=$(gettop)
217 if [ ! "$T" ]; then
218 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
219 return
220 fi
221 get_build_var report_config
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700222}
223
224function set_stuff_for_environment()
225{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800226 settitle
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500227 set_java_home
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800228 setpaths
229 set_sequence_number
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700230
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800231 export ANDROID_BUILD_TOP=$(gettop)
Ben Chengaac3f812013-08-13 14:38:15 -0700232 # With this environment variable new GCC can apply colors to warnings/errors
233 export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700234}
235
236function set_sequence_number()
237{
Joe Onoratoaee4daa2010-06-23 14:03:13 -0700238 export BUILD_ENV_SEQUENCE_NUMBER=10
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700239}
240
241function settitle()
242{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800243 if [ "$STAY_OFF_MY_LAWN" = "" ]; then
Raghu Gandham8da43102012-07-25 19:57:22 -0700244 local arch=$(gettargetarch)
Joe Onoratoda12daf2010-06-09 18:18:31 -0700245 local product=$TARGET_PRODUCT
246 local variant=$TARGET_BUILD_VARIANT
247 local apps=$TARGET_BUILD_APPS
248 if [ -z "$apps" ]; then
Raghu Gandham8da43102012-07-25 19:57:22 -0700249 export PROMPT_COMMAND="echo -ne \"\033]0;[${arch}-${product}-${variant}] ${USER}@${HOSTNAME}: ${PWD}\007\""
Joe Onoratoda12daf2010-06-09 18:18:31 -0700250 else
Raghu Gandham8da43102012-07-25 19:57:22 -0700251 export PROMPT_COMMAND="echo -ne \"\033]0;[$arch $apps $variant] ${USER}@${HOSTNAME}: ${PWD}\007\""
Joe Onoratoda12daf2010-06-09 18:18:31 -0700252 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800253 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700254}
255
Kenny Root52aa81c2011-07-15 11:07:06 -0700256function addcompletions()
257{
258 local T dir f
259
260 # Keep us from trying to run in something that isn't bash.
261 if [ -z "${BASH_VERSION}" ]; then
262 return
263 fi
264
265 # Keep us from trying to run in bash that's too old.
266 if [ ${BASH_VERSINFO[0]} -lt 3 ]; then
267 return
268 fi
269
270 dir="sdk/bash_completion"
271 if [ -d ${dir} ]; then
Kenny Root7546d612011-07-18 13:11:34 -0700272 for f in `/bin/ls ${dir}/[a-z]*.bash 2> /dev/null`; do
Kenny Root52aa81c2011-07-15 11:07:06 -0700273 echo "including $f"
274 . $f
275 done
276 fi
277}
278
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700279function choosetype()
280{
281 echo "Build type choices are:"
282 echo " 1. release"
283 echo " 2. debug"
284 echo
285
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800286 local DEFAULT_NUM DEFAULT_VALUE
Jeff Browne33ba4c2011-07-11 22:11:46 -0700287 DEFAULT_NUM=1
288 DEFAULT_VALUE=release
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700289
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800290 export TARGET_BUILD_TYPE=
291 local ANSWER
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700292 while [ -z $TARGET_BUILD_TYPE ]
293 do
294 echo -n "Which would you like? ["$DEFAULT_NUM"] "
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800295 if [ -z "$1" ] ; then
296 read ANSWER
297 else
298 echo $1
299 ANSWER=$1
300 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700301 case $ANSWER in
302 "")
303 export TARGET_BUILD_TYPE=$DEFAULT_VALUE
304 ;;
305 1)
306 export TARGET_BUILD_TYPE=release
307 ;;
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800308 release)
309 export TARGET_BUILD_TYPE=release
310 ;;
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700311 2)
312 export TARGET_BUILD_TYPE=debug
313 ;;
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800314 debug)
315 export TARGET_BUILD_TYPE=debug
316 ;;
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700317 *)
318 echo
319 echo "I didn't understand your response. Please try again."
320 echo
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700321 ;;
322 esac
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800323 if [ -n "$1" ] ; then
324 break
325 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700326 done
327
328 set_stuff_for_environment
329}
330
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800331#
332# This function isn't really right: It chooses a TARGET_PRODUCT
333# based on the list of boards. Usually, that gets you something
334# that kinda works with a generic product, but really, you should
335# pick a product by name.
336#
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700337function chooseproduct()
338{
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700339 if [ "x$TARGET_PRODUCT" != x ] ; then
340 default_value=$TARGET_PRODUCT
341 else
Jeff Browne33ba4c2011-07-11 22:11:46 -0700342 default_value=full
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700343 fi
344
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800345 export TARGET_PRODUCT=
346 local ANSWER
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700347 while [ -z "$TARGET_PRODUCT" ]
348 do
Joe Onorato8849aed2009-04-29 15:56:47 -0700349 echo -n "Which product would you like? [$default_value] "
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800350 if [ -z "$1" ] ; then
351 read ANSWER
352 else
353 echo $1
354 ANSWER=$1
355 fi
356
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700357 if [ -z "$ANSWER" ] ; then
358 export TARGET_PRODUCT=$default_value
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800359 else
360 if check_product $ANSWER
361 then
362 export TARGET_PRODUCT=$ANSWER
363 else
364 echo "** Not a valid product: $ANSWER"
365 fi
366 fi
367 if [ -n "$1" ] ; then
368 break
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700369 fi
370 done
371
372 set_stuff_for_environment
373}
374
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800375function choosevariant()
376{
377 echo "Variant choices are:"
378 local index=1
379 local v
380 for v in ${VARIANT_CHOICES[@]}
381 do
382 # The product name is the name of the directory containing
383 # the makefile we found, above.
384 echo " $index. $v"
385 index=$(($index+1))
386 done
387
388 local default_value=eng
389 local ANSWER
390
391 export TARGET_BUILD_VARIANT=
392 while [ -z "$TARGET_BUILD_VARIANT" ]
393 do
394 echo -n "Which would you like? [$default_value] "
395 if [ -z "$1" ] ; then
396 read ANSWER
397 else
398 echo $1
399 ANSWER=$1
400 fi
401
402 if [ -z "$ANSWER" ] ; then
403 export TARGET_BUILD_VARIANT=$default_value
404 elif (echo -n $ANSWER | grep -q -e "^[0-9][0-9]*$") ; then
405 if [ "$ANSWER" -le "${#VARIANT_CHOICES[@]}" ] ; then
Kan-Ru Chen07453762010-07-05 15:53:47 +0800406 export TARGET_BUILD_VARIANT=${VARIANT_CHOICES[$(($ANSWER-1))]}
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800407 fi
408 else
409 if check_variant $ANSWER
410 then
411 export TARGET_BUILD_VARIANT=$ANSWER
412 else
413 echo "** Not a valid variant: $ANSWER"
414 fi
415 fi
416 if [ -n "$1" ] ; then
417 break
418 fi
419 done
420}
421
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700422function choosecombo()
423{
Jeff Browne33ba4c2011-07-11 22:11:46 -0700424 choosetype $1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700425
426 echo
427 echo
Jeff Browne33ba4c2011-07-11 22:11:46 -0700428 chooseproduct $2
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700429
430 echo
431 echo
Jeff Browne33ba4c2011-07-11 22:11:46 -0700432 choosevariant $3
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800433
434 echo
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700435 set_stuff_for_environment
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800436 printconfig
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700437}
438
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800439# Clear this variable. It will be built up again when the vendorsetup.sh
440# files are included at the end of this file.
441unset LUNCH_MENU_CHOICES
442function add_lunch_combo()
443{
444 local new_combo=$1
445 local c
446 for c in ${LUNCH_MENU_CHOICES[@]} ; do
447 if [ "$new_combo" = "$c" ] ; then
448 return
449 fi
450 done
451 LUNCH_MENU_CHOICES=(${LUNCH_MENU_CHOICES[@]} $new_combo)
452}
453
454# add the default one here
Jean-Baptiste Queru324c1232013-03-22 15:53:54 -0700455add_lunch_combo aosp_arm-eng
Colin Cross4f0eb7d2014-01-21 19:35:38 -0800456add_lunch_combo aosp_arm64-eng
Serban Constantinescu9b68fb22014-01-14 10:33:53 +0000457add_lunch_combo aosp_mips-eng
Chris Dearman1efd9e42014-02-03 15:01:24 -0800458add_lunch_combo aosp_mips64-eng
Serban Constantinescu9b68fb22014-01-14 10:33:53 +0000459add_lunch_combo aosp_x86-eng
460add_lunch_combo aosp_x86_64-eng
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800461
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700462function print_lunch_menu()
463{
464 local uname=$(uname)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700465 echo
466 echo "You're building on" $uname
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700467 echo
468 echo "Lunch menu... pick a combo:"
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800469
470 local i=1
471 local choice
472 for choice in ${LUNCH_MENU_CHOICES[@]}
473 do
474 echo " $i. $choice"
475 i=$(($i+1))
476 done
477
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700478 echo
479}
480
481function lunch()
482{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800483 local answer
484
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700485 if [ "$1" ] ; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800486 answer=$1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700487 else
488 print_lunch_menu
Jean-Baptiste Queru324c1232013-03-22 15:53:54 -0700489 echo -n "Which would you like? [aosp_arm-eng] "
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800490 read answer
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700491 fi
492
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800493 local selection=
494
495 if [ -z "$answer" ]
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700496 then
Jean-Baptiste Queru324c1232013-03-22 15:53:54 -0700497 selection=aosp_arm-eng
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800498 elif (echo -n $answer | grep -q -e "^[0-9][0-9]*$")
499 then
500 if [ $answer -le ${#LUNCH_MENU_CHOICES[@]} ]
501 then
Kan-Ru Chen07453762010-07-05 15:53:47 +0800502 selection=${LUNCH_MENU_CHOICES[$(($answer-1))]}
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800503 fi
504 elif (echo -n $answer | grep -q -e "^[^\-][^\-]*-[^\-][^\-]*$")
505 then
506 selection=$answer
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700507 fi
508
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800509 if [ -z "$selection" ]
510 then
511 echo
512 echo "Invalid lunch combo: $answer"
513 return 1
514 fi
515
Joe Onoratoda12daf2010-06-09 18:18:31 -0700516 export TARGET_BUILD_APPS=
517
Jeff Browne33ba4c2011-07-11 22:11:46 -0700518 local product=$(echo -n $selection | sed -e "s/-.*$//")
519 check_product $product
520 if [ $? -ne 0 ]
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800521 then
Jeff Browne33ba4c2011-07-11 22:11:46 -0700522 echo
523 echo "** Don't have a product spec for: '$product'"
524 echo "** Do you have the right repo manifest?"
525 product=
526 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800527
Jeff Browne33ba4c2011-07-11 22:11:46 -0700528 local variant=$(echo -n $selection | sed -e "s/^[^\-]*-//")
529 check_variant $variant
530 if [ $? -ne 0 ]
531 then
532 echo
533 echo "** Invalid variant: '$variant'"
534 echo "** Must be one of ${VARIANT_CHOICES[@]}"
535 variant=
536 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800537
Jeff Browne33ba4c2011-07-11 22:11:46 -0700538 if [ -z "$product" -o -z "$variant" ]
539 then
540 echo
541 return 1
542 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800543
Jeff Browne33ba4c2011-07-11 22:11:46 -0700544 export TARGET_PRODUCT=$product
545 export TARGET_BUILD_VARIANT=$variant
546 export TARGET_BUILD_TYPE=release
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700547
548 echo
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800549
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700550 set_stuff_for_environment
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800551 printconfig
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700552}
553
Jeff Davidson513d7a42010-08-02 10:00:44 -0700554# Tab completion for lunch.
555function _lunch()
556{
557 local cur prev opts
558 COMPREPLY=()
559 cur="${COMP_WORDS[COMP_CWORD]}"
560 prev="${COMP_WORDS[COMP_CWORD-1]}"
561
562 COMPREPLY=( $(compgen -W "${LUNCH_MENU_CHOICES[*]}" -- ${cur}) )
563 return 0
564}
565complete -F _lunch lunch
566
Joe Onoratoda12daf2010-06-09 18:18:31 -0700567# Configures the build to build unbundled apps.
Doug Zongker0d8179e2014-04-16 11:34:34 -0700568# Run tapas with one or more app names (from LOCAL_PACKAGE_NAME)
Joe Onoratoda12daf2010-06-09 18:18:31 -0700569function tapas()
570{
Ying Wangb541ab62014-05-29 17:57:40 -0700571 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 -0700572 local variant="$(echo $* | xargs -n 1 echo | \grep -E '^(user|userdebug|eng)$' | xargs)"
Jeff Hamilton5069bd62014-09-04 21:28:00 -0700573 local density="$(echo $* | xargs -n 1 echo | \grep -E '^(ldpi|mdpi|tvdpi|hdpi|xhdpi|xxhdpi|xxxhdpi|alldpi)$' | xargs)"
574 local apps="$(echo $* | xargs -n 1 echo | \grep -E -v '^(user|userdebug|eng|arm|x86|mips|armv5|arm64|x86_64|mips64|ldpi|mdpi|tvdpi|hdpi|xhdpi|xxhdpi|xxxhdpi|alldpi)$' | xargs)"
Joe Onoratoda12daf2010-06-09 18:18:31 -0700575
Ying Wang67f02922012-08-22 10:25:20 -0700576 if [ $(echo $arch | wc -w) -gt 1 ]; then
577 echo "tapas: Error: Multiple build archs supplied: $arch"
578 return
579 fi
Joe Onoratoda12daf2010-06-09 18:18:31 -0700580 if [ $(echo $variant | wc -w) -gt 1 ]; then
581 echo "tapas: Error: Multiple build variants supplied: $variant"
582 return
583 fi
Jeff Hamilton5069bd62014-09-04 21:28:00 -0700584 if [ $(echo $density | wc -w) -gt 1 ]; then
585 echo "tapas: Error: Multiple densities supplied: $density"
586 return
587 fi
Ying Wang67f02922012-08-22 10:25:20 -0700588
589 local product=full
590 case $arch in
Ying Wangb541ab62014-05-29 17:57:40 -0700591 x86) product=full_x86;;
592 mips) product=full_mips;;
593 armv5) product=generic_armv5;;
594 arm64) product=aosp_arm64;;
595 x86_64) product=aosp_x86_64;;
596 mips64) product=aosp_mips64;;
Ying Wang67f02922012-08-22 10:25:20 -0700597 esac
Joe Onoratoda12daf2010-06-09 18:18:31 -0700598 if [ -z "$variant" ]; then
599 variant=eng
600 fi
Ying Wangc048c9b2010-06-24 15:08:33 -0700601 if [ -z "$apps" ]; then
602 apps=all
603 fi
Joe Onoratoda12daf2010-06-09 18:18:31 -0700604
Ying Wang67f02922012-08-22 10:25:20 -0700605 export TARGET_PRODUCT=$product
Joe Onoratoda12daf2010-06-09 18:18:31 -0700606 export TARGET_BUILD_VARIANT=$variant
Jeff Hamilton5069bd62014-09-04 21:28:00 -0700607 export TARGET_BUILD_DENSITY=$density
Joe Onoratoda12daf2010-06-09 18:18:31 -0700608 export TARGET_BUILD_TYPE=release
609 export TARGET_BUILD_APPS=$apps
610
611 set_stuff_for_environment
612 printconfig
613}
614
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700615function gettop
616{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800617 local TOPFILE=build/core/envsetup.mk
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700618 if [ -n "$TOP" -a -f "$TOP/$TOPFILE" ] ; then
Brian Carlstroma5c4f172014-09-12 00:33:25 -0700619 # The following circumlocution ensures we remove symlinks from TOP.
620 (cd $TOP; PWD= /bin/pwd)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700621 else
622 if [ -f $TOPFILE ] ; then
Dan Bornsteind0b274d2009-11-24 15:48:50 -0800623 # The following circumlocution (repeated below as well) ensures
624 # that we record the true directory name and not one that is
625 # faked up with symlink names.
626 PWD= /bin/pwd
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700627 else
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800628 local HERE=$PWD
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700629 T=
630 while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do
Ying Wang9cd17642012-12-13 10:52:07 -0800631 \cd ..
synergyb112a402013-07-05 19:47:47 -0700632 T=`PWD= /bin/pwd -P`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700633 done
Ying Wang9cd17642012-12-13 10:52:07 -0800634 \cd $HERE
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700635 if [ -f "$T/$TOPFILE" ]; then
636 echo $T
637 fi
638 fi
639 fi
640}
641
Andrew Hsieh906cb782013-09-10 17:37:14 +0800642# Return driver for "make", if any (eg. static analyzer)
643function getdriver()
644{
645 local T="$1"
646 test "$WITH_STATIC_ANALYZER" = "0" && unset WITH_STATIC_ANALYZER
647 if [ -n "$WITH_STATIC_ANALYZER" ]; then
648 echo "\
Andrew Hsiehc4f7fba2014-03-03 16:53:17 +0800649$T/prebuilts/misc/linux-x86/analyzer/tools/scan-build/scan-build \
650--use-analyzer $T/prebuilts/misc/linux-x86/analyzer/bin/analyzer \
Andrew Hsieh906cb782013-09-10 17:37:14 +0800651--status-bugs \
652--top=$T"
653 fi
654}
655
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700656function m()
657{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800658 local T=$(gettop)
659 local DRV=$(getdriver $T)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700660 if [ "$T" ]; then
Andrew Hsieh906cb782013-09-10 17:37:14 +0800661 $DRV make -C $T -f build/core/main.mk $@
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700662 else
663 echo "Couldn't locate the top of the tree. Try setting TOP."
664 fi
665}
666
667function findmakefile()
668{
669 TOPFILE=build/core/envsetup.mk
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800670 local HERE=$PWD
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700671 T=
672 while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do
Ying Wang11b15b12012-10-11 15:05:07 -0700673 T=`PWD= /bin/pwd`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700674 if [ -f "$T/Android.mk" ]; then
675 echo $T/Android.mk
Ying Wang9cd17642012-12-13 10:52:07 -0800676 \cd $HERE
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700677 return
678 fi
Ying Wang9cd17642012-12-13 10:52:07 -0800679 \cd ..
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700680 done
Ying Wang9cd17642012-12-13 10:52:07 -0800681 \cd $HERE
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700682}
683
684function mm()
685{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800686 local T=$(gettop)
687 local DRV=$(getdriver $T)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700688 # If we're sitting in the root of the build tree, just do a
689 # normal make.
690 if [ -f build/core/envsetup.mk -a -f Makefile ]; then
Andrew Hsieh906cb782013-09-10 17:37:14 +0800691 $DRV make $@
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700692 else
693 # Find the closest Android.mk file.
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800694 local M=$(findmakefile)
Ying Wanga7deb082013-08-16 13:24:47 -0700695 local MODULES=
696 local GET_INSTALL_PATH=
697 local ARGS=
Robert Greenwalt3c794d72009-07-15 15:07:44 -0700698 # Remove the path to top as the makefilepath needs to be relative
699 local M=`echo $M|sed 's:'$T'/::'`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700700 if [ ! "$T" ]; then
701 echo "Couldn't locate the top of the tree. Try setting TOP."
702 elif [ ! "$M" ]; then
703 echo "Couldn't locate a makefile from the current directory."
704 else
Ying Wanga7deb082013-08-16 13:24:47 -0700705 for ARG in $@; do
706 case $ARG in
707 GET-INSTALL-PATH) GET_INSTALL_PATH=$ARG;;
708 esac
709 done
710 if [ -n "$GET_INSTALL_PATH" ]; then
711 MODULES=
712 ARGS=GET-INSTALL-PATH
713 else
714 MODULES=all_modules
715 ARGS=$@
716 fi
Andrew Hsieh246daf72013-09-10 18:07:23 -0700717 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 -0700718 fi
719 fi
720}
721
722function mmm()
723{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800724 local T=$(gettop)
725 local DRV=$(getdriver $T)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700726 if [ "$T" ]; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800727 local MAKEFILE=
Alon Albert68895a92011-11-30 12:40:19 -0800728 local MODULES=
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800729 local ARGS=
730 local DIR TO_CHOP
Ying Wanga7deb082013-08-16 13:24:47 -0700731 local GET_INSTALL_PATH=
The Android Open Source Project88b60792009-03-03 19:28:42 -0800732 local DASH_ARGS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^-.*$/')
733 local DIRS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^[^-].*$/')
734 for DIR in $DIRS ; do
Alon Albert68895a92011-11-30 12:40:19 -0800735 MODULES=`echo $DIR | sed -n -e 's/.*:\(.*$\)/\1/p' | sed 's/,/ /'`
736 if [ "$MODULES" = "" ]; then
737 MODULES=all_modules
738 fi
739 DIR=`echo $DIR | sed -e 's/:.*//' -e 's:/$::'`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700740 if [ -f $DIR/Android.mk ]; then
Ying Wanga7deb082013-08-16 13:24:47 -0700741 local TO_CHOP=`(\cd -P -- $T && pwd -P) | wc -c | tr -d ' '`
742 local TO_CHOP=`expr $TO_CHOP + 1`
743 local START=`PWD= /bin/pwd`
744 local MFILE=`echo $START | cut -c${TO_CHOP}-`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700745 if [ "$MFILE" = "" ] ; then
746 MFILE=$DIR/Android.mk
747 else
748 MFILE=$MFILE/$DIR/Android.mk
749 fi
750 MAKEFILE="$MAKEFILE $MFILE"
751 else
Ying Wanga7deb082013-08-16 13:24:47 -0700752 case $DIR in
753 showcommands | snod | dist | incrementaljavac) ARGS="$ARGS $DIR";;
754 GET-INSTALL-PATH) GET_INSTALL_PATH=$DIR;;
755 *) echo "No Android.mk in $DIR."; return 1;;
756 esac
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700757 fi
758 done
Ying Wanga7deb082013-08-16 13:24:47 -0700759 if [ -n "$GET_INSTALL_PATH" ]; then
760 ARGS=$GET_INSTALL_PATH
761 MODULES=
762 fi
Andrew Hsieh906cb782013-09-10 17:37:14 +0800763 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 -0700764 else
765 echo "Couldn't locate the top of the tree. Try setting TOP."
766 fi
767}
768
Ying Wangb607f7b2013-02-08 18:01:04 -0800769function mma()
770{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800771 local T=$(gettop)
772 local DRV=$(getdriver $T)
Ying Wangb607f7b2013-02-08 18:01:04 -0800773 if [ -f build/core/envsetup.mk -a -f Makefile ]; then
Andrew Hsieh906cb782013-09-10 17:37:14 +0800774 $DRV make $@
Ying Wangb607f7b2013-02-08 18:01:04 -0800775 else
Ying Wangb607f7b2013-02-08 18:01:04 -0800776 if [ ! "$T" ]; then
777 echo "Couldn't locate the top of the tree. Try setting TOP."
778 fi
779 local MY_PWD=`PWD= /bin/pwd|sed 's:'$T'/::'`
Andrew Hsieh906cb782013-09-10 17:37:14 +0800780 $DRV make -C $T -f build/core/main.mk $@ all_modules BUILD_MODULES_IN_PATHS="$MY_PWD"
Ying Wangb607f7b2013-02-08 18:01:04 -0800781 fi
782}
783
784function mmma()
785{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800786 local T=$(gettop)
787 local DRV=$(getdriver $T)
Ying Wangb607f7b2013-02-08 18:01:04 -0800788 if [ "$T" ]; then
789 local DASH_ARGS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^-.*$/')
790 local DIRS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^[^-].*$/')
791 local MY_PWD=`PWD= /bin/pwd`
792 if [ "$MY_PWD" = "$T" ]; then
793 MY_PWD=
794 else
795 MY_PWD=`echo $MY_PWD|sed 's:'$T'/::'`
796 fi
797 local DIR=
798 local MODULE_PATHS=
799 local ARGS=
800 for DIR in $DIRS ; do
801 if [ -d $DIR ]; then
802 if [ "$MY_PWD" = "" ]; then
803 MODULE_PATHS="$MODULE_PATHS $DIR"
804 else
805 MODULE_PATHS="$MODULE_PATHS $MY_PWD/$DIR"
806 fi
807 else
808 case $DIR in
809 showcommands | snod | dist | incrementaljavac) ARGS="$ARGS $DIR";;
810 *) echo "Couldn't find directory $DIR"; return 1;;
811 esac
812 fi
813 done
Andrew Hsieh906cb782013-09-10 17:37:14 +0800814 $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 -0800815 else
816 echo "Couldn't locate the top of the tree. Try setting TOP."
817 fi
818}
819
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700820function croot()
821{
822 T=$(gettop)
823 if [ "$T" ]; then
Ying Wang9cd17642012-12-13 10:52:07 -0800824 \cd $(gettop)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700825 else
826 echo "Couldn't locate the top of the tree. Try setting TOP."
827 fi
828}
829
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700830function cproj()
831{
832 TOPFILE=build/core/envsetup.mk
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700833 local HERE=$PWD
834 T=
835 while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do
836 T=$PWD
837 if [ -f "$T/Android.mk" ]; then
Ying Wang9cd17642012-12-13 10:52:07 -0800838 \cd $T
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700839 return
840 fi
Ying Wang9cd17642012-12-13 10:52:07 -0800841 \cd ..
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700842 done
Ying Wang9cd17642012-12-13 10:52:07 -0800843 \cd $HERE
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700844 echo "can't find Android.mk"
845}
846
Daniel Sandler47e0a882013-07-30 13:23:52 -0400847# simplified version of ps; output in the form
848# <pid> <procname>
849function qpid() {
850 local prepend=''
851 local append=''
852 if [ "$1" = "--exact" ]; then
853 prepend=' '
854 append='$'
855 shift
856 elif [ "$1" = "--help" -o "$1" = "-h" ]; then
857 echo "usage: qpid [[--exact] <process name|pid>"
858 return 255
859 fi
860
861 local EXE="$1"
862 if [ "$EXE" ] ; then
Mathias Agopian44583272013-08-27 14:15:50 -0700863 qpid | \grep "$prepend$EXE$append"
Daniel Sandler47e0a882013-07-30 13:23:52 -0400864 else
865 adb shell ps \
866 | tr -d '\r' \
867 | sed -e 1d -e 's/^[^ ]* *\([0-9]*\).* \([^ ]*\)$/\1 \2/'
868 fi
869}
870
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700871function pid()
872{
Daniel Sandler47e0a882013-07-30 13:23:52 -0400873 local prepend=''
874 local append=''
875 if [ "$1" = "--exact" ]; then
876 prepend=' '
877 append='$'
878 shift
879 fi
880 local EXE="$1"
881 if [ "$EXE" ] ; then
882 local PID=`adb shell ps \
883 | tr -d '\r' \
Mathias Agopian44583272013-08-27 14:15:50 -0700884 | \grep "$prepend$EXE$append" \
Daniel Sandler47e0a882013-07-30 13:23:52 -0400885 | sed -e 's/^[^ ]* *\([0-9]*\).*$/\1/'`
886 echo "$PID"
887 else
888 echo "usage: pid [--exact] <process name>"
889 return 255
890 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700891}
892
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700893# coredump-setup - enable core dumps globally for any process
894# that has the core-file-size limit set correctly
895#
896# NOTE: You must call also coredump-enable for a specific process
897# if its core-file-size limit is not set already.
898# NOTE: Core dumps are written to ramdisk; they will not survive a reboot!
899
900function coredump-setup()
901{
902 echo "Getting root...";
903 adb root;
904 adb wait-for-device;
905
906 echo "Remounting root parition read-write...";
907 adb shell mount -w -o remount -t rootfs rootfs;
908 sleep 1;
909 adb wait-for-device;
910 adb shell mkdir -p /cores;
911 adb shell chmod 0777 /cores;
912
913 echo "Granting SELinux permission to dump in /cores...";
914 adb shell restorecon -R /cores;
915
916 echo "Set core pattern.";
917 adb shell 'echo /cores/core.%p > /proc/sys/kernel/core_pattern';
918
919 echo "Done."
920}
921
922# coredump-enable - enable core dumps for the specified process
923# $1 = PID of process (e.g., $(pid mediaserver))
924#
925# NOTE: coredump-setup must have been called as well for a core
926# dump to actually be generated.
927
928function coredump-enable()
929{
930 local PID=$1;
931 if [ -z "$PID" ]; then
932 printf "Expecting a PID!\n";
933 return;
934 fi;
935 echo "Setting core limit for $PID to infinite...";
936 adb shell prlimit $PID 4 -1 -1
937}
938
939# core - send SIGV and pull the core for process
940# $1 = PID of process (e.g., $(pid mediaserver))
941#
942# NOTE: coredump-setup must be called once per boot for core dumps to be
943# enabled globally.
944
945function core()
946{
947 local PID=$1;
948
949 if [ -z "$PID" ]; then
950 printf "Expecting a PID!\n";
951 return;
952 fi;
953
954 local CORENAME=core.$PID;
955 local COREPATH=/cores/$CORENAME;
956 local SIG=SEGV;
957
958 coredump-enable $1;
959
960 local done=0;
961 while [ $(adb shell "[ -d /proc/$PID ] && echo -n yes") ]; do
962 printf "\tSending SIG%s to %d...\n" $SIG $PID;
963 adb shell kill -$SIG $PID;
964 sleep 1;
965 done;
966
967 adb shell "while [ ! -f $COREPATH ] ; do echo waiting for $COREPATH to be generated; sleep 1; done"
968 echo "Done: core is under $COREPATH on device.";
969}
970
Christopher Tate744ee802009-11-12 15:33:08 -0800971# systemstack - dump the current stack trace of all threads in the system process
972# to the usual ANR traces file
973function systemstack()
974{
Jeff Sharkeyf5824372013-02-19 17:00:46 -0800975 stacks system_server
976}
977
978function stacks()
979{
980 if [[ $1 =~ ^[0-9]+$ ]] ; then
981 local PID="$1"
982 elif [ "$1" ] ; then
Jeff Brownb12c2e52013-08-19 15:14:16 -0700983 local PIDLIST="$(pid $1)"
984 if [[ $PIDLIST =~ ^[0-9]+$ ]] ; then
985 local PID="$PIDLIST"
986 elif [ "$PIDLIST" ] ; then
987 echo "more than one process: $1"
988 else
989 echo "no such process: $1"
990 fi
Jeff Sharkeyf5824372013-02-19 17:00:46 -0800991 else
992 echo "usage: stacks [pid|process name]"
993 fi
994
995 if [ "$PID" ] ; then
Jeff Brownb12c2e52013-08-19 15:14:16 -0700996 # Determine whether the process is native
997 if adb shell ls -l /proc/$PID/exe | grep -q /system/bin/app_process ; then
998 # Dump stacks of Dalvik process
999 local TRACES=/data/anr/traces.txt
1000 local ORIG=/data/anr/traces.orig
1001 local TMP=/data/anr/traces.tmp
Jeff Sharkeyf5824372013-02-19 17:00:46 -08001002
Jeff Brownb12c2e52013-08-19 15:14:16 -07001003 # Keep original traces to avoid clobbering
1004 adb shell mv $TRACES $ORIG
Jeff Sharkeyf5824372013-02-19 17:00:46 -08001005
Jeff Brownb12c2e52013-08-19 15:14:16 -07001006 # Make sure we have a usable file
1007 adb shell touch $TRACES
1008 adb shell chmod 666 $TRACES
Jeff Sharkeyf5824372013-02-19 17:00:46 -08001009
Jeff Brownb12c2e52013-08-19 15:14:16 -07001010 # Dump stacks and wait for dump to finish
1011 adb shell kill -3 $PID
1012 adb shell notify $TRACES >/dev/null
Jeff Sharkeyf5824372013-02-19 17:00:46 -08001013
Jeff Brownb12c2e52013-08-19 15:14:16 -07001014 # Restore original stacks, and show current output
1015 adb shell mv $TRACES $TMP
1016 adb shell mv $ORIG $TRACES
1017 adb shell cat $TMP
1018 else
1019 # Dump stacks of native process
Michael Wrightaeed7212014-06-19 19:58:12 -07001020 local USE64BIT="$(is64bit $PID)"
1021 adb shell debuggerd$USE64BIT -b $PID
Jeff Brownb12c2e52013-08-19 15:14:16 -07001022 fi
Jeff Sharkeyf5824372013-02-19 17:00:46 -08001023 fi
Christopher Tate744ee802009-11-12 15:33:08 -08001024}
1025
John Michelau50200252012-11-09 11:48:04 -06001026function gdbwrapper()
1027{
Ben Chengfba67bf2014-02-25 10:27:07 -08001028 local GDB_CMD="$1"
1029 shift 1
1030 $GDB_CMD -x "$@"
John Michelau50200252012-11-09 11:48:04 -06001031}
1032
Brigid Smith0a2712d2014-05-28 14:36:43 -07001033function get_symbols_directory()
1034{
1035 echo $(get_abs_build_var TARGET_OUT_UNSTRIPPED)
1036}
1037
Michael Wrightaeed7212014-06-19 19:58:12 -07001038# Read the ELF header from /proc/$PID/exe to determine if the process is
1039# 64-bit.
Ben Chengfba67bf2014-02-25 10:27:07 -08001040function is64bit()
1041{
1042 local PID="$1"
1043 if [ "$PID" ] ; then
Michael Wrightaeed7212014-06-19 19:58:12 -07001044 if [[ "$(adb shell cat /proc/$PID/exe | xxd -l 1 -s 4 -ps)" -eq "02" ]] ; then
Ben Chengfba67bf2014-02-25 10:27:07 -08001045 echo "64"
1046 else
1047 echo ""
1048 fi
1049 else
1050 echo ""
1051 fi
1052}
1053
1054# gdbclient now determines whether the user wants to debug a 32-bit or 64-bit
1055# executable, set up the approriate gdbserver, then invokes the proper host
1056# gdb.
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001057function gdbclient()
1058{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001059 local OUT_ROOT=$(get_abs_build_var PRODUCT_OUT)
1060 local OUT_SYMBOLS=$(get_abs_build_var TARGET_OUT_UNSTRIPPED)
1061 local OUT_SO_SYMBOLS=$(get_abs_build_var TARGET_OUT_SHARED_LIBRARIES_UNSTRIPPED)
Colin Cross3655a682014-05-22 11:59:10 -07001062 local OUT_VENDOR_SO_SYMBOLS=$(get_abs_build_var TARGET_OUT_VENDOR_SHARED_LIBRARIES_UNSTRIPPED)
Brigid Smith0a2712d2014-05-28 14:36:43 -07001063 local OUT_EXE_SYMBOLS=$(get_symbols_directory)
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001064 local PREBUILTS=$(get_abs_build_var ANDROID_PREBUILTS)
Nick Kralevich0ab21d32011-11-11 09:02:01 -08001065 local ARCH=$(get_build_var TARGET_ARCH)
1066 local GDB
1067 case "$ARCH" in
Nick Kralevich0ab21d32011-11-11 09:02:01 -08001068 arm) GDB=arm-linux-androideabi-gdb;;
Ben Chengfba67bf2014-02-25 10:27:07 -08001069 arm64) GDB=arm-linux-androideabi-gdb; GDB64=aarch64-linux-android-gdb;;
Duane Sand3c4fcd82014-07-22 14:34:00 -07001070 mips|mips64) GDB=mips64el-linux-android-gdb;;
Serban Constantinescu9b68fb22014-01-14 10:33:53 +00001071 x86) GDB=x86_64-linux-android-gdb;;
1072 x86_64) GDB=x86_64-linux-android-gdb;;
Nick Kralevich0ab21d32011-11-11 09:02:01 -08001073 *) echo "Unknown arch $ARCH"; return 1;;
1074 esac
1075
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001076 if [ "$OUT_ROOT" -a "$PREBUILTS" ]; then
1077 local EXE="$1"
1078 if [ "$EXE" ] ; then
1079 EXE=$1
Brigid Smith7a569a62014-06-20 14:12:12 -07001080 if [[ $EXE =~ ^[^/].* ]] ; then
1081 EXE="system/bin/"$EXE
1082 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001083 else
1084 EXE="app_process"
1085 fi
1086
1087 local PORT="$2"
1088 if [ "$PORT" ] ; then
1089 PORT=$2
1090 else
1091 PORT=":5039"
1092 fi
1093
Chris Craik20c136a2012-11-09 18:02:19 -08001094 local PID="$3"
1095 if [ "$PID" ] ; then
1096 if [[ ! "$PID" =~ ^[0-9]+$ ]] ; then
Grace Klobae9d04bf2011-04-30 11:04:05 -07001097 PID=`pid $3`
Chris Craik20c136a2012-11-09 18:02:19 -08001098 if [[ ! "$PID" =~ ^[0-9]+$ ]] ; then
1099 # that likely didn't work because of returning multiple processes
1100 # try again, filtering by root processes (don't contain colon)
Mathias Agopian44583272013-08-27 14:15:50 -07001101 PID=`adb shell ps | \grep $3 | \grep -v ":" | awk '{print $2}'`
Chris Craik20c136a2012-11-09 18:02:19 -08001102 if [[ ! "$PID" =~ ^[0-9]+$ ]]
1103 then
1104 echo "Couldn't resolve '$3' to single PID"
1105 return 1
1106 else
1107 echo ""
1108 echo "WARNING: multiple processes matching '$3' observed, using root process"
1109 echo ""
1110 fi
1111 fi
Grace Klobae9d04bf2011-04-30 11:04:05 -07001112 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001113 adb forward "tcp$PORT" "tcp$PORT"
Ben Chengfba67bf2014-02-25 10:27:07 -08001114 local USE64BIT="$(is64bit $PID)"
1115 adb shell gdbserver$USE64BIT $PORT --attach $PID &
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001116 sleep 2
1117 else
1118 echo ""
1119 echo "If you haven't done so already, do this first on the device:"
1120 echo " gdbserver $PORT /system/bin/$EXE"
1121 echo " or"
Chris Craik20c136a2012-11-09 18:02:19 -08001122 echo " gdbserver $PORT --attach <PID>"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001123 echo ""
1124 fi
1125
Colin Cross84480ad2014-04-10 12:51:39 -07001126 OUT_SO_SYMBOLS=$OUT_SO_SYMBOLS$USE64BIT
Colin Crossa58f8e02014-06-20 13:33:36 -07001127 OUT_VENDOR_SO_SYMBOLS=$OUT_VENDOR_SO_SYMBOLS$USE64BIT
Colin Cross84480ad2014-04-10 12:51:39 -07001128
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001129 echo >|"$OUT_ROOT/gdbclient.cmds" "set solib-absolute-prefix $OUT_SYMBOLS"
Colin Cross3655a682014-05-22 11:59:10 -07001130 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 -07001131 echo >>"$OUT_ROOT/gdbclient.cmds" "source $ANDROID_BUILD_TOP/development/scripts/gdb/dalvik.gdb"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001132 echo >>"$OUT_ROOT/gdbclient.cmds" "target remote $PORT"
Christopher Ferris855d27f2014-10-03 17:29:27 -07001133 # Enable special debugging for ART processes.
1134 if [[ $EXE =~ (^|/)(app_process|dalvikvm)(|32|64)$ ]]; then
1135 echo >> "$OUT_ROOT/gdbclient.cmds" "art-on"
1136 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001137 echo >>"$OUT_ROOT/gdbclient.cmds" ""
1138
Ben Chengfba67bf2014-02-25 10:27:07 -08001139 local WHICH_GDB=
1140 # 64-bit exe found
1141 if [ "$USE64BIT" != "" ] ; then
1142 WHICH_GDB=$ANDROID_TOOLCHAIN/$GDB64
1143 # 32-bit exe / 32-bit platform
1144 elif [ "$(get_build_var TARGET_2ND_ARCH)" = "" ]; then
1145 WHICH_GDB=$ANDROID_TOOLCHAIN/$GDB
1146 # 32-bit exe / 64-bit platform
1147 else
1148 WHICH_GDB=$ANDROID_TOOLCHAIN_2ND_ARCH/$GDB
1149 fi
Brigid Smith0a2712d2014-05-28 14:36:43 -07001150
Ben Chengfba67bf2014-02-25 10:27:07 -08001151 gdbwrapper $WHICH_GDB "$OUT_ROOT/gdbclient.cmds" "$OUT_EXE_SYMBOLS/$EXE"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001152 else
1153 echo "Unable to determine build system output dir."
1154 fi
1155
1156}
1157
1158case `uname -s` in
1159 Darwin)
1160 function sgrep()
1161 {
Jeff Brown46cbd202014-07-26 15:15:41 -07001162 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 -07001163 }
1164
1165 ;;
1166 *)
1167 function sgrep()
1168 {
Jeff Brown46cbd202014-07-26 15:15:41 -07001169 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 -07001170 }
1171 ;;
1172esac
1173
Raghu Gandham8da43102012-07-25 19:57:22 -07001174function gettargetarch
1175{
1176 get_build_var TARGET_ARCH
1177}
1178
Jon Boekenoogencbca56f2014-04-07 10:57:38 -07001179function ggrep()
1180{
1181 find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -type f -name "*\.gradle" -print0 | xargs -0 grep --color -n "$@"
1182}
1183
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001184function jgrep()
1185{
Anatolii Shuba91c72d22013-07-05 16:09:25 +03001186 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 -07001187}
1188
1189function cgrep()
1190{
Anatolii Shuba91c72d22013-07-05 16:09:25 +03001191 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 -07001192}
1193
1194function resgrep()
1195{
Anatolii Shuba91c72d22013-07-05 16:09:25 +03001196 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 -07001197}
1198
Jeff Sharkey50b61e92013-03-08 10:20:47 -08001199function mangrep()
1200{
1201 find . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o -type f -name 'AndroidManifest.xml' -print0 | xargs -0 grep --color -n "$@"
1202}
1203
Alex Klyubinba5fc8e2013-05-06 14:11:48 -07001204function sepgrep()
1205{
1206 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 "$@"
1207}
1208
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001209case `uname -s` in
1210 Darwin)
1211 function mgrep()
1212 {
Ying Wang324c2b22012-08-17 15:03:20 -07001213 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 -07001214 }
1215
1216 function treegrep()
1217 {
Joe Onoratof50e84b2011-03-15 14:15:46 -07001218 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 -07001219 }
1220
1221 ;;
1222 *)
1223 function mgrep()
1224 {
Ying Wang324c2b22012-08-17 15:03:20 -07001225 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 -07001226 }
1227
1228 function treegrep()
1229 {
Joe Onoratof50e84b2011-03-15 14:15:46 -07001230 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 -07001231 }
1232
1233 ;;
1234esac
1235
1236function getprebuilt
1237{
1238 get_abs_build_var ANDROID_PREBUILTS
1239}
1240
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001241function tracedmdump()
1242{
1243 T=$(gettop)
1244 if [ ! "$T" ]; then
1245 echo "Couldn't locate the top of the tree. Try setting TOP."
1246 return
1247 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001248 local prebuiltdir=$(getprebuilt)
Raghu Gandham8da43102012-07-25 19:57:22 -07001249 local arch=$(gettargetarch)
1250 local KERNEL=$T/prebuilts/qemu-kernel/$arch/vmlinux-qemu
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001251
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001252 local TRACE=$1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001253 if [ ! "$TRACE" ] ; then
1254 echo "usage: tracedmdump tracename"
1255 return
1256 fi
1257
Jack Veenstra60116fc2009-04-09 18:12:34 -07001258 if [ ! -r "$KERNEL" ] ; then
1259 echo "Error: cannot find kernel: '$KERNEL'"
1260 return
1261 fi
1262
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001263 local BASETRACE=$(basename $TRACE)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001264 if [ "$BASETRACE" = "$TRACE" ] ; then
1265 TRACE=$ANDROID_PRODUCT_OUT/traces/$TRACE
1266 fi
1267
1268 echo "post-processing traces..."
1269 rm -f $TRACE/qtrace.dexlist
1270 post_trace $TRACE
1271 if [ $? -ne 0 ]; then
1272 echo "***"
1273 echo "*** Error: malformed trace. Did you remember to exit the emulator?"
1274 echo "***"
1275 return
1276 fi
1277 echo "generating dexlist output..."
1278 /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
1279 echo "generating dmtrace data..."
1280 q2dm -r $ANDROID_PRODUCT_OUT/symbols $TRACE $KERNEL $TRACE/dmtrace || return
1281 echo "generating html file..."
1282 dmtracedump -h $TRACE/dmtrace >| $TRACE/dmtrace.html || return
1283 echo "done, see $TRACE/dmtrace.html for details"
1284 echo "or run:"
1285 echo " traceview $TRACE/dmtrace"
1286}
1287
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001288# communicate with a running device or emulator, set up necessary state,
1289# and run the hat command.
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001290function runhat()
1291{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001292 # process standard adb options
1293 local adbTarget=""
Andy McFaddenb6289852010-07-12 08:00:19 -07001294 if [ "$1" = "-d" -o "$1" = "-e" ]; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001295 adbTarget=$1
1296 shift 1
Andy McFaddenb6289852010-07-12 08:00:19 -07001297 elif [ "$1" = "-s" ]; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001298 adbTarget="$1 $2"
1299 shift 2
1300 fi
1301 local adbOptions=${adbTarget}
Dianne Hackborn6b9549f2012-09-26 15:00:59 -07001302 #echo adbOptions = ${adbOptions}
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001303
1304 # runhat options
1305 local targetPid=$1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001306
1307 if [ "$targetPid" = "" ]; then
Andy McFaddenb6289852010-07-12 08:00:19 -07001308 echo "Usage: runhat [ -d | -e | -s serial ] target-pid"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001309 return
1310 fi
1311
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001312 # confirm hat is available
1313 if [ -z $(which hat) ]; then
1314 echo "hat is not available in this configuration."
1315 return
1316 fi
1317
Andy McFaddenb6289852010-07-12 08:00:19 -07001318 # issue "am" command to cause the hprof dump
Nick Kralevich9948b1e2014-07-18 15:45:38 -07001319 local devFile=/data/local/tmp/hprof-$targetPid
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001320 echo "Poking $targetPid and waiting for data..."
Dianne Hackborn6b9549f2012-09-26 15:00:59 -07001321 echo "Storing data at $devFile"
Andy McFaddenb6289852010-07-12 08:00:19 -07001322 adb ${adbOptions} shell am dumpheap $targetPid $devFile
The Android Open Source Project88b60792009-03-03 19:28:42 -08001323 echo "Press enter when logcat shows \"hprof: heap dump completed\""
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001324 echo -n "> "
1325 read
1326
The Android Open Source Project88b60792009-03-03 19:28:42 -08001327 local localFile=/tmp/$$-hprof
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001328
The Android Open Source Project88b60792009-03-03 19:28:42 -08001329 echo "Retrieving file $devFile..."
1330 adb ${adbOptions} pull $devFile $localFile
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001331
The Android Open Source Project88b60792009-03-03 19:28:42 -08001332 adb ${adbOptions} shell rm $devFile
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001333
The Android Open Source Project88b60792009-03-03 19:28:42 -08001334 echo "Running hat on $localFile"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001335 echo "View the output by pointing your browser at http://localhost:7000/"
1336 echo ""
Dianne Hackborn6e4e1bb2011-11-10 15:19:51 -08001337 hat -JXmx512m $localFile
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001338}
1339
1340function getbugreports()
1341{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001342 local reports=(`adb shell ls /sdcard/bugreports | tr -d '\r'`)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001343
1344 if [ ! "$reports" ]; then
1345 echo "Could not locate any bugreports."
1346 return
1347 fi
1348
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001349 local report
1350 for report in ${reports[@]}
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001351 do
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001352 echo "/sdcard/bugreports/${report}"
1353 adb pull /sdcard/bugreports/${report} ${report}
1354 gunzip ${report}
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001355 done
1356}
1357
Victoria Lease1b296b42012-08-21 15:44:06 -07001358function getsdcardpath()
1359{
1360 adb ${adbOptions} shell echo -n \$\{EXTERNAL_STORAGE\}
1361}
1362
1363function getscreenshotpath()
1364{
1365 echo "$(getsdcardpath)/Pictures/Screenshots"
1366}
1367
1368function getlastscreenshot()
1369{
1370 local screenshot_path=$(getscreenshotpath)
1371 local screenshot=`adb ${adbOptions} ls ${screenshot_path} | grep Screenshot_[0-9-]*.*\.png | sort -rk 3 | cut -d " " -f 4 | head -n 1`
1372 if [ "$screenshot" = "" ]; then
1373 echo "No screenshots found."
1374 return
1375 fi
1376 echo "${screenshot}"
1377 adb ${adbOptions} pull ${screenshot_path}/${screenshot}
1378}
1379
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001380function startviewserver()
1381{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001382 local port=4939
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001383 if [ $# -gt 0 ]; then
1384 port=$1
1385 fi
1386 adb shell service call window 1 i32 $port
1387}
1388
1389function stopviewserver()
1390{
1391 adb shell service call window 2
1392}
1393
1394function isviewserverstarted()
1395{
1396 adb shell service call window 3
1397}
1398
Romain Guyb84049a2010-10-04 16:56:11 -07001399function key_home()
1400{
1401 adb shell input keyevent 3
1402}
1403
1404function key_back()
1405{
1406 adb shell input keyevent 4
1407}
1408
1409function key_menu()
1410{
1411 adb shell input keyevent 82
1412}
1413
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001414function smoketest()
1415{
1416 if [ ! "$ANDROID_PRODUCT_OUT" ]; then
1417 echo "Couldn't locate output files. Try running 'lunch' first." >&2
1418 return
1419 fi
1420 T=$(gettop)
1421 if [ ! "$T" ]; then
1422 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
1423 return
1424 fi
1425
Ying Wang9cd17642012-12-13 10:52:07 -08001426 (\cd "$T" && mmm tests/SmokeTest) &&
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001427 adb uninstall com.android.smoketest > /dev/null &&
1428 adb uninstall com.android.smoketest.tests > /dev/null &&
1429 adb install $ANDROID_PRODUCT_OUT/data/app/SmokeTestApp.apk &&
1430 adb install $ANDROID_PRODUCT_OUT/data/app/SmokeTest.apk &&
1431 adb shell am instrument -w com.android.smoketest.tests/android.test.InstrumentationTestRunner
1432}
1433
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001434# simple shortcut to the runtest command
1435function runtest()
1436{
1437 T=$(gettop)
1438 if [ ! "$T" ]; then
1439 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
1440 return
1441 fi
Brett Chabot3fb149d2009-10-21 20:05:26 -07001442 ("$T"/development/testrunner/runtest.py $@)
Brett Chabot762748c2009-03-27 10:25:11 -07001443}
1444
The Android Open Source Project88b60792009-03-03 19:28:42 -08001445function godir () {
1446 if [[ -z "$1" ]]; then
1447 echo "Usage: godir <regex>"
1448 return
1449 fi
Brian Carlstromb9915a62010-01-29 16:39:32 -08001450 T=$(gettop)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001451 if [[ ! -f $T/filelist ]]; then
1452 echo -n "Creating index..."
Ying Wang9cd17642012-12-13 10:52:07 -08001453 (\cd $T; find . -wholename ./out -prune -o -wholename ./.repo -prune -o -type f > filelist)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001454 echo " Done"
1455 echo ""
1456 fi
1457 local lines
Jeff Hamilton293f9392011-11-18 17:15:25 -06001458 lines=($(\grep "$1" $T/filelist | sed -e 's/\/[^/]*$//' | sort | uniq))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001459 if [[ ${#lines[@]} = 0 ]]; then
1460 echo "Not found"
1461 return
1462 fi
1463 local pathname
1464 local choice
1465 if [[ ${#lines[@]} > 1 ]]; then
1466 while [[ -z "$pathname" ]]; do
1467 local index=1
1468 local line
1469 for line in ${lines[@]}; do
1470 printf "%6s %s\n" "[$index]" $line
Doug Zongker29034982011-04-22 08:16:56 -07001471 index=$(($index + 1))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001472 done
1473 echo
1474 echo -n "Select one: "
1475 unset choice
1476 read choice
1477 if [[ $choice -gt ${#lines[@]} || $choice -lt 1 ]]; then
1478 echo "Invalid choice"
1479 continue
1480 fi
Kan-Ru Chen07453762010-07-05 15:53:47 +08001481 pathname=${lines[$(($choice-1))]}
The Android Open Source Project88b60792009-03-03 19:28:42 -08001482 done
1483 else
The Android Open Source Project88b60792009-03-03 19:28:42 -08001484 pathname=${lines[0]}
1485 fi
Ying Wang9cd17642012-12-13 10:52:07 -08001486 \cd $T/$pathname
The Android Open Source Project88b60792009-03-03 19:28:42 -08001487}
1488
Narayan Kamath9260bba2014-01-17 10:05:25 +00001489# Force JAVA_HOME to point to java 1.7 or java 1.6 if it isn't already set.
1490#
1491# Note that the MacOS path for java 1.7 includes a minor revision number (sigh).
1492# For some reason, installing the JDK doesn't make it show up in the
1493# JavaVM.framework/Versions/1.7/ folder.
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -05001494function set_java_home() {
Narayan Kamath9260bba2014-01-17 10:05:25 +00001495 # Clear the existing JAVA_HOME value if we set it ourselves, so that
Narayan Kamathc84889b2014-04-01 14:16:26 +01001496 # we can reset it later, depending on the version of java the build
1497 # system needs.
Narayan Kamath9260bba2014-01-17 10:05:25 +00001498 #
1499 # If we don't do this, the JAVA_HOME value set by the first call to
1500 # build/envsetup.sh will persist forever.
1501 if [ -n "$ANDROID_SET_JAVA_HOME" ]; then
1502 export JAVA_HOME=""
1503 fi
1504
Andy McFaddenbd960942010-06-24 12:52:51 -07001505 if [ ! "$JAVA_HOME" ]; then
Narayan Kamathc84889b2014-04-01 14:16:26 +01001506 if [ -n "$LEGACY_USE_JAVA6" ]; then
Andy McFaddenbd960942010-06-24 12:52:51 -07001507 case `uname -s` in
1508 Darwin)
1509 export JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Versions/1.6/Home
1510 ;;
1511 *)
1512 export JAVA_HOME=/usr/lib/jvm/java-6-sun
1513 ;;
1514 esac
Narayan Kamath9260bba2014-01-17 10:05:25 +00001515 else
1516 case `uname -s` in
1517 Darwin)
Jason Parks13b2e192014-04-28 13:32:10 -05001518 export JAVA_HOME=$(/usr/libexec/java_home -v 1.7)
Narayan Kamath9260bba2014-01-17 10:05:25 +00001519 ;;
1520 *)
1521 export JAVA_HOME=/usr/lib/jvm/java-7-openjdk-amd64
1522 ;;
1523 esac
1524 fi
1525
1526 # Keep track of the fact that we set JAVA_HOME ourselves, so that
1527 # we can change it on the next envsetup.sh, if required.
1528 export ANDROID_SET_JAVA_HOME=true
Jeff Hamilton04be0d82010-06-07 15:03:54 -05001529 fi
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -05001530}
Jeff Hamilton04be0d82010-06-07 15:03:54 -05001531
Alex Rayf0d08eb2013-03-08 15:15:06 -08001532# Print colored exit condition
1533function pez {
Michael Wrighteb733842013-03-08 17:34:02 -08001534 "$@"
1535 local retval=$?
1536 if [ $retval -ne 0 ]
1537 then
1538 echo -e "\e[0;31mFAILURE\e[00m"
1539 else
1540 echo -e "\e[0;32mSUCCESS\e[00m"
1541 fi
1542 return $retval
Alex Rayf0d08eb2013-03-08 15:15:06 -08001543}
1544
Ying Wanged21d4c2014-08-24 22:14:19 -07001545function get_make_command()
1546{
1547 echo command make
1548}
1549
Ed Heylcc6be0a2014-06-18 14:55:58 -07001550function make()
1551{
1552 local start_time=$(date +"%s")
Ying Wanged21d4c2014-08-24 22:14:19 -07001553 $(get_make_command) "$@"
Ed Heylcc6be0a2014-06-18 14:55:58 -07001554 local ret=$?
1555 local end_time=$(date +"%s")
1556 local tdiff=$(($end_time-$start_time))
1557 local hours=$(($tdiff / 3600 ))
1558 local mins=$((($tdiff % 3600) / 60))
1559 local secs=$(($tdiff % 60))
1560 echo
1561 if [ $ret -eq 0 ] ; then
Ed Heylc6d11f82014-06-27 13:32:39 -07001562 echo -n -e "#### make completed successfully "
Ed Heylcc6be0a2014-06-18 14:55:58 -07001563 else
Ed Heylc6d11f82014-06-27 13:32:39 -07001564 echo -n -e "#### make failed to build some targets "
Ed Heylcc6be0a2014-06-18 14:55:58 -07001565 fi
1566 if [ $hours -gt 0 ] ; then
1567 printf "(%02g:%02g:%02g (hh:mm:ss))" $hours $mins $secs
1568 elif [ $mins -gt 0 ] ; then
1569 printf "(%02g:%02g (mm:ss))" $mins $secs
1570 elif [ $secs -gt 0 ] ; then
1571 printf "(%s seconds)" $secs
1572 fi
Ed Heylc6d11f82014-06-27 13:32:39 -07001573 echo -e " ####"
Ed Heylcc6be0a2014-06-18 14:55:58 -07001574 echo
1575 return $ret
1576}
1577
1578
1579
Raphael Moll70a86b02011-06-20 16:03:14 -07001580if [ "x$SHELL" != "x/bin/bash" ]; then
1581 case `ps -o command -p $$` in
1582 *bash*)
1583 ;;
1584 *)
1585 echo "WARNING: Only bash is supported, use of other shell would lead to erroneous results"
1586 ;;
1587 esac
1588fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001589
1590# Execute the contents of any vendorsetup.sh files we can find.
Ying Wang506410a2014-07-09 15:37:34 -07001591for f in `test -d device && find -L device -maxdepth 4 -name 'vendorsetup.sh' 2> /dev/null` \
1592 `test -d vendor && find -L vendor -maxdepth 4 -name 'vendorsetup.sh' 2> /dev/null`
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001593do
1594 echo "including $f"
1595 . $f
1596done
1597unset f
Kenny Root52aa81c2011-07-15 11:07:06 -07001598
1599addcompletions