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