envsetup.sh 40.3 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 120

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

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

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

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

175
    export ANDROID_QTOOLS=$T/development/emulator/qtools
176
    export ANDROID_DEV_SCRIPTS=$T/development/scripts:$T/prebuilts/devtools/tools
177
    export ANDROID_BUILD_PATHS=$(get_build_var ANDROID_BUILD_PATHS):$ANDROID_QTOOLS:$ANDROID_TOOLCHAIN:$ANDROID_KERNEL_TOOLCHAIN_PATH$CODE_REVIEWS:$ANDROID_DEV_SCRIPTS:
178
    export PATH=$ANDROID_BUILD_PATHS$PATH
179

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

188
    unset ANDROID_PRODUCT_OUT
189 190 191
    export ANDROID_PRODUCT_OUT=$(get_abs_build_var PRODUCT_OUT)
    export OUT=$ANDROID_PRODUCT_OUT

192 193 194
    unset ANDROID_HOST_OUT
    export ANDROID_HOST_OUT=$(get_abs_build_var HOST_OUT)

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

function printconfig()
{
202 203 204 205 206 207
    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
208 209 210 211
}

function set_stuff_for_environment()
{
212
    settitle
213
    set_java_home
214 215
    setpaths
    set_sequence_number
216

217
    export ANDROID_BUILD_TOP=$(gettop)
Ben Cheng's avatar
Ben Cheng committed
218 219
    # 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'
220 221 222 223
}

function set_sequence_number()
{
224
    export BUILD_ENV_SEQUENCE_NUMBER=10
225 226 227 228
}

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

Kenny Root's avatar
Kenny Root committed
242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257
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
258
        for f in `/bin/ls ${dir}/[a-z]*.bash 2> /dev/null`; do
Kenny Root's avatar
Kenny Root committed
259 260 261 262 263 264
            echo "including $f"
            . $f
        done
    fi
}

265 266 267 268 269 270 271
function choosetype()
{
    echo "Build type choices are:"
    echo "     1. release"
    echo "     2. debug"
    echo

272
    local DEFAULT_NUM DEFAULT_VALUE
273 274
    DEFAULT_NUM=1
    DEFAULT_VALUE=release
275

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

    set_stuff_for_environment
}

317 318 319 320 321 322
#
# 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.
#
323 324 325 326 327
function chooseproduct()
{
    if [ "x$TARGET_PRODUCT" != x ] ; then
        default_value=$TARGET_PRODUCT
    else
328
        default_value=full
329 330
    fi

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

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

    set_stuff_for_environment
}

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 389 390 391
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
392
                export TARGET_BUILD_VARIANT=${VARIANT_CHOICES[$(($ANSWER-1))]}
393 394 395 396 397 398 399 400 401 402 403 404 405 406 407
            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
}

408 409
function choosecombo()
{
410
    choosetype $1
411 412 413

    echo
    echo
414
    chooseproduct $2
415 416 417

    echo
    echo
418
    choosevariant $3
419

420 421
    echo
    set_stuff_for_environment
422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437
    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)
438 439
}

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

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

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

465 466 467 468 469
    echo
}

function lunch()
{
470 471
    local answer

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

480 481 482 483
    local selection=

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

496 497 498 499 500 501 502
    if [ -z "$selection" ]
    then
        echo
        echo "Invalid lunch combo: $answer"
        return 1
    fi

Joe Onorato's avatar
Joe Onorato committed
503 504
    export TARGET_BUILD_APPS=

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

515 516 517 518 519 520 521 522 523
    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
524

525 526 527 528 529
    if [ -z "$product" -o -z "$variant" ]
    then
        echo
        return 1
    fi
530

531 532 533
    export TARGET_PRODUCT=$product
    export TARGET_BUILD_VARIANT=$variant
    export TARGET_BUILD_TYPE=release
534

535 536 537 538
    echo

    set_stuff_for_environment
    printconfig
539 540
}

Jeff Davidson's avatar
Jeff Davidson committed
541 542 543 544 545 546 547 548 549 550 551 552 553
# 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
554
# Configures the build to build unbundled apps.
555
# Run tapas with one or more app names (from LOCAL_PACKAGE_NAME)
Joe Onorato's avatar
Joe Onorato committed
556 557
function tapas()
{
558 559 560
    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
561

562 563 564 565
    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
566 567 568 569
    if [ $(echo $variant | wc -w) -gt 1 ]; then
        echo "tapas: Error: Multiple build variants supplied: $variant"
        return
    fi
570 571 572 573 574

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

584
    export TARGET_PRODUCT=$product
Joe Onorato's avatar
Joe Onorato committed
585 586 587 588 589 590 591 592
    export TARGET_BUILD_VARIANT=$variant
    export TARGET_BUILD_TYPE=release
    export TARGET_BUILD_APPS=$apps

    set_stuff_for_environment
    printconfig
}

593 594
function gettop
{
595
    local TOPFILE=build/core/envsetup.mk
596 597 598 599
    if [ -n "$TOP" -a -f "$TOP/$TOPFILE" ] ; then
        echo $TOP
    else
        if [ -f $TOPFILE ] ; then
600 601 602 603
            # 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
604
        else
605
            local HERE=$PWD
606 607
            T=
            while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do
608
                \cd ..
synergy's avatar
synergy committed
609
                T=`PWD= /bin/pwd -P`
610
            done
611
            \cd $HERE
612 613 614 615 616 617 618
            if [ -f "$T/$TOPFILE" ]; then
                echo $T
            fi
        fi
    fi
}

619 620 621 622 623 624 625
# 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 "\
626 627
$T/prebuilts/misc/linux-x86/analyzer/tools/scan-build/scan-build \
--use-analyzer $T/prebuilts/misc/linux-x86/analyzer/bin/analyzer \
628 629 630 631 632
--status-bugs \
--top=$T"
    fi
}

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

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

function mm()
{
663 664
    local T=$(gettop)
    local DRV=$(getdriver $T)
665 666 667
    # 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
668
        $DRV make $@
669 670
    else
        # Find the closest Android.mk file.
671
        local M=$(findmakefile)
Ying Wang's avatar
Ying Wang committed
672 673 674
        local MODULES=
        local GET_INSTALL_PATH=
        local ARGS=
675 676
        # Remove the path to top as the makefilepath needs to be relative
        local M=`echo $M|sed 's:'$T'/::'`
677 678 679 680 681
        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
682 683 684 685 686 687 688 689 690 691 692 693
            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
694
            ONE_SHOT_MAKEFILE=$M $DRV make -C $T -f build/core/main.mk $MODULES $ARGS
695 696 697 698 699 700
        fi
    fi
}

function mmm()
{
701 702
    local T=$(gettop)
    local DRV=$(getdriver $T)
703
    if [ "$T" ]; then
704
        local MAKEFILE=
705
        local MODULES=
706 707
        local ARGS=
        local DIR TO_CHOP
Ying Wang's avatar
Ying Wang committed
708
        local GET_INSTALL_PATH=
709 710 711
        local DASH_ARGS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^-.*$/')
        local DIRS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^[^-].*$/')
        for DIR in $DIRS ; do
712 713 714 715 716
            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:/$::'`
717
            if [ -f $DIR/Android.mk ]; then
Ying Wang's avatar
Ying Wang committed
718 719 720 721
                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}-`
722 723 724 725 726 727 728
                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
729 730 731 732 733
                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
734 735
            fi
        done
Ying Wang's avatar
Ying Wang committed
736 737 738 739
        if [ -n "$GET_INSTALL_PATH" ]; then
          ARGS=$GET_INSTALL_PATH
          MODULES=
        fi
740
        ONE_SHOT_MAKEFILE="$MAKEFILE" $DRV make -C $T -f build/core/main.mk $DASH_ARGS $MODULES $ARGS
741 742 743 744 745
    else
        echo "Couldn't locate the top of the tree.  Try setting TOP."
    fi
}

Ying Wang's avatar
Ying Wang committed
746 747
function mma()
{
748 749
  local T=$(gettop)
  local DRV=$(getdriver $T)
Ying Wang's avatar
Ying Wang committed
750
  if [ -f build/core/envsetup.mk -a -f Makefile ]; then
751
    $DRV make $@
Ying Wang's avatar
Ying Wang committed
752 753 754 755 756
  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'/::'`
757
    $DRV make -C $T -f build/core/main.mk $@ all_modules BUILD_MODULES_IN_PATHS="$MY_PWD"
Ying Wang's avatar
Ying Wang committed
758 759 760 761 762
  fi
}

function mmma()
{
763 764
  local T=$(gettop)
  local DRV=$(getdriver $T)
Ying Wang's avatar
Ying Wang committed
765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790
  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
791
    $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
792 793 794 795 796
  else
    echo "Couldn't locate the top of the tree.  Try setting TOP."
  fi
}

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

807 808 809 810 811 812 813 814
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
815
            \cd $T
816 817
            return
        fi
818
        \cd ..
819
    done
820
    \cd $HERE
821 822 823
    echo "can't find Android.mk"
}

824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839
# 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
840
		qpid | \grep "$prepend$EXE$append"
841 842 843 844 845 846 847
	else
		adb shell ps \
			| tr -d '\r' \
			| sed -e 1d -e 's/^[^ ]* *\([0-9]*\).* \([^ ]*\)$/\1 \2/'
	fi
}

848 849
function pid()
{
850 851 852 853 854 855 856 857 858 859 860
    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' \
861
            | \grep "$prepend$EXE$append" \
862 863 864 865 866 867
            | sed -e 's/^[^ ]* *\([0-9]*\).*$/\1/'`
        echo "$PID"
    else
        echo "usage: pid [--exact] <process name>"
		return 255
    fi
868 869
}

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

function stacks()
{
    if [[ $1 =~ ^[0-9]+$ ]] ; then
        local PID="$1"
    elif [ "$1" ] ; then
882 883 884 885 886 887 888 889
        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
890 891 892 893 894
    else
        echo "usage: stacks [pid|process name]"
    fi

    if [ "$PID" ] ; then
895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920
        # 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
921
    fi
922 923
}

John Michelau's avatar
John Michelau committed
924 925
function gdbwrapper()
{
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 951 952 953
    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
954 955
}

956 957 958
# 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.
959 960
function gdbclient()
{
961 962 963 964 965
   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
966 967 968 969
   local ARCH=$(get_build_var TARGET_ARCH)
   local GDB
   case "$ARCH" in
       arm) GDB=arm-linux-androideabi-gdb;;
970
       arm64) GDB=arm-linux-androideabi-gdb; GDB64=aarch64-linux-android-gdb;;
971
       mips) GDB=mipsel-linux-android-gdb;;
Serban Constantinescu's avatar
Serban Constantinescu committed
972 973 974
       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
975 976 977
       *) echo "Unknown arch $ARCH"; return 1;;
   esac

978 979 980 981 982 983 984 985 986 987 988 989 990 991 992
   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
993 994 995
       local PID="$3"
       if [ "$PID" ] ; then
           if [[ ! "$PID" =~ ^[0-9]+$ ]] ; then
996
               PID=`pid $3`
Chris Craik's avatar
Chris Craik committed
997 998 999
               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)
1000
                   PID=`adb shell ps | \grep $3 | \grep -v ":" | awk '{print $2}'`
Chris Craik's avatar
Chris Craik committed
1001 1002 1003 1004 1005 1006 1007 1008 1009 1010
                   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
1011
           fi
1012
           adb forward "tcp$PORT" "tcp$PORT"
1013 1014
           local USE64BIT="$(is64bit $PID)"
           adb shell gdbserver$USE64BIT $PORT --attach $PID &
1015 1016 1017 1018 1019 1020
           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
1021
               echo "    gdbserver $PORT --attach <PID>"
1022 1023 1024
               echo ""
       fi

1025 1026
       OUT_SO_SYMBOLS=$OUT_SO_SYMBOLS$USE64BIT

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

1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044
       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"
1045 1046 1047 1048 1049 1050 1051 1052 1053 1054
  else
       echo "Unable to determine build system output dir."
   fi

}

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

        ;;
    *)
        function sgrep()
        {
1062
            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 "$@"
1063 1064 1065 1066
        }
        ;;
esac

1067 1068 1069 1070 1071
function gettargetarch
{
    get_build_var TARGET_ARCH
}

Jon Boekenoogen's avatar
ggrep  
Jon Boekenoogen committed
1072 1073 1074 1075 1076
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 "$@"
}

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

function cgrep()
{
1084
    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 "$@"
1085 1086 1087 1088
}

function resgrep()
{
1089
    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;
1090 1091
}

1092 1093 1094 1095 1096
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 "$@"
}

1097 1098 1099 1100 1101
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 "$@"
}

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

        function treegrep()
        {
1111
            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 "$@"
1112 1113 1114 1115 1116 1117
        }

        ;;
    *)
        function mgrep()
        {
1118
            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 "$@"
1119 1120 1121 1122
        }

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

        ;;
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
1141
    local prebuiltdir=$(getprebuilt)
1142 1143
    local arch=$(gettargetarch)
    local KERNEL=$T/prebuilts/qemu-kernel/$arch/vmlinux-qemu
1144

1145
    local TRACE=$1
1146 1147 1148 1149 1150
    if [ ! "$TRACE" ] ; then
        echo "usage:  tracedmdump  tracename"
        return
    fi

1151 1152 1153 1154 1155
    if [ ! -r "$KERNEL" ] ; then
        echo "Error: cannot find kernel: '$KERNEL'"
        return
    fi

1156
    local BASETRACE=$(basename $TRACE)
1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180
    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"
}

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

    # runhat options
    local targetPid=$1
1199 1200

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

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

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

1222
    local localFile=/tmp/$$-hprof
1223

1224 1225
    echo "Retrieving file $devFile..."
    adb ${adbOptions} pull $devFile $localFile
1226

1227
    adb ${adbOptions} shell rm $devFile
1228

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

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

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

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

1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274
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}
}

1275 1276
function startviewserver()
{
1277
    local port=4939
1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293
    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
}

1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308
function key_home()
{
    adb shell input keyevent 3
}

function key_back()
{
    adb shell input keyevent 4
}

function key_menu()
{
    adb shell input keyevent 82
}

1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320
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

1321
    (\cd "$T" && mmm tests/SmokeTest) &&
1322 1323 1324 1325 1326 1327 1328
      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
}

1329 1330 1331 1332 1333 1334 1335 1336
# 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
1337
    ("$T"/development/testrunner/runtest.py $@)
1338 1339
}

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

1384 1385 1386 1387 1388
# 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.
1389
function set_java_home() {
1390
    # Clear the existing JAVA_HOME value if we set it ourselves, so that
Narayan Kamath's avatar
Narayan Kamath committed
1391 1392
    # we can reset it later, depending on the version of java the build
    # system needs.
1393 1394 1395 1396 1397 1398 1399
    #
    # 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

1400
    if [ ! "$JAVA_HOME" ]; then
Narayan Kamath's avatar
Narayan Kamath committed
1401
      if [ -n "$LEGACY_USE_JAVA6" ]; then
1402 1403 1404 1405 1406 1407 1408 1409
        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
1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423
      else
        case `uname -s` in
            Darwin)
                export JAVA_HOME=/Library/Java/JavaVirtualMachines/jdk1.7.0_51.jdk/Contents/Home
                ;;
            *)
                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
1424
    fi
1425
}
1426

1427 1428
# Print colored exit condition
function pez {
1429 1430 1431 1432 1433 1434 1435 1436 1437
    "$@"
    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
1438 1439
}

1440 1441 1442 1443 1444 1445 1446 1447 1448
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
1449 1450

# Execute the contents of any vendorsetup.sh files we can find.
1451 1452
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`
1453 1454 1455 1456 1457
do
    echo "including $f"
    . $f
done
unset f
Kenny Root's avatar
Kenny Root committed
1458 1459

addcompletions