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