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