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

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

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

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

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

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

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

    # and in with the new
    CODE_REVIEWS=
    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
    export ANDROID_EABI_TOOLCHAIN=
127 128
    local ARCH=$(get_build_var TARGET_ARCH)
    case $ARCH in
129
        x86) toolchaindir=x86/i686-linux-android-$targetgccversion/bin
Mark D Horn's avatar
Mark D Horn committed
130
            ;;
131
        arm) toolchaindir=arm/arm-linux-androideabi-$targetgccversion/bin
132
            ;;
133
        mips) toolchaindir=mips/mipsel-linux-android-$targetgccversion/bin
134
            ;;
135 136 137
        *)
            echo "Can't find toolchain for unknown architecture: $ARCH"
            toolchaindir=xxxxxxxxx
Mark D Horn's avatar
Mark D Horn committed
138 139
            ;;
    esac
140 141
    if [ -d "$gccprebuiltdir/$toolchaindir" ]; then
        export ANDROID_EABI_TOOLCHAIN=$gccprebuiltdir/$toolchaindir
142
    fi
143

Bruce Beare's avatar
Bruce Beare committed
144
    unset ARM_EABI_TOOLCHAIN ARM_EABI_TOOLCHAIN_PATH
Ying Wang's avatar
Ying Wang committed
145
    case $ARCH in
Bruce Beare's avatar
Bruce Beare committed
146
        arm)
147
            toolchaindir=arm/arm-eabi-$targetgccversion/bin
Bruce Beare's avatar
Bruce Beare committed
148 149 150 151
            if [ -d "$gccprebuiltdir/$toolchaindir" ]; then
                 export ARM_EABI_TOOLCHAIN="$gccprebuiltdir/$toolchaindir"
                 ARM_EABI_TOOLCHAIN_PATH=":$gccprebuiltdir/$toolchaindir"
            fi
Ying Wang's avatar
Ying Wang committed
152
            ;;
153 154
        mips) toolchaindir=mips/mips-eabi-4.4.3/bin
            ;;
Ying Wang's avatar
Ying Wang committed
155
        *)
Bruce Beare's avatar
Bruce Beare committed
156
            # No need to set ARM_EABI_TOOLCHAIN for other ARCHs
Ying Wang's avatar
Ying Wang committed
157 158 159
            ;;
    esac

160 161
    export ANDROID_TOOLCHAIN=$ANDROID_EABI_TOOLCHAIN
    export ANDROID_QTOOLS=$T/development/emulator/qtools
162
    export ANDROID_DEV_SCRIPTS=$T/development/scripts:$T/prebuilts/devtools/tools
163 164
    export ANDROID_BUILD_PATHS=$(get_build_var ANDROID_BUILD_PATHS):$ANDROID_QTOOLS:$ANDROID_TOOLCHAIN$ARM_EABI_TOOLCHAIN_PATH$CODE_REVIEWS:$ANDROID_DEV_SCRIPTS:
    export PATH=$ANDROID_BUILD_PATHS$PATH
165

166
    unset ANDROID_JAVA_TOOLCHAIN
167
    unset ANDROID_PRE_BUILD_PATHS
168 169
    if [ -n "$JAVA_HOME" ]; then
        export ANDROID_JAVA_TOOLCHAIN=$JAVA_HOME/bin
170 171
        export ANDROID_PRE_BUILD_PATHS=$ANDROID_JAVA_TOOLCHAIN:
        export PATH=$ANDROID_PRE_BUILD_PATHS$PATH
172 173
    fi

174
    unset ANDROID_PRODUCT_OUT
175 176 177
    export ANDROID_PRODUCT_OUT=$(get_abs_build_var PRODUCT_OUT)
    export OUT=$ANDROID_PRODUCT_OUT

178 179 180
    unset ANDROID_HOST_OUT
    export ANDROID_HOST_OUT=$(get_abs_build_var HOST_OUT)

181 182 183 184
    # needed for processing samples collected by perf counters
    unset OPROFILE_EVENTS_DIR
    export OPROFILE_EVENTS_DIR=$T/external/oprofile/events

185
    # needed for building linux on MacOS
186 187 188 189 190 191
    # TODO: fix the path
    #export HOST_EXTRACFLAGS="-I "$T/system/kernel_headers/host_include
}

function printconfig()
{
192 193 194 195 196 197
    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
198 199 200 201
}

function set_stuff_for_environment()
{
202
    settitle
203
    set_java_home
204 205
    setpaths
    set_sequence_number
206

207
    export ANDROID_BUILD_TOP=$(gettop)
208 209 210 211
}

function set_sequence_number()
{
212
    export BUILD_ENV_SEQUENCE_NUMBER=10
213 214 215 216
}

function settitle()
{
217
    if [ "$STAY_OFF_MY_LAWN" = "" ]; then
218
        local arch=$(gettargetarch)
Joe Onorato's avatar
Joe Onorato committed
219 220 221 222
        local product=$TARGET_PRODUCT
        local variant=$TARGET_BUILD_VARIANT
        local apps=$TARGET_BUILD_APPS
        if [ -z "$apps" ]; then
223
            export PROMPT_COMMAND="echo -ne \"\033]0;[${arch}-${product}-${variant}] ${USER}@${HOSTNAME}: ${PWD}\007\""
Joe Onorato's avatar
Joe Onorato committed
224
        else
225
            export PROMPT_COMMAND="echo -ne \"\033]0;[$arch $apps $variant] ${USER}@${HOSTNAME}: ${PWD}\007\""
Joe Onorato's avatar
Joe Onorato committed
226
        fi
227
    fi
228 229
}

Kenny Root's avatar
Kenny Root committed
230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245
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
246
        for f in `/bin/ls ${dir}/[a-z]*.bash 2> /dev/null`; do
Kenny Root's avatar
Kenny Root committed
247 248 249 250 251 252
            echo "including $f"
            . $f
        done
    fi
}

253 254 255 256 257 258 259
function choosetype()
{
    echo "Build type choices are:"
    echo "     1. release"
    echo "     2. debug"
    echo

260
    local DEFAULT_NUM DEFAULT_VALUE
261 262
    DEFAULT_NUM=1
    DEFAULT_VALUE=release
263

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

    set_stuff_for_environment
}

305 306 307 308 309 310
#
# 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.
#
311 312 313 314 315
function chooseproduct()
{
    if [ "x$TARGET_PRODUCT" != x ] ; then
        default_value=$TARGET_PRODUCT
    else
316
        default_value=full
317 318
    fi

319 320
    export TARGET_PRODUCT=
    local ANSWER
321 322
    while [ -z "$TARGET_PRODUCT" ]
    do
323
        echo -n "Which product would you like? [$default_value] "
324 325 326 327 328 329 330
        if [ -z "$1" ] ; then
            read ANSWER
        else
            echo $1
            ANSWER=$1
        fi

331 332
        if [ -z "$ANSWER" ] ; then
            export TARGET_PRODUCT=$default_value
333 334 335 336 337 338 339 340 341 342
        else
            if check_product $ANSWER
            then
                export TARGET_PRODUCT=$ANSWER
            else
                echo "** Not a valid product: $ANSWER"
            fi
        fi
        if [ -n "$1" ] ; then
            break
343 344 345 346 347 348
        fi
    done

    set_stuff_for_environment
}

349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379
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
380
                export TARGET_BUILD_VARIANT=${VARIANT_CHOICES[$(($ANSWER-1))]}
381 382 383 384 385 386 387 388 389 390 391 392 393 394 395
            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
}

396 397
function choosecombo()
{
398
    choosetype $1
399 400 401

    echo
    echo
402
    chooseproduct $2
403 404 405

    echo
    echo
406
    choosevariant $3
407

408 409
    echo
    set_stuff_for_environment
410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425
    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)
426 427
}

428
# add the default one here
429 430 431
add_lunch_combo aosp_arm-eng
add_lunch_combo aosp_x86-eng
add_lunch_combo aosp_mips-eng
432
add_lunch_combo vbox_x86-eng
433

434 435 436 437 438 439 440
function print_lunch_menu()
{
    local uname=$(uname)
    echo
    echo "You're building on" $uname
    echo
    echo "Lunch menu... pick a combo:"
441 442 443 444 445 446 447 448 449

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

450 451 452 453 454
    echo
}

function lunch()
{
455 456
    local answer

457
    if [ "$1" ] ; then
458
        answer=$1
459 460
    else
        print_lunch_menu
461
        echo -n "Which would you like? [aosp_arm-eng] "
462
        read answer
463 464
    fi

465 466 467 468
    local selection=

    if [ -z "$answer" ]
    then
469
        selection=aosp_arm-eng
470 471 472 473
    elif (echo -n $answer | grep -q -e "^[0-9][0-9]*$")
    then
        if [ $answer -le ${#LUNCH_MENU_CHOICES[@]} ]
        then
474
            selection=${LUNCH_MENU_CHOICES[$(($answer-1))]}
475 476
        fi
    elif (echo -n $answer | grep -q -e "^[^\-][^\-]*-[^\-][^\-]*$")
477
    then
478
        selection=$answer
479 480
    fi

481 482 483 484 485 486 487
    if [ -z "$selection" ]
    then
        echo
        echo "Invalid lunch combo: $answer"
        return 1
    fi

Joe Onorato's avatar
Joe Onorato committed
488 489
    export TARGET_BUILD_APPS=

490 491 492
    local product=$(echo -n $selection | sed -e "s/-.*$//")
    check_product $product
    if [ $? -ne 0 ]
493
    then
494 495 496 497 498
        echo
        echo "** Don't have a product spec for: '$product'"
        echo "** Do you have the right repo manifest?"
        product=
    fi
499

500 501 502 503 504 505 506 507 508
    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
509

510 511 512 513 514
    if [ -z "$product" -o -z "$variant" ]
    then
        echo
        return 1
    fi
515

516 517 518
    export TARGET_PRODUCT=$product
    export TARGET_BUILD_VARIANT=$variant
    export TARGET_BUILD_TYPE=release
519

520 521 522 523
    echo

    set_stuff_for_environment
    printconfig
524 525
}

Jeff Davidson's avatar
Jeff Davidson committed
526 527 528 529 530 531 532 533 534 535 536 537 538
# 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
539 540 541 542
# 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
543
    local arch=$(echo -n $(echo $* | xargs -n 1 echo | \grep -E '^(arm|x86|mips|armv5)$'))
544
    local variant=$(echo -n $(echo $* | xargs -n 1 echo | \grep -E '^(user|userdebug|eng)$'))
Ying Wang's avatar
Ying Wang committed
545
    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
546

547 548 549 550
    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
551 552 553 554
    if [ $(echo $variant | wc -w) -gt 1 ]; then
        echo "tapas: Error: Multiple build variants supplied: $variant"
        return
    fi
555 556 557 558 559

    local product=full
    case $arch in
      x86)   product=full_x86;;
      mips)  product=full_mips;;
Ying Wang's avatar
Ying Wang committed
560
      armv5) product=generic_armv5;;
561
    esac
Joe Onorato's avatar
Joe Onorato committed
562 563 564
    if [ -z "$variant" ]; then
        variant=eng
    fi
565 566 567
    if [ -z "$apps" ]; then
        apps=all
    fi
Joe Onorato's avatar
Joe Onorato committed
568

569
    export TARGET_PRODUCT=$product
Joe Onorato's avatar
Joe Onorato committed
570 571 572 573 574 575 576 577
    export TARGET_BUILD_VARIANT=$variant
    export TARGET_BUILD_TYPE=release
    export TARGET_BUILD_APPS=$apps

    set_stuff_for_environment
    printconfig
}

578 579
function gettop
{
580
    local TOPFILE=build/core/envsetup.mk
581 582 583 584
    if [ -n "$TOP" -a -f "$TOP/$TOPFILE" ] ; then
        echo $TOP
    else
        if [ -f $TOPFILE ] ; then
585 586 587 588
            # 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
589
        else
590
            local HERE=$PWD
591 592
            T=
            while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do
593
                \cd ..
594
                T=`PWD= /bin/pwd`
595
            done
596
            \cd $HERE
597 598 599 600 601 602 603 604 605 606 607
            if [ -f "$T/$TOPFILE" ]; then
                echo $T
            fi
        fi
    fi
}

function m()
{
    T=$(gettop)
    if [ "$T" ]; then
608
        make -C $T -f build/core/main.mk $@
609 610 611 612 613 614 615 616
    else
        echo "Couldn't locate the top of the tree.  Try setting TOP."
    fi
}

function findmakefile()
{
    TOPFILE=build/core/envsetup.mk
617
    local HERE=$PWD
618 619
    T=
    while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do
620
        T=`PWD= /bin/pwd`
621 622
        if [ -f "$T/Android.mk" ]; then
            echo $T/Android.mk
623
            \cd $HERE
624 625
            return
        fi
626
        \cd ..
627
    done
628
    \cd $HERE
629 630 631 632 633 634 635 636 637 638 639
}

function mm()
{
    # 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
        make $@
    else
        # Find the closest Android.mk file.
        T=$(gettop)
640
        local M=$(findmakefile)
641 642
        # Remove the path to top as the makefilepath needs to be relative
        local M=`echo $M|sed 's:'$T'/::'`
643 644 645 646 647
        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
648
            ONE_SHOT_MAKEFILE=$M make -C $T -f build/core/main.mk all_modules $@
649 650 651 652 653 654 655 656
        fi
    fi
}

function mmm()
{
    T=$(gettop)
    if [ "$T" ]; then
657
        local MAKEFILE=
658
        local MODULES=
659 660
        local ARGS=
        local DIR TO_CHOP
661 662 663
        local DASH_ARGS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^-.*$/')
        local DIRS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^[^-].*$/')
        for DIR in $DIRS ; do
664 665 666 667 668
            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:/$::'`
669
            if [ -f $DIR/Android.mk ]; then
670
                TO_CHOP=`(\cd -P -- $T && pwd -P) | wc -c | tr -d ' '`
671
                TO_CHOP=`expr $TO_CHOP + 1`
672 673
                START=`PWD= /bin/pwd`
                MFILE=`echo $START | cut -c${TO_CHOP}-`
674 675 676 677 678 679 680 681 682 683 684
                if [ "$MFILE" = "" ] ; then
                    MFILE=$DIR/Android.mk
                else
                    MFILE=$MFILE/$DIR/Android.mk
                fi
                MAKEFILE="$MAKEFILE $MFILE"
            else
                if [ "$DIR" = snod ]; then
                    ARGS="$ARGS snod"
                elif [ "$DIR" = showcommands ]; then
                    ARGS="$ARGS showcommands"
685 686
                elif [ "$DIR" = dist ]; then
                    ARGS="$ARGS dist"
Ying Wang's avatar
Ying Wang committed
687 688
                elif [ "$DIR" = incrementaljavac ]; then
                    ARGS="$ARGS incrementaljavac"
689 690
                else
                    echo "No Android.mk in $DIR."
691
                    return 1
692 693 694
                fi
            fi
        done
695
        ONE_SHOT_MAKEFILE="$MAKEFILE" make -C $T -f build/core/main.mk $DASH_ARGS $MODULES $ARGS
696 697 698 699 700
    else
        echo "Couldn't locate the top of the tree.  Try setting TOP."
    fi
}

Ying Wang's avatar
Ying Wang committed
701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749
function mma()
{
  if [ -f build/core/envsetup.mk -a -f Makefile ]; then
    make $@
  else
    T=$(gettop)
    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'/::'`
    make -C $T -f build/core/main.mk $@ all_modules BUILD_MODULES_IN_PATHS="$MY_PWD"
  fi
}

function mmma()
{
  T=$(gettop)
  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
    make -C $T -f build/core/main.mk $DASH_ARGS $ARGS all_modules BUILD_MODULES_IN_PATHS="$MODULE_PATHS"
  else
    echo "Couldn't locate the top of the tree.  Try setting TOP."
  fi
}

750 751 752 753
function croot()
{
    T=$(gettop)
    if [ "$T" ]; then
754
        \cd $(gettop)
755 756 757 758 759
    else
        echo "Couldn't locate the top of the tree.  Try setting TOP."
    fi
}

760 761 762 763 764 765 766 767
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
768
            \cd $T
769 770
            return
        fi
771
        \cd ..
772
    done
773
    \cd $HERE
774 775 776
    echo "can't find Android.mk"
}

777 778 779 780 781 782 783 784 785 786 787
function pid()
{
   local EXE="$1"
   if [ "$EXE" ] ; then
       local PID=`adb shell ps | fgrep $1 | sed -e 's/[^ ]* *\([0-9]*\).*/\1/'`
       echo "$PID"
   else
       echo "usage: pid name"
   fi
}

788 789 790 791
# systemstack - dump the current stack trace of all threads in the system process
# to the usual ANR traces file
function systemstack()
{
792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825
    stacks system_server
}

function stacks()
{
    if [[ $1 =~ ^[0-9]+$ ]] ; then
        local PID="$1"
    elif [ "$1" ] ; then
        local PID=$(pid $1)
    else
        echo "usage: stacks [pid|process name]"
    fi

    if [ "$PID" ] ; then
        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

        # Restore original stacks, and show current output
        adb shell mv $TRACES $TMP
        adb shell mv $ORIG $TRACES
        adb shell cat $TMP | less -S
    fi
826 827
}

John Michelau's avatar
John Michelau committed
828 829 830 831 832
function gdbwrapper()
{
    $ANDROID_TOOLCHAIN/$GDB -x "$@"
}

833 834
function gdbclient()
{
835 836 837 838 839
   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
840 841 842
   local ARCH=$(get_build_var TARGET_ARCH)
   local GDB
   case "$ARCH" in
843
       x86) GDB=i686-linux-android-gdb;;
Nick Kralevich's avatar
Nick Kralevich committed
844
       arm) GDB=arm-linux-androideabi-gdb;;
845
       mips) GDB=mipsel-linux-android-gdb;;
Nick Kralevich's avatar
Nick Kralevich committed
846 847 848
       *) echo "Unknown arch $ARCH"; return 1;;
   esac

849 850 851 852 853 854 855 856 857 858 859 860 861 862 863
   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
864 865 866
       local PID="$3"
       if [ "$PID" ] ; then
           if [[ ! "$PID" =~ ^[0-9]+$ ]] ; then
867
               PID=`pid $3`
Chris Craik's avatar
Chris Craik committed
868 869 870 871 872 873 874 875 876 877 878 879 880 881
               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)
                   PID=`adb shell ps | grep $3 | grep -v ":" | awk '{print $2}'`
                   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
882
           fi
883 884 885 886 887 888 889 890
           adb forward "tcp$PORT" "tcp$PORT"
           adb shell gdbserver $PORT --attach $PID &
           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
891
               echo "    gdbserver $PORT --attach <PID>"
892 893 894 895
               echo ""
       fi

       echo >|"$OUT_ROOT/gdbclient.cmds" "set solib-absolute-prefix $OUT_SYMBOLS"
896
       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"
897 898 899
       echo >>"$OUT_ROOT/gdbclient.cmds" "target remote $PORT"
       echo >>"$OUT_ROOT/gdbclient.cmds" ""

John Michelau's avatar
John Michelau committed
900
       gdbwrapper "$OUT_ROOT/gdbclient.cmds" "$OUT_EXE_SYMBOLS/$EXE"
901 902 903 904 905 906 907 908 909 910
  else
       echo "Unable to determine build system output dir."
   fi

}

case `uname -s` in
    Darwin)
        function sgrep()
        {
911
            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 "$@"
912 913 914 915 916 917
        }

        ;;
    *)
        function sgrep()
        {
918
            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 "$@"
919 920 921 922
        }
        ;;
esac

923 924 925 926 927
function gettargetarch
{
    get_build_var TARGET_ARCH
}

928 929
function jgrep()
{
930
    find . -name .repo -prune -o -name .git -prune -o  -type f -name "*\.java" -print0 | xargs -0 grep --color -n "$@"
931 932 933 934
}

function cgrep()
{
Mike Dodd's avatar
Mike Dodd committed
935
    find . -name .repo -prune -o -name .git -prune -o -type f \( -name '*.c' -o -name '*.cc' -o -name '*.cpp' -o -name '*.h' \) -print0 | xargs -0 grep --color -n "$@"
936 937 938 939
}

function resgrep()
{
940
    for dir in `find . -name .repo -prune -o -name .git -prune -o -name res -type d`; do find $dir -type f -name '*\.xml' -print0 | xargs -0 grep --color -n "$@"; done;
941 942
}

943 944 945 946 947
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 "$@"
}

948 949 950 951 952
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 "$@"
}

953 954 955 956
case `uname -s` in
    Darwin)
        function mgrep()
        {
957
            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 "$@"
958 959 960 961
        }

        function treegrep()
        {
962
            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 "$@"
963 964 965 966 967 968
        }

        ;;
    *)
        function mgrep()
        {
969
            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 "$@"
970 971 972 973
        }

        function treegrep()
        {
974
            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 "$@"
975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991
        }

        ;;
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
992
    local prebuiltdir=$(getprebuilt)
993 994
    local arch=$(gettargetarch)
    local KERNEL=$T/prebuilts/qemu-kernel/$arch/vmlinux-qemu
995

996
    local TRACE=$1
997 998 999 1000 1001
    if [ ! "$TRACE" ] ; then
        echo "usage:  tracedmdump  tracename"
        return
    fi

1002 1003 1004 1005 1006
    if [ ! -r "$KERNEL" ] ; then
        echo "Error: cannot find kernel: '$KERNEL'"
        return
    fi

1007
    local BASETRACE=$(basename $TRACE)
1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031
    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"
}

1032 1033
# communicate with a running device or emulator, set up necessary state,
# and run the hat command.
1034 1035
function runhat()
{
1036 1037
    # process standard adb options
    local adbTarget=""
1038
    if [ "$1" = "-d" -o "$1" = "-e" ]; then
1039 1040
        adbTarget=$1
        shift 1
1041
    elif [ "$1" = "-s" ]; then
1042 1043 1044 1045
        adbTarget="$1 $2"
        shift 2
    fi
    local adbOptions=${adbTarget}
1046
    #echo adbOptions = ${adbOptions}
1047 1048 1049

    # runhat options
    local targetPid=$1
1050 1051

    if [ "$targetPid" = "" ]; then
1052
        echo "Usage: runhat [ -d | -e | -s serial ] target-pid"
1053 1054 1055
        return
    fi

1056 1057 1058 1059 1060 1061
    # confirm hat is available
    if [ -z $(which hat) ]; then
        echo "hat is not available in this configuration."
        return
    fi

1062
    # issue "am" command to cause the hprof dump
1063 1064 1065
    local sdcard=$(adb shell echo -n '$EXTERNAL_STORAGE')
    local devFile=$sdcard/hprof-$targetPid
    #local devFile=/data/local/hprof-$targetPid
1066
    echo "Poking $targetPid and waiting for data..."
1067
    echo "Storing data at $devFile"
1068
    adb ${adbOptions} shell am dumpheap $targetPid $devFile
1069
    echo "Press enter when logcat shows \"hprof: heap dump completed\""
1070 1071 1072
    echo -n "> "
    read

1073
    local localFile=/tmp/$$-hprof
1074

1075 1076
    echo "Retrieving file $devFile..."
    adb ${adbOptions} pull $devFile $localFile
1077

1078
    adb ${adbOptions} shell rm $devFile
1079

1080
    echo "Running hat on $localFile"
1081 1082
    echo "View the output by pointing your browser at http://localhost:7000/"
    echo ""
Dianne Hackborn's avatar
Dianne Hackborn committed
1083
    hat -JXmx512m $localFile
1084 1085 1086 1087
}

function getbugreports()
{
1088
    local reports=(`adb shell ls /sdcard/bugreports | tr -d '\r'`)
1089 1090 1091 1092 1093 1094

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

1095 1096
    local report
    for report in ${reports[@]}
1097
    do
1098 1099 1100
        echo "/sdcard/bugreports/${report}"
        adb pull /sdcard/bugreports/${report} ${report}
        gunzip ${report}
1101 1102 1103
    done
}

1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125
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}
}

1126 1127
function startviewserver()
{
1128
    local port=4939
1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144
    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
}

1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159
function key_home()
{
    adb shell input keyevent 3
}

function key_back()
{
    adb shell input keyevent 4
}

function key_menu()
{
    adb shell input keyevent 82
}

1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171
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

1172
    (\cd "$T" && mmm tests/SmokeTest) &&
1173 1174 1175 1176 1177 1178 1179
      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
}

1180 1181 1182 1183 1184 1185 1186 1187
# 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
1188
    ("$T"/development/testrunner/runtest.py $@)
1189 1190
}

1191 1192 1193 1194 1195
function godir () {
    if [[ -z "$1" ]]; then
        echo "Usage: godir <regex>"
        return
    fi
1196
    T=$(gettop)
1197 1198
    if [[ ! -f $T/filelist ]]; then
        echo -n "Creating index..."
1199
        (\cd $T; find . -wholename ./out -prune -o -wholename ./.repo -prune -o -type f > filelist)
1200 1201 1202 1203
        echo " Done"
        echo ""
    fi
    local lines
1204
    lines=($(\grep "$1" $T/filelist | sed -e 's/\/[^/]*$//' | sort | uniq))
1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216
    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
1217
                index=$(($index + 1))
1218 1219 1220 1221 1222 1223 1224 1225 1226
            done
            echo
            echo -n "Select one: "
            unset choice
            read choice
            if [[ $choice -gt ${#lines[@]} || $choice -lt 1 ]]; then
                echo "Invalid choice"
                continue
            fi
1227
            pathname=${lines[$(($choice-1))]}
1228 1229 1230 1231
        done
    else
        pathname=${lines[0]}
    fi
1232
    \cd $T/$pathname
1233 1234
}

1235 1236
# Force JAVA_HOME to point to java 1.6 if it isn't already set
function set_java_home() {
1237 1238 1239 1240 1241 1242 1243 1244 1245
    if [ ! "$JAVA_HOME" ]; then
        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
1246
    fi
1247
}
1248

1249 1250
# Print colored exit condition
function pez {
1251 1252 1253 1254 1255 1256 1257 1258 1259
    "$@"
    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
1260 1261
}

1262 1263 1264 1265 1266 1267 1268 1269 1270
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
1271 1272

# Execute the contents of any vendorsetup.sh files we can find.
1273
for f in `/bin/ls vendor/*/vendorsetup.sh vendor/*/*/vendorsetup.sh device/*/*/vendorsetup.sh 2> /dev/null`
1274 1275 1276 1277 1278
do
    echo "including $f"
    . $f
done
unset f
Kenny Root's avatar
Kenny Root committed
1279 1280

addcompletions