blob: 47dab37f8eddccc62d29ae2d5d31980be783cd04 [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>
5- tapas: tapas [<App1> <App2> ...] [arm|x86|mips] [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.
8- mm: Builds all of the modules in the current directory.
9- mmm: Builds all of the modules in the supplied directories.
10- cgrep: Greps on all local C/C++ files.
11- jgrep: Greps on all local Java files.
12- resgrep: Greps on all local res/*.xml files.
The Android Open Source Project88b60792009-03-03 19:28:42 -080013- godir: Go to the directory containing a file.
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070014
15Look at the source to view more functions. The complete list is:
16EOF
17 T=$(gettop)
18 local A
19 A=""
20 for i in `cat $T/build/envsetup.sh | sed -n "/^function /s/function \([a-z_]*\).*/\1/p" | sort`; do
21 A="$A $i"
22 done
23 echo $A
24}
25
26# Get the value of a build variable as an absolute path.
27function get_abs_build_var()
28{
29 T=$(gettop)
30 if [ ! "$T" ]; then
31 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
32 return
33 fi
Brian Carlstrom177285a2010-04-06 13:22:02 -070034 (cd $T; CALLED_FROM_SETUP=true BUILD_SYSTEM=build/core \
35 make --no-print-directory -C "$T" -f build/core/config.mk dumpvar-abs-$1)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070036}
37
38# Get the exact value of a build variable.
39function get_build_var()
40{
41 T=$(gettop)
42 if [ ! "$T" ]; then
43 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
44 return
45 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -080046 CALLED_FROM_SETUP=true BUILD_SYSTEM=build/core \
47 make --no-print-directory -C "$T" -f build/core/config.mk dumpvar-$1
48}
49
50# check to see if the supplied product is one we can build
51function check_product()
52{
53 T=$(gettop)
54 if [ ! "$T" ]; then
55 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
56 return
57 fi
58 CALLED_FROM_SETUP=true BUILD_SYSTEM=build/core \
Jeff Browne33ba4c2011-07-11 22:11:46 -070059 TARGET_PRODUCT=$1 \
60 TARGET_BUILD_VARIANT= \
61 TARGET_BUILD_TYPE= \
Joe Onoratoda12daf2010-06-09 18:18:31 -070062 TARGET_BUILD_APPS= \
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -080063 get_build_var TARGET_DEVICE > /dev/null
64 # hide successful answers, but allow the errors to show
65}
66
67VARIANT_CHOICES=(user userdebug eng)
68
69# check to see if the supplied variant is valid
70function check_variant()
71{
72 for v in ${VARIANT_CHOICES[@]}
73 do
74 if [ "$v" = "$1" ]
75 then
76 return 0
77 fi
78 done
79 return 1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070080}
81
82function setpaths()
83{
84 T=$(gettop)
85 if [ ! "$T" ]; then
86 echo "Couldn't locate the top of the tree. Try setting TOP."
87 return
88 fi
89
90 ##################################################################
91 # #
92 # Read me before you modify this code #
93 # #
94 # This function sets ANDROID_BUILD_PATHS to what it is adding #
95 # to PATH, and the next time it is run, it removes that from #
96 # PATH. This is required so lunch can be run more than once #
97 # and still have working paths. #
98 # #
99 ##################################################################
100
Raphael Mollc639c782011-06-20 17:25:01 -0700101 # Note: on windows/cygwin, ANDROID_BUILD_PATHS will contain spaces
102 # due to "C:\Program Files" being in the path.
103
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700104 # out with the old
Raphael Mollc639c782011-06-20 17:25:01 -0700105 if [ -n "$ANDROID_BUILD_PATHS" ] ; then
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700106 export PATH=${PATH/$ANDROID_BUILD_PATHS/}
107 fi
Raphael Mollc639c782011-06-20 17:25:01 -0700108 if [ -n "$ANDROID_PRE_BUILD_PATHS" ] ; then
Doug Zongker29034982011-04-22 08:16:56 -0700109 export PATH=${PATH/$ANDROID_PRE_BUILD_PATHS/}
110 # strip trailing ':', if any
111 export PATH=${PATH/%:/}
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500112 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700113
114 # and in with the new
115 CODE_REVIEWS=
116 prebuiltdir=$(getprebuilt)
Jing Yuf5172c72012-03-29 20:45:50 -0700117 gccprebuiltdir=$(get_abs_build_var ANDROID_GCC_PREBUILTS)
Raphael732936d2011-06-22 14:35:32 -0700118
Raphael Mollc639c782011-06-20 17:25:01 -0700119 # The gcc toolchain does not exists for windows/cygwin. In this case, do not reference it.
Raphael732936d2011-06-22 14:35:32 -0700120 export ANDROID_EABI_TOOLCHAIN=
David 'Digit' Turner2056c252012-04-17 14:50:47 +0200121 local ARCH=$(get_build_var TARGET_ARCH)
122 case $ARCH in
H.J. Lu402d7f32012-04-29 07:34:54 -0700123 x86) toolchaindir=x86/i686-linux-android-4.6/bin
Mark D Horn7d0ede72012-03-14 14:20:30 -0700124 ;;
David 'Digit' Turner2056c252012-04-17 14:50:47 +0200125 arm) toolchaindir=arm/arm-linux-androideabi-4.6/bin
126 ;;
Raghu Gandham8da43102012-07-25 19:57:22 -0700127 mips) toolchaindir=mips/mipsel-linux-android-4.6/bin
128 ;;
David 'Digit' Turner2056c252012-04-17 14:50:47 +0200129 *)
130 echo "Can't find toolchain for unknown architecture: $ARCH"
131 toolchaindir=xxxxxxxxx
Mark D Horn7d0ede72012-03-14 14:20:30 -0700132 ;;
133 esac
Jing Yuf5172c72012-03-29 20:45:50 -0700134 if [ -d "$gccprebuiltdir/$toolchaindir" ]; then
135 export ANDROID_EABI_TOOLCHAIN=$gccprebuiltdir/$toolchaindir
Raphael Mollc639c782011-06-20 17:25:01 -0700136 fi
Raphael732936d2011-06-22 14:35:32 -0700137
Bruce Beare42ced6d2012-07-17 21:40:01 -0700138 unset ARM_EABI_TOOLCHAIN ARM_EABI_TOOLCHAIN_PATH
Ying Wang08f5e9a2012-04-17 18:10:11 -0700139 case $ARCH in
Bruce Beare42ced6d2012-07-17 21:40:01 -0700140 arm)
141 toolchaindir=arm/arm-eabi-4.6/bin
142 if [ -d "$gccprebuiltdir/$toolchaindir" ]; then
143 export ARM_EABI_TOOLCHAIN="$gccprebuiltdir/$toolchaindir"
144 ARM_EABI_TOOLCHAIN_PATH=":$gccprebuiltdir/$toolchaindir"
145 fi
Ying Wang08f5e9a2012-04-17 18:10:11 -0700146 ;;
Raghu Gandham8da43102012-07-25 19:57:22 -0700147 mips) toolchaindir=mips/mips-eabi-4.4.3/bin
148 ;;
Ying Wang08f5e9a2012-04-17 18:10:11 -0700149 *)
Bruce Beare42ced6d2012-07-17 21:40:01 -0700150 # No need to set ARM_EABI_TOOLCHAIN for other ARCHs
Ying Wang08f5e9a2012-04-17 18:10:11 -0700151 ;;
152 esac
Ying Wang08f5e9a2012-04-17 18:10:11 -0700153
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700154 export ANDROID_TOOLCHAIN=$ANDROID_EABI_TOOLCHAIN
155 export ANDROID_QTOOLS=$T/development/emulator/qtools
Robert Greenwalt0987f032012-04-27 10:02:37 -0700156 export ANDROID_DEV_SCRIPTS=$T/development/scripts
Bruce Beare42ced6d2012-07-17 21:40:01 -0700157 export ANDROID_BUILD_PATHS=:$(get_build_var ANDROID_BUILD_PATHS):$ANDROID_QTOOLS:$ANDROID_TOOLCHAIN$ARM_EABI_TOOLCHAIN_PATH$CODE_REVIEWS:$ANDROID_DEV_SCRIPTS
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700158 export PATH=$PATH$ANDROID_BUILD_PATHS
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800159
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500160 unset ANDROID_JAVA_TOOLCHAIN
Ji-Hwan Lee752ad062011-07-04 14:09:47 +0900161 unset ANDROID_PRE_BUILD_PATHS
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500162 if [ -n "$JAVA_HOME" ]; then
163 export ANDROID_JAVA_TOOLCHAIN=$JAVA_HOME/bin
Ji-Hwan Lee752ad062011-07-04 14:09:47 +0900164 export ANDROID_PRE_BUILD_PATHS=$ANDROID_JAVA_TOOLCHAIN:
165 export PATH=$ANDROID_PRE_BUILD_PATHS$PATH
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500166 fi
167
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800168 unset ANDROID_PRODUCT_OUT
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700169 export ANDROID_PRODUCT_OUT=$(get_abs_build_var PRODUCT_OUT)
170 export OUT=$ANDROID_PRODUCT_OUT
171
Jeff Brown8fd5cce2011-03-24 17:03:06 -0700172 unset ANDROID_HOST_OUT
173 export ANDROID_HOST_OUT=$(get_abs_build_var HOST_OUT)
174
Ben Cheng057fde12011-11-28 13:55:14 -0800175 # needed for processing samples collected by perf counters
176 unset OPROFILE_EVENTS_DIR
177 export OPROFILE_EVENTS_DIR=$T/external/oprofile/events
178
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800179 # needed for building linux on MacOS
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700180 # TODO: fix the path
181 #export HOST_EXTRACFLAGS="-I "$T/system/kernel_headers/host_include
182}
183
184function printconfig()
185{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800186 T=$(gettop)
187 if [ ! "$T" ]; then
188 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
189 return
190 fi
191 get_build_var report_config
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700192}
193
194function set_stuff_for_environment()
195{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800196 settitle
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500197 set_java_home
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800198 setpaths
199 set_sequence_number
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700200
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800201 export ANDROID_BUILD_TOP=$(gettop)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700202}
203
204function set_sequence_number()
205{
Joe Onoratoaee4daa2010-06-23 14:03:13 -0700206 export BUILD_ENV_SEQUENCE_NUMBER=10
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700207}
208
209function settitle()
210{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800211 if [ "$STAY_OFF_MY_LAWN" = "" ]; then
Raghu Gandham8da43102012-07-25 19:57:22 -0700212 local arch=$(gettargetarch)
Joe Onoratoda12daf2010-06-09 18:18:31 -0700213 local product=$TARGET_PRODUCT
214 local variant=$TARGET_BUILD_VARIANT
215 local apps=$TARGET_BUILD_APPS
216 if [ -z "$apps" ]; then
Raghu Gandham8da43102012-07-25 19:57:22 -0700217 export PROMPT_COMMAND="echo -ne \"\033]0;[${arch}-${product}-${variant}] ${USER}@${HOSTNAME}: ${PWD}\007\""
Joe Onoratoda12daf2010-06-09 18:18:31 -0700218 else
Raghu Gandham8da43102012-07-25 19:57:22 -0700219 export PROMPT_COMMAND="echo -ne \"\033]0;[$arch $apps $variant] ${USER}@${HOSTNAME}: ${PWD}\007\""
Joe Onoratoda12daf2010-06-09 18:18:31 -0700220 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800221 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700222}
223
Kenny Root52aa81c2011-07-15 11:07:06 -0700224function addcompletions()
225{
226 local T dir f
227
228 # Keep us from trying to run in something that isn't bash.
229 if [ -z "${BASH_VERSION}" ]; then
230 return
231 fi
232
233 # Keep us from trying to run in bash that's too old.
234 if [ ${BASH_VERSINFO[0]} -lt 3 ]; then
235 return
236 fi
237
238 dir="sdk/bash_completion"
239 if [ -d ${dir} ]; then
Kenny Root7546d612011-07-18 13:11:34 -0700240 for f in `/bin/ls ${dir}/[a-z]*.bash 2> /dev/null`; do
Kenny Root52aa81c2011-07-15 11:07:06 -0700241 echo "including $f"
242 . $f
243 done
244 fi
245}
246
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700247function choosetype()
248{
249 echo "Build type choices are:"
250 echo " 1. release"
251 echo " 2. debug"
252 echo
253
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800254 local DEFAULT_NUM DEFAULT_VALUE
Jeff Browne33ba4c2011-07-11 22:11:46 -0700255 DEFAULT_NUM=1
256 DEFAULT_VALUE=release
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700257
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800258 export TARGET_BUILD_TYPE=
259 local ANSWER
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700260 while [ -z $TARGET_BUILD_TYPE ]
261 do
262 echo -n "Which would you like? ["$DEFAULT_NUM"] "
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800263 if [ -z "$1" ] ; then
264 read ANSWER
265 else
266 echo $1
267 ANSWER=$1
268 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700269 case $ANSWER in
270 "")
271 export TARGET_BUILD_TYPE=$DEFAULT_VALUE
272 ;;
273 1)
274 export TARGET_BUILD_TYPE=release
275 ;;
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800276 release)
277 export TARGET_BUILD_TYPE=release
278 ;;
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700279 2)
280 export TARGET_BUILD_TYPE=debug
281 ;;
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800282 debug)
283 export TARGET_BUILD_TYPE=debug
284 ;;
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700285 *)
286 echo
287 echo "I didn't understand your response. Please try again."
288 echo
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700289 ;;
290 esac
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800291 if [ -n "$1" ] ; then
292 break
293 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700294 done
295
296 set_stuff_for_environment
297}
298
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800299#
300# This function isn't really right: It chooses a TARGET_PRODUCT
301# based on the list of boards. Usually, that gets you something
302# that kinda works with a generic product, but really, you should
303# pick a product by name.
304#
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700305function chooseproduct()
306{
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700307 if [ "x$TARGET_PRODUCT" != x ] ; then
308 default_value=$TARGET_PRODUCT
309 else
Jeff Browne33ba4c2011-07-11 22:11:46 -0700310 default_value=full
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700311 fi
312
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800313 export TARGET_PRODUCT=
314 local ANSWER
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700315 while [ -z "$TARGET_PRODUCT" ]
316 do
Joe Onorato8849aed2009-04-29 15:56:47 -0700317 echo -n "Which product would you like? [$default_value] "
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800318 if [ -z "$1" ] ; then
319 read ANSWER
320 else
321 echo $1
322 ANSWER=$1
323 fi
324
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700325 if [ -z "$ANSWER" ] ; then
326 export TARGET_PRODUCT=$default_value
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800327 else
328 if check_product $ANSWER
329 then
330 export TARGET_PRODUCT=$ANSWER
331 else
332 echo "** Not a valid product: $ANSWER"
333 fi
334 fi
335 if [ -n "$1" ] ; then
336 break
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700337 fi
338 done
339
340 set_stuff_for_environment
341}
342
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800343function choosevariant()
344{
345 echo "Variant choices are:"
346 local index=1
347 local v
348 for v in ${VARIANT_CHOICES[@]}
349 do
350 # The product name is the name of the directory containing
351 # the makefile we found, above.
352 echo " $index. $v"
353 index=$(($index+1))
354 done
355
356 local default_value=eng
357 local ANSWER
358
359 export TARGET_BUILD_VARIANT=
360 while [ -z "$TARGET_BUILD_VARIANT" ]
361 do
362 echo -n "Which would you like? [$default_value] "
363 if [ -z "$1" ] ; then
364 read ANSWER
365 else
366 echo $1
367 ANSWER=$1
368 fi
369
370 if [ -z "$ANSWER" ] ; then
371 export TARGET_BUILD_VARIANT=$default_value
372 elif (echo -n $ANSWER | grep -q -e "^[0-9][0-9]*$") ; then
373 if [ "$ANSWER" -le "${#VARIANT_CHOICES[@]}" ] ; then
Kan-Ru Chen07453762010-07-05 15:53:47 +0800374 export TARGET_BUILD_VARIANT=${VARIANT_CHOICES[$(($ANSWER-1))]}
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800375 fi
376 else
377 if check_variant $ANSWER
378 then
379 export TARGET_BUILD_VARIANT=$ANSWER
380 else
381 echo "** Not a valid variant: $ANSWER"
382 fi
383 fi
384 if [ -n "$1" ] ; then
385 break
386 fi
387 done
388}
389
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700390function choosecombo()
391{
Jeff Browne33ba4c2011-07-11 22:11:46 -0700392 choosetype $1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700393
394 echo
395 echo
Jeff Browne33ba4c2011-07-11 22:11:46 -0700396 chooseproduct $2
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700397
398 echo
399 echo
Jeff Browne33ba4c2011-07-11 22:11:46 -0700400 choosevariant $3
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800401
402 echo
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700403 set_stuff_for_environment
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800404 printconfig
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700405}
406
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800407# Clear this variable. It will be built up again when the vendorsetup.sh
408# files are included at the end of this file.
409unset LUNCH_MENU_CHOICES
410function add_lunch_combo()
411{
412 local new_combo=$1
413 local c
414 for c in ${LUNCH_MENU_CHOICES[@]} ; do
415 if [ "$new_combo" = "$c" ] ; then
416 return
417 fi
418 done
419 LUNCH_MENU_CHOICES=(${LUNCH_MENU_CHOICES[@]} $new_combo)
420}
421
422# add the default one here
Jean-Baptiste Queru45038e02010-07-01 09:22:53 -0700423add_lunch_combo full-eng
Jean-Baptiste Queru6c2df3e2010-07-15 14:04:39 -0700424add_lunch_combo full_x86-eng
Bruce Beareba366c42011-02-15 16:46:08 -0800425add_lunch_combo vbox_x86-eng
Raghu Gandham8da43102012-07-25 19:57:22 -0700426add_lunch_combo full_mips-eng
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800427
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700428function print_lunch_menu()
429{
430 local uname=$(uname)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700431 echo
432 echo "You're building on" $uname
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700433 echo
434 echo "Lunch menu... pick a combo:"
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800435
436 local i=1
437 local choice
438 for choice in ${LUNCH_MENU_CHOICES[@]}
439 do
440 echo " $i. $choice"
441 i=$(($i+1))
442 done
443
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700444 echo
445}
446
447function lunch()
448{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800449 local answer
450
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700451 if [ "$1" ] ; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800452 answer=$1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700453 else
454 print_lunch_menu
Jean-Baptiste Queru0332f0a2010-10-22 09:52:09 -0700455 echo -n "Which would you like? [full-eng] "
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800456 read answer
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700457 fi
458
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800459 local selection=
460
461 if [ -z "$answer" ]
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700462 then
Jean-Baptiste Queru0332f0a2010-10-22 09:52:09 -0700463 selection=full-eng
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800464 elif (echo -n $answer | grep -q -e "^[0-9][0-9]*$")
465 then
466 if [ $answer -le ${#LUNCH_MENU_CHOICES[@]} ]
467 then
Kan-Ru Chen07453762010-07-05 15:53:47 +0800468 selection=${LUNCH_MENU_CHOICES[$(($answer-1))]}
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800469 fi
470 elif (echo -n $answer | grep -q -e "^[^\-][^\-]*-[^\-][^\-]*$")
471 then
472 selection=$answer
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700473 fi
474
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800475 if [ -z "$selection" ]
476 then
477 echo
478 echo "Invalid lunch combo: $answer"
479 return 1
480 fi
481
Joe Onoratoda12daf2010-06-09 18:18:31 -0700482 export TARGET_BUILD_APPS=
483
Jeff Browne33ba4c2011-07-11 22:11:46 -0700484 local product=$(echo -n $selection | sed -e "s/-.*$//")
485 check_product $product
486 if [ $? -ne 0 ]
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800487 then
Jeff Browne33ba4c2011-07-11 22:11:46 -0700488 echo
489 echo "** Don't have a product spec for: '$product'"
490 echo "** Do you have the right repo manifest?"
491 product=
492 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800493
Jeff Browne33ba4c2011-07-11 22:11:46 -0700494 local variant=$(echo -n $selection | sed -e "s/^[^\-]*-//")
495 check_variant $variant
496 if [ $? -ne 0 ]
497 then
498 echo
499 echo "** Invalid variant: '$variant'"
500 echo "** Must be one of ${VARIANT_CHOICES[@]}"
501 variant=
502 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800503
Jeff Browne33ba4c2011-07-11 22:11:46 -0700504 if [ -z "$product" -o -z "$variant" ]
505 then
506 echo
507 return 1
508 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800509
Jeff Browne33ba4c2011-07-11 22:11:46 -0700510 export TARGET_PRODUCT=$product
511 export TARGET_BUILD_VARIANT=$variant
512 export TARGET_BUILD_TYPE=release
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700513
514 echo
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800515
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700516 set_stuff_for_environment
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800517 printconfig
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700518}
519
Jeff Davidson513d7a42010-08-02 10:00:44 -0700520# Tab completion for lunch.
521function _lunch()
522{
523 local cur prev opts
524 COMPREPLY=()
525 cur="${COMP_WORDS[COMP_CWORD]}"
526 prev="${COMP_WORDS[COMP_CWORD-1]}"
527
528 COMPREPLY=( $(compgen -W "${LUNCH_MENU_CHOICES[*]}" -- ${cur}) )
529 return 0
530}
531complete -F _lunch lunch
532
Joe Onoratoda12daf2010-06-09 18:18:31 -0700533# Configures the build to build unbundled apps.
534# Run tapas with one ore more app names (from LOCAL_PACKAGE_NAME)
535function tapas()
536{
Ying Wang67f02922012-08-22 10:25:20 -0700537 local arch=$(echo -n $(echo $* | xargs -n 1 echo | \grep -E '^(arm|x86|mips)$'))
Jeff Hamilton293f9392011-11-18 17:15:25 -0600538 local variant=$(echo -n $(echo $* | xargs -n 1 echo | \grep -E '^(user|userdebug|eng)$'))
Ying Wang67f02922012-08-22 10:25:20 -0700539 local apps=$(echo -n $(echo $* | xargs -n 1 echo | \grep -E -v '^(user|userdebug|eng|arm|x86|mips)$'))
Joe Onoratoda12daf2010-06-09 18:18:31 -0700540
Ying Wang67f02922012-08-22 10:25:20 -0700541 if [ $(echo $arch | wc -w) -gt 1 ]; then
542 echo "tapas: Error: Multiple build archs supplied: $arch"
543 return
544 fi
Joe Onoratoda12daf2010-06-09 18:18:31 -0700545 if [ $(echo $variant | wc -w) -gt 1 ]; then
546 echo "tapas: Error: Multiple build variants supplied: $variant"
547 return
548 fi
Ying Wang67f02922012-08-22 10:25:20 -0700549
550 local product=full
551 case $arch in
552 x86) product=full_x86;;
553 mips) product=full_mips;;
554 esac
Joe Onoratoda12daf2010-06-09 18:18:31 -0700555 if [ -z "$variant" ]; then
556 variant=eng
557 fi
Ying Wangc048c9b2010-06-24 15:08:33 -0700558 if [ -z "$apps" ]; then
559 apps=all
560 fi
Joe Onoratoda12daf2010-06-09 18:18:31 -0700561
Ying Wang67f02922012-08-22 10:25:20 -0700562 export TARGET_PRODUCT=$product
Joe Onoratoda12daf2010-06-09 18:18:31 -0700563 export TARGET_BUILD_VARIANT=$variant
Joe Onoratoda12daf2010-06-09 18:18:31 -0700564 export TARGET_BUILD_TYPE=release
565 export TARGET_BUILD_APPS=$apps
566
567 set_stuff_for_environment
568 printconfig
569}
570
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700571function gettop
572{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800573 local TOPFILE=build/core/envsetup.mk
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700574 if [ -n "$TOP" -a -f "$TOP/$TOPFILE" ] ; then
575 echo $TOP
576 else
577 if [ -f $TOPFILE ] ; then
Dan Bornsteind0b274d2009-11-24 15:48:50 -0800578 # The following circumlocution (repeated below as well) ensures
579 # that we record the true directory name and not one that is
580 # faked up with symlink names.
581 PWD= /bin/pwd
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700582 else
583 # We redirect cd to /dev/null in case it's aliased to
584 # a command that prints something as a side-effect
585 # (like pushd)
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800586 local HERE=$PWD
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700587 T=
588 while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do
589 cd .. > /dev/null
Dan Bornsteind0b274d2009-11-24 15:48:50 -0800590 T=`PWD= /bin/pwd`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700591 done
592 cd $HERE > /dev/null
593 if [ -f "$T/$TOPFILE" ]; then
594 echo $T
595 fi
596 fi
597 fi
598}
599
600function m()
601{
602 T=$(gettop)
603 if [ "$T" ]; then
604 make -C $T $@
605 else
606 echo "Couldn't locate the top of the tree. Try setting TOP."
607 fi
608}
609
610function findmakefile()
611{
612 TOPFILE=build/core/envsetup.mk
613 # We redirect cd to /dev/null in case it's aliased to
614 # a command that prints something as a side-effect
615 # (like pushd)
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800616 local HERE=$PWD
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700617 T=
618 while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do
Ying Wang11b15b12012-10-11 15:05:07 -0700619 T=`PWD= /bin/pwd`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700620 if [ -f "$T/Android.mk" ]; then
621 echo $T/Android.mk
622 cd $HERE > /dev/null
623 return
624 fi
625 cd .. > /dev/null
626 done
627 cd $HERE > /dev/null
628}
629
630function mm()
631{
632 # If we're sitting in the root of the build tree, just do a
633 # normal make.
634 if [ -f build/core/envsetup.mk -a -f Makefile ]; then
635 make $@
636 else
637 # Find the closest Android.mk file.
638 T=$(gettop)
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800639 local M=$(findmakefile)
Robert Greenwalt3c794d72009-07-15 15:07:44 -0700640 # Remove the path to top as the makefilepath needs to be relative
641 local M=`echo $M|sed 's:'$T'/::'`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700642 if [ ! "$T" ]; then
643 echo "Couldn't locate the top of the tree. Try setting TOP."
644 elif [ ! "$M" ]; then
645 echo "Couldn't locate a makefile from the current directory."
646 else
Ying Wang01884142010-07-20 16:18:16 -0700647 ONE_SHOT_MAKEFILE=$M make -C $T all_modules $@
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700648 fi
649 fi
650}
651
652function mmm()
653{
654 T=$(gettop)
655 if [ "$T" ]; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800656 local MAKEFILE=
Alon Albert68895a92011-11-30 12:40:19 -0800657 local MODULES=
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800658 local ARGS=
659 local DIR TO_CHOP
The Android Open Source Project88b60792009-03-03 19:28:42 -0800660 local DASH_ARGS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^-.*$/')
661 local DIRS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^[^-].*$/')
662 for DIR in $DIRS ; do
Alon Albert68895a92011-11-30 12:40:19 -0800663 MODULES=`echo $DIR | sed -n -e 's/.*:\(.*$\)/\1/p' | sed 's/,/ /'`
664 if [ "$MODULES" = "" ]; then
665 MODULES=all_modules
666 fi
667 DIR=`echo $DIR | sed -e 's/:.*//' -e 's:/$::'`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700668 if [ -f $DIR/Android.mk ]; then
Brian Carlstromc634d2c2010-09-17 12:25:50 -0700669 TO_CHOP=`(cd -P -- $T && pwd -P) | wc -c | tr -d ' '`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700670 TO_CHOP=`expr $TO_CHOP + 1`
Gilles Debunne8a20f582010-02-17 15:56:45 -0800671 START=`PWD= /bin/pwd`
672 MFILE=`echo $START | cut -c${TO_CHOP}-`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700673 if [ "$MFILE" = "" ] ; then
674 MFILE=$DIR/Android.mk
675 else
676 MFILE=$MFILE/$DIR/Android.mk
677 fi
678 MAKEFILE="$MAKEFILE $MFILE"
679 else
680 if [ "$DIR" = snod ]; then
681 ARGS="$ARGS snod"
682 elif [ "$DIR" = showcommands ]; then
683 ARGS="$ARGS showcommands"
Ying Wang01884142010-07-20 16:18:16 -0700684 elif [ "$DIR" = dist ]; then
685 ARGS="$ARGS dist"
Ying Wang015edd22011-01-20 15:01:56 -0800686 elif [ "$DIR" = incrementaljavac ]; then
687 ARGS="$ARGS incrementaljavac"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700688 else
689 echo "No Android.mk in $DIR."
Joe Onorato51e61822009-04-13 15:36:15 -0400690 return 1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700691 fi
692 fi
693 done
Alon Albert68895a92011-11-30 12:40:19 -0800694 ONE_SHOT_MAKEFILE="$MAKEFILE" make -C $T $DASH_ARGS $MODULES $ARGS
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700695 else
696 echo "Couldn't locate the top of the tree. Try setting TOP."
697 fi
698}
699
700function croot()
701{
702 T=$(gettop)
703 if [ "$T" ]; then
704 cd $(gettop)
705 else
706 echo "Couldn't locate the top of the tree. Try setting TOP."
707 fi
708}
709
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700710function cproj()
711{
712 TOPFILE=build/core/envsetup.mk
713 # We redirect cd to /dev/null in case it's aliased to
714 # a command that prints something as a side-effect
715 # (like pushd)
716 local HERE=$PWD
717 T=
718 while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do
719 T=$PWD
720 if [ -f "$T/Android.mk" ]; then
721 cd $T
722 return
723 fi
724 cd .. > /dev/null
725 done
726 cd $HERE > /dev/null
727 echo "can't find Android.mk"
728}
729
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700730function pid()
731{
732 local EXE="$1"
733 if [ "$EXE" ] ; then
734 local PID=`adb shell ps | fgrep $1 | sed -e 's/[^ ]* *\([0-9]*\).*/\1/'`
735 echo "$PID"
736 else
737 echo "usage: pid name"
738 fi
739}
740
Christopher Tate744ee802009-11-12 15:33:08 -0800741# systemstack - dump the current stack trace of all threads in the system process
742# to the usual ANR traces file
743function systemstack()
744{
745 adb shell echo '""' '>>' /data/anr/traces.txt && adb shell chmod 776 /data/anr/traces.txt && adb shell kill -3 $(pid system_server)
746}
747
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700748function gdbclient()
749{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800750 local OUT_ROOT=$(get_abs_build_var PRODUCT_OUT)
751 local OUT_SYMBOLS=$(get_abs_build_var TARGET_OUT_UNSTRIPPED)
752 local OUT_SO_SYMBOLS=$(get_abs_build_var TARGET_OUT_SHARED_LIBRARIES_UNSTRIPPED)
753 local OUT_EXE_SYMBOLS=$(get_abs_build_var TARGET_OUT_EXECUTABLES_UNSTRIPPED)
754 local PREBUILTS=$(get_abs_build_var ANDROID_PREBUILTS)
Nick Kralevich0ab21d32011-11-11 09:02:01 -0800755 local ARCH=$(get_build_var TARGET_ARCH)
756 local GDB
757 case "$ARCH" in
Jean-Baptiste Querufeec98b2012-05-16 13:18:39 -0700758 x86) GDB=i686-linux-android-gdb;;
Nick Kralevich0ab21d32011-11-11 09:02:01 -0800759 arm) GDB=arm-linux-androideabi-gdb;;
Raghu Gandham8da43102012-07-25 19:57:22 -0700760 mips) GDB=mipsel-linux-android-gdb;;
Nick Kralevich0ab21d32011-11-11 09:02:01 -0800761 *) echo "Unknown arch $ARCH"; return 1;;
762 esac
763
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700764 if [ "$OUT_ROOT" -a "$PREBUILTS" ]; then
765 local EXE="$1"
766 if [ "$EXE" ] ; then
767 EXE=$1
768 else
769 EXE="app_process"
770 fi
771
772 local PORT="$2"
773 if [ "$PORT" ] ; then
774 PORT=$2
775 else
776 PORT=":5039"
777 fi
778
Chris Craik20c136a2012-11-09 18:02:19 -0800779 local PID="$3"
780 if [ "$PID" ] ; then
781 if [[ ! "$PID" =~ ^[0-9]+$ ]] ; then
Grace Klobae9d04bf2011-04-30 11:04:05 -0700782 PID=`pid $3`
Chris Craik20c136a2012-11-09 18:02:19 -0800783 if [[ ! "$PID" =~ ^[0-9]+$ ]] ; then
784 # that likely didn't work because of returning multiple processes
785 # try again, filtering by root processes (don't contain colon)
786 PID=`adb shell ps | grep $3 | grep -v ":" | awk '{print $2}'`
787 if [[ ! "$PID" =~ ^[0-9]+$ ]]
788 then
789 echo "Couldn't resolve '$3' to single PID"
790 return 1
791 else
792 echo ""
793 echo "WARNING: multiple processes matching '$3' observed, using root process"
794 echo ""
795 fi
796 fi
Grace Klobae9d04bf2011-04-30 11:04:05 -0700797 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700798 adb forward "tcp$PORT" "tcp$PORT"
799 adb shell gdbserver $PORT --attach $PID &
800 sleep 2
801 else
802 echo ""
803 echo "If you haven't done so already, do this first on the device:"
804 echo " gdbserver $PORT /system/bin/$EXE"
805 echo " or"
Chris Craik20c136a2012-11-09 18:02:19 -0800806 echo " gdbserver $PORT --attach <PID>"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700807 echo ""
808 fi
809
810 echo >|"$OUT_ROOT/gdbclient.cmds" "set solib-absolute-prefix $OUT_SYMBOLS"
Chris Dearman6858d512012-02-02 14:16:52 -0800811 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"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700812 echo >>"$OUT_ROOT/gdbclient.cmds" "target remote $PORT"
813 echo >>"$OUT_ROOT/gdbclient.cmds" ""
814
David 'Digit' Turner2056c252012-04-17 14:50:47 +0200815 $ANDROID_TOOLCHAIN/$GDB -x "$OUT_ROOT/gdbclient.cmds" "$OUT_EXE_SYMBOLS/$EXE"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700816 else
817 echo "Unable to determine build system output dir."
818 fi
819
820}
821
822case `uname -s` in
823 Darwin)
824 function sgrep()
825 {
Joe Onoratof50e84b2011-03-15 14:15:46 -0700826 find -E . -name .repo -prune -o -name .git -prune -o -type f -iregex '.*\.(c|h|cpp|S|java|xml|sh|mk)' -print0 | xargs -0 grep --color -n "$@"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700827 }
828
829 ;;
830 *)
831 function sgrep()
832 {
Joe Onoratof50e84b2011-03-15 14:15:46 -0700833 find . -name .repo -prune -o -name .git -prune -o -type f -iregex '.*\.\(c\|h\|cpp\|S\|java\|xml\|sh\|mk\)' -print0 | xargs -0 grep --color -n "$@"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700834 }
835 ;;
836esac
837
Raghu Gandham8da43102012-07-25 19:57:22 -0700838function gettargetarch
839{
840 get_build_var TARGET_ARCH
841}
842
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700843function jgrep()
844{
Joe Onoratof50e84b2011-03-15 14:15:46 -0700845 find . -name .repo -prune -o -name .git -prune -o -type f -name "*\.java" -print0 | xargs -0 grep --color -n "$@"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700846}
847
848function cgrep()
849{
Mike Dodd0c26d342011-04-07 13:29:06 -0700850 find . -name .repo -prune -o -name .git -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 -0700851}
852
853function resgrep()
854{
Joe Onoratof50e84b2011-03-15 14:15:46 -0700855 for dir in `find . -name .repo -prune -o -name .git -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 -0700856}
857
858case `uname -s` in
859 Darwin)
860 function mgrep()
861 {
Ying Wang324c2b22012-08-17 15:03:20 -0700862 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 -0700863 }
864
865 function treegrep()
866 {
Joe Onoratof50e84b2011-03-15 14:15:46 -0700867 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 -0700868 }
869
870 ;;
871 *)
872 function mgrep()
873 {
Ying Wang324c2b22012-08-17 15:03:20 -0700874 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 -0700875 }
876
877 function treegrep()
878 {
Joe Onoratof50e84b2011-03-15 14:15:46 -0700879 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 -0700880 }
881
882 ;;
883esac
884
885function getprebuilt
886{
887 get_abs_build_var ANDROID_PREBUILTS
888}
889
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700890function tracedmdump()
891{
892 T=$(gettop)
893 if [ ! "$T" ]; then
894 echo "Couldn't locate the top of the tree. Try setting TOP."
895 return
896 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800897 local prebuiltdir=$(getprebuilt)
Raghu Gandham8da43102012-07-25 19:57:22 -0700898 local arch=$(gettargetarch)
899 local KERNEL=$T/prebuilts/qemu-kernel/$arch/vmlinux-qemu
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700900
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800901 local TRACE=$1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700902 if [ ! "$TRACE" ] ; then
903 echo "usage: tracedmdump tracename"
904 return
905 fi
906
Jack Veenstra60116fc2009-04-09 18:12:34 -0700907 if [ ! -r "$KERNEL" ] ; then
908 echo "Error: cannot find kernel: '$KERNEL'"
909 return
910 fi
911
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800912 local BASETRACE=$(basename $TRACE)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700913 if [ "$BASETRACE" = "$TRACE" ] ; then
914 TRACE=$ANDROID_PRODUCT_OUT/traces/$TRACE
915 fi
916
917 echo "post-processing traces..."
918 rm -f $TRACE/qtrace.dexlist
919 post_trace $TRACE
920 if [ $? -ne 0 ]; then
921 echo "***"
922 echo "*** Error: malformed trace. Did you remember to exit the emulator?"
923 echo "***"
924 return
925 fi
926 echo "generating dexlist output..."
927 /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
928 echo "generating dmtrace data..."
929 q2dm -r $ANDROID_PRODUCT_OUT/symbols $TRACE $KERNEL $TRACE/dmtrace || return
930 echo "generating html file..."
931 dmtracedump -h $TRACE/dmtrace >| $TRACE/dmtrace.html || return
932 echo "done, see $TRACE/dmtrace.html for details"
933 echo "or run:"
934 echo " traceview $TRACE/dmtrace"
935}
936
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800937# communicate with a running device or emulator, set up necessary state,
938# and run the hat command.
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700939function runhat()
940{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800941 # process standard adb options
942 local adbTarget=""
Andy McFaddenb6289852010-07-12 08:00:19 -0700943 if [ "$1" = "-d" -o "$1" = "-e" ]; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800944 adbTarget=$1
945 shift 1
Andy McFaddenb6289852010-07-12 08:00:19 -0700946 elif [ "$1" = "-s" ]; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800947 adbTarget="$1 $2"
948 shift 2
949 fi
950 local adbOptions=${adbTarget}
Dianne Hackborn6b9549f2012-09-26 15:00:59 -0700951 #echo adbOptions = ${adbOptions}
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800952
953 # runhat options
954 local targetPid=$1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700955
956 if [ "$targetPid" = "" ]; then
Andy McFaddenb6289852010-07-12 08:00:19 -0700957 echo "Usage: runhat [ -d | -e | -s serial ] target-pid"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700958 return
959 fi
960
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800961 # confirm hat is available
962 if [ -z $(which hat) ]; then
963 echo "hat is not available in this configuration."
964 return
965 fi
966
Andy McFaddenb6289852010-07-12 08:00:19 -0700967 # issue "am" command to cause the hprof dump
Dianne Hackborn6b9549f2012-09-26 15:00:59 -0700968 local sdcard=$(adb shell echo -n '$EXTERNAL_STORAGE')
969 local devFile=$sdcard/hprof-$targetPid
970 #local devFile=/data/local/hprof-$targetPid
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700971 echo "Poking $targetPid and waiting for data..."
Dianne Hackborn6b9549f2012-09-26 15:00:59 -0700972 echo "Storing data at $devFile"
Andy McFaddenb6289852010-07-12 08:00:19 -0700973 adb ${adbOptions} shell am dumpheap $targetPid $devFile
The Android Open Source Project88b60792009-03-03 19:28:42 -0800974 echo "Press enter when logcat shows \"hprof: heap dump completed\""
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700975 echo -n "> "
976 read
977
The Android Open Source Project88b60792009-03-03 19:28:42 -0800978 local localFile=/tmp/$$-hprof
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700979
The Android Open Source Project88b60792009-03-03 19:28:42 -0800980 echo "Retrieving file $devFile..."
981 adb ${adbOptions} pull $devFile $localFile
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700982
The Android Open Source Project88b60792009-03-03 19:28:42 -0800983 adb ${adbOptions} shell rm $devFile
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700984
The Android Open Source Project88b60792009-03-03 19:28:42 -0800985 echo "Running hat on $localFile"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700986 echo "View the output by pointing your browser at http://localhost:7000/"
987 echo ""
Dianne Hackborn6e4e1bb2011-11-10 15:19:51 -0800988 hat -JXmx512m $localFile
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700989}
990
991function getbugreports()
992{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800993 local reports=(`adb shell ls /sdcard/bugreports | tr -d '\r'`)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700994
995 if [ ! "$reports" ]; then
996 echo "Could not locate any bugreports."
997 return
998 fi
999
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001000 local report
1001 for report in ${reports[@]}
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001002 do
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001003 echo "/sdcard/bugreports/${report}"
1004 adb pull /sdcard/bugreports/${report} ${report}
1005 gunzip ${report}
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001006 done
1007}
1008
Victoria Lease1b296b42012-08-21 15:44:06 -07001009function getsdcardpath()
1010{
1011 adb ${adbOptions} shell echo -n \$\{EXTERNAL_STORAGE\}
1012}
1013
1014function getscreenshotpath()
1015{
1016 echo "$(getsdcardpath)/Pictures/Screenshots"
1017}
1018
1019function getlastscreenshot()
1020{
1021 local screenshot_path=$(getscreenshotpath)
1022 local screenshot=`adb ${adbOptions} ls ${screenshot_path} | grep Screenshot_[0-9-]*.*\.png | sort -rk 3 | cut -d " " -f 4 | head -n 1`
1023 if [ "$screenshot" = "" ]; then
1024 echo "No screenshots found."
1025 return
1026 fi
1027 echo "${screenshot}"
1028 adb ${adbOptions} pull ${screenshot_path}/${screenshot}
1029}
1030
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001031function startviewserver()
1032{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001033 local port=4939
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001034 if [ $# -gt 0 ]; then
1035 port=$1
1036 fi
1037 adb shell service call window 1 i32 $port
1038}
1039
1040function stopviewserver()
1041{
1042 adb shell service call window 2
1043}
1044
1045function isviewserverstarted()
1046{
1047 adb shell service call window 3
1048}
1049
Romain Guyb84049a2010-10-04 16:56:11 -07001050function key_home()
1051{
1052 adb shell input keyevent 3
1053}
1054
1055function key_back()
1056{
1057 adb shell input keyevent 4
1058}
1059
1060function key_menu()
1061{
1062 adb shell input keyevent 82
1063}
1064
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001065function smoketest()
1066{
1067 if [ ! "$ANDROID_PRODUCT_OUT" ]; then
1068 echo "Couldn't locate output files. Try running 'lunch' first." >&2
1069 return
1070 fi
1071 T=$(gettop)
1072 if [ ! "$T" ]; then
1073 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
1074 return
1075 fi
1076
1077 (cd "$T" && mmm tests/SmokeTest) &&
1078 adb uninstall com.android.smoketest > /dev/null &&
1079 adb uninstall com.android.smoketest.tests > /dev/null &&
1080 adb install $ANDROID_PRODUCT_OUT/data/app/SmokeTestApp.apk &&
1081 adb install $ANDROID_PRODUCT_OUT/data/app/SmokeTest.apk &&
1082 adb shell am instrument -w com.android.smoketest.tests/android.test.InstrumentationTestRunner
1083}
1084
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001085# simple shortcut to the runtest command
1086function runtest()
1087{
1088 T=$(gettop)
1089 if [ ! "$T" ]; then
1090 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
1091 return
1092 fi
Brett Chabot3fb149d2009-10-21 20:05:26 -07001093 ("$T"/development/testrunner/runtest.py $@)
Brett Chabot762748c2009-03-27 10:25:11 -07001094}
1095
The Android Open Source Project88b60792009-03-03 19:28:42 -08001096function godir () {
1097 if [[ -z "$1" ]]; then
1098 echo "Usage: godir <regex>"
1099 return
1100 fi
Brian Carlstromb9915a62010-01-29 16:39:32 -08001101 T=$(gettop)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001102 if [[ ! -f $T/filelist ]]; then
1103 echo -n "Creating index..."
Brian Carlstrom259e5b72010-01-30 11:45:03 -08001104 (cd $T; find . -wholename ./out -prune -o -wholename ./.repo -prune -o -type f > filelist)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001105 echo " Done"
1106 echo ""
1107 fi
1108 local lines
Jeff Hamilton293f9392011-11-18 17:15:25 -06001109 lines=($(\grep "$1" $T/filelist | sed -e 's/\/[^/]*$//' | sort | uniq))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001110 if [[ ${#lines[@]} = 0 ]]; then
1111 echo "Not found"
1112 return
1113 fi
1114 local pathname
1115 local choice
1116 if [[ ${#lines[@]} > 1 ]]; then
1117 while [[ -z "$pathname" ]]; do
1118 local index=1
1119 local line
1120 for line in ${lines[@]}; do
1121 printf "%6s %s\n" "[$index]" $line
Doug Zongker29034982011-04-22 08:16:56 -07001122 index=$(($index + 1))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001123 done
1124 echo
1125 echo -n "Select one: "
1126 unset choice
1127 read choice
1128 if [[ $choice -gt ${#lines[@]} || $choice -lt 1 ]]; then
1129 echo "Invalid choice"
1130 continue
1131 fi
Kan-Ru Chen07453762010-07-05 15:53:47 +08001132 pathname=${lines[$(($choice-1))]}
The Android Open Source Project88b60792009-03-03 19:28:42 -08001133 done
1134 else
The Android Open Source Project88b60792009-03-03 19:28:42 -08001135 pathname=${lines[0]}
1136 fi
1137 cd $T/$pathname
1138}
1139
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -05001140# Force JAVA_HOME to point to java 1.6 if it isn't already set
1141function set_java_home() {
Andy McFaddenbd960942010-06-24 12:52:51 -07001142 if [ ! "$JAVA_HOME" ]; then
1143 case `uname -s` in
1144 Darwin)
1145 export JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Versions/1.6/Home
1146 ;;
1147 *)
1148 export JAVA_HOME=/usr/lib/jvm/java-6-sun
1149 ;;
1150 esac
Jeff Hamilton04be0d82010-06-07 15:03:54 -05001151 fi
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -05001152}
Jeff Hamilton04be0d82010-06-07 15:03:54 -05001153
Raphael Moll70a86b02011-06-20 16:03:14 -07001154if [ "x$SHELL" != "x/bin/bash" ]; then
1155 case `ps -o command -p $$` in
1156 *bash*)
1157 ;;
1158 *)
1159 echo "WARNING: Only bash is supported, use of other shell would lead to erroneous results"
1160 ;;
1161 esac
1162fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001163
1164# Execute the contents of any vendorsetup.sh files we can find.
Bruce Beare6f8410b2010-06-24 13:51:35 -07001165for f in `/bin/ls vendor/*/vendorsetup.sh vendor/*/*/vendorsetup.sh device/*/*/vendorsetup.sh 2> /dev/null`
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001166do
1167 echo "including $f"
1168 . $f
1169done
1170unset f
Kenny Root52aa81c2011-07-15 11:07:06 -07001171
1172addcompletions