envsetup.sh 40.1 KB
Newer Older
1
function hmm() {
2
cat <<EOF
3
Invoke ". build/envsetup.sh" from your shell to add the following functions to your environment:
4
- lunch:   lunch <product_name>-<build_variant>
Ying Wang's avatar
Ying Wang committed
5
- tapas:   tapas [<App1> <App2> ...] [arm|x86|mips|armv5] [eng|userdebug|user]
6 7
- croot:   Changes directory to the top of the tree.
- m:       Makes from the top of the tree.
Ying Wang's avatar
Ying Wang committed
8 9
- mm:      Builds all of the modules in the current directory, but not their dependencies.
- 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.
Ying Wang's avatar
Ying Wang committed
11 12
- mma:     Builds all of the modules in the current directory, and their dependencies.
- mmma:    Builds all of the modules in the supplied directories, and their dependencies.
13
- cgrep:   Greps on all local C/C++ files.
Jon Boekenoogen's avatar
ggrep  
Jon Boekenoogen committed
14
- ggrep:   Greps on all local Gradle files.
15 16
- jgrep:   Greps on all local Java files.
- resgrep: Greps on all local res/*.xml files.
17
- godir:   Go to the directory containing a file.
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37

Look at the source to view more functions. The complete list is:
EOF
    T=$(gettop)
    local A
    A=""
    for i in `cat $T/build/envsetup.sh | sed -n "/^function /s/function \([a-z_]*\).*/\1/p" | sort`; do
      A="$A $i"
    done
    echo $A
}

# Get the value of a build variable as an absolute path.
function get_abs_build_var()
{
    T=$(gettop)
    if [ ! "$T" ]; then
        echo "Couldn't locate the top of the tree.  Try setting TOP." >&2
        return
    fi
38
    (\cd $T; CALLED_FROM_SETUP=true BUILD_SYSTEM=build/core \
39
      make --no-print-directory -f build/core/config.mk dumpvar-abs-$1)
40 41 42 43 44 45 46 47 48 49
}

# Get the exact value of a build variable.
function get_build_var()
{
    T=$(gettop)
    if [ ! "$T" ]; then
        echo "Couldn't locate the top of the tree.  Try setting TOP." >&2
        return
    fi
50 51
    (\cd $T; CALLED_FROM_SETUP=true BUILD_SYSTEM=build/core \
      make --no-print-directory -f build/core/config.mk dumpvar-$1)
52 53 54 55 56 57 58 59 60 61 62
}

# check to see if the supplied product is one we can build
function check_product()
{
    T=$(gettop)
    if [ ! "$T" ]; then
        echo "Couldn't locate the top of the tree.  Try setting TOP." >&2
        return
    fi
    CALLED_FROM_SETUP=true BUILD_SYSTEM=build/core \
63 64 65
        TARGET_PRODUCT=$1 \
        TARGET_BUILD_VARIANT= \
        TARGET_BUILD_TYPE= \
Joe Onorato's avatar
Joe Onorato committed
66
        TARGET_BUILD_APPS= \
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
        get_build_var TARGET_DEVICE > /dev/null
    # hide successful answers, but allow the errors to show
}

VARIANT_CHOICES=(user userdebug eng)

# check to see if the supplied variant is valid
function check_variant()
{
    for v in ${VARIANT_CHOICES[@]}
    do
        if [ "$v" = "$1" ]
        then
            return 0
        fi
    done
    return 1
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
}

function setpaths()
{
    T=$(gettop)
    if [ ! "$T" ]; then
        echo "Couldn't locate the top of the tree.  Try setting TOP."
        return
    fi

    ##################################################################
    #                                                                #
    #              Read me before you modify this code               #
    #                                                                #
    #   This function sets ANDROID_BUILD_PATHS to what it is adding  #
    #   to PATH, and the next time it is run, it removes that from   #
    #   PATH.  This is required so lunch can be run more than once   #
    #   and still have working paths.                                #
    #                                                                #
    ##################################################################

105 106 107
    # Note: on windows/cygwin, ANDROID_BUILD_PATHS will contain spaces
    # due to "C:\Program Files" being in the path.

108
    # out with the old
109
    if [ -n "$ANDROID_BUILD_PATHS" ] ; then
110 111
        export PATH=${PATH/$ANDROID_BUILD_PATHS/}
    fi
112
    if [ -n "$ANDROID_PRE_BUILD_PATHS" ] ; then
113
        export PATH=${PATH/$ANDROID_PRE_BUILD_PATHS/}
114 115
        # strip leading ':', if any
        export PATH=${PATH/:%/}
116
    fi
117 118 119

    # and in with the new
    prebuiltdir=$(getprebuilt)
120
    gccprebuiltdir=$(get_abs_build_var ANDROID_GCC_PREBUILTS)
121

122 123
    # defined in core/config.mk
    targetgccversion=$(get_build_var 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 128
    export ANDROID_TOOLCHAIN=
    export ANDROID_TOOLCHAIN_2ND_ARCH=
129 130
    local ARCH=$(get_build_var TARGET_ARCH)
    case $ARCH in
131
        x86) toolchaindir=x86/x86_64-linux-android-$targetgccversion/bin
Mark D Horn's avatar
Mark D Horn committed
132
            ;;
Pavel Chupin's avatar
Pavel Chupin committed
133 134
        x86_64) toolchaindir=x86/x86_64-linux-android-$targetgccversion/bin
            ;;
135
        arm) toolchaindir=arm/arm-linux-androideabi-$targetgccversion/bin
136
            ;;
137 138
        arm64) toolchaindir=aarch64/aarch64-linux-android-$targetgccversion/bin;
               toolchaindir2=arm/arm-linux-androideabi-$targetgccversion/bin
139
            ;;
140
        mips) toolchaindir=mips/mipsel-linux-android-$targetgccversion/bin
141
            ;;
Chris Dearman's avatar
Chris Dearman committed
142
        mips64) toolchaindir=mips/mips64el-linux-android-$targetgccversion/bin
Serban Constantinescu's avatar
Serban Constantinescu committed
143
            ;;
144 145 146
        *)
            echo "Can't find toolchain for unknown architecture: $ARCH"
            toolchaindir=xxxxxxxxx
Mark D Horn's avatar
Mark D Horn committed
147 148
            ;;
    esac
149
    if [ -d "$gccprebuiltdir/$toolchaindir" ]; then
150
        export ANDROID_TOOLCHAIN=$gccprebuiltdir/$toolchaindir
151
    fi
152

153 154 155 156 157
    if [ -d "$gccprebuiltdir/$toolchaindir2" ]; then
        export ANDROID_TOOLCHAIN_2ND_ARCH=$gccprebuiltdir/$toolchaindir2
    fi

    unset ANDROID_KERNEL_TOOLCHAIN_PATH
Ying Wang's avatar
Ying Wang committed
158
    case $ARCH in
Bruce Beare's avatar
Bruce Beare committed
159
        arm)
160
            # Legacy toolchain configuration used for ARM kernel compilation
161
            toolchaindir=arm/arm-eabi-$targetgccversion/bin
Bruce Beare's avatar
Bruce Beare committed
162
            if [ -d "$gccprebuiltdir/$toolchaindir" ]; then
163 164
                 export ARM_EABI_TOOLCHAIN="$gccprebuiltdir/$toolchaindir"
                 ANDROID_KERNEL_TOOLCHAIN_PATH="$ARM_EABI_TOOLCHAIN":
Bruce Beare's avatar
Bruce Beare committed
165
            fi
Ying Wang's avatar
Ying Wang committed
166 167
            ;;
        *)
Bruce Beare's avatar
Bruce Beare committed
168
            # No need to set ARM_EABI_TOOLCHAIN for other ARCHs
Ying Wang's avatar
Ying Wang committed
169 170 171
            ;;
    esac

172
    export ANDROID_QTOOLS=$T/development/emulator/qtools
173
    export ANDROID_DEV_SCRIPTS=$T/development/scripts:$T/prebuilts/devtools/tools
174
    export ANDROID_BUILD_PATHS=$(get_build_var ANDROID_BUILD_PATHS):$ANDROID_QTOOLS:$ANDROID_TOOLCHAIN:$ANDROID_KERNEL_TOOLCHAIN_PATH$ANDROID_DEV_SCRIPTS:
175
    export PATH=$ANDROID_BUILD_PATHS$PATH
176

177
    unset ANDROID_JAVA_TOOLCHAIN
178
    unset ANDROID_PRE_BUILD_PATHS
179 180
    if [ -n "$JAVA_HOME" ]; then
        export ANDROID_JAVA_TOOLCHAIN=$JAVA_HOME/bin
181 182
        export ANDROID_PRE_BUILD_PATHS=$ANDROID_JAVA_TOOLCHAIN:
        export PATH=$ANDROID_PRE_BUILD_PATHS$PATH
183 184
    fi

185
    unset ANDROID_PRODUCT_OUT
186 187 188
    export ANDROID_PRODUCT_OUT=$(get_abs_build_var PRODUCT_OUT)
    export OUT=$ANDROID_PRODUCT_OUT

189 190 191
    unset ANDROID_HOST_OUT
    export ANDROID_HOST_OUT=$(get_abs_build_var HOST_OUT)

192
    # needed for building linux on MacOS
193 194 195 196 197 198
    # TODO: fix the path
    #export HOST_EXTRACFLAGS="-I "$T/system/kernel_headers/host_include
}

function printconfig()
{
199 200 201 202 203 204
    T=$(gettop)
    if [ ! "$T" ]; then
        echo "Couldn't locate the top of the tree.  Try setting TOP." >&2
        return
    fi
    get_build_var report_config
205 206 207 208
}

function set_stuff_for_environment()
{
209
    settitle
210
    set_java_home
211 212
    setpaths
    set_sequence_number
213

214
    export ANDROID_BUILD_TOP=$(gettop)
Ben Cheng's avatar
Ben Cheng committed
215 216
    # With this environment variable new GCC can apply colors to warnings/errors
    export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
217 218 219 220
}

function set_sequence_number()
{
221
    export BUILD_ENV_SEQUENCE_NUMBER=10
222 223 224 225
}

function settitle()
{
226
    if [ "$STAY_OFF_MY_LAWN" = "" ]; then
227
        local arch=$(gettargetarch)
Joe Onorato's avatar
Joe Onorato committed
228 229 230 231
        local product=$TARGET_PRODUCT
        local variant=$TARGET_BUILD_VARIANT
        local apps=$TARGET_BUILD_APPS
        if [ -z "$apps" ]; then
232
            export PROMPT_COMMAND="echo -ne \"\033]0;[${arch}-${product}-${variant}] ${USER}@${HOSTNAME}: ${PWD}\007\""
Joe Onorato's avatar
Joe Onorato committed
233
        else
234
            export PROMPT_COMMAND="echo -ne \"\033]0;[$arch $apps $variant] ${USER}@${HOSTNAME}: ${PWD}\007\""
Joe Onorato's avatar
Joe Onorato committed
235
        fi
236
    fi
237 238
}

Kenny Root's avatar
Kenny Root committed
239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254
function addcompletions()
{
    local T dir f

    # Keep us from trying to run in something that isn't bash.
    if [ -z "${BASH_VERSION}" ]; then
        return
    fi

    # Keep us from trying to run in bash that's too old.
    if [ ${BASH_VERSINFO[0]} -lt 3 ]; then
        return
    fi

    dir="sdk/bash_completion"
    if [ -d ${dir} ]; then
255
        for f in `/bin/ls ${dir}/[a-z]*.bash 2> /dev/null`; do
Kenny Root's avatar
Kenny Root committed
256 257 258 259 260 261
            echo "including $f"
            . $f
        done
    fi
}

262 263 264 265 266 267 268
function choosetype()
{
    echo "Build type choices are:"
    echo "     1. release"
    echo "     2. debug"
    echo

269
    local DEFAULT_NUM DEFAULT_VALUE
270 271
    DEFAULT_NUM=1
    DEFAULT_VALUE=release
272

273 274
    export TARGET_BUILD_TYPE=
    local ANSWER
275 276 277
    while [ -z $TARGET_BUILD_TYPE ]
    do
        echo -n "Which would you like? ["$DEFAULT_NUM"] "
278 279 280 281 282 283
        if [ -z "$1" ] ; then
            read ANSWER
        else
            echo $1
            ANSWER=$1
        fi
284 285 286 287 288 289 290
        case $ANSWER in
        "")
            export TARGET_BUILD_TYPE=$DEFAULT_VALUE
            ;;
        1)
            export TARGET_BUILD_TYPE=release
            ;;
291 292 293
        release)
            export TARGET_BUILD_TYPE=release
            ;;
294 295 296
        2)
            export TARGET_BUILD_TYPE=debug
            ;;
297 298 299
        debug)
            export TARGET_BUILD_TYPE=debug
            ;;
300 301 302 303 304 305
        *)
            echo
            echo "I didn't understand your response.  Please try again."
            echo
            ;;
        esac
306 307 308
        if [ -n "$1" ] ; then
            break
        fi
309 310 311 312 313
    done

    set_stuff_for_environment
}

314 315 316 317 318 319
#
# This function isn't really right:  It chooses a TARGET_PRODUCT
# based on the list of boards.  Usually, that gets you something
# that kinda works with a generic product, but really, you should
# pick a product by name.
#
320 321 322 323 324
function chooseproduct()
{
    if [ "x$TARGET_PRODUCT" != x ] ; then
        default_value=$TARGET_PRODUCT
    else
325
        default_value=full
326 327
    fi

328 329
    export TARGET_PRODUCT=
    local ANSWER
330 331
    while [ -z "$TARGET_PRODUCT" ]
    do
332
        echo -n "Which product would you like? [$default_value] "
333 334 335 336 337 338 339
        if [ -z "$1" ] ; then
            read ANSWER
        else
            echo $1
            ANSWER=$1
        fi

340 341
        if [ -z "$ANSWER" ] ; then
            export TARGET_PRODUCT=$default_value
342 343 344 345 346 347 348 349 350 351
        else
            if check_product $ANSWER
            then
                export TARGET_PRODUCT=$ANSWER
            else
                echo "** Not a valid product: $ANSWER"
            fi
        fi
        if [ -n "$1" ] ; then
            break
352 353 354 355 356 357
        fi
    done

    set_stuff_for_environment
}

358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388
function choosevariant()
{
    echo "Variant choices are:"
    local index=1
    local v
    for v in ${VARIANT_CHOICES[@]}
    do
        # The product name is the name of the directory containing
        # the makefile we found, above.
        echo "     $index. $v"
        index=$(($index+1))
    done

    local default_value=eng
    local ANSWER

    export TARGET_BUILD_VARIANT=
    while [ -z "$TARGET_BUILD_VARIANT" ]
    do
        echo -n "Which would you like? [$default_value] "
        if [ -z "$1" ] ; then
            read ANSWER
        else
            echo $1
            ANSWER=$1
        fi

        if [ -z "$ANSWER" ] ; then
            export TARGET_BUILD_VARIANT=$default_value
        elif (echo -n $ANSWER | grep -q -e "^[0-9][0-9]*$") ; then
            if [ "$ANSWER" -le "${#VARIANT_CHOICES[@]}" ] ; then
389
                export TARGET_BUILD_VARIANT=${VARIANT_CHOICES[$(($ANSWER-1))]}
390 391 392 393 394 395 396 397 398 399 400 401 402 403 404
            fi
        else
            if check_variant $ANSWER
            then
                export TARGET_BUILD_VARIANT=$ANSWER
            else
                echo "** Not a valid variant: $ANSWER"
            fi
        fi
        if [ -n "$1" ] ; then
            break
        fi
    done
}

405 406
function choosecombo()
{
407
    choosetype $1
408 409 410

    echo
    echo
411
    chooseproduct $2
412 413 414

    echo
    echo
415
    choosevariant $3
416

417 418
    echo
    set_stuff_for_environment
419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434
    printconfig
}

# Clear this variable.  It will be built up again when the vendorsetup.sh
# files are included at the end of this file.
unset LUNCH_MENU_CHOICES
function add_lunch_combo()
{
    local new_combo=$1
    local c
    for c in ${LUNCH_MENU_CHOICES[@]} ; do
        if [ "$new_combo" = "$c" ] ; then
            return
        fi
    done
    LUNCH_MENU_CHOICES=(${LUNCH_MENU_CHOICES[@]} $new_combo)
435 436
}

437
# add the default one here
438
add_lunch_combo aosp_arm-eng
Serban Constantinescu's avatar
Serban Constantinescu committed
439
add_lunch_combo aosp_arm64-eng
440
add_lunch_combo aosp_mips-eng
Chris Dearman's avatar
Chris Dearman committed
441
add_lunch_combo aosp_mips64-eng
Serban Constantinescu's avatar
Serban Constantinescu committed
442
add_lunch_combo aosp_x86-eng
Pavel Chupin's avatar
Pavel Chupin committed
443
add_lunch_combo aosp_x86_64-eng
444
add_lunch_combo vbox_x86-eng
445

446 447 448 449 450 451 452
function print_lunch_menu()
{
    local uname=$(uname)
    echo
    echo "You're building on" $uname
    echo
    echo "Lunch menu... pick a combo:"
453 454 455 456 457 458 459 460 461

    local i=1
    local choice
    for choice in ${LUNCH_MENU_CHOICES[@]}
    do
        echo "     $i. $choice"
        i=$(($i+1))
    done

462 463 464 465 466
    echo
}

function lunch()
{
467 468
    local answer

469
    if [ "$1" ] ; then
470
        answer=$1
471 472
    else
        print_lunch_menu
473
        echo -n "Which would you like? [aosp_arm-eng] "
474
        read answer
475 476
    fi

477 478 479 480
    local selection=

    if [ -z "$answer" ]
    then
481
        selection=aosp_arm-eng
482 483 484 485
    elif (echo -n $answer | grep -q -e "^[0-9][0-9]*$")
    then
        if [ $answer -le ${#LUNCH_MENU_CHOICES[@]} ]
        then
486
            selection=${LUNCH_MENU_CHOICES[$(($answer-1))]}
487 488
        fi
    elif (echo -n $answer | grep -q -e "^[^\-][^\-]*-[^\-][^\-]*$")
489
    then
490
        selection=$answer
491 492
    fi

493 494 495 496 497 498 499
    if [ -z "$selection" ]
    then
        echo
        echo "Invalid lunch combo: $answer"
        return 1
    fi

Joe Onorato's avatar
Joe Onorato committed
500 501
    export TARGET_BUILD_APPS=

502 503 504
    local product=$(echo -n $selection | sed -e "s/-.*$//")
    check_product $product
    if [ $? -ne 0 ]
505
    then
506 507 508 509 510
        echo
        echo "** Don't have a product spec for: '$product'"
        echo "** Do you have the right repo manifest?"
        product=
    fi
511

512 513 514 515 516 517 518 519 520
    local variant=$(echo -n $selection | sed -e "s/^[^\-]*-//")
    check_variant $variant
    if [ $? -ne 0 ]
    then
        echo
        echo "** Invalid variant: '$variant'"
        echo "** Must be one of ${VARIANT_CHOICES[@]}"
        variant=
    fi
521

522 523 524 525 526
    if [ -z "$product" -o -z "$variant" ]
    then
        echo
        return 1
    fi
527

528 529 530
    export TARGET_PRODUCT=$product
    export TARGET_BUILD_VARIANT=$variant
    export TARGET_BUILD_TYPE=release
531

532 533 534 535
    echo

    set_stuff_for_environment
    printconfig
536 537
}

Jeff Davidson's avatar
Jeff Davidson committed
538 539 540 541 542 543 544 545 546 547 548 549 550
# Tab completion for lunch.
function _lunch()
{
    local cur prev opts
    COMPREPLY=()
    cur="${COMP_WORDS[COMP_CWORD]}"
    prev="${COMP_WORDS[COMP_CWORD-1]}"

    COMPREPLY=( $(compgen -W "${LUNCH_MENU_CHOICES[*]}" -- ${cur}) )
    return 0
}
complete -F _lunch lunch

Joe Onorato's avatar
Joe Onorato committed
551
# Configures the build to build unbundled apps.
552
# Run tapas with one or more app names (from LOCAL_PACKAGE_NAME)
Joe Onorato's avatar
Joe Onorato committed
553 554
function tapas()
{
555 556 557
    local arch="$(echo $* | xargs -n 1 echo | \grep -E '^(arm|x86|mips|armv5)$' | xargs)"
    local variant="$(echo $* | xargs -n 1 echo | \grep -E '^(user|userdebug|eng)$' | xargs)"
    local apps="$(echo $* | xargs -n 1 echo | \grep -E -v '^(user|userdebug|eng|arm|x86|mips|armv5)$' | xargs)"
Joe Onorato's avatar
Joe Onorato committed
558

559 560 561 562
    if [ $(echo $arch | wc -w) -gt 1 ]; then
        echo "tapas: Error: Multiple build archs supplied: $arch"
        return
    fi
Joe Onorato's avatar
Joe Onorato committed
563 564 565 566
    if [ $(echo $variant | wc -w) -gt 1 ]; then
        echo "tapas: Error: Multiple build variants supplied: $variant"
        return
    fi
567 568 569 570 571

    local product=full
    case $arch in
      x86)   product=full_x86;;
      mips)  product=full_mips;;
Ying Wang's avatar
Ying Wang committed
572
      armv5) product=generic_armv5;;
573
    esac
Joe Onorato's avatar
Joe Onorato committed
574 575 576
    if [ -z "$variant" ]; then
        variant=eng
    fi
577 578 579
    if [ -z "$apps" ]; then
        apps=all
    fi
Joe Onorato's avatar
Joe Onorato committed
580

581
    export TARGET_PRODUCT=$product
Joe Onorato's avatar
Joe Onorato committed
582 583 584 585 586 587 588 589
    export TARGET_BUILD_VARIANT=$variant
    export TARGET_BUILD_TYPE=release
    export TARGET_BUILD_APPS=$apps

    set_stuff_for_environment
    printconfig
}

590 591
function gettop
{
592
    local TOPFILE=build/core/envsetup.mk
593 594 595 596
    if [ -n "$TOP" -a -f "$TOP/$TOPFILE" ] ; then
        echo $TOP
    else
        if [ -f $TOPFILE ] ; then
597 598 599 600
            # The following circumlocution (repeated below as well) ensures
            # that we record the true directory name and not one that is
            # faked up with symlink names.
            PWD= /bin/pwd
601
        else
602
            local HERE=$PWD
603 604
            T=
            while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do
605
                \cd ..
synergy's avatar
synergy committed
606
                T=`PWD= /bin/pwd -P`
607
            done
608
            \cd $HERE
609 610 611 612 613 614 615
            if [ -f "$T/$TOPFILE" ]; then
                echo $T
            fi
        fi
    fi
}

616 617 618 619 620 621 622
# Return driver for "make", if any (eg. static analyzer)
function getdriver()
{
    local T="$1"
    test "$WITH_STATIC_ANALYZER" = "0" && unset WITH_STATIC_ANALYZER
    if [ -n "$WITH_STATIC_ANALYZER" ]; then
        echo "\
623 624
$T/prebuilts/misc/linux-x86/analyzer/tools/scan-build/scan-build \
--use-analyzer $T/prebuilts/misc/linux-x86/analyzer/bin/analyzer \
625 626 627 628 629
--status-bugs \
--top=$T"
    fi
}

630 631
function m()
{
632 633
    local T=$(gettop)
    local DRV=$(getdriver $T)
634
    if [ "$T" ]; then
635
        $DRV make -C $T -f build/core/main.mk $@
636 637 638 639 640 641 642 643
    else
        echo "Couldn't locate the top of the tree.  Try setting TOP."
    fi
}

function findmakefile()
{
    TOPFILE=build/core/envsetup.mk
644
    local HERE=$PWD
645 646
    T=
    while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do
647
        T=`PWD= /bin/pwd`
648 649
        if [ -f "$T/Android.mk" ]; then
            echo $T/Android.mk
650
            \cd $HERE
651 652
            return
        fi
653
        \cd ..
654
    done
655
    \cd $HERE
656 657 658 659
}

function mm()
{
660 661
    local T=$(gettop)
    local DRV=$(getdriver $T)
662 663 664
    # If we're sitting in the root of the build tree, just do a
    # normal make.
    if [ -f build/core/envsetup.mk -a -f Makefile ]; then
665
        $DRV make $@
666 667
    else
        # Find the closest Android.mk file.
668
        local M=$(findmakefile)
Ying Wang's avatar
Ying Wang committed
669 670 671
        local MODULES=
        local GET_INSTALL_PATH=
        local ARGS=
672 673
        # Remove the path to top as the makefilepath needs to be relative
        local M=`echo $M|sed 's:'$T'/::'`
674 675 676 677 678
        if [ ! "$T" ]; then
            echo "Couldn't locate the top of the tree.  Try setting TOP."
        elif [ ! "$M" ]; then
            echo "Couldn't locate a makefile from the current directory."
        else
Ying Wang's avatar
Ying Wang committed
679 680 681 682 683 684 685 686 687 688 689 690
            for ARG in $@; do
                case $ARG in
                  GET-INSTALL-PATH) GET_INSTALL_PATH=$ARG;;
                esac
            done
            if [ -n "$GET_INSTALL_PATH" ]; then
              MODULES=
              ARGS=GET-INSTALL-PATH
            else
              MODULES=all_modules
              ARGS=$@
            fi
691
            ONE_SHOT_MAKEFILE=$M $DRV make -C $T -f build/core/main.mk $MODULES $ARGS
692 693 694 695 696 697
        fi
    fi
}

function mmm()
{
698 699
    local T=$(gettop)
    local DRV=$(getdriver $T)
700
    if [ "$T" ]; then
701
        local MAKEFILE=
702
        local MODULES=
703 704
        local ARGS=
        local DIR TO_CHOP
Ying Wang's avatar
Ying Wang committed
705
        local GET_INSTALL_PATH=
706 707 708
        local DASH_ARGS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^-.*$/')
        local DIRS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^[^-].*$/')
        for DIR in $DIRS ; do
709 710 711 712 713
            MODULES=`echo $DIR | sed -n -e 's/.*:\(.*$\)/\1/p' | sed 's/,/ /'`
            if [ "$MODULES" = "" ]; then
                MODULES=all_modules
            fi
            DIR=`echo $DIR | sed -e 's/:.*//' -e 's:/$::'`
714
            if [ -f $DIR/Android.mk ]; then
Ying Wang's avatar
Ying Wang committed
715 716 717 718
                local TO_CHOP=`(\cd -P -- $T && pwd -P) | wc -c | tr -d ' '`
                local TO_CHOP=`expr $TO_CHOP + 1`
                local START=`PWD= /bin/pwd`
                local MFILE=`echo $START | cut -c${TO_CHOP}-`
719 720 721 722 723 724 725
                if [ "$MFILE" = "" ] ; then
                    MFILE=$DIR/Android.mk
                else
                    MFILE=$MFILE/$DIR/Android.mk
                fi
                MAKEFILE="$MAKEFILE $MFILE"
            else
Ying Wang's avatar
Ying Wang committed
726 727 728 729 730
                case $DIR in
                  showcommands | snod | dist | incrementaljavac) ARGS="$ARGS $DIR";;
                  GET-INSTALL-PATH) GET_INSTALL_PATH=$DIR;;
                  *) echo "No Android.mk in $DIR."; return 1;;
                esac
731 732
            fi
        done
Ying Wang's avatar
Ying Wang committed
733 734 735 736
        if [ -n "$GET_INSTALL_PATH" ]; then
          ARGS=$GET_INSTALL_PATH
          MODULES=
        fi
737
        ONE_SHOT_MAKEFILE="$MAKEFILE" $DRV make -C $T -f build/core/main.mk $DASH_ARGS $MODULES $ARGS
738 739 740 741 742
    else
        echo "Couldn't locate the top of the tree.  Try setting TOP."
    fi
}

Ying Wang's avatar
Ying Wang committed
743 744
function mma()
{
745 746
  local T=$(gettop)
  local DRV=$(getdriver $T)
Ying Wang's avatar
Ying Wang committed
747
  if [ -f build/core/envsetup.mk -a -f Makefile ]; then
748
    $DRV make $@
Ying Wang's avatar
Ying Wang committed
749 750 751 752 753
  else
    if [ ! "$T" ]; then
      echo "Couldn't locate the top of the tree.  Try setting TOP."
    fi
    local MY_PWD=`PWD= /bin/pwd|sed 's:'$T'/::'`
754
    $DRV make -C $T -f build/core/main.mk $@ all_modules BUILD_MODULES_IN_PATHS="$MY_PWD"
Ying Wang's avatar
Ying Wang committed
755 756 757 758 759
  fi
}

function mmma()
{
760 761
  local T=$(gettop)
  local DRV=$(getdriver $T)
Ying Wang's avatar
Ying Wang committed
762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787
  if [ "$T" ]; then
    local DASH_ARGS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^-.*$/')
    local DIRS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^[^-].*$/')
    local MY_PWD=`PWD= /bin/pwd`
    if [ "$MY_PWD" = "$T" ]; then
      MY_PWD=
    else
      MY_PWD=`echo $MY_PWD|sed 's:'$T'/::'`
    fi
    local DIR=
    local MODULE_PATHS=
    local ARGS=
    for DIR in $DIRS ; do
      if [ -d $DIR ]; then
        if [ "$MY_PWD" = "" ]; then
          MODULE_PATHS="$MODULE_PATHS $DIR"
        else
          MODULE_PATHS="$MODULE_PATHS $MY_PWD/$DIR"
        fi
      else
        case $DIR in
          showcommands | snod | dist | incrementaljavac) ARGS="$ARGS $DIR";;
          *) echo "Couldn't find directory $DIR"; return 1;;
        esac
      fi
    done
788
    $DRV make -C $T -f build/core/main.mk $DASH_ARGS $ARGS all_modules BUILD_MODULES_IN_PATHS="$MODULE_PATHS"
Ying Wang's avatar
Ying Wang committed
789 790 791 792 793
  else
    echo "Couldn't locate the top of the tree.  Try setting TOP."
  fi
}

794 795 796 797
function croot()
{
    T=$(gettop)
    if [ "$T" ]; then
798
        \cd $(gettop)
799 800 801 802 803
    else
        echo "Couldn't locate the top of the tree.  Try setting TOP."
    fi
}

804 805 806 807 808 809 810 811
function cproj()
{
    TOPFILE=build/core/envsetup.mk
    local HERE=$PWD
    T=
    while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do
        T=$PWD
        if [ -f "$T/Android.mk" ]; then
812
            \cd $T
813 814
            return
        fi
815
        \cd ..
816
    done
817
    \cd $HERE
818 819 820
    echo "can't find Android.mk"
}

821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836
# simplified version of ps; output in the form
# <pid> <procname>
function qpid() {
    local prepend=''
    local append=''
    if [ "$1" = "--exact" ]; then
        prepend=' '
        append='$'
        shift
    elif [ "$1" = "--help" -o "$1" = "-h" ]; then
		echo "usage: qpid [[--exact] <process name|pid>"
		return 255
	fi

    local EXE="$1"
    if [ "$EXE" ] ; then
837
		qpid | \grep "$prepend$EXE$append"
838 839 840 841 842 843 844
	else
		adb shell ps \
			| tr -d '\r' \
			| sed -e 1d -e 's/^[^ ]* *\([0-9]*\).* \([^ ]*\)$/\1 \2/'
	fi
}

845 846
function pid()
{
847 848 849 850 851 852 853 854 855 856 857
    local prepend=''
    local append=''
    if [ "$1" = "--exact" ]; then
        prepend=' '
        append='$'
        shift
    fi
    local EXE="$1"
    if [ "$EXE" ] ; then
        local PID=`adb shell ps \
            | tr -d '\r' \
858
            | \grep "$prepend$EXE$append" \
859 860 861 862 863 864
            | sed -e 's/^[^ ]* *\([0-9]*\).*$/\1/'`
        echo "$PID"
    else
        echo "usage: pid [--exact] <process name>"
		return 255
    fi
865 866
}

867 868 869 870
# systemstack - dump the current stack trace of all threads in the system process
# to the usual ANR traces file
function systemstack()
{
871 872 873 874 875 876 877 878
    stacks system_server
}

function stacks()
{
    if [[ $1 =~ ^[0-9]+$ ]] ; then
        local PID="$1"
    elif [ "$1" ] ; then
879 880 881 882 883 884 885 886
        local PIDLIST="$(pid $1)"
        if [[ $PIDLIST =~ ^[0-9]+$ ]] ; then
            local PID="$PIDLIST"
        elif [ "$PIDLIST" ] ; then
            echo "more than one process: $1"
        else
            echo "no such process: $1"
        fi
887 888 889 890 891
    else
        echo "usage: stacks [pid|process name]"
    fi

    if [ "$PID" ] ; then
892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917
        # Determine whether the process is native
        if adb shell ls -l /proc/$PID/exe | grep -q /system/bin/app_process ; then
            # Dump stacks of Dalvik process
            local TRACES=/data/anr/traces.txt
            local ORIG=/data/anr/traces.orig
            local TMP=/data/anr/traces.tmp

            # Keep original traces to avoid clobbering
            adb shell mv $TRACES $ORIG

            # Make sure we have a usable file
            adb shell touch $TRACES
            adb shell chmod 666 $TRACES

            # Dump stacks and wait for dump to finish
            adb shell kill -3 $PID
            adb shell notify $TRACES >/dev/null

            # Restore original stacks, and show current output
            adb shell mv $TRACES $TMP
            adb shell mv $ORIG $TRACES
            adb shell cat $TMP
        else
            # Dump stacks of native process
            adb shell debuggerd -b $PID
        fi
918
    fi
919 920
}

John Michelau's avatar
John Michelau committed
921 922
function gdbwrapper()
{
923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950
    local GDB_CMD="$1"
    shift 1
    $GDB_CMD -x "$@"
}

# process the symbolic link of /proc/$PID/exe and use the host file tool to
# determine whether it is a 32-bit or 64-bit executable. It returns "" or "64"
# which can be conveniently used as suffix.
function is64bit()
{
    local PID="$1"
    if [ "$PID" ] ; then
        local EXE=`adb shell ls -l /proc/$PID/exe \
                   | tr -d '\r' \
                   | cut -d'>' -f2 \
                   | tr -d ' ' \
                   | cut -d'/' -f4`

        local OUT_EXE_SYMBOLS=$(get_abs_build_var TARGET_OUT_EXECUTABLES_UNSTRIPPED)
        local IS64BIT=`file $OUT_EXE_SYMBOLS/$EXE | grep "64-bit"`
        if [ "$IS64BIT" != "" ]; then
            echo "64"
        else
            echo ""
        fi
    else
        echo ""
    fi
John Michelau's avatar
John Michelau committed
951 952
}

953 954 955
# gdbclient now determines whether the user wants to debug a 32-bit or 64-bit
# executable, set up the approriate gdbserver, then invokes the proper host
# gdb.
956 957
function gdbclient()
{
958 959 960 961 962
   local OUT_ROOT=$(get_abs_build_var PRODUCT_OUT)
   local OUT_SYMBOLS=$(get_abs_build_var TARGET_OUT_UNSTRIPPED)
   local OUT_SO_SYMBOLS=$(get_abs_build_var TARGET_OUT_SHARED_LIBRARIES_UNSTRIPPED)
   local OUT_EXE_SYMBOLS=$(get_abs_build_var TARGET_OUT_EXECUTABLES_UNSTRIPPED)
   local PREBUILTS=$(get_abs_build_var ANDROID_PREBUILTS)
Nick Kralevich's avatar
Nick Kralevich committed
963 964 965 966
   local ARCH=$(get_build_var TARGET_ARCH)
   local GDB
   case "$ARCH" in
       arm) GDB=arm-linux-androideabi-gdb;;
967
       arm64) GDB=arm-linux-androideabi-gdb; GDB64=aarch64-linux-android-gdb;;
968
       mips) GDB=mipsel-linux-android-gdb;;
Serban Constantinescu's avatar
Serban Constantinescu committed
969 970 971
       mips64) GDB=mipsel-linux-android-gdb;;
       x86) GDB=x86_64-linux-android-gdb;;
       x86_64) GDB=x86_64-linux-android-gdb;;
Nick Kralevich's avatar
Nick Kralevich committed
972 973 974
       *) echo "Unknown arch $ARCH"; return 1;;
   esac

975 976 977 978 979 980 981 982 983 984 985 986 987 988 989
   if [ "$OUT_ROOT" -a "$PREBUILTS" ]; then
       local EXE="$1"
       if [ "$EXE" ] ; then
           EXE=$1
       else
           EXE="app_process"
       fi

       local PORT="$2"
       if [ "$PORT" ] ; then
           PORT=$2
       else
           PORT=":5039"
       fi

Chris Craik's avatar
Chris Craik committed
990 991 992
       local PID="$3"
       if [ "$PID" ] ; then
           if [[ ! "$PID" =~ ^[0-9]+$ ]] ; then
993
               PID=`pid $3`
Chris Craik's avatar
Chris Craik committed
994 995 996
               if [[ ! "$PID" =~ ^[0-9]+$ ]] ; then
                   # that likely didn't work because of returning multiple processes
                   # try again, filtering by root processes (don't contain colon)
997
                   PID=`adb shell ps | \grep $3 | \grep -v ":" | awk '{print $2}'`
Chris Craik's avatar
Chris Craik committed
998 999 1000 1001 1002 1003 1004 1005 1006 1007
                   if [[ ! "$PID" =~ ^[0-9]+$ ]]
                   then
                       echo "Couldn't resolve '$3' to single PID"
                       return 1
                   else
                       echo ""
                       echo "WARNING: multiple processes matching '$3' observed, using root process"
                       echo ""
                   fi
               fi
1008
           fi
1009
           adb forward "tcp$PORT" "tcp$PORT"
1010 1011
           local USE64BIT="$(is64bit $PID)"
           adb shell gdbserver$USE64BIT $PORT --attach $PID &
1012 1013 1014 1015 1016 1017
           sleep 2
       else
               echo ""
               echo "If you haven't done so already, do this first on the device:"
               echo "    gdbserver $PORT /system/bin/$EXE"
                   echo " or"
Chris Craik's avatar
Chris Craik committed
1018
               echo "    gdbserver $PORT --attach <PID>"
1019 1020 1021
               echo ""
       fi

1022 1023
       OUT_SO_SYMBOLS=$OUT_SO_SYMBOLS$USE64BIT

1024
       echo >|"$OUT_ROOT/gdbclient.cmds" "set solib-absolute-prefix $OUT_SYMBOLS"
1025
       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"
1026
       echo >>"$OUT_ROOT/gdbclient.cmds" "source $ANDROID_BUILD_TOP/development/scripts/gdb/dalvik.gdb"
1027 1028 1029
       echo >>"$OUT_ROOT/gdbclient.cmds" "target remote $PORT"
       echo >>"$OUT_ROOT/gdbclient.cmds" ""

1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041
       local WHICH_GDB=
       # 64-bit exe found
       if [ "$USE64BIT" != "" ] ; then
           WHICH_GDB=$ANDROID_TOOLCHAIN/$GDB64
       # 32-bit exe / 32-bit platform
       elif [ "$(get_build_var TARGET_2ND_ARCH)" = "" ]; then
           WHICH_GDB=$ANDROID_TOOLCHAIN/$GDB
       # 32-bit exe / 64-bit platform
       else
           WHICH_GDB=$ANDROID_TOOLCHAIN_2ND_ARCH/$GDB
       fi
       gdbwrapper $WHICH_GDB "$OUT_ROOT/gdbclient.cmds" "$OUT_EXE_SYMBOLS/$EXE"
1042 1043 1044 1045 1046 1047 1048 1049 1050 1051
  else
       echo "Unable to determine build system output dir."
   fi

}

case `uname -s` in
    Darwin)
        function sgrep()
        {
1052
            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 "$@"
1053 1054 1055 1056 1057 1058
        }

        ;;
    *)
        function sgrep()
        {
1059
            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 "$@"
1060 1061 1062 1063
        }
        ;;
esac

1064 1065 1066 1067 1068
function gettargetarch
{
    get_build_var TARGET_ARCH
}

Jon Boekenoogen's avatar
ggrep  
Jon Boekenoogen committed
1069 1070 1071 1072 1073
function ggrep()
{
    find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -type f -name "*\.gradle" -print0 | xargs -0 grep --color -n "$@"
}

1074 1075
function jgrep()
{
1076
    find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -type f -name "*\.java" -print0 | xargs -0 grep --color -n "$@"
1077 1078 1079 1080
}

function cgrep()
{
1081
    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 "$@"
1082 1083 1084 1085
}

function resgrep()
{
1086
    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;
1087 1088
}

1089 1090 1091 1092 1093
function mangrep()
{
    find . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o -type f -name 'AndroidManifest.xml' -print0 | xargs -0 grep --color -n "$@"
}

1094 1095 1096 1097 1098
function sepgrep()
{
    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 "$@"
}

1099 1100 1101 1102
case `uname -s` in
    Darwin)
        function mgrep()
        {
1103
            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 "$@"
1104 1105 1106 1107
        }

        function treegrep()
        {
1108
            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 "$@"
1109 1110 1111 1112 1113 1114
        }

        ;;
    *)
        function mgrep()
        {
1115
            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 "$@"
1116 1117 1118 1119
        }

        function treegrep()
        {
1120
            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 "$@"
1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137
        }

        ;;
esac

function getprebuilt
{
    get_abs_build_var ANDROID_PREBUILTS
}

function tracedmdump()
{
    T=$(gettop)
    if [ ! "$T" ]; then
        echo "Couldn't locate the top of the tree.  Try setting TOP."
        return
    fi
1138
    local prebuiltdir=$(getprebuilt)
1139 1140
    local arch=$(gettargetarch)
    local KERNEL=$T/prebuilts/qemu-kernel/$arch/vmlinux-qemu
1141

1142
    local TRACE=$1
1143 1144 1145 1146 1147
    if [ ! "$TRACE" ] ; then
        echo "usage:  tracedmdump  tracename"
        return
    fi

1148 1149 1150 1151 1152
    if [ ! -r "$KERNEL" ] ; then
        echo "Error: cannot find kernel: '$KERNEL'"
        return
    fi

1153
    local BASETRACE=$(basename $TRACE)
1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177
    if [ "$BASETRACE" = "$TRACE" ] ; then
        TRACE=$ANDROID_PRODUCT_OUT/traces/$TRACE
    fi

    echo "post-processing traces..."
    rm -f $TRACE/qtrace.dexlist
    post_trace $TRACE
    if [ $? -ne 0 ]; then
        echo "***"
        echo "*** Error: malformed trace.  Did you remember to exit the emulator?"
        echo "***"
        return
    fi
    echo "generating dexlist output..."
    /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
    echo "generating dmtrace data..."
    q2dm -r $ANDROID_PRODUCT_OUT/symbols $TRACE $KERNEL $TRACE/dmtrace || return
    echo "generating html file..."
    dmtracedump -h $TRACE/dmtrace >| $TRACE/dmtrace.html || return
    echo "done, see $TRACE/dmtrace.html for details"
    echo "or run:"
    echo "    traceview $TRACE/dmtrace"
}

1178 1179
# communicate with a running device or emulator, set up necessary state,
# and run the hat command.
1180 1181
function runhat()
{
1182 1183
    # process standard adb options
    local adbTarget=""
1184
    if [ "$1" = "-d" -o "$1" = "-e" ]; then
1185 1186
        adbTarget=$1
        shift 1
1187
    elif [ "$1" = "-s" ]; then
1188 1189 1190 1191
        adbTarget="$1 $2"
        shift 2
    fi
    local adbOptions=${adbTarget}
1192
    #echo adbOptions = ${adbOptions}
1193 1194 1195

    # runhat options
    local targetPid=$1
1196 1197

    if [ "$targetPid" = "" ]; then
1198
        echo "Usage: runhat [ -d | -e | -s serial ] target-pid"
1199 1200 1201
        return
    fi

1202 1203 1204 1205 1206 1207
    # confirm hat is available
    if [ -z $(which hat) ]; then
        echo "hat is not available in this configuration."
        return
    fi

1208
    # issue "am" command to cause the hprof dump
1209
    local sdcard=$(adb ${adbOptions} shell echo -n '$EXTERNAL_STORAGE')
1210 1211
    local devFile=$sdcard/hprof-$targetPid
    #local devFile=/data/local/hprof-$targetPid
1212
    echo "Poking $targetPid and waiting for data..."
1213
    echo "Storing data at $devFile"
1214
    adb ${adbOptions} shell am dumpheap $targetPid $devFile
1215
    echo "Press enter when logcat shows \"hprof: heap dump completed\""
1216 1217 1218
    echo -n "> "
    read

1219
    local localFile=/tmp/$$-hprof
1220

1221 1222
    echo "Retrieving file $devFile..."
    adb ${adbOptions} pull $devFile $localFile
1223

1224
    adb ${adbOptions} shell rm $devFile
1225

1226
    echo "Running hat on $localFile"
1227 1228
    echo "View the output by pointing your browser at http://localhost:7000/"
    echo ""
Dianne Hackborn's avatar
Dianne Hackborn committed
1229
    hat -JXmx512m $localFile
1230 1231 1232 1233
}

function getbugreports()
{
1234
    local reports=(`adb shell ls /sdcard/bugreports | tr -d '\r'`)
1235 1236 1237 1238 1239 1240

    if [ ! "$reports" ]; then
        echo "Could not locate any bugreports."
        return
    fi

1241 1242
    local report
    for report in ${reports[@]}
1243
    do
1244 1245 1246
        echo "/sdcard/bugreports/${report}"
        adb pull /sdcard/bugreports/${report} ${report}
        gunzip ${report}
1247 1248 1249
    done
}

1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271
function getsdcardpath()
{
    adb ${adbOptions} shell echo -n \$\{EXTERNAL_STORAGE\}
}

function getscreenshotpath()
{
    echo "$(getsdcardpath)/Pictures/Screenshots"
}

function getlastscreenshot()
{
    local screenshot_path=$(getscreenshotpath)
    local screenshot=`adb ${adbOptions} ls ${screenshot_path} | grep Screenshot_[0-9-]*.*\.png | sort -rk 3 | cut -d " " -f 4 | head -n 1`
    if [ "$screenshot" = "" ]; then
        echo "No screenshots found."
        return
    fi
    echo "${screenshot}"
    adb ${adbOptions} pull ${screenshot_path}/${screenshot}
}

1272 1273
function startviewserver()
{
1274
    local port=4939
1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290
    if [ $# -gt 0 ]; then
            port=$1
    fi
    adb shell service call window 1 i32 $port
}

function stopviewserver()
{
    adb shell service call window 2
}

function isviewserverstarted()
{
    adb shell service call window 3
}

1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305
function key_home()
{
    adb shell input keyevent 3
}

function key_back()
{
    adb shell input keyevent 4
}

function key_menu()
{
    adb shell input keyevent 82
}

1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317
function smoketest()
{
    if [ ! "$ANDROID_PRODUCT_OUT" ]; then
        echo "Couldn't locate output files.  Try running 'lunch' first." >&2
        return
    fi
    T=$(gettop)
    if [ ! "$T" ]; then
        echo "Couldn't locate the top of the tree.  Try setting TOP." >&2
        return
    fi

1318
    (\cd "$T" && mmm tests/SmokeTest) &&
1319 1320 1321 1322 1323 1324 1325
      adb uninstall com.android.smoketest > /dev/null &&
      adb uninstall com.android.smoketest.tests > /dev/null &&
      adb install $ANDROID_PRODUCT_OUT/data/app/SmokeTestApp.apk &&
      adb install $ANDROID_PRODUCT_OUT/data/app/SmokeTest.apk &&
      adb shell am instrument -w com.android.smoketest.tests/android.test.InstrumentationTestRunner
}

1326 1327 1328 1329 1330 1331 1332 1333
# simple shortcut to the runtest command
function runtest()
{
    T=$(gettop)
    if [ ! "$T" ]; then
        echo "Couldn't locate the top of the tree.  Try setting TOP." >&2
        return
    fi
1334
    ("$T"/development/testrunner/runtest.py $@)
1335 1336
}

1337 1338 1339 1340 1341
function godir () {
    if [[ -z "$1" ]]; then
        echo "Usage: godir <regex>"
        return
    fi
1342
    T=$(gettop)
1343 1344
    if [[ ! -f $T/filelist ]]; then
        echo -n "Creating index..."
1345
        (\cd $T; find . -wholename ./out -prune -o -wholename ./.repo -prune -o -type f > filelist)
1346 1347 1348 1349
        echo " Done"
        echo ""
    fi
    local lines
1350
    lines=($(\grep "$1" $T/filelist | sed -e 's/\/[^/]*$//' | sort | uniq))
1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362
    if [[ ${#lines[@]} = 0 ]]; then
        echo "Not found"
        return
    fi
    local pathname
    local choice
    if [[ ${#lines[@]} > 1 ]]; then
        while [[ -z "$pathname" ]]; do
            local index=1
            local line
            for line in ${lines[@]}; do
                printf "%6s %s\n" "[$index]" $line
1363
                index=$(($index + 1))
1364 1365 1366 1367 1368 1369 1370 1371 1372
            done
            echo
            echo -n "Select one: "
            unset choice
            read choice
            if [[ $choice -gt ${#lines[@]} || $choice -lt 1 ]]; then
                echo "Invalid choice"
                continue
            fi
1373
            pathname=${lines[$(($choice-1))]}
1374 1375 1376 1377
        done
    else
        pathname=${lines[0]}
    fi
1378
    \cd $T/$pathname
1379 1380
}

1381 1382 1383 1384 1385
# Force JAVA_HOME to point to java 1.7 or java 1.6  if it isn't already set.
#
# Note that the MacOS path for java 1.7 includes a minor revision number (sigh).
# For some reason, installing the JDK doesn't make it show up in the
# JavaVM.framework/Versions/1.7/ folder.
1386
function set_java_home() {
1387
    # Clear the existing JAVA_HOME value if we set it ourselves, so that
Narayan Kamath's avatar
Narayan Kamath committed
1388 1389
    # we can reset it later, depending on the version of java the build
    # system needs.
1390 1391 1392 1393 1394 1395 1396
    #
    # If we don't do this, the JAVA_HOME value set by the first call to
    # build/envsetup.sh will persist forever.
    if [ -n "$ANDROID_SET_JAVA_HOME" ]; then
      export JAVA_HOME=""
    fi

1397
    if [ ! "$JAVA_HOME" ]; then
Narayan Kamath's avatar
Narayan Kamath committed
1398
      if [ -n "$LEGACY_USE_JAVA6" ]; then
1399 1400 1401 1402 1403 1404 1405 1406
        case `uname -s` in
            Darwin)
                export JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Versions/1.6/Home
                ;;
            *)
                export JAVA_HOME=/usr/lib/jvm/java-6-sun
                ;;
        esac
1407 1408 1409
      else
        case `uname -s` in
            Darwin)
1410
                export JAVA_HOME=$(/usr/libexec/java_home -v 1.7)
1411 1412 1413 1414 1415 1416 1417 1418 1419 1420
                ;;
            *)
                export JAVA_HOME=/usr/lib/jvm/java-7-openjdk-amd64
                ;;
        esac
      fi

      # Keep track of the fact that we set JAVA_HOME ourselves, so that
      # we can change it on the next envsetup.sh, if required.
      export ANDROID_SET_JAVA_HOME=true
1421
    fi
1422
}
1423

1424 1425
# Print colored exit condition
function pez {
1426 1427 1428 1429 1430 1431 1432 1433 1434
    "$@"
    local retval=$?
    if [ $retval -ne 0 ]
    then
        echo -e "\e[0;31mFAILURE\e[00m"
    else
        echo -e "\e[0;32mSUCCESS\e[00m"
    fi
    return $retval
1435 1436
}

1437 1438 1439 1440 1441 1442 1443 1444 1445
if [ "x$SHELL" != "x/bin/bash" ]; then
    case `ps -o command -p $$` in
        *bash*)
            ;;
        *)
            echo "WARNING: Only bash is supported, use of other shell would lead to erroneous results"
            ;;
    esac
fi
1446 1447

# Execute the contents of any vendorsetup.sh files we can find.
1448 1449
for f in `test -d device && find device -maxdepth 4 -name 'vendorsetup.sh' 2> /dev/null` \
         `test -d vendor && find vendor -maxdepth 4 -name 'vendorsetup.sh' 2> /dev/null`
1450 1451 1452 1453 1454
do
    echo "including $f"
    . $f
done
unset f
Kenny Root's avatar
Kenny Root committed
1455 1456

addcompletions