blob: 92dad9a51828438497c419b809e718a26e3843e5 [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)
Colin Crosscb8337d2019-09-23 12:52:32 -0700578 local choices=$(TARGET_BUILD_APPS= get_build_var COMMON_LUNCH_CHOICES)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700579 echo
580 echo "You're building on" $uname
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700581 echo
582 echo "Lunch menu... pick a combo:"
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800583
584 local i=1
585 local choice
Colin Crosscb8337d2019-09-23 12:52:32 -0700586 for choice in $choices
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800587 do
588 echo " $i. $choice"
589 i=$(($i+1))
590 done
591
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700592 echo
593}
594
595function lunch()
596{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800597 local answer
598
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700599 if [ "$1" ] ; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800600 answer=$1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700601 else
602 print_lunch_menu
Jean-Baptiste Queru324c1232013-03-22 15:53:54 -0700603 echo -n "Which would you like? [aosp_arm-eng] "
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800604 read answer
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700605 fi
606
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800607 local selection=
608
609 if [ -z "$answer" ]
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700610 then
Jean-Baptiste Queru324c1232013-03-22 15:53:54 -0700611 selection=aosp_arm-eng
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800612 elif (echo -n $answer | grep -q -e "^[0-9][0-9]*$")
613 then
Dan Willemsen5436c7e2019-02-11 21:31:47 -0800614 local choices=($(TARGET_BUILD_APPS= get_build_var COMMON_LUNCH_CHOICES))
Dan Willemsenaf2e1f82018-04-04 15:41:41 -0700615 if [ $answer -le ${#choices[@]} ]
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800616 then
Jim Tang0e3397b2018-10-03 18:25:50 +0800617 # array in zsh starts from 1 instead of 0.
618 if [ -n "$ZSH_VERSION" ]
619 then
620 selection=${choices[$(($answer))]}
621 else
622 selection=${choices[$(($answer-1))]}
623 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800624 fi
Colin Cross88737132017-03-21 17:41:03 -0700625 else
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800626 selection=$answer
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700627 fi
628
Joe Onoratoda12daf2010-06-09 18:18:31 -0700629 export TARGET_BUILD_APPS=
630
Colin Cross88737132017-03-21 17:41:03 -0700631 local product variant_and_version variant version
632
633 product=${selection%%-*} # Trim everything after first dash
634 variant_and_version=${selection#*-} # Trim everything up to first dash
635 if [ "$variant_and_version" != "$selection" ]; then
636 variant=${variant_and_version%%-*}
637 if [ "$variant" != "$variant_and_version" ]; then
638 version=${variant_and_version#*-}
639 fi
Jeff Browne33ba4c2011-07-11 22:11:46 -0700640 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800641
Colin Cross88737132017-03-21 17:41:03 -0700642 if [ -z "$product" ]
Ying Wang08800fd2016-03-03 20:57:21 -0800643 then
644 echo
Colin Cross88737132017-03-21 17:41:03 -0700645 echo "Invalid lunch combo: $selection"
Jeff Browne33ba4c2011-07-11 22:11:46 -0700646 return 1
647 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800648
Colin Cross88737132017-03-21 17:41:03 -0700649 TARGET_PRODUCT=$product \
650 TARGET_BUILD_VARIANT=$variant \
651 TARGET_PLATFORM_VERSION=$version \
652 build_build_var_cache
653 if [ $? -ne 0 ]
654 then
655 return 1
656 fi
657
658 export TARGET_PRODUCT=$(get_build_var TARGET_PRODUCT)
659 export TARGET_BUILD_VARIANT=$(get_build_var TARGET_BUILD_VARIANT)
Colin Crossb105e362017-05-01 14:21:28 -0700660 if [ -n "$version" ]; then
661 export TARGET_PLATFORM_VERSION=$(get_build_var TARGET_PLATFORM_VERSION)
662 else
663 unset TARGET_PLATFORM_VERSION
664 fi
Jeff Browne33ba4c2011-07-11 22:11:46 -0700665 export TARGET_BUILD_TYPE=release
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700666
667 echo
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800668
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700669 set_stuff_for_environment
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800670 printconfig
Ying Wang08800fd2016-03-03 20:57:21 -0800671 destroy_build_var_cache
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700672}
673
Dan Willemsenaf2e1f82018-04-04 15:41:41 -0700674unset COMMON_LUNCH_CHOICES_CACHE
Jeff Davidson513d7a42010-08-02 10:00:44 -0700675# Tab completion for lunch.
676function _lunch()
677{
678 local cur prev opts
679 COMPREPLY=()
680 cur="${COMP_WORDS[COMP_CWORD]}"
681 prev="${COMP_WORDS[COMP_CWORD-1]}"
682
Dan Willemsenaf2e1f82018-04-04 15:41:41 -0700683 if [ -z "$COMMON_LUNCH_CHOICES_CACHE" ]; then
Dan Willemsen5436c7e2019-02-11 21:31:47 -0800684 COMMON_LUNCH_CHOICES_CACHE=$(TARGET_BUILD_APPS= get_build_var COMMON_LUNCH_CHOICES)
Dan Willemsenaf2e1f82018-04-04 15:41:41 -0700685 fi
686
687 COMPREPLY=( $(compgen -W "${COMMON_LUNCH_CHOICES_CACHE}" -- ${cur}) )
Jeff Davidson513d7a42010-08-02 10:00:44 -0700688 return 0
689}
Jeff Davidson513d7a42010-08-02 10:00:44 -0700690
Joe Onoratoda12daf2010-06-09 18:18:31 -0700691# Configures the build to build unbundled apps.
Doug Zongker0d8179e2014-04-16 11:34:34 -0700692# Run tapas with one or more app names (from LOCAL_PACKAGE_NAME)
Joe Onoratoda12daf2010-06-09 18:18:31 -0700693function tapas()
694{
Jeff Gaston9fb05d82017-08-21 18:27:00 -0700695 local showHelp="$(echo $* | xargs -n 1 echo | \grep -E '^(help)$' | xargs)"
Dan Willemsendd3a2732018-01-08 15:26:16 -0800696 local arch="$(echo $* | xargs -n 1 echo | \grep -E '^(arm|x86|mips|arm64|x86_64|mips64)$' | xargs)"
Doug Zongker0d8179e2014-04-16 11:34:34 -0700697 local variant="$(echo $* | xargs -n 1 echo | \grep -E '^(user|userdebug|eng)$' | xargs)"
Jeff Hamilton5069bd62014-09-04 21:28:00 -0700698 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 -0800699 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 -0700700
Jeff Gaston9fb05d82017-08-21 18:27:00 -0700701 if [ "$showHelp" != "" ]; then
702 $(gettop)/build/make/tapasHelp.sh
703 return
704 fi
705
Ying Wang67f02922012-08-22 10:25:20 -0700706 if [ $(echo $arch | wc -w) -gt 1 ]; then
707 echo "tapas: Error: Multiple build archs supplied: $arch"
708 return
709 fi
Joe Onoratoda12daf2010-06-09 18:18:31 -0700710 if [ $(echo $variant | wc -w) -gt 1 ]; then
711 echo "tapas: Error: Multiple build variants supplied: $variant"
712 return
713 fi
Jeff Hamilton5069bd62014-09-04 21:28:00 -0700714 if [ $(echo $density | wc -w) -gt 1 ]; then
715 echo "tapas: Error: Multiple densities supplied: $density"
716 return
717 fi
Ying Wang67f02922012-08-22 10:25:20 -0700718
Ying Wang0a76df52015-06-08 11:57:26 -0700719 local product=aosp_arm
Ying Wang67f02922012-08-22 10:25:20 -0700720 case $arch in
Ying Wang0a76df52015-06-08 11:57:26 -0700721 x86) product=aosp_x86;;
722 mips) product=aosp_mips;;
Ying Wangb541ab62014-05-29 17:57:40 -0700723 arm64) product=aosp_arm64;;
724 x86_64) product=aosp_x86_64;;
725 mips64) product=aosp_mips64;;
Ying Wang67f02922012-08-22 10:25:20 -0700726 esac
Joe Onoratoda12daf2010-06-09 18:18:31 -0700727 if [ -z "$variant" ]; then
728 variant=eng
729 fi
Ying Wangc048c9b2010-06-24 15:08:33 -0700730 if [ -z "$apps" ]; then
731 apps=all
732 fi
Justin Morey29d225c2014-11-04 13:35:51 -0600733 if [ -z "$density" ]; then
734 density=alldpi
735 fi
Joe Onoratoda12daf2010-06-09 18:18:31 -0700736
Ying Wang67f02922012-08-22 10:25:20 -0700737 export TARGET_PRODUCT=$product
Joe Onoratoda12daf2010-06-09 18:18:31 -0700738 export TARGET_BUILD_VARIANT=$variant
Jeff Hamilton5069bd62014-09-04 21:28:00 -0700739 export TARGET_BUILD_DENSITY=$density
Joe Onoratoda12daf2010-06-09 18:18:31 -0700740 export TARGET_BUILD_TYPE=release
741 export TARGET_BUILD_APPS=$apps
742
Ying Wang08800fd2016-03-03 20:57:21 -0800743 build_build_var_cache
Joe Onoratoda12daf2010-06-09 18:18:31 -0700744 set_stuff_for_environment
745 printconfig
Ying Wang08800fd2016-03-03 20:57:21 -0800746 destroy_build_var_cache
Joe Onoratoda12daf2010-06-09 18:18:31 -0700747}
748
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700749function gettop
750{
Colin Cross6cdc5d22017-10-20 11:37:33 -0700751 local TOPFILE=build/make/core/envsetup.mk
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700752 if [ -n "$TOP" -a -f "$TOP/$TOPFILE" ] ; then
Brian Carlstroma5c4f172014-09-12 00:33:25 -0700753 # The following circumlocution ensures we remove symlinks from TOP.
754 (cd $TOP; PWD= /bin/pwd)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700755 else
756 if [ -f $TOPFILE ] ; then
Dan Bornsteind0b274d2009-11-24 15:48:50 -0800757 # The following circumlocution (repeated below as well) ensures
758 # that we record the true directory name and not one that is
759 # faked up with symlink names.
760 PWD= /bin/pwd
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700761 else
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800762 local HERE=$PWD
Christopher Ferris55257d22017-03-23 11:08:58 -0700763 local T=
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700764 while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do
Ying Wang9cd17642012-12-13 10:52:07 -0800765 \cd ..
synergyb112a402013-07-05 19:47:47 -0700766 T=`PWD= /bin/pwd -P`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700767 done
Ying Wang9cd17642012-12-13 10:52:07 -0800768 \cd $HERE
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700769 if [ -f "$T/$TOPFILE" ]; then
770 echo $T
771 fi
772 fi
773 fi
774}
775
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700776function croot()
777{
Christopher Ferris55257d22017-03-23 11:08:58 -0700778 local T=$(gettop)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700779 if [ "$T" ]; then
Marie Janssen32ec50a2016-04-21 16:53:39 -0700780 if [ "$1" ]; then
781 \cd $(gettop)/$1
782 else
783 \cd $(gettop)
784 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700785 else
786 echo "Couldn't locate the top of the tree. Try setting TOP."
787 fi
788}
789
Anton Hanssonece9c482019-02-04 18:15:39 +0000790function _croot()
791{
792 local T=$(gettop)
793 if [ "$T" ]; then
794 local cur="${COMP_WORDS[COMP_CWORD]}"
795 k=0
796 for c in $(compgen -d ${T}/${cur}); do
797 COMPREPLY[k++]=${c#${T}/}/
798 done
799 fi
800}
801
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700802function cproj()
803{
Colin Cross6cdc5d22017-10-20 11:37:33 -0700804 local TOPFILE=build/make/core/envsetup.mk
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700805 local HERE=$PWD
Christopher Ferris55257d22017-03-23 11:08:58 -0700806 local T=
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700807 while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do
808 T=$PWD
809 if [ -f "$T/Android.mk" ]; then
Ying Wang9cd17642012-12-13 10:52:07 -0800810 \cd $T
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700811 return
812 fi
Ying Wang9cd17642012-12-13 10:52:07 -0800813 \cd ..
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700814 done
Ying Wang9cd17642012-12-13 10:52:07 -0800815 \cd $HERE
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700816 echo "can't find Android.mk"
817}
818
Daniel Sandler47e0a882013-07-30 13:23:52 -0400819# simplified version of ps; output in the form
820# <pid> <procname>
821function qpid() {
822 local prepend=''
823 local append=''
824 if [ "$1" = "--exact" ]; then
825 prepend=' '
826 append='$'
827 shift
828 elif [ "$1" = "--help" -o "$1" = "-h" ]; then
Ying Wang08800fd2016-03-03 20:57:21 -0800829 echo "usage: qpid [[--exact] <process name|pid>"
830 return 255
831 fi
Daniel Sandler47e0a882013-07-30 13:23:52 -0400832
833 local EXE="$1"
834 if [ "$EXE" ] ; then
Ying Wang08800fd2016-03-03 20:57:21 -0800835 qpid | \grep "$prepend$EXE$append"
836 else
837 adb shell ps \
838 | tr -d '\r' \
839 | sed -e 1d -e 's/^[^ ]* *\([0-9]*\).* \([^ ]*\)$/\1 \2/'
840 fi
Daniel Sandler47e0a882013-07-30 13:23:52 -0400841}
842
Iliyan Malcheve675cfb2014-11-03 17:04:47 -0800843# coredump_setup - enable core dumps globally for any process
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700844# that has the core-file-size limit set correctly
845#
Iliyan Malchevaf5de972014-11-04 20:57:37 -0800846# NOTE: You must call also coredump_enable for a specific process
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700847# if its core-file-size limit is not set already.
848# NOTE: Core dumps are written to ramdisk; they will not survive a reboot!
849
Iliyan Malcheve675cfb2014-11-03 17:04:47 -0800850function coredump_setup()
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700851{
Ying Wang08800fd2016-03-03 20:57:21 -0800852 echo "Getting root...";
853 adb root;
854 adb wait-for-device;
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700855
Ying Wang08800fd2016-03-03 20:57:21 -0800856 echo "Remounting root partition read-write...";
857 adb shell mount -w -o remount -t rootfs rootfs;
858 sleep 1;
859 adb wait-for-device;
860 adb shell mkdir -p /cores;
861 adb shell mount -t tmpfs tmpfs /cores;
862 adb shell chmod 0777 /cores;
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700863
Ying Wang08800fd2016-03-03 20:57:21 -0800864 echo "Granting SELinux permission to dump in /cores...";
865 adb shell restorecon -R /cores;
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700866
Ying Wang08800fd2016-03-03 20:57:21 -0800867 echo "Set core pattern.";
868 adb shell 'echo /cores/core.%p > /proc/sys/kernel/core_pattern';
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700869
Ying Wang08800fd2016-03-03 20:57:21 -0800870 echo "Done."
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700871}
872
Iliyan Malchevaf5de972014-11-04 20:57:37 -0800873# coredump_enable - enable core dumps for the specified process
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700874# $1 = PID of process (e.g., $(pid mediaserver))
875#
Iliyan Malchevaf5de972014-11-04 20:57:37 -0800876# NOTE: coredump_setup must have been called as well for a core
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700877# dump to actually be generated.
878
Iliyan Malchevaf5de972014-11-04 20:57:37 -0800879function coredump_enable()
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700880{
Ying Wang08800fd2016-03-03 20:57:21 -0800881 local PID=$1;
882 if [ -z "$PID" ]; then
883 printf "Expecting a PID!\n";
884 return;
885 fi;
886 echo "Setting core limit for $PID to infinite...";
Elliott Hughes910a3552016-03-07 13:53:53 -0800887 adb shell /system/bin/ulimit -p $PID -c unlimited
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700888}
889
890# core - send SIGV and pull the core for process
891# $1 = PID of process (e.g., $(pid mediaserver))
892#
Iliyan Malchevaf5de972014-11-04 20:57:37 -0800893# NOTE: coredump_setup must be called once per boot for core dumps to be
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700894# enabled globally.
895
896function core()
897{
Ying Wang08800fd2016-03-03 20:57:21 -0800898 local PID=$1;
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700899
Ying Wang08800fd2016-03-03 20:57:21 -0800900 if [ -z "$PID" ]; then
901 printf "Expecting a PID!\n";
902 return;
903 fi;
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700904
Ying Wang08800fd2016-03-03 20:57:21 -0800905 local CORENAME=core.$PID;
906 local COREPATH=/cores/$CORENAME;
907 local SIG=SEGV;
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700908
Ying Wang08800fd2016-03-03 20:57:21 -0800909 coredump_enable $1;
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700910
Ying Wang08800fd2016-03-03 20:57:21 -0800911 local done=0;
912 while [ $(adb shell "[ -d /proc/$PID ] && echo -n yes") ]; do
913 printf "\tSending SIG%s to %d...\n" $SIG $PID;
914 adb shell kill -$SIG $PID;
915 sleep 1;
916 done;
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700917
Ying Wang08800fd2016-03-03 20:57:21 -0800918 adb shell "while [ ! -f $COREPATH ] ; do echo waiting for $COREPATH to be generated; sleep 1; done"
919 echo "Done: core is under $COREPATH on device.";
Iliyan Malchev248f4d52014-10-28 18:00:42 -0700920}
921
Christopher Tate744ee802009-11-12 15:33:08 -0800922# systemstack - dump the current stack trace of all threads in the system process
923# to the usual ANR traces file
924function systemstack()
925{
Jeff Sharkeyf5824372013-02-19 17:00:46 -0800926 stacks system_server
927}
928
Michael Wrightaeed7212014-06-19 19:58:12 -0700929# Read the ELF header from /proc/$PID/exe to determine if the process is
930# 64-bit.
Ben Chengfba67bf2014-02-25 10:27:07 -0800931function is64bit()
932{
933 local PID="$1"
934 if [ "$PID" ] ; then
Elliott Hughesd3e47252018-11-15 16:32:14 -0800935 if [[ "$(adb shell cat /proc/$PID/exe | xxd -l 1 -s 4 -p)" -eq "02" ]] ; then
Ben Chengfba67bf2014-02-25 10:27:07 -0800936 echo "64"
937 else
938 echo ""
939 fi
940 else
941 echo ""
942 fi
943}
944
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700945case `uname -s` in
946 Darwin)
947 function sgrep()
948 {
Aurelio Jargas67edd152018-11-06 17:25:11 +0100949 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 -0400950 -exec grep --color -n "$@" {} +
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700951 }
952
953 ;;
954 *)
955 function sgrep()
956 {
Aurelio Jargas67edd152018-11-06 17:25:11 +0100957 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 -0400958 -exec grep --color -n "$@" {} +
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700959 }
960 ;;
961esac
962
Raghu Gandham8da43102012-07-25 19:57:22 -0700963function gettargetarch
964{
965 get_build_var TARGET_ARCH
966}
967
Jon Boekenoogencbca56f2014-04-07 10:57:38 -0700968function ggrep()
969{
Mike Frysinger5e479732015-09-22 18:13:48 -0400970 find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -type f -name "*\.gradle" \
971 -exec grep --color -n "$@" {} +
Jon Boekenoogencbca56f2014-04-07 10:57:38 -0700972}
973
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700974function jgrep()
975{
Mike Frysinger5e479732015-09-22 18:13:48 -0400976 find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -type f -name "*\.java" \
977 -exec grep --color -n "$@" {} +
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700978}
979
980function cgrep()
981{
Mike Frysinger5e479732015-09-22 18:13:48 -0400982 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' \) \
983 -exec grep --color -n "$@" {} +
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700984}
985
986function resgrep()
987{
Christopher Ferris55257d22017-03-23 11:08:58 -0700988 local dir
Mike Frysinger5e479732015-09-22 18:13:48 -0400989 for dir in `find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -name res -type d`; do
990 find $dir -type f -name '*\.xml' -exec grep --color -n "$@" {} +
991 done
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700992}
993
Jeff Sharkey50b61e92013-03-08 10:20:47 -0800994function mangrep()
995{
Mike Frysinger5e479732015-09-22 18:13:48 -0400996 find . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o -type f -name 'AndroidManifest.xml' \
997 -exec grep --color -n "$@" {} +
Jeff Sharkey50b61e92013-03-08 10:20:47 -0800998}
999
Jeff Sharkeyf17cddf2019-08-21 12:51:26 -06001000function owngrep()
1001{
1002 find . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o -type f -name 'OWNERS' \
1003 -exec grep --color -n "$@" {} +
1004}
1005
Alex Klyubinba5fc8e2013-05-06 14:11:48 -07001006function sepgrep()
1007{
Mike Frysinger5e479732015-09-22 18:13:48 -04001008 find . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o -name sepolicy -type d \
1009 -exec grep --color -n -r --exclude-dir=\.git "$@" {} +
Alex Klyubinba5fc8e2013-05-06 14:11:48 -07001010}
1011
Jeff Sharkeyea0068a2015-02-26 14:13:46 -08001012function rcgrep()
1013{
Mike Frysinger5e479732015-09-22 18:13:48 -04001014 find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -type f -name "*\.rc*" \
1015 -exec grep --color -n "$@" {} +
Jeff Sharkeyea0068a2015-02-26 14:13:46 -08001016}
1017
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001018case `uname -s` in
1019 Darwin)
1020 function mgrep()
1021 {
David Grossd1d6fc52017-05-10 10:49:44 -07001022 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 -04001023 -exec grep --color -n "$@" {} +
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001024 }
1025
1026 function treegrep()
1027 {
Aurelio Jargas67edd152018-11-06 17:25:11 +01001028 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 -04001029 -exec grep --color -n -i "$@" {} +
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001030 }
1031
1032 ;;
1033 *)
1034 function mgrep()
1035 {
David Grossd1d6fc52017-05-10 10:49:44 -07001036 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 -04001037 -exec grep --color -n "$@" {} +
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001038 }
1039
1040 function treegrep()
1041 {
Aurelio Jargas67edd152018-11-06 17:25:11 +01001042 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 -04001043 -exec grep --color -n -i "$@" {} +
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001044 }
1045
1046 ;;
1047esac
1048
1049function getprebuilt
1050{
1051 get_abs_build_var ANDROID_PREBUILTS
1052}
1053
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001054function tracedmdump()
1055{
Christopher Ferris55257d22017-03-23 11:08:58 -07001056 local T=$(gettop)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001057 if [ ! "$T" ]; then
1058 echo "Couldn't locate the top of the tree. Try setting TOP."
1059 return
1060 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001061 local prebuiltdir=$(getprebuilt)
Raghu Gandham8da43102012-07-25 19:57:22 -07001062 local arch=$(gettargetarch)
1063 local KERNEL=$T/prebuilts/qemu-kernel/$arch/vmlinux-qemu
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001064
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001065 local TRACE=$1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001066 if [ ! "$TRACE" ] ; then
1067 echo "usage: tracedmdump tracename"
1068 return
1069 fi
1070
Jack Veenstra60116fc2009-04-09 18:12:34 -07001071 if [ ! -r "$KERNEL" ] ; then
1072 echo "Error: cannot find kernel: '$KERNEL'"
1073 return
1074 fi
1075
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001076 local BASETRACE=$(basename $TRACE)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001077 if [ "$BASETRACE" = "$TRACE" ] ; then
1078 TRACE=$ANDROID_PRODUCT_OUT/traces/$TRACE
1079 fi
1080
1081 echo "post-processing traces..."
1082 rm -f $TRACE/qtrace.dexlist
1083 post_trace $TRACE
1084 if [ $? -ne 0 ]; then
1085 echo "***"
1086 echo "*** Error: malformed trace. Did you remember to exit the emulator?"
1087 echo "***"
1088 return
1089 fi
1090 echo "generating dexlist output..."
1091 /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
1092 echo "generating dmtrace data..."
1093 q2dm -r $ANDROID_PRODUCT_OUT/symbols $TRACE $KERNEL $TRACE/dmtrace || return
1094 echo "generating html file..."
1095 dmtracedump -h $TRACE/dmtrace >| $TRACE/dmtrace.html || return
1096 echo "done, see $TRACE/dmtrace.html for details"
1097 echo "or run:"
1098 echo " traceview $TRACE/dmtrace"
1099}
1100
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001101# communicate with a running device or emulator, set up necessary state,
1102# and run the hat command.
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001103function runhat()
1104{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001105 # process standard adb options
1106 local adbTarget=""
Andy McFaddenb6289852010-07-12 08:00:19 -07001107 if [ "$1" = "-d" -o "$1" = "-e" ]; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001108 adbTarget=$1
1109 shift 1
Andy McFaddenb6289852010-07-12 08:00:19 -07001110 elif [ "$1" = "-s" ]; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001111 adbTarget="$1 $2"
1112 shift 2
1113 fi
1114 local adbOptions=${adbTarget}
Dianne Hackborn6b9549f2012-09-26 15:00:59 -07001115 #echo adbOptions = ${adbOptions}
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001116
1117 # runhat options
1118 local targetPid=$1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001119
1120 if [ "$targetPid" = "" ]; then
Andy McFaddenb6289852010-07-12 08:00:19 -07001121 echo "Usage: runhat [ -d | -e | -s serial ] target-pid"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001122 return
1123 fi
1124
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001125 # confirm hat is available
1126 if [ -z $(which hat) ]; then
1127 echo "hat is not available in this configuration."
1128 return
1129 fi
1130
Andy McFaddenb6289852010-07-12 08:00:19 -07001131 # issue "am" command to cause the hprof dump
Nick Kralevich9948b1e2014-07-18 15:45:38 -07001132 local devFile=/data/local/tmp/hprof-$targetPid
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001133 echo "Poking $targetPid and waiting for data..."
Dianne Hackborn6b9549f2012-09-26 15:00:59 -07001134 echo "Storing data at $devFile"
Andy McFaddenb6289852010-07-12 08:00:19 -07001135 adb ${adbOptions} shell am dumpheap $targetPid $devFile
The Android Open Source Project88b60792009-03-03 19:28:42 -08001136 echo "Press enter when logcat shows \"hprof: heap dump completed\""
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001137 echo -n "> "
1138 read
1139
The Android Open Source Project88b60792009-03-03 19:28:42 -08001140 local localFile=/tmp/$$-hprof
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001141
The Android Open Source Project88b60792009-03-03 19:28:42 -08001142 echo "Retrieving file $devFile..."
1143 adb ${adbOptions} pull $devFile $localFile
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001144
The Android Open Source Project88b60792009-03-03 19:28:42 -08001145 adb ${adbOptions} shell rm $devFile
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001146
The Android Open Source Project88b60792009-03-03 19:28:42 -08001147 echo "Running hat on $localFile"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001148 echo "View the output by pointing your browser at http://localhost:7000/"
1149 echo ""
Dianne Hackborn6e4e1bb2011-11-10 15:19:51 -08001150 hat -JXmx512m $localFile
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001151}
1152
1153function getbugreports()
1154{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001155 local reports=(`adb shell ls /sdcard/bugreports | tr -d '\r'`)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001156
1157 if [ ! "$reports" ]; then
1158 echo "Could not locate any bugreports."
1159 return
1160 fi
1161
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001162 local report
1163 for report in ${reports[@]}
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001164 do
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001165 echo "/sdcard/bugreports/${report}"
1166 adb pull /sdcard/bugreports/${report} ${report}
1167 gunzip ${report}
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001168 done
1169}
1170
Victoria Lease1b296b42012-08-21 15:44:06 -07001171function getsdcardpath()
1172{
1173 adb ${adbOptions} shell echo -n \$\{EXTERNAL_STORAGE\}
1174}
1175
1176function getscreenshotpath()
1177{
1178 echo "$(getsdcardpath)/Pictures/Screenshots"
1179}
1180
1181function getlastscreenshot()
1182{
1183 local screenshot_path=$(getscreenshotpath)
1184 local screenshot=`adb ${adbOptions} ls ${screenshot_path} | grep Screenshot_[0-9-]*.*\.png | sort -rk 3 | cut -d " " -f 4 | head -n 1`
1185 if [ "$screenshot" = "" ]; then
1186 echo "No screenshots found."
1187 return
1188 fi
1189 echo "${screenshot}"
1190 adb ${adbOptions} pull ${screenshot_path}/${screenshot}
1191}
1192
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001193function startviewserver()
1194{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001195 local port=4939
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001196 if [ $# -gt 0 ]; then
1197 port=$1
1198 fi
1199 adb shell service call window 1 i32 $port
1200}
1201
1202function stopviewserver()
1203{
1204 adb shell service call window 2
1205}
1206
1207function isviewserverstarted()
1208{
1209 adb shell service call window 3
1210}
1211
Romain Guyb84049a2010-10-04 16:56:11 -07001212function key_home()
1213{
1214 adb shell input keyevent 3
1215}
1216
1217function key_back()
1218{
1219 adb shell input keyevent 4
1220}
1221
1222function key_menu()
1223{
1224 adb shell input keyevent 82
1225}
1226
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001227function smoketest()
1228{
1229 if [ ! "$ANDROID_PRODUCT_OUT" ]; then
1230 echo "Couldn't locate output files. Try running 'lunch' first." >&2
1231 return
1232 fi
Christopher Ferris55257d22017-03-23 11:08:58 -07001233 local T=$(gettop)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001234 if [ ! "$T" ]; then
1235 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
1236 return
1237 fi
1238
Ying Wang9cd17642012-12-13 10:52:07 -08001239 (\cd "$T" && mmm tests/SmokeTest) &&
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001240 adb uninstall com.android.smoketest > /dev/null &&
1241 adb uninstall com.android.smoketest.tests > /dev/null &&
1242 adb install $ANDROID_PRODUCT_OUT/data/app/SmokeTestApp.apk &&
1243 adb install $ANDROID_PRODUCT_OUT/data/app/SmokeTest.apk &&
1244 adb shell am instrument -w com.android.smoketest.tests/android.test.InstrumentationTestRunner
1245}
1246
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001247# simple shortcut to the runtest command
1248function runtest()
1249{
Christopher Ferris55257d22017-03-23 11:08:58 -07001250 local T=$(gettop)
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001251 if [ ! "$T" ]; then
1252 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
1253 return
1254 fi
Brett Chabot3fb149d2009-10-21 20:05:26 -07001255 ("$T"/development/testrunner/runtest.py $@)
Brett Chabot762748c2009-03-27 10:25:11 -07001256}
1257
The Android Open Source Project88b60792009-03-03 19:28:42 -08001258function godir () {
1259 if [[ -z "$1" ]]; then
1260 echo "Usage: godir <regex>"
1261 return
1262 fi
Christopher Ferris55257d22017-03-23 11:08:58 -07001263 local T=$(gettop)
1264 local FILELIST
Brian Carlstromf2257422015-09-30 20:28:54 -07001265 if [ ! "$OUT_DIR" = "" ]; then
1266 mkdir -p $OUT_DIR
1267 FILELIST=$OUT_DIR/filelist
1268 else
1269 FILELIST=$T/filelist
1270 fi
1271 if [[ ! -f $FILELIST ]]; then
The Android Open Source Project88b60792009-03-03 19:28:42 -08001272 echo -n "Creating index..."
Brian Carlstromf2257422015-09-30 20:28:54 -07001273 (\cd $T; find . -wholename ./out -prune -o -wholename ./.repo -prune -o -type f > $FILELIST)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001274 echo " Done"
1275 echo ""
1276 fi
1277 local lines
Brian Carlstromf2257422015-09-30 20:28:54 -07001278 lines=($(\grep "$1" $FILELIST | sed -e 's/\/[^/]*$//' | sort | uniq))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001279 if [[ ${#lines[@]} = 0 ]]; then
1280 echo "Not found"
1281 return
1282 fi
1283 local pathname
1284 local choice
1285 if [[ ${#lines[@]} > 1 ]]; then
1286 while [[ -z "$pathname" ]]; do
1287 local index=1
1288 local line
1289 for line in ${lines[@]}; do
1290 printf "%6s %s\n" "[$index]" $line
Doug Zongker29034982011-04-22 08:16:56 -07001291 index=$(($index + 1))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001292 done
1293 echo
1294 echo -n "Select one: "
1295 unset choice
1296 read choice
1297 if [[ $choice -gt ${#lines[@]} || $choice -lt 1 ]]; then
1298 echo "Invalid choice"
1299 continue
1300 fi
Kan-Ru Chen07453762010-07-05 15:53:47 +08001301 pathname=${lines[$(($choice-1))]}
The Android Open Source Project88b60792009-03-03 19:28:42 -08001302 done
1303 else
The Android Open Source Project88b60792009-03-03 19:28:42 -08001304 pathname=${lines[0]}
1305 fi
Ying Wang9cd17642012-12-13 10:52:07 -08001306 \cd $T/$pathname
The Android Open Source Project88b60792009-03-03 19:28:42 -08001307}
1308
Steven Moreland62054a42018-12-06 10:11:40 -08001309# Update module-info.json in out.
1310function refreshmod() {
1311 if [ ! "$ANDROID_PRODUCT_OUT" ]; then
1312 echo "No ANDROID_PRODUCT_OUT. Try running 'lunch' first." >&2
1313 return 1
1314 fi
1315
1316 echo "Refreshing modules (building module-info.json). Log at $ANDROID_PRODUCT_OUT/module-info.json.build.log." >&2
1317
1318 # for the output of the next command
1319 mkdir -p $ANDROID_PRODUCT_OUT || return 1
1320
1321 # Note, can't use absolute path because of the way make works.
1322 m out/target/product/$(get_build_var TARGET_DEVICE)/module-info.json \
1323 > $ANDROID_PRODUCT_OUT/module-info.json.build.log 2>&1
1324}
1325
1326# List all modules for the current device, as cached in module-info.json. If any build change is
1327# made and it should be reflected in the output, you should run 'refreshmod' first.
1328function allmod() {
1329 if [ ! "$ANDROID_PRODUCT_OUT" ]; then
1330 echo "No ANDROID_PRODUCT_OUT. Try running 'lunch' first." >&2
1331 return 1
1332 fi
1333
1334 if [ ! -f "$ANDROID_PRODUCT_OUT/module-info.json" ]; then
1335 echo "Could not find module-info.json. It will only be built once, and it can be updated with 'refreshmod'" >&2
1336 refreshmod || return 1
1337 fi
1338
1339 python -c "import json; print '\n'.join(sorted(json.load(open('$ANDROID_PRODUCT_OUT/module-info.json')).keys()))"
1340}
1341
Rett Berg78d1c932019-01-24 14:34:23 -08001342# 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 -08001343# is made, and it should be reflected in the output, you should run 'refreshmod' first.
Rett Berg78d1c932019-01-24 14:34:23 -08001344function pathmod() {
Steven Moreland62054a42018-12-06 10:11:40 -08001345 if [ ! "$ANDROID_PRODUCT_OUT" ]; then
1346 echo "No ANDROID_PRODUCT_OUT. Try running 'lunch' first." >&2
1347 return 1
1348 fi
1349
1350 if [[ $# -ne 1 ]]; then
Rett Berg78d1c932019-01-24 14:34:23 -08001351 echo "usage: pathmod <module>" >&2
Steven Moreland62054a42018-12-06 10:11:40 -08001352 return 1
1353 fi
1354
1355 if [ ! -f "$ANDROID_PRODUCT_OUT/module-info.json" ]; then
1356 echo "Could not find module-info.json. It will only be built once, and it can be updated with 'refreshmod'" >&2
1357 refreshmod || return 1
1358 fi
1359
1360 local relpath=$(python -c "import json, os
1361module = '$1'
1362module_info = json.load(open('$ANDROID_PRODUCT_OUT/module-info.json'))
1363if module not in module_info:
1364 exit(1)
1365print module_info[module]['path'][0]" 2>/dev/null)
1366
1367 if [ -z "$relpath" ]; then
1368 echo "Could not find module '$1' (try 'refreshmod' if there have been build changes?)." >&2
1369 return 1
1370 else
Rett Berg78d1c932019-01-24 14:34:23 -08001371 echo "$ANDROID_BUILD_TOP/$relpath"
Steven Moreland62054a42018-12-06 10:11:40 -08001372 fi
1373}
1374
Rett Berg78d1c932019-01-24 14:34:23 -08001375# Go to a specific module in the android tree, as cached in module-info.json. If any build change
1376# is made, and it should be reflected in the output, you should run 'refreshmod' first.
1377function gomod() {
1378 if [[ $# -ne 1 ]]; then
1379 echo "usage: gomod <module>" >&2
1380 return 1
1381 fi
1382
1383 local path="$(pathmod $@)"
1384 if [ -z "$path" ]; then
1385 return 1
1386 fi
1387 cd $path
1388}
1389
dimitry73b84812018-12-11 18:06:00 +01001390function _complete_android_module_names() {
Steven Moreland62054a42018-12-06 10:11:40 -08001391 local word=${COMP_WORDS[COMP_CWORD]}
1392 COMPREPLY=( $(allmod | grep -E "^$word") )
1393}
1394
Alex Rayf0d08eb2013-03-08 15:15:06 -08001395# Print colored exit condition
1396function pez {
Michael Wrighteb733842013-03-08 17:34:02 -08001397 "$@"
1398 local retval=$?
1399 if [ $retval -ne 0 ]
1400 then
Jacky Cao89483b82015-05-15 22:12:53 +08001401 echo $'\E'"[0;31mFAILURE\e[00m"
Michael Wrighteb733842013-03-08 17:34:02 -08001402 else
Jacky Cao89483b82015-05-15 22:12:53 +08001403 echo $'\E'"[0;32mSUCCESS\e[00m"
Michael Wrighteb733842013-03-08 17:34:02 -08001404 fi
1405 return $retval
Alex Rayf0d08eb2013-03-08 15:15:06 -08001406}
1407
Ying Wanged21d4c2014-08-24 22:14:19 -07001408function get_make_command()
1409{
Dan Willemsend41ec5a2017-07-12 16:14:50 -07001410 # If we're in the top of an Android tree, use soong_ui.bash instead of make
1411 if [ -f build/soong/soong_ui.bash ]; then
Dan Willemsene9842242017-07-28 13:00:13 -07001412 # Always use the real make if -C is passed in
1413 for arg in "$@"; do
1414 if [[ $arg == -C* ]]; then
1415 echo command make
1416 return
1417 fi
1418 done
Dan Willemsend41ec5a2017-07-12 16:14:50 -07001419 echo build/soong/soong_ui.bash --make-mode
1420 else
1421 echo command make
1422 fi
Ying Wanged21d4c2014-08-24 22:14:19 -07001423}
1424
Dan Willemsend41ec5a2017-07-12 16:14:50 -07001425function _wrap_build()
Ed Heylcc6be0a2014-06-18 14:55:58 -07001426{
Sasha Smundak9f27cc02019-01-31 13:25:31 -08001427 if [[ "${ANDROID_QUIET_BUILD:-}" == true ]]; then
1428 "$@"
1429 return $?
1430 fi
Ed Heylcc6be0a2014-06-18 14:55:58 -07001431 local start_time=$(date +"%s")
Dan Willemsend41ec5a2017-07-12 16:14:50 -07001432 "$@"
Ed Heylcc6be0a2014-06-18 14:55:58 -07001433 local ret=$?
1434 local end_time=$(date +"%s")
1435 local tdiff=$(($end_time-$start_time))
1436 local hours=$(($tdiff / 3600 ))
1437 local mins=$((($tdiff % 3600) / 60))
1438 local secs=$(($tdiff % 60))
Greg Hackmannd95c7f72014-06-23 14:05:06 -07001439 local ncolors=$(tput colors 2>/dev/null)
1440 if [ -n "$ncolors" ] && [ $ncolors -ge 8 ]; then
Jacky Cao89483b82015-05-15 22:12:53 +08001441 color_failed=$'\E'"[0;31m"
1442 color_success=$'\E'"[0;32m"
1443 color_reset=$'\E'"[00m"
Greg Hackmannd95c7f72014-06-23 14:05:06 -07001444 else
1445 color_failed=""
1446 color_success=""
1447 color_reset=""
1448 fi
Ed Heylcc6be0a2014-06-18 14:55:58 -07001449 echo
1450 if [ $ret -eq 0 ] ; then
Dan Willemsend41ec5a2017-07-12 16:14:50 -07001451 echo -n "${color_success}#### build completed successfully "
Ed Heylcc6be0a2014-06-18 14:55:58 -07001452 else
Dan Willemsend41ec5a2017-07-12 16:14:50 -07001453 echo -n "${color_failed}#### failed to build some targets "
Ed Heylcc6be0a2014-06-18 14:55:58 -07001454 fi
1455 if [ $hours -gt 0 ] ; then
1456 printf "(%02g:%02g:%02g (hh:mm:ss))" $hours $mins $secs
1457 elif [ $mins -gt 0 ] ; then
1458 printf "(%02g:%02g (mm:ss))" $mins $secs
1459 elif [ $secs -gt 0 ] ; then
1460 printf "(%s seconds)" $secs
1461 fi
Jacky Cao89483b82015-05-15 22:12:53 +08001462 echo " ####${color_reset}"
Ed Heylcc6be0a2014-06-18 14:55:58 -07001463 echo
1464 return $ret
1465}
1466
Patrice Arrudafa7204b2019-06-20 23:40:33 +00001467function _trigger_build()
1468(
1469 local -r bc="$1"; shift
1470 if T="$(gettop)"; then
1471 _wrap_build "$T/build/soong/soong_ui.bash" --build-mode --${bc} --dir="$(pwd)" "$@"
1472 else
1473 echo "Couldn't locate the top of the tree. Try setting TOP."
1474 fi
1475)
1476
1477function m()
1478(
1479 _trigger_build "all-modules" "$@"
1480)
1481
1482function mm()
1483(
1484 _trigger_build "modules-in-a-dir-no-deps" "$@"
1485)
1486
1487function mmm()
1488(
1489 _trigger_build "modules-in-dirs-no-deps" "$@"
1490)
1491
1492function mma()
1493(
1494 _trigger_build "modules-in-a-dir" "$@"
1495)
1496
1497function mmma()
1498(
1499 _trigger_build "modules-in-dirs" "$@"
1500)
1501
Dan Willemsend41ec5a2017-07-12 16:14:50 -07001502function make()
1503{
Dan Willemsene9842242017-07-28 13:00:13 -07001504 _wrap_build $(get_make_command "$@") "$@"
Dan Willemsend41ec5a2017-07-12 16:14:50 -07001505}
1506
David Zeuthen1b126ff2015-09-30 17:10:48 -04001507function provision()
1508{
1509 if [ ! "$ANDROID_PRODUCT_OUT" ]; then
1510 echo "Couldn't locate output files. Try running 'lunch' first." >&2
1511 return 1
1512 fi
1513 if [ ! -e "$ANDROID_PRODUCT_OUT/provision-device" ]; then
1514 echo "There is no provisioning script for the device." >&2
1515 return 1
1516 fi
1517
1518 # Check if user really wants to do this.
1519 if [ "$1" = "--no-confirmation" ]; then
1520 shift 1
1521 else
1522 echo "This action will reflash your device."
1523 echo ""
1524 echo "ALL DATA ON THE DEVICE WILL BE IRREVOCABLY ERASED."
1525 echo ""
Marie Janssen4afc2c02015-11-10 10:41:15 -08001526 echo -n "Are you sure you want to do this (yes/no)? "
1527 read
David Zeuthen1b126ff2015-09-30 17:10:48 -04001528 if [[ "${REPLY}" != "yes" ]] ; then
1529 echo "Not taking any action. Exiting." >&2
1530 return 1
1531 fi
1532 fi
1533 "$ANDROID_PRODUCT_OUT/provision-device" "$@"
1534}
1535
Jim Tanga881a252018-06-19 16:34:41 +08001536# Zsh needs bashcompinit called to support bash-style completion.
Patrik Fimmldf248e62018-10-15 18:15:12 +02001537function enable_zsh_completion() {
1538 # Don't override user's options if bash-style completion is already enabled.
1539 if ! declare -f complete >/dev/null; then
1540 autoload -U compinit && compinit
1541 autoload -U bashcompinit && bashcompinit
1542 fi
Jim Tanga881a252018-06-19 16:34:41 +08001543}
1544
1545function validate_current_shell() {
1546 local current_sh="$(ps -o command -p $$)"
1547 case "$current_sh" in
Raphael Moll70a86b02011-06-20 16:03:14 -07001548 *bash*)
Jim Tanga881a252018-06-19 16:34:41 +08001549 function check_type() { type -t "$1"; }
Raphael Moll70a86b02011-06-20 16:03:14 -07001550 ;;
Jim Tanga881a252018-06-19 16:34:41 +08001551 *zsh*)
1552 function check_type() { type "$1"; }
Patrik Fimmldf248e62018-10-15 18:15:12 +02001553 enable_zsh_completion ;;
Raphael Moll70a86b02011-06-20 16:03:14 -07001554 *)
Jim Tanga881a252018-06-19 16:34:41 +08001555 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 -07001556 ;;
1557 esac
Jim Tanga881a252018-06-19 16:34:41 +08001558}
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001559
1560# Execute the contents of any vendorsetup.sh files we can find.
Dan Willemsend855a722019-02-12 15:52:36 -08001561# Unless we find an allowed-vendorsetup_sh-files file, in which case we'll only
1562# load those.
1563#
1564# This allows loading only approved vendorsetup.sh files
Jim Tanga881a252018-06-19 16:34:41 +08001565function source_vendorsetup() {
Jim Tangc4dba1d2019-07-25 16:54:27 +08001566 unset VENDOR_PYTHONPATH
Dan Willemsend855a722019-02-12 15:52:36 -08001567 allowed=
1568 for f in $(find -L device vendor product -maxdepth 4 -name 'allowed-vendorsetup_sh-files' 2>/dev/null | sort); do
1569 if [ -n "$allowed" ]; then
1570 echo "More than one 'allowed_vendorsetup_sh-files' file found, not including any vendorsetup.sh files:"
1571 echo " $allowed"
1572 echo " $f"
1573 return
1574 fi
1575 allowed="$f"
1576 done
1577
1578 allowed_files=
1579 [ -n "$allowed" ] && allowed_files=$(cat "$allowed")
Jim Tanga881a252018-06-19 16:34:41 +08001580 for dir in device vendor product; do
1581 for f in $(test -d $dir && \
1582 find -L $dir -maxdepth 4 -name 'vendorsetup.sh' 2>/dev/null | sort); do
Dan Willemsend855a722019-02-12 15:52:36 -08001583
1584 if [[ -z "$allowed" || "$allowed_files" =~ $f ]]; then
1585 echo "including $f"; . "$f"
1586 else
1587 echo "ignoring $f, not in $allowed"
1588 fi
Jim Tanga881a252018-06-19 16:34:41 +08001589 done
1590 done
1591}
Kenny Root52aa81c2011-07-15 11:07:06 -07001592
Jim Tanga881a252018-06-19 16:34:41 +08001593validate_current_shell
1594source_vendorsetup
Kenny Root52aa81c2011-07-15 11:07:06 -07001595addcompletions