envsetup.sh 40.6 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 14 15
- cgrep:   Greps on all local C/C++ files.
- jgrep:   Greps on all local Java files.
- resgrep: Greps on all local res/*.xml files.
16
- godir:   Go to the directory containing a file.
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36

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
37
    (\cd $T; CALLED_FROM_SETUP=true BUILD_SYSTEM=build/core \
38
      make --no-print-directory -f build/core/config.mk dumpvar-abs-$1)
39 40 41 42 43 44 45 46 47 48
}

# 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
49 50
    (\cd $T; CALLED_FROM_SETUP=true BUILD_SYSTEM=build/core \
      make --no-print-directory -f build/core/config.mk dumpvar-$1)
51 52 53 54 55 56 57 58 59 60 61
}

# 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 \
62 63 64
        TARGET_PRODUCT=$1 \
        TARGET_BUILD_VARIANT= \
        TARGET_BUILD_TYPE= \
Joe Onorato's avatar
Joe Onorato committed
65
        TARGET_BUILD_APPS= \
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
        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
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
}

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.                                #
    #                                                                #
    ##################################################################

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

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

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

121 122
    # defined in core/config.mk
    targetgccversion=$(get_build_var TARGET_GCC_VERSION)
123
    export TARGET_GCC_VERSION=$targetgccversion
124

125
    # The gcc toolchain does not exists for windows/cygwin. In this case, do not reference it.
126 127
    export ANDROID_TOOLCHAIN=
    export ANDROID_TOOLCHAIN_2ND_ARCH=
128 129
    local ARCH=$(get_build_var TARGET_ARCH)
    case $ARCH in
130
        x86) toolchaindir=x86/x86_64-linux-android-$targetgccversion/bin
Mark D Horn's avatar
Mark D Horn committed
131
            ;;
Pavel Chupin's avatar
Pavel Chupin committed
132 133
        x86_64) toolchaindir=x86/x86_64-linux-android-$targetgccversion/bin
            ;;
134
        arm) toolchaindir=arm/arm-linux-androideabi-$targetgccversion/bin
135
            ;;
136 137
        arm64) toolchaindir=aarch64/aarch64-linux-android-$targetgccversion/bin;
               toolchaindir2=arm/arm-linux-androideabi-$targetgccversion/bin
138
            ;;
139
        mips) toolchaindir=mips/mipsel-linux-android-$targetgccversion/bin
140
            ;;
Chris Dearman's avatar
Chris Dearman committed
141
        mips64) toolchaindir=mips/mips64el-linux-android-$targetgccversion/bin
Serban Constantinescu's avatar
Serban Constantinescu committed
142
            ;;
143 144 145
        *)
            echo "Can't find toolchain for unknown architecture: $ARCH"
            toolchaindir=xxxxxxxxx
Mark D Horn's avatar
Mark D Horn committed
146 147
            ;;
    esac
148
    if [ -d "$gccprebuiltdir/$toolchaindir" ]; then
149
        export ANDROID_TOOLCHAIN=$gccprebuiltdir/$toolchaindir
150
    fi
151

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

171
    export ANDROID_QTOOLS=$T/development/emulator/qtools
172
    export ANDROID_DEV_SCRIPTS=$T/development/scripts:$T/prebuilts/devtools/tools
173
    export ANDROID_BUILD_PATHS=$(get_build_var ANDROID_BUILD_PATHS):$ANDROID_QTOOLS:$ANDROID_TOOLCHAIN:$ANDROID_KERNEL_TOOLCHAIN_PATH$ANDROID_DEV_SCRIPTS:
174 175 176 177 178 179 180 181 182 183 184 185 186 187 188

    # If prebuilts/android-emulator/<system>/ exists, prepend it to our PATH
    # to ensure that the corresponding 'emulator' binaries are used.
    case $(uname -s) in
        Darwin)
            ANDROID_EMULATOR_PREBUILTS=$T/prebuilts/android-emulator/darwin-x86_64
            ;;
        Linux)
            ANDROID_EMULATOR_PREBUILTS=$T/prebuilts/android-emulator/linux-x86_64
            ;;
        *)
            ANDROID_EMULATOR_PREBUILTS=
            ;;
    esac
    if [ -n "$ANDROID_EMULATOR_PREBUILTS" -a -d "$ANDROID_EMULATOR_PREBUILTS" ]; then
189
        ANDROID_BUILD_PATHS=$ANDROID_BUILD_PATHS$ANDROID_EMULATOR_PREBUILTS:
190 191 192
        export ANDROID_EMULATOR_PREBUILTS
    fi

193
    export PATH=$ANDROID_BUILD_PATHS$PATH
194

195
    unset ANDROID_JAVA_TOOLCHAIN
196
    unset ANDROID_PRE_BUILD_PATHS
197 198
    if [ -n "$JAVA_HOME" ]; then
        export ANDROID_JAVA_TOOLCHAIN=$JAVA_HOME/bin
199 200
        export ANDROID_PRE_BUILD_PATHS=$ANDROID_JAVA_TOOLCHAIN:
        export PATH=$ANDROID_PRE_BUILD_PATHS$PATH
201 202
    fi

203
    unset ANDROID_PRODUCT_OUT
204 205 206
    export ANDROID_PRODUCT_OUT=$(get_abs_build_var PRODUCT_OUT)
    export OUT=$ANDROID_PRODUCT_OUT

207 208 209
    unset ANDROID_HOST_OUT
    export ANDROID_HOST_OUT=$(get_abs_build_var HOST_OUT)

210
    # needed for building linux on MacOS
211 212 213 214 215 216
    # TODO: fix the path
    #export HOST_EXTRACFLAGS="-I "$T/system/kernel_headers/host_include
}

function printconfig()
{
217 218 219 220 221 222
    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
223 224 225 226
}

function set_stuff_for_environment()
{
227
    settitle
228
    set_java_home
229 230
    setpaths
    set_sequence_number
231

232
    export ANDROID_BUILD_TOP=$(gettop)
Ben Cheng's avatar
Ben Cheng committed
233 234
    # 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'
235 236 237 238
}

function set_sequence_number()
{
239
    export BUILD_ENV_SEQUENCE_NUMBER=10
240 241 242 243
}

function settitle()
{
244
    if [ "$STAY_OFF_MY_LAWN" = "" ]; then
245
        local arch=$(gettargetarch)
Joe Onorato's avatar
Joe Onorato committed
246 247 248 249
        local product=$TARGET_PRODUCT
        local variant=$TARGET_BUILD_VARIANT
        local apps=$TARGET_BUILD_APPS
        if [ -z "$apps" ]; then
250
            export PROMPT_COMMAND="echo -ne \"\033]0;[${arch}-${product}-${variant}] ${USER}@${HOSTNAME}: ${PWD}\007\""
Joe Onorato's avatar
Joe Onorato committed
251
        else
252
            export PROMPT_COMMAND="echo -ne \"\033]0;[$arch $apps $variant] ${USER}@${HOSTNAME}: ${PWD}\007\""
Joe Onorato's avatar
Joe Onorato committed
253
        fi
254
    fi
255 256
}

Kenny Root's avatar
Kenny Root committed
257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272
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
273
        for f in `/bin/ls ${dir}/[a-z]*.bash 2> /dev/null`; do
Kenny Root's avatar
Kenny Root committed
274 275 276 277 278 279
            echo "including $f"
            . $f
        done
    fi
}

280 281 282 283 284 285 286
function choosetype()
{
    echo "Build type choices are:"
    echo "     1. release"
    echo "     2. debug"
    echo

287
    local DEFAULT_NUM DEFAULT_VALUE
288 289
    DEFAULT_NUM=1
    DEFAULT_VALUE=release
290

291 292
    export TARGET_BUILD_TYPE=
    local ANSWER
293 294 295
    while [ -z $TARGET_BUILD_TYPE ]
    do
        echo -n "Which would you like? ["$DEFAULT_NUM"] "
296 297 298 299 300 301
        if [ -z "$1" ] ; then
            read ANSWER
        else
            echo $1
            ANSWER=$1
        fi
302 303 304 305 306 307 308
        case $ANSWER in
        "")
            export TARGET_BUILD_TYPE=$DEFAULT_VALUE
            ;;
        1)
            export TARGET_BUILD_TYPE=release
            ;;
309 310 311
        release)
            export TARGET_BUILD_TYPE=release
            ;;
312 313 314
        2)
            export TARGET_BUILD_TYPE=debug
            ;;
315 316 317
        debug)
            export TARGET_BUILD_TYPE=debug
            ;;
318 319 320 321 322 323
        *)
            echo
            echo "I didn't understand your response.  Please try again."
            echo
            ;;
        esac
324 325 326
        if [ -n "$1" ] ; then
            break
        fi
327 328 329 330 331
    done

    set_stuff_for_environment
}

332 333 334 335 336 337
#
# 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.
#
338 339 340 341 342
function chooseproduct()
{
    if [ "x$TARGET_PRODUCT" != x ] ; then
        default_value=$TARGET_PRODUCT
    else
343
        default_value=full
344 345
    fi

346 347
    export TARGET_PRODUCT=
    local ANSWER
348 349
    while [ -z "$TARGET_PRODUCT" ]
    do
350
        echo -n "Which product would you like? [$default_value] "
351 352 353 354 355 356 357
        if [ -z "$1" ] ; then
            read ANSWER
        else
            echo $1
            ANSWER=$1
        fi

358 359
        if [ -z "$ANSWER" ] ; then
            export TARGET_PRODUCT=$default_value
360 361 362 363 364 365 366 367 368 369
        else
            if check_product $ANSWER
            then
                export TARGET_PRODUCT=$ANSWER
            else
                echo "** Not a valid product: $ANSWER"
            fi
        fi
        if [ -n "$1" ] ; then
            break
370 371 372 373 374 375
        fi
    done

    set_stuff_for_environment
}

376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406
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
407
                export TARGET_BUILD_VARIANT=${VARIANT_CHOICES[$(($ANSWER-1))]}
408 409 410 411 412 413 414 415 416 417 418 419 420 421 422
            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
}

423 424
function choosecombo()
{
425
    choosetype $1
426 427 428

    echo
    echo
429
    chooseproduct $2
430 431 432

    echo
    echo
433
    choosevariant $3
434

435 436
    echo
    set_stuff_for_environment
437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452
    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)
453 454
}

455
# add the default one here
456
add_lunch_combo aosp_arm-eng
Serban Constantinescu's avatar
Serban Constantinescu committed
457
add_lunch_combo aosp_arm64-eng
458
add_lunch_combo aosp_mips-eng
Chris Dearman's avatar
Chris Dearman committed
459
add_lunch_combo aosp_mips64-eng
Serban Constantinescu's avatar
Serban Constantinescu committed
460
add_lunch_combo aosp_x86-eng
Pavel Chupin's avatar
Pavel Chupin committed
461
add_lunch_combo aosp_x86_64-eng
462
add_lunch_combo vbox_x86-eng
463

464 465 466 467 468 469 470
function print_lunch_menu()
{
    local uname=$(uname)
    echo
    echo "You're building on" $uname
    echo
    echo "Lunch menu... pick a combo:"
471 472 473 474 475 476 477 478 479

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

480 481 482 483 484
    echo
}

function lunch()
{
485 486
    local answer

487
    if [ "$1" ] ; then
488
        answer=$1
489 490
    else
        print_lunch_menu
491
        echo -n "Which would you like? [aosp_arm-eng] "
492
        read answer
493 494
    fi

495 496 497 498
    local selection=

    if [ -z "$answer" ]
    then
499
        selection=aosp_arm-eng
500 501 502 503
    elif (echo -n $answer | grep -q -e "^[0-9][0-9]*$")
    then
        if [ $answer -le ${#LUNCH_MENU_CHOICES[@]} ]
        then
504
            selection=${LUNCH_MENU_CHOICES[$(($answer-1))]}
505 506
        fi
    elif (echo -n $answer | grep -q -e "^[^\-][^\-]*-[^\-][^\-]*$")
507
    then
508
        selection=$answer
509 510
    fi

511 512 513 514 515 516 517
    if [ -z "$selection" ]
    then
        echo
        echo "Invalid lunch combo: $answer"
        return 1
    fi

Joe Onorato's avatar
Joe Onorato committed
518 519
    export TARGET_BUILD_APPS=

520 521 522
    local product=$(echo -n $selection | sed -e "s/-.*$//")
    check_product $product
    if [ $? -ne 0 ]
523
    then
524 525 526 527 528
        echo
        echo "** Don't have a product spec for: '$product'"
        echo "** Do you have the right repo manifest?"
        product=
    fi
529

530 531 532 533 534 535 536 537 538
    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
539

540 541 542 543 544
    if [ -z "$product" -o -z "$variant" ]
    then
        echo
        return 1
    fi
545

546 547 548
    export TARGET_PRODUCT=$product
    export TARGET_BUILD_VARIANT=$variant
    export TARGET_BUILD_TYPE=release
549

550 551 552 553
    echo

    set_stuff_for_environment
    printconfig
554 555
}

Jeff Davidson's avatar
Jeff Davidson committed
556 557 558 559 560 561 562 563 564 565 566 567 568
# 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
569 570 571 572
# Configures the build to build unbundled apps.
# Run tapas with one ore more app names (from LOCAL_PACKAGE_NAME)
function tapas()
{
Ying Wang's avatar
Ying Wang committed
573
    local arch=$(echo -n $(echo $* | xargs -n 1 echo | \grep -E '^(arm|x86|mips|armv5)$'))
574
    local variant=$(echo -n $(echo $* | xargs -n 1 echo | \grep -E '^(user|userdebug|eng)$'))
Ying Wang's avatar
Ying Wang committed
575
    local apps=$(echo -n $(echo $* | xargs -n 1 echo | \grep -E -v '^(user|userdebug|eng|arm|x86|mips|armv5)$'))
Joe Onorato's avatar
Joe Onorato committed
576

577 578 579 580
    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
581 582 583 584
    if [ $(echo $variant | wc -w) -gt 1 ]; then
        echo "tapas: Error: Multiple build variants supplied: $variant"
        return
    fi
585 586 587 588 589

    local product=full
    case $arch in
      x86)   product=full_x86;;
      mips)  product=full_mips;;
Ying Wang's avatar
Ying Wang committed
590
      armv5) product=generic_armv5;;
591
    esac
Joe Onorato's avatar
Joe Onorato committed
592 593 594
    if [ -z "$variant" ]; then
        variant=eng
    fi
595 596 597
    if [ -z "$apps" ]; then
        apps=all
    fi
Joe Onorato's avatar
Joe Onorato committed
598

599
    export TARGET_PRODUCT=$product
Joe Onorato's avatar
Joe Onorato committed
600 601 602 603 604 605 606 607
    export TARGET_BUILD_VARIANT=$variant
    export TARGET_BUILD_TYPE=release
    export TARGET_BUILD_APPS=$apps

    set_stuff_for_environment
    printconfig
}

608 609
function gettop
{
610
    local TOPFILE=build/core/envsetup.mk
611 612 613 614
    if [ -n "$TOP" -a -f "$TOP/$TOPFILE" ] ; then
        echo $TOP
    else
        if [ -f $TOPFILE ] ; then
615 616 617 618
            # 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
619
        else
620
            local HERE=$PWD
621 622
            T=
            while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do
623
                \cd ..
synergy's avatar
synergy committed
624
                T=`PWD= /bin/pwd -P`
625
            done
626
            \cd $HERE
627 628 629 630 631 632 633
            if [ -f "$T/$TOPFILE" ]; then
                echo $T
            fi
        fi
    fi
}

634 635 636 637 638 639 640
# 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 "\
641 642
$T/prebuilts/misc/linux-x86/analyzer/tools/scan-build/scan-build \
--use-analyzer $T/prebuilts/misc/linux-x86/analyzer/bin/analyzer \
643 644 645 646 647
--status-bugs \
--top=$T"
    fi
}

648 649
function m()
{
650 651
    local T=$(gettop)
    local DRV=$(getdriver $T)
652
    if [ "$T" ]; then
653
        $DRV make -C $T -f build/core/main.mk $@
654 655 656 657 658 659 660 661
    else
        echo "Couldn't locate the top of the tree.  Try setting TOP."
    fi
}

function findmakefile()
{
    TOPFILE=build/core/envsetup.mk
662
    local HERE=$PWD
663 664
    T=
    while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do
665
        T=`PWD= /bin/pwd`
666 667
        if [ -f "$T/Android.mk" ]; then
            echo $T/Android.mk
668
            \cd $HERE
669 670
            return
        fi
671
        \cd ..
672
    done
673
    \cd $HERE
674 675 676 677
}

function mm()
{
678 679
    local T=$(gettop)
    local DRV=$(getdriver $T)
680 681 682
    # 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
683
        $DRV make $@
684 685
    else
        # Find the closest Android.mk file.
686
        local M=$(findmakefile)
Ying Wang's avatar
Ying Wang committed
687 688 689
        local MODULES=
        local GET_INSTALL_PATH=
        local ARGS=
690 691
        # Remove the path to top as the makefilepath needs to be relative
        local M=`echo $M|sed 's:'$T'/::'`
692 693 694 695 696
        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
697 698 699 700 701 702 703 704 705 706 707 708
            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
709
            ONE_SHOT_MAKEFILE=$M $DRV make -C $T -f build/core/main.mk $MODULES $ARGS
710 711 712 713 714 715
        fi
    fi
}

function mmm()
{
716 717
    local T=$(gettop)
    local DRV=$(getdriver $T)
718
    if [ "$T" ]; then
719
        local MAKEFILE=
720
        local MODULES=
721 722
        local ARGS=
        local DIR TO_CHOP
Ying Wang's avatar
Ying Wang committed
723
        local GET_INSTALL_PATH=
724 725 726
        local DASH_ARGS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^-.*$/')
        local DIRS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^[^-].*$/')
        for DIR in $DIRS ; do
727 728 729 730 731
            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:/$::'`
732
            if [ -f $DIR/Android.mk ]; then
Ying Wang's avatar
Ying Wang committed
733 734 735 736
                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}-`
737 738 739 740 741 742 743
                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
744 745 746 747 748
                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
749 750
            fi
        done
Ying Wang's avatar
Ying Wang committed
751 752 753 754
        if [ -n "$GET_INSTALL_PATH" ]; then
          ARGS=$GET_INSTALL_PATH
          MODULES=
        fi
755
        ONE_SHOT_MAKEFILE="$MAKEFILE" $DRV make -C $T -f build/core/main.mk $DASH_ARGS $MODULES $ARGS
756 757 758 759 760
    else
        echo "Couldn't locate the top of the tree.  Try setting TOP."
    fi
}

Ying Wang's avatar
Ying Wang committed
761 762
function mma()
{
763 764
  local T=$(gettop)
  local DRV=$(getdriver $T)
Ying Wang's avatar
Ying Wang committed
765
  if [ -f build/core/envsetup.mk -a -f Makefile ]; then
766
    $DRV make $@
Ying Wang's avatar
Ying Wang committed
767 768 769 770 771
  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'/::'`
772
    $DRV make -C $T -f build/core/main.mk $@ all_modules BUILD_MODULES_IN_PATHS="$MY_PWD"
Ying Wang's avatar
Ying Wang committed
773 774 775 776 777
  fi
}

function mmma()
{
778 779
  local T=$(gettop)
  local DRV=$(getdriver $T)
Ying Wang's avatar
Ying Wang committed
780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805
  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
806
    $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
807 808 809 810 811
  else
    echo "Couldn't locate the top of the tree.  Try setting TOP."
  fi
}

812 813 814 815
function croot()
{
    T=$(gettop)
    if [ "$T" ]; then
816
        \cd $(gettop)
817 818 819 820 821
    else
        echo "Couldn't locate the top of the tree.  Try setting TOP."
    fi
}

822 823 824 825 826 827 828 829
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
830
            \cd $T
831 832
            return
        fi
833
        \cd ..
834
    done
835
    \cd $HERE
836 837 838
    echo "can't find Android.mk"
}

839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854
# 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
855
		qpid | \grep "$prepend$EXE$append"
856 857 858 859 860 861 862
	else
		adb shell ps \
			| tr -d '\r' \
			| sed -e 1d -e 's/^[^ ]* *\([0-9]*\).* \([^ ]*\)$/\1 \2/'
	fi
}

863 864
function pid()
{
865 866 867 868 869 870 871 872 873 874 875
    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' \
876
            | \grep "$prepend$EXE$append" \
877 878 879 880 881 882
            | sed -e 's/^[^ ]* *\([0-9]*\).*$/\1/'`
        echo "$PID"
    else
        echo "usage: pid [--exact] <process name>"
		return 255
    fi
883 884
}

885 886 887 888
# systemstack - dump the current stack trace of all threads in the system process
# to the usual ANR traces file
function systemstack()
{
889 890 891 892 893 894 895 896
    stacks system_server
}

function stacks()
{
    if [[ $1 =~ ^[0-9]+$ ]] ; then
        local PID="$1"
    elif [ "$1" ] ; then
897 898 899 900 901 902 903 904
        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
905 906 907 908 909
    else
        echo "usage: stacks [pid|process name]"
    fi

    if [ "$PID" ] ; then
910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935
        # 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
936
    fi
937 938
}

John Michelau's avatar
John Michelau committed
939 940
function gdbwrapper()
{
941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968
    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
969 970
}

971 972 973
# 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.
974 975
function gdbclient()
{
976 977 978 979 980
   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
981 982 983 984
   local ARCH=$(get_build_var TARGET_ARCH)
   local GDB
   case "$ARCH" in
       arm) GDB=arm-linux-androideabi-gdb;;
985
       arm64) GDB=arm-linux-androideabi-gdb; GDB64=aarch64-linux-android-gdb;;
986
       mips) GDB=mipsel-linux-android-gdb;;
Serban Constantinescu's avatar
Serban Constantinescu committed
987 988 989
       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
990 991 992
       *) echo "Unknown arch $ARCH"; return 1;;
   esac

993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007
   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
1008 1009 1010
       local PID="$3"
       if [ "$PID" ] ; then
           if [[ ! "$PID" =~ ^[0-9]+$ ]] ; then
1011
               PID=`pid $3`
Chris Craik's avatar
Chris Craik committed
1012 1013 1014
               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)
1015
                   PID=`adb shell ps | \grep $3 | \grep -v ":" | awk '{print $2}'`
Chris Craik's avatar
Chris Craik committed
1016 1017 1018 1019 1020 1021 1022 1023 1024 1025
                   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
1026
           fi
1027
           adb forward "tcp$PORT" "tcp$PORT"
1028 1029
           local USE64BIT="$(is64bit $PID)"
           adb shell gdbserver$USE64BIT $PORT --attach $PID &
1030 1031 1032 1033 1034 1035
           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
1036
               echo "    gdbserver $PORT --attach <PID>"
1037 1038 1039
               echo ""
       fi

1040 1041
       OUT_SO_SYMBOLS=$OUT_SO_SYMBOLS$USE64BIT

1042
       echo >|"$OUT_ROOT/gdbclient.cmds" "set solib-absolute-prefix $OUT_SYMBOLS"
1043
       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"
1044
       echo >>"$OUT_ROOT/gdbclient.cmds" "source $ANDROID_BUILD_TOP/development/scripts/gdb/dalvik.gdb"
1045 1046 1047
       echo >>"$OUT_ROOT/gdbclient.cmds" "target remote $PORT"
       echo >>"$OUT_ROOT/gdbclient.cmds" ""

1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059
       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"
1060 1061 1062 1063 1064 1065 1066 1067 1068 1069
  else
       echo "Unable to determine build system output dir."
   fi

}

case `uname -s` in
    Darwin)
        function sgrep()
        {
1070
            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 "$@"
1071 1072 1073 1074 1075 1076
        }

        ;;
    *)
        function sgrep()
        {
1077
            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 "$@"
1078 1079 1080 1081
        }
        ;;
esac

1082 1083 1084 1085 1086
function gettargetarch
{
    get_build_var TARGET_ARCH
}

1087 1088
function jgrep()
{
1089
    find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -type f -name "*\.java" -print0 | xargs -0 grep --color -n "$@"
1090 1091 1092 1093
}

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

function resgrep()
{
1099
    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;
1100 1101
}

1102 1103 1104 1105 1106
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 "$@"
}

1107 1108 1109 1110 1111
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 "$@"
}

1112 1113 1114 1115
case `uname -s` in
    Darwin)
        function mgrep()
        {
1116
            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 "$@"
1117 1118 1119 1120
        }

        function treegrep()
        {
1121
            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 "$@"
1122 1123 1124 1125 1126 1127
        }

        ;;
    *)
        function mgrep()
        {
1128
            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 "$@"
1129 1130 1131 1132
        }

        function treegrep()
        {
1133
            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 "$@"
1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150
        }

        ;;
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
1151
    local prebuiltdir=$(getprebuilt)
1152 1153
    local arch=$(gettargetarch)
    local KERNEL=$T/prebuilts/qemu-kernel/$arch/vmlinux-qemu
1154

1155
    local TRACE=$1
1156 1157 1158 1159 1160
    if [ ! "$TRACE" ] ; then
        echo "usage:  tracedmdump  tracename"
        return
    fi

1161 1162 1163 1164 1165
    if [ ! -r "$KERNEL" ] ; then
        echo "Error: cannot find kernel: '$KERNEL'"
        return
    fi

1166
    local BASETRACE=$(basename $TRACE)
1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190
    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"
}

1191 1192
# communicate with a running device or emulator, set up necessary state,
# and run the hat command.
1193 1194
function runhat()
{
1195 1196
    # process standard adb options
    local adbTarget=""
1197
    if [ "$1" = "-d" -o "$1" = "-e" ]; then
1198 1199
        adbTarget=$1
        shift 1
1200
    elif [ "$1" = "-s" ]; then
1201 1202 1203 1204
        adbTarget="$1 $2"
        shift 2
    fi
    local adbOptions=${adbTarget}
1205
    #echo adbOptions = ${adbOptions}
1206 1207 1208

    # runhat options
    local targetPid=$1
1209 1210

    if [ "$targetPid" = "" ]; then
1211
        echo "Usage: runhat [ -d | -e | -s serial ] target-pid"
1212 1213 1214
        return
    fi

1215 1216 1217 1218 1219 1220
    # confirm hat is available
    if [ -z $(which hat) ]; then
        echo "hat is not available in this configuration."
        return
    fi

1221
    # issue "am" command to cause the hprof dump
1222
    local sdcard=$(adb ${adbOptions} shell echo -n '$EXTERNAL_STORAGE')
1223 1224
    local devFile=$sdcard/hprof-$targetPid
    #local devFile=/data/local/hprof-$targetPid
1225
    echo "Poking $targetPid and waiting for data..."
1226
    echo "Storing data at $devFile"
1227
    adb ${adbOptions} shell am dumpheap $targetPid $devFile
1228
    echo "Press enter when logcat shows \"hprof: heap dump completed\""
1229 1230 1231
    echo -n "> "
    read

1232
    local localFile=/tmp/$$-hprof
1233

1234 1235
    echo "Retrieving file $devFile..."
    adb ${adbOptions} pull $devFile $localFile
1236

1237
    adb ${adbOptions} shell rm $devFile
1238

1239
    echo "Running hat on $localFile"
1240 1241
    echo "View the output by pointing your browser at http://localhost:7000/"
    echo ""
Dianne Hackborn's avatar
Dianne Hackborn committed
1242
    hat -JXmx512m $localFile
1243 1244 1245 1246
}

function getbugreports()
{
1247
    local reports=(`adb shell ls /sdcard/bugreports | tr -d '\r'`)
1248 1249 1250 1251 1252 1253

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

1254 1255
    local report
    for report in ${reports[@]}
1256
    do
1257 1258 1259
        echo "/sdcard/bugreports/${report}"
        adb pull /sdcard/bugreports/${report} ${report}
        gunzip ${report}
1260 1261 1262
    done
}

1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284
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}
}

1285 1286
function startviewserver()
{
1287
    local port=4939
1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303
    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
}

1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318
function key_home()
{
    adb shell input keyevent 3
}

function key_back()
{
    adb shell input keyevent 4
}

function key_menu()
{
    adb shell input keyevent 82
}

1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330
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

1331
    (\cd "$T" && mmm tests/SmokeTest) &&
1332 1333 1334 1335 1336 1337 1338
      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
}

1339 1340 1341 1342 1343 1344 1345 1346
# 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
1347
    ("$T"/development/testrunner/runtest.py $@)
1348 1349
}

1350 1351 1352 1353 1354
function godir () {
    if [[ -z "$1" ]]; then
        echo "Usage: godir <regex>"
        return
    fi
1355
    T=$(gettop)
1356 1357
    if [[ ! -f $T/filelist ]]; then
        echo -n "Creating index..."
1358
        (\cd $T; find . -wholename ./out -prune -o -wholename ./.repo -prune -o -type f > filelist)
1359 1360 1361 1362
        echo " Done"
        echo ""
    fi
    local lines
1363
    lines=($(\grep "$1" $T/filelist | sed -e 's/\/[^/]*$//' | sort | uniq))
1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375
    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
1376
                index=$(($index + 1))
1377 1378 1379 1380 1381 1382 1383 1384 1385
            done
            echo
            echo -n "Select one: "
            unset choice
            read choice
            if [[ $choice -gt ${#lines[@]} || $choice -lt 1 ]]; then
                echo "Invalid choice"
                continue
            fi
1386
            pathname=${lines[$(($choice-1))]}
1387 1388 1389 1390
        done
    else
        pathname=${lines[0]}
    fi
1391
    \cd $T/$pathname
1392 1393
}

1394 1395 1396 1397 1398
# 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.
1399
function set_java_home() {
1400
    # Clear the existing JAVA_HOME value if we set it ourselves, so that
Narayan Kamath's avatar
Narayan Kamath committed
1401 1402
    # we can reset it later, depending on the version of java the build
    # system needs.
1403 1404 1405 1406 1407 1408 1409
    #
    # 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

1410
    if [ ! "$JAVA_HOME" ]; then
Narayan Kamath's avatar
Narayan Kamath committed
1411
      if [ -n "$LEGACY_USE_JAVA6" ]; then
1412 1413 1414 1415 1416 1417 1418 1419
        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
1420 1421 1422
      else
        case `uname -s` in
            Darwin)
1423
                export JAVA_HOME=$(/usr/libexec/java_home -v 1.7)
1424 1425 1426 1427 1428 1429 1430 1431 1432 1433
                ;;
            *)
                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
1434
    fi
1435
}
1436

1437 1438
# Print colored exit condition
function pez {
1439 1440 1441 1442 1443 1444 1445 1446 1447
    "$@"
    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
1448 1449
}

1450 1451 1452 1453 1454 1455 1456 1457 1458
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
1459 1460

# Execute the contents of any vendorsetup.sh files we can find.
1461 1462
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`
1463 1464 1465 1466 1467
do
    echo "including $f"
    . $f
done
unset f
Kenny Root's avatar
Kenny Root committed
1468 1469

addcompletions