blob: 38790b45402033d170c7d85e23506db15d1dd029 [file] [log] [blame]
Dan Albertf9631fd2015-02-12 11:14:39 -08001# These unsets should stay to clear the old functions from any long running
2# shells.
3# TODO(danalbert): Remove this in a day or so.
4unset -f gdbwrapper
5unset -f get_symbols_directory
6unset -f adb_get_product_device
7unset -f adb_get_traced_by
8unset -f gdbclient
9unset -f gdbclient_old
10
Scott Anderson1a5fc952012-03-07 17:15:06 -080011function hmm() {
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070012cat <<EOF
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -080013Invoke ". build/envsetup.sh" from your shell to add the following functions to your environment:
Ying Wang67f02922012-08-22 10:25:20 -070014- lunch: lunch <product_name>-<build_variant>
Ying Wangb541ab62014-05-29 17:57:40 -070015- tapas: tapas [<App1> <App2> ...] [arm|x86|mips|armv5|arm64|x86_64|mips64] [eng|userdebug|user]
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070016- croot: Changes directory to the top of the tree.
17- m: Makes from the top of the tree.
Ying Wangb607f7b2013-02-08 18:01:04 -080018- mm: Builds all of the modules in the current directory, but not their dependencies.
19- mmm: Builds all of the modules in the supplied directories, but not their dependencies.
Primiano Tucci6a8069d2014-02-26 11:09:19 +000020 To limit the modules being built use the syntax: mmm dir/:target1,target2.
Ying Wangb607f7b2013-02-08 18:01:04 -080021- mma: Builds all of the modules in the current directory, and their dependencies.
22- mmma: Builds all of the modules in the supplied directories, and their dependencies.
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070023- cgrep: Greps on all local C/C++ files.
Jon Boekenoogencbca56f2014-04-07 10:57:38 -070024- ggrep: Greps on all local Gradle files.
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070025- jgrep: Greps on all local Java files.
26- resgrep: Greps on all local res/*.xml files.
Trevor Drake9c889762015-01-30 04:42:21 +000027- mangrep: Greps on all local AndroidManifest.xml files.
28- sepgrep: Greps on all local sepolicy files.
Jeff Brown46cbd202014-07-26 15:15:41 -070029- sgrep: Greps on all local source files.
The Android Open Source Project88b60792009-03-03 19:28:42 -080030- godir: Go to the directory containing a file.
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070031
Dan Albert4ae5d4b2014-10-31 16:23:08 -070032Environemnt options:
33- SANITIZE_HOST: Set to 'true' to use ASAN for all host modules. Note that
34 ASAN_OPTIONS=detect_leaks=0 will be set by default until the
35 build is leak-check clean.
36
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070037Look at the source to view more functions. The complete list is:
38EOF
39 T=$(gettop)
40 local A
41 A=""
Jeff Brown46cbd202014-07-26 15:15:41 -070042 for i in `cat $T/build/envsetup.sh | sed -n "/^[ \t]*function /s/function \([a-z_]*\).*/\1/p" | sort | uniq`; do
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070043 A="$A $i"
44 done
45 echo $A
46}
47
48# Get the value of a build variable as an absolute path.
49function get_abs_build_var()
50{
51 T=$(gettop)
52 if [ ! "$T" ]; then
53 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
54 return
55 fi
Ying Wang9cd17642012-12-13 10:52:07 -080056 (\cd $T; CALLED_FROM_SETUP=true BUILD_SYSTEM=build/core \
Ed Heylc6d11f82014-06-27 13:32:39 -070057 command make --no-print-directory -f build/core/config.mk dumpvar-abs-$1)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070058}
59
60# Get the exact value of a build variable.
61function get_build_var()
62{
63 T=$(gettop)
64 if [ ! "$T" ]; then
65 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
66 return
67 fi
Andrew Boie6905e212013-12-19 13:21:46 -080068 (\cd $T; CALLED_FROM_SETUP=true BUILD_SYSTEM=build/core \
Ed Heylc6d11f82014-06-27 13:32:39 -070069 command make --no-print-directory -f build/core/config.mk dumpvar-$1)
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -080070}
71
72# check to see if the supplied product is one we can build
73function check_product()
74{
75 T=$(gettop)
76 if [ ! "$T" ]; then
77 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
78 return
79 fi
Jeff Browne33ba4c2011-07-11 22:11:46 -070080 TARGET_PRODUCT=$1 \
81 TARGET_BUILD_VARIANT= \
82 TARGET_BUILD_TYPE= \
Joe Onoratoda12daf2010-06-09 18:18:31 -070083 TARGET_BUILD_APPS= \
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -080084 get_build_var TARGET_DEVICE > /dev/null
85 # hide successful answers, but allow the errors to show
86}
87
88VARIANT_CHOICES=(user userdebug eng)
89
90# check to see if the supplied variant is valid
91function check_variant()
92{
93 for v in ${VARIANT_CHOICES[@]}
94 do
95 if [ "$v" = "$1" ]
96 then
97 return 0
98 fi
99 done
100 return 1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700101}
102
103function setpaths()
104{
105 T=$(gettop)
106 if [ ! "$T" ]; then
107 echo "Couldn't locate the top of the tree. Try setting TOP."
108 return
109 fi
110
111 ##################################################################
112 # #
113 # Read me before you modify this code #
114 # #
115 # This function sets ANDROID_BUILD_PATHS to what it is adding #
116 # to PATH, and the next time it is run, it removes that from #
117 # PATH. This is required so lunch can be run more than once #
118 # and still have working paths. #
119 # #
120 ##################################################################
121
Raphael Mollc639c782011-06-20 17:25:01 -0700122 # Note: on windows/cygwin, ANDROID_BUILD_PATHS will contain spaces
123 # due to "C:\Program Files" being in the path.
124
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700125 # out with the old
Raphael Mollc639c782011-06-20 17:25:01 -0700126 if [ -n "$ANDROID_BUILD_PATHS" ] ; then
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700127 export PATH=${PATH/$ANDROID_BUILD_PATHS/}
128 fi
Raphael Mollc639c782011-06-20 17:25:01 -0700129 if [ -n "$ANDROID_PRE_BUILD_PATHS" ] ; then
Doug Zongker29034982011-04-22 08:16:56 -0700130 export PATH=${PATH/$ANDROID_PRE_BUILD_PATHS/}
Ying Wangaa1c9b52012-11-26 20:51:59 -0800131 # strip leading ':', if any
132 export PATH=${PATH/:%/}
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500133 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700134
135 # and in with the new
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700136 prebuiltdir=$(getprebuilt)
Jing Yuf5172c72012-03-29 20:45:50 -0700137 gccprebuiltdir=$(get_abs_build_var ANDROID_GCC_PREBUILTS)
Raphael732936d2011-06-22 14:35:32 -0700138
Ben Cheng8bc4c432012-11-16 13:29:13 -0800139 # defined in core/config.mk
140 targetgccversion=$(get_build_var TARGET_GCC_VERSION)
Colin Cross03b424a2014-05-22 11:57:43 -0700141 targetgccversion2=$(get_build_var 2ND_TARGET_GCC_VERSION)
Ben Cheng15266702012-12-10 16:04:39 -0800142 export TARGET_GCC_VERSION=$targetgccversion
Ben Cheng8bc4c432012-11-16 13:29:13 -0800143
Raphael Mollc639c782011-06-20 17:25:01 -0700144 # The gcc toolchain does not exists for windows/cygwin. In this case, do not reference it.
Ben Chengfba67bf2014-02-25 10:27:07 -0800145 export ANDROID_TOOLCHAIN=
146 export ANDROID_TOOLCHAIN_2ND_ARCH=
David 'Digit' Turner2056c252012-04-17 14:50:47 +0200147 local ARCH=$(get_build_var TARGET_ARCH)
148 case $ARCH in
Pavel Chupinc1a56642013-08-23 16:49:21 +0400149 x86) toolchaindir=x86/x86_64-linux-android-$targetgccversion/bin
Mark D Horn7d0ede72012-03-14 14:20:30 -0700150 ;;
Pavel Chupinfd82a492012-11-26 09:50:07 +0400151 x86_64) toolchaindir=x86/x86_64-linux-android-$targetgccversion/bin
152 ;;
Ben Cheng8bc4c432012-11-16 13:29:13 -0800153 arm) toolchaindir=arm/arm-linux-androideabi-$targetgccversion/bin
David 'Digit' Turner2056c252012-04-17 14:50:47 +0200154 ;;
Ben Chengfba67bf2014-02-25 10:27:07 -0800155 arm64) toolchaindir=aarch64/aarch64-linux-android-$targetgccversion/bin;
Colin Cross03b424a2014-05-22 11:57:43 -0700156 toolchaindir2=arm/arm-linux-androideabi-$targetgccversion2/bin
Ben Chengdb4fc202013-10-04 16:02:59 -0700157 ;;
Duane Sand3c4fcd82014-07-22 14:34:00 -0700158 mips|mips64) toolchaindir=mips/mips64el-linux-android-$targetgccversion/bin
Serban Constantinescu9b68fb22014-01-14 10:33:53 +0000159 ;;
David 'Digit' Turner2056c252012-04-17 14:50:47 +0200160 *)
161 echo "Can't find toolchain for unknown architecture: $ARCH"
162 toolchaindir=xxxxxxxxx
Mark D Horn7d0ede72012-03-14 14:20:30 -0700163 ;;
164 esac
Jing Yuf5172c72012-03-29 20:45:50 -0700165 if [ -d "$gccprebuiltdir/$toolchaindir" ]; then
Ben Chengfba67bf2014-02-25 10:27:07 -0800166 export ANDROID_TOOLCHAIN=$gccprebuiltdir/$toolchaindir
Raphael Mollc639c782011-06-20 17:25:01 -0700167 fi
Raphael732936d2011-06-22 14:35:32 -0700168
Ben Chengfba67bf2014-02-25 10:27:07 -0800169 if [ -d "$gccprebuiltdir/$toolchaindir2" ]; then
170 export ANDROID_TOOLCHAIN_2ND_ARCH=$gccprebuiltdir/$toolchaindir2
171 fi
172
173 unset ANDROID_KERNEL_TOOLCHAIN_PATH
Ying Wang08f5e9a2012-04-17 18:10:11 -0700174 case $ARCH in
Bruce Beare42ced6d2012-07-17 21:40:01 -0700175 arm)
Ben Chengfba67bf2014-02-25 10:27:07 -0800176 # Legacy toolchain configuration used for ARM kernel compilation
Ben Cheng8bc4c432012-11-16 13:29:13 -0800177 toolchaindir=arm/arm-eabi-$targetgccversion/bin
Bruce Beare42ced6d2012-07-17 21:40:01 -0700178 if [ -d "$gccprebuiltdir/$toolchaindir" ]; then
Torne (Richard Coles)f24c3562014-04-25 16:24:22 +0100179 export ARM_EABI_TOOLCHAIN="$gccprebuiltdir/$toolchaindir"
180 ANDROID_KERNEL_TOOLCHAIN_PATH="$ARM_EABI_TOOLCHAIN":
Bruce Beare42ced6d2012-07-17 21:40:01 -0700181 fi
Ying Wang08f5e9a2012-04-17 18:10:11 -0700182 ;;
183 *)
Bruce Beare42ced6d2012-07-17 21:40:01 -0700184 # No need to set ARM_EABI_TOOLCHAIN for other ARCHs
Ying Wang08f5e9a2012-04-17 18:10:11 -0700185 ;;
186 esac
Ying Wang08f5e9a2012-04-17 18:10:11 -0700187
Ying Wang564f9122013-03-29 17:40:14 -0700188 export ANDROID_DEV_SCRIPTS=$T/development/scripts:$T/prebuilts/devtools/tools
Ying Wang2a859d52014-06-30 10:25:33 -0700189 export ANDROID_BUILD_PATHS=$(get_build_var ANDROID_BUILD_PATHS):$ANDROID_TOOLCHAIN:$ANDROID_TOOLCHAIN_2ND_ARCH:$ANDROID_KERNEL_TOOLCHAIN_PATH$ANDROID_DEV_SCRIPTS:
David 'Digit' Turner94d16e52014-05-05 16:13:50 +0200190
191 # If prebuilts/android-emulator/<system>/ exists, prepend it to our PATH
192 # to ensure that the corresponding 'emulator' binaries are used.
193 case $(uname -s) in
194 Darwin)
195 ANDROID_EMULATOR_PREBUILTS=$T/prebuilts/android-emulator/darwin-x86_64
196 ;;
197 Linux)
198 ANDROID_EMULATOR_PREBUILTS=$T/prebuilts/android-emulator/linux-x86_64
199 ;;
200 *)
201 ANDROID_EMULATOR_PREBUILTS=
202 ;;
203 esac
204 if [ -n "$ANDROID_EMULATOR_PREBUILTS" -a -d "$ANDROID_EMULATOR_PREBUILTS" ]; then
Christopher Ferris7110f242014-05-20 13:56:00 -0700205 ANDROID_BUILD_PATHS=$ANDROID_BUILD_PATHS$ANDROID_EMULATOR_PREBUILTS:
David 'Digit' Turner94d16e52014-05-05 16:13:50 +0200206 export ANDROID_EMULATOR_PREBUILTS
207 fi
208
Ying Wangaa1c9b52012-11-26 20:51:59 -0800209 export PATH=$ANDROID_BUILD_PATHS$PATH
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800210
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500211 unset ANDROID_JAVA_TOOLCHAIN
Ji-Hwan Lee752ad062011-07-04 14:09:47 +0900212 unset ANDROID_PRE_BUILD_PATHS
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500213 if [ -n "$JAVA_HOME" ]; then
214 export ANDROID_JAVA_TOOLCHAIN=$JAVA_HOME/bin
Ji-Hwan Lee752ad062011-07-04 14:09:47 +0900215 export ANDROID_PRE_BUILD_PATHS=$ANDROID_JAVA_TOOLCHAIN:
216 export PATH=$ANDROID_PRE_BUILD_PATHS$PATH
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500217 fi
218
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800219 unset ANDROID_PRODUCT_OUT
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700220 export ANDROID_PRODUCT_OUT=$(get_abs_build_var PRODUCT_OUT)
221 export OUT=$ANDROID_PRODUCT_OUT
222
Jeff Brown8fd5cce2011-03-24 17:03:06 -0700223 unset ANDROID_HOST_OUT
224 export ANDROID_HOST_OUT=$(get_abs_build_var HOST_OUT)
225
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800226 # needed for building linux on MacOS
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700227 # TODO: fix the path
228 #export HOST_EXTRACFLAGS="-I "$T/system/kernel_headers/host_include
229}
230
231function printconfig()
232{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800233 T=$(gettop)
234 if [ ! "$T" ]; then
235 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
236 return
237 fi
238 get_build_var report_config
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700239}
240
241function set_stuff_for_environment()
242{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800243 settitle
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500244 set_java_home
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800245 setpaths
246 set_sequence_number
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700247
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800248 export ANDROID_BUILD_TOP=$(gettop)
Ben Chengaac3f812013-08-13 14:38:15 -0700249 # With this environment variable new GCC can apply colors to warnings/errors
250 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 -0700251 export ASAN_OPTIONS=detect_leaks=0
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700252}
253
254function set_sequence_number()
255{
Joe Onoratoaee4daa2010-06-23 14:03:13 -0700256 export BUILD_ENV_SEQUENCE_NUMBER=10
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700257}
258
259function settitle()
260{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800261 if [ "$STAY_OFF_MY_LAWN" = "" ]; then
Raghu Gandham8da43102012-07-25 19:57:22 -0700262 local arch=$(gettargetarch)
Joe Onoratoda12daf2010-06-09 18:18:31 -0700263 local product=$TARGET_PRODUCT
264 local variant=$TARGET_BUILD_VARIANT
265 local apps=$TARGET_BUILD_APPS
266 if [ -z "$apps" ]; then
Raghu Gandham8da43102012-07-25 19:57:22 -0700267 export PROMPT_COMMAND="echo -ne \"\033]0;[${arch}-${product}-${variant}] ${USER}@${HOSTNAME}: ${PWD}\007\""
Joe Onoratoda12daf2010-06-09 18:18:31 -0700268 else
Raghu Gandham8da43102012-07-25 19:57:22 -0700269 export PROMPT_COMMAND="echo -ne \"\033]0;[$arch $apps $variant] ${USER}@${HOSTNAME}: ${PWD}\007\""
Joe Onoratoda12daf2010-06-09 18:18:31 -0700270 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800271 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700272}
273
Kenny Root52aa81c2011-07-15 11:07:06 -0700274function addcompletions()
275{
276 local T dir f
277
278 # Keep us from trying to run in something that isn't bash.
279 if [ -z "${BASH_VERSION}" ]; then
280 return
281 fi
282
283 # Keep us from trying to run in bash that's too old.
284 if [ ${BASH_VERSINFO[0]} -lt 3 ]; then
285 return
286 fi
287
288 dir="sdk/bash_completion"
289 if [ -d ${dir} ]; then
Kenny Root7546d612011-07-18 13:11:34 -0700290 for f in `/bin/ls ${dir}/[a-z]*.bash 2> /dev/null`; do
Kenny Root52aa81c2011-07-15 11:07:06 -0700291 echo "including $f"
292 . $f
293 done
294 fi
295}
296
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700297function choosetype()
298{
299 echo "Build type choices are:"
300 echo " 1. release"
301 echo " 2. debug"
302 echo
303
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800304 local DEFAULT_NUM DEFAULT_VALUE
Jeff Browne33ba4c2011-07-11 22:11:46 -0700305 DEFAULT_NUM=1
306 DEFAULT_VALUE=release
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700307
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800308 export TARGET_BUILD_TYPE=
309 local ANSWER
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700310 while [ -z $TARGET_BUILD_TYPE ]
311 do
312 echo -n "Which would you like? ["$DEFAULT_NUM"] "
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800313 if [ -z "$1" ] ; then
314 read ANSWER
315 else
316 echo $1
317 ANSWER=$1
318 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700319 case $ANSWER in
320 "")
321 export TARGET_BUILD_TYPE=$DEFAULT_VALUE
322 ;;
323 1)
324 export TARGET_BUILD_TYPE=release
325 ;;
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800326 release)
327 export TARGET_BUILD_TYPE=release
328 ;;
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700329 2)
330 export TARGET_BUILD_TYPE=debug
331 ;;
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800332 debug)
333 export TARGET_BUILD_TYPE=debug
334 ;;
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700335 *)
336 echo
337 echo "I didn't understand your response. Please try again."
338 echo
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700339 ;;
340 esac
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800341 if [ -n "$1" ] ; then
342 break
343 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700344 done
345
346 set_stuff_for_environment
347}
348
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800349#
350# This function isn't really right: It chooses a TARGET_PRODUCT
351# based on the list of boards. Usually, that gets you something
352# that kinda works with a generic product, but really, you should
353# pick a product by name.
354#
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700355function chooseproduct()
356{
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700357 if [ "x$TARGET_PRODUCT" != x ] ; then
358 default_value=$TARGET_PRODUCT
359 else
Jeff Browne33ba4c2011-07-11 22:11:46 -0700360 default_value=full
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700361 fi
362
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800363 export TARGET_PRODUCT=
364 local ANSWER
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700365 while [ -z "$TARGET_PRODUCT" ]
366 do
Joe Onorato8849aed2009-04-29 15:56:47 -0700367 echo -n "Which product would you like? [$default_value] "
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800368 if [ -z "$1" ] ; then
369 read ANSWER
370 else
371 echo $1
372 ANSWER=$1
373 fi
374
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700375 if [ -z "$ANSWER" ] ; then
376 export TARGET_PRODUCT=$default_value
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800377 else
378 if check_product $ANSWER
379 then
380 export TARGET_PRODUCT=$ANSWER
381 else
382 echo "** Not a valid product: $ANSWER"
383 fi
384 fi
385 if [ -n "$1" ] ; then
386 break
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700387 fi
388 done
389
390 set_stuff_for_environment
391}
392
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800393function choosevariant()
394{
395 echo "Variant choices are:"
396 local index=1
397 local v
398 for v in ${VARIANT_CHOICES[@]}
399 do
400 # The product name is the name of the directory containing
401 # the makefile we found, above.
402 echo " $index. $v"
403 index=$(($index+1))
404 done
405
406 local default_value=eng
407 local ANSWER
408
409 export TARGET_BUILD_VARIANT=
410 while [ -z "$TARGET_BUILD_VARIANT" ]
411 do
412 echo -n "Which would you like? [$default_value] "
413 if [ -z "$1" ] ; then
414 read ANSWER
415 else
416 echo $1
417 ANSWER=$1
418 fi
419
420 if [ -z "$ANSWER" ] ; then
421 export TARGET_BUILD_VARIANT=$default_value
422 elif (echo -n $ANSWER | grep -q -e "^[0-9][0-9]*$") ; then
423 if [ "$ANSWER" -le "${#VARIANT_CHOICES[@]}" ] ; then
Kan-Ru Chen07453762010-07-05 15:53:47 +0800424 export TARGET_BUILD_VARIANT=${VARIANT_CHOICES[$(($ANSWER-1))]}
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800425 fi
426 else
427 if check_variant $ANSWER
428 then
429 export TARGET_BUILD_VARIANT=$ANSWER
430 else
431 echo "** Not a valid variant: $ANSWER"
432 fi
433 fi
434 if [ -n "$1" ] ; then
435 break
436 fi
437 done
438}
439
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700440function choosecombo()
441{
Jeff Browne33ba4c2011-07-11 22:11:46 -0700442 choosetype $1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700443
444 echo
445 echo
Jeff Browne33ba4c2011-07-11 22:11:46 -0700446 chooseproduct $2
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700447
448 echo
449 echo
Jeff Browne33ba4c2011-07-11 22:11:46 -0700450 choosevariant $3
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800451
452 echo
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700453 set_stuff_for_environment
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800454 printconfig
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700455}
456
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800457# Clear this variable. It will be built up again when the vendorsetup.sh
458# files are included at the end of this file.
459unset LUNCH_MENU_CHOICES
460function add_lunch_combo()
461{
462 local new_combo=$1
463 local c
464 for c in ${LUNCH_MENU_CHOICES[@]} ; do
465 if [ "$new_combo" = "$c" ] ; then
466 return
467 fi
468 done
469 LUNCH_MENU_CHOICES=(${LUNCH_MENU_CHOICES[@]} $new_combo)
470}
471
472# add the default one here
Jean-Baptiste Queru324c1232013-03-22 15:53:54 -0700473add_lunch_combo aosp_arm-eng
Colin Cross4f0eb7d2014-01-21 19:35:38 -0800474add_lunch_combo aosp_arm64-eng
Serban Constantinescu9b68fb22014-01-14 10:33:53 +0000475add_lunch_combo aosp_mips-eng
Chris Dearman1efd9e42014-02-03 15:01:24 -0800476add_lunch_combo aosp_mips64-eng
Serban Constantinescu9b68fb22014-01-14 10:33:53 +0000477add_lunch_combo aosp_x86-eng
478add_lunch_combo aosp_x86_64-eng
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800479
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700480function print_lunch_menu()
481{
482 local uname=$(uname)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700483 echo
484 echo "You're building on" $uname
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700485 echo
486 echo "Lunch menu... pick a combo:"
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800487
488 local i=1
489 local choice
490 for choice in ${LUNCH_MENU_CHOICES[@]}
491 do
492 echo " $i. $choice"
493 i=$(($i+1))
494 done
495
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700496 echo
497}
498
499function lunch()
500{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800501 local answer
502
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700503 if [ "$1" ] ; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800504 answer=$1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700505 else
506 print_lunch_menu
Jean-Baptiste Queru324c1232013-03-22 15:53:54 -0700507 echo -n "Which would you like? [aosp_arm-eng] "
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800508 read answer
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700509 fi
510
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800511 local selection=
512
513 if [ -z "$answer" ]
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700514 then
Jean-Baptiste Queru324c1232013-03-22 15:53:54 -0700515 selection=aosp_arm-eng
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800516 elif (echo -n $answer | grep -q -e "^[0-9][0-9]*$")
517 then
518 if [ $answer -le ${#LUNCH_MENU_CHOICES[@]} ]
519 then
Kan-Ru Chen07453762010-07-05 15:53:47 +0800520 selection=${LUNCH_MENU_CHOICES[$(($answer-1))]}
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800521 fi
522 elif (echo -n $answer | grep -q -e "^[^\-][^\-]*-[^\-][^\-]*$")
523 then
524 selection=$answer
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700525 fi
526
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800527 if [ -z "$selection" ]
528 then
529 echo
530 echo "Invalid lunch combo: $answer"
531 return 1
532 fi
533
Joe Onoratoda12daf2010-06-09 18:18:31 -0700534 export TARGET_BUILD_APPS=
535
Jeff Browne33ba4c2011-07-11 22:11:46 -0700536 local product=$(echo -n $selection | sed -e "s/-.*$//")
537 check_product $product
538 if [ $? -ne 0 ]
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800539 then
Jeff Browne33ba4c2011-07-11 22:11:46 -0700540 echo
541 echo "** Don't have a product spec for: '$product'"
542 echo "** Do you have the right repo manifest?"
543 product=
544 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800545
Jeff Browne33ba4c2011-07-11 22:11:46 -0700546 local variant=$(echo -n $selection | sed -e "s/^[^\-]*-//")
547 check_variant $variant
548 if [ $? -ne 0 ]
549 then
550 echo
551 echo "** Invalid variant: '$variant'"
552 echo "** Must be one of ${VARIANT_CHOICES[@]}"
553 variant=
554 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800555
Jeff Browne33ba4c2011-07-11 22:11:46 -0700556 if [ -z "$product" -o -z "$variant" ]
557 then
558 echo
559 return 1
560 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800561
Jeff Browne33ba4c2011-07-11 22:11:46 -0700562 export TARGET_PRODUCT=$product
563 export TARGET_BUILD_VARIANT=$variant
564 export TARGET_BUILD_TYPE=release
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700565
566 echo
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800567
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700568 set_stuff_for_environment
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800569 printconfig
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700570}
571
Jeff Davidson513d7a42010-08-02 10:00:44 -0700572# Tab completion for lunch.
573function _lunch()
574{
575 local cur prev opts
576 COMPREPLY=()
577 cur="${COMP_WORDS[COMP_CWORD]}"
578 prev="${COMP_WORDS[COMP_CWORD-1]}"
579
580 COMPREPLY=( $(compgen -W "${LUNCH_MENU_CHOICES[*]}" -- ${cur}) )
581 return 0
582}
583complete -F _lunch lunch
584
Joe Onoratoda12daf2010-06-09 18:18:31 -0700585# Configures the build to build unbundled apps.
Doug Zongker0d8179e2014-04-16 11:34:34 -0700586# Run tapas with one or more app names (from LOCAL_PACKAGE_NAME)
Joe Onoratoda12daf2010-06-09 18:18:31 -0700587function tapas()
588{
Ying Wangb541ab62014-05-29 17:57:40 -0700589 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 -0700590 local variant="$(echo $* | xargs -n 1 echo | \grep -E '^(user|userdebug|eng)$' | xargs)"
Ying Wangb541ab62014-05-29 17:57:40 -0700591 local apps="$(echo $* | xargs -n 1 echo | \grep -E -v '^(user|userdebug|eng|arm|x86|mips|armv5|arm64|x86_64|mips64)$' | xargs)"
Joe Onoratoda12daf2010-06-09 18:18:31 -0700592
Ying Wang67f02922012-08-22 10:25:20 -0700593 if [ $(echo $arch | wc -w) -gt 1 ]; then
594 echo "tapas: Error: Multiple build archs supplied: $arch"
595 return
596 fi
Joe Onoratoda12daf2010-06-09 18:18:31 -0700597 if [ $(echo $variant | wc -w) -gt 1 ]; then
598 echo "tapas: Error: Multiple build variants supplied: $variant"
599 return
600 fi
Ying Wang67f02922012-08-22 10:25:20 -0700601
602 local product=full
603 case $arch in
Ying Wangb541ab62014-05-29 17:57:40 -0700604 x86) product=full_x86;;
605 mips) product=full_mips;;
606 armv5) product=generic_armv5;;
607 arm64) product=aosp_arm64;;
608 x86_64) product=aosp_x86_64;;
609 mips64) product=aosp_mips64;;
Ying Wang67f02922012-08-22 10:25:20 -0700610 esac
Joe Onoratoda12daf2010-06-09 18:18:31 -0700611 if [ -z "$variant" ]; then
612 variant=eng
613 fi
Ying Wangc048c9b2010-06-24 15:08:33 -0700614 if [ -z "$apps" ]; then
615 apps=all
616 fi
Joe Onoratoda12daf2010-06-09 18:18:31 -0700617
Ying Wang67f02922012-08-22 10:25:20 -0700618 export TARGET_PRODUCT=$product
Joe Onoratoda12daf2010-06-09 18:18:31 -0700619 export TARGET_BUILD_VARIANT=$variant
Joe Onoratoda12daf2010-06-09 18:18:31 -0700620 export TARGET_BUILD_TYPE=release
621 export TARGET_BUILD_APPS=$apps
622
623 set_stuff_for_environment
624 printconfig
625}
626
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700627function gettop
628{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800629 local TOPFILE=build/core/envsetup.mk
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700630 if [ -n "$TOP" -a -f "$TOP/$TOPFILE" ] ; then
Brian Carlstroma5c4f172014-09-12 00:33:25 -0700631 # The following circumlocution ensures we remove symlinks from TOP.
632 (cd $TOP; PWD= /bin/pwd)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700633 else
634 if [ -f $TOPFILE ] ; then
Dan Bornsteind0b274d2009-11-24 15:48:50 -0800635 # The following circumlocution (repeated below as well) ensures
636 # that we record the true directory name and not one that is
637 # faked up with symlink names.
638 PWD= /bin/pwd
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700639 else
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800640 local HERE=$PWD
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700641 T=
642 while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do
Ying Wang9cd17642012-12-13 10:52:07 -0800643 \cd ..
synergyb112a402013-07-05 19:47:47 -0700644 T=`PWD= /bin/pwd -P`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700645 done
Ying Wang9cd17642012-12-13 10:52:07 -0800646 \cd $HERE
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700647 if [ -f "$T/$TOPFILE" ]; then
648 echo $T
649 fi
650 fi
651 fi
652}
653
Andrew Hsieh906cb782013-09-10 17:37:14 +0800654# Return driver for "make", if any (eg. static analyzer)
655function getdriver()
656{
657 local T="$1"
658 test "$WITH_STATIC_ANALYZER" = "0" && unset WITH_STATIC_ANALYZER
659 if [ -n "$WITH_STATIC_ANALYZER" ]; then
660 echo "\
Andrew Hsiehc4f7fba2014-03-03 16:53:17 +0800661$T/prebuilts/misc/linux-x86/analyzer/tools/scan-build/scan-build \
662--use-analyzer $T/prebuilts/misc/linux-x86/analyzer/bin/analyzer \
Andrew Hsieh906cb782013-09-10 17:37:14 +0800663--status-bugs \
664--top=$T"
665 fi
666}
667
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700668function m()
669{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800670 local T=$(gettop)
671 local DRV=$(getdriver $T)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700672 if [ "$T" ]; then
Andrew Hsieh906cb782013-09-10 17:37:14 +0800673 $DRV make -C $T -f build/core/main.mk $@
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700674 else
675 echo "Couldn't locate the top of the tree. Try setting TOP."
676 fi
677}
678
679function findmakefile()
680{
681 TOPFILE=build/core/envsetup.mk
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800682 local HERE=$PWD
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700683 T=
684 while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do
Ying Wang11b15b12012-10-11 15:05:07 -0700685 T=`PWD= /bin/pwd`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700686 if [ -f "$T/Android.mk" ]; then
687 echo $T/Android.mk
Ying Wang9cd17642012-12-13 10:52:07 -0800688 \cd $HERE
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700689 return
690 fi
Ying Wang9cd17642012-12-13 10:52:07 -0800691 \cd ..
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700692 done
Ying Wang9cd17642012-12-13 10:52:07 -0800693 \cd $HERE
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700694}
695
696function mm()
697{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800698 local T=$(gettop)
699 local DRV=$(getdriver $T)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700700 # If we're sitting in the root of the build tree, just do a
701 # normal make.
702 if [ -f build/core/envsetup.mk -a -f Makefile ]; then
Andrew Hsieh906cb782013-09-10 17:37:14 +0800703 $DRV make $@
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700704 else
705 # Find the closest Android.mk file.
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800706 local M=$(findmakefile)
Ying Wanga7deb082013-08-16 13:24:47 -0700707 local MODULES=
708 local GET_INSTALL_PATH=
709 local ARGS=
Robert Greenwalt3c794d72009-07-15 15:07:44 -0700710 # Remove the path to top as the makefilepath needs to be relative
711 local M=`echo $M|sed 's:'$T'/::'`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700712 if [ ! "$T" ]; then
713 echo "Couldn't locate the top of the tree. Try setting TOP."
714 elif [ ! "$M" ]; then
715 echo "Couldn't locate a makefile from the current directory."
716 else
Ying Wanga7deb082013-08-16 13:24:47 -0700717 for ARG in $@; do
718 case $ARG in
719 GET-INSTALL-PATH) GET_INSTALL_PATH=$ARG;;
720 esac
721 done
722 if [ -n "$GET_INSTALL_PATH" ]; then
723 MODULES=
724 ARGS=GET-INSTALL-PATH
725 else
726 MODULES=all_modules
727 ARGS=$@
728 fi
Andrew Hsieh246daf72013-09-10 18:07:23 -0700729 ONE_SHOT_MAKEFILE=$M $DRV make -C $T -f build/core/main.mk $MODULES $ARGS
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700730 fi
731 fi
732}
733
734function mmm()
735{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800736 local T=$(gettop)
737 local DRV=$(getdriver $T)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700738 if [ "$T" ]; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800739 local MAKEFILE=
Alon Albert68895a92011-11-30 12:40:19 -0800740 local MODULES=
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800741 local ARGS=
742 local DIR TO_CHOP
Ying Wanga7deb082013-08-16 13:24:47 -0700743 local GET_INSTALL_PATH=
The Android Open Source Project88b60792009-03-03 19:28:42 -0800744 local DASH_ARGS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^-.*$/')
745 local DIRS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^[^-].*$/')
746 for DIR in $DIRS ; do
Alon Albert68895a92011-11-30 12:40:19 -0800747 MODULES=`echo $DIR | sed -n -e 's/.*:\(.*$\)/\1/p' | sed 's/,/ /'`
748 if [ "$MODULES" = "" ]; then
749 MODULES=all_modules
750 fi
751 DIR=`echo $DIR | sed -e 's/:.*//' -e 's:/$::'`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700752 if [ -f $DIR/Android.mk ]; then
Ying Wanga7deb082013-08-16 13:24:47 -0700753 local TO_CHOP=`(\cd -P -- $T && pwd -P) | wc -c | tr -d ' '`
754 local TO_CHOP=`expr $TO_CHOP + 1`
755 local START=`PWD= /bin/pwd`
756 local MFILE=`echo $START | cut -c${TO_CHOP}-`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700757 if [ "$MFILE" = "" ] ; then
758 MFILE=$DIR/Android.mk
759 else
760 MFILE=$MFILE/$DIR/Android.mk
761 fi
762 MAKEFILE="$MAKEFILE $MFILE"
763 else
Ying Wanga7deb082013-08-16 13:24:47 -0700764 case $DIR in
765 showcommands | snod | dist | incrementaljavac) ARGS="$ARGS $DIR";;
766 GET-INSTALL-PATH) GET_INSTALL_PATH=$DIR;;
767 *) echo "No Android.mk in $DIR."; return 1;;
768 esac
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700769 fi
770 done
Ying Wanga7deb082013-08-16 13:24:47 -0700771 if [ -n "$GET_INSTALL_PATH" ]; then
772 ARGS=$GET_INSTALL_PATH
773 MODULES=
774 fi
Andrew Hsieh906cb782013-09-10 17:37:14 +0800775 ONE_SHOT_MAKEFILE="$MAKEFILE" $DRV make -C $T -f build/core/main.mk $DASH_ARGS $MODULES $ARGS
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700776 else
777 echo "Couldn't locate the top of the tree. Try setting TOP."
778 fi
779}
780
Ying Wangb607f7b2013-02-08 18:01:04 -0800781function mma()
782{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800783 local T=$(gettop)
784 local DRV=$(getdriver $T)
Ying Wangb607f7b2013-02-08 18:01:04 -0800785 if [ -f build/core/envsetup.mk -a -f Makefile ]; then
Andrew Hsieh906cb782013-09-10 17:37:14 +0800786 $DRV make $@
Ying Wangb607f7b2013-02-08 18:01:04 -0800787 else
Ying Wangb607f7b2013-02-08 18:01:04 -0800788 if [ ! "$T" ]; then
789 echo "Couldn't locate the top of the tree. Try setting TOP."
790 fi
791 local MY_PWD=`PWD= /bin/pwd|sed 's:'$T'/::'`
Andrew Hsieh906cb782013-09-10 17:37:14 +0800792 $DRV make -C $T -f build/core/main.mk $@ all_modules BUILD_MODULES_IN_PATHS="$MY_PWD"
Ying Wangb607f7b2013-02-08 18:01:04 -0800793 fi
794}
795
796function mmma()
797{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800798 local T=$(gettop)
799 local DRV=$(getdriver $T)
Ying Wangb607f7b2013-02-08 18:01:04 -0800800 if [ "$T" ]; then
801 local DASH_ARGS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^-.*$/')
802 local DIRS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^[^-].*$/')
803 local MY_PWD=`PWD= /bin/pwd`
804 if [ "$MY_PWD" = "$T" ]; then
805 MY_PWD=
806 else
807 MY_PWD=`echo $MY_PWD|sed 's:'$T'/::'`
808 fi
809 local DIR=
810 local MODULE_PATHS=
811 local ARGS=
812 for DIR in $DIRS ; do
813 if [ -d $DIR ]; then
814 if [ "$MY_PWD" = "" ]; then
815 MODULE_PATHS="$MODULE_PATHS $DIR"
816 else
817 MODULE_PATHS="$MODULE_PATHS $MY_PWD/$DIR"
818 fi
819 else
820 case $DIR in
821 showcommands | snod | dist | incrementaljavac) ARGS="$ARGS $DIR";;
822 *) echo "Couldn't find directory $DIR"; return 1;;
823 esac
824 fi
825 done
Andrew Hsieh906cb782013-09-10 17:37:14 +0800826 $DRV make -C $T -f build/core/main.mk $DASH_ARGS $ARGS all_modules BUILD_MODULES_IN_PATHS="$MODULE_PATHS"
Ying Wangb607f7b2013-02-08 18:01:04 -0800827 else
828 echo "Couldn't locate the top of the tree. Try setting TOP."
829 fi
830}
831
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700832function croot()
833{
834 T=$(gettop)
835 if [ "$T" ]; then
Ying Wang9cd17642012-12-13 10:52:07 -0800836 \cd $(gettop)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700837 else
838 echo "Couldn't locate the top of the tree. Try setting TOP."
839 fi
840}
841
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700842function cproj()
843{
844 TOPFILE=build/core/envsetup.mk
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700845 local HERE=$PWD
846 T=
847 while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do
848 T=$PWD
849 if [ -f "$T/Android.mk" ]; then
Ying Wang9cd17642012-12-13 10:52:07 -0800850 \cd $T
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700851 return
852 fi
Ying Wang9cd17642012-12-13 10:52:07 -0800853 \cd ..
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700854 done
Ying Wang9cd17642012-12-13 10:52:07 -0800855 \cd $HERE
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700856 echo "can't find Android.mk"
857}
858
Daniel Sandler47e0a882013-07-30 13:23:52 -0400859# simplified version of ps; output in the form
860# <pid> <procname>
861function qpid() {
862 local prepend=''
863 local append=''
864 if [ "$1" = "--exact" ]; then
865 prepend=' '
866 append='$'
867 shift
868 elif [ "$1" = "--help" -o "$1" = "-h" ]; then
869 echo "usage: qpid [[--exact] <process name|pid>"
870 return 255
871 fi
872
873 local EXE="$1"
874 if [ "$EXE" ] ; then
Mathias Agopian44583272013-08-27 14:15:50 -0700875 qpid | \grep "$prepend$EXE$append"
Daniel Sandler47e0a882013-07-30 13:23:52 -0400876 else
877 adb shell ps \
878 | tr -d '\r' \
879 | sed -e 1d -e 's/^[^ ]* *\([0-9]*\).* \([^ ]*\)$/\1 \2/'
880 fi
881}
882
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700883function pid()
884{
Daniel Sandler47e0a882013-07-30 13:23:52 -0400885 local prepend=''
886 local append=''
887 if [ "$1" = "--exact" ]; then
888 prepend=' '
889 append='$'
890 shift
891 fi
892 local EXE="$1"
893 if [ "$EXE" ] ; then
894 local PID=`adb shell ps \
895 | tr -d '\r' \
Mathias Agopian44583272013-08-27 14:15:50 -0700896 | \grep "$prepend$EXE$append" \
Daniel Sandler47e0a882013-07-30 13:23:52 -0400897 | sed -e 's/^[^ ]* *\([0-9]*\).*$/\1/'`
898 echo "$PID"
899 else
900 echo "usage: pid [--exact] <process name>"
901 return 255
902 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700903}
904
Christopher Tate744ee802009-11-12 15:33:08 -0800905# systemstack - dump the current stack trace of all threads in the system process
906# to the usual ANR traces file
907function systemstack()
908{
Jeff Sharkeyf5824372013-02-19 17:00:46 -0800909 stacks system_server
910}
911
912function stacks()
913{
914 if [[ $1 =~ ^[0-9]+$ ]] ; then
915 local PID="$1"
916 elif [ "$1" ] ; then
Jeff Brownb12c2e52013-08-19 15:14:16 -0700917 local PIDLIST="$(pid $1)"
918 if [[ $PIDLIST =~ ^[0-9]+$ ]] ; then
919 local PID="$PIDLIST"
920 elif [ "$PIDLIST" ] ; then
921 echo "more than one process: $1"
922 else
923 echo "no such process: $1"
924 fi
Jeff Sharkeyf5824372013-02-19 17:00:46 -0800925 else
926 echo "usage: stacks [pid|process name]"
927 fi
928
929 if [ "$PID" ] ; then
Jeff Brownb12c2e52013-08-19 15:14:16 -0700930 # Determine whether the process is native
931 if adb shell ls -l /proc/$PID/exe | grep -q /system/bin/app_process ; then
932 # Dump stacks of Dalvik process
933 local TRACES=/data/anr/traces.txt
934 local ORIG=/data/anr/traces.orig
935 local TMP=/data/anr/traces.tmp
Jeff Sharkeyf5824372013-02-19 17:00:46 -0800936
Jeff Brownb12c2e52013-08-19 15:14:16 -0700937 # Keep original traces to avoid clobbering
938 adb shell mv $TRACES $ORIG
Jeff Sharkeyf5824372013-02-19 17:00:46 -0800939
Jeff Brownb12c2e52013-08-19 15:14:16 -0700940 # Make sure we have a usable file
941 adb shell touch $TRACES
942 adb shell chmod 666 $TRACES
Jeff Sharkeyf5824372013-02-19 17:00:46 -0800943
Jeff Brownb12c2e52013-08-19 15:14:16 -0700944 # Dump stacks and wait for dump to finish
945 adb shell kill -3 $PID
946 adb shell notify $TRACES >/dev/null
Jeff Sharkeyf5824372013-02-19 17:00:46 -0800947
Jeff Brownb12c2e52013-08-19 15:14:16 -0700948 # Restore original stacks, and show current output
949 adb shell mv $TRACES $TMP
950 adb shell mv $ORIG $TRACES
951 adb shell cat $TMP
952 else
953 # Dump stacks of native process
Michael Wrightaeed7212014-06-19 19:58:12 -0700954 local USE64BIT="$(is64bit $PID)"
955 adb shell debuggerd$USE64BIT -b $PID
Jeff Brownb12c2e52013-08-19 15:14:16 -0700956 fi
Jeff Sharkeyf5824372013-02-19 17:00:46 -0800957 fi
Christopher Tate744ee802009-11-12 15:33:08 -0800958}
959
Michael Wrightaeed7212014-06-19 19:58:12 -0700960# Read the ELF header from /proc/$PID/exe to determine if the process is
961# 64-bit.
Ben Chengfba67bf2014-02-25 10:27:07 -0800962function is64bit()
963{
964 local PID="$1"
965 if [ "$PID" ] ; then
Michael Wrightaeed7212014-06-19 19:58:12 -0700966 if [[ "$(adb shell cat /proc/$PID/exe | xxd -l 1 -s 4 -ps)" -eq "02" ]] ; then
Ben Chengfba67bf2014-02-25 10:27:07 -0800967 echo "64"
968 else
969 echo ""
970 fi
971 else
972 echo ""
973 fi
974}
975
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700976case `uname -s` in
977 Darwin)
978 function sgrep()
979 {
Jeff Brown46cbd202014-07-26 15:15:41 -0700980 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 -0700981 }
982
983 ;;
984 *)
985 function sgrep()
986 {
Jeff Brown46cbd202014-07-26 15:15:41 -0700987 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 -0700988 }
989 ;;
990esac
991
Raghu Gandham8da43102012-07-25 19:57:22 -0700992function gettargetarch
993{
994 get_build_var TARGET_ARCH
995}
996
Jon Boekenoogencbca56f2014-04-07 10:57:38 -0700997function ggrep()
998{
999 find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -type f -name "*\.gradle" -print0 | xargs -0 grep --color -n "$@"
1000}
1001
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001002function jgrep()
1003{
Anatolii Shuba91c72d22013-07-05 16:09:25 +03001004 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 -07001005}
1006
1007function cgrep()
1008{
Dan Albert01961192014-11-22 10:16:01 -08001009 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 -07001010}
1011
1012function resgrep()
1013{
Anatolii Shuba91c72d22013-07-05 16:09:25 +03001014 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 -07001015}
1016
Jeff Sharkey50b61e92013-03-08 10:20:47 -08001017function mangrep()
1018{
1019 find . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o -type f -name 'AndroidManifest.xml' -print0 | xargs -0 grep --color -n "$@"
1020}
1021
Alex Klyubinba5fc8e2013-05-06 14:11:48 -07001022function sepgrep()
1023{
1024 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 "$@"
1025}
1026
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001027case `uname -s` in
1028 Darwin)
1029 function mgrep()
1030 {
Ying Wang324c2b22012-08-17 15:03:20 -07001031 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 -07001032 }
1033
1034 function treegrep()
1035 {
Joe Onoratof50e84b2011-03-15 14:15:46 -07001036 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 -07001037 }
1038
1039 ;;
1040 *)
1041 function mgrep()
1042 {
Ying Wang324c2b22012-08-17 15:03:20 -07001043 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 -07001044 }
1045
1046 function treegrep()
1047 {
Joe Onoratof50e84b2011-03-15 14:15:46 -07001048 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 -07001049 }
1050
1051 ;;
1052esac
1053
1054function getprebuilt
1055{
1056 get_abs_build_var ANDROID_PREBUILTS
1057}
1058
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001059function tracedmdump()
1060{
1061 T=$(gettop)
1062 if [ ! "$T" ]; then
1063 echo "Couldn't locate the top of the tree. Try setting TOP."
1064 return
1065 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001066 local prebuiltdir=$(getprebuilt)
Raghu Gandham8da43102012-07-25 19:57:22 -07001067 local arch=$(gettargetarch)
1068 local KERNEL=$T/prebuilts/qemu-kernel/$arch/vmlinux-qemu
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001069
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001070 local TRACE=$1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001071 if [ ! "$TRACE" ] ; then
1072 echo "usage: tracedmdump tracename"
1073 return
1074 fi
1075
Jack Veenstra60116fc2009-04-09 18:12:34 -07001076 if [ ! -r "$KERNEL" ] ; then
1077 echo "Error: cannot find kernel: '$KERNEL'"
1078 return
1079 fi
1080
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001081 local BASETRACE=$(basename $TRACE)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001082 if [ "$BASETRACE" = "$TRACE" ] ; then
1083 TRACE=$ANDROID_PRODUCT_OUT/traces/$TRACE
1084 fi
1085
1086 echo "post-processing traces..."
1087 rm -f $TRACE/qtrace.dexlist
1088 post_trace $TRACE
1089 if [ $? -ne 0 ]; then
1090 echo "***"
1091 echo "*** Error: malformed trace. Did you remember to exit the emulator?"
1092 echo "***"
1093 return
1094 fi
1095 echo "generating dexlist output..."
1096 /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
1097 echo "generating dmtrace data..."
1098 q2dm -r $ANDROID_PRODUCT_OUT/symbols $TRACE $KERNEL $TRACE/dmtrace || return
1099 echo "generating html file..."
1100 dmtracedump -h $TRACE/dmtrace >| $TRACE/dmtrace.html || return
1101 echo "done, see $TRACE/dmtrace.html for details"
1102 echo "or run:"
1103 echo " traceview $TRACE/dmtrace"
1104}
1105
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001106# communicate with a running device or emulator, set up necessary state,
1107# and run the hat command.
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001108function runhat()
1109{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001110 # process standard adb options
1111 local adbTarget=""
Andy McFaddenb6289852010-07-12 08:00:19 -07001112 if [ "$1" = "-d" -o "$1" = "-e" ]; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001113 adbTarget=$1
1114 shift 1
Andy McFaddenb6289852010-07-12 08:00:19 -07001115 elif [ "$1" = "-s" ]; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001116 adbTarget="$1 $2"
1117 shift 2
1118 fi
1119 local adbOptions=${adbTarget}
Dianne Hackborn6b9549f2012-09-26 15:00:59 -07001120 #echo adbOptions = ${adbOptions}
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001121
1122 # runhat options
1123 local targetPid=$1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001124
1125 if [ "$targetPid" = "" ]; then
Andy McFaddenb6289852010-07-12 08:00:19 -07001126 echo "Usage: runhat [ -d | -e | -s serial ] target-pid"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001127 return
1128 fi
1129
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001130 # confirm hat is available
1131 if [ -z $(which hat) ]; then
1132 echo "hat is not available in this configuration."
1133 return
1134 fi
1135
Andy McFaddenb6289852010-07-12 08:00:19 -07001136 # issue "am" command to cause the hprof dump
Nick Kralevich9948b1e2014-07-18 15:45:38 -07001137 local devFile=/data/local/tmp/hprof-$targetPid
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001138 echo "Poking $targetPid and waiting for data..."
Dianne Hackborn6b9549f2012-09-26 15:00:59 -07001139 echo "Storing data at $devFile"
Andy McFaddenb6289852010-07-12 08:00:19 -07001140 adb ${adbOptions} shell am dumpheap $targetPid $devFile
The Android Open Source Project88b60792009-03-03 19:28:42 -08001141 echo "Press enter when logcat shows \"hprof: heap dump completed\""
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001142 echo -n "> "
1143 read
1144
The Android Open Source Project88b60792009-03-03 19:28:42 -08001145 local localFile=/tmp/$$-hprof
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001146
The Android Open Source Project88b60792009-03-03 19:28:42 -08001147 echo "Retrieving file $devFile..."
1148 adb ${adbOptions} pull $devFile $localFile
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001149
The Android Open Source Project88b60792009-03-03 19:28:42 -08001150 adb ${adbOptions} shell rm $devFile
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001151
The Android Open Source Project88b60792009-03-03 19:28:42 -08001152 echo "Running hat on $localFile"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001153 echo "View the output by pointing your browser at http://localhost:7000/"
1154 echo ""
Dianne Hackborn6e4e1bb2011-11-10 15:19:51 -08001155 hat -JXmx512m $localFile
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001156}
1157
1158function getbugreports()
1159{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001160 local reports=(`adb shell ls /sdcard/bugreports | tr -d '\r'`)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001161
1162 if [ ! "$reports" ]; then
1163 echo "Could not locate any bugreports."
1164 return
1165 fi
1166
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001167 local report
1168 for report in ${reports[@]}
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001169 do
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001170 echo "/sdcard/bugreports/${report}"
1171 adb pull /sdcard/bugreports/${report} ${report}
1172 gunzip ${report}
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001173 done
1174}
1175
Victoria Lease1b296b42012-08-21 15:44:06 -07001176function getsdcardpath()
1177{
1178 adb ${adbOptions} shell echo -n \$\{EXTERNAL_STORAGE\}
1179}
1180
1181function getscreenshotpath()
1182{
1183 echo "$(getsdcardpath)/Pictures/Screenshots"
1184}
1185
1186function getlastscreenshot()
1187{
1188 local screenshot_path=$(getscreenshotpath)
1189 local screenshot=`adb ${adbOptions} ls ${screenshot_path} | grep Screenshot_[0-9-]*.*\.png | sort -rk 3 | cut -d " " -f 4 | head -n 1`
1190 if [ "$screenshot" = "" ]; then
1191 echo "No screenshots found."
1192 return
1193 fi
1194 echo "${screenshot}"
1195 adb ${adbOptions} pull ${screenshot_path}/${screenshot}
1196}
1197
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001198function startviewserver()
1199{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001200 local port=4939
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001201 if [ $# -gt 0 ]; then
1202 port=$1
1203 fi
1204 adb shell service call window 1 i32 $port
1205}
1206
1207function stopviewserver()
1208{
1209 adb shell service call window 2
1210}
1211
1212function isviewserverstarted()
1213{
1214 adb shell service call window 3
1215}
1216
Romain Guyb84049a2010-10-04 16:56:11 -07001217function key_home()
1218{
1219 adb shell input keyevent 3
1220}
1221
1222function key_back()
1223{
1224 adb shell input keyevent 4
1225}
1226
1227function key_menu()
1228{
1229 adb shell input keyevent 82
1230}
1231
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001232function smoketest()
1233{
1234 if [ ! "$ANDROID_PRODUCT_OUT" ]; then
1235 echo "Couldn't locate output files. Try running 'lunch' first." >&2
1236 return
1237 fi
1238 T=$(gettop)
1239 if [ ! "$T" ]; then
1240 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
1241 return
1242 fi
1243
Ying Wang9cd17642012-12-13 10:52:07 -08001244 (\cd "$T" && mmm tests/SmokeTest) &&
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001245 adb uninstall com.android.smoketest > /dev/null &&
1246 adb uninstall com.android.smoketest.tests > /dev/null &&
1247 adb install $ANDROID_PRODUCT_OUT/data/app/SmokeTestApp.apk &&
1248 adb install $ANDROID_PRODUCT_OUT/data/app/SmokeTest.apk &&
1249 adb shell am instrument -w com.android.smoketest.tests/android.test.InstrumentationTestRunner
1250}
1251
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001252# simple shortcut to the runtest command
1253function runtest()
1254{
1255 T=$(gettop)
1256 if [ ! "$T" ]; then
1257 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
1258 return
1259 fi
Brett Chabot3fb149d2009-10-21 20:05:26 -07001260 ("$T"/development/testrunner/runtest.py $@)
Brett Chabot762748c2009-03-27 10:25:11 -07001261}
1262
The Android Open Source Project88b60792009-03-03 19:28:42 -08001263function godir () {
1264 if [[ -z "$1" ]]; then
1265 echo "Usage: godir <regex>"
1266 return
1267 fi
Brian Carlstromb9915a62010-01-29 16:39:32 -08001268 T=$(gettop)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001269 if [[ ! -f $T/filelist ]]; then
1270 echo -n "Creating index..."
Ying Wang9cd17642012-12-13 10:52:07 -08001271 (\cd $T; find . -wholename ./out -prune -o -wholename ./.repo -prune -o -type f > filelist)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001272 echo " Done"
1273 echo ""
1274 fi
1275 local lines
Jeff Hamilton293f9392011-11-18 17:15:25 -06001276 lines=($(\grep "$1" $T/filelist | sed -e 's/\/[^/]*$//' | sort | uniq))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001277 if [[ ${#lines[@]} = 0 ]]; then
1278 echo "Not found"
1279 return
1280 fi
1281 local pathname
1282 local choice
1283 if [[ ${#lines[@]} > 1 ]]; then
1284 while [[ -z "$pathname" ]]; do
1285 local index=1
1286 local line
1287 for line in ${lines[@]}; do
1288 printf "%6s %s\n" "[$index]" $line
Doug Zongker29034982011-04-22 08:16:56 -07001289 index=$(($index + 1))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001290 done
1291 echo
1292 echo -n "Select one: "
1293 unset choice
1294 read choice
1295 if [[ $choice -gt ${#lines[@]} || $choice -lt 1 ]]; then
1296 echo "Invalid choice"
1297 continue
1298 fi
Kan-Ru Chen07453762010-07-05 15:53:47 +08001299 pathname=${lines[$(($choice-1))]}
The Android Open Source Project88b60792009-03-03 19:28:42 -08001300 done
1301 else
The Android Open Source Project88b60792009-03-03 19:28:42 -08001302 pathname=${lines[0]}
1303 fi
Ying Wang9cd17642012-12-13 10:52:07 -08001304 \cd $T/$pathname
The Android Open Source Project88b60792009-03-03 19:28:42 -08001305}
1306
Neil Fuller46e00ea2014-10-16 10:23:03 +01001307# Force JAVA_HOME to point to java 1.7 if it isn't already set.
Narayan Kamath9260bba2014-01-17 10:05:25 +00001308#
1309# Note that the MacOS path for java 1.7 includes a minor revision number (sigh).
1310# For some reason, installing the JDK doesn't make it show up in the
1311# JavaVM.framework/Versions/1.7/ folder.
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -05001312function set_java_home() {
Narayan Kamath9260bba2014-01-17 10:05:25 +00001313 # Clear the existing JAVA_HOME value if we set it ourselves, so that
Narayan Kamathc84889b2014-04-01 14:16:26 +01001314 # we can reset it later, depending on the version of java the build
1315 # system needs.
Narayan Kamath9260bba2014-01-17 10:05:25 +00001316 #
1317 # If we don't do this, the JAVA_HOME value set by the first call to
1318 # build/envsetup.sh will persist forever.
1319 if [ -n "$ANDROID_SET_JAVA_HOME" ]; then
1320 export JAVA_HOME=""
1321 fi
1322
Andy McFaddenbd960942010-06-24 12:52:51 -07001323 if [ ! "$JAVA_HOME" ]; then
Neil Fuller46e00ea2014-10-16 10:23:03 +01001324 case `uname -s` in
1325 Darwin)
1326 export JAVA_HOME=$(/usr/libexec/java_home -v 1.7)
1327 ;;
1328 *)
1329 export JAVA_HOME=/usr/lib/jvm/java-7-openjdk-amd64
1330 ;;
1331 esac
Narayan Kamath9260bba2014-01-17 10:05:25 +00001332
1333 # Keep track of the fact that we set JAVA_HOME ourselves, so that
1334 # we can change it on the next envsetup.sh, if required.
1335 export ANDROID_SET_JAVA_HOME=true
Jeff Hamilton04be0d82010-06-07 15:03:54 -05001336 fi
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -05001337}
Jeff Hamilton04be0d82010-06-07 15:03:54 -05001338
Alex Rayf0d08eb2013-03-08 15:15:06 -08001339# Print colored exit condition
1340function pez {
Michael Wrighteb733842013-03-08 17:34:02 -08001341 "$@"
1342 local retval=$?
1343 if [ $retval -ne 0 ]
1344 then
1345 echo -e "\e[0;31mFAILURE\e[00m"
1346 else
1347 echo -e "\e[0;32mSUCCESS\e[00m"
1348 fi
1349 return $retval
Alex Rayf0d08eb2013-03-08 15:15:06 -08001350}
1351
Ying Wanged21d4c2014-08-24 22:14:19 -07001352function get_make_command()
1353{
1354 echo command make
1355}
1356
Ed Heylcc6be0a2014-06-18 14:55:58 -07001357function make()
1358{
1359 local start_time=$(date +"%s")
Ying Wanged21d4c2014-08-24 22:14:19 -07001360 $(get_make_command) "$@"
Ed Heylcc6be0a2014-06-18 14:55:58 -07001361 local ret=$?
1362 local end_time=$(date +"%s")
1363 local tdiff=$(($end_time-$start_time))
1364 local hours=$(($tdiff / 3600 ))
1365 local mins=$((($tdiff % 3600) / 60))
1366 local secs=$(($tdiff % 60))
1367 echo
1368 if [ $ret -eq 0 ] ; then
Dan Albertb59995d2014-11-08 22:41:52 -08001369 if [ $(uname) != "Darwin" ]; then
1370 echo -n -e "\e[0;32m#### make completed successfully "
1371 else
1372 echo -n -e "#### make completed successfully "
1373 fi
Ed Heylcc6be0a2014-06-18 14:55:58 -07001374 else
Dan Albertb59995d2014-11-08 22:41:52 -08001375 if [ $(uname) != "Darwin" ]; then
1376 echo -n -e "\e[0;31m#### make failed to build some targets "
1377 else
1378 echo -n -e "#### make failed to build some targets "
1379 fi
Ed Heylcc6be0a2014-06-18 14:55:58 -07001380 fi
1381 if [ $hours -gt 0 ] ; then
1382 printf "(%02g:%02g:%02g (hh:mm:ss))" $hours $mins $secs
1383 elif [ $mins -gt 0 ] ; then
1384 printf "(%02g:%02g (mm:ss))" $mins $secs
1385 elif [ $secs -gt 0 ] ; then
1386 printf "(%s seconds)" $secs
1387 fi
Dan Albertb59995d2014-11-08 22:41:52 -08001388 if [ $(uname) != "Darwin" ]; then
1389 echo -e " ####\e[00m"
1390 fi
Ed Heylcc6be0a2014-06-18 14:55:58 -07001391 echo
1392 return $ret
1393}
1394
Raphael Moll70a86b02011-06-20 16:03:14 -07001395if [ "x$SHELL" != "x/bin/bash" ]; then
1396 case `ps -o command -p $$` in
1397 *bash*)
1398 ;;
1399 *)
1400 echo "WARNING: Only bash is supported, use of other shell would lead to erroneous results"
1401 ;;
1402 esac
1403fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001404
1405# Execute the contents of any vendorsetup.sh files we can find.
Ying Wang506410a2014-07-09 15:37:34 -07001406for f in `test -d device && find -L device -maxdepth 4 -name 'vendorsetup.sh' 2> /dev/null` \
1407 `test -d vendor && find -L vendor -maxdepth 4 -name 'vendorsetup.sh' 2> /dev/null`
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001408do
1409 echo "including $f"
1410 . $f
1411done
1412unset f
Kenny Root52aa81c2011-07-15 11:07:06 -07001413
1414addcompletions