envsetup.sh revision 3c4fcd84515ff6edcbeae7a0ceaacb1eecae437e
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- godir:   Go to the directory containing a file.
18
19Look at the source to view more functions. The complete list is:
20EOF
21    T=$(gettop)
22    local A
23    A=""
24    for i in `cat $T/build/envsetup.sh | sed -n "/^function /s/function \([a-z_]*\).*/\1/p" | sort`; do
25      A="$A $i"
26    done
27    echo $A
28}
29
30# Get the value of a build variable as an absolute path.
31function get_abs_build_var()
32{
33    T=$(gettop)
34    if [ ! "$T" ]; then
35        echo "Couldn't locate the top of the tree.  Try setting TOP." >&2
36        return
37    fi
38    (\cd $T; CALLED_FROM_SETUP=true BUILD_SYSTEM=build/core \
39      command make --no-print-directory -f build/core/config.mk dumpvar-abs-$1)
40}
41
42# Get the exact value of a build variable.
43function get_build_var()
44{
45    T=$(gettop)
46    if [ ! "$T" ]; then
47        echo "Couldn't locate the top of the tree.  Try setting TOP." >&2
48        return
49    fi
50    (\cd $T; CALLED_FROM_SETUP=true BUILD_SYSTEM=build/core \
51      command make --no-print-directory -f build/core/config.mk dumpvar-$1)
52}
53
54# check to see if the supplied product is one we can build
55function check_product()
56{
57    T=$(gettop)
58    if [ ! "$T" ]; then
59        echo "Couldn't locate the top of the tree.  Try setting TOP." >&2
60        return
61    fi
62        TARGET_PRODUCT=$1 \
63        TARGET_BUILD_VARIANT= \
64        TARGET_BUILD_TYPE= \
65        TARGET_BUILD_APPS= \
66        get_build_var TARGET_DEVICE > /dev/null
67    # hide successful answers, but allow the errors to show
68}
69
70VARIANT_CHOICES=(user userdebug eng)
71
72# check to see if the supplied variant is valid
73function check_variant()
74{
75    for v in ${VARIANT_CHOICES[@]}
76    do
77        if [ "$v" = "$1" ]
78        then
79            return 0
80        fi
81    done
82    return 1
83}
84
85function setpaths()
86{
87    T=$(gettop)
88    if [ ! "$T" ]; then
89        echo "Couldn't locate the top of the tree.  Try setting TOP."
90        return
91    fi
92
93    ##################################################################
94    #                                                                #
95    #              Read me before you modify this code               #
96    #                                                                #
97    #   This function sets ANDROID_BUILD_PATHS to what it is adding  #
98    #   to PATH, and the next time it is run, it removes that from   #
99    #   PATH.  This is required so lunch can be run more than once   #
100    #   and still have working paths.                                #
101    #                                                                #
102    ##################################################################
103
104    # Note: on windows/cygwin, ANDROID_BUILD_PATHS will contain spaces
105    # due to "C:\Program Files" being in the path.
106
107    # out with the old
108    if [ -n "$ANDROID_BUILD_PATHS" ] ; then
109        export PATH=${PATH/$ANDROID_BUILD_PATHS/}
110    fi
111    if [ -n "$ANDROID_PRE_BUILD_PATHS" ] ; then
112        export PATH=${PATH/$ANDROID_PRE_BUILD_PATHS/}
113        # strip leading ':', if any
114        export PATH=${PATH/:%/}
115    fi
116
117    # and in with the new
118    prebuiltdir=$(getprebuilt)
119    gccprebuiltdir=$(get_abs_build_var ANDROID_GCC_PREBUILTS)
120
121    # defined in core/config.mk
122    targetgccversion=$(get_build_var TARGET_GCC_VERSION)
123    targetgccversion2=$(get_build_var 2ND_TARGET_GCC_VERSION)
124    export TARGET_GCC_VERSION=$targetgccversion
125
126    # The gcc toolchain does not exists for windows/cygwin. In this case, do not reference it.
127    export ANDROID_TOOLCHAIN=
128    export ANDROID_TOOLCHAIN_2ND_ARCH=
129    local ARCH=$(get_build_var TARGET_ARCH)
130    case $ARCH in
131        x86) toolchaindir=x86/x86_64-linux-android-$targetgccversion/bin
132            ;;
133        x86_64) toolchaindir=x86/x86_64-linux-android-$targetgccversion/bin
134            ;;
135        arm) toolchaindir=arm/arm-linux-androideabi-$targetgccversion/bin
136            ;;
137        arm64) toolchaindir=aarch64/aarch64-linux-android-$targetgccversion/bin;
138               toolchaindir2=arm/arm-linux-androideabi-$targetgccversion2/bin
139            ;;
140        mips|mips64) toolchaindir=mips/mips64el-linux-android-$targetgccversion/bin
141            ;;
142        *)
143            echo "Can't find toolchain for unknown architecture: $ARCH"
144            toolchaindir=xxxxxxxxx
145            ;;
146    esac
147    if [ -d "$gccprebuiltdir/$toolchaindir" ]; then
148        export ANDROID_TOOLCHAIN=$gccprebuiltdir/$toolchaindir
149    fi
150
151    if [ -d "$gccprebuiltdir/$toolchaindir2" ]; then
152        export ANDROID_TOOLCHAIN_2ND_ARCH=$gccprebuiltdir/$toolchaindir2
153    fi
154
155    unset ANDROID_KERNEL_TOOLCHAIN_PATH
156    case $ARCH in
157        arm)
158            # Legacy toolchain configuration used for ARM kernel compilation
159            toolchaindir=arm/arm-eabi-$targetgccversion/bin
160            if [ -d "$gccprebuiltdir/$toolchaindir" ]; then
161                 export ARM_EABI_TOOLCHAIN="$gccprebuiltdir/$toolchaindir"
162                 ANDROID_KERNEL_TOOLCHAIN_PATH="$ARM_EABI_TOOLCHAIN":
163            fi
164            ;;
165        *)
166            # No need to set ARM_EABI_TOOLCHAIN for other ARCHs
167            ;;
168    esac
169
170    export ANDROID_DEV_SCRIPTS=$T/development/scripts:$T/prebuilts/devtools/tools
171    export ANDROID_BUILD_PATHS=$(get_build_var ANDROID_BUILD_PATHS):$ANDROID_TOOLCHAIN:$ANDROID_TOOLCHAIN_2ND_ARCH:$ANDROID_KERNEL_TOOLCHAIN_PATH$ANDROID_DEV_SCRIPTS:
172
173    # If prebuilts/android-emulator/<system>/ exists, prepend it to our PATH
174    # to ensure that the corresponding 'emulator' binaries are used.
175    case $(uname -s) in
176        Darwin)
177            ANDROID_EMULATOR_PREBUILTS=$T/prebuilts/android-emulator/darwin-x86_64
178            ;;
179        Linux)
180            ANDROID_EMULATOR_PREBUILTS=$T/prebuilts/android-emulator/linux-x86_64
181            ;;
182        *)
183            ANDROID_EMULATOR_PREBUILTS=
184            ;;
185    esac
186    if [ -n "$ANDROID_EMULATOR_PREBUILTS" -a -d "$ANDROID_EMULATOR_PREBUILTS" ]; then
187        ANDROID_BUILD_PATHS=$ANDROID_BUILD_PATHS$ANDROID_EMULATOR_PREBUILTS:
188        export ANDROID_EMULATOR_PREBUILTS
189    fi
190
191    export PATH=$ANDROID_BUILD_PATHS$PATH
192
193    unset ANDROID_JAVA_TOOLCHAIN
194    unset ANDROID_PRE_BUILD_PATHS
195    if [ -n "$JAVA_HOME" ]; then
196        export ANDROID_JAVA_TOOLCHAIN=$JAVA_HOME/bin
197        export ANDROID_PRE_BUILD_PATHS=$ANDROID_JAVA_TOOLCHAIN:
198        export PATH=$ANDROID_PRE_BUILD_PATHS$PATH
199    fi
200
201    unset ANDROID_PRODUCT_OUT
202    export ANDROID_PRODUCT_OUT=$(get_abs_build_var PRODUCT_OUT)
203    export OUT=$ANDROID_PRODUCT_OUT
204
205    unset ANDROID_HOST_OUT
206    export ANDROID_HOST_OUT=$(get_abs_build_var HOST_OUT)
207
208    # If prebuilts/android-emulator/<system>/ exists, prepend it to our PATH
209    # to ensure that the corresponding 'emulator' binaries are used.
210    case $(uname -s) in
211        Darwin)
212            ANDROID_EMULATOR_PREBUILTS=$T/prebuilts/android-emulator/darwin-x86_64
213            ;;
214        Linux)
215            ANDROID_EMULATOR_PREBUILTS=$T/prebuilts/android-emulator/linux-x86_64
216            ;;
217        *)
218            ANDROID_EMULATOR_PREBUILTS=
219            ;;
220    esac
221    if [ -n "$ANDROID_EMULATOR_PREBUILTS" -a -d "$ANDROID_EMULATOR_PREBUILTS" ]; then
222        PATH=$ANDROID_EMULATOR_PREBUILTS:$PATH
223        export ANDROID_EMULATOR_PREBUILTS
224    fi
225
226    # needed for building linux on MacOS
227    # TODO: fix the path
228    #export HOST_EXTRACFLAGS="-I "$T/system/kernel_headers/host_include
229}
230
231function printconfig()
232{
233    T=$(gettop)
234    if [ ! "$T" ]; then
235        echo "Couldn't locate the top of the tree.  Try setting TOP." >&2
236        return
237    fi
238    get_build_var report_config
239}
240
241function set_stuff_for_environment()
242{
243    settitle
244    set_java_home
245    setpaths
246    set_sequence_number
247
248    export ANDROID_BUILD_TOP=$(gettop)
249    # With this environment variable new GCC can apply colors to warnings/errors
250    export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
251}
252
253function set_sequence_number()
254{
255    export BUILD_ENV_SEQUENCE_NUMBER=10
256}
257
258function settitle()
259{
260    if [ "$STAY_OFF_MY_LAWN" = "" ]; then
261        local arch=$(gettargetarch)
262        local product=$TARGET_PRODUCT
263        local variant=$TARGET_BUILD_VARIANT
264        local apps=$TARGET_BUILD_APPS
265        if [ -z "$apps" ]; then
266            export PROMPT_COMMAND="echo -ne \"\033]0;[${arch}-${product}-${variant}] ${USER}@${HOSTNAME}: ${PWD}\007\""
267        else
268            export PROMPT_COMMAND="echo -ne \"\033]0;[$arch $apps $variant] ${USER}@${HOSTNAME}: ${PWD}\007\""
269        fi
270    fi
271}
272
273function addcompletions()
274{
275    local T dir f
276
277    # Keep us from trying to run in something that isn't bash.
278    if [ -z "${BASH_VERSION}" ]; then
279        return
280    fi
281
282    # Keep us from trying to run in bash that's too old.
283    if [ ${BASH_VERSINFO[0]} -lt 3 ]; then
284        return
285    fi
286
287    dir="sdk/bash_completion"
288    if [ -d ${dir} ]; then
289        for f in `/bin/ls ${dir}/[a-z]*.bash 2> /dev/null`; do
290            echo "including $f"
291            . $f
292        done
293    fi
294}
295
296function choosetype()
297{
298    echo "Build type choices are:"
299    echo "     1. release"
300    echo "     2. debug"
301    echo
302
303    local DEFAULT_NUM DEFAULT_VALUE
304    DEFAULT_NUM=1
305    DEFAULT_VALUE=release
306
307    export TARGET_BUILD_TYPE=
308    local ANSWER
309    while [ -z $TARGET_BUILD_TYPE ]
310    do
311        echo -n "Which would you like? ["$DEFAULT_NUM"] "
312        if [ -z "$1" ] ; then
313            read ANSWER
314        else
315            echo $1
316            ANSWER=$1
317        fi
318        case $ANSWER in
319        "")
320            export TARGET_BUILD_TYPE=$DEFAULT_VALUE
321            ;;
322        1)
323            export TARGET_BUILD_TYPE=release
324            ;;
325        release)
326            export TARGET_BUILD_TYPE=release
327            ;;
328        2)
329            export TARGET_BUILD_TYPE=debug
330            ;;
331        debug)
332            export TARGET_BUILD_TYPE=debug
333            ;;
334        *)
335            echo
336            echo "I didn't understand your response.  Please try again."
337            echo
338            ;;
339        esac
340        if [ -n "$1" ] ; then
341            break
342        fi
343    done
344
345    set_stuff_for_environment
346}
347
348#
349# This function isn't really right:  It chooses a TARGET_PRODUCT
350# based on the list of boards.  Usually, that gets you something
351# that kinda works with a generic product, but really, you should
352# pick a product by name.
353#
354function chooseproduct()
355{
356    if [ "x$TARGET_PRODUCT" != x ] ; then
357        default_value=$TARGET_PRODUCT
358    else
359        default_value=full
360    fi
361
362    export TARGET_PRODUCT=
363    local ANSWER
364    while [ -z "$TARGET_PRODUCT" ]
365    do
366        echo -n "Which product would you like? [$default_value] "
367        if [ -z "$1" ] ; then
368            read ANSWER
369        else
370            echo $1
371            ANSWER=$1
372        fi
373
374        if [ -z "$ANSWER" ] ; then
375            export TARGET_PRODUCT=$default_value
376        else
377            if check_product $ANSWER
378            then
379                export TARGET_PRODUCT=$ANSWER
380            else
381                echo "** Not a valid product: $ANSWER"
382            fi
383        fi
384        if [ -n "$1" ] ; then
385            break
386        fi
387    done
388
389    set_stuff_for_environment
390}
391
392function choosevariant()
393{
394    echo "Variant choices are:"
395    local index=1
396    local v
397    for v in ${VARIANT_CHOICES[@]}
398    do
399        # The product name is the name of the directory containing
400        # the makefile we found, above.
401        echo "     $index. $v"
402        index=$(($index+1))
403    done
404
405    local default_value=eng
406    local ANSWER
407
408    export TARGET_BUILD_VARIANT=
409    while [ -z "$TARGET_BUILD_VARIANT" ]
410    do
411        echo -n "Which would you like? [$default_value] "
412        if [ -z "$1" ] ; then
413            read ANSWER
414        else
415            echo $1
416            ANSWER=$1
417        fi
418
419        if [ -z "$ANSWER" ] ; then
420            export TARGET_BUILD_VARIANT=$default_value
421        elif (echo -n $ANSWER | grep -q -e "^[0-9][0-9]*$") ; then
422            if [ "$ANSWER" -le "${#VARIANT_CHOICES[@]}" ] ; then
423                export TARGET_BUILD_VARIANT=${VARIANT_CHOICES[$(($ANSWER-1))]}
424            fi
425        else
426            if check_variant $ANSWER
427            then
428                export TARGET_BUILD_VARIANT=$ANSWER
429            else
430                echo "** Not a valid variant: $ANSWER"
431            fi
432        fi
433        if [ -n "$1" ] ; then
434            break
435        fi
436    done
437}
438
439function choosecombo()
440{
441    choosetype $1
442
443    echo
444    echo
445    chooseproduct $2
446
447    echo
448    echo
449    choosevariant $3
450
451    echo
452    set_stuff_for_environment
453    printconfig
454}
455
456# Clear this variable.  It will be built up again when the vendorsetup.sh
457# files are included at the end of this file.
458unset LUNCH_MENU_CHOICES
459function add_lunch_combo()
460{
461    local new_combo=$1
462    local c
463    for c in ${LUNCH_MENU_CHOICES[@]} ; do
464        if [ "$new_combo" = "$c" ] ; then
465            return
466        fi
467    done
468    LUNCH_MENU_CHOICES=(${LUNCH_MENU_CHOICES[@]} $new_combo)
469}
470
471# add the default one here
472add_lunch_combo aosp_arm-eng
473add_lunch_combo aosp_arm64-eng
474add_lunch_combo aosp_mips-eng
475add_lunch_combo aosp_mips64-eng
476add_lunch_combo aosp_x86-eng
477add_lunch_combo aosp_x86_64-eng
478add_lunch_combo vbox_x86-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|cpp|S|java|xml|sh|mk)' -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\|cpp\|S\|java\|xml\|sh\|mk\)' -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 make()
1475{
1476    local start_time=$(date +"%s")
1477    command make "$@"
1478    local ret=$?
1479    local end_time=$(date +"%s")
1480    local tdiff=$(($end_time-$start_time))
1481    local hours=$(($tdiff / 3600 ))
1482    local mins=$((($tdiff % 3600) / 60))
1483    local secs=$(($tdiff % 60))
1484    echo
1485    if [ $ret -eq 0 ] ; then
1486        echo -n -e "#### make completed successfully "
1487    else
1488        echo -n -e "#### make failed to build some targets "
1489    fi
1490    if [ $hours -gt 0 ] ; then
1491        printf "(%02g:%02g:%02g (hh:mm:ss))" $hours $mins $secs
1492    elif [ $mins -gt 0 ] ; then
1493        printf "(%02g:%02g (mm:ss))" $mins $secs
1494    elif [ $secs -gt 0 ] ; then
1495        printf "(%s seconds)" $secs
1496    fi
1497    echo -e " ####"
1498    echo
1499    return $ret
1500}
1501
1502
1503
1504if [ "x$SHELL" != "x/bin/bash" ]; then
1505    case `ps -o command -p $$` in
1506        *bash*)
1507            ;;
1508        *)
1509            echo "WARNING: Only bash is supported, use of other shell would lead to erroneous results"
1510            ;;
1511    esac
1512fi
1513
1514# Execute the contents of any vendorsetup.sh files we can find.
1515for f in `test -d device && find -L device -maxdepth 4 -name 'vendorsetup.sh' 2> /dev/null` \
1516         `test -d vendor && find -L vendor -maxdepth 4 -name 'vendorsetup.sh' 2> /dev/null`
1517do
1518    echo "including $f"
1519    . $f
1520done
1521unset f
1522
1523addcompletions
1524