blob: a3788f02eae3b5396b51aa983eff7da898b77f4e [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:
David Zeuthen1b126ff2015-09-30 17:10:48 -04004- lunch: lunch <product_name>-<build_variant>
5- tapas: tapas [<App1> <App2> ...] [arm|x86|mips|armv5|arm64|x86_64|mips64] [eng|userdebug|user]
6- 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, but not their dependencies.
9- mmm: Builds all of the modules in the supplied directories, but not their dependencies.
10 To limit the modules being built use the syntax: mmm dir/:target1,target2.
11- 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.
13- provision: Flash device with all required partitions. Options will be passed on to fastboot.
14- cgrep: Greps on all local C/C++ files.
15- ggrep: Greps on all local Gradle files.
16- jgrep: Greps on all local Java files.
17- resgrep: Greps on all local res/*.xml files.
18- mangrep: Greps on all local AndroidManifest.xml files.
19- mgrep: Greps on all local Makefiles files.
20- sepgrep: Greps on all local sepolicy files.
21- sgrep: Greps on all local source files.
22- godir: Go to the directory containing a file.
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070023
Dan Albert4ae5d4b2014-10-31 16:23:08 -070024Environemnt options:
25- SANITIZE_HOST: Set to 'true' to use ASAN for all host modules. Note that
26 ASAN_OPTIONS=detect_leaks=0 will be set by default until the
27 build is leak-check clean.
28
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070029Look at the source to view more functions. The complete list is:
30EOF
31 T=$(gettop)
32 local A
33 A=""
Jacky Cao89483b82015-05-15 22:12:53 +080034 for i in `cat $T/build/envsetup.sh | sed -n "/^[[:blank:]]*function /s/function \([a-z_]*\).*/\1/p" | sort | uniq`; do
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070035 A="$A $i"
36 done
37 echo $A
38}
39
40# Get the value of a build variable as an absolute path.
41function get_abs_build_var()
42{
43 T=$(gettop)
44 if [ ! "$T" ]; then
45 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
46 return
47 fi
Ying Wang9cd17642012-12-13 10:52:07 -080048 (\cd $T; CALLED_FROM_SETUP=true BUILD_SYSTEM=build/core \
Ed Heylc6d11f82014-06-27 13:32:39 -070049 command make --no-print-directory -f build/core/config.mk dumpvar-abs-$1)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070050}
51
52# Get the exact value of a build variable.
53function get_build_var()
54{
55 T=$(gettop)
56 if [ ! "$T" ]; then
57 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
58 return
59 fi
Andrew Boie6905e212013-12-19 13:21:46 -080060 (\cd $T; CALLED_FROM_SETUP=true BUILD_SYSTEM=build/core \
Ed Heylc6d11f82014-06-27 13:32:39 -070061 command make --no-print-directory -f build/core/config.mk dumpvar-$1)
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -080062}
63
64# check to see if the supplied product is one we can build
65function check_product()
66{
67 T=$(gettop)
68 if [ ! "$T" ]; then
69 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
70 return
71 fi
Jeff Browne33ba4c2011-07-11 22:11:46 -070072 TARGET_PRODUCT=$1 \
73 TARGET_BUILD_VARIANT= \
74 TARGET_BUILD_TYPE= \
Joe Onoratoda12daf2010-06-09 18:18:31 -070075 TARGET_BUILD_APPS= \
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -080076 get_build_var TARGET_DEVICE > /dev/null
77 # hide successful answers, but allow the errors to show
78}
79
80VARIANT_CHOICES=(user userdebug eng)
81
82# check to see if the supplied variant is valid
83function check_variant()
84{
85 for v in ${VARIANT_CHOICES[@]}
86 do
87 if [ "$v" = "$1" ]
88 then
89 return 0
90 fi
91 done
92 return 1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070093}
94
95function setpaths()
96{
97 T=$(gettop)
98 if [ ! "$T" ]; then
99 echo "Couldn't locate the top of the tree. Try setting TOP."
100 return
101 fi
102
103 ##################################################################
104 # #
105 # Read me before you modify this code #
106 # #
107 # This function sets ANDROID_BUILD_PATHS to what it is adding #
108 # to PATH, and the next time it is run, it removes that from #
109 # PATH. This is required so lunch can be run more than once #
110 # and still have working paths. #
111 # #
112 ##################################################################
113
Raphael Mollc639c782011-06-20 17:25:01 -0700114 # Note: on windows/cygwin, ANDROID_BUILD_PATHS will contain spaces
115 # due to "C:\Program Files" being in the path.
116
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700117 # out with the old
Raphael Mollc639c782011-06-20 17:25:01 -0700118 if [ -n "$ANDROID_BUILD_PATHS" ] ; then
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700119 export PATH=${PATH/$ANDROID_BUILD_PATHS/}
120 fi
Raphael Mollc639c782011-06-20 17:25:01 -0700121 if [ -n "$ANDROID_PRE_BUILD_PATHS" ] ; then
Doug Zongker29034982011-04-22 08:16:56 -0700122 export PATH=${PATH/$ANDROID_PRE_BUILD_PATHS/}
Ying Wangaa1c9b52012-11-26 20:51:59 -0800123 # strip leading ':', if any
124 export PATH=${PATH/:%/}
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500125 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700126
127 # and in with the new
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700128 prebuiltdir=$(getprebuilt)
Jing Yuf5172c72012-03-29 20:45:50 -0700129 gccprebuiltdir=$(get_abs_build_var ANDROID_GCC_PREBUILTS)
Raphael732936d2011-06-22 14:35:32 -0700130
Ben Cheng8bc4c432012-11-16 13:29:13 -0800131 # defined in core/config.mk
132 targetgccversion=$(get_build_var TARGET_GCC_VERSION)
Colin Cross03b424a2014-05-22 11:57:43 -0700133 targetgccversion2=$(get_build_var 2ND_TARGET_GCC_VERSION)
Ben Cheng15266702012-12-10 16:04:39 -0800134 export TARGET_GCC_VERSION=$targetgccversion
Ben Cheng8bc4c432012-11-16 13:29:13 -0800135
Raphael Mollc639c782011-06-20 17:25:01 -0700136 # The gcc toolchain does not exists for windows/cygwin. In this case, do not reference it.
Ben Chengfba67bf2014-02-25 10:27:07 -0800137 export ANDROID_TOOLCHAIN=
138 export ANDROID_TOOLCHAIN_2ND_ARCH=
David 'Digit' Turner2056c252012-04-17 14:50:47 +0200139 local ARCH=$(get_build_var TARGET_ARCH)
140 case $ARCH in
Pavel Chupinc1a56642013-08-23 16:49:21 +0400141 x86) toolchaindir=x86/x86_64-linux-android-$targetgccversion/bin
Mark D Horn7d0ede72012-03-14 14:20:30 -0700142 ;;
Pavel Chupinfd82a492012-11-26 09:50:07 +0400143 x86_64) toolchaindir=x86/x86_64-linux-android-$targetgccversion/bin
144 ;;
Ben Cheng8bc4c432012-11-16 13:29:13 -0800145 arm) toolchaindir=arm/arm-linux-androideabi-$targetgccversion/bin
David 'Digit' Turner2056c252012-04-17 14:50:47 +0200146 ;;
Ben Chengfba67bf2014-02-25 10:27:07 -0800147 arm64) toolchaindir=aarch64/aarch64-linux-android-$targetgccversion/bin;
Colin Cross03b424a2014-05-22 11:57:43 -0700148 toolchaindir2=arm/arm-linux-androideabi-$targetgccversion2/bin
Ben Chengdb4fc202013-10-04 16:02:59 -0700149 ;;
Duane Sand3c4fcd82014-07-22 14:34:00 -0700150 mips|mips64) toolchaindir=mips/mips64el-linux-android-$targetgccversion/bin
Serban Constantinescu9b68fb22014-01-14 10:33:53 +0000151 ;;
David 'Digit' Turner2056c252012-04-17 14:50:47 +0200152 *)
153 echo "Can't find toolchain for unknown architecture: $ARCH"
154 toolchaindir=xxxxxxxxx
Mark D Horn7d0ede72012-03-14 14:20:30 -0700155 ;;
156 esac
Jing Yuf5172c72012-03-29 20:45:50 -0700157 if [ -d "$gccprebuiltdir/$toolchaindir" ]; then
Ben Chengfba67bf2014-02-25 10:27:07 -0800158 export ANDROID_TOOLCHAIN=$gccprebuiltdir/$toolchaindir
Raphael Mollc639c782011-06-20 17:25:01 -0700159 fi
Raphael732936d2011-06-22 14:35:32 -0700160
Ben Chengfba67bf2014-02-25 10:27:07 -0800161 if [ -d "$gccprebuiltdir/$toolchaindir2" ]; then
162 export ANDROID_TOOLCHAIN_2ND_ARCH=$gccprebuiltdir/$toolchaindir2
163 fi
164
Jeff Vander Stoep5f50f052015-06-12 09:56:39 -0700165 export ANDROID_DEV_SCRIPTS=$T/development/scripts:$T/prebuilts/devtools/tools:$T/external/selinux/prebuilts/bin
Ying Wang750396d2015-09-14 19:32:50 -0700166 export ANDROID_BUILD_PATHS=$(get_build_var ANDROID_BUILD_PATHS):$ANDROID_TOOLCHAIN:$ANDROID_TOOLCHAIN_2ND_ARCH:$ANDROID_DEV_SCRIPTS:
David 'Digit' Turner94d16e52014-05-05 16:13:50 +0200167
168 # If prebuilts/android-emulator/<system>/ exists, prepend it to our PATH
169 # to ensure that the corresponding 'emulator' binaries are used.
170 case $(uname -s) in
171 Darwin)
172 ANDROID_EMULATOR_PREBUILTS=$T/prebuilts/android-emulator/darwin-x86_64
173 ;;
174 Linux)
175 ANDROID_EMULATOR_PREBUILTS=$T/prebuilts/android-emulator/linux-x86_64
176 ;;
177 *)
178 ANDROID_EMULATOR_PREBUILTS=
179 ;;
180 esac
181 if [ -n "$ANDROID_EMULATOR_PREBUILTS" -a -d "$ANDROID_EMULATOR_PREBUILTS" ]; then
Christopher Ferris7110f242014-05-20 13:56:00 -0700182 ANDROID_BUILD_PATHS=$ANDROID_BUILD_PATHS$ANDROID_EMULATOR_PREBUILTS:
David 'Digit' Turner94d16e52014-05-05 16:13:50 +0200183 export ANDROID_EMULATOR_PREBUILTS
184 fi
185
Ying Wangaa1c9b52012-11-26 20:51:59 -0800186 export PATH=$ANDROID_BUILD_PATHS$PATH
Dan Albertf5caa3d2015-09-18 13:23:56 -0700187 export PYTHONPATH=$T/development/python-packages:$PYTHONPATH
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800188
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500189 unset ANDROID_JAVA_TOOLCHAIN
Ji-Hwan Lee752ad062011-07-04 14:09:47 +0900190 unset ANDROID_PRE_BUILD_PATHS
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500191 if [ -n "$JAVA_HOME" ]; then
192 export ANDROID_JAVA_TOOLCHAIN=$JAVA_HOME/bin
Ji-Hwan Lee752ad062011-07-04 14:09:47 +0900193 export ANDROID_PRE_BUILD_PATHS=$ANDROID_JAVA_TOOLCHAIN:
194 export PATH=$ANDROID_PRE_BUILD_PATHS$PATH
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500195 fi
196
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800197 unset ANDROID_PRODUCT_OUT
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700198 export ANDROID_PRODUCT_OUT=$(get_abs_build_var PRODUCT_OUT)
199 export OUT=$ANDROID_PRODUCT_OUT
200
Jeff Brown8fd5cce2011-03-24 17:03:06 -0700201 unset ANDROID_HOST_OUT
202 export ANDROID_HOST_OUT=$(get_abs_build_var HOST_OUT)
203
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800204 # needed for building linux on MacOS
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700205 # TODO: fix the path
206 #export HOST_EXTRACFLAGS="-I "$T/system/kernel_headers/host_include
207}
208
209function printconfig()
210{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800211 T=$(gettop)
212 if [ ! "$T" ]; then
213 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
214 return
215 fi
216 get_build_var report_config
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700217}
218
219function set_stuff_for_environment()
220{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800221 settitle
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500222 set_java_home
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800223 setpaths
224 set_sequence_number
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700225
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800226 export ANDROID_BUILD_TOP=$(gettop)
Ben Chengaac3f812013-08-13 14:38:15 -0700227 # With this environment variable new GCC can apply colors to warnings/errors
228 export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
Dan Albert4ae5d4b2014-10-31 16:23:08 -0700229 export ASAN_OPTIONS=detect_leaks=0
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700230}
231
232function set_sequence_number()
233{
Joe Onoratoaee4daa2010-06-23 14:03:13 -0700234 export BUILD_ENV_SEQUENCE_NUMBER=10
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700235}
236
237function settitle()
238{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800239 if [ "$STAY_OFF_MY_LAWN" = "" ]; then
Raghu Gandham8da43102012-07-25 19:57:22 -0700240 local arch=$(gettargetarch)
Joe Onoratoda12daf2010-06-09 18:18:31 -0700241 local product=$TARGET_PRODUCT
242 local variant=$TARGET_BUILD_VARIANT
243 local apps=$TARGET_BUILD_APPS
244 if [ -z "$apps" ]; then
Raghu Gandham8da43102012-07-25 19:57:22 -0700245 export PROMPT_COMMAND="echo -ne \"\033]0;[${arch}-${product}-${variant}] ${USER}@${HOSTNAME}: ${PWD}\007\""
Joe Onoratoda12daf2010-06-09 18:18:31 -0700246 else
Raghu Gandham8da43102012-07-25 19:57:22 -0700247 export PROMPT_COMMAND="echo -ne \"\033]0;[$arch $apps $variant] ${USER}@${HOSTNAME}: ${PWD}\007\""
Joe Onoratoda12daf2010-06-09 18:18:31 -0700248 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800249 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700250}
251
Kenny Root52aa81c2011-07-15 11:07:06 -0700252function addcompletions()
253{
254 local T dir f
255
256 # Keep us from trying to run in something that isn't bash.
257 if [ -z "${BASH_VERSION}" ]; then
258 return
259 fi
260
261 # Keep us from trying to run in bash that's too old.
262 if [ ${BASH_VERSINFO[0]} -lt 3 ]; then
263 return
264 fi
265
266 dir="sdk/bash_completion"
267 if [ -d ${dir} ]; then
Kenny Root7546d612011-07-18 13:11:34 -0700268 for f in `/bin/ls ${dir}/[a-z]*.bash 2> /dev/null`; do
Kenny Root52aa81c2011-07-15 11:07:06 -0700269 echo "including $f"
270 . $f
271 done
272 fi
273}
274
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700275function choosetype()
276{
277 echo "Build type choices are:"
278 echo " 1. release"
279 echo " 2. debug"
280 echo
281
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800282 local DEFAULT_NUM DEFAULT_VALUE
Jeff Browne33ba4c2011-07-11 22:11:46 -0700283 DEFAULT_NUM=1
284 DEFAULT_VALUE=release
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700285
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800286 export TARGET_BUILD_TYPE=
287 local ANSWER
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700288 while [ -z $TARGET_BUILD_TYPE ]
289 do
290 echo -n "Which would you like? ["$DEFAULT_NUM"] "
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800291 if [ -z "$1" ] ; then
292 read ANSWER
293 else
294 echo $1
295 ANSWER=$1
296 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700297 case $ANSWER in
298 "")
299 export TARGET_BUILD_TYPE=$DEFAULT_VALUE
300 ;;
301 1)
302 export TARGET_BUILD_TYPE=release
303 ;;
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800304 release)
305 export TARGET_BUILD_TYPE=release
306 ;;
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700307 2)
308 export TARGET_BUILD_TYPE=debug
309 ;;
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800310 debug)
311 export TARGET_BUILD_TYPE=debug
312 ;;
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700313 *)
314 echo
315 echo "I didn't understand your response. Please try again."
316 echo
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700317 ;;
318 esac
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800319 if [ -n "$1" ] ; then
320 break
321 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700322 done
323
324 set_stuff_for_environment
325}
326
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800327#
328# This function isn't really right: It chooses a TARGET_PRODUCT
329# based on the list of boards. Usually, that gets you something
330# that kinda works with a generic product, but really, you should
331# pick a product by name.
332#
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700333function chooseproduct()
334{
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700335 if [ "x$TARGET_PRODUCT" != x ] ; then
336 default_value=$TARGET_PRODUCT
337 else
Ying Wang0a76df52015-06-08 11:57:26 -0700338 default_value=aosp_arm
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700339 fi
340
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800341 export TARGET_PRODUCT=
342 local ANSWER
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700343 while [ -z "$TARGET_PRODUCT" ]
344 do
Joe Onorato8849aed2009-04-29 15:56:47 -0700345 echo -n "Which product would you like? [$default_value] "
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800346 if [ -z "$1" ] ; then
347 read ANSWER
348 else
349 echo $1
350 ANSWER=$1
351 fi
352
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700353 if [ -z "$ANSWER" ] ; then
354 export TARGET_PRODUCT=$default_value
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800355 else
356 if check_product $ANSWER
357 then
358 export TARGET_PRODUCT=$ANSWER
359 else
360 echo "** Not a valid product: $ANSWER"
361 fi
362 fi
363 if [ -n "$1" ] ; then
364 break
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700365 fi
366 done
367
368 set_stuff_for_environment
369}
370
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800371function choosevariant()
372{
373 echo "Variant choices are:"
374 local index=1
375 local v
376 for v in ${VARIANT_CHOICES[@]}
377 do
378 # The product name is the name of the directory containing
379 # the makefile we found, above.
380 echo " $index. $v"
381 index=$(($index+1))
382 done
383
384 local default_value=eng
385 local ANSWER
386
387 export TARGET_BUILD_VARIANT=
388 while [ -z "$TARGET_BUILD_VARIANT" ]
389 do
390 echo -n "Which would you like? [$default_value] "
391 if [ -z "$1" ] ; then
392 read ANSWER
393 else
394 echo $1
395 ANSWER=$1
396 fi
397
398 if [ -z "$ANSWER" ] ; then
399 export TARGET_BUILD_VARIANT=$default_value
400 elif (echo -n $ANSWER | grep -q -e "^[0-9][0-9]*$") ; then
401 if [ "$ANSWER" -le "${#VARIANT_CHOICES[@]}" ] ; then
Kan-Ru Chen07453762010-07-05 15:53:47 +0800402 export TARGET_BUILD_VARIANT=${VARIANT_CHOICES[$(($ANSWER-1))]}
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800403 fi
404 else
405 if check_variant $ANSWER
406 then
407 export TARGET_BUILD_VARIANT=$ANSWER
408 else
409 echo "** Not a valid variant: $ANSWER"
410 fi
411 fi
412 if [ -n "$1" ] ; then
413 break
414 fi
415 done
416}
417
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700418function choosecombo()
419{
Jeff Browne33ba4c2011-07-11 22:11:46 -0700420 choosetype $1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700421
422 echo
423 echo
Jeff Browne33ba4c2011-07-11 22:11:46 -0700424 chooseproduct $2
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700425
426 echo
427 echo
Jeff Browne33ba4c2011-07-11 22:11:46 -0700428 choosevariant $3
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800429
430 echo
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700431 set_stuff_for_environment
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800432 printconfig
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700433}
434
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800435# Clear this variable. It will be built up again when the vendorsetup.sh
436# files are included at the end of this file.
437unset LUNCH_MENU_CHOICES
438function add_lunch_combo()
439{
440 local new_combo=$1
441 local c
442 for c in ${LUNCH_MENU_CHOICES[@]} ; do
443 if [ "$new_combo" = "$c" ] ; then
444 return
445 fi
446 done
447 LUNCH_MENU_CHOICES=(${LUNCH_MENU_CHOICES[@]} $new_combo)
448}
449
450# add the default one here
Jean-Baptiste Queru324c1232013-03-22 15:53:54 -0700451add_lunch_combo aosp_arm-eng
Colin Cross4f0eb7d2014-01-21 19:35:38 -0800452add_lunch_combo aosp_arm64-eng
Serban Constantinescu9b68fb22014-01-14 10:33:53 +0000453add_lunch_combo aosp_mips-eng
Chris Dearman1efd9e42014-02-03 15:01:24 -0800454add_lunch_combo aosp_mips64-eng
Serban Constantinescu9b68fb22014-01-14 10:33:53 +0000455add_lunch_combo aosp_x86-eng
456add_lunch_combo aosp_x86_64-eng
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800457
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700458function print_lunch_menu()
459{
460 local uname=$(uname)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700461 echo
462 echo "You're building on" $uname
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700463 echo
464 echo "Lunch menu... pick a combo:"
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800465
466 local i=1
467 local choice
468 for choice in ${LUNCH_MENU_CHOICES[@]}
469 do
470 echo " $i. $choice"
471 i=$(($i+1))
472 done
473
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700474 echo
475}
476
477function lunch()
478{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800479 local answer
480
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700481 if [ "$1" ] ; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800482 answer=$1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700483 else
484 print_lunch_menu
Jean-Baptiste Queru324c1232013-03-22 15:53:54 -0700485 echo -n "Which would you like? [aosp_arm-eng] "
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800486 read answer
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700487 fi
488
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800489 local selection=
490
491 if [ -z "$answer" ]
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700492 then
Jean-Baptiste Queru324c1232013-03-22 15:53:54 -0700493 selection=aosp_arm-eng
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800494 elif (echo -n $answer | grep -q -e "^[0-9][0-9]*$")
495 then
496 if [ $answer -le ${#LUNCH_MENU_CHOICES[@]} ]
497 then
Kan-Ru Chen07453762010-07-05 15:53:47 +0800498 selection=${LUNCH_MENU_CHOICES[$(($answer-1))]}
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800499 fi
500 elif (echo -n $answer | grep -q -e "^[^\-][^\-]*-[^\-][^\-]*$")
501 then
502 selection=$answer
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700503 fi
504
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800505 if [ -z "$selection" ]
506 then
507 echo
508 echo "Invalid lunch combo: $answer"
509 return 1
510 fi
511
Joe Onoratoda12daf2010-06-09 18:18:31 -0700512 export TARGET_BUILD_APPS=
513
Jeff Browne33ba4c2011-07-11 22:11:46 -0700514 local product=$(echo -n $selection | sed -e "s/-.*$//")
515 check_product $product
516 if [ $? -ne 0 ]
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800517 then
Jeff Browne33ba4c2011-07-11 22:11:46 -0700518 echo
519 echo "** Don't have a product spec for: '$product'"
520 echo "** Do you have the right repo manifest?"
521 product=
522 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800523
Jeff Browne33ba4c2011-07-11 22:11:46 -0700524 local variant=$(echo -n $selection | sed -e "s/^[^\-]*-//")
525 check_variant $variant
526 if [ $? -ne 0 ]
527 then
528 echo
529 echo "** Invalid variant: '$variant'"
530 echo "** Must be one of ${VARIANT_CHOICES[@]}"
531 variant=
532 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800533
Jeff Browne33ba4c2011-07-11 22:11:46 -0700534 if [ -z "$product" -o -z "$variant" ]
535 then
536 echo
537 return 1
538 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800539
Jeff Browne33ba4c2011-07-11 22:11:46 -0700540 export TARGET_PRODUCT=$product
541 export TARGET_BUILD_VARIANT=$variant
542 export TARGET_BUILD_TYPE=release
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700543
544 echo
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800545
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700546 set_stuff_for_environment
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800547 printconfig
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700548}
549
Jeff Davidson513d7a42010-08-02 10:00:44 -0700550# Tab completion for lunch.
551function _lunch()
552{
553 local cur prev opts
554 COMPREPLY=()
555 cur="${COMP_WORDS[COMP_CWORD]}"
556 prev="${COMP_WORDS[COMP_CWORD-1]}"
557
558 COMPREPLY=( $(compgen -W "${LUNCH_MENU_CHOICES[*]}" -- ${cur}) )
559 return 0
560}
561complete -F _lunch lunch
562
Joe Onoratoda12daf2010-06-09 18:18:31 -0700563# Configures the build to build unbundled apps.
Doug Zongker0d8179e2014-04-16 11:34:34 -0700564# Run tapas with one or more app names (from LOCAL_PACKAGE_NAME)
Joe Onoratoda12daf2010-06-09 18:18:31 -0700565function tapas()
566{
Ying Wangb541ab62014-05-29 17:57:40 -0700567 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 -0700568 local variant="$(echo $* | xargs -n 1 echo | \grep -E '^(user|userdebug|eng)$' | xargs)"
Jeff Hamilton5069bd62014-09-04 21:28:00 -0700569 local density="$(echo $* | xargs -n 1 echo | \grep -E '^(ldpi|mdpi|tvdpi|hdpi|xhdpi|xxhdpi|xxxhdpi|alldpi)$' | xargs)"
570 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 -0700571
Ying Wang67f02922012-08-22 10:25:20 -0700572 if [ $(echo $arch | wc -w) -gt 1 ]; then
573 echo "tapas: Error: Multiple build archs supplied: $arch"
574 return
575 fi
Joe Onoratoda12daf2010-06-09 18:18:31 -0700576 if [ $(echo $variant | wc -w) -gt 1 ]; then
577 echo "tapas: Error: Multiple build variants supplied: $variant"
578 return
579 fi
Jeff Hamilton5069bd62014-09-04 21:28:00 -0700580 if [ $(echo $density | wc -w) -gt 1 ]; then
581 echo "tapas: Error: Multiple densities supplied: $density"
582 return
583 fi
Ying Wang67f02922012-08-22 10:25:20 -0700584
Ying Wang0a76df52015-06-08 11:57:26 -0700585 local product=aosp_arm
Ying Wang67f02922012-08-22 10:25:20 -0700586 case $arch in
Ying Wang0a76df52015-06-08 11:57:26 -0700587 x86) product=aosp_x86;;
588 mips) product=aosp_mips;;
Ying Wangb541ab62014-05-29 17:57:40 -0700589 armv5) product=generic_armv5;;
590 arm64) product=aosp_arm64;;
591 x86_64) product=aosp_x86_64;;
592 mips64) product=aosp_mips64;;
Ying Wang67f02922012-08-22 10:25:20 -0700593 esac
Joe Onoratoda12daf2010-06-09 18:18:31 -0700594 if [ -z "$variant" ]; then
595 variant=eng
596 fi
Ying Wangc048c9b2010-06-24 15:08:33 -0700597 if [ -z "$apps" ]; then
598 apps=all
599 fi
Justin Morey29d225c2014-11-04 13:35:51 -0600600 if [ -z "$density" ]; then
601 density=alldpi
602 fi
Joe Onoratoda12daf2010-06-09 18:18:31 -0700603
Ying Wang67f02922012-08-22 10:25:20 -0700604 export TARGET_PRODUCT=$product
Joe Onoratoda12daf2010-06-09 18:18:31 -0700605 export TARGET_BUILD_VARIANT=$variant
Jeff Hamilton5069bd62014-09-04 21:28:00 -0700606 export TARGET_BUILD_DENSITY=$density
Joe Onoratoda12daf2010-06-09 18:18:31 -0700607 export TARGET_BUILD_TYPE=release
608 export TARGET_BUILD_APPS=$apps
609
610 set_stuff_for_environment
611 printconfig
612}
613
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700614function gettop
615{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800616 local TOPFILE=build/core/envsetup.mk
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700617 if [ -n "$TOP" -a -f "$TOP/$TOPFILE" ] ; then
Brian Carlstroma5c4f172014-09-12 00:33:25 -0700618 # The following circumlocution ensures we remove symlinks from TOP.
619 (cd $TOP; PWD= /bin/pwd)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700620 else
621 if [ -f $TOPFILE ] ; then
Dan Bornsteind0b274d2009-11-24 15:48:50 -0800622 # The following circumlocution (repeated below as well) ensures
623 # that we record the true directory name and not one that is
624 # faked up with symlink names.
625 PWD= /bin/pwd
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700626 else
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800627 local HERE=$PWD
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700628 T=
629 while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do
Ying Wang9cd17642012-12-13 10:52:07 -0800630 \cd ..
synergyb112a402013-07-05 19:47:47 -0700631 T=`PWD= /bin/pwd -P`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700632 done
Ying Wang9cd17642012-12-13 10:52:07 -0800633 \cd $HERE
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700634 if [ -f "$T/$TOPFILE" ]; then
635 echo $T
636 fi
637 fi
638 fi
639}
640
Andrew Hsieh906cb782013-09-10 17:37:14 +0800641# Return driver for "make", if any (eg. static analyzer)
642function getdriver()
643{
644 local T="$1"
645 test "$WITH_STATIC_ANALYZER" = "0" && unset WITH_STATIC_ANALYZER
646 if [ -n "$WITH_STATIC_ANALYZER" ]; then
647 echo "\
Andrew Hsiehc4f7fba2014-03-03 16:53:17 +0800648$T/prebuilts/misc/linux-x86/analyzer/tools/scan-build/scan-build \
649--use-analyzer $T/prebuilts/misc/linux-x86/analyzer/bin/analyzer \
Andrew Hsieh906cb782013-09-10 17:37:14 +0800650--status-bugs \
651--top=$T"
652 fi
653}
654
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700655function m()
656{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800657 local T=$(gettop)
658 local DRV=$(getdriver $T)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700659 if [ "$T" ]; then
Andrew Hsieh906cb782013-09-10 17:37:14 +0800660 $DRV make -C $T -f build/core/main.mk $@
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700661 else
662 echo "Couldn't locate the top of the tree. Try setting TOP."
Ying Wang0c1374c2015-04-01 10:13:02 -0700663 return 1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700664 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."
Ying Wang0c1374c2015-04-01 10:13:02 -0700702 return 1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700703 elif [ ! "$M" ]; then
704 echo "Couldn't locate a makefile from the current directory."
Ying Wang0c1374c2015-04-01 10:13:02 -0700705 return 1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700706 else
Ying Wanga7deb082013-08-16 13:24:47 -0700707 for ARG in $@; do
708 case $ARG in
709 GET-INSTALL-PATH) GET_INSTALL_PATH=$ARG;;
710 esac
711 done
712 if [ -n "$GET_INSTALL_PATH" ]; then
713 MODULES=
714 ARGS=GET-INSTALL-PATH
715 else
716 MODULES=all_modules
717 ARGS=$@
718 fi
Andrew Hsieh246daf72013-09-10 18:07:23 -0700719 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 -0700720 fi
721 fi
722}
723
724function mmm()
725{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800726 local T=$(gettop)
727 local DRV=$(getdriver $T)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700728 if [ "$T" ]; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800729 local MAKEFILE=
Alon Albert68895a92011-11-30 12:40:19 -0800730 local MODULES=
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800731 local ARGS=
732 local DIR TO_CHOP
Ying Wanga7deb082013-08-16 13:24:47 -0700733 local GET_INSTALL_PATH=
The Android Open Source Project88b60792009-03-03 19:28:42 -0800734 local DASH_ARGS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^-.*$/')
735 local DIRS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^[^-].*$/')
736 for DIR in $DIRS ; do
Alon Albert68895a92011-11-30 12:40:19 -0800737 MODULES=`echo $DIR | sed -n -e 's/.*:\(.*$\)/\1/p' | sed 's/,/ /'`
738 if [ "$MODULES" = "" ]; then
739 MODULES=all_modules
740 fi
741 DIR=`echo $DIR | sed -e 's/:.*//' -e 's:/$::'`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700742 if [ -f $DIR/Android.mk ]; then
Ying Wanga7deb082013-08-16 13:24:47 -0700743 local TO_CHOP=`(\cd -P -- $T && pwd -P) | wc -c | tr -d ' '`
744 local TO_CHOP=`expr $TO_CHOP + 1`
745 local START=`PWD= /bin/pwd`
746 local MFILE=`echo $START | cut -c${TO_CHOP}-`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700747 if [ "$MFILE" = "" ] ; then
748 MFILE=$DIR/Android.mk
749 else
750 MFILE=$MFILE/$DIR/Android.mk
751 fi
752 MAKEFILE="$MAKEFILE $MFILE"
753 else
Ying Wanga7deb082013-08-16 13:24:47 -0700754 case $DIR in
Ying Wangcaeaa082015-09-23 16:08:55 -0700755 showcommands | snod | dist | *=*) ARGS="$ARGS $DIR";;
Ying Wanga7deb082013-08-16 13:24:47 -0700756 GET-INSTALL-PATH) GET_INSTALL_PATH=$DIR;;
757 *) echo "No Android.mk in $DIR."; return 1;;
758 esac
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700759 fi
760 done
Ying Wanga7deb082013-08-16 13:24:47 -0700761 if [ -n "$GET_INSTALL_PATH" ]; then
762 ARGS=$GET_INSTALL_PATH
763 MODULES=
764 fi
Andrew Hsieh906cb782013-09-10 17:37:14 +0800765 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 -0700766 else
767 echo "Couldn't locate the top of the tree. Try setting TOP."
Ying Wang0c1374c2015-04-01 10:13:02 -0700768 return 1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700769 fi
770}
771
Ying Wangb607f7b2013-02-08 18:01:04 -0800772function mma()
773{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800774 local T=$(gettop)
775 local DRV=$(getdriver $T)
Ying Wangb607f7b2013-02-08 18:01:04 -0800776 if [ -f build/core/envsetup.mk -a -f Makefile ]; then
Andrew Hsieh906cb782013-09-10 17:37:14 +0800777 $DRV make $@
Ying Wangb607f7b2013-02-08 18:01:04 -0800778 else
Ying Wangb607f7b2013-02-08 18:01:04 -0800779 if [ ! "$T" ]; then
780 echo "Couldn't locate the top of the tree. Try setting TOP."
Ying Wang0c1374c2015-04-01 10:13:02 -0700781 return 1
Ying Wangb607f7b2013-02-08 18:01:04 -0800782 fi
783 local MY_PWD=`PWD= /bin/pwd|sed 's:'$T'/::'`
Ying Wang61cd8842015-09-24 16:19:19 -0700784 local MODULES_IN_PATHS=MODULES-IN-$MY_PWD
785 # Convert "/" to "-".
786 MODULES_IN_PATHS=${MODULES_IN_PATHS//\//-}
787 $DRV make -C $T -f build/core/main.mk $@ $MODULES_IN_PATHS
Ying Wangb607f7b2013-02-08 18:01:04 -0800788 fi
789}
790
791function mmma()
792{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800793 local T=$(gettop)
794 local DRV=$(getdriver $T)
Ying Wangb607f7b2013-02-08 18:01:04 -0800795 if [ "$T" ]; then
796 local DASH_ARGS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^-.*$/')
797 local DIRS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^[^-].*$/')
798 local MY_PWD=`PWD= /bin/pwd`
799 if [ "$MY_PWD" = "$T" ]; then
800 MY_PWD=
801 else
802 MY_PWD=`echo $MY_PWD|sed 's:'$T'/::'`
803 fi
804 local DIR=
Ying Wangcaeaa082015-09-23 16:08:55 -0700805 local MODULES_IN_PATHS=
Ying Wangb607f7b2013-02-08 18:01:04 -0800806 local ARGS=
807 for DIR in $DIRS ; do
808 if [ -d $DIR ]; then
Ying Wangcaeaa082015-09-23 16:08:55 -0700809 # Remove the leading ./ and trailing / if any exists.
810 DIR=${DIR#./}
811 DIR=${DIR%/}
812 if [ "$MY_PWD" != "" ]; then
813 DIR=$MY_PWD/$DIR
Ying Wangb607f7b2013-02-08 18:01:04 -0800814 fi
Ying Wang61cd8842015-09-24 16:19:19 -0700815 MODULES_IN_PATHS="$MODULES_IN_PATHS MODULES-IN-$DIR"
Ying Wangb607f7b2013-02-08 18:01:04 -0800816 else
817 case $DIR in
Ying Wangcaeaa082015-09-23 16:08:55 -0700818 showcommands | snod | dist | *=*) ARGS="$ARGS $DIR";;
Ying Wangb607f7b2013-02-08 18:01:04 -0800819 *) echo "Couldn't find directory $DIR"; return 1;;
820 esac
821 fi
822 done
Ying Wang61cd8842015-09-24 16:19:19 -0700823 # Convert "/" to "-".
824 MODULES_IN_PATHS=${MODULES_IN_PATHS//\//-}
Ying Wangcaeaa082015-09-23 16:08:55 -0700825 $DRV make -C $T -f build/core/main.mk $DASH_ARGS $ARGS $MODULES_IN_PATHS
Ying Wangb607f7b2013-02-08 18:01:04 -0800826 else
827 echo "Couldn't locate the top of the tree. Try setting TOP."
Ying Wang0c1374c2015-04-01 10:13:02 -0700828 return 1
Ying Wangb607f7b2013-02-08 18:01:04 -0800829 fi
830}
831
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700832function croot()
833{
834 T=$(gettop)
835 if [ "$T" ]; then
Ying Wang9cd17642012-12-13 10:52:07 -0800836 \cd $(gettop)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700837 else
838 echo "Couldn't locate the top of the tree. Try setting TOP."
839 fi
840}
841
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700842function cproj()
843{
844 TOPFILE=build/core/envsetup.mk
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700845 local HERE=$PWD
846 T=
847 while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do
848 T=$PWD
849 if [ -f "$T/Android.mk" ]; then
Ying Wang9cd17642012-12-13 10:52:07 -0800850 \cd $T
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700851 return
852 fi
Ying Wang9cd17642012-12-13 10:52:07 -0800853 \cd ..
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700854 done
Ying Wang9cd17642012-12-13 10:52:07 -0800855 \cd $HERE
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700856 echo "can't find Android.mk"
857}
858
Daniel Sandler47e0a882013-07-30 13:23:52 -0400859# simplified version of ps; output in the form
860# <pid> <procname>
861function qpid() {
862 local prepend=''
863 local append=''
864 if [ "$1" = "--exact" ]; then
865 prepend=' '
866 append='$'
867 shift
868 elif [ "$1" = "--help" -o "$1" = "-h" ]; then
869 echo "usage: qpid [[--exact] <process name|pid>"
870 return 255
871 fi
872
873 local EXE="$1"
874 if [ "$EXE" ] ; then
Mathias Agopian44583272013-08-27 14:15:50 -0700875 qpid | \grep "$prepend$EXE$append"
Daniel Sandler47e0a882013-07-30 13:23:52 -0400876 else
877 adb shell ps \
878 | tr -d '\r' \
879 | sed -e 1d -e 's/^[^ ]* *\([0-9]*\).* \([^ ]*\)$/\1 \2/'
880 fi
881}
882
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700883function pid()
884{
Daniel Sandler47e0a882013-07-30 13:23:52 -0400885 local prepend=''
886 local append=''
887 if [ "$1" = "--exact" ]; then
888 prepend=' '
889 append='$'
890 shift
891 fi
892 local EXE="$1"
893 if [ "$EXE" ] ; then
894 local PID=`adb shell ps \
895 | tr -d '\r' \
Mathias Agopian44583272013-08-27 14:15:50 -0700896 | \grep "$prepend$EXE$append" \
Daniel Sandler47e0a882013-07-30 13:23:52 -0400897 | sed -e 's/^[^ ]* *\([0-9]*\).*$/\1/'`
898 echo "$PID"
899 else
900 echo "usage: pid [--exact] <process name>"
901 return 255
902 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700903}
904
Iliyan Malcheve675cfb2014-11-03 17:04:47 -0800905# coredump_setup - enable core dumps globally for any process
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700906# that has the core-file-size limit set correctly
907#
Iliyan Malchevaf5de972014-11-04 20:57:37 -0800908# NOTE: You must call also coredump_enable for a specific process
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700909# if its core-file-size limit is not set already.
910# NOTE: Core dumps are written to ramdisk; they will not survive a reboot!
911
Iliyan Malcheve675cfb2014-11-03 17:04:47 -0800912function coredump_setup()
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700913{
914 echo "Getting root...";
915 adb root;
916 adb wait-for-device;
917
918 echo "Remounting root parition read-write...";
919 adb shell mount -w -o remount -t rootfs rootfs;
920 sleep 1;
921 adb wait-for-device;
922 adb shell mkdir -p /cores;
Nick Kralevicha94282c2014-11-04 11:17:20 -0800923 adb shell mount -t tmpfs tmpfs /cores;
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700924 adb shell chmod 0777 /cores;
925
926 echo "Granting SELinux permission to dump in /cores...";
927 adb shell restorecon -R /cores;
928
929 echo "Set core pattern.";
930 adb shell 'echo /cores/core.%p > /proc/sys/kernel/core_pattern';
931
932 echo "Done."
933}
934
Iliyan Malchevaf5de972014-11-04 20:57:37 -0800935# coredump_enable - enable core dumps for the specified process
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700936# $1 = PID of process (e.g., $(pid mediaserver))
937#
Iliyan Malchevaf5de972014-11-04 20:57:37 -0800938# NOTE: coredump_setup must have been called as well for a core
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700939# dump to actually be generated.
940
Iliyan Malchevaf5de972014-11-04 20:57:37 -0800941function coredump_enable()
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700942{
943 local PID=$1;
944 if [ -z "$PID" ]; then
945 printf "Expecting a PID!\n";
946 return;
947 fi;
948 echo "Setting core limit for $PID to infinite...";
949 adb shell prlimit $PID 4 -1 -1
950}
951
952# core - send SIGV and pull the core for process
953# $1 = PID of process (e.g., $(pid mediaserver))
954#
Iliyan Malchevaf5de972014-11-04 20:57:37 -0800955# NOTE: coredump_setup must be called once per boot for core dumps to be
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700956# enabled globally.
957
958function core()
959{
960 local PID=$1;
961
962 if [ -z "$PID" ]; then
963 printf "Expecting a PID!\n";
964 return;
965 fi;
966
967 local CORENAME=core.$PID;
968 local COREPATH=/cores/$CORENAME;
969 local SIG=SEGV;
970
Iliyan Malchevaf5de972014-11-04 20:57:37 -0800971 coredump_enable $1;
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700972
973 local done=0;
974 while [ $(adb shell "[ -d /proc/$PID ] && echo -n yes") ]; do
975 printf "\tSending SIG%s to %d...\n" $SIG $PID;
976 adb shell kill -$SIG $PID;
977 sleep 1;
978 done;
979
980 adb shell "while [ ! -f $COREPATH ] ; do echo waiting for $COREPATH to be generated; sleep 1; done"
981 echo "Done: core is under $COREPATH on device.";
982}
983
Christopher Tate744ee802009-11-12 15:33:08 -0800984# systemstack - dump the current stack trace of all threads in the system process
985# to the usual ANR traces file
986function systemstack()
987{
Jeff Sharkeyf5824372013-02-19 17:00:46 -0800988 stacks system_server
989}
990
991function stacks()
992{
993 if [[ $1 =~ ^[0-9]+$ ]] ; then
994 local PID="$1"
995 elif [ "$1" ] ; then
Jeff Brownb12c2e52013-08-19 15:14:16 -0700996 local PIDLIST="$(pid $1)"
997 if [[ $PIDLIST =~ ^[0-9]+$ ]] ; then
998 local PID="$PIDLIST"
999 elif [ "$PIDLIST" ] ; then
1000 echo "more than one process: $1"
1001 else
1002 echo "no such process: $1"
1003 fi
Jeff Sharkeyf5824372013-02-19 17:00:46 -08001004 else
1005 echo "usage: stacks [pid|process name]"
1006 fi
1007
1008 if [ "$PID" ] ; then
Jeff Brownb12c2e52013-08-19 15:14:16 -07001009 # Determine whether the process is native
1010 if adb shell ls -l /proc/$PID/exe | grep -q /system/bin/app_process ; then
1011 # Dump stacks of Dalvik process
1012 local TRACES=/data/anr/traces.txt
1013 local ORIG=/data/anr/traces.orig
1014 local TMP=/data/anr/traces.tmp
Jeff Sharkeyf5824372013-02-19 17:00:46 -08001015
Jeff Brownb12c2e52013-08-19 15:14:16 -07001016 # Keep original traces to avoid clobbering
1017 adb shell mv $TRACES $ORIG
Jeff Sharkeyf5824372013-02-19 17:00:46 -08001018
Jeff Brownb12c2e52013-08-19 15:14:16 -07001019 # Make sure we have a usable file
1020 adb shell touch $TRACES
1021 adb shell chmod 666 $TRACES
Jeff Sharkeyf5824372013-02-19 17:00:46 -08001022
Jeff Brownb12c2e52013-08-19 15:14:16 -07001023 # Dump stacks and wait for dump to finish
1024 adb shell kill -3 $PID
1025 adb shell notify $TRACES >/dev/null
Jeff Sharkeyf5824372013-02-19 17:00:46 -08001026
Jeff Brownb12c2e52013-08-19 15:14:16 -07001027 # Restore original stacks, and show current output
1028 adb shell mv $TRACES $TMP
1029 adb shell mv $ORIG $TRACES
1030 adb shell cat $TMP
1031 else
1032 # Dump stacks of native process
Michael Wrightaeed7212014-06-19 19:58:12 -07001033 local USE64BIT="$(is64bit $PID)"
1034 adb shell debuggerd$USE64BIT -b $PID
Jeff Brownb12c2e52013-08-19 15:14:16 -07001035 fi
Jeff Sharkeyf5824372013-02-19 17:00:46 -08001036 fi
Christopher Tate744ee802009-11-12 15:33:08 -08001037}
1038
Michael Wrightaeed7212014-06-19 19:58:12 -07001039# Read the ELF header from /proc/$PID/exe to determine if the process is
1040# 64-bit.
Ben Chengfba67bf2014-02-25 10:27:07 -08001041function is64bit()
1042{
1043 local PID="$1"
1044 if [ "$PID" ] ; then
Michael Wrightaeed7212014-06-19 19:58:12 -07001045 if [[ "$(adb shell cat /proc/$PID/exe | xxd -l 1 -s 4 -ps)" -eq "02" ]] ; then
Ben Chengfba67bf2014-02-25 10:27:07 -08001046 echo "64"
1047 else
1048 echo ""
1049 fi
1050 else
1051 echo ""
1052 fi
1053}
1054
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001055case `uname -s` in
1056 Darwin)
1057 function sgrep()
1058 {
Jeff Brown46cbd202014-07-26 15:15:41 -07001059 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 -07001060 }
1061
1062 ;;
1063 *)
1064 function sgrep()
1065 {
Jeff Brown46cbd202014-07-26 15:15:41 -07001066 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 -07001067 }
1068 ;;
1069esac
1070
Raghu Gandham8da43102012-07-25 19:57:22 -07001071function gettargetarch
1072{
1073 get_build_var TARGET_ARCH
1074}
1075
Jon Boekenoogencbca56f2014-04-07 10:57:38 -07001076function ggrep()
1077{
1078 find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -type f -name "*\.gradle" -print0 | xargs -0 grep --color -n "$@"
1079}
1080
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001081function jgrep()
1082{
Anatolii Shuba91c72d22013-07-05 16:09:25 +03001083 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 -07001084}
1085
1086function cgrep()
1087{
Dan Albert01961192014-11-22 10:16:01 -08001088 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' -o -name '*.hpp' \) -print0 | xargs -0 grep --color -n "$@"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001089}
1090
1091function resgrep()
1092{
Anatolii Shuba91c72d22013-07-05 16:09:25 +03001093 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 -07001094}
1095
Jeff Sharkey50b61e92013-03-08 10:20:47 -08001096function mangrep()
1097{
1098 find . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o -type f -name 'AndroidManifest.xml' -print0 | xargs -0 grep --color -n "$@"
1099}
1100
Alex Klyubinba5fc8e2013-05-06 14:11:48 -07001101function sepgrep()
1102{
1103 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 "$@"
1104}
1105
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001106case `uname -s` in
1107 Darwin)
1108 function mgrep()
1109 {
Ying Wang324c2b22012-08-17 15:03:20 -07001110 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 -07001111 }
1112
1113 function treegrep()
1114 {
Joe Onoratof50e84b2011-03-15 14:15:46 -07001115 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 -07001116 }
1117
1118 ;;
1119 *)
1120 function mgrep()
1121 {
Ying Wang324c2b22012-08-17 15:03:20 -07001122 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 -07001123 }
1124
1125 function treegrep()
1126 {
Joe Onoratof50e84b2011-03-15 14:15:46 -07001127 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 -07001128 }
1129
1130 ;;
1131esac
1132
1133function getprebuilt
1134{
1135 get_abs_build_var ANDROID_PREBUILTS
1136}
1137
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001138function tracedmdump()
1139{
1140 T=$(gettop)
1141 if [ ! "$T" ]; then
1142 echo "Couldn't locate the top of the tree. Try setting TOP."
1143 return
1144 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001145 local prebuiltdir=$(getprebuilt)
Raghu Gandham8da43102012-07-25 19:57:22 -07001146 local arch=$(gettargetarch)
1147 local KERNEL=$T/prebuilts/qemu-kernel/$arch/vmlinux-qemu
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001148
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001149 local TRACE=$1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001150 if [ ! "$TRACE" ] ; then
1151 echo "usage: tracedmdump tracename"
1152 return
1153 fi
1154
Jack Veenstra60116fc2009-04-09 18:12:34 -07001155 if [ ! -r "$KERNEL" ] ; then
1156 echo "Error: cannot find kernel: '$KERNEL'"
1157 return
1158 fi
1159
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001160 local BASETRACE=$(basename $TRACE)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001161 if [ "$BASETRACE" = "$TRACE" ] ; then
1162 TRACE=$ANDROID_PRODUCT_OUT/traces/$TRACE
1163 fi
1164
1165 echo "post-processing traces..."
1166 rm -f $TRACE/qtrace.dexlist
1167 post_trace $TRACE
1168 if [ $? -ne 0 ]; then
1169 echo "***"
1170 echo "*** Error: malformed trace. Did you remember to exit the emulator?"
1171 echo "***"
1172 return
1173 fi
1174 echo "generating dexlist output..."
1175 /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
1176 echo "generating dmtrace data..."
1177 q2dm -r $ANDROID_PRODUCT_OUT/symbols $TRACE $KERNEL $TRACE/dmtrace || return
1178 echo "generating html file..."
1179 dmtracedump -h $TRACE/dmtrace >| $TRACE/dmtrace.html || return
1180 echo "done, see $TRACE/dmtrace.html for details"
1181 echo "or run:"
1182 echo " traceview $TRACE/dmtrace"
1183}
1184
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001185# communicate with a running device or emulator, set up necessary state,
1186# and run the hat command.
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001187function runhat()
1188{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001189 # process standard adb options
1190 local adbTarget=""
Andy McFaddenb6289852010-07-12 08:00:19 -07001191 if [ "$1" = "-d" -o "$1" = "-e" ]; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001192 adbTarget=$1
1193 shift 1
Andy McFaddenb6289852010-07-12 08:00:19 -07001194 elif [ "$1" = "-s" ]; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001195 adbTarget="$1 $2"
1196 shift 2
1197 fi
1198 local adbOptions=${adbTarget}
Dianne Hackborn6b9549f2012-09-26 15:00:59 -07001199 #echo adbOptions = ${adbOptions}
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001200
1201 # runhat options
1202 local targetPid=$1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001203
1204 if [ "$targetPid" = "" ]; then
Andy McFaddenb6289852010-07-12 08:00:19 -07001205 echo "Usage: runhat [ -d | -e | -s serial ] target-pid"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001206 return
1207 fi
1208
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001209 # confirm hat is available
1210 if [ -z $(which hat) ]; then
1211 echo "hat is not available in this configuration."
1212 return
1213 fi
1214
Andy McFaddenb6289852010-07-12 08:00:19 -07001215 # issue "am" command to cause the hprof dump
Nick Kralevich9948b1e2014-07-18 15:45:38 -07001216 local devFile=/data/local/tmp/hprof-$targetPid
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001217 echo "Poking $targetPid and waiting for data..."
Dianne Hackborn6b9549f2012-09-26 15:00:59 -07001218 echo "Storing data at $devFile"
Andy McFaddenb6289852010-07-12 08:00:19 -07001219 adb ${adbOptions} shell am dumpheap $targetPid $devFile
The Android Open Source Project88b60792009-03-03 19:28:42 -08001220 echo "Press enter when logcat shows \"hprof: heap dump completed\""
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001221 echo -n "> "
1222 read
1223
The Android Open Source Project88b60792009-03-03 19:28:42 -08001224 local localFile=/tmp/$$-hprof
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001225
The Android Open Source Project88b60792009-03-03 19:28:42 -08001226 echo "Retrieving file $devFile..."
1227 adb ${adbOptions} pull $devFile $localFile
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001228
The Android Open Source Project88b60792009-03-03 19:28:42 -08001229 adb ${adbOptions} shell rm $devFile
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001230
The Android Open Source Project88b60792009-03-03 19:28:42 -08001231 echo "Running hat on $localFile"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001232 echo "View the output by pointing your browser at http://localhost:7000/"
1233 echo ""
Dianne Hackborn6e4e1bb2011-11-10 15:19:51 -08001234 hat -JXmx512m $localFile
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001235}
1236
1237function getbugreports()
1238{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001239 local reports=(`adb shell ls /sdcard/bugreports | tr -d '\r'`)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001240
1241 if [ ! "$reports" ]; then
1242 echo "Could not locate any bugreports."
1243 return
1244 fi
1245
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001246 local report
1247 for report in ${reports[@]}
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001248 do
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001249 echo "/sdcard/bugreports/${report}"
1250 adb pull /sdcard/bugreports/${report} ${report}
1251 gunzip ${report}
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001252 done
1253}
1254
Victoria Lease1b296b42012-08-21 15:44:06 -07001255function getsdcardpath()
1256{
1257 adb ${adbOptions} shell echo -n \$\{EXTERNAL_STORAGE\}
1258}
1259
1260function getscreenshotpath()
1261{
1262 echo "$(getsdcardpath)/Pictures/Screenshots"
1263}
1264
1265function getlastscreenshot()
1266{
1267 local screenshot_path=$(getscreenshotpath)
1268 local screenshot=`adb ${adbOptions} ls ${screenshot_path} | grep Screenshot_[0-9-]*.*\.png | sort -rk 3 | cut -d " " -f 4 | head -n 1`
1269 if [ "$screenshot" = "" ]; then
1270 echo "No screenshots found."
1271 return
1272 fi
1273 echo "${screenshot}"
1274 adb ${adbOptions} pull ${screenshot_path}/${screenshot}
1275}
1276
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001277function startviewserver()
1278{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001279 local port=4939
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001280 if [ $# -gt 0 ]; then
1281 port=$1
1282 fi
1283 adb shell service call window 1 i32 $port
1284}
1285
1286function stopviewserver()
1287{
1288 adb shell service call window 2
1289}
1290
1291function isviewserverstarted()
1292{
1293 adb shell service call window 3
1294}
1295
Romain Guyb84049a2010-10-04 16:56:11 -07001296function key_home()
1297{
1298 adb shell input keyevent 3
1299}
1300
1301function key_back()
1302{
1303 adb shell input keyevent 4
1304}
1305
1306function key_menu()
1307{
1308 adb shell input keyevent 82
1309}
1310
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001311function smoketest()
1312{
1313 if [ ! "$ANDROID_PRODUCT_OUT" ]; then
1314 echo "Couldn't locate output files. Try running 'lunch' first." >&2
1315 return
1316 fi
1317 T=$(gettop)
1318 if [ ! "$T" ]; then
1319 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
1320 return
1321 fi
1322
Ying Wang9cd17642012-12-13 10:52:07 -08001323 (\cd "$T" && mmm tests/SmokeTest) &&
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001324 adb uninstall com.android.smoketest > /dev/null &&
1325 adb uninstall com.android.smoketest.tests > /dev/null &&
1326 adb install $ANDROID_PRODUCT_OUT/data/app/SmokeTestApp.apk &&
1327 adb install $ANDROID_PRODUCT_OUT/data/app/SmokeTest.apk &&
1328 adb shell am instrument -w com.android.smoketest.tests/android.test.InstrumentationTestRunner
1329}
1330
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001331# simple shortcut to the runtest command
1332function runtest()
1333{
1334 T=$(gettop)
1335 if [ ! "$T" ]; then
1336 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
1337 return
1338 fi
Brett Chabot3fb149d2009-10-21 20:05:26 -07001339 ("$T"/development/testrunner/runtest.py $@)
Brett Chabot762748c2009-03-27 10:25:11 -07001340}
1341
The Android Open Source Project88b60792009-03-03 19:28:42 -08001342function godir () {
1343 if [[ -z "$1" ]]; then
1344 echo "Usage: godir <regex>"
1345 return
1346 fi
Brian Carlstromb9915a62010-01-29 16:39:32 -08001347 T=$(gettop)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001348 if [[ ! -f $T/filelist ]]; then
1349 echo -n "Creating index..."
Ying Wang9cd17642012-12-13 10:52:07 -08001350 (\cd $T; find . -wholename ./out -prune -o -wholename ./.repo -prune -o -type f > filelist)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001351 echo " Done"
1352 echo ""
1353 fi
1354 local lines
Jeff Hamilton293f9392011-11-18 17:15:25 -06001355 lines=($(\grep "$1" $T/filelist | sed -e 's/\/[^/]*$//' | sort | uniq))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001356 if [[ ${#lines[@]} = 0 ]]; then
1357 echo "Not found"
1358 return
1359 fi
1360 local pathname
1361 local choice
1362 if [[ ${#lines[@]} > 1 ]]; then
1363 while [[ -z "$pathname" ]]; do
1364 local index=1
1365 local line
1366 for line in ${lines[@]}; do
1367 printf "%6s %s\n" "[$index]" $line
Doug Zongker29034982011-04-22 08:16:56 -07001368 index=$(($index + 1))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001369 done
1370 echo
1371 echo -n "Select one: "
1372 unset choice
1373 read choice
1374 if [[ $choice -gt ${#lines[@]} || $choice -lt 1 ]]; then
1375 echo "Invalid choice"
1376 continue
1377 fi
Kan-Ru Chen07453762010-07-05 15:53:47 +08001378 pathname=${lines[$(($choice-1))]}
The Android Open Source Project88b60792009-03-03 19:28:42 -08001379 done
1380 else
The Android Open Source Project88b60792009-03-03 19:28:42 -08001381 pathname=${lines[0]}
1382 fi
Ying Wang9cd17642012-12-13 10:52:07 -08001383 \cd $T/$pathname
The Android Open Source Project88b60792009-03-03 19:28:42 -08001384}
1385
Neil Fuller46e00ea2014-10-16 10:23:03 +01001386# Force JAVA_HOME to point to java 1.7 if it isn't already set.
Narayan Kamath9260bba2014-01-17 10:05:25 +00001387#
1388# Note that the MacOS path for java 1.7 includes a minor revision number (sigh).
1389# For some reason, installing the JDK doesn't make it show up in the
1390# JavaVM.framework/Versions/1.7/ folder.
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -05001391function set_java_home() {
Narayan Kamath9260bba2014-01-17 10:05:25 +00001392 # Clear the existing JAVA_HOME value if we set it ourselves, so that
Narayan Kamathc84889b2014-04-01 14:16:26 +01001393 # we can reset it later, depending on the version of java the build
1394 # system needs.
Narayan Kamath9260bba2014-01-17 10:05:25 +00001395 #
1396 # If we don't do this, the JAVA_HOME value set by the first call to
1397 # build/envsetup.sh will persist forever.
1398 if [ -n "$ANDROID_SET_JAVA_HOME" ]; then
1399 export JAVA_HOME=""
1400 fi
1401
Andy McFaddenbd960942010-06-24 12:52:51 -07001402 if [ ! "$JAVA_HOME" ]; then
Neil Fuller46e00ea2014-10-16 10:23:03 +01001403 case `uname -s` in
1404 Darwin)
1405 export JAVA_HOME=$(/usr/libexec/java_home -v 1.7)
1406 ;;
1407 *)
1408 export JAVA_HOME=/usr/lib/jvm/java-7-openjdk-amd64
1409 ;;
1410 esac
Narayan Kamath9260bba2014-01-17 10:05:25 +00001411
1412 # Keep track of the fact that we set JAVA_HOME ourselves, so that
1413 # we can change it on the next envsetup.sh, if required.
1414 export ANDROID_SET_JAVA_HOME=true
Jeff Hamilton04be0d82010-06-07 15:03:54 -05001415 fi
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -05001416}
Jeff Hamilton04be0d82010-06-07 15:03:54 -05001417
Alex Rayf0d08eb2013-03-08 15:15:06 -08001418# Print colored exit condition
1419function pez {
Michael Wrighteb733842013-03-08 17:34:02 -08001420 "$@"
1421 local retval=$?
1422 if [ $retval -ne 0 ]
1423 then
Jacky Cao89483b82015-05-15 22:12:53 +08001424 echo $'\E'"[0;31mFAILURE\e[00m"
Michael Wrighteb733842013-03-08 17:34:02 -08001425 else
Jacky Cao89483b82015-05-15 22:12:53 +08001426 echo $'\E'"[0;32mSUCCESS\e[00m"
Michael Wrighteb733842013-03-08 17:34:02 -08001427 fi
1428 return $retval
Alex Rayf0d08eb2013-03-08 15:15:06 -08001429}
1430
Ying Wanged21d4c2014-08-24 22:14:19 -07001431function get_make_command()
1432{
1433 echo command make
1434}
1435
Ed Heylcc6be0a2014-06-18 14:55:58 -07001436function make()
1437{
1438 local start_time=$(date +"%s")
Ying Wanged21d4c2014-08-24 22:14:19 -07001439 $(get_make_command) "$@"
Ed Heylcc6be0a2014-06-18 14:55:58 -07001440 local ret=$?
1441 local end_time=$(date +"%s")
1442 local tdiff=$(($end_time-$start_time))
1443 local hours=$(($tdiff / 3600 ))
1444 local mins=$((($tdiff % 3600) / 60))
1445 local secs=$(($tdiff % 60))
Greg Hackmannd95c7f72014-06-23 14:05:06 -07001446 local ncolors=$(tput colors 2>/dev/null)
1447 if [ -n "$ncolors" ] && [ $ncolors -ge 8 ]; then
Jacky Cao89483b82015-05-15 22:12:53 +08001448 color_failed=$'\E'"[0;31m"
1449 color_success=$'\E'"[0;32m"
1450 color_reset=$'\E'"[00m"
Greg Hackmannd95c7f72014-06-23 14:05:06 -07001451 else
1452 color_failed=""
1453 color_success=""
1454 color_reset=""
1455 fi
Ed Heylcc6be0a2014-06-18 14:55:58 -07001456 echo
1457 if [ $ret -eq 0 ] ; then
Jacky Cao89483b82015-05-15 22:12:53 +08001458 echo -n "${color_success}#### make completed successfully "
Ed Heylcc6be0a2014-06-18 14:55:58 -07001459 else
Jacky Cao89483b82015-05-15 22:12:53 +08001460 echo -n "${color_failed}#### make failed to build some targets "
Ed Heylcc6be0a2014-06-18 14:55:58 -07001461 fi
1462 if [ $hours -gt 0 ] ; then
1463 printf "(%02g:%02g:%02g (hh:mm:ss))" $hours $mins $secs
1464 elif [ $mins -gt 0 ] ; then
1465 printf "(%02g:%02g (mm:ss))" $mins $secs
1466 elif [ $secs -gt 0 ] ; then
1467 printf "(%s seconds)" $secs
1468 fi
Jacky Cao89483b82015-05-15 22:12:53 +08001469 echo " ####${color_reset}"
Ed Heylcc6be0a2014-06-18 14:55:58 -07001470 echo
1471 return $ret
1472}
1473
David Zeuthen1b126ff2015-09-30 17:10:48 -04001474function provision()
1475{
1476 if [ ! "$ANDROID_PRODUCT_OUT" ]; then
1477 echo "Couldn't locate output files. Try running 'lunch' first." >&2
1478 return 1
1479 fi
1480 if [ ! -e "$ANDROID_PRODUCT_OUT/provision-device" ]; then
1481 echo "There is no provisioning script for the device." >&2
1482 return 1
1483 fi
1484
1485 # Check if user really wants to do this.
1486 if [ "$1" = "--no-confirmation" ]; then
1487 shift 1
1488 else
1489 echo "This action will reflash your device."
1490 echo ""
1491 echo "ALL DATA ON THE DEVICE WILL BE IRREVOCABLY ERASED."
1492 echo ""
1493 read -p "Are you sure you want to do this (yes/no)? "
1494 if [[ "${REPLY}" != "yes" ]] ; then
1495 echo "Not taking any action. Exiting." >&2
1496 return 1
1497 fi
1498 fi
1499 "$ANDROID_PRODUCT_OUT/provision-device" "$@"
1500}
1501
Raphael Moll70a86b02011-06-20 16:03:14 -07001502if [ "x$SHELL" != "x/bin/bash" ]; then
1503 case `ps -o command -p $$` in
1504 *bash*)
1505 ;;
1506 *)
1507 echo "WARNING: Only bash is supported, use of other shell would lead to erroneous results"
1508 ;;
1509 esac
1510fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001511
1512# Execute the contents of any vendorsetup.sh files we can find.
Oleksiy Avramchenko15760a82014-10-06 18:51:58 +02001513for f in `test -d device && find -L device -maxdepth 4 -name 'vendorsetup.sh' 2> /dev/null | sort` \
1514 `test -d vendor && find -L vendor -maxdepth 4 -name 'vendorsetup.sh' 2> /dev/null | sort`
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001515do
1516 echo "including $f"
1517 . $f
1518done
1519unset f
Kenny Root52aa81c2011-07-15 11:07:06 -07001520
1521addcompletions