blob: 2aac383b54c823705295ff7c11576ad162174738 [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
Roland Levillain39341922015-10-20 12:48:19 +010024Environment options:
Dan Albert4ae5d4b2014-10-31 16:23:08 -070025- 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
Ying Wang08800fd2016-03-03 20:57:21 -080040# Get all the build variables needed by this script in a single call to the build system.
41function build_build_var_cache()
42{
43 T=$(gettop)
44 # Grep out the variable names from the script.
45 cached_vars=`cat $T/build/envsetup.sh | tr '()' ' ' | awk '{for(i=1;i<=NF;i++) if($i~/get_build_var/) print $(i+1)}' | sort -u | tr '\n' ' '`
46 cached_abs_vars=`cat $T/build/envsetup.sh | tr '()' ' ' | awk '{for(i=1;i<=NF;i++) if($i~/get_abs_build_var/) print $(i+1)}' | sort -u | tr '\n' ' '`
47 # Call the build system to dump the "<val>=<value>" pairs as a shell script.
48 build_dicts_script=`\cd $T; CALLED_FROM_SETUP=true BUILD_SYSTEM=build/core \
49 command make --no-print-directory -f build/core/config.mk \
50 dump-many-vars \
51 DUMP_MANY_VARS="$cached_vars" \
52 DUMP_MANY_ABS_VARS="$cached_abs_vars" \
53 DUMP_VAR_PREFIX="var_cache_" \
54 DUMP_ABS_VAR_PREFIX="abs_var_cache_"`
55 local ret=$?
56 if [ $ret -ne 0 ]
57 then
58 unset build_dicts_script
59 return $ret
60 fi
61 # Excute the script to store the "<val>=<value>" pairs as shell variables.
62 eval "$build_dicts_script"
63 unset build_dicts_script
64 ret=$?
65 if [ $ret -ne 0 ]
66 then
67 return $ret
68 fi
69 BUILD_VAR_CACHE_READY="true"
70}
71
72# Delete the build cache, so that we can still call into the build system
73# to get build variables not listed in this script.
74function destroy_build_var_cache()
75{
76 unset BUILD_VAR_CACHE_READY
77 for v in $cached_vars; do
78 unset var_cache_$v
79 done
80 unset cached_vars
81 for v in $cached_abs_vars; do
82 unset abs_var_cache_$v
83 done
84 unset cached_abs_vars
85}
86
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070087# Get the value of a build variable as an absolute path.
88function get_abs_build_var()
89{
Ying Wang08800fd2016-03-03 20:57:21 -080090 if [ "$BUILD_VAR_CACHE_READY" = "true" ]
91 then
92 eval echo \"\${abs_var_cache_$1}\"
93 return
94 fi
95
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070096 T=$(gettop)
97 if [ ! "$T" ]; then
98 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
99 return
100 fi
Ying Wang9cd17642012-12-13 10:52:07 -0800101 (\cd $T; CALLED_FROM_SETUP=true BUILD_SYSTEM=build/core \
Ed Heylc6d11f82014-06-27 13:32:39 -0700102 command make --no-print-directory -f build/core/config.mk dumpvar-abs-$1)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700103}
104
105# Get the exact value of a build variable.
106function get_build_var()
107{
Ying Wang08800fd2016-03-03 20:57:21 -0800108 if [ "$BUILD_VAR_CACHE_READY" = "true" ]
109 then
110 eval echo \"\${var_cache_$1}\"
111 return
112 fi
113
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700114 T=$(gettop)
115 if [ ! "$T" ]; then
116 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
117 return
118 fi
Andrew Boie6905e212013-12-19 13:21:46 -0800119 (\cd $T; CALLED_FROM_SETUP=true BUILD_SYSTEM=build/core \
Ed Heylc6d11f82014-06-27 13:32:39 -0700120 command make --no-print-directory -f build/core/config.mk dumpvar-$1)
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800121}
122
123# check to see if the supplied product is one we can build
124function check_product()
125{
126 T=$(gettop)
127 if [ ! "$T" ]; then
128 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
129 return
130 fi
Jeff Browne33ba4c2011-07-11 22:11:46 -0700131 TARGET_PRODUCT=$1 \
132 TARGET_BUILD_VARIANT= \
133 TARGET_BUILD_TYPE= \
Joe Onoratoda12daf2010-06-09 18:18:31 -0700134 TARGET_BUILD_APPS= \
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800135 get_build_var TARGET_DEVICE > /dev/null
136 # hide successful answers, but allow the errors to show
137}
138
139VARIANT_CHOICES=(user userdebug eng)
140
141# check to see if the supplied variant is valid
142function check_variant()
143{
144 for v in ${VARIANT_CHOICES[@]}
145 do
146 if [ "$v" = "$1" ]
147 then
148 return 0
149 fi
150 done
151 return 1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700152}
153
154function setpaths()
155{
156 T=$(gettop)
157 if [ ! "$T" ]; then
158 echo "Couldn't locate the top of the tree. Try setting TOP."
159 return
160 fi
161
162 ##################################################################
163 # #
164 # Read me before you modify this code #
165 # #
166 # This function sets ANDROID_BUILD_PATHS to what it is adding #
167 # to PATH, and the next time it is run, it removes that from #
168 # PATH. This is required so lunch can be run more than once #
169 # and still have working paths. #
170 # #
171 ##################################################################
172
Raphael Mollc639c782011-06-20 17:25:01 -0700173 # Note: on windows/cygwin, ANDROID_BUILD_PATHS will contain spaces
174 # due to "C:\Program Files" being in the path.
175
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700176 # out with the old
Raphael Mollc639c782011-06-20 17:25:01 -0700177 if [ -n "$ANDROID_BUILD_PATHS" ] ; then
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700178 export PATH=${PATH/$ANDROID_BUILD_PATHS/}
179 fi
Raphael Mollc639c782011-06-20 17:25:01 -0700180 if [ -n "$ANDROID_PRE_BUILD_PATHS" ] ; then
Doug Zongker29034982011-04-22 08:16:56 -0700181 export PATH=${PATH/$ANDROID_PRE_BUILD_PATHS/}
Ying Wangaa1c9b52012-11-26 20:51:59 -0800182 # strip leading ':', if any
183 export PATH=${PATH/:%/}
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500184 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700185
186 # and in with the new
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700187 prebuiltdir=$(getprebuilt)
Jing Yuf5172c72012-03-29 20:45:50 -0700188 gccprebuiltdir=$(get_abs_build_var ANDROID_GCC_PREBUILTS)
Raphael732936d2011-06-22 14:35:32 -0700189
Ben Cheng8bc4c432012-11-16 13:29:13 -0800190 # defined in core/config.mk
191 targetgccversion=$(get_build_var TARGET_GCC_VERSION)
Colin Cross03b424a2014-05-22 11:57:43 -0700192 targetgccversion2=$(get_build_var 2ND_TARGET_GCC_VERSION)
Ben Cheng15266702012-12-10 16:04:39 -0800193 export TARGET_GCC_VERSION=$targetgccversion
Ben Cheng8bc4c432012-11-16 13:29:13 -0800194
Raphael Mollc639c782011-06-20 17:25:01 -0700195 # The gcc toolchain does not exists for windows/cygwin. In this case, do not reference it.
Ben Chengfba67bf2014-02-25 10:27:07 -0800196 export ANDROID_TOOLCHAIN=
197 export ANDROID_TOOLCHAIN_2ND_ARCH=
David 'Digit' Turner2056c252012-04-17 14:50:47 +0200198 local ARCH=$(get_build_var TARGET_ARCH)
199 case $ARCH in
Pavel Chupinc1a56642013-08-23 16:49:21 +0400200 x86) toolchaindir=x86/x86_64-linux-android-$targetgccversion/bin
Mark D Horn7d0ede72012-03-14 14:20:30 -0700201 ;;
Pavel Chupinfd82a492012-11-26 09:50:07 +0400202 x86_64) toolchaindir=x86/x86_64-linux-android-$targetgccversion/bin
203 ;;
Ben Cheng8bc4c432012-11-16 13:29:13 -0800204 arm) toolchaindir=arm/arm-linux-androideabi-$targetgccversion/bin
David 'Digit' Turner2056c252012-04-17 14:50:47 +0200205 ;;
Ben Chengfba67bf2014-02-25 10:27:07 -0800206 arm64) toolchaindir=aarch64/aarch64-linux-android-$targetgccversion/bin;
Colin Cross03b424a2014-05-22 11:57:43 -0700207 toolchaindir2=arm/arm-linux-androideabi-$targetgccversion2/bin
Ben Chengdb4fc202013-10-04 16:02:59 -0700208 ;;
Duane Sand3c4fcd82014-07-22 14:34:00 -0700209 mips|mips64) toolchaindir=mips/mips64el-linux-android-$targetgccversion/bin
Serban Constantinescu9b68fb22014-01-14 10:33:53 +0000210 ;;
David 'Digit' Turner2056c252012-04-17 14:50:47 +0200211 *)
212 echo "Can't find toolchain for unknown architecture: $ARCH"
213 toolchaindir=xxxxxxxxx
Mark D Horn7d0ede72012-03-14 14:20:30 -0700214 ;;
215 esac
Jing Yuf5172c72012-03-29 20:45:50 -0700216 if [ -d "$gccprebuiltdir/$toolchaindir" ]; then
Ben Chengfba67bf2014-02-25 10:27:07 -0800217 export ANDROID_TOOLCHAIN=$gccprebuiltdir/$toolchaindir
Raphael Mollc639c782011-06-20 17:25:01 -0700218 fi
Raphael732936d2011-06-22 14:35:32 -0700219
Ben Chengfba67bf2014-02-25 10:27:07 -0800220 if [ -d "$gccprebuiltdir/$toolchaindir2" ]; then
221 export ANDROID_TOOLCHAIN_2ND_ARCH=$gccprebuiltdir/$toolchaindir2
222 fi
223
Jeff Vander Stoep5f50f052015-06-12 09:56:39 -0700224 export ANDROID_DEV_SCRIPTS=$T/development/scripts:$T/prebuilts/devtools/tools:$T/external/selinux/prebuilts/bin
Ying Wang750396d2015-09-14 19:32:50 -0700225 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 +0200226
227 # If prebuilts/android-emulator/<system>/ exists, prepend it to our PATH
228 # to ensure that the corresponding 'emulator' binaries are used.
229 case $(uname -s) in
230 Darwin)
231 ANDROID_EMULATOR_PREBUILTS=$T/prebuilts/android-emulator/darwin-x86_64
232 ;;
233 Linux)
234 ANDROID_EMULATOR_PREBUILTS=$T/prebuilts/android-emulator/linux-x86_64
235 ;;
236 *)
237 ANDROID_EMULATOR_PREBUILTS=
238 ;;
239 esac
240 if [ -n "$ANDROID_EMULATOR_PREBUILTS" -a -d "$ANDROID_EMULATOR_PREBUILTS" ]; then
Christopher Ferris7110f242014-05-20 13:56:00 -0700241 ANDROID_BUILD_PATHS=$ANDROID_BUILD_PATHS$ANDROID_EMULATOR_PREBUILTS:
David 'Digit' Turner94d16e52014-05-05 16:13:50 +0200242 export ANDROID_EMULATOR_PREBUILTS
243 fi
244
Ying Wangaa1c9b52012-11-26 20:51:59 -0800245 export PATH=$ANDROID_BUILD_PATHS$PATH
Dan Albertf5caa3d2015-09-18 13:23:56 -0700246 export PYTHONPATH=$T/development/python-packages:$PYTHONPATH
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800247
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500248 unset ANDROID_JAVA_TOOLCHAIN
Ji-Hwan Lee752ad062011-07-04 14:09:47 +0900249 unset ANDROID_PRE_BUILD_PATHS
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500250 if [ -n "$JAVA_HOME" ]; then
251 export ANDROID_JAVA_TOOLCHAIN=$JAVA_HOME/bin
Ji-Hwan Lee752ad062011-07-04 14:09:47 +0900252 export ANDROID_PRE_BUILD_PATHS=$ANDROID_JAVA_TOOLCHAIN:
253 export PATH=$ANDROID_PRE_BUILD_PATHS$PATH
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500254 fi
255
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800256 unset ANDROID_PRODUCT_OUT
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700257 export ANDROID_PRODUCT_OUT=$(get_abs_build_var PRODUCT_OUT)
258 export OUT=$ANDROID_PRODUCT_OUT
259
Jeff Brown8fd5cce2011-03-24 17:03:06 -0700260 unset ANDROID_HOST_OUT
261 export ANDROID_HOST_OUT=$(get_abs_build_var HOST_OUT)
262
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800263 # needed for building linux on MacOS
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700264 # TODO: fix the path
265 #export HOST_EXTRACFLAGS="-I "$T/system/kernel_headers/host_include
266}
267
268function printconfig()
269{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800270 T=$(gettop)
271 if [ ! "$T" ]; then
272 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
273 return
274 fi
275 get_build_var report_config
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700276}
277
278function set_stuff_for_environment()
279{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800280 settitle
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500281 set_java_home
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800282 setpaths
283 set_sequence_number
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700284
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800285 export ANDROID_BUILD_TOP=$(gettop)
Ben Chengaac3f812013-08-13 14:38:15 -0700286 # With this environment variable new GCC can apply colors to warnings/errors
287 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 -0700288 export ASAN_OPTIONS=detect_leaks=0
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700289}
290
291function set_sequence_number()
292{
Joe Onoratoaee4daa2010-06-23 14:03:13 -0700293 export BUILD_ENV_SEQUENCE_NUMBER=10
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700294}
295
296function settitle()
297{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800298 if [ "$STAY_OFF_MY_LAWN" = "" ]; then
Raghu Gandham8da43102012-07-25 19:57:22 -0700299 local arch=$(gettargetarch)
Joe Onoratoda12daf2010-06-09 18:18:31 -0700300 local product=$TARGET_PRODUCT
301 local variant=$TARGET_BUILD_VARIANT
302 local apps=$TARGET_BUILD_APPS
303 if [ -z "$apps" ]; then
Raghu Gandham8da43102012-07-25 19:57:22 -0700304 export PROMPT_COMMAND="echo -ne \"\033]0;[${arch}-${product}-${variant}] ${USER}@${HOSTNAME}: ${PWD}\007\""
Joe Onoratoda12daf2010-06-09 18:18:31 -0700305 else
Raghu Gandham8da43102012-07-25 19:57:22 -0700306 export PROMPT_COMMAND="echo -ne \"\033]0;[$arch $apps $variant] ${USER}@${HOSTNAME}: ${PWD}\007\""
Joe Onoratoda12daf2010-06-09 18:18:31 -0700307 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800308 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700309}
310
Kenny Root52aa81c2011-07-15 11:07:06 -0700311function addcompletions()
312{
313 local T dir f
314
315 # Keep us from trying to run in something that isn't bash.
316 if [ -z "${BASH_VERSION}" ]; then
317 return
318 fi
319
320 # Keep us from trying to run in bash that's too old.
321 if [ ${BASH_VERSINFO[0]} -lt 3 ]; then
322 return
323 fi
324
325 dir="sdk/bash_completion"
326 if [ -d ${dir} ]; then
Kenny Root7546d612011-07-18 13:11:34 -0700327 for f in `/bin/ls ${dir}/[a-z]*.bash 2> /dev/null`; do
Kenny Root52aa81c2011-07-15 11:07:06 -0700328 echo "including $f"
329 . $f
330 done
331 fi
332}
333
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700334function choosetype()
335{
336 echo "Build type choices are:"
337 echo " 1. release"
338 echo " 2. debug"
339 echo
340
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800341 local DEFAULT_NUM DEFAULT_VALUE
Jeff Browne33ba4c2011-07-11 22:11:46 -0700342 DEFAULT_NUM=1
343 DEFAULT_VALUE=release
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700344
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800345 export TARGET_BUILD_TYPE=
346 local ANSWER
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700347 while [ -z $TARGET_BUILD_TYPE ]
348 do
349 echo -n "Which would you like? ["$DEFAULT_NUM"] "
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800350 if [ -z "$1" ] ; then
351 read ANSWER
352 else
353 echo $1
354 ANSWER=$1
355 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700356 case $ANSWER in
357 "")
358 export TARGET_BUILD_TYPE=$DEFAULT_VALUE
359 ;;
360 1)
361 export TARGET_BUILD_TYPE=release
362 ;;
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800363 release)
364 export TARGET_BUILD_TYPE=release
365 ;;
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700366 2)
367 export TARGET_BUILD_TYPE=debug
368 ;;
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800369 debug)
370 export TARGET_BUILD_TYPE=debug
371 ;;
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700372 *)
373 echo
374 echo "I didn't understand your response. Please try again."
375 echo
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700376 ;;
377 esac
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800378 if [ -n "$1" ] ; then
379 break
380 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700381 done
382
Ying Wang08800fd2016-03-03 20:57:21 -0800383 build_build_var_cache
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700384 set_stuff_for_environment
Ying Wang08800fd2016-03-03 20:57:21 -0800385 destroy_build_var_cache
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700386}
387
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800388#
389# This function isn't really right: It chooses a TARGET_PRODUCT
390# based on the list of boards. Usually, that gets you something
391# that kinda works with a generic product, but really, you should
392# pick a product by name.
393#
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700394function chooseproduct()
395{
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700396 if [ "x$TARGET_PRODUCT" != x ] ; then
397 default_value=$TARGET_PRODUCT
398 else
Ying Wang0a76df52015-06-08 11:57:26 -0700399 default_value=aosp_arm
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700400 fi
401
Ying Wang08800fd2016-03-03 20:57:21 -0800402 export TARGET_BUILD_APPS=
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800403 export TARGET_PRODUCT=
404 local ANSWER
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700405 while [ -z "$TARGET_PRODUCT" ]
406 do
Joe Onorato8849aed2009-04-29 15:56:47 -0700407 echo -n "Which product would you like? [$default_value] "
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800408 if [ -z "$1" ] ; then
409 read ANSWER
410 else
411 echo $1
412 ANSWER=$1
413 fi
414
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700415 if [ -z "$ANSWER" ] ; then
416 export TARGET_PRODUCT=$default_value
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800417 else
418 if check_product $ANSWER
419 then
420 export TARGET_PRODUCT=$ANSWER
421 else
422 echo "** Not a valid product: $ANSWER"
423 fi
424 fi
425 if [ -n "$1" ] ; then
426 break
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700427 fi
428 done
429
Ying Wang08800fd2016-03-03 20:57:21 -0800430 build_build_var_cache
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700431 set_stuff_for_environment
Ying Wang08800fd2016-03-03 20:57:21 -0800432 destroy_build_var_cache
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700433}
434
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800435function choosevariant()
436{
437 echo "Variant choices are:"
438 local index=1
439 local v
440 for v in ${VARIANT_CHOICES[@]}
441 do
442 # The product name is the name of the directory containing
443 # the makefile we found, above.
444 echo " $index. $v"
445 index=$(($index+1))
446 done
447
448 local default_value=eng
449 local ANSWER
450
451 export TARGET_BUILD_VARIANT=
452 while [ -z "$TARGET_BUILD_VARIANT" ]
453 do
454 echo -n "Which would you like? [$default_value] "
455 if [ -z "$1" ] ; then
456 read ANSWER
457 else
458 echo $1
459 ANSWER=$1
460 fi
461
462 if [ -z "$ANSWER" ] ; then
463 export TARGET_BUILD_VARIANT=$default_value
464 elif (echo -n $ANSWER | grep -q -e "^[0-9][0-9]*$") ; then
465 if [ "$ANSWER" -le "${#VARIANT_CHOICES[@]}" ] ; then
Kan-Ru Chen07453762010-07-05 15:53:47 +0800466 export TARGET_BUILD_VARIANT=${VARIANT_CHOICES[$(($ANSWER-1))]}
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800467 fi
468 else
469 if check_variant $ANSWER
470 then
471 export TARGET_BUILD_VARIANT=$ANSWER
472 else
473 echo "** Not a valid variant: $ANSWER"
474 fi
475 fi
476 if [ -n "$1" ] ; then
477 break
478 fi
479 done
480}
481
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700482function choosecombo()
483{
Jeff Browne33ba4c2011-07-11 22:11:46 -0700484 choosetype $1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700485
486 echo
487 echo
Jeff Browne33ba4c2011-07-11 22:11:46 -0700488 chooseproduct $2
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700489
490 echo
491 echo
Jeff Browne33ba4c2011-07-11 22:11:46 -0700492 choosevariant $3
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800493
494 echo
Ying Wang08800fd2016-03-03 20:57:21 -0800495 build_build_var_cache
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700496 set_stuff_for_environment
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800497 printconfig
Ying Wang08800fd2016-03-03 20:57:21 -0800498 destroy_build_var_cache
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700499}
500
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800501# Clear this variable. It will be built up again when the vendorsetup.sh
502# files are included at the end of this file.
503unset LUNCH_MENU_CHOICES
504function add_lunch_combo()
505{
506 local new_combo=$1
507 local c
508 for c in ${LUNCH_MENU_CHOICES[@]} ; do
509 if [ "$new_combo" = "$c" ] ; then
510 return
511 fi
512 done
513 LUNCH_MENU_CHOICES=(${LUNCH_MENU_CHOICES[@]} $new_combo)
514}
515
516# add the default one here
Jean-Baptiste Queru324c1232013-03-22 15:53:54 -0700517add_lunch_combo aosp_arm-eng
Colin Cross4f0eb7d2014-01-21 19:35:38 -0800518add_lunch_combo aosp_arm64-eng
Serban Constantinescu9b68fb22014-01-14 10:33:53 +0000519add_lunch_combo aosp_mips-eng
Chris Dearman1efd9e42014-02-03 15:01:24 -0800520add_lunch_combo aosp_mips64-eng
Serban Constantinescu9b68fb22014-01-14 10:33:53 +0000521add_lunch_combo aosp_x86-eng
522add_lunch_combo aosp_x86_64-eng
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800523
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700524function print_lunch_menu()
525{
526 local uname=$(uname)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700527 echo
528 echo "You're building on" $uname
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700529 echo
530 echo "Lunch menu... pick a combo:"
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800531
532 local i=1
533 local choice
534 for choice in ${LUNCH_MENU_CHOICES[@]}
535 do
536 echo " $i. $choice"
537 i=$(($i+1))
538 done
539
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700540 echo
541}
542
543function lunch()
544{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800545 local answer
546
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700547 if [ "$1" ] ; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800548 answer=$1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700549 else
550 print_lunch_menu
Jean-Baptiste Queru324c1232013-03-22 15:53:54 -0700551 echo -n "Which would you like? [aosp_arm-eng] "
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800552 read answer
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700553 fi
554
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800555 local selection=
556
557 if [ -z "$answer" ]
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700558 then
Jean-Baptiste Queru324c1232013-03-22 15:53:54 -0700559 selection=aosp_arm-eng
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800560 elif (echo -n $answer | grep -q -e "^[0-9][0-9]*$")
561 then
562 if [ $answer -le ${#LUNCH_MENU_CHOICES[@]} ]
563 then
Kan-Ru Chen07453762010-07-05 15:53:47 +0800564 selection=${LUNCH_MENU_CHOICES[$(($answer-1))]}
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800565 fi
566 elif (echo -n $answer | grep -q -e "^[^\-][^\-]*-[^\-][^\-]*$")
567 then
568 selection=$answer
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700569 fi
570
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800571 if [ -z "$selection" ]
572 then
573 echo
574 echo "Invalid lunch combo: $answer"
575 return 1
576 fi
577
Joe Onoratoda12daf2010-06-09 18:18:31 -0700578 export TARGET_BUILD_APPS=
579
Jeff Browne33ba4c2011-07-11 22:11:46 -0700580 local variant=$(echo -n $selection | sed -e "s/^[^\-]*-//")
581 check_variant $variant
582 if [ $? -ne 0 ]
583 then
584 echo
585 echo "** Invalid variant: '$variant'"
586 echo "** Must be one of ${VARIANT_CHOICES[@]}"
587 variant=
588 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800589
Ying Wang08800fd2016-03-03 20:57:21 -0800590 local product=$(echo -n $selection | sed -e "s/-.*$//")
591 TARGET_PRODUCT=$product \
592 TARGET_BUILD_VARIANT=$variant \
593 build_build_var_cache
594 if [ $? -ne 0 ]
595 then
596 echo
597 echo "** Don't have a product spec for: '$product'"
598 echo "** Do you have the right repo manifest?"
599 product=
600 fi
601
Jeff Browne33ba4c2011-07-11 22:11:46 -0700602 if [ -z "$product" -o -z "$variant" ]
603 then
604 echo
605 return 1
606 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800607
Jeff Browne33ba4c2011-07-11 22:11:46 -0700608 export TARGET_PRODUCT=$product
609 export TARGET_BUILD_VARIANT=$variant
610 export TARGET_BUILD_TYPE=release
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700611
612 echo
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800613
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700614 set_stuff_for_environment
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800615 printconfig
Ying Wang08800fd2016-03-03 20:57:21 -0800616 destroy_build_var_cache
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700617}
618
Jeff Davidson513d7a42010-08-02 10:00:44 -0700619# Tab completion for lunch.
620function _lunch()
621{
622 local cur prev opts
623 COMPREPLY=()
624 cur="${COMP_WORDS[COMP_CWORD]}"
625 prev="${COMP_WORDS[COMP_CWORD-1]}"
626
627 COMPREPLY=( $(compgen -W "${LUNCH_MENU_CHOICES[*]}" -- ${cur}) )
628 return 0
629}
630complete -F _lunch lunch
631
Joe Onoratoda12daf2010-06-09 18:18:31 -0700632# Configures the build to build unbundled apps.
Doug Zongker0d8179e2014-04-16 11:34:34 -0700633# Run tapas with one or more app names (from LOCAL_PACKAGE_NAME)
Joe Onoratoda12daf2010-06-09 18:18:31 -0700634function tapas()
635{
Ying Wangb541ab62014-05-29 17:57:40 -0700636 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 -0700637 local variant="$(echo $* | xargs -n 1 echo | \grep -E '^(user|userdebug|eng)$' | xargs)"
Jeff Hamilton5069bd62014-09-04 21:28:00 -0700638 local density="$(echo $* | xargs -n 1 echo | \grep -E '^(ldpi|mdpi|tvdpi|hdpi|xhdpi|xxhdpi|xxxhdpi|alldpi)$' | xargs)"
639 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 -0700640
Ying Wang67f02922012-08-22 10:25:20 -0700641 if [ $(echo $arch | wc -w) -gt 1 ]; then
642 echo "tapas: Error: Multiple build archs supplied: $arch"
643 return
644 fi
Joe Onoratoda12daf2010-06-09 18:18:31 -0700645 if [ $(echo $variant | wc -w) -gt 1 ]; then
646 echo "tapas: Error: Multiple build variants supplied: $variant"
647 return
648 fi
Jeff Hamilton5069bd62014-09-04 21:28:00 -0700649 if [ $(echo $density | wc -w) -gt 1 ]; then
650 echo "tapas: Error: Multiple densities supplied: $density"
651 return
652 fi
Ying Wang67f02922012-08-22 10:25:20 -0700653
Ying Wang0a76df52015-06-08 11:57:26 -0700654 local product=aosp_arm
Ying Wang67f02922012-08-22 10:25:20 -0700655 case $arch in
Ying Wang0a76df52015-06-08 11:57:26 -0700656 x86) product=aosp_x86;;
657 mips) product=aosp_mips;;
Ying Wangb541ab62014-05-29 17:57:40 -0700658 armv5) product=generic_armv5;;
659 arm64) product=aosp_arm64;;
660 x86_64) product=aosp_x86_64;;
661 mips64) product=aosp_mips64;;
Ying Wang67f02922012-08-22 10:25:20 -0700662 esac
Joe Onoratoda12daf2010-06-09 18:18:31 -0700663 if [ -z "$variant" ]; then
664 variant=eng
665 fi
Ying Wangc048c9b2010-06-24 15:08:33 -0700666 if [ -z "$apps" ]; then
667 apps=all
668 fi
Justin Morey29d225c2014-11-04 13:35:51 -0600669 if [ -z "$density" ]; then
670 density=alldpi
671 fi
Joe Onoratoda12daf2010-06-09 18:18:31 -0700672
Ying Wang67f02922012-08-22 10:25:20 -0700673 export TARGET_PRODUCT=$product
Joe Onoratoda12daf2010-06-09 18:18:31 -0700674 export TARGET_BUILD_VARIANT=$variant
Jeff Hamilton5069bd62014-09-04 21:28:00 -0700675 export TARGET_BUILD_DENSITY=$density
Joe Onoratoda12daf2010-06-09 18:18:31 -0700676 export TARGET_BUILD_TYPE=release
677 export TARGET_BUILD_APPS=$apps
678
Ying Wang08800fd2016-03-03 20:57:21 -0800679 build_build_var_cache
Joe Onoratoda12daf2010-06-09 18:18:31 -0700680 set_stuff_for_environment
681 printconfig
Ying Wang08800fd2016-03-03 20:57:21 -0800682 destroy_build_var_cache
Joe Onoratoda12daf2010-06-09 18:18:31 -0700683}
684
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700685function gettop
686{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800687 local TOPFILE=build/core/envsetup.mk
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700688 if [ -n "$TOP" -a -f "$TOP/$TOPFILE" ] ; then
Brian Carlstroma5c4f172014-09-12 00:33:25 -0700689 # The following circumlocution ensures we remove symlinks from TOP.
690 (cd $TOP; PWD= /bin/pwd)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700691 else
692 if [ -f $TOPFILE ] ; then
Dan Bornsteind0b274d2009-11-24 15:48:50 -0800693 # The following circumlocution (repeated below as well) ensures
694 # that we record the true directory name and not one that is
695 # faked up with symlink names.
696 PWD= /bin/pwd
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700697 else
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800698 local HERE=$PWD
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700699 T=
700 while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do
Ying Wang9cd17642012-12-13 10:52:07 -0800701 \cd ..
synergyb112a402013-07-05 19:47:47 -0700702 T=`PWD= /bin/pwd -P`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700703 done
Ying Wang9cd17642012-12-13 10:52:07 -0800704 \cd $HERE
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700705 if [ -f "$T/$TOPFILE" ]; then
706 echo $T
707 fi
708 fi
709 fi
710}
711
Andrew Hsieh906cb782013-09-10 17:37:14 +0800712# Return driver for "make", if any (eg. static analyzer)
713function getdriver()
714{
715 local T="$1"
716 test "$WITH_STATIC_ANALYZER" = "0" && unset WITH_STATIC_ANALYZER
717 if [ -n "$WITH_STATIC_ANALYZER" ]; then
Chih-Hung Hsieh42d5c292016-02-24 16:42:15 -0800718 # Use scan-build to collect all static analyzer reports into directory
719 # /tmp/scan-build-yyyy-mm-dd-hhmmss-*
720 # The clang compiler passed by --use-analyzer here is not important.
721 # build/core/binary.mk will set CLANG_CXX and CLANG before calling
722 # c++-analyzer and ccc-analyzer.
723 local CLANG_VERSION=$(get_build_var LLVM_PREBUILTS_VERSION)
724 local BUILD_OS=$(get_build_var BUILD_OS)
725 local CLANG_DIR="$T/prebuilts/clang/host/${BUILD_OS}-x86/${CLANG_VERSION}"
Andrew Hsieh906cb782013-09-10 17:37:14 +0800726 echo "\
Chih-Hung Hsieh42d5c292016-02-24 16:42:15 -0800727${CLANG_DIR}/tools/scan-build/bin/scan-build \
728--use-analyzer ${CLANG_DIR}/bin/clang \
729--status-bugs"
Andrew Hsieh906cb782013-09-10 17:37:14 +0800730 fi
731}
732
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700733function m()
734{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800735 local T=$(gettop)
736 local DRV=$(getdriver $T)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700737 if [ "$T" ]; then
Andrew Hsieh906cb782013-09-10 17:37:14 +0800738 $DRV make -C $T -f build/core/main.mk $@
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700739 else
740 echo "Couldn't locate the top of the tree. Try setting TOP."
Ying Wang0c1374c2015-04-01 10:13:02 -0700741 return 1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700742 fi
743}
744
745function findmakefile()
746{
747 TOPFILE=build/core/envsetup.mk
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800748 local HERE=$PWD
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700749 T=
750 while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do
Ying Wang11b15b12012-10-11 15:05:07 -0700751 T=`PWD= /bin/pwd`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700752 if [ -f "$T/Android.mk" ]; then
753 echo $T/Android.mk
Ying Wang9cd17642012-12-13 10:52:07 -0800754 \cd $HERE
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700755 return
756 fi
Ying Wang9cd17642012-12-13 10:52:07 -0800757 \cd ..
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700758 done
Ying Wang9cd17642012-12-13 10:52:07 -0800759 \cd $HERE
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700760}
761
762function mm()
763{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800764 local T=$(gettop)
765 local DRV=$(getdriver $T)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700766 # If we're sitting in the root of the build tree, just do a
767 # normal make.
768 if [ -f build/core/envsetup.mk -a -f Makefile ]; then
Andrew Hsieh906cb782013-09-10 17:37:14 +0800769 $DRV make $@
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700770 else
771 # Find the closest Android.mk file.
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800772 local M=$(findmakefile)
Ying Wanga7deb082013-08-16 13:24:47 -0700773 local MODULES=
774 local GET_INSTALL_PATH=
775 local ARGS=
Robert Greenwalt3c794d72009-07-15 15:07:44 -0700776 # Remove the path to top as the makefilepath needs to be relative
777 local M=`echo $M|sed 's:'$T'/::'`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700778 if [ ! "$T" ]; then
779 echo "Couldn't locate the top of the tree. Try setting TOP."
Ying Wang0c1374c2015-04-01 10:13:02 -0700780 return 1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700781 elif [ ! "$M" ]; then
782 echo "Couldn't locate a makefile from the current directory."
Ying Wang0c1374c2015-04-01 10:13:02 -0700783 return 1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700784 else
Ying Wanga7deb082013-08-16 13:24:47 -0700785 for ARG in $@; do
786 case $ARG in
787 GET-INSTALL-PATH) GET_INSTALL_PATH=$ARG;;
788 esac
789 done
790 if [ -n "$GET_INSTALL_PATH" ]; then
791 MODULES=
792 ARGS=GET-INSTALL-PATH
793 else
794 MODULES=all_modules
795 ARGS=$@
796 fi
Andrew Hsieh246daf72013-09-10 18:07:23 -0700797 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 -0700798 fi
799 fi
800}
801
802function mmm()
803{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800804 local T=$(gettop)
805 local DRV=$(getdriver $T)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700806 if [ "$T" ]; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800807 local MAKEFILE=
Alon Albert68895a92011-11-30 12:40:19 -0800808 local MODULES=
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800809 local ARGS=
810 local DIR TO_CHOP
Ying Wanga7deb082013-08-16 13:24:47 -0700811 local GET_INSTALL_PATH=
The Android Open Source Project88b60792009-03-03 19:28:42 -0800812 local DASH_ARGS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^-.*$/')
813 local DIRS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^[^-].*$/')
814 for DIR in $DIRS ; do
Alon Albert68895a92011-11-30 12:40:19 -0800815 MODULES=`echo $DIR | sed -n -e 's/.*:\(.*$\)/\1/p' | sed 's/,/ /'`
816 if [ "$MODULES" = "" ]; then
817 MODULES=all_modules
818 fi
819 DIR=`echo $DIR | sed -e 's/:.*//' -e 's:/$::'`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700820 if [ -f $DIR/Android.mk ]; then
Ying Wanga7deb082013-08-16 13:24:47 -0700821 local TO_CHOP=`(\cd -P -- $T && pwd -P) | wc -c | tr -d ' '`
822 local TO_CHOP=`expr $TO_CHOP + 1`
823 local START=`PWD= /bin/pwd`
824 local MFILE=`echo $START | cut -c${TO_CHOP}-`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700825 if [ "$MFILE" = "" ] ; then
826 MFILE=$DIR/Android.mk
827 else
828 MFILE=$MFILE/$DIR/Android.mk
829 fi
830 MAKEFILE="$MAKEFILE $MFILE"
831 else
Ying Wanga7deb082013-08-16 13:24:47 -0700832 case $DIR in
Ying Wangcaeaa082015-09-23 16:08:55 -0700833 showcommands | snod | dist | *=*) ARGS="$ARGS $DIR";;
Ying Wanga7deb082013-08-16 13:24:47 -0700834 GET-INSTALL-PATH) GET_INSTALL_PATH=$DIR;;
Abhinav1997a72a6e72015-10-18 20:25:48 +0200835 *) if [ -d $DIR ]; then
836 echo "No Android.mk in $DIR.";
837 else
838 echo "Couldn't locate the directory $DIR";
839 fi
840 return 1;;
Ying Wanga7deb082013-08-16 13:24:47 -0700841 esac
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700842 fi
843 done
Ying Wanga7deb082013-08-16 13:24:47 -0700844 if [ -n "$GET_INSTALL_PATH" ]; then
845 ARGS=$GET_INSTALL_PATH
846 MODULES=
847 fi
Andrew Hsieh906cb782013-09-10 17:37:14 +0800848 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 -0700849 else
850 echo "Couldn't locate the top of the tree. Try setting TOP."
Ying Wang0c1374c2015-04-01 10:13:02 -0700851 return 1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700852 fi
853}
854
Ying Wangb607f7b2013-02-08 18:01:04 -0800855function mma()
856{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800857 local T=$(gettop)
858 local DRV=$(getdriver $T)
Ying Wangb607f7b2013-02-08 18:01:04 -0800859 if [ -f build/core/envsetup.mk -a -f Makefile ]; then
Andrew Hsieh906cb782013-09-10 17:37:14 +0800860 $DRV make $@
Ying Wangb607f7b2013-02-08 18:01:04 -0800861 else
Ying Wangb607f7b2013-02-08 18:01:04 -0800862 if [ ! "$T" ]; then
863 echo "Couldn't locate the top of the tree. Try setting TOP."
Ying Wang0c1374c2015-04-01 10:13:02 -0700864 return 1
Ying Wangb607f7b2013-02-08 18:01:04 -0800865 fi
866 local MY_PWD=`PWD= /bin/pwd|sed 's:'$T'/::'`
Ying Wang61cd8842015-09-24 16:19:19 -0700867 local MODULES_IN_PATHS=MODULES-IN-$MY_PWD
868 # Convert "/" to "-".
869 MODULES_IN_PATHS=${MODULES_IN_PATHS//\//-}
870 $DRV make -C $T -f build/core/main.mk $@ $MODULES_IN_PATHS
Ying Wangb607f7b2013-02-08 18:01:04 -0800871 fi
872}
873
874function mmma()
875{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800876 local T=$(gettop)
877 local DRV=$(getdriver $T)
Ying Wangb607f7b2013-02-08 18:01:04 -0800878 if [ "$T" ]; then
879 local DASH_ARGS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^-.*$/')
880 local DIRS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^[^-].*$/')
881 local MY_PWD=`PWD= /bin/pwd`
882 if [ "$MY_PWD" = "$T" ]; then
883 MY_PWD=
884 else
885 MY_PWD=`echo $MY_PWD|sed 's:'$T'/::'`
886 fi
887 local DIR=
Ying Wangcaeaa082015-09-23 16:08:55 -0700888 local MODULES_IN_PATHS=
Ying Wangb607f7b2013-02-08 18:01:04 -0800889 local ARGS=
890 for DIR in $DIRS ; do
891 if [ -d $DIR ]; then
Ying Wangcaeaa082015-09-23 16:08:55 -0700892 # Remove the leading ./ and trailing / if any exists.
893 DIR=${DIR#./}
894 DIR=${DIR%/}
895 if [ "$MY_PWD" != "" ]; then
896 DIR=$MY_PWD/$DIR
Ying Wangb607f7b2013-02-08 18:01:04 -0800897 fi
Ying Wang61cd8842015-09-24 16:19:19 -0700898 MODULES_IN_PATHS="$MODULES_IN_PATHS MODULES-IN-$DIR"
Ying Wangb607f7b2013-02-08 18:01:04 -0800899 else
900 case $DIR in
Ying Wangcaeaa082015-09-23 16:08:55 -0700901 showcommands | snod | dist | *=*) ARGS="$ARGS $DIR";;
Ying Wangb607f7b2013-02-08 18:01:04 -0800902 *) echo "Couldn't find directory $DIR"; return 1;;
903 esac
904 fi
905 done
Ying Wang61cd8842015-09-24 16:19:19 -0700906 # Convert "/" to "-".
907 MODULES_IN_PATHS=${MODULES_IN_PATHS//\//-}
Ying Wangcaeaa082015-09-23 16:08:55 -0700908 $DRV make -C $T -f build/core/main.mk $DASH_ARGS $ARGS $MODULES_IN_PATHS
Ying Wangb607f7b2013-02-08 18:01:04 -0800909 else
910 echo "Couldn't locate the top of the tree. Try setting TOP."
Ying Wang0c1374c2015-04-01 10:13:02 -0700911 return 1
Ying Wangb607f7b2013-02-08 18:01:04 -0800912 fi
913}
914
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700915function croot()
916{
917 T=$(gettop)
918 if [ "$T" ]; then
Ying Wang9cd17642012-12-13 10:52:07 -0800919 \cd $(gettop)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700920 else
921 echo "Couldn't locate the top of the tree. Try setting TOP."
922 fi
923}
924
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700925function cproj()
926{
927 TOPFILE=build/core/envsetup.mk
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700928 local HERE=$PWD
929 T=
930 while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do
931 T=$PWD
932 if [ -f "$T/Android.mk" ]; then
Ying Wang9cd17642012-12-13 10:52:07 -0800933 \cd $T
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700934 return
935 fi
Ying Wang9cd17642012-12-13 10:52:07 -0800936 \cd ..
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700937 done
Ying Wang9cd17642012-12-13 10:52:07 -0800938 \cd $HERE
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700939 echo "can't find Android.mk"
940}
941
Daniel Sandler47e0a882013-07-30 13:23:52 -0400942# simplified version of ps; output in the form
943# <pid> <procname>
944function qpid() {
945 local prepend=''
946 local append=''
947 if [ "$1" = "--exact" ]; then
948 prepend=' '
949 append='$'
950 shift
951 elif [ "$1" = "--help" -o "$1" = "-h" ]; then
Ying Wang08800fd2016-03-03 20:57:21 -0800952 echo "usage: qpid [[--exact] <process name|pid>"
953 return 255
954 fi
Daniel Sandler47e0a882013-07-30 13:23:52 -0400955
956 local EXE="$1"
957 if [ "$EXE" ] ; then
Ying Wang08800fd2016-03-03 20:57:21 -0800958 qpid | \grep "$prepend$EXE$append"
959 else
960 adb shell ps \
961 | tr -d '\r' \
962 | sed -e 1d -e 's/^[^ ]* *\([0-9]*\).* \([^ ]*\)$/\1 \2/'
963 fi
Daniel Sandler47e0a882013-07-30 13:23:52 -0400964}
965
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700966function pid()
967{
Daniel Sandler47e0a882013-07-30 13:23:52 -0400968 local prepend=''
969 local append=''
970 if [ "$1" = "--exact" ]; then
971 prepend=' '
972 append='$'
973 shift
974 fi
975 local EXE="$1"
976 if [ "$EXE" ] ; then
977 local PID=`adb shell ps \
978 | tr -d '\r' \
Mathias Agopian44583272013-08-27 14:15:50 -0700979 | \grep "$prepend$EXE$append" \
Daniel Sandler47e0a882013-07-30 13:23:52 -0400980 | sed -e 's/^[^ ]* *\([0-9]*\).*$/\1/'`
981 echo "$PID"
982 else
983 echo "usage: pid [--exact] <process name>"
Ying Wang08800fd2016-03-03 20:57:21 -0800984 return 255
Daniel Sandler47e0a882013-07-30 13:23:52 -0400985 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700986}
987
Iliyan Malcheve675cfb2014-11-03 17:04:47 -0800988# coredump_setup - enable core dumps globally for any process
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700989# that has the core-file-size limit set correctly
990#
Iliyan Malchevaf5de972014-11-04 20:57:37 -0800991# NOTE: You must call also coredump_enable for a specific process
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700992# if its core-file-size limit is not set already.
993# NOTE: Core dumps are written to ramdisk; they will not survive a reboot!
994
Iliyan Malcheve675cfb2014-11-03 17:04:47 -0800995function coredump_setup()
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700996{
Ying Wang08800fd2016-03-03 20:57:21 -0800997 echo "Getting root...";
998 adb root;
999 adb wait-for-device;
Iliyan Malchev248f4d52014-10-28 18:00:42 -07001000
Ying Wang08800fd2016-03-03 20:57:21 -08001001 echo "Remounting root partition read-write...";
1002 adb shell mount -w -o remount -t rootfs rootfs;
1003 sleep 1;
1004 adb wait-for-device;
1005 adb shell mkdir -p /cores;
1006 adb shell mount -t tmpfs tmpfs /cores;
1007 adb shell chmod 0777 /cores;
Iliyan Malchev248f4d52014-10-28 18:00:42 -07001008
Ying Wang08800fd2016-03-03 20:57:21 -08001009 echo "Granting SELinux permission to dump in /cores...";
1010 adb shell restorecon -R /cores;
Iliyan Malchev248f4d52014-10-28 18:00:42 -07001011
Ying Wang08800fd2016-03-03 20:57:21 -08001012 echo "Set core pattern.";
1013 adb shell 'echo /cores/core.%p > /proc/sys/kernel/core_pattern';
Iliyan Malchev248f4d52014-10-28 18:00:42 -07001014
Ying Wang08800fd2016-03-03 20:57:21 -08001015 echo "Done."
Iliyan Malchev248f4d52014-10-28 18:00:42 -07001016}
1017
Iliyan Malchevaf5de972014-11-04 20:57:37 -08001018# coredump_enable - enable core dumps for the specified process
Iliyan Malchev248f4d52014-10-28 18:00:42 -07001019# $1 = PID of process (e.g., $(pid mediaserver))
1020#
Iliyan Malchevaf5de972014-11-04 20:57:37 -08001021# NOTE: coredump_setup must have been called as well for a core
Iliyan Malchev248f4d52014-10-28 18:00:42 -07001022# dump to actually be generated.
1023
Iliyan Malchevaf5de972014-11-04 20:57:37 -08001024function coredump_enable()
Iliyan Malchev248f4d52014-10-28 18:00:42 -07001025{
Ying Wang08800fd2016-03-03 20:57:21 -08001026 local PID=$1;
1027 if [ -z "$PID" ]; then
1028 printf "Expecting a PID!\n";
1029 return;
1030 fi;
1031 echo "Setting core limit for $PID to infinite...";
1032 adb shell prlimit $PID 4 -1 -1
Iliyan Malchev248f4d52014-10-28 18:00:42 -07001033}
1034
1035# core - send SIGV and pull the core for process
1036# $1 = PID of process (e.g., $(pid mediaserver))
1037#
Iliyan Malchevaf5de972014-11-04 20:57:37 -08001038# NOTE: coredump_setup must be called once per boot for core dumps to be
Iliyan Malchev248f4d52014-10-28 18:00:42 -07001039# enabled globally.
1040
1041function core()
1042{
Ying Wang08800fd2016-03-03 20:57:21 -08001043 local PID=$1;
Iliyan Malchev248f4d52014-10-28 18:00:42 -07001044
Ying Wang08800fd2016-03-03 20:57:21 -08001045 if [ -z "$PID" ]; then
1046 printf "Expecting a PID!\n";
1047 return;
1048 fi;
Iliyan Malchev248f4d52014-10-28 18:00:42 -07001049
Ying Wang08800fd2016-03-03 20:57:21 -08001050 local CORENAME=core.$PID;
1051 local COREPATH=/cores/$CORENAME;
1052 local SIG=SEGV;
Iliyan Malchev248f4d52014-10-28 18:00:42 -07001053
Ying Wang08800fd2016-03-03 20:57:21 -08001054 coredump_enable $1;
Iliyan Malchev248f4d52014-10-28 18:00:42 -07001055
Ying Wang08800fd2016-03-03 20:57:21 -08001056 local done=0;
1057 while [ $(adb shell "[ -d /proc/$PID ] && echo -n yes") ]; do
1058 printf "\tSending SIG%s to %d...\n" $SIG $PID;
1059 adb shell kill -$SIG $PID;
1060 sleep 1;
1061 done;
Iliyan Malchev248f4d52014-10-28 18:00:42 -07001062
Ying Wang08800fd2016-03-03 20:57:21 -08001063 adb shell "while [ ! -f $COREPATH ] ; do echo waiting for $COREPATH to be generated; sleep 1; done"
1064 echo "Done: core is under $COREPATH on device.";
Iliyan Malchev248f4d52014-10-28 18:00:42 -07001065}
1066
Christopher Tate744ee802009-11-12 15:33:08 -08001067# systemstack - dump the current stack trace of all threads in the system process
1068# to the usual ANR traces file
1069function systemstack()
1070{
Jeff Sharkeyf5824372013-02-19 17:00:46 -08001071 stacks system_server
1072}
1073
1074function stacks()
1075{
1076 if [[ $1 =~ ^[0-9]+$ ]] ; then
1077 local PID="$1"
1078 elif [ "$1" ] ; then
Jeff Brownb12c2e52013-08-19 15:14:16 -07001079 local PIDLIST="$(pid $1)"
1080 if [[ $PIDLIST =~ ^[0-9]+$ ]] ; then
1081 local PID="$PIDLIST"
1082 elif [ "$PIDLIST" ] ; then
1083 echo "more than one process: $1"
1084 else
1085 echo "no such process: $1"
1086 fi
Jeff Sharkeyf5824372013-02-19 17:00:46 -08001087 else
1088 echo "usage: stacks [pid|process name]"
1089 fi
1090
1091 if [ "$PID" ] ; then
Jeff Brownb12c2e52013-08-19 15:14:16 -07001092 # Determine whether the process is native
1093 if adb shell ls -l /proc/$PID/exe | grep -q /system/bin/app_process ; then
1094 # Dump stacks of Dalvik process
1095 local TRACES=/data/anr/traces.txt
1096 local ORIG=/data/anr/traces.orig
1097 local TMP=/data/anr/traces.tmp
Jeff Sharkeyf5824372013-02-19 17:00:46 -08001098
Jeff Brownb12c2e52013-08-19 15:14:16 -07001099 # Keep original traces to avoid clobbering
1100 adb shell mv $TRACES $ORIG
Jeff Sharkeyf5824372013-02-19 17:00:46 -08001101
Jeff Brownb12c2e52013-08-19 15:14:16 -07001102 # Make sure we have a usable file
1103 adb shell touch $TRACES
1104 adb shell chmod 666 $TRACES
Jeff Sharkeyf5824372013-02-19 17:00:46 -08001105
Jeff Brownb12c2e52013-08-19 15:14:16 -07001106 # Dump stacks and wait for dump to finish
1107 adb shell kill -3 $PID
1108 adb shell notify $TRACES >/dev/null
Jeff Sharkeyf5824372013-02-19 17:00:46 -08001109
Jeff Brownb12c2e52013-08-19 15:14:16 -07001110 # Restore original stacks, and show current output
1111 adb shell mv $TRACES $TMP
1112 adb shell mv $ORIG $TRACES
1113 adb shell cat $TMP
1114 else
1115 # Dump stacks of native process
Michael Wrightaeed7212014-06-19 19:58:12 -07001116 local USE64BIT="$(is64bit $PID)"
1117 adb shell debuggerd$USE64BIT -b $PID
Jeff Brownb12c2e52013-08-19 15:14:16 -07001118 fi
Jeff Sharkeyf5824372013-02-19 17:00:46 -08001119 fi
Christopher Tate744ee802009-11-12 15:33:08 -08001120}
1121
Michael Wrightaeed7212014-06-19 19:58:12 -07001122# Read the ELF header from /proc/$PID/exe to determine if the process is
1123# 64-bit.
Ben Chengfba67bf2014-02-25 10:27:07 -08001124function is64bit()
1125{
1126 local PID="$1"
1127 if [ "$PID" ] ; then
Michael Wrightaeed7212014-06-19 19:58:12 -07001128 if [[ "$(adb shell cat /proc/$PID/exe | xxd -l 1 -s 4 -ps)" -eq "02" ]] ; then
Ben Chengfba67bf2014-02-25 10:27:07 -08001129 echo "64"
1130 else
1131 echo ""
1132 fi
1133 else
1134 echo ""
1135 fi
1136}
1137
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001138case `uname -s` in
1139 Darwin)
1140 function sgrep()
1141 {
Mike Frysinger5e479732015-09-22 18:13:48 -04001142 find -E . -name .repo -prune -o -name .git -prune -o -type f -iregex '.*\.(c|h|cc|cpp|S|java|xml|sh|mk|aidl)' \
1143 -exec grep --color -n "$@" {} +
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001144 }
1145
1146 ;;
1147 *)
1148 function sgrep()
1149 {
Mike Frysinger5e479732015-09-22 18:13:48 -04001150 find . -name .repo -prune -o -name .git -prune -o -type f -iregex '.*\.\(c\|h\|cc\|cpp\|S\|java\|xml\|sh\|mk\|aidl\)' \
1151 -exec grep --color -n "$@" {} +
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001152 }
1153 ;;
1154esac
1155
Raghu Gandham8da43102012-07-25 19:57:22 -07001156function gettargetarch
1157{
1158 get_build_var TARGET_ARCH
1159}
1160
Jon Boekenoogencbca56f2014-04-07 10:57:38 -07001161function ggrep()
1162{
Mike Frysinger5e479732015-09-22 18:13:48 -04001163 find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -type f -name "*\.gradle" \
1164 -exec grep --color -n "$@" {} +
Jon Boekenoogencbca56f2014-04-07 10:57:38 -07001165}
1166
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001167function jgrep()
1168{
Mike Frysinger5e479732015-09-22 18:13:48 -04001169 find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -type f -name "*\.java" \
1170 -exec grep --color -n "$@" {} +
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001171}
1172
1173function cgrep()
1174{
Mike Frysinger5e479732015-09-22 18:13:48 -04001175 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' \) \
1176 -exec grep --color -n "$@" {} +
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001177}
1178
1179function resgrep()
1180{
Mike Frysinger5e479732015-09-22 18:13:48 -04001181 for dir in `find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -name res -type d`; do
1182 find $dir -type f -name '*\.xml' -exec grep --color -n "$@" {} +
1183 done
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001184}
1185
Jeff Sharkey50b61e92013-03-08 10:20:47 -08001186function mangrep()
1187{
Mike Frysinger5e479732015-09-22 18:13:48 -04001188 find . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o -type f -name 'AndroidManifest.xml' \
1189 -exec grep --color -n "$@" {} +
Jeff Sharkey50b61e92013-03-08 10:20:47 -08001190}
1191
Alex Klyubinba5fc8e2013-05-06 14:11:48 -07001192function sepgrep()
1193{
Mike Frysinger5e479732015-09-22 18:13:48 -04001194 find . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o -name sepolicy -type d \
1195 -exec grep --color -n -r --exclude-dir=\.git "$@" {} +
Alex Klyubinba5fc8e2013-05-06 14:11:48 -07001196}
1197
Jeff Sharkeyea0068a2015-02-26 14:13:46 -08001198function rcgrep()
1199{
Mike Frysinger5e479732015-09-22 18:13:48 -04001200 find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -type f -name "*\.rc*" \
1201 -exec grep --color -n "$@" {} +
Jeff Sharkeyea0068a2015-02-26 14:13:46 -08001202}
1203
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001204case `uname -s` in
1205 Darwin)
1206 function mgrep()
1207 {
Mike Frysinger5e479732015-09-22 18:13:48 -04001208 find -E . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o -type f -iregex '.*/(Makefile|Makefile\..*|.*\.make|.*\.mak|.*\.mk)' \
1209 -exec grep --color -n "$@" {} +
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001210 }
1211
1212 function treegrep()
1213 {
Mike Frysinger5e479732015-09-22 18:13:48 -04001214 find -E . -name .repo -prune -o -name .git -prune -o -type f -iregex '.*\.(c|h|cpp|S|java|xml)' \
1215 -exec grep --color -n -i "$@" {} +
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001216 }
1217
1218 ;;
1219 *)
1220 function mgrep()
1221 {
Mike Frysinger5e479732015-09-22 18:13:48 -04001222 find . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o -regextype posix-egrep -iregex '(.*\/Makefile|.*\/Makefile\..*|.*\.make|.*\.mak|.*\.mk)' -type f \
1223 -exec grep --color -n "$@" {} +
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001224 }
1225
1226 function treegrep()
1227 {
Mike Frysinger5e479732015-09-22 18:13:48 -04001228 find . -name .repo -prune -o -name .git -prune -o -regextype posix-egrep -iregex '.*\.(c|h|cpp|S|java|xml)' -type f \
1229 -exec grep --color -n -i "$@" {} +
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001230 }
1231
1232 ;;
1233esac
1234
1235function getprebuilt
1236{
1237 get_abs_build_var ANDROID_PREBUILTS
1238}
1239
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001240function tracedmdump()
1241{
1242 T=$(gettop)
1243 if [ ! "$T" ]; then
1244 echo "Couldn't locate the top of the tree. Try setting TOP."
1245 return
1246 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001247 local prebuiltdir=$(getprebuilt)
Raghu Gandham8da43102012-07-25 19:57:22 -07001248 local arch=$(gettargetarch)
1249 local KERNEL=$T/prebuilts/qemu-kernel/$arch/vmlinux-qemu
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001250
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001251 local TRACE=$1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001252 if [ ! "$TRACE" ] ; then
1253 echo "usage: tracedmdump tracename"
1254 return
1255 fi
1256
Jack Veenstra60116fc2009-04-09 18:12:34 -07001257 if [ ! -r "$KERNEL" ] ; then
1258 echo "Error: cannot find kernel: '$KERNEL'"
1259 return
1260 fi
1261
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001262 local BASETRACE=$(basename $TRACE)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001263 if [ "$BASETRACE" = "$TRACE" ] ; then
1264 TRACE=$ANDROID_PRODUCT_OUT/traces/$TRACE
1265 fi
1266
1267 echo "post-processing traces..."
1268 rm -f $TRACE/qtrace.dexlist
1269 post_trace $TRACE
1270 if [ $? -ne 0 ]; then
1271 echo "***"
1272 echo "*** Error: malformed trace. Did you remember to exit the emulator?"
1273 echo "***"
1274 return
1275 fi
1276 echo "generating dexlist output..."
1277 /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
1278 echo "generating dmtrace data..."
1279 q2dm -r $ANDROID_PRODUCT_OUT/symbols $TRACE $KERNEL $TRACE/dmtrace || return
1280 echo "generating html file..."
1281 dmtracedump -h $TRACE/dmtrace >| $TRACE/dmtrace.html || return
1282 echo "done, see $TRACE/dmtrace.html for details"
1283 echo "or run:"
1284 echo " traceview $TRACE/dmtrace"
1285}
1286
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001287# communicate with a running device or emulator, set up necessary state,
1288# and run the hat command.
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001289function runhat()
1290{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001291 # process standard adb options
1292 local adbTarget=""
Andy McFaddenb6289852010-07-12 08:00:19 -07001293 if [ "$1" = "-d" -o "$1" = "-e" ]; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001294 adbTarget=$1
1295 shift 1
Andy McFaddenb6289852010-07-12 08:00:19 -07001296 elif [ "$1" = "-s" ]; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001297 adbTarget="$1 $2"
1298 shift 2
1299 fi
1300 local adbOptions=${adbTarget}
Dianne Hackborn6b9549f2012-09-26 15:00:59 -07001301 #echo adbOptions = ${adbOptions}
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001302
1303 # runhat options
1304 local targetPid=$1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001305
1306 if [ "$targetPid" = "" ]; then
Andy McFaddenb6289852010-07-12 08:00:19 -07001307 echo "Usage: runhat [ -d | -e | -s serial ] target-pid"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001308 return
1309 fi
1310
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001311 # confirm hat is available
1312 if [ -z $(which hat) ]; then
1313 echo "hat is not available in this configuration."
1314 return
1315 fi
1316
Andy McFaddenb6289852010-07-12 08:00:19 -07001317 # issue "am" command to cause the hprof dump
Nick Kralevich9948b1e2014-07-18 15:45:38 -07001318 local devFile=/data/local/tmp/hprof-$targetPid
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001319 echo "Poking $targetPid and waiting for data..."
Dianne Hackborn6b9549f2012-09-26 15:00:59 -07001320 echo "Storing data at $devFile"
Andy McFaddenb6289852010-07-12 08:00:19 -07001321 adb ${adbOptions} shell am dumpheap $targetPid $devFile
The Android Open Source Project88b60792009-03-03 19:28:42 -08001322 echo "Press enter when logcat shows \"hprof: heap dump completed\""
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001323 echo -n "> "
1324 read
1325
The Android Open Source Project88b60792009-03-03 19:28:42 -08001326 local localFile=/tmp/$$-hprof
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001327
The Android Open Source Project88b60792009-03-03 19:28:42 -08001328 echo "Retrieving file $devFile..."
1329 adb ${adbOptions} pull $devFile $localFile
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001330
The Android Open Source Project88b60792009-03-03 19:28:42 -08001331 adb ${adbOptions} shell rm $devFile
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001332
The Android Open Source Project88b60792009-03-03 19:28:42 -08001333 echo "Running hat on $localFile"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001334 echo "View the output by pointing your browser at http://localhost:7000/"
1335 echo ""
Dianne Hackborn6e4e1bb2011-11-10 15:19:51 -08001336 hat -JXmx512m $localFile
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001337}
1338
1339function getbugreports()
1340{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001341 local reports=(`adb shell ls /sdcard/bugreports | tr -d '\r'`)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001342
1343 if [ ! "$reports" ]; then
1344 echo "Could not locate any bugreports."
1345 return
1346 fi
1347
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001348 local report
1349 for report in ${reports[@]}
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001350 do
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001351 echo "/sdcard/bugreports/${report}"
1352 adb pull /sdcard/bugreports/${report} ${report}
1353 gunzip ${report}
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001354 done
1355}
1356
Victoria Lease1b296b42012-08-21 15:44:06 -07001357function getsdcardpath()
1358{
1359 adb ${adbOptions} shell echo -n \$\{EXTERNAL_STORAGE\}
1360}
1361
1362function getscreenshotpath()
1363{
1364 echo "$(getsdcardpath)/Pictures/Screenshots"
1365}
1366
1367function getlastscreenshot()
1368{
1369 local screenshot_path=$(getscreenshotpath)
1370 local screenshot=`adb ${adbOptions} ls ${screenshot_path} | grep Screenshot_[0-9-]*.*\.png | sort -rk 3 | cut -d " " -f 4 | head -n 1`
1371 if [ "$screenshot" = "" ]; then
1372 echo "No screenshots found."
1373 return
1374 fi
1375 echo "${screenshot}"
1376 adb ${adbOptions} pull ${screenshot_path}/${screenshot}
1377}
1378
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001379function startviewserver()
1380{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001381 local port=4939
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001382 if [ $# -gt 0 ]; then
1383 port=$1
1384 fi
1385 adb shell service call window 1 i32 $port
1386}
1387
1388function stopviewserver()
1389{
1390 adb shell service call window 2
1391}
1392
1393function isviewserverstarted()
1394{
1395 adb shell service call window 3
1396}
1397
Romain Guyb84049a2010-10-04 16:56:11 -07001398function key_home()
1399{
1400 adb shell input keyevent 3
1401}
1402
1403function key_back()
1404{
1405 adb shell input keyevent 4
1406}
1407
1408function key_menu()
1409{
1410 adb shell input keyevent 82
1411}
1412
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001413function smoketest()
1414{
1415 if [ ! "$ANDROID_PRODUCT_OUT" ]; then
1416 echo "Couldn't locate output files. Try running 'lunch' first." >&2
1417 return
1418 fi
1419 T=$(gettop)
1420 if [ ! "$T" ]; then
1421 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
1422 return
1423 fi
1424
Ying Wang9cd17642012-12-13 10:52:07 -08001425 (\cd "$T" && mmm tests/SmokeTest) &&
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001426 adb uninstall com.android.smoketest > /dev/null &&
1427 adb uninstall com.android.smoketest.tests > /dev/null &&
1428 adb install $ANDROID_PRODUCT_OUT/data/app/SmokeTestApp.apk &&
1429 adb install $ANDROID_PRODUCT_OUT/data/app/SmokeTest.apk &&
1430 adb shell am instrument -w com.android.smoketest.tests/android.test.InstrumentationTestRunner
1431}
1432
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001433# simple shortcut to the runtest command
1434function runtest()
1435{
1436 T=$(gettop)
1437 if [ ! "$T" ]; then
1438 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
1439 return
1440 fi
Brett Chabot3fb149d2009-10-21 20:05:26 -07001441 ("$T"/development/testrunner/runtest.py $@)
Brett Chabot762748c2009-03-27 10:25:11 -07001442}
1443
The Android Open Source Project88b60792009-03-03 19:28:42 -08001444function godir () {
1445 if [[ -z "$1" ]]; then
1446 echo "Usage: godir <regex>"
1447 return
1448 fi
Brian Carlstromb9915a62010-01-29 16:39:32 -08001449 T=$(gettop)
Brian Carlstromf2257422015-09-30 20:28:54 -07001450 if [ ! "$OUT_DIR" = "" ]; then
1451 mkdir -p $OUT_DIR
1452 FILELIST=$OUT_DIR/filelist
1453 else
1454 FILELIST=$T/filelist
1455 fi
1456 if [[ ! -f $FILELIST ]]; then
The Android Open Source Project88b60792009-03-03 19:28:42 -08001457 echo -n "Creating index..."
Brian Carlstromf2257422015-09-30 20:28:54 -07001458 (\cd $T; find . -wholename ./out -prune -o -wholename ./.repo -prune -o -type f > $FILELIST)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001459 echo " Done"
1460 echo ""
1461 fi
1462 local lines
Brian Carlstromf2257422015-09-30 20:28:54 -07001463 lines=($(\grep "$1" $FILELIST | sed -e 's/\/[^/]*$//' | sort | uniq))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001464 if [[ ${#lines[@]} = 0 ]]; then
1465 echo "Not found"
1466 return
1467 fi
1468 local pathname
1469 local choice
1470 if [[ ${#lines[@]} > 1 ]]; then
1471 while [[ -z "$pathname" ]]; do
1472 local index=1
1473 local line
1474 for line in ${lines[@]}; do
1475 printf "%6s %s\n" "[$index]" $line
Doug Zongker29034982011-04-22 08:16:56 -07001476 index=$(($index + 1))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001477 done
1478 echo
1479 echo -n "Select one: "
1480 unset choice
1481 read choice
1482 if [[ $choice -gt ${#lines[@]} || $choice -lt 1 ]]; then
1483 echo "Invalid choice"
1484 continue
1485 fi
Kan-Ru Chen07453762010-07-05 15:53:47 +08001486 pathname=${lines[$(($choice-1))]}
The Android Open Source Project88b60792009-03-03 19:28:42 -08001487 done
1488 else
The Android Open Source Project88b60792009-03-03 19:28:42 -08001489 pathname=${lines[0]}
1490 fi
Ying Wang9cd17642012-12-13 10:52:07 -08001491 \cd $T/$pathname
The Android Open Source Project88b60792009-03-03 19:28:42 -08001492}
1493
Neil Fuller91e012c2015-11-19 15:51:47 +00001494# Force JAVA_HOME to point to java 1.7/1.8 if it isn't already set.
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -05001495function set_java_home() {
Narayan Kamath9260bba2014-01-17 10:05:25 +00001496 # Clear the existing JAVA_HOME value if we set it ourselves, so that
Narayan Kamathc84889b2014-04-01 14:16:26 +01001497 # we can reset it later, depending on the version of java the build
1498 # system needs.
Narayan Kamath9260bba2014-01-17 10:05:25 +00001499 #
1500 # If we don't do this, the JAVA_HOME value set by the first call to
1501 # build/envsetup.sh will persist forever.
1502 if [ -n "$ANDROID_SET_JAVA_HOME" ]; then
1503 export JAVA_HOME=""
1504 fi
1505
Andy McFaddenbd960942010-06-24 12:52:51 -07001506 if [ ! "$JAVA_HOME" ]; then
Neil Fuller1f495b82016-01-25 17:12:41 +00001507 if [ -n "$LEGACY_USE_JAVA7" ]; then
1508 echo Warning: Support for JDK 7 will be dropped. Switch to JDK 8.
Neil Fuller91e012c2015-11-19 15:51:47 +00001509 case `uname -s` in
1510 Darwin)
1511 export JAVA_HOME=$(/usr/libexec/java_home -v 1.7)
1512 ;;
1513 *)
1514 export JAVA_HOME=/usr/lib/jvm/java-7-openjdk-amd64
1515 ;;
1516 esac
1517 else
1518 case `uname -s` in
1519 Darwin)
1520 export JAVA_HOME=$(/usr/libexec/java_home -v 1.8)
1521 ;;
1522 *)
1523 export JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64
1524 ;;
1525 esac
1526 fi
Narayan Kamath9260bba2014-01-17 10:05:25 +00001527
1528 # Keep track of the fact that we set JAVA_HOME ourselves, so that
1529 # we can change it on the next envsetup.sh, if required.
1530 export ANDROID_SET_JAVA_HOME=true
Jeff Hamilton04be0d82010-06-07 15:03:54 -05001531 fi
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -05001532}
Jeff Hamilton04be0d82010-06-07 15:03:54 -05001533
Alex Rayf0d08eb2013-03-08 15:15:06 -08001534# Print colored exit condition
1535function pez {
Michael Wrighteb733842013-03-08 17:34:02 -08001536 "$@"
1537 local retval=$?
1538 if [ $retval -ne 0 ]
1539 then
Jacky Cao89483b82015-05-15 22:12:53 +08001540 echo $'\E'"[0;31mFAILURE\e[00m"
Michael Wrighteb733842013-03-08 17:34:02 -08001541 else
Jacky Cao89483b82015-05-15 22:12:53 +08001542 echo $'\E'"[0;32mSUCCESS\e[00m"
Michael Wrighteb733842013-03-08 17:34:02 -08001543 fi
1544 return $retval
Alex Rayf0d08eb2013-03-08 15:15:06 -08001545}
1546
Ying Wanged21d4c2014-08-24 22:14:19 -07001547function get_make_command()
1548{
1549 echo command make
1550}
1551
Ed Heylcc6be0a2014-06-18 14:55:58 -07001552function make()
1553{
1554 local start_time=$(date +"%s")
Ying Wanged21d4c2014-08-24 22:14:19 -07001555 $(get_make_command) "$@"
Ed Heylcc6be0a2014-06-18 14:55:58 -07001556 local ret=$?
1557 local end_time=$(date +"%s")
1558 local tdiff=$(($end_time-$start_time))
1559 local hours=$(($tdiff / 3600 ))
1560 local mins=$((($tdiff % 3600) / 60))
1561 local secs=$(($tdiff % 60))
Greg Hackmannd95c7f72014-06-23 14:05:06 -07001562 local ncolors=$(tput colors 2>/dev/null)
1563 if [ -n "$ncolors" ] && [ $ncolors -ge 8 ]; then
Jacky Cao89483b82015-05-15 22:12:53 +08001564 color_failed=$'\E'"[0;31m"
1565 color_success=$'\E'"[0;32m"
1566 color_reset=$'\E'"[00m"
Greg Hackmannd95c7f72014-06-23 14:05:06 -07001567 else
1568 color_failed=""
1569 color_success=""
1570 color_reset=""
1571 fi
Ed Heylcc6be0a2014-06-18 14:55:58 -07001572 echo
1573 if [ $ret -eq 0 ] ; then
Jacky Cao89483b82015-05-15 22:12:53 +08001574 echo -n "${color_success}#### make completed successfully "
Ed Heylcc6be0a2014-06-18 14:55:58 -07001575 else
Jacky Cao89483b82015-05-15 22:12:53 +08001576 echo -n "${color_failed}#### make failed to build some targets "
Ed Heylcc6be0a2014-06-18 14:55:58 -07001577 fi
1578 if [ $hours -gt 0 ] ; then
1579 printf "(%02g:%02g:%02g (hh:mm:ss))" $hours $mins $secs
1580 elif [ $mins -gt 0 ] ; then
1581 printf "(%02g:%02g (mm:ss))" $mins $secs
1582 elif [ $secs -gt 0 ] ; then
1583 printf "(%s seconds)" $secs
1584 fi
Jacky Cao89483b82015-05-15 22:12:53 +08001585 echo " ####${color_reset}"
Ed Heylcc6be0a2014-06-18 14:55:58 -07001586 echo
1587 return $ret
1588}
1589
David Zeuthen1b126ff2015-09-30 17:10:48 -04001590function provision()
1591{
1592 if [ ! "$ANDROID_PRODUCT_OUT" ]; then
1593 echo "Couldn't locate output files. Try running 'lunch' first." >&2
1594 return 1
1595 fi
1596 if [ ! -e "$ANDROID_PRODUCT_OUT/provision-device" ]; then
1597 echo "There is no provisioning script for the device." >&2
1598 return 1
1599 fi
1600
1601 # Check if user really wants to do this.
1602 if [ "$1" = "--no-confirmation" ]; then
1603 shift 1
1604 else
1605 echo "This action will reflash your device."
1606 echo ""
1607 echo "ALL DATA ON THE DEVICE WILL BE IRREVOCABLY ERASED."
1608 echo ""
Marie Janssen4afc2c02015-11-10 10:41:15 -08001609 echo -n "Are you sure you want to do this (yes/no)? "
1610 read
David Zeuthen1b126ff2015-09-30 17:10:48 -04001611 if [[ "${REPLY}" != "yes" ]] ; then
1612 echo "Not taking any action. Exiting." >&2
1613 return 1
1614 fi
1615 fi
1616 "$ANDROID_PRODUCT_OUT/provision-device" "$@"
1617}
1618
Raphael Moll70a86b02011-06-20 16:03:14 -07001619if [ "x$SHELL" != "x/bin/bash" ]; then
1620 case `ps -o command -p $$` in
1621 *bash*)
1622 ;;
1623 *)
1624 echo "WARNING: Only bash is supported, use of other shell would lead to erroneous results"
1625 ;;
1626 esac
1627fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001628
1629# Execute the contents of any vendorsetup.sh files we can find.
Oleksiy Avramchenko15760a82014-10-06 18:51:58 +02001630for f in `test -d device && find -L device -maxdepth 4 -name 'vendorsetup.sh' 2> /dev/null | sort` \
Lee Campbell455f6f42015-08-20 13:55:45 -07001631 `test -d vendor && find -L vendor -maxdepth 4 -name 'vendorsetup.sh' 2> /dev/null | sort` \
1632 `test -d product && find -L product -maxdepth 4 -name 'vendorsetup.sh' 2> /dev/null | sort`
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001633do
1634 echo "including $f"
1635 . $f
1636done
1637unset f
Kenny Root52aa81c2011-07-15 11:07:06 -07001638
1639addcompletions