OSDN Git Service

am f0200e87: am 72146221: am 0b3aa00e: am da111964: (-s ours) am d23dcdf1: am a0130a4...
[android-x86/build.git] / envsetup.sh
1 function hmm() {
2 cat <<EOF
3 Invoke ". build/envsetup.sh" from your shell to add the following functions to your environment:
4 - lunch:   lunch <product_name>-<build_variant>
5 - tapas:   tapas [<App1> <App2> ...] [arm|x86|mips|armv5] [eng|userdebug|user]
6 - croot:   Changes directory to the top of the tree.
7 - m:       Makes from the top of the tree.
8 - mm:      Builds all of the modules in the current directory, but not their dependencies.
9 - mmm:     Builds all of the modules in the supplied directories, but not their dependencies.
10            To limit the modules being built use the syntax: mmm dir/:target1,target2.
11 - mma:     Builds all of the modules in the current directory, and their dependencies.
12 - mmma:    Builds all of the modules in the supplied directories, and their dependencies.
13 - cgrep:   Greps on all local C/C++ files.
14 - ggrep:   Greps on all local Gradle files.
15 - jgrep:   Greps on all local Java files.
16 - resgrep: Greps on all local res/*.xml files.
17 - godir:   Go to the directory containing a file.
18
19 Look at the source to view more functions. The complete list is:
20 EOF
21     T=$(gettop)
22     local A
23     A=""
24     for i in `cat $T/build/envsetup.sh | sed -n "/^function /s/function \([a-z_]*\).*/\1/p" | sort`; do
25       A="$A $i"
26     done
27     echo $A
28 }
29
30 # Get the value of a build variable as an absolute path.
31 function get_abs_build_var()
32 {
33     T=$(gettop)
34     if [ ! "$T" ]; then
35         echo "Couldn't locate the top of the tree.  Try setting TOP." >&2
36         return
37     fi
38     (\cd $T; CALLED_FROM_SETUP=true BUILD_SYSTEM=build/core \
39       make --no-print-directory -f build/core/config.mk dumpvar-abs-$1)
40 }
41
42 # Get the exact value of a build variable.
43 function get_build_var()
44 {
45     T=$(gettop)
46     if [ ! "$T" ]; then
47         echo "Couldn't locate the top of the tree.  Try setting TOP." >&2
48         return
49     fi
50     (\cd $T; CALLED_FROM_SETUP=true BUILD_SYSTEM=build/core \
51       make --no-print-directory -f build/core/config.mk dumpvar-$1)
52 }
53
54 # check to see if the supplied product is one we can build
55 function check_product()
56 {
57     T=$(gettop)
58     if [ ! "$T" ]; then
59         echo "Couldn't locate the top of the tree.  Try setting TOP." >&2
60         return
61     fi
62         TARGET_PRODUCT=$1 \
63         TARGET_BUILD_VARIANT= \
64         TARGET_BUILD_TYPE= \
65         TARGET_BUILD_APPS= \
66         get_build_var TARGET_DEVICE > /dev/null
67     # hide successful answers, but allow the errors to show
68 }
69
70 VARIANT_CHOICES=(user userdebug eng)
71
72 # check to see if the supplied variant is valid
73 function check_variant()
74 {
75     for v in ${VARIANT_CHOICES[@]}
76     do
77         if [ "$v" = "$1" ]
78         then
79             return 0
80         fi
81     done
82     return 1
83 }
84
85 function setpaths()
86 {
87     T=$(gettop)
88     if [ ! "$T" ]; then
89         echo "Couldn't locate the top of the tree.  Try setting TOP."
90         return
91     fi
92
93     ##################################################################
94     #                                                                #
95     #              Read me before you modify this code               #
96     #                                                                #
97     #   This function sets ANDROID_BUILD_PATHS to what it is adding  #
98     #   to PATH, and the next time it is run, it removes that from   #
99     #   PATH.  This is required so lunch can be run more than once   #
100     #   and still have working paths.                                #
101     #                                                                #
102     ##################################################################
103
104     # Note: on windows/cygwin, ANDROID_BUILD_PATHS will contain spaces
105     # due to "C:\Program Files" being in the path.
106
107     # out with the old
108     if [ -n "$ANDROID_BUILD_PATHS" ] ; then
109         export PATH=${PATH/$ANDROID_BUILD_PATHS/}
110     fi
111     if [ -n "$ANDROID_PRE_BUILD_PATHS" ] ; then
112         export PATH=${PATH/$ANDROID_PRE_BUILD_PATHS/}
113         # strip leading ':', if any
114         export PATH=${PATH/:%/}
115     fi
116
117     # and in with the new
118     prebuiltdir=$(getprebuilt)
119     gccprebuiltdir=$(get_abs_build_var ANDROID_GCC_PREBUILTS)
120
121     # defined in core/config.mk
122     targetgccversion=$(get_build_var TARGET_GCC_VERSION)
123     targetgccversion2=$(get_build_var 2ND_TARGET_GCC_VERSION)
124     export TARGET_GCC_VERSION=$targetgccversion
125
126     # The gcc toolchain does not exists for windows/cygwin. In this case, do not reference it.
127     export ANDROID_TOOLCHAIN=
128     export ANDROID_TOOLCHAIN_2ND_ARCH=
129     local ARCH=$(get_build_var TARGET_ARCH)
130     case $ARCH in
131         x86) toolchaindir=x86/x86_64-linux-android-$targetgccversion/bin
132             ;;
133         x86_64) toolchaindir=x86/x86_64-linux-android-$targetgccversion/bin
134             ;;
135         arm) toolchaindir=arm/arm-linux-androideabi-$targetgccversion/bin
136             ;;
137         arm64) toolchaindir=aarch64/aarch64-linux-android-$targetgccversion/bin;
138                toolchaindir2=arm/arm-linux-androideabi-$targetgccversion2/bin
139             ;;
140         mips) toolchaindir=mips/mipsel-linux-android-$targetgccversion/bin
141             ;;
142         mips64) toolchaindir=mips/mips64el-linux-android-$targetgccversion/bin
143             ;;
144         *)
145             echo "Can't find toolchain for unknown architecture: $ARCH"
146             toolchaindir=xxxxxxxxx
147             ;;
148     esac
149     if [ -d "$gccprebuiltdir/$toolchaindir" ]; then
150         export ANDROID_TOOLCHAIN=$gccprebuiltdir/$toolchaindir
151     fi
152
153     if [ -d "$gccprebuiltdir/$toolchaindir2" ]; then
154         export ANDROID_TOOLCHAIN_2ND_ARCH=$gccprebuiltdir/$toolchaindir2
155     fi
156
157     unset ANDROID_KERNEL_TOOLCHAIN_PATH
158     case $ARCH in
159         arm)
160             # Legacy toolchain configuration used for ARM kernel compilation
161             toolchaindir=arm/arm-eabi-$targetgccversion/bin
162             if [ -d "$gccprebuiltdir/$toolchaindir" ]; then
163                  export ARM_EABI_TOOLCHAIN="$gccprebuiltdir/$toolchaindir"
164                  ANDROID_KERNEL_TOOLCHAIN_PATH="$ARM_EABI_TOOLCHAIN":
165             fi
166             ;;
167         *)
168             # No need to set ARM_EABI_TOOLCHAIN for other ARCHs
169             ;;
170     esac
171
172     export ANDROID_DEV_SCRIPTS=$T/development/scripts:$T/prebuilts/devtools/tools
173     export ANDROID_BUILD_PATHS=$(get_build_var ANDROID_BUILD_PATHS):$ANDROID_TOOLCHAIN:$ANDROID_TOOLCHAIN_2ND_ARCH:$ANDROID_KERNEL_TOOLCHAIN_PATH$ANDROID_DEV_SCRIPTS:
174
175     # If prebuilts/android-emulator/<system>/ exists, prepend it to our PATH
176     # to ensure that the corresponding 'emulator' binaries are used.
177     case $(uname -s) in
178         Darwin)
179             ANDROID_EMULATOR_PREBUILTS=$T/prebuilts/android-emulator/darwin-x86_64
180             ;;
181         Linux)
182             ANDROID_EMULATOR_PREBUILTS=$T/prebuilts/android-emulator/linux-x86_64
183             ;;
184         *)
185             ANDROID_EMULATOR_PREBUILTS=
186             ;;
187     esac
188     if [ -n "$ANDROID_EMULATOR_PREBUILTS" -a -d "$ANDROID_EMULATOR_PREBUILTS" ]; then
189         ANDROID_BUILD_PATHS=$ANDROID_BUILD_PATHS$ANDROID_EMULATOR_PREBUILTS:
190         export ANDROID_EMULATOR_PREBUILTS
191     fi
192
193     export PATH=$ANDROID_BUILD_PATHS$PATH
194
195     unset ANDROID_JAVA_TOOLCHAIN
196     unset ANDROID_PRE_BUILD_PATHS
197     if [ -n "$JAVA_HOME" ]; then
198         export ANDROID_JAVA_TOOLCHAIN=$JAVA_HOME/bin
199         export ANDROID_PRE_BUILD_PATHS=$ANDROID_JAVA_TOOLCHAIN:
200         export PATH=$ANDROID_PRE_BUILD_PATHS$PATH
201     fi
202
203     unset ANDROID_PRODUCT_OUT
204     export ANDROID_PRODUCT_OUT=$(get_abs_build_var PRODUCT_OUT)
205     export OUT=$ANDROID_PRODUCT_OUT
206
207     unset ANDROID_HOST_OUT
208     export ANDROID_HOST_OUT=$(get_abs_build_var HOST_OUT)
209
210     # needed for building linux on MacOS
211     # TODO: fix the path
212     #export HOST_EXTRACFLAGS="-I "$T/system/kernel_headers/host_include
213 }
214
215 function printconfig()
216 {
217     T=$(gettop)
218     if [ ! "$T" ]; then
219         echo "Couldn't locate the top of the tree.  Try setting TOP." >&2
220         return
221     fi
222     get_build_var report_config
223 }
224
225 function set_stuff_for_environment()
226 {
227     settitle
228     set_java_home
229     setpaths
230     set_sequence_number
231
232     export ANDROID_BUILD_TOP=$(gettop)
233     # With this environment variable new GCC can apply colors to warnings/errors
234     export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
235 }
236
237 function set_sequence_number()
238 {
239     export BUILD_ENV_SEQUENCE_NUMBER=10
240 }
241
242 function settitle()
243 {
244     if [ "$STAY_OFF_MY_LAWN" = "" ]; then
245         local arch=$(gettargetarch)
246         local product=$TARGET_PRODUCT
247         local variant=$TARGET_BUILD_VARIANT
248         local apps=$TARGET_BUILD_APPS
249         if [ -z "$apps" ]; then
250             export PROMPT_COMMAND="echo -ne \"\033]0;[${arch}-${product}-${variant}] ${USER}@${HOSTNAME}: ${PWD}\007\""
251         else
252             export PROMPT_COMMAND="echo -ne \"\033]0;[$arch $apps $variant] ${USER}@${HOSTNAME}: ${PWD}\007\""
253         fi
254     fi
255 }
256
257 function addcompletions()
258 {
259     local T dir f
260
261     # Keep us from trying to run in something that isn't bash.
262     if [ -z "${BASH_VERSION}" ]; then
263         return
264     fi
265
266     # Keep us from trying to run in bash that's too old.
267     if [ ${BASH_VERSINFO[0]} -lt 3 ]; then
268         return
269     fi
270
271     dir="sdk/bash_completion"
272     if [ -d ${dir} ]; then
273         for f in `/bin/ls ${dir}/[a-z]*.bash 2> /dev/null`; do
274             echo "including $f"
275             . $f
276         done
277     fi
278 }
279
280 function choosetype()
281 {
282     echo "Build type choices are:"
283     echo "     1. release"
284     echo "     2. debug"
285     echo
286
287     local DEFAULT_NUM DEFAULT_VALUE
288     DEFAULT_NUM=1
289     DEFAULT_VALUE=release
290
291     export TARGET_BUILD_TYPE=
292     local ANSWER
293     while [ -z $TARGET_BUILD_TYPE ]
294     do
295         echo -n "Which would you like? ["$DEFAULT_NUM"] "
296         if [ -z "$1" ] ; then
297             read ANSWER
298         else
299             echo $1
300             ANSWER=$1
301         fi
302         case $ANSWER in
303         "")
304             export TARGET_BUILD_TYPE=$DEFAULT_VALUE
305             ;;
306         1)
307             export TARGET_BUILD_TYPE=release
308             ;;
309         release)
310             export TARGET_BUILD_TYPE=release
311             ;;
312         2)
313             export TARGET_BUILD_TYPE=debug
314             ;;
315         debug)
316             export TARGET_BUILD_TYPE=debug
317             ;;
318         *)
319             echo
320             echo "I didn't understand your response.  Please try again."
321             echo
322             ;;
323         esac
324         if [ -n "$1" ] ; then
325             break
326         fi
327     done
328
329     set_stuff_for_environment
330 }
331
332 #
333 # This function isn't really right:  It chooses a TARGET_PRODUCT
334 # based on the list of boards.  Usually, that gets you something
335 # that kinda works with a generic product, but really, you should
336 # pick a product by name.
337 #
338 function chooseproduct()
339 {
340     if [ "x$TARGET_PRODUCT" != x ] ; then
341         default_value=$TARGET_PRODUCT
342     else
343         default_value=full
344     fi
345
346     export TARGET_PRODUCT=
347     local ANSWER
348     while [ -z "$TARGET_PRODUCT" ]
349     do
350         echo -n "Which product would you like? [$default_value] "
351         if [ -z "$1" ] ; then
352             read ANSWER
353         else
354             echo $1
355             ANSWER=$1
356         fi
357
358         if [ -z "$ANSWER" ] ; then
359             export TARGET_PRODUCT=$default_value
360         else
361             if check_product $ANSWER
362             then
363                 export TARGET_PRODUCT=$ANSWER
364             else
365                 echo "** Not a valid product: $ANSWER"
366             fi
367         fi
368         if [ -n "$1" ] ; then
369             break
370         fi
371     done
372
373     set_stuff_for_environment
374 }
375
376 function choosevariant()
377 {
378     echo "Variant choices are:"
379     local index=1
380     local v
381     for v in ${VARIANT_CHOICES[@]}
382     do
383         # The product name is the name of the directory containing
384         # the makefile we found, above.
385         echo "     $index. $v"
386         index=$(($index+1))
387     done
388
389     local default_value=eng
390     local ANSWER
391
392     export TARGET_BUILD_VARIANT=
393     while [ -z "$TARGET_BUILD_VARIANT" ]
394     do
395         echo -n "Which would you like? [$default_value] "
396         if [ -z "$1" ] ; then
397             read ANSWER
398         else
399             echo $1
400             ANSWER=$1
401         fi
402
403         if [ -z "$ANSWER" ] ; then
404             export TARGET_BUILD_VARIANT=$default_value
405         elif (echo -n $ANSWER | grep -q -e "^[0-9][0-9]*$") ; then
406             if [ "$ANSWER" -le "${#VARIANT_CHOICES[@]}" ] ; then
407                 export TARGET_BUILD_VARIANT=${VARIANT_CHOICES[$(($ANSWER-1))]}
408             fi
409         else
410             if check_variant $ANSWER
411             then
412                 export TARGET_BUILD_VARIANT=$ANSWER
413             else
414                 echo "** Not a valid variant: $ANSWER"
415             fi
416         fi
417         if [ -n "$1" ] ; then
418             break
419         fi
420     done
421 }
422
423 function choosecombo()
424 {
425     choosetype $1
426
427     echo
428     echo
429     chooseproduct $2
430
431     echo
432     echo
433     choosevariant $3
434
435     echo
436     set_stuff_for_environment
437     printconfig
438 }
439
440 # Clear this variable.  It will be built up again when the vendorsetup.sh
441 # files are included at the end of this file.
442 unset LUNCH_MENU_CHOICES
443 function add_lunch_combo()
444 {
445     local new_combo=$1
446     local c
447     for c in ${LUNCH_MENU_CHOICES[@]} ; do
448         if [ "$new_combo" = "$c" ] ; then
449             return
450         fi
451     done
452     LUNCH_MENU_CHOICES=(${LUNCH_MENU_CHOICES[@]} $new_combo)
453 }
454
455 # add the default one here
456 add_lunch_combo aosp_arm-eng
457 add_lunch_combo aosp_arm64-eng
458 add_lunch_combo aosp_mips-eng
459 add_lunch_combo aosp_mips64-eng
460 add_lunch_combo aosp_x86-eng
461 add_lunch_combo aosp_x86_64-eng
462 add_lunch_combo vbox_x86-eng
463
464 function print_lunch_menu()
465 {
466     local uname=$(uname)
467     echo
468     echo "You're building on" $uname
469     echo
470     echo "Lunch menu... pick a combo:"
471
472     local i=1
473     local choice
474     for choice in ${LUNCH_MENU_CHOICES[@]}
475     do
476         echo "     $i. $choice"
477         i=$(($i+1))
478     done
479
480     echo
481 }
482
483 function lunch()
484 {
485     local answer
486
487     if [ "$1" ] ; then
488         answer=$1
489     else
490         print_lunch_menu
491         echo -n "Which would you like? [aosp_arm-eng] "
492         read answer
493     fi
494
495     local selection=
496
497     if [ -z "$answer" ]
498     then
499         selection=aosp_arm-eng
500     elif (echo -n $answer | grep -q -e "^[0-9][0-9]*$")
501     then
502         if [ $answer -le ${#LUNCH_MENU_CHOICES[@]} ]
503         then
504             selection=${LUNCH_MENU_CHOICES[$(($answer-1))]}
505         fi
506     elif (echo -n $answer | grep -q -e "^[^\-][^\-]*-[^\-][^\-]*$")
507     then
508         selection=$answer
509     fi
510
511     if [ -z "$selection" ]
512     then
513         echo
514         echo "Invalid lunch combo: $answer"
515         return 1
516     fi
517
518     export TARGET_BUILD_APPS=
519
520     local product=$(echo -n $selection | sed -e "s/-.*$//")
521     check_product $product
522     if [ $? -ne 0 ]
523     then
524         echo
525         echo "** Don't have a product spec for: '$product'"
526         echo "** Do you have the right repo manifest?"
527         product=
528     fi
529
530     local variant=$(echo -n $selection | sed -e "s/^[^\-]*-//")
531     check_variant $variant
532     if [ $? -ne 0 ]
533     then
534         echo
535         echo "** Invalid variant: '$variant'"
536         echo "** Must be one of ${VARIANT_CHOICES[@]}"
537         variant=
538     fi
539
540     if [ -z "$product" -o -z "$variant" ]
541     then
542         echo
543         return 1
544     fi
545
546     export TARGET_PRODUCT=$product
547     export TARGET_BUILD_VARIANT=$variant
548     export TARGET_BUILD_TYPE=release
549
550     echo
551
552     set_stuff_for_environment
553     printconfig
554 }
555
556 # Tab completion for lunch.
557 function _lunch()
558 {
559     local cur prev opts
560     COMPREPLY=()
561     cur="${COMP_WORDS[COMP_CWORD]}"
562     prev="${COMP_WORDS[COMP_CWORD-1]}"
563
564     COMPREPLY=( $(compgen -W "${LUNCH_MENU_CHOICES[*]}" -- ${cur}) )
565     return 0
566 }
567 complete -F _lunch lunch
568
569 # Configures the build to build unbundled apps.
570 # Run tapas with one ore more app names (from LOCAL_PACKAGE_NAME)
571 function tapas()
572 {
573     local arch=$(echo -n $(echo $* | xargs -n 1 echo | \grep -E '^(arm|x86|mips|armv5)$'))
574     local variant=$(echo -n $(echo $* | xargs -n 1 echo | \grep -E '^(user|userdebug|eng)$'))
575     local apps=$(echo -n $(echo $* | xargs -n 1 echo | \grep -E -v '^(user|userdebug|eng|arm|x86|mips|armv5)$'))
576
577     if [ $(echo $arch | wc -w) -gt 1 ]; then
578         echo "tapas: Error: Multiple build archs supplied: $arch"
579         return
580     fi
581     if [ $(echo $variant | wc -w) -gt 1 ]; then
582         echo "tapas: Error: Multiple build variants supplied: $variant"
583         return
584     fi
585
586     local product=full
587     case $arch in
588       x86)   product=full_x86;;
589       mips)  product=full_mips;;
590       armv5) product=generic_armv5;;
591     esac
592     if [ -z "$variant" ]; then
593         variant=eng
594     fi
595     if [ -z "$apps" ]; then
596         apps=all
597     fi
598
599     export TARGET_PRODUCT=$product
600     export TARGET_BUILD_VARIANT=$variant
601     export TARGET_BUILD_TYPE=release
602     export TARGET_BUILD_APPS=$apps
603
604     set_stuff_for_environment
605     printconfig
606 }
607
608 function gettop
609 {
610     local TOPFILE=build/core/envsetup.mk
611     if [ -n "$TOP" -a -f "$TOP/$TOPFILE" ] ; then
612         echo $TOP
613     else
614         if [ -f $TOPFILE ] ; then
615             # The following circumlocution (repeated below as well) ensures
616             # that we record the true directory name and not one that is
617             # faked up with symlink names.
618             PWD= /bin/pwd
619         else
620             local HERE=$PWD
621             T=
622             while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do
623                 \cd ..
624                 T=`PWD= /bin/pwd -P`
625             done
626             \cd $HERE
627             if [ -f "$T/$TOPFILE" ]; then
628                 echo $T
629             fi
630         fi
631     fi
632 }
633
634 # Return driver for "make", if any (eg. static analyzer)
635 function getdriver()
636 {
637     local T="$1"
638     test "$WITH_STATIC_ANALYZER" = "0" && unset WITH_STATIC_ANALYZER
639     if [ -n "$WITH_STATIC_ANALYZER" ]; then
640         echo "\
641 $T/prebuilts/misc/linux-x86/analyzer/tools/scan-build/scan-build \
642 --use-analyzer $T/prebuilts/misc/linux-x86/analyzer/bin/analyzer \
643 --status-bugs \
644 --top=$T"
645     fi
646 }
647
648 function m()
649 {
650     local T=$(gettop)
651     local DRV=$(getdriver $T)
652     if [ "$T" ]; then
653         $DRV make -C $T -f build/core/main.mk $@
654     else
655         echo "Couldn't locate the top of the tree.  Try setting TOP."
656     fi
657 }
658
659 function findmakefile()
660 {
661     TOPFILE=build/core/envsetup.mk
662     local HERE=$PWD
663     T=
664     while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do
665         T=`PWD= /bin/pwd`
666         if [ -f "$T/Android.mk" ]; then
667             echo $T/Android.mk
668             \cd $HERE
669             return
670         fi
671         \cd ..
672     done
673     \cd $HERE
674 }
675
676 function mm()
677 {
678     local T=$(gettop)
679     local DRV=$(getdriver $T)
680     # If we're sitting in the root of the build tree, just do a
681     # normal make.
682     if [ -f build/core/envsetup.mk -a -f Makefile ]; then
683         $DRV make $@
684     else
685         # Find the closest Android.mk file.
686         local M=$(findmakefile)
687         local MODULES=
688         local GET_INSTALL_PATH=
689         local ARGS=
690         # Remove the path to top as the makefilepath needs to be relative
691         local M=`echo $M|sed 's:'$T'/::'`
692         if [ ! "$T" ]; then
693             echo "Couldn't locate the top of the tree.  Try setting TOP."
694         elif [ ! "$M" ]; then
695             echo "Couldn't locate a makefile from the current directory."
696         else
697             for ARG in $@; do
698                 case $ARG in
699                   GET-INSTALL-PATH) GET_INSTALL_PATH=$ARG;;
700                 esac
701             done
702             if [ -n "$GET_INSTALL_PATH" ]; then
703               MODULES=
704               ARGS=GET-INSTALL-PATH
705             else
706               MODULES=all_modules
707               ARGS=$@
708             fi
709             ONE_SHOT_MAKEFILE=$M $DRV make -C $T -f build/core/main.mk $MODULES $ARGS
710         fi
711     fi
712 }
713
714 function mmm()
715 {
716     local T=$(gettop)
717     local DRV=$(getdriver $T)
718     if [ "$T" ]; then
719         local MAKEFILE=
720         local MODULES=
721         local ARGS=
722         local DIR TO_CHOP
723         local GET_INSTALL_PATH=
724         local DASH_ARGS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^-.*$/')
725         local DIRS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^[^-].*$/')
726         for DIR in $DIRS ; do
727             MODULES=`echo $DIR | sed -n -e 's/.*:\(.*$\)/\1/p' | sed 's/,/ /'`
728             if [ "$MODULES" = "" ]; then
729                 MODULES=all_modules
730             fi
731             DIR=`echo $DIR | sed -e 's/:.*//' -e 's:/$::'`
732             if [ -f $DIR/Android.mk ]; then
733                 local TO_CHOP=`(\cd -P -- $T && pwd -P) | wc -c | tr -d ' '`
734                 local TO_CHOP=`expr $TO_CHOP + 1`
735                 local START=`PWD= /bin/pwd`
736                 local MFILE=`echo $START | cut -c${TO_CHOP}-`
737                 if [ "$MFILE" = "" ] ; then
738                     MFILE=$DIR/Android.mk
739                 else
740                     MFILE=$MFILE/$DIR/Android.mk
741                 fi
742                 MAKEFILE="$MAKEFILE $MFILE"
743             else
744                 case $DIR in
745                   showcommands | snod | dist | incrementaljavac) ARGS="$ARGS $DIR";;
746                   GET-INSTALL-PATH) GET_INSTALL_PATH=$DIR;;
747                   *) echo "No Android.mk in $DIR."; return 1;;
748                 esac
749             fi
750         done
751         if [ -n "$GET_INSTALL_PATH" ]; then
752           ARGS=$GET_INSTALL_PATH
753           MODULES=
754         fi
755         ONE_SHOT_MAKEFILE="$MAKEFILE" $DRV make -C $T -f build/core/main.mk $DASH_ARGS $MODULES $ARGS
756     else
757         echo "Couldn't locate the top of the tree.  Try setting TOP."
758     fi
759 }
760
761 function mma()
762 {
763   local T=$(gettop)
764   local DRV=$(getdriver $T)
765   if [ -f build/core/envsetup.mk -a -f Makefile ]; then
766     $DRV make $@
767   else
768     if [ ! "$T" ]; then
769       echo "Couldn't locate the top of the tree.  Try setting TOP."
770     fi
771     local MY_PWD=`PWD= /bin/pwd|sed 's:'$T'/::'`
772     $DRV make -C $T -f build/core/main.mk $@ all_modules BUILD_MODULES_IN_PATHS="$MY_PWD"
773   fi
774 }
775
776 function mmma()
777 {
778   local T=$(gettop)
779   local DRV=$(getdriver $T)
780   if [ "$T" ]; then
781     local DASH_ARGS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^-.*$/')
782     local DIRS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^[^-].*$/')
783     local MY_PWD=`PWD= /bin/pwd`
784     if [ "$MY_PWD" = "$T" ]; then
785       MY_PWD=
786     else
787       MY_PWD=`echo $MY_PWD|sed 's:'$T'/::'`
788     fi
789     local DIR=
790     local MODULE_PATHS=
791     local ARGS=
792     for DIR in $DIRS ; do
793       if [ -d $DIR ]; then
794         if [ "$MY_PWD" = "" ]; then
795           MODULE_PATHS="$MODULE_PATHS $DIR"
796         else
797           MODULE_PATHS="$MODULE_PATHS $MY_PWD/$DIR"
798         fi
799       else
800         case $DIR in
801           showcommands | snod | dist | incrementaljavac) ARGS="$ARGS $DIR";;
802           *) echo "Couldn't find directory $DIR"; return 1;;
803         esac
804       fi
805     done
806     $DRV make -C $T -f build/core/main.mk $DASH_ARGS $ARGS all_modules BUILD_MODULES_IN_PATHS="$MODULE_PATHS"
807   else
808     echo "Couldn't locate the top of the tree.  Try setting TOP."
809   fi
810 }
811
812 function croot()
813 {
814     T=$(gettop)
815     if [ "$T" ]; then
816         \cd $(gettop)
817     else
818         echo "Couldn't locate the top of the tree.  Try setting TOP."
819     fi
820 }
821
822 function cproj()
823 {
824     TOPFILE=build/core/envsetup.mk
825     local HERE=$PWD
826     T=
827     while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do
828         T=$PWD
829         if [ -f "$T/Android.mk" ]; then
830             \cd $T
831             return
832         fi
833         \cd ..
834     done
835     \cd $HERE
836     echo "can't find Android.mk"
837 }
838
839 # simplified version of ps; output in the form
840 # <pid> <procname>
841 function qpid() {
842     local prepend=''
843     local append=''
844     if [ "$1" = "--exact" ]; then
845         prepend=' '
846         append='$'
847         shift
848     elif [ "$1" = "--help" -o "$1" = "-h" ]; then
849                 echo "usage: qpid [[--exact] <process name|pid>"
850                 return 255
851         fi
852
853     local EXE="$1"
854     if [ "$EXE" ] ; then
855                 qpid | \grep "$prepend$EXE$append"
856         else
857                 adb shell ps \
858                         | tr -d '\r' \
859                         | sed -e 1d -e 's/^[^ ]* *\([0-9]*\).* \([^ ]*\)$/\1 \2/'
860         fi
861 }
862
863 function pid()
864 {
865     local prepend=''
866     local append=''
867     if [ "$1" = "--exact" ]; then
868         prepend=' '
869         append='$'
870         shift
871     fi
872     local EXE="$1"
873     if [ "$EXE" ] ; then
874         local PID=`adb shell ps \
875             | tr -d '\r' \
876             | \grep "$prepend$EXE$append" \
877             | sed -e 's/^[^ ]* *\([0-9]*\).*$/\1/'`
878         echo "$PID"
879     else
880         echo "usage: pid [--exact] <process name>"
881                 return 255
882     fi
883 }
884
885 # systemstack - dump the current stack trace of all threads in the system process
886 # to the usual ANR traces file
887 function systemstack()
888 {
889     stacks system_server
890 }
891
892 function stacks()
893 {
894     if [[ $1 =~ ^[0-9]+$ ]] ; then
895         local PID="$1"
896     elif [ "$1" ] ; then
897         local PIDLIST="$(pid $1)"
898         if [[ $PIDLIST =~ ^[0-9]+$ ]] ; then
899             local PID="$PIDLIST"
900         elif [ "$PIDLIST" ] ; then
901             echo "more than one process: $1"
902         else
903             echo "no such process: $1"
904         fi
905     else
906         echo "usage: stacks [pid|process name]"
907     fi
908
909     if [ "$PID" ] ; then
910         # Determine whether the process is native
911         if adb shell ls -l /proc/$PID/exe | grep -q /system/bin/app_process ; then
912             # Dump stacks of Dalvik process
913             local TRACES=/data/anr/traces.txt
914             local ORIG=/data/anr/traces.orig
915             local TMP=/data/anr/traces.tmp
916
917             # Keep original traces to avoid clobbering
918             adb shell mv $TRACES $ORIG
919
920             # Make sure we have a usable file
921             adb shell touch $TRACES
922             adb shell chmod 666 $TRACES
923
924             # Dump stacks and wait for dump to finish
925             adb shell kill -3 $PID
926             adb shell notify $TRACES >/dev/null
927
928             # Restore original stacks, and show current output
929             adb shell mv $TRACES $TMP
930             adb shell mv $ORIG $TRACES
931             adb shell cat $TMP
932         else
933             # Dump stacks of native process
934             local USE64BIT="$(is64bit $PID)"
935             adb shell debuggerd$USE64BIT -b $PID
936         fi
937     fi
938 }
939
940 function gdbwrapper()
941 {
942     local GDB_CMD="$1"
943     shift 1
944     $GDB_CMD -x "$@"
945 }
946
947 function get_symbols_directory()
948 {
949     echo $(get_abs_build_var TARGET_OUT_UNSTRIPPED)
950 }
951
952 # Read the ELF header from /proc/$PID/exe to determine if the process is
953 # 64-bit.
954 function is64bit()
955 {
956     local PID="$1"
957     if [ "$PID" ] ; then
958         if [[ "$(adb shell cat /proc/$PID/exe | xxd -l 1 -s 4 -ps)" -eq "02" ]] ; then
959             echo "64"
960         else
961             echo ""
962         fi
963     else
964         echo ""
965     fi
966 }
967
968 # gdbclient now determines whether the user wants to debug a 32-bit or 64-bit
969 # executable, set up the approriate gdbserver, then invokes the proper host
970 # gdb.
971 function gdbclient()
972 {
973    local OUT_ROOT=$(get_abs_build_var PRODUCT_OUT)
974    local OUT_SYMBOLS=$(get_abs_build_var TARGET_OUT_UNSTRIPPED)
975    local OUT_SO_SYMBOLS=$(get_abs_build_var TARGET_OUT_SHARED_LIBRARIES_UNSTRIPPED)
976    local OUT_VENDOR_SO_SYMBOLS=$(get_abs_build_var TARGET_OUT_VENDOR_SHARED_LIBRARIES_UNSTRIPPED)
977    local OUT_EXE_SYMBOLS=$(get_symbols_directory)
978    local PREBUILTS=$(get_abs_build_var ANDROID_PREBUILTS)
979    local ARCH=$(get_build_var TARGET_ARCH)
980    local GDB
981    case "$ARCH" in
982        arm) GDB=arm-linux-androideabi-gdb;;
983        arm64) GDB=arm-linux-androideabi-gdb; GDB64=aarch64-linux-android-gdb;;
984        mips) GDB=mipsel-linux-android-gdb;;
985        mips64) GDB=mipsel-linux-android-gdb;;
986        x86) GDB=x86_64-linux-android-gdb;;
987        x86_64) GDB=x86_64-linux-android-gdb;;
988        *) echo "Unknown arch $ARCH"; return 1;;
989    esac
990
991    if [ "$OUT_ROOT" -a "$PREBUILTS" ]; then
992        local EXE="$1"
993        if [ "$EXE" ] ; then
994            EXE=$1
995            if [[ $EXE =~ ^[^/].* ]] ; then
996                EXE="system/bin/"$EXE
997            fi
998        else
999            EXE="app_process"
1000        fi
1001
1002        local PORT="$2"
1003        if [ "$PORT" ] ; then
1004            PORT=$2
1005        else
1006            PORT=":5039"
1007        fi
1008
1009        local PID="$3"
1010        if [ "$PID" ] ; then
1011            if [[ ! "$PID" =~ ^[0-9]+$ ]] ; then
1012                PID=`pid $3`
1013                if [[ ! "$PID" =~ ^[0-9]+$ ]] ; then
1014                    # that likely didn't work because of returning multiple processes
1015                    # try again, filtering by root processes (don't contain colon)
1016                    PID=`adb shell ps | \grep $3 | \grep -v ":" | awk '{print $2}'`
1017                    if [[ ! "$PID" =~ ^[0-9]+$ ]]
1018                    then
1019                        echo "Couldn't resolve '$3' to single PID"
1020                        return 1
1021                    else
1022                        echo ""
1023                        echo "WARNING: multiple processes matching '$3' observed, using root process"
1024                        echo ""
1025                    fi
1026                fi
1027            fi
1028            adb forward "tcp$PORT" "tcp$PORT"
1029            local USE64BIT="$(is64bit $PID)"
1030            adb shell gdbserver$USE64BIT $PORT --attach $PID &
1031            sleep 2
1032        else
1033                echo ""
1034                echo "If you haven't done so already, do this first on the device:"
1035                echo "    gdbserver $PORT /system/bin/$EXE"
1036                    echo " or"
1037                echo "    gdbserver $PORT --attach <PID>"
1038                echo ""
1039        fi
1040
1041        OUT_SO_SYMBOLS=$OUT_SO_SYMBOLS$USE64BIT
1042
1043        echo >|"$OUT_ROOT/gdbclient.cmds" "set solib-absolute-prefix $OUT_SYMBOLS"
1044        echo >>"$OUT_ROOT/gdbclient.cmds" "set solib-search-path $OUT_SO_SYMBOLS:$OUT_SO_SYMBOLS/hw:$OUT_SO_SYMBOLS/ssl/engines:$OUT_SO_SYMBOLS/drm:$OUT_SO_SYMBOLS/egl:$OUT_SO_SYMBOLS/soundfx:$OUT_VENDOR_SO_SYMBOLS:$OUT_VENDOR_SO_SYMBOLS/hw:$OUT_VENDOR_SO_SYMBOLS/egl"
1045        echo >>"$OUT_ROOT/gdbclient.cmds" "source $ANDROID_BUILD_TOP/development/scripts/gdb/dalvik.gdb"
1046        echo >>"$OUT_ROOT/gdbclient.cmds" "target remote $PORT"
1047        echo >>"$OUT_ROOT/gdbclient.cmds" ""
1048
1049        local WHICH_GDB=
1050        # 64-bit exe found
1051        if [ "$USE64BIT" != "" ] ; then
1052            WHICH_GDB=$ANDROID_TOOLCHAIN/$GDB64
1053        # 32-bit exe / 32-bit platform
1054        elif [ "$(get_build_var TARGET_2ND_ARCH)" = "" ]; then
1055            WHICH_GDB=$ANDROID_TOOLCHAIN/$GDB
1056        # 32-bit exe / 64-bit platform
1057        else
1058            WHICH_GDB=$ANDROID_TOOLCHAIN_2ND_ARCH/$GDB
1059        fi
1060
1061        gdbwrapper $WHICH_GDB "$OUT_ROOT/gdbclient.cmds" "$OUT_EXE_SYMBOLS/$EXE"
1062   else
1063        echo "Unable to determine build system output dir."
1064    fi
1065
1066 }
1067
1068 case `uname -s` in
1069     Darwin)
1070         function sgrep()
1071         {
1072             find -E . -name .repo -prune -o -name .git -prune -o  -type f -iregex '.*\.(c|h|cpp|S|java|xml|sh|mk)' -print0 | xargs -0 grep --color -n "$@"
1073         }
1074
1075         ;;
1076     *)
1077         function sgrep()
1078         {
1079             find . -name .repo -prune -o -name .git -prune -o  -type f -iregex '.*\.\(c\|h\|cpp\|S\|java\|xml\|sh\|mk\)' -print0 | xargs -0 grep --color -n "$@"
1080         }
1081         ;;
1082 esac
1083
1084 function gettargetarch
1085 {
1086     get_build_var TARGET_ARCH
1087 }
1088
1089 function ggrep()
1090 {
1091     find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -type f -name "*\.gradle" -print0 | xargs -0 grep --color -n "$@"
1092 }
1093
1094 function jgrep()
1095 {
1096     find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -type f -name "*\.java" -print0 | xargs -0 grep --color -n "$@"
1097 }
1098
1099 function cgrep()
1100 {
1101     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' \) -print0 | xargs -0 grep --color -n "$@"
1102 }
1103
1104 function resgrep()
1105 {
1106     for dir in `find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -name res -type d`; do find $dir -type f -name '*\.xml' -print0 | xargs -0 grep --color -n "$@"; done;
1107 }
1108
1109 function mangrep()
1110 {
1111     find . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o -type f -name 'AndroidManifest.xml' -print0 | xargs -0 grep --color -n "$@"
1112 }
1113
1114 function sepgrep()
1115 {
1116     find . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o -name sepolicy -type d -print0 | xargs -0 grep --color -n -r --exclude-dir=\.git "$@"
1117 }
1118
1119 case `uname -s` in
1120     Darwin)
1121         function mgrep()
1122         {
1123             find -E . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o -type f -iregex '.*/(Makefile|Makefile\..*|.*\.make|.*\.mak|.*\.mk)' -print0 | xargs -0 grep --color -n "$@"
1124         }
1125
1126         function treegrep()
1127         {
1128             find -E . -name .repo -prune -o -name .git -prune -o -type f -iregex '.*\.(c|h|cpp|S|java|xml)' -print0 | xargs -0 grep --color -n -i "$@"
1129         }
1130
1131         ;;
1132     *)
1133         function mgrep()
1134         {
1135             find . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o -regextype posix-egrep -iregex '(.*\/Makefile|.*\/Makefile\..*|.*\.make|.*\.mak|.*\.mk)' -type f -print0 | xargs -0 grep --color -n "$@"
1136         }
1137
1138         function treegrep()
1139         {
1140             find . -name .repo -prune -o -name .git -prune -o -regextype posix-egrep -iregex '.*\.(c|h|cpp|S|java|xml)' -type f -print0 | xargs -0 grep --color -n -i "$@"
1141         }
1142
1143         ;;
1144 esac
1145
1146 function getprebuilt
1147 {
1148     get_abs_build_var ANDROID_PREBUILTS
1149 }
1150
1151 function tracedmdump()
1152 {
1153     T=$(gettop)
1154     if [ ! "$T" ]; then
1155         echo "Couldn't locate the top of the tree.  Try setting TOP."
1156         return
1157     fi
1158     local prebuiltdir=$(getprebuilt)
1159     local arch=$(gettargetarch)
1160     local KERNEL=$T/prebuilts/qemu-kernel/$arch/vmlinux-qemu
1161
1162     local TRACE=$1
1163     if [ ! "$TRACE" ] ; then
1164         echo "usage:  tracedmdump  tracename"
1165         return
1166     fi
1167
1168     if [ ! -r "$KERNEL" ] ; then
1169         echo "Error: cannot find kernel: '$KERNEL'"
1170         return
1171     fi
1172
1173     local BASETRACE=$(basename $TRACE)
1174     if [ "$BASETRACE" = "$TRACE" ] ; then
1175         TRACE=$ANDROID_PRODUCT_OUT/traces/$TRACE
1176     fi
1177
1178     echo "post-processing traces..."
1179     rm -f $TRACE/qtrace.dexlist
1180     post_trace $TRACE
1181     if [ $? -ne 0 ]; then
1182         echo "***"
1183         echo "*** Error: malformed trace.  Did you remember to exit the emulator?"
1184         echo "***"
1185         return
1186     fi
1187     echo "generating dexlist output..."
1188     /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
1189     echo "generating dmtrace data..."
1190     q2dm -r $ANDROID_PRODUCT_OUT/symbols $TRACE $KERNEL $TRACE/dmtrace || return
1191     echo "generating html file..."
1192     dmtracedump -h $TRACE/dmtrace >| $TRACE/dmtrace.html || return
1193     echo "done, see $TRACE/dmtrace.html for details"
1194     echo "or run:"
1195     echo "    traceview $TRACE/dmtrace"
1196 }
1197
1198 # communicate with a running device or emulator, set up necessary state,
1199 # and run the hat command.
1200 function runhat()
1201 {
1202     # process standard adb options
1203     local adbTarget=""
1204     if [ "$1" = "-d" -o "$1" = "-e" ]; then
1205         adbTarget=$1
1206         shift 1
1207     elif [ "$1" = "-s" ]; then
1208         adbTarget="$1 $2"
1209         shift 2
1210     fi
1211     local adbOptions=${adbTarget}
1212     #echo adbOptions = ${adbOptions}
1213
1214     # runhat options
1215     local targetPid=$1
1216
1217     if [ "$targetPid" = "" ]; then
1218         echo "Usage: runhat [ -d | -e | -s serial ] target-pid"
1219         return
1220     fi
1221
1222     # confirm hat is available
1223     if [ -z $(which hat) ]; then
1224         echo "hat is not available in this configuration."
1225         return
1226     fi
1227
1228     # issue "am" command to cause the hprof dump
1229     local sdcard=$(adb ${adbOptions} shell echo -n '$EXTERNAL_STORAGE')
1230     local devFile=$sdcard/hprof-$targetPid
1231     #local devFile=/data/local/hprof-$targetPid
1232     echo "Poking $targetPid and waiting for data..."
1233     echo "Storing data at $devFile"
1234     adb ${adbOptions} shell am dumpheap $targetPid $devFile
1235     echo "Press enter when logcat shows \"hprof: heap dump completed\""
1236     echo -n "> "
1237     read
1238
1239     local localFile=/tmp/$$-hprof
1240
1241     echo "Retrieving file $devFile..."
1242     adb ${adbOptions} pull $devFile $localFile
1243
1244     adb ${adbOptions} shell rm $devFile
1245
1246     echo "Running hat on $localFile"
1247     echo "View the output by pointing your browser at http://localhost:7000/"
1248     echo ""
1249     hat -JXmx512m $localFile
1250 }
1251
1252 function getbugreports()
1253 {
1254     local reports=(`adb shell ls /sdcard/bugreports | tr -d '\r'`)
1255
1256     if [ ! "$reports" ]; then
1257         echo "Could not locate any bugreports."
1258         return
1259     fi
1260
1261     local report
1262     for report in ${reports[@]}
1263     do
1264         echo "/sdcard/bugreports/${report}"
1265         adb pull /sdcard/bugreports/${report} ${report}
1266         gunzip ${report}
1267     done
1268 }
1269
1270 function getsdcardpath()
1271 {
1272     adb ${adbOptions} shell echo -n \$\{EXTERNAL_STORAGE\}
1273 }
1274
1275 function getscreenshotpath()
1276 {
1277     echo "$(getsdcardpath)/Pictures/Screenshots"
1278 }
1279
1280 function getlastscreenshot()
1281 {
1282     local screenshot_path=$(getscreenshotpath)
1283     local screenshot=`adb ${adbOptions} ls ${screenshot_path} | grep Screenshot_[0-9-]*.*\.png | sort -rk 3 | cut -d " " -f 4 | head -n 1`
1284     if [ "$screenshot" = "" ]; then
1285         echo "No screenshots found."
1286         return
1287     fi
1288     echo "${screenshot}"
1289     adb ${adbOptions} pull ${screenshot_path}/${screenshot}
1290 }
1291
1292 function startviewserver()
1293 {
1294     local port=4939
1295     if [ $# -gt 0 ]; then
1296             port=$1
1297     fi
1298     adb shell service call window 1 i32 $port
1299 }
1300
1301 function stopviewserver()
1302 {
1303     adb shell service call window 2
1304 }
1305
1306 function isviewserverstarted()
1307 {
1308     adb shell service call window 3
1309 }
1310
1311 function key_home()
1312 {
1313     adb shell input keyevent 3
1314 }
1315
1316 function key_back()
1317 {
1318     adb shell input keyevent 4
1319 }
1320
1321 function key_menu()
1322 {
1323     adb shell input keyevent 82
1324 }
1325
1326 function smoketest()
1327 {
1328     if [ ! "$ANDROID_PRODUCT_OUT" ]; then
1329         echo "Couldn't locate output files.  Try running 'lunch' first." >&2
1330         return
1331     fi
1332     T=$(gettop)
1333     if [ ! "$T" ]; then
1334         echo "Couldn't locate the top of the tree.  Try setting TOP." >&2
1335         return
1336     fi
1337
1338     (\cd "$T" && mmm tests/SmokeTest) &&
1339       adb uninstall com.android.smoketest > /dev/null &&
1340       adb uninstall com.android.smoketest.tests > /dev/null &&
1341       adb install $ANDROID_PRODUCT_OUT/data/app/SmokeTestApp.apk &&
1342       adb install $ANDROID_PRODUCT_OUT/data/app/SmokeTest.apk &&
1343       adb shell am instrument -w com.android.smoketest.tests/android.test.InstrumentationTestRunner
1344 }
1345
1346 # simple shortcut to the runtest command
1347 function runtest()
1348 {
1349     T=$(gettop)
1350     if [ ! "$T" ]; then
1351         echo "Couldn't locate the top of the tree.  Try setting TOP." >&2
1352         return
1353     fi
1354     ("$T"/development/testrunner/runtest.py $@)
1355 }
1356
1357 function godir () {
1358     if [[ -z "$1" ]]; then
1359         echo "Usage: godir <regex>"
1360         return
1361     fi
1362     T=$(gettop)
1363     if [[ ! -f $T/filelist ]]; then
1364         echo -n "Creating index..."
1365         (\cd $T; find . -wholename ./out -prune -o -wholename ./.repo -prune -o -type f > filelist)
1366         echo " Done"
1367         echo ""
1368     fi
1369     local lines
1370     lines=($(\grep "$1" $T/filelist | sed -e 's/\/[^/]*$//' | sort | uniq))
1371     if [[ ${#lines[@]} = 0 ]]; then
1372         echo "Not found"
1373         return
1374     fi
1375     local pathname
1376     local choice
1377     if [[ ${#lines[@]} > 1 ]]; then
1378         while [[ -z "$pathname" ]]; do
1379             local index=1
1380             local line
1381             for line in ${lines[@]}; do
1382                 printf "%6s %s\n" "[$index]" $line
1383                 index=$(($index + 1))
1384             done
1385             echo
1386             echo -n "Select one: "
1387             unset choice
1388             read choice
1389             if [[ $choice -gt ${#lines[@]} || $choice -lt 1 ]]; then
1390                 echo "Invalid choice"
1391                 continue
1392             fi
1393             pathname=${lines[$(($choice-1))]}
1394         done
1395     else
1396         pathname=${lines[0]}
1397     fi
1398     \cd $T/$pathname
1399 }
1400
1401 # Force JAVA_HOME to point to java 1.7 or java 1.6  if it isn't already set.
1402 #
1403 # Note that the MacOS path for java 1.7 includes a minor revision number (sigh).
1404 # For some reason, installing the JDK doesn't make it show up in the
1405 # JavaVM.framework/Versions/1.7/ folder.
1406 function set_java_home() {
1407     # Clear the existing JAVA_HOME value if we set it ourselves, so that
1408     # we can reset it later, depending on the version of java the build
1409     # system needs.
1410     #
1411     # If we don't do this, the JAVA_HOME value set by the first call to
1412     # build/envsetup.sh will persist forever.
1413     if [ -n "$ANDROID_SET_JAVA_HOME" ]; then
1414       export JAVA_HOME=""
1415     fi
1416
1417     if [ ! "$JAVA_HOME" ]; then
1418       if [ -n "$LEGACY_USE_JAVA6" ]; then
1419         case `uname -s` in
1420             Darwin)
1421                 export JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Versions/1.6/Home
1422                 ;;
1423             *)
1424                 export JAVA_HOME=/usr/lib/jvm/java-6-sun
1425                 ;;
1426         esac
1427       else
1428         case `uname -s` in
1429             Darwin)
1430                 export JAVA_HOME=$(/usr/libexec/java_home -v 1.7)
1431                 ;;
1432             *)
1433                 export JAVA_HOME=/usr/lib/jvm/java-7-openjdk-amd64
1434                 ;;
1435         esac
1436       fi
1437
1438       # Keep track of the fact that we set JAVA_HOME ourselves, so that
1439       # we can change it on the next envsetup.sh, if required.
1440       export ANDROID_SET_JAVA_HOME=true
1441     fi
1442 }
1443
1444 # Print colored exit condition
1445 function pez {
1446     "$@"
1447     local retval=$?
1448     if [ $retval -ne 0 ]
1449     then
1450         echo -e "\e[0;31mFAILURE\e[00m"
1451     else
1452         echo -e "\e[0;32mSUCCESS\e[00m"
1453     fi
1454     return $retval
1455 }
1456
1457 if [ "x$SHELL" != "x/bin/bash" ]; then
1458     case `ps -o command -p $$` in
1459         *bash*)
1460             ;;
1461         *)
1462             echo "WARNING: Only bash is supported, use of other shell would lead to erroneous results"
1463             ;;
1464     esac
1465 fi
1466
1467 # Execute the contents of any vendorsetup.sh files we can find.
1468 for f in `test -d device && find device -maxdepth 4 -name 'vendorsetup.sh' 2> /dev/null` \
1469          `test -d vendor && find vendor -maxdepth 4 -name 'vendorsetup.sh' 2> /dev/null`
1470 do
1471     echo "including $f"
1472     . $f
1473 done
1474 unset f
1475
1476 addcompletions