blob: 40f77053574dd34cda1ae78e9cba9e8c052ef848 [file] [log] [blame]
Scott Anderson1a5fc952012-03-07 17:15:06 -08001function hmm() {
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07002cat <<EOF
Jeff Gastonc6dfc4e2017-05-30 17:12:37 -07003
4Run "m help" for help with the build system itself.
5
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08006Invoke ". build/envsetup.sh" from your shell to add the following functions to your environment:
Steven Moreland62054a42018-12-06 10:11:40 -08007- lunch: lunch <product_name>-<build_variant>
8 Selects <product_name> as the product to build, and <build_variant> as the variant to
9 build, and stores those selections in the environment to be read by subsequent
10 invocations of 'm' etc.
11- tapas: tapas [<App1> <App2> ...] [arm|x86|mips|arm64|x86_64|mips64] [eng|userdebug|user]
Anton Hanssonece9c482019-02-04 18:15:39 +000012- croot: Changes directory to the top of the tree, or a subdirectory thereof.
Steven Moreland62054a42018-12-06 10:11:40 -080013- m: Makes from the top of the tree.
14- mm: Builds all of the modules in the current directory, but not their dependencies.
15- mmm: Builds all of the modules in the supplied directories, but not their dependencies.
16 To limit the modules being built use the syntax: mmm dir/:target1,target2.
17- mma: Builds all of the modules in the current directory, and their dependencies.
18- mmma: Builds all of the modules in the supplied directories, and their dependencies.
19- provision: Flash device with all required partitions. Options will be passed on to fastboot.
20- cgrep: Greps on all local C/C++ files.
21- ggrep: Greps on all local Gradle files.
22- jgrep: Greps on all local Java files.
23- resgrep: Greps on all local res/*.xml files.
24- mangrep: Greps on all local AndroidManifest.xml files.
Jaewoong Jung892d0fe2019-05-04 10:06:28 -070025- mgrep: Greps on all local Makefiles and *.bp files.
Jeff Sharkeyf17cddf2019-08-21 12:51:26 -060026- owngrep: Greps on all local OWNERS files.
Steven Moreland62054a42018-12-06 10:11:40 -080027- sepgrep: Greps on all local sepolicy files.
28- sgrep: Greps on all local source files.
29- godir: Go to the directory containing a file.
30- allmod: List all modules.
31- gomod: Go to the directory containing a module.
Rett Berg78d1c932019-01-24 14:34:23 -080032- pathmod: Get the directory containing a module.
Steven Moreland62054a42018-12-06 10:11:40 -080033- refreshmod: Refresh list of modules for allmod/gomod.
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070034
Roland Levillain39341922015-10-20 12:48:19 +010035Environment options:
Dan Albert4ae5d4b2014-10-31 16:23:08 -070036- SANITIZE_HOST: Set to 'true' to use ASAN for all host modules. Note that
37 ASAN_OPTIONS=detect_leaks=0 will be set by default until the
38 build is leak-check clean.
Sasha Smundak9f27cc02019-01-31 13:25:31 -080039- ANDROID_QUIET_BUILD: set to 'true' to display only the essential messages.
Dan Albert4ae5d4b2014-10-31 16:23:08 -070040
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070041Look at the source to view more functions. The complete list is:
42EOF
Christopher Ferris55257d22017-03-23 11:08:58 -070043 local T=$(gettop)
44 local A=""
45 local i
Jacky Cao89483b82015-05-15 22:12:53 +080046 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 -070047 A="$A $i"
48 done
49 echo $A
50}
51
Ying Wang08800fd2016-03-03 20:57:21 -080052# Get all the build variables needed by this script in a single call to the build system.
53function build_build_var_cache()
54{
Christopher Ferris55257d22017-03-23 11:08:58 -070055 local T=$(gettop)
Ying Wang08800fd2016-03-03 20:57:21 -080056 # Grep out the variable names from the script.
Jim Tanga881a252018-06-19 16:34:41 +080057 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' ' '`)
58 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' ' '`)
Ying Wang08800fd2016-03-03 20:57:21 -080059 # Call the build system to dump the "<val>=<value>" pairs as a shell script.
Steven Moreland05402962018-01-05 12:13:11 -080060 build_dicts_script=`\builtin cd $T; build/soong/soong_ui.bash --dumpvars-mode \
Jim Tanga881a252018-06-19 16:34:41 +080061 --vars="${cached_vars[*]}" \
62 --abs-vars="${cached_abs_vars[*]}" \
Dan Willemsenaf88c412017-07-14 11:29:44 -070063 --var-prefix=var_cache_ \
64 --abs-var-prefix=abs_var_cache_`
Ying Wang08800fd2016-03-03 20:57:21 -080065 local ret=$?
66 if [ $ret -ne 0 ]
67 then
68 unset build_dicts_script
69 return $ret
70 fi
Dan Willemsenaf88c412017-07-14 11:29:44 -070071 # Execute the script to store the "<val>=<value>" pairs as shell variables.
Ying Wang08800fd2016-03-03 20:57:21 -080072 eval "$build_dicts_script"
Ying Wang08800fd2016-03-03 20:57:21 -080073 ret=$?
Ying Wangf0cb3972016-03-04 13:56:23 -080074 unset build_dicts_script
Ying Wang08800fd2016-03-03 20:57:21 -080075 if [ $ret -ne 0 ]
76 then
77 return $ret
78 fi
79 BUILD_VAR_CACHE_READY="true"
80}
81
Ying Wangf0cb3972016-03-04 13:56:23 -080082# Delete the build var cache, so that we can still call into the build system
Ying Wang08800fd2016-03-03 20:57:21 -080083# to get build variables not listed in this script.
84function destroy_build_var_cache()
85{
86 unset BUILD_VAR_CACHE_READY
Christopher Ferris55257d22017-03-23 11:08:58 -070087 local v
Ying Wang08800fd2016-03-03 20:57:21 -080088 for v in $cached_vars; do
89 unset var_cache_$v
90 done
91 unset cached_vars
92 for v in $cached_abs_vars; do
93 unset abs_var_cache_$v
94 done
95 unset cached_abs_vars
96}
97
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070098# Get the value of a build variable as an absolute path.
99function get_abs_build_var()
100{
Ying Wang08800fd2016-03-03 20:57:21 -0800101 if [ "$BUILD_VAR_CACHE_READY" = "true" ]
102 then
Vishwath Mohan7d35f002016-03-11 10:00:40 -0800103 eval "echo \"\${abs_var_cache_$1}\""
Ying Wang08800fd2016-03-03 20:57:21 -0800104 return
105 fi
106
Christopher Ferris55257d22017-03-23 11:08:58 -0700107 local T=$(gettop)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700108 if [ ! "$T" ]; then
109 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
110 return
111 fi
Dan Willemsenaf88c412017-07-14 11:29:44 -0700112 (\cd $T; build/soong/soong_ui.bash --dumpvar-mode --abs $1)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700113}
114
115# Get the exact value of a build variable.
116function get_build_var()
117{
Ying Wang08800fd2016-03-03 20:57:21 -0800118 if [ "$BUILD_VAR_CACHE_READY" = "true" ]
119 then
Vishwath Mohan7d35f002016-03-11 10:00:40 -0800120 eval "echo \"\${var_cache_$1}\""
Ying Wang08800fd2016-03-03 20:57:21 -0800121 return
122 fi
123
Christopher Ferris55257d22017-03-23 11:08:58 -0700124 local T=$(gettop)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700125 if [ ! "$T" ]; then
126 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
127 return
128 fi
Dan Willemsenaf88c412017-07-14 11:29:44 -0700129 (\cd $T; build/soong/soong_ui.bash --dumpvar-mode $1)
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800130}
131
132# check to see if the supplied product is one we can build
133function check_product()
134{
Christopher Ferris55257d22017-03-23 11:08:58 -0700135 local T=$(gettop)
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800136 if [ ! "$T" ]; then
137 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
138 return
139 fi
Jeff Browne33ba4c2011-07-11 22:11:46 -0700140 TARGET_PRODUCT=$1 \
141 TARGET_BUILD_VARIANT= \
142 TARGET_BUILD_TYPE= \
Joe Onoratoda12daf2010-06-09 18:18:31 -0700143 TARGET_BUILD_APPS= \
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800144 get_build_var TARGET_DEVICE > /dev/null
145 # hide successful answers, but allow the errors to show
146}
147
148VARIANT_CHOICES=(user userdebug eng)
149
150# check to see if the supplied variant is valid
151function check_variant()
152{
Christopher Ferris55257d22017-03-23 11:08:58 -0700153 local v
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800154 for v in ${VARIANT_CHOICES[@]}
155 do
156 if [ "$v" = "$1" ]
157 then
158 return 0
159 fi
160 done
161 return 1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700162}
163
164function setpaths()
165{
Christopher Ferris55257d22017-03-23 11:08:58 -0700166 local T=$(gettop)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700167 if [ ! "$T" ]; then
168 echo "Couldn't locate the top of the tree. Try setting TOP."
169 return
170 fi
171
172 ##################################################################
173 # #
174 # Read me before you modify this code #
175 # #
176 # This function sets ANDROID_BUILD_PATHS to what it is adding #
177 # to PATH, and the next time it is run, it removes that from #
178 # PATH. This is required so lunch can be run more than once #
179 # and still have working paths. #
180 # #
181 ##################################################################
182
Raphael Mollc639c782011-06-20 17:25:01 -0700183 # Note: on windows/cygwin, ANDROID_BUILD_PATHS will contain spaces
184 # due to "C:\Program Files" being in the path.
185
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700186 # out with the old
Raphael Mollc639c782011-06-20 17:25:01 -0700187 if [ -n "$ANDROID_BUILD_PATHS" ] ; then
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700188 export PATH=${PATH/$ANDROID_BUILD_PATHS/}
189 fi
Raphael Mollc639c782011-06-20 17:25:01 -0700190 if [ -n "$ANDROID_PRE_BUILD_PATHS" ] ; then
Doug Zongker29034982011-04-22 08:16:56 -0700191 export PATH=${PATH/$ANDROID_PRE_BUILD_PATHS/}
Ying Wangaa1c9b52012-11-26 20:51:59 -0800192 # strip leading ':', if any
193 export PATH=${PATH/:%/}
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500194 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700195
196 # and in with the new
Christopher Ferris55257d22017-03-23 11:08:58 -0700197 local prebuiltdir=$(getprebuilt)
198 local gccprebuiltdir=$(get_abs_build_var ANDROID_GCC_PREBUILTS)
Raphael732936d2011-06-22 14:35:32 -0700199
Ben Cheng8bc4c432012-11-16 13:29:13 -0800200 # defined in core/config.mk
Christopher Ferris55257d22017-03-23 11:08:58 -0700201 local targetgccversion=$(get_build_var TARGET_GCC_VERSION)
202 local targetgccversion2=$(get_build_var 2ND_TARGET_GCC_VERSION)
Ben Cheng15266702012-12-10 16:04:39 -0800203 export TARGET_GCC_VERSION=$targetgccversion
Ben Cheng8bc4c432012-11-16 13:29:13 -0800204
Raphael Mollc639c782011-06-20 17:25:01 -0700205 # The gcc toolchain does not exists for windows/cygwin. In this case, do not reference it.
Ben Chengfba67bf2014-02-25 10:27:07 -0800206 export ANDROID_TOOLCHAIN=
207 export ANDROID_TOOLCHAIN_2ND_ARCH=
David 'Digit' Turner2056c252012-04-17 14:50:47 +0200208 local ARCH=$(get_build_var TARGET_ARCH)
Christopher Ferris55257d22017-03-23 11:08:58 -0700209 local toolchaindir toolchaindir2=
David 'Digit' Turner2056c252012-04-17 14:50:47 +0200210 case $ARCH in
Pavel Chupinc1a56642013-08-23 16:49:21 +0400211 x86) toolchaindir=x86/x86_64-linux-android-$targetgccversion/bin
Mark D Horn7d0ede72012-03-14 14:20:30 -0700212 ;;
Pavel Chupinfd82a492012-11-26 09:50:07 +0400213 x86_64) toolchaindir=x86/x86_64-linux-android-$targetgccversion/bin
214 ;;
Ben Cheng8bc4c432012-11-16 13:29:13 -0800215 arm) toolchaindir=arm/arm-linux-androideabi-$targetgccversion/bin
David 'Digit' Turner2056c252012-04-17 14:50:47 +0200216 ;;
Ben Chengfba67bf2014-02-25 10:27:07 -0800217 arm64) toolchaindir=aarch64/aarch64-linux-android-$targetgccversion/bin;
Colin Cross03b424a2014-05-22 11:57:43 -0700218 toolchaindir2=arm/arm-linux-androideabi-$targetgccversion2/bin
Ben Chengdb4fc202013-10-04 16:02:59 -0700219 ;;
Duane Sand3c4fcd82014-07-22 14:34:00 -0700220 mips|mips64) toolchaindir=mips/mips64el-linux-android-$targetgccversion/bin
Serban Constantinescu9b68fb22014-01-14 10:33:53 +0000221 ;;
David 'Digit' Turner2056c252012-04-17 14:50:47 +0200222 *)
223 echo "Can't find toolchain for unknown architecture: $ARCH"
224 toolchaindir=xxxxxxxxx
Mark D Horn7d0ede72012-03-14 14:20:30 -0700225 ;;
226 esac
Jing Yuf5172c72012-03-29 20:45:50 -0700227 if [ -d "$gccprebuiltdir/$toolchaindir" ]; then
Ben Chengfba67bf2014-02-25 10:27:07 -0800228 export ANDROID_TOOLCHAIN=$gccprebuiltdir/$toolchaindir
Raphael Mollc639c782011-06-20 17:25:01 -0700229 fi
Raphael732936d2011-06-22 14:35:32 -0700230
Christopher Ferris55257d22017-03-23 11:08:58 -0700231 if [ "$toolchaindir2" -a -d "$gccprebuiltdir/$toolchaindir2" ]; then
Ben Chengfba67bf2014-02-25 10:27:07 -0800232 export ANDROID_TOOLCHAIN_2ND_ARCH=$gccprebuiltdir/$toolchaindir2
233 fi
234
Jeff Vander Stoep5f50f052015-06-12 09:56:39 -0700235 export ANDROID_DEV_SCRIPTS=$T/development/scripts:$T/prebuilts/devtools/tools:$T/external/selinux/prebuilts/bin
Yueyao Zhuefc786a2017-04-07 14:11:54 -0700236
237 # add kernel specific binaries
238 case $(uname -s) in
239 Linux)
240 export ANDROID_DEV_SCRIPTS=$ANDROID_DEV_SCRIPTS:$T/prebuilts/misc/linux-x86/dtc:$T/prebuilts/misc/linux-x86/libufdt
241 ;;
242 *)
243 ;;
244 esac
245
Torne (Richard Coles)0091bae2017-10-03 16:31:18 -0400246 ANDROID_BUILD_PATHS=$(get_build_var ANDROID_BUILD_PATHS):$ANDROID_TOOLCHAIN
247 if [ -n "$ANDROID_TOOLCHAIN_2ND_ARCH" ]; then
248 ANDROID_BUILD_PATHS=$ANDROID_BUILD_PATHS:$ANDROID_TOOLCHAIN_2ND_ARCH
249 fi
Yi Kongdfd00b12019-05-21 16:00:04 -0700250 ANDROID_BUILD_PATHS=$ANDROID_BUILD_PATHS:$ANDROID_DEV_SCRIPTS
251
252 # Append llvm binutils prebuilts path to ANDROID_BUILD_PATHS.
253 local ANDROID_LLVM_BINUTILS=$(get_abs_build_var ANDROID_CLANG_PREBUILTS)/llvm-binutils-stable
254 ANDROID_BUILD_PATHS=$ANDROID_BUILD_PATHS:$ANDROID_LLVM_BINUTILS
David 'Digit' Turner94d16e52014-05-05 16:13:50 +0200255
256 # If prebuilts/android-emulator/<system>/ exists, prepend it to our PATH
257 # to ensure that the corresponding 'emulator' binaries are used.
258 case $(uname -s) in
259 Darwin)
260 ANDROID_EMULATOR_PREBUILTS=$T/prebuilts/android-emulator/darwin-x86_64
261 ;;
262 Linux)
263 ANDROID_EMULATOR_PREBUILTS=$T/prebuilts/android-emulator/linux-x86_64
264 ;;
265 *)
266 ANDROID_EMULATOR_PREBUILTS=
267 ;;
268 esac
269 if [ -n "$ANDROID_EMULATOR_PREBUILTS" -a -d "$ANDROID_EMULATOR_PREBUILTS" ]; then
Yi Kongdfd00b12019-05-21 16:00:04 -0700270 ANDROID_BUILD_PATHS=$ANDROID_BUILD_PATHS:$ANDROID_EMULATOR_PREBUILTS
David 'Digit' Turner94d16e52014-05-05 16:13:50 +0200271 export ANDROID_EMULATOR_PREBUILTS
272 fi
273
Jim Tangb3fda302018-12-22 10:24:55 +0800274 # Append asuite prebuilts path to ANDROID_BUILD_PATHS.
275 local os_arch=$(get_build_var HOST_PREBUILT_TAG)
Ryan Prichard8426a192019-07-15 18:05:29 -0700276 local ACLOUD_PATH="$T/prebuilts/asuite/acloud/$os_arch"
277 local AIDEGEN_PATH="$T/prebuilts/asuite/aidegen/$os_arch"
278 local ATEST_PATH="$T/prebuilts/asuite/atest/$os_arch"
279 export ANDROID_BUILD_PATHS=$ANDROID_BUILD_PATHS:$ACLOUD_PATH:$AIDEGEN_PATH:$ATEST_PATH:
Jim Tangb3fda302018-12-22 10:24:55 +0800280
Ryan Prichard8426a192019-07-15 18:05:29 -0700281 export PATH=$ANDROID_BUILD_PATHS$PATH
Jim Tang22f4c322018-12-17 15:21:53 +0800282
283 # out with the duplicate old
284 if [ -n $ANDROID_PYTHONPATH ]; then
285 export PYTHONPATH=${PYTHONPATH//$ANDROID_PYTHONPATH/}
286 fi
287 # and in with the new
288 export ANDROID_PYTHONPATH=$T/development/python-packages:
Jim Tangc4dba1d2019-07-25 16:54:27 +0800289 if [ -n $VENDOR_PYTHONPATH ]; then
290 ANDROID_PYTHONPATH=$ANDROID_PYTHONPATH$VENDOR_PYTHONPATH
291 fi
Jim Tang22f4c322018-12-17 15:21:53 +0800292 export PYTHONPATH=$ANDROID_PYTHONPATH$PYTHONPATH
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800293
Colin Crosse97e6932017-06-30 16:01:45 -0700294 export ANDROID_JAVA_HOME=$(get_abs_build_var ANDROID_JAVA_HOME)
295 export JAVA_HOME=$ANDROID_JAVA_HOME
296 export ANDROID_JAVA_TOOLCHAIN=$(get_abs_build_var ANDROID_JAVA_TOOLCHAIN)
297 export ANDROID_PRE_BUILD_PATHS=$ANDROID_JAVA_TOOLCHAIN:
298 export PATH=$ANDROID_PRE_BUILD_PATHS$PATH
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500299
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800300 unset ANDROID_PRODUCT_OUT
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700301 export ANDROID_PRODUCT_OUT=$(get_abs_build_var PRODUCT_OUT)
302 export OUT=$ANDROID_PRODUCT_OUT
303
Jeff Brown8fd5cce2011-03-24 17:03:06 -0700304 unset ANDROID_HOST_OUT
305 export ANDROID_HOST_OUT=$(get_abs_build_var HOST_OUT)
306
Simran Basidd050ed2017-02-13 13:46:48 -0800307 unset ANDROID_HOST_OUT_TESTCASES
308 export ANDROID_HOST_OUT_TESTCASES=$(get_abs_build_var HOST_OUT_TESTCASES)
309
310 unset ANDROID_TARGET_OUT_TESTCASES
311 export ANDROID_TARGET_OUT_TESTCASES=$(get_abs_build_var TARGET_OUT_TESTCASES)
312
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800313 # needed for building linux on MacOS
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700314 # TODO: fix the path
315 #export HOST_EXTRACFLAGS="-I "$T/system/kernel_headers/host_include
316}
317
318function printconfig()
319{
Christopher Ferris55257d22017-03-23 11:08:58 -0700320 local T=$(gettop)
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800321 if [ ! "$T" ]; then
322 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
323 return
324 fi
325 get_build_var report_config
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700326}
327
328function set_stuff_for_environment()
329{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800330 setpaths
331 set_sequence_number
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700332
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800333 export ANDROID_BUILD_TOP=$(gettop)
Ben Chengaac3f812013-08-13 14:38:15 -0700334 # With this environment variable new GCC can apply colors to warnings/errors
335 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 -0700336 export ASAN_OPTIONS=detect_leaks=0
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700337}
338
339function set_sequence_number()
340{
Colin Cross88737132017-03-21 17:41:03 -0700341 export BUILD_ENV_SEQUENCE_NUMBER=13
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700342}
343
Makoto Onukida971062018-06-18 10:15:19 -0700344# Takes a command name, and check if it's in ENVSETUP_NO_COMPLETION or not.
345function should_add_completion() {
Jim Tanga881a252018-06-19 16:34:41 +0800346 local cmd="$(basename $1| sed 's/_completion//' |sed 's/\.\(.*\)*sh$//')"
Makoto Onukida971062018-06-18 10:15:19 -0700347 case :"$ENVSETUP_NO_COMPLETION": in
Jim Tanga881a252018-06-19 16:34:41 +0800348 *:"$cmd":*)
349 return 1
350 ;;
Makoto Onukida971062018-06-18 10:15:19 -0700351 esac
352 return 0
353}
354
Kenny Root52aa81c2011-07-15 11:07:06 -0700355function addcompletions()
356{
357 local T dir f
358
Jim Tanga881a252018-06-19 16:34:41 +0800359 # Keep us from trying to run in something that's neither bash nor zsh.
360 if [ -z "$BASH_VERSION" -a -z "$ZSH_VERSION" ]; then
Kenny Root52aa81c2011-07-15 11:07:06 -0700361 return
362 fi
363
364 # Keep us from trying to run in bash that's too old.
Jim Tanga881a252018-06-19 16:34:41 +0800365 if [ -n "$BASH_VERSION" -a ${BASH_VERSINFO[0]} -lt 3 ]; then
Kenny Root52aa81c2011-07-15 11:07:06 -0700366 return
367 fi
368
Jim Tanga881a252018-06-19 16:34:41 +0800369 local completion_files=(
370 system/core/adb/adb.bash
371 system/core/fastboot/fastboot.bash
Jim Tangb3fda302018-12-22 10:24:55 +0800372 tools/asuite/asuite.sh
Jim Tanga881a252018-06-19 16:34:41 +0800373 )
Makoto Onukida971062018-06-18 10:15:19 -0700374 # Completion can be disabled selectively to allow users to use non-standard completion.
375 # e.g.
376 # ENVSETUP_NO_COMPLETION=adb # -> disable adb completion
377 # ENVSETUP_NO_COMPLETION=adb:bit # -> disable adb and bit completion
Jim Tanga881a252018-06-19 16:34:41 +0800378 for f in ${completion_files[*]}; do
379 if [ -f "$f" ] && should_add_completion "$f"; then
Kenny Root52aa81c2011-07-15 11:07:06 -0700380 . $f
Elliott Hughesce18dd42018-04-03 13:49:48 -0700381 fi
382 done
Joe Onorato002a6c72016-10-20 16:39:49 -0700383
Makoto Onukida971062018-06-18 10:15:19 -0700384 if should_add_completion bit ; then
385 complete -C "bit --tab" bit
386 fi
Anton Hanssonece9c482019-02-04 18:15:39 +0000387 if [ -z "$ZSH_VERSION" ]; then
388 # Doesn't work in zsh.
389 complete -o nospace -F _croot croot
390 fi
Jim Tanga881a252018-06-19 16:34:41 +0800391 complete -F _lunch lunch
Steven Moreland62054a42018-12-06 10:11:40 -0800392
dimitry73b84812018-12-11 18:06:00 +0100393 complete -F _complete_android_module_names gomod
394 complete -F _complete_android_module_names m
Kenny Root52aa81c2011-07-15 11:07:06 -0700395}
396
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700397function choosetype()
398{
399 echo "Build type choices are:"
400 echo " 1. release"
401 echo " 2. debug"
402 echo
403
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800404 local DEFAULT_NUM DEFAULT_VALUE
Jeff Browne33ba4c2011-07-11 22:11:46 -0700405 DEFAULT_NUM=1
406 DEFAULT_VALUE=release
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700407
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800408 export TARGET_BUILD_TYPE=
409 local ANSWER
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700410 while [ -z $TARGET_BUILD_TYPE ]
411 do
412 echo -n "Which would you like? ["$DEFAULT_NUM"] "
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800413 if [ -z "$1" ] ; then
414 read ANSWER
415 else
416 echo $1
417 ANSWER=$1
418 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700419 case $ANSWER in
420 "")
421 export TARGET_BUILD_TYPE=$DEFAULT_VALUE
422 ;;
423 1)
424 export TARGET_BUILD_TYPE=release
425 ;;
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800426 release)
427 export TARGET_BUILD_TYPE=release
428 ;;
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700429 2)
430 export TARGET_BUILD_TYPE=debug
431 ;;
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800432 debug)
433 export TARGET_BUILD_TYPE=debug
434 ;;
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700435 *)
436 echo
437 echo "I didn't understand your response. Please try again."
438 echo
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700439 ;;
440 esac
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800441 if [ -n "$1" ] ; then
442 break
443 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700444 done
445
Ying Wang08800fd2016-03-03 20:57:21 -0800446 build_build_var_cache
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700447 set_stuff_for_environment
Ying Wang08800fd2016-03-03 20:57:21 -0800448 destroy_build_var_cache
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700449}
450
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800451#
452# This function isn't really right: It chooses a TARGET_PRODUCT
453# based on the list of boards. Usually, that gets you something
454# that kinda works with a generic product, but really, you should
455# pick a product by name.
456#
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700457function chooseproduct()
458{
Christopher Ferris55257d22017-03-23 11:08:58 -0700459 local default_value
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700460 if [ "x$TARGET_PRODUCT" != x ] ; then
461 default_value=$TARGET_PRODUCT
462 else
Ying Wang0a76df52015-06-08 11:57:26 -0700463 default_value=aosp_arm
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700464 fi
465
Ying Wang08800fd2016-03-03 20:57:21 -0800466 export TARGET_BUILD_APPS=
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800467 export TARGET_PRODUCT=
468 local ANSWER
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700469 while [ -z "$TARGET_PRODUCT" ]
470 do
Joe Onorato8849aed2009-04-29 15:56:47 -0700471 echo -n "Which product would you like? [$default_value] "
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800472 if [ -z "$1" ] ; then
473 read ANSWER
474 else
475 echo $1
476 ANSWER=$1
477 fi
478
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700479 if [ -z "$ANSWER" ] ; then
480 export TARGET_PRODUCT=$default_value
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800481 else
482 if check_product $ANSWER
483 then
484 export TARGET_PRODUCT=$ANSWER
485 else
486 echo "** Not a valid product: $ANSWER"
487 fi
488 fi
489 if [ -n "$1" ] ; then
490 break
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700491 fi
492 done
493
Ying Wang08800fd2016-03-03 20:57:21 -0800494 build_build_var_cache
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700495 set_stuff_for_environment
Ying Wang08800fd2016-03-03 20:57:21 -0800496 destroy_build_var_cache
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700497}
498
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800499function choosevariant()
500{
501 echo "Variant choices are:"
502 local index=1
503 local v
504 for v in ${VARIANT_CHOICES[@]}
505 do
506 # The product name is the name of the directory containing
507 # the makefile we found, above.
508 echo " $index. $v"
509 index=$(($index+1))
510 done
511
512 local default_value=eng
513 local ANSWER
514
515 export TARGET_BUILD_VARIANT=
516 while [ -z "$TARGET_BUILD_VARIANT" ]
517 do
518 echo -n "Which would you like? [$default_value] "
519 if [ -z "$1" ] ; then
520 read ANSWER
521 else
522 echo $1
523 ANSWER=$1
524 fi
525
526 if [ -z "$ANSWER" ] ; then
527 export TARGET_BUILD_VARIANT=$default_value
528 elif (echo -n $ANSWER | grep -q -e "^[0-9][0-9]*$") ; then
529 if [ "$ANSWER" -le "${#VARIANT_CHOICES[@]}" ] ; then
Kan-Ru Chen07453762010-07-05 15:53:47 +0800530 export TARGET_BUILD_VARIANT=${VARIANT_CHOICES[$(($ANSWER-1))]}
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800531 fi
532 else
533 if check_variant $ANSWER
534 then
535 export TARGET_BUILD_VARIANT=$ANSWER
536 else
537 echo "** Not a valid variant: $ANSWER"
538 fi
539 fi
540 if [ -n "$1" ] ; then
541 break
542 fi
543 done
544}
545
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700546function choosecombo()
547{
Jeff Browne33ba4c2011-07-11 22:11:46 -0700548 choosetype $1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700549
550 echo
551 echo
Jeff Browne33ba4c2011-07-11 22:11:46 -0700552 chooseproduct $2
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700553
554 echo
555 echo
Jeff Browne33ba4c2011-07-11 22:11:46 -0700556 choosevariant $3
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800557
558 echo
Ying Wang08800fd2016-03-03 20:57:21 -0800559 build_build_var_cache
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700560 set_stuff_for_environment
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800561 printconfig
Ying Wang08800fd2016-03-03 20:57:21 -0800562 destroy_build_var_cache
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700563}
564
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800565function add_lunch_combo()
566{
Dan Willemsen5436c7e2019-02-11 21:31:47 -0800567 if [ -n "$ZSH_VERSION" ]; then
568 echo -n "${funcfiletrace[1]}: "
569 else
570 echo -n "${BASH_SOURCE[1]}:${BASH_LINENO[0]}: "
571 fi
572 echo "add_lunch_combo is obsolete. Use COMMON_LUNCH_CHOICES in your AndroidProducts.mk instead."
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800573}
574
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700575function print_lunch_menu()
576{
577 local uname=$(uname)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700578 echo
579 echo "You're building on" $uname
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700580 echo
581 echo "Lunch menu... pick a combo:"
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800582
583 local i=1
584 local choice
Dan Willemsen5436c7e2019-02-11 21:31:47 -0800585 for choice in $(TARGET_BUILD_APPS= get_build_var COMMON_LUNCH_CHOICES)
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800586 do
587 echo " $i. $choice"
588 i=$(($i+1))
589 done
590
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700591 echo
592}
593
594function lunch()
595{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800596 local answer
597
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700598 if [ "$1" ] ; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800599 answer=$1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700600 else
601 print_lunch_menu
Jean-Baptiste Queru324c1232013-03-22 15:53:54 -0700602 echo -n "Which would you like? [aosp_arm-eng] "
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800603 read answer
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700604 fi
605
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800606 local selection=
607
608 if [ -z "$answer" ]
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700609 then
Jean-Baptiste Queru324c1232013-03-22 15:53:54 -0700610 selection=aosp_arm-eng
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800611 elif (echo -n $answer | grep -q -e "^[0-9][0-9]*$")
612 then
Dan Willemsen5436c7e2019-02-11 21:31:47 -0800613 local choices=($(TARGET_BUILD_APPS= get_build_var COMMON_LUNCH_CHOICES))
Dan Willemsenaf2e1f82018-04-04 15:41:41 -0700614 if [ $answer -le ${#choices[@]} ]
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800615 then
Jim Tang0e3397b2018-10-03 18:25:50 +0800616 # array in zsh starts from 1 instead of 0.
617 if [ -n "$ZSH_VERSION" ]
618 then
619 selection=${choices[$(($answer))]}
620 else
621 selection=${choices[$(($answer-1))]}
622 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800623 fi
Colin Cross88737132017-03-21 17:41:03 -0700624 else
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800625 selection=$answer
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700626 fi
627
Joe Onoratoda12daf2010-06-09 18:18:31 -0700628 export TARGET_BUILD_APPS=
629
Colin Cross88737132017-03-21 17:41:03 -0700630 local product variant_and_version variant version
631
632 product=${selection%%-*} # Trim everything after first dash
633 variant_and_version=${selection#*-} # Trim everything up to first dash
634 if [ "$variant_and_version" != "$selection" ]; then
635 variant=${variant_and_version%%-*}
636 if [ "$variant" != "$variant_and_version" ]; then
637 version=${variant_and_version#*-}
638 fi
Jeff Browne33ba4c2011-07-11 22:11:46 -0700639 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800640
Colin Cross88737132017-03-21 17:41:03 -0700641 if [ -z "$product" ]
Ying Wang08800fd2016-03-03 20:57:21 -0800642 then
643 echo
Colin Cross88737132017-03-21 17:41:03 -0700644 echo "Invalid lunch combo: $selection"
Jeff Browne33ba4c2011-07-11 22:11:46 -0700645 return 1
646 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800647
Colin Cross88737132017-03-21 17:41:03 -0700648 TARGET_PRODUCT=$product \
649 TARGET_BUILD_VARIANT=$variant \
650 TARGET_PLATFORM_VERSION=$version \
651 build_build_var_cache
652 if [ $? -ne 0 ]
653 then
654 return 1
655 fi
656
657 export TARGET_PRODUCT=$(get_build_var TARGET_PRODUCT)
658 export TARGET_BUILD_VARIANT=$(get_build_var TARGET_BUILD_VARIANT)
Colin Crossb105e362017-05-01 14:21:28 -0700659 if [ -n "$version" ]; then
660 export TARGET_PLATFORM_VERSION=$(get_build_var TARGET_PLATFORM_VERSION)
661 else
662 unset TARGET_PLATFORM_VERSION
663 fi
Jeff Browne33ba4c2011-07-11 22:11:46 -0700664 export TARGET_BUILD_TYPE=release
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700665
666 echo
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800667
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700668 set_stuff_for_environment
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800669 printconfig
Ying Wang08800fd2016-03-03 20:57:21 -0800670 destroy_build_var_cache
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700671}
672
Dan Willemsenaf2e1f82018-04-04 15:41:41 -0700673unset COMMON_LUNCH_CHOICES_CACHE
Jeff Davidson513d7a42010-08-02 10:00:44 -0700674# Tab completion for lunch.
675function _lunch()
676{
677 local cur prev opts
678 COMPREPLY=()
679 cur="${COMP_WORDS[COMP_CWORD]}"
680 prev="${COMP_WORDS[COMP_CWORD-1]}"
681
Dan Willemsenaf2e1f82018-04-04 15:41:41 -0700682 if [ -z "$COMMON_LUNCH_CHOICES_CACHE" ]; then
Dan Willemsen5436c7e2019-02-11 21:31:47 -0800683 COMMON_LUNCH_CHOICES_CACHE=$(TARGET_BUILD_APPS= get_build_var COMMON_LUNCH_CHOICES)
Dan Willemsenaf2e1f82018-04-04 15:41:41 -0700684 fi
685
686 COMPREPLY=( $(compgen -W "${COMMON_LUNCH_CHOICES_CACHE}" -- ${cur}) )
Jeff Davidson513d7a42010-08-02 10:00:44 -0700687 return 0
688}
Jeff Davidson513d7a42010-08-02 10:00:44 -0700689
Joe Onoratoda12daf2010-06-09 18:18:31 -0700690# Configures the build to build unbundled apps.
Doug Zongker0d8179e2014-04-16 11:34:34 -0700691# Run tapas with one or more app names (from LOCAL_PACKAGE_NAME)
Joe Onoratoda12daf2010-06-09 18:18:31 -0700692function tapas()
693{
Jeff Gaston9fb05d82017-08-21 18:27:00 -0700694 local showHelp="$(echo $* | xargs -n 1 echo | \grep -E '^(help)$' | xargs)"
Dan Willemsendd3a2732018-01-08 15:26:16 -0800695 local arch="$(echo $* | xargs -n 1 echo | \grep -E '^(arm|x86|mips|arm64|x86_64|mips64)$' | xargs)"
Doug Zongker0d8179e2014-04-16 11:34:34 -0700696 local variant="$(echo $* | xargs -n 1 echo | \grep -E '^(user|userdebug|eng)$' | xargs)"
Jeff Hamilton5069bd62014-09-04 21:28:00 -0700697 local density="$(echo $* | xargs -n 1 echo | \grep -E '^(ldpi|mdpi|tvdpi|hdpi|xhdpi|xxhdpi|xxxhdpi|alldpi)$' | xargs)"
Dan Willemsendd3a2732018-01-08 15:26:16 -0800698 local apps="$(echo $* | xargs -n 1 echo | \grep -E -v '^(user|userdebug|eng|arm|x86|mips|arm64|x86_64|mips64|ldpi|mdpi|tvdpi|hdpi|xhdpi|xxhdpi|xxxhdpi|alldpi)$' | xargs)"
Joe Onoratoda12daf2010-06-09 18:18:31 -0700699
Jeff Gaston9fb05d82017-08-21 18:27:00 -0700700 if [ "$showHelp" != "" ]; then
701 $(gettop)/build/make/tapasHelp.sh
702 return
703 fi
704
Ying Wang67f02922012-08-22 10:25:20 -0700705 if [ $(echo $arch | wc -w) -gt 1 ]; then
706 echo "tapas: Error: Multiple build archs supplied: $arch"
707 return
708 fi
Joe Onoratoda12daf2010-06-09 18:18:31 -0700709 if [ $(echo $variant | wc -w) -gt 1 ]; then
710 echo "tapas: Error: Multiple build variants supplied: $variant"
711 return
712 fi
Jeff Hamilton5069bd62014-09-04 21:28:00 -0700713 if [ $(echo $density | wc -w) -gt 1 ]; then
714 echo "tapas: Error: Multiple densities supplied: $density"
715 return
716 fi
Ying Wang67f02922012-08-22 10:25:20 -0700717
Ying Wang0a76df52015-06-08 11:57:26 -0700718 local product=aosp_arm
Ying Wang67f02922012-08-22 10:25:20 -0700719 case $arch in
Ying Wang0a76df52015-06-08 11:57:26 -0700720 x86) product=aosp_x86;;
721 mips) product=aosp_mips;;
Ying Wangb541ab62014-05-29 17:57:40 -0700722 arm64) product=aosp_arm64;;
723 x86_64) product=aosp_x86_64;;
724 mips64) product=aosp_mips64;;
Ying Wang67f02922012-08-22 10:25:20 -0700725 esac
Joe Onoratoda12daf2010-06-09 18:18:31 -0700726 if [ -z "$variant" ]; then
727 variant=eng
728 fi
Ying Wangc048c9b2010-06-24 15:08:33 -0700729 if [ -z "$apps" ]; then
730 apps=all
731 fi
Justin Morey29d225c2014-11-04 13:35:51 -0600732 if [ -z "$density" ]; then
733 density=alldpi
734 fi
Joe Onoratoda12daf2010-06-09 18:18:31 -0700735
Ying Wang67f02922012-08-22 10:25:20 -0700736 export TARGET_PRODUCT=$product
Joe Onoratoda12daf2010-06-09 18:18:31 -0700737 export TARGET_BUILD_VARIANT=$variant
Jeff Hamilton5069bd62014-09-04 21:28:00 -0700738 export TARGET_BUILD_DENSITY=$density
Joe Onoratoda12daf2010-06-09 18:18:31 -0700739 export TARGET_BUILD_TYPE=release
740 export TARGET_BUILD_APPS=$apps
741
Ying Wang08800fd2016-03-03 20:57:21 -0800742 build_build_var_cache
Joe Onoratoda12daf2010-06-09 18:18:31 -0700743 set_stuff_for_environment
744 printconfig
Ying Wang08800fd2016-03-03 20:57:21 -0800745 destroy_build_var_cache
Joe Onoratoda12daf2010-06-09 18:18:31 -0700746}
747
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700748function gettop
749{
Colin Cross6cdc5d22017-10-20 11:37:33 -0700750 local TOPFILE=build/make/core/envsetup.mk
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700751 if [ -n "$TOP" -a -f "$TOP/$TOPFILE" ] ; then
Brian Carlstroma5c4f172014-09-12 00:33:25 -0700752 # The following circumlocution ensures we remove symlinks from TOP.
753 (cd $TOP; PWD= /bin/pwd)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700754 else
755 if [ -f $TOPFILE ] ; then
Dan Bornsteind0b274d2009-11-24 15:48:50 -0800756 # The following circumlocution (repeated below as well) ensures
757 # that we record the true directory name and not one that is
758 # faked up with symlink names.
759 PWD= /bin/pwd
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700760 else
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800761 local HERE=$PWD
Christopher Ferris55257d22017-03-23 11:08:58 -0700762 local T=
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700763 while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do
Ying Wang9cd17642012-12-13 10:52:07 -0800764 \cd ..
synergyb112a402013-07-05 19:47:47 -0700765 T=`PWD= /bin/pwd -P`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700766 done
Ying Wang9cd17642012-12-13 10:52:07 -0800767 \cd $HERE
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700768 if [ -f "$T/$TOPFILE" ]; then
769 echo $T
770 fi
771 fi
772 fi
773}
774
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700775function croot()
776{
Christopher Ferris55257d22017-03-23 11:08:58 -0700777 local T=$(gettop)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700778 if [ "$T" ]; then
Marie Janssen32ec50a2016-04-21 16:53:39 -0700779 if [ "$1" ]; then
780 \cd $(gettop)/$1
781 else
782 \cd $(gettop)
783 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700784 else
785 echo "Couldn't locate the top of the tree. Try setting TOP."
786 fi
787}
788
Anton Hanssonece9c482019-02-04 18:15:39 +0000789function _croot()
790{
791 local T=$(gettop)
792 if [ "$T" ]; then
793 local cur="${COMP_WORDS[COMP_CWORD]}"
794 k=0
795 for c in $(compgen -d ${T}/${cur}); do
796 COMPREPLY[k++]=${c#${T}/}/
797 done
798 fi
799}
800
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700801function cproj()
802{
Colin Cross6cdc5d22017-10-20 11:37:33 -0700803 local TOPFILE=build/make/core/envsetup.mk
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700804 local HERE=$PWD
Christopher Ferris55257d22017-03-23 11:08:58 -0700805 local T=
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700806 while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do
807 T=$PWD
808 if [ -f "$T/Android.mk" ]; then
Ying Wang9cd17642012-12-13 10:52:07 -0800809 \cd $T
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700810 return
811 fi
Ying Wang9cd17642012-12-13 10:52:07 -0800812 \cd ..
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700813 done
Ying Wang9cd17642012-12-13 10:52:07 -0800814 \cd $HERE
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700815 echo "can't find Android.mk"
816}
817
Daniel Sandler47e0a882013-07-30 13:23:52 -0400818# simplified version of ps; output in the form
819# <pid> <procname>
820function qpid() {
821 local prepend=''
822 local append=''
823 if [ "$1" = "--exact" ]; then
824 prepend=' '
825 append='$'
826 shift
827 elif [ "$1" = "--help" -o "$1" = "-h" ]; then
Ying Wang08800fd2016-03-03 20:57:21 -0800828 echo "usage: qpid [[--exact] <process name|pid>"
829 return 255
830 fi
Daniel Sandler47e0a882013-07-30 13:23:52 -0400831
832 local EXE="$1"
833 if [ "$EXE" ] ; then
Ying Wang08800fd2016-03-03 20:57:21 -0800834 qpid | \grep "$prepend$EXE$append"
835 else
836 adb shell ps \
837 | tr -d '\r' \
838 | sed -e 1d -e 's/^[^ ]* *\([0-9]*\).* \([^ ]*\)$/\1 \2/'
839 fi
Daniel Sandler47e0a882013-07-30 13:23:52 -0400840}
841
Iliyan Malcheve675cfb2014-11-03 17:04:47 -0800842# coredump_setup - enable core dumps globally for any process
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700843# that has the core-file-size limit set correctly
844#
Iliyan Malchevaf5de972014-11-04 20:57:37 -0800845# NOTE: You must call also coredump_enable for a specific process
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700846# if its core-file-size limit is not set already.
847# NOTE: Core dumps are written to ramdisk; they will not survive a reboot!
848
Iliyan Malcheve675cfb2014-11-03 17:04:47 -0800849function coredump_setup()
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700850{
Ying Wang08800fd2016-03-03 20:57:21 -0800851 echo "Getting root...";
852 adb root;
853 adb wait-for-device;
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700854
Ying Wang08800fd2016-03-03 20:57:21 -0800855 echo "Remounting root partition read-write...";
856 adb shell mount -w -o remount -t rootfs rootfs;
857 sleep 1;
858 adb wait-for-device;
859 adb shell mkdir -p /cores;
860 adb shell mount -t tmpfs tmpfs /cores;
861 adb shell chmod 0777 /cores;
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700862
Ying Wang08800fd2016-03-03 20:57:21 -0800863 echo "Granting SELinux permission to dump in /cores...";
864 adb shell restorecon -R /cores;
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700865
Ying Wang08800fd2016-03-03 20:57:21 -0800866 echo "Set core pattern.";
867 adb shell 'echo /cores/core.%p > /proc/sys/kernel/core_pattern';
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700868
Ying Wang08800fd2016-03-03 20:57:21 -0800869 echo "Done."
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700870}
871
Iliyan Malchevaf5de972014-11-04 20:57:37 -0800872# coredump_enable - enable core dumps for the specified process
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700873# $1 = PID of process (e.g., $(pid mediaserver))
874#
Iliyan Malchevaf5de972014-11-04 20:57:37 -0800875# NOTE: coredump_setup must have been called as well for a core
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700876# dump to actually be generated.
877
Iliyan Malchevaf5de972014-11-04 20:57:37 -0800878function coredump_enable()
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700879{
Ying Wang08800fd2016-03-03 20:57:21 -0800880 local PID=$1;
881 if [ -z "$PID" ]; then
882 printf "Expecting a PID!\n";
883 return;
884 fi;
885 echo "Setting core limit for $PID to infinite...";
Elliott Hughes910a3552016-03-07 13:53:53 -0800886 adb shell /system/bin/ulimit -p $PID -c unlimited
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700887}
888
889# core - send SIGV and pull the core for process
890# $1 = PID of process (e.g., $(pid mediaserver))
891#
Iliyan Malchevaf5de972014-11-04 20:57:37 -0800892# NOTE: coredump_setup must be called once per boot for core dumps to be
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700893# enabled globally.
894
895function core()
896{
Ying Wang08800fd2016-03-03 20:57:21 -0800897 local PID=$1;
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700898
Ying Wang08800fd2016-03-03 20:57:21 -0800899 if [ -z "$PID" ]; then
900 printf "Expecting a PID!\n";
901 return;
902 fi;
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700903
Ying Wang08800fd2016-03-03 20:57:21 -0800904 local CORENAME=core.$PID;
905 local COREPATH=/cores/$CORENAME;
906 local SIG=SEGV;
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700907
Ying Wang08800fd2016-03-03 20:57:21 -0800908 coredump_enable $1;
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700909
Ying Wang08800fd2016-03-03 20:57:21 -0800910 local done=0;
911 while [ $(adb shell "[ -d /proc/$PID ] && echo -n yes") ]; do
912 printf "\tSending SIG%s to %d...\n" $SIG $PID;
913 adb shell kill -$SIG $PID;
914 sleep 1;
915 done;
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700916
Ying Wang08800fd2016-03-03 20:57:21 -0800917 adb shell "while [ ! -f $COREPATH ] ; do echo waiting for $COREPATH to be generated; sleep 1; done"
918 echo "Done: core is under $COREPATH on device.";
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700919}
920
Christopher Tate744ee802009-11-12 15:33:08 -0800921# systemstack - dump the current stack trace of all threads in the system process
922# to the usual ANR traces file
923function systemstack()
924{
Jeff Sharkeyf5824372013-02-19 17:00:46 -0800925 stacks system_server
926}
927
Michael Wrightaeed7212014-06-19 19:58:12 -0700928# Read the ELF header from /proc/$PID/exe to determine if the process is
929# 64-bit.
Ben Chengfba67bf2014-02-25 10:27:07 -0800930function is64bit()
931{
932 local PID="$1"
933 if [ "$PID" ] ; then
Elliott Hughesd3e47252018-11-15 16:32:14 -0800934 if [[ "$(adb shell cat /proc/$PID/exe | xxd -l 1 -s 4 -p)" -eq "02" ]] ; then
Ben Chengfba67bf2014-02-25 10:27:07 -0800935 echo "64"
936 else
937 echo ""
938 fi
939 else
940 echo ""
941 fi
942}
943
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700944case `uname -s` in
945 Darwin)
946 function sgrep()
947 {
Aurelio Jargas67edd152018-11-06 17:25:11 +0100948 find -E . -name .repo -prune -o -name .git -prune -o -type f -iregex '.*\.(c|h|cc|cpp|hpp|S|java|xml|sh|mk|aidl|vts)' \
Mike Frysinger5e479732015-09-22 18:13:48 -0400949 -exec grep --color -n "$@" {} +
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700950 }
951
952 ;;
953 *)
954 function sgrep()
955 {
Aurelio Jargas67edd152018-11-06 17:25:11 +0100956 find . -name .repo -prune -o -name .git -prune -o -type f -iregex '.*\.\(c\|h\|cc\|cpp\|hpp\|S\|java\|xml\|sh\|mk\|aidl\|vts\)' \
Mike Frysinger5e479732015-09-22 18:13:48 -0400957 -exec grep --color -n "$@" {} +
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700958 }
959 ;;
960esac
961
Raghu Gandham8da43102012-07-25 19:57:22 -0700962function gettargetarch
963{
964 get_build_var TARGET_ARCH
965}
966
Jon Boekenoogencbca56f2014-04-07 10:57:38 -0700967function ggrep()
968{
Mike Frysinger5e479732015-09-22 18:13:48 -0400969 find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -type f -name "*\.gradle" \
970 -exec grep --color -n "$@" {} +
Jon Boekenoogencbca56f2014-04-07 10:57:38 -0700971}
972
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700973function jgrep()
974{
Mike Frysinger5e479732015-09-22 18:13:48 -0400975 find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -type f -name "*\.java" \
976 -exec grep --color -n "$@" {} +
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700977}
978
979function cgrep()
980{
Mike Frysinger5e479732015-09-22 18:13:48 -0400981 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' \) \
982 -exec grep --color -n "$@" {} +
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700983}
984
985function resgrep()
986{
Christopher Ferris55257d22017-03-23 11:08:58 -0700987 local dir
Mike Frysinger5e479732015-09-22 18:13:48 -0400988 for dir in `find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -name res -type d`; do
989 find $dir -type f -name '*\.xml' -exec grep --color -n "$@" {} +
990 done
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700991}
992
Jeff Sharkey50b61e92013-03-08 10:20:47 -0800993function mangrep()
994{
Mike Frysinger5e479732015-09-22 18:13:48 -0400995 find . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o -type f -name 'AndroidManifest.xml' \
996 -exec grep --color -n "$@" {} +
Jeff Sharkey50b61e92013-03-08 10:20:47 -0800997}
998
Jeff Sharkeyf17cddf2019-08-21 12:51:26 -0600999function owngrep()
1000{
1001 find . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o -type f -name 'OWNERS' \
1002 -exec grep --color -n "$@" {} +
1003}
1004
Alex Klyubinba5fc8e2013-05-06 14:11:48 -07001005function sepgrep()
1006{
Mike Frysinger5e479732015-09-22 18:13:48 -04001007 find . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o -name sepolicy -type d \
1008 -exec grep --color -n -r --exclude-dir=\.git "$@" {} +
Alex Klyubinba5fc8e2013-05-06 14:11:48 -07001009}
1010
Jeff Sharkeyea0068a2015-02-26 14:13:46 -08001011function rcgrep()
1012{
Mike Frysinger5e479732015-09-22 18:13:48 -04001013 find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -type f -name "*\.rc*" \
1014 -exec grep --color -n "$@" {} +
Jeff Sharkeyea0068a2015-02-26 14:13:46 -08001015}
1016
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001017case `uname -s` in
1018 Darwin)
1019 function mgrep()
1020 {
David Grossd1d6fc52017-05-10 10:49:44 -07001021 find -E . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o \( -iregex '.*/(Makefile|Makefile\..*|.*\.make|.*\.mak|.*\.mk|.*\.bp)' -o -regex '(.*/)?soong/[^/]*.go' \) -type f \
Mike Frysinger5e479732015-09-22 18:13:48 -04001022 -exec grep --color -n "$@" {} +
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001023 }
1024
1025 function treegrep()
1026 {
Aurelio Jargas67edd152018-11-06 17:25:11 +01001027 find -E . -name .repo -prune -o -name .git -prune -o -type f -iregex '.*\.(c|h|cpp|hpp|S|java|xml)' \
Mike Frysinger5e479732015-09-22 18:13:48 -04001028 -exec grep --color -n -i "$@" {} +
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001029 }
1030
1031 ;;
1032 *)
1033 function mgrep()
1034 {
David Grossd1d6fc52017-05-10 10:49:44 -07001035 find . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o \( -regextype posix-egrep -iregex '(.*\/Makefile|.*\/Makefile\..*|.*\.make|.*\.mak|.*\.mk|.*\.bp)' -o -regextype posix-extended -regex '(.*/)?soong/[^/]*.go' \) -type f \
Mike Frysinger5e479732015-09-22 18:13:48 -04001036 -exec grep --color -n "$@" {} +
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001037 }
1038
1039 function treegrep()
1040 {
Aurelio Jargas67edd152018-11-06 17:25:11 +01001041 find . -name .repo -prune -o -name .git -prune -o -regextype posix-egrep -iregex '.*\.(c|h|cpp|hpp|S|java|xml)' -type f \
Mike Frysinger5e479732015-09-22 18:13:48 -04001042 -exec grep --color -n -i "$@" {} +
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001043 }
1044
1045 ;;
1046esac
1047
1048function getprebuilt
1049{
1050 get_abs_build_var ANDROID_PREBUILTS
1051}
1052
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001053function tracedmdump()
1054{
Christopher Ferris55257d22017-03-23 11:08:58 -07001055 local T=$(gettop)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001056 if [ ! "$T" ]; then
1057 echo "Couldn't locate the top of the tree. Try setting TOP."
1058 return
1059 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001060 local prebuiltdir=$(getprebuilt)
Raghu Gandham8da43102012-07-25 19:57:22 -07001061 local arch=$(gettargetarch)
1062 local KERNEL=$T/prebuilts/qemu-kernel/$arch/vmlinux-qemu
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001063
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001064 local TRACE=$1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001065 if [ ! "$TRACE" ] ; then
1066 echo "usage: tracedmdump tracename"
1067 return
1068 fi
1069
Jack Veenstra60116fc2009-04-09 18:12:34 -07001070 if [ ! -r "$KERNEL" ] ; then
1071 echo "Error: cannot find kernel: '$KERNEL'"
1072 return
1073 fi
1074
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001075 local BASETRACE=$(basename $TRACE)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001076 if [ "$BASETRACE" = "$TRACE" ] ; then
1077 TRACE=$ANDROID_PRODUCT_OUT/traces/$TRACE
1078 fi
1079
1080 echo "post-processing traces..."
1081 rm -f $TRACE/qtrace.dexlist
1082 post_trace $TRACE
1083 if [ $? -ne 0 ]; then
1084 echo "***"
1085 echo "*** Error: malformed trace. Did you remember to exit the emulator?"
1086 echo "***"
1087 return
1088 fi
1089 echo "generating dexlist output..."
1090 /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
1091 echo "generating dmtrace data..."
1092 q2dm -r $ANDROID_PRODUCT_OUT/symbols $TRACE $KERNEL $TRACE/dmtrace || return
1093 echo "generating html file..."
1094 dmtracedump -h $TRACE/dmtrace >| $TRACE/dmtrace.html || return
1095 echo "done, see $TRACE/dmtrace.html for details"
1096 echo "or run:"
1097 echo " traceview $TRACE/dmtrace"
1098}
1099
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001100# communicate with a running device or emulator, set up necessary state,
1101# and run the hat command.
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001102function runhat()
1103{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001104 # process standard adb options
1105 local adbTarget=""
Andy McFaddenb6289852010-07-12 08:00:19 -07001106 if [ "$1" = "-d" -o "$1" = "-e" ]; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001107 adbTarget=$1
1108 shift 1
Andy McFaddenb6289852010-07-12 08:00:19 -07001109 elif [ "$1" = "-s" ]; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001110 adbTarget="$1 $2"
1111 shift 2
1112 fi
1113 local adbOptions=${adbTarget}
Dianne Hackborn6b9549f2012-09-26 15:00:59 -07001114 #echo adbOptions = ${adbOptions}
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001115
1116 # runhat options
1117 local targetPid=$1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001118
1119 if [ "$targetPid" = "" ]; then
Andy McFaddenb6289852010-07-12 08:00:19 -07001120 echo "Usage: runhat [ -d | -e | -s serial ] target-pid"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001121 return
1122 fi
1123
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001124 # confirm hat is available
1125 if [ -z $(which hat) ]; then
1126 echo "hat is not available in this configuration."
1127 return
1128 fi
1129
Andy McFaddenb6289852010-07-12 08:00:19 -07001130 # issue "am" command to cause the hprof dump
Nick Kralevich9948b1e2014-07-18 15:45:38 -07001131 local devFile=/data/local/tmp/hprof-$targetPid
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001132 echo "Poking $targetPid and waiting for data..."
Dianne Hackborn6b9549f2012-09-26 15:00:59 -07001133 echo "Storing data at $devFile"
Andy McFaddenb6289852010-07-12 08:00:19 -07001134 adb ${adbOptions} shell am dumpheap $targetPid $devFile
The Android Open Source Project88b60792009-03-03 19:28:42 -08001135 echo "Press enter when logcat shows \"hprof: heap dump completed\""
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001136 echo -n "> "
1137 read
1138
The Android Open Source Project88b60792009-03-03 19:28:42 -08001139 local localFile=/tmp/$$-hprof
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001140
The Android Open Source Project88b60792009-03-03 19:28:42 -08001141 echo "Retrieving file $devFile..."
1142 adb ${adbOptions} pull $devFile $localFile
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001143
The Android Open Source Project88b60792009-03-03 19:28:42 -08001144 adb ${adbOptions} shell rm $devFile
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001145
The Android Open Source Project88b60792009-03-03 19:28:42 -08001146 echo "Running hat on $localFile"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001147 echo "View the output by pointing your browser at http://localhost:7000/"
1148 echo ""
Dianne Hackborn6e4e1bb2011-11-10 15:19:51 -08001149 hat -JXmx512m $localFile
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001150}
1151
1152function getbugreports()
1153{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001154 local reports=(`adb shell ls /sdcard/bugreports | tr -d '\r'`)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001155
1156 if [ ! "$reports" ]; then
1157 echo "Could not locate any bugreports."
1158 return
1159 fi
1160
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001161 local report
1162 for report in ${reports[@]}
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001163 do
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001164 echo "/sdcard/bugreports/${report}"
1165 adb pull /sdcard/bugreports/${report} ${report}
1166 gunzip ${report}
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001167 done
1168}
1169
Victoria Lease1b296b42012-08-21 15:44:06 -07001170function getsdcardpath()
1171{
1172 adb ${adbOptions} shell echo -n \$\{EXTERNAL_STORAGE\}
1173}
1174
1175function getscreenshotpath()
1176{
1177 echo "$(getsdcardpath)/Pictures/Screenshots"
1178}
1179
1180function getlastscreenshot()
1181{
1182 local screenshot_path=$(getscreenshotpath)
1183 local screenshot=`adb ${adbOptions} ls ${screenshot_path} | grep Screenshot_[0-9-]*.*\.png | sort -rk 3 | cut -d " " -f 4 | head -n 1`
1184 if [ "$screenshot" = "" ]; then
1185 echo "No screenshots found."
1186 return
1187 fi
1188 echo "${screenshot}"
1189 adb ${adbOptions} pull ${screenshot_path}/${screenshot}
1190}
1191
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001192function startviewserver()
1193{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001194 local port=4939
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001195 if [ $# -gt 0 ]; then
1196 port=$1
1197 fi
1198 adb shell service call window 1 i32 $port
1199}
1200
1201function stopviewserver()
1202{
1203 adb shell service call window 2
1204}
1205
1206function isviewserverstarted()
1207{
1208 adb shell service call window 3
1209}
1210
Romain Guyb84049a2010-10-04 16:56:11 -07001211function key_home()
1212{
1213 adb shell input keyevent 3
1214}
1215
1216function key_back()
1217{
1218 adb shell input keyevent 4
1219}
1220
1221function key_menu()
1222{
1223 adb shell input keyevent 82
1224}
1225
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001226function smoketest()
1227{
1228 if [ ! "$ANDROID_PRODUCT_OUT" ]; then
1229 echo "Couldn't locate output files. Try running 'lunch' first." >&2
1230 return
1231 fi
Christopher Ferris55257d22017-03-23 11:08:58 -07001232 local T=$(gettop)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001233 if [ ! "$T" ]; then
1234 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
1235 return
1236 fi
1237
Ying Wang9cd17642012-12-13 10:52:07 -08001238 (\cd "$T" && mmm tests/SmokeTest) &&
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001239 adb uninstall com.android.smoketest > /dev/null &&
1240 adb uninstall com.android.smoketest.tests > /dev/null &&
1241 adb install $ANDROID_PRODUCT_OUT/data/app/SmokeTestApp.apk &&
1242 adb install $ANDROID_PRODUCT_OUT/data/app/SmokeTest.apk &&
1243 adb shell am instrument -w com.android.smoketest.tests/android.test.InstrumentationTestRunner
1244}
1245
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001246# simple shortcut to the runtest command
1247function runtest()
1248{
Christopher Ferris55257d22017-03-23 11:08:58 -07001249 local T=$(gettop)
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001250 if [ ! "$T" ]; then
1251 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
1252 return
1253 fi
Brett Chabot3fb149d2009-10-21 20:05:26 -07001254 ("$T"/development/testrunner/runtest.py $@)
Brett Chabot762748c2009-03-27 10:25:11 -07001255}
1256
The Android Open Source Project88b60792009-03-03 19:28:42 -08001257function godir () {
1258 if [[ -z "$1" ]]; then
1259 echo "Usage: godir <regex>"
1260 return
1261 fi
Christopher Ferris55257d22017-03-23 11:08:58 -07001262 local T=$(gettop)
1263 local FILELIST
Brian Carlstromf2257422015-09-30 20:28:54 -07001264 if [ ! "$OUT_DIR" = "" ]; then
1265 mkdir -p $OUT_DIR
1266 FILELIST=$OUT_DIR/filelist
1267 else
1268 FILELIST=$T/filelist
1269 fi
1270 if [[ ! -f $FILELIST ]]; then
The Android Open Source Project88b60792009-03-03 19:28:42 -08001271 echo -n "Creating index..."
Brian Carlstromf2257422015-09-30 20:28:54 -07001272 (\cd $T; find . -wholename ./out -prune -o -wholename ./.repo -prune -o -type f > $FILELIST)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001273 echo " Done"
1274 echo ""
1275 fi
1276 local lines
Brian Carlstromf2257422015-09-30 20:28:54 -07001277 lines=($(\grep "$1" $FILELIST | sed -e 's/\/[^/]*$//' | sort | uniq))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001278 if [[ ${#lines[@]} = 0 ]]; then
1279 echo "Not found"
1280 return
1281 fi
1282 local pathname
1283 local choice
1284 if [[ ${#lines[@]} > 1 ]]; then
1285 while [[ -z "$pathname" ]]; do
1286 local index=1
1287 local line
1288 for line in ${lines[@]}; do
1289 printf "%6s %s\n" "[$index]" $line
Doug Zongker29034982011-04-22 08:16:56 -07001290 index=$(($index + 1))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001291 done
1292 echo
1293 echo -n "Select one: "
1294 unset choice
1295 read choice
1296 if [[ $choice -gt ${#lines[@]} || $choice -lt 1 ]]; then
1297 echo "Invalid choice"
1298 continue
1299 fi
Kan-Ru Chen07453762010-07-05 15:53:47 +08001300 pathname=${lines[$(($choice-1))]}
The Android Open Source Project88b60792009-03-03 19:28:42 -08001301 done
1302 else
The Android Open Source Project88b60792009-03-03 19:28:42 -08001303 pathname=${lines[0]}
1304 fi
Ying Wang9cd17642012-12-13 10:52:07 -08001305 \cd $T/$pathname
The Android Open Source Project88b60792009-03-03 19:28:42 -08001306}
1307
Steven Moreland62054a42018-12-06 10:11:40 -08001308# Update module-info.json in out.
1309function refreshmod() {
1310 if [ ! "$ANDROID_PRODUCT_OUT" ]; then
1311 echo "No ANDROID_PRODUCT_OUT. Try running 'lunch' first." >&2
1312 return 1
1313 fi
1314
1315 echo "Refreshing modules (building module-info.json). Log at $ANDROID_PRODUCT_OUT/module-info.json.build.log." >&2
1316
1317 # for the output of the next command
1318 mkdir -p $ANDROID_PRODUCT_OUT || return 1
1319
1320 # Note, can't use absolute path because of the way make works.
1321 m out/target/product/$(get_build_var TARGET_DEVICE)/module-info.json \
1322 > $ANDROID_PRODUCT_OUT/module-info.json.build.log 2>&1
1323}
1324
1325# List all modules for the current device, as cached in module-info.json. If any build change is
1326# made and it should be reflected in the output, you should run 'refreshmod' first.
1327function allmod() {
1328 if [ ! "$ANDROID_PRODUCT_OUT" ]; then
1329 echo "No ANDROID_PRODUCT_OUT. Try running 'lunch' first." >&2
1330 return 1
1331 fi
1332
1333 if [ ! -f "$ANDROID_PRODUCT_OUT/module-info.json" ]; then
1334 echo "Could not find module-info.json. It will only be built once, and it can be updated with 'refreshmod'" >&2
1335 refreshmod || return 1
1336 fi
1337
1338 python -c "import json; print '\n'.join(sorted(json.load(open('$ANDROID_PRODUCT_OUT/module-info.json')).keys()))"
1339}
1340
Rett Berg78d1c932019-01-24 14:34:23 -08001341# Get the path of a specific module in the android tree, as cached in module-info.json. If any build change
Steven Moreland62054a42018-12-06 10:11:40 -08001342# is made, and it should be reflected in the output, you should run 'refreshmod' first.
Rett Berg78d1c932019-01-24 14:34:23 -08001343function pathmod() {
Steven Moreland62054a42018-12-06 10:11:40 -08001344 if [ ! "$ANDROID_PRODUCT_OUT" ]; then
1345 echo "No ANDROID_PRODUCT_OUT. Try running 'lunch' first." >&2
1346 return 1
1347 fi
1348
1349 if [[ $# -ne 1 ]]; then
Rett Berg78d1c932019-01-24 14:34:23 -08001350 echo "usage: pathmod <module>" >&2
Steven Moreland62054a42018-12-06 10:11:40 -08001351 return 1
1352 fi
1353
1354 if [ ! -f "$ANDROID_PRODUCT_OUT/module-info.json" ]; then
1355 echo "Could not find module-info.json. It will only be built once, and it can be updated with 'refreshmod'" >&2
1356 refreshmod || return 1
1357 fi
1358
1359 local relpath=$(python -c "import json, os
1360module = '$1'
1361module_info = json.load(open('$ANDROID_PRODUCT_OUT/module-info.json'))
1362if module not in module_info:
1363 exit(1)
1364print module_info[module]['path'][0]" 2>/dev/null)
1365
1366 if [ -z "$relpath" ]; then
1367 echo "Could not find module '$1' (try 'refreshmod' if there have been build changes?)." >&2
1368 return 1
1369 else
Rett Berg78d1c932019-01-24 14:34:23 -08001370 echo "$ANDROID_BUILD_TOP/$relpath"
Steven Moreland62054a42018-12-06 10:11:40 -08001371 fi
1372}
1373
Rett Berg78d1c932019-01-24 14:34:23 -08001374# Go to a specific module in the android tree, as cached in module-info.json. If any build change
1375# is made, and it should be reflected in the output, you should run 'refreshmod' first.
1376function gomod() {
1377 if [[ $# -ne 1 ]]; then
1378 echo "usage: gomod <module>" >&2
1379 return 1
1380 fi
1381
1382 local path="$(pathmod $@)"
1383 if [ -z "$path" ]; then
1384 return 1
1385 fi
1386 cd $path
1387}
1388
dimitry73b84812018-12-11 18:06:00 +01001389function _complete_android_module_names() {
Steven Moreland62054a42018-12-06 10:11:40 -08001390 local word=${COMP_WORDS[COMP_CWORD]}
1391 COMPREPLY=( $(allmod | grep -E "^$word") )
1392}
1393
Alex Rayf0d08eb2013-03-08 15:15:06 -08001394# Print colored exit condition
1395function pez {
Michael Wrighteb733842013-03-08 17:34:02 -08001396 "$@"
1397 local retval=$?
1398 if [ $retval -ne 0 ]
1399 then
Jacky Cao89483b82015-05-15 22:12:53 +08001400 echo $'\E'"[0;31mFAILURE\e[00m"
Michael Wrighteb733842013-03-08 17:34:02 -08001401 else
Jacky Cao89483b82015-05-15 22:12:53 +08001402 echo $'\E'"[0;32mSUCCESS\e[00m"
Michael Wrighteb733842013-03-08 17:34:02 -08001403 fi
1404 return $retval
Alex Rayf0d08eb2013-03-08 15:15:06 -08001405}
1406
Ying Wanged21d4c2014-08-24 22:14:19 -07001407function get_make_command()
1408{
Dan Willemsend41ec5a2017-07-12 16:14:50 -07001409 # If we're in the top of an Android tree, use soong_ui.bash instead of make
1410 if [ -f build/soong/soong_ui.bash ]; then
Dan Willemsene9842242017-07-28 13:00:13 -07001411 # Always use the real make if -C is passed in
1412 for arg in "$@"; do
1413 if [[ $arg == -C* ]]; then
1414 echo command make
1415 return
1416 fi
1417 done
Dan Willemsend41ec5a2017-07-12 16:14:50 -07001418 echo build/soong/soong_ui.bash --make-mode
1419 else
1420 echo command make
1421 fi
Ying Wanged21d4c2014-08-24 22:14:19 -07001422}
1423
Dan Willemsend41ec5a2017-07-12 16:14:50 -07001424function _wrap_build()
Ed Heylcc6be0a2014-06-18 14:55:58 -07001425{
Sasha Smundak9f27cc02019-01-31 13:25:31 -08001426 if [[ "${ANDROID_QUIET_BUILD:-}" == true ]]; then
1427 "$@"
1428 return $?
1429 fi
Ed Heylcc6be0a2014-06-18 14:55:58 -07001430 local start_time=$(date +"%s")
Dan Willemsend41ec5a2017-07-12 16:14:50 -07001431 "$@"
Ed Heylcc6be0a2014-06-18 14:55:58 -07001432 local ret=$?
1433 local end_time=$(date +"%s")
1434 local tdiff=$(($end_time-$start_time))
1435 local hours=$(($tdiff / 3600 ))
1436 local mins=$((($tdiff % 3600) / 60))
1437 local secs=$(($tdiff % 60))
Greg Hackmannd95c7f72014-06-23 14:05:06 -07001438 local ncolors=$(tput colors 2>/dev/null)
1439 if [ -n "$ncolors" ] && [ $ncolors -ge 8 ]; then
Jacky Cao89483b82015-05-15 22:12:53 +08001440 color_failed=$'\E'"[0;31m"
1441 color_success=$'\E'"[0;32m"
1442 color_reset=$'\E'"[00m"
Greg Hackmannd95c7f72014-06-23 14:05:06 -07001443 else
1444 color_failed=""
1445 color_success=""
1446 color_reset=""
1447 fi
Ed Heylcc6be0a2014-06-18 14:55:58 -07001448 echo
1449 if [ $ret -eq 0 ] ; then
Dan Willemsend41ec5a2017-07-12 16:14:50 -07001450 echo -n "${color_success}#### build completed successfully "
Ed Heylcc6be0a2014-06-18 14:55:58 -07001451 else
Dan Willemsend41ec5a2017-07-12 16:14:50 -07001452 echo -n "${color_failed}#### failed to build some targets "
Ed Heylcc6be0a2014-06-18 14:55:58 -07001453 fi
1454 if [ $hours -gt 0 ] ; then
1455 printf "(%02g:%02g:%02g (hh:mm:ss))" $hours $mins $secs
1456 elif [ $mins -gt 0 ] ; then
1457 printf "(%02g:%02g (mm:ss))" $mins $secs
1458 elif [ $secs -gt 0 ] ; then
1459 printf "(%s seconds)" $secs
1460 fi
Jacky Cao89483b82015-05-15 22:12:53 +08001461 echo " ####${color_reset}"
Ed Heylcc6be0a2014-06-18 14:55:58 -07001462 echo
1463 return $ret
1464}
1465
Patrice Arrudafa7204b2019-06-20 23:40:33 +00001466function _trigger_build()
1467(
1468 local -r bc="$1"; shift
1469 if T="$(gettop)"; then
1470 _wrap_build "$T/build/soong/soong_ui.bash" --build-mode --${bc} --dir="$(pwd)" "$@"
1471 else
1472 echo "Couldn't locate the top of the tree. Try setting TOP."
1473 fi
1474)
1475
1476function m()
1477(
1478 _trigger_build "all-modules" "$@"
1479)
1480
1481function mm()
1482(
1483 _trigger_build "modules-in-a-dir-no-deps" "$@"
1484)
1485
1486function mmm()
1487(
1488 _trigger_build "modules-in-dirs-no-deps" "$@"
1489)
1490
1491function mma()
1492(
1493 _trigger_build "modules-in-a-dir" "$@"
1494)
1495
1496function mmma()
1497(
1498 _trigger_build "modules-in-dirs" "$@"
1499)
1500
Dan Willemsend41ec5a2017-07-12 16:14:50 -07001501function make()
1502{
Dan Willemsene9842242017-07-28 13:00:13 -07001503 _wrap_build $(get_make_command "$@") "$@"
Dan Willemsend41ec5a2017-07-12 16:14:50 -07001504}
1505
David Zeuthen1b126ff2015-09-30 17:10:48 -04001506function provision()
1507{
1508 if [ ! "$ANDROID_PRODUCT_OUT" ]; then
1509 echo "Couldn't locate output files. Try running 'lunch' first." >&2
1510 return 1
1511 fi
1512 if [ ! -e "$ANDROID_PRODUCT_OUT/provision-device" ]; then
1513 echo "There is no provisioning script for the device." >&2
1514 return 1
1515 fi
1516
1517 # Check if user really wants to do this.
1518 if [ "$1" = "--no-confirmation" ]; then
1519 shift 1
1520 else
1521 echo "This action will reflash your device."
1522 echo ""
1523 echo "ALL DATA ON THE DEVICE WILL BE IRREVOCABLY ERASED."
1524 echo ""
Marie Janssen4afc2c02015-11-10 10:41:15 -08001525 echo -n "Are you sure you want to do this (yes/no)? "
1526 read
David Zeuthen1b126ff2015-09-30 17:10:48 -04001527 if [[ "${REPLY}" != "yes" ]] ; then
1528 echo "Not taking any action. Exiting." >&2
1529 return 1
1530 fi
1531 fi
1532 "$ANDROID_PRODUCT_OUT/provision-device" "$@"
1533}
1534
Jim Tanga881a252018-06-19 16:34:41 +08001535# Zsh needs bashcompinit called to support bash-style completion.
Patrik Fimmldf248e62018-10-15 18:15:12 +02001536function enable_zsh_completion() {
1537 # Don't override user's options if bash-style completion is already enabled.
1538 if ! declare -f complete >/dev/null; then
1539 autoload -U compinit && compinit
1540 autoload -U bashcompinit && bashcompinit
1541 fi
Jim Tanga881a252018-06-19 16:34:41 +08001542}
1543
1544function validate_current_shell() {
1545 local current_sh="$(ps -o command -p $$)"
1546 case "$current_sh" in
Raphael Moll70a86b02011-06-20 16:03:14 -07001547 *bash*)
Jim Tanga881a252018-06-19 16:34:41 +08001548 function check_type() { type -t "$1"; }
Raphael Moll70a86b02011-06-20 16:03:14 -07001549 ;;
Jim Tanga881a252018-06-19 16:34:41 +08001550 *zsh*)
1551 function check_type() { type "$1"; }
Patrik Fimmldf248e62018-10-15 18:15:12 +02001552 enable_zsh_completion ;;
Raphael Moll70a86b02011-06-20 16:03:14 -07001553 *)
Jim Tanga881a252018-06-19 16:34:41 +08001554 echo -e "WARNING: Only bash and zsh are supported.\nUse of other shell would lead to erroneous results."
Raphael Moll70a86b02011-06-20 16:03:14 -07001555 ;;
1556 esac
Jim Tanga881a252018-06-19 16:34:41 +08001557}
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001558
1559# Execute the contents of any vendorsetup.sh files we can find.
Dan Willemsend855a722019-02-12 15:52:36 -08001560# Unless we find an allowed-vendorsetup_sh-files file, in which case we'll only
1561# load those.
1562#
1563# This allows loading only approved vendorsetup.sh files
Jim Tanga881a252018-06-19 16:34:41 +08001564function source_vendorsetup() {
Jim Tangc4dba1d2019-07-25 16:54:27 +08001565 unset VENDOR_PYTHONPATH
Dan Willemsend855a722019-02-12 15:52:36 -08001566 allowed=
1567 for f in $(find -L device vendor product -maxdepth 4 -name 'allowed-vendorsetup_sh-files' 2>/dev/null | sort); do
1568 if [ -n "$allowed" ]; then
1569 echo "More than one 'allowed_vendorsetup_sh-files' file found, not including any vendorsetup.sh files:"
1570 echo " $allowed"
1571 echo " $f"
1572 return
1573 fi
1574 allowed="$f"
1575 done
1576
1577 allowed_files=
1578 [ -n "$allowed" ] && allowed_files=$(cat "$allowed")
Jim Tanga881a252018-06-19 16:34:41 +08001579 for dir in device vendor product; do
1580 for f in $(test -d $dir && \
1581 find -L $dir -maxdepth 4 -name 'vendorsetup.sh' 2>/dev/null | sort); do
Dan Willemsend855a722019-02-12 15:52:36 -08001582
1583 if [[ -z "$allowed" || "$allowed_files" =~ $f ]]; then
1584 echo "including $f"; . "$f"
1585 else
1586 echo "ignoring $f, not in $allowed"
1587 fi
Jim Tanga881a252018-06-19 16:34:41 +08001588 done
1589 done
1590}
Kenny Root52aa81c2011-07-15 11:07:06 -07001591
Jim Tanga881a252018-06-19 16:34:41 +08001592validate_current_shell
1593source_vendorsetup
Kenny Root52aa81c2011-07-15 11:07:06 -07001594addcompletions