Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(202)

Side by Side Diff: build/android/gdb_apk

Issue 10795020: Using gdb_content_shell to attach to content_shell process directly. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | build/android/gdb_content_shell » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/bin/bash 1 #!/bin/bash
2 # 2 #
3 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 3 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be 4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file. 5 # found in the LICENSE file.
6 # 6 #
7 # Attach gdb to a running android application. Similar to ndk-gdb. 7 # Attach gdb to a running android application. Similar to ndk-gdb.
8 # Run with --annotate=3 if running under emacs (M-x gdb). 8 # Run with --annotate=3 if running under emacs (M-x gdb).
9 # 9 #
10 # By default it is used to debug content shell, if it is used to 10 # By default it is used to debug content shell, if it is used to
11 # debug other piceces, '-p' and '-l' options are needed. 11 # debug other piceces, '-p' and '-l' options are needed.
12 # For *unittests_apk (like base_unittests_apk), run with: 12 # For *unittests_apk (like base_unittests_apk), run with:
13 # "gdb_apk -p org.chromium.native_test -l out/Release/lib.target -r" 13 # "gdb_apk -p org.chromium.native_test -l out/Release/lib.target -r"
14 14
15 # Run a command through adb shell, strip the extra \r from the output
16 # and return the correct status code to detect failures. This assumes
17 # that the adb shell command prints a final \n to stdout.
18 # args: command to run
19 # Prints the command's stdout on stdout
20 # Returns the command's status
21 # Note: the command's stderr is lost
22 adb_shell () {
23 local TMPOUT="$(mktemp)"
24 local LASTLINE RET
25 local ADB=${ADB:-adb}
26
27 # The weird sed rule is to strip the final \r on each output line
28 # Since 'adb shell' never returns the command's proper exit/status code,
29 # we force it to print it as '%%<status>' in the temporary output file,
30 # which we will later strip from it.
31 $ADB shell $@ ";" echo "%%\$?" 2>/dev/null | sed -e 's![[:cntrl:]]!!g' > $TMPO UT
32 # Get last line in log, which contains the exit code from the command
33 LASTLINE=$(sed -e '$!d' $TMPOUT)
34 # Extract the status code from the end of the line, which must be '%%<code>'
35 RET=$(echo "$LASTLINE" | awk '{ if (match($0, "%%[0-9]+$")) { print substr($0, RSTART+2); } }')
36 # Remove the status code from the last line. Note that this may result in an e mpty line
37 LASTLINE=$(echo "$LASTLINE" | awk '{ if (match($0, "%%[0-9]+$")) { print subst r($0,1,RSTART-1); } }')
38 # The output itself: all lines except the status code
39 sed -e '$d' $TMPOUT && echo -n "$LASTLINE"
40 # Remove temp file
41 rm -f $TMPOUT
42 # Exit with the appropriate status
43 return $RET
44 }
45
15 adb=$(which adb) 46 adb=$(which adb)
16 if [[ "$adb" = "" ]] ; then 47 if [[ "$adb" = "" ]] ; then
17 echo "Need adb in your path" 48 echo "Need adb in your path"
18 exit 1 49 exit 1
19 fi 50 fi
20 51
21 usage() { 52 usage() {
22 echo "usage: ${0##*/} [-p package_name] [-l shared_lib_dir] [-g gdb] [-r]" 53 echo "usage: ${0##*/} [-p package_name] [-l shared_lib_dir] [-g gdb] [-r]"
23 echo "-p package_name the android APK package to be debugged" 54 echo "-p package_name the android APK package to be debugged"
24 echo "-l shared_lib_dir directory containes native shared library" 55 echo "-l shared_lib_dir directory containes native shared library"
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 # Kill any running gdbserver 110 # Kill any running gdbserver
80 pid=$(adb shell ps | awk '/gdbserver/ {print $2}') 111 pid=$(adb shell ps | awk '/gdbserver/ {print $2}')
81 if [[ "$pid" != "" ]] ; then 112 if [[ "$pid" != "" ]] ; then
82 if [[ $rooted_phone -eq 1 ]] ; then 113 if [[ $rooted_phone -eq 1 ]] ; then
83 adb shell kill $pid 114 adb shell kill $pid
84 else 115 else
85 adb shell run-as $package_name kill $pid 116 adb shell run-as $package_name kill $pid
86 fi 117 fi
87 fi 118 fi
88 119
89 pid=$(adb shell ps | awk "/$package_name/ {print \$2}") 120 pid=$(adb_shell ps | awk "/$package_name$/ {print \$2}")
90 if [[ "$pid" = "" ]] ; then 121 if [[ "$pid" = "" ]] ; then
91 echo "No $package_name running?" 122 echo "No $package_name running?"
92 echo "Try this: adb shell am start -a android.intent.action.VIEW " \ 123 echo "Try this: adb shell am start -a android.intent.action.VIEW " \
93 "-n $package_name/.SomethingActivity (Something might be ContentShell)" 124 "-n $package_name/.SomethingActivity (Something might be ContentShell)"
94 exit 2 125 exit 2
95 fi 126 fi
96 127
97 no_gdb_server=$(adb shell ls $gdb_server_on_device | grep 'No such file') 128 no_gdb_server=$(adb shell ls $gdb_server_on_device | grep 'No such file')
98 if [[ "$no_gdb_server" != "" ]] ; then 129 if [[ "$no_gdb_server" != "" ]] ; then
99 echo "No gdb server on device at $gdb_server_on_device" 130 echo "No gdb server on device at $gdb_server_on_device"
(...skipping 30 matching lines...) Expand all
130 if [[ ! -f ${gdb} ]] ; then 161 if [[ ! -f ${gdb} ]] ; then
131 echo "Wow no gdb in env var ANDROID_TOOLCHAIN which is $ANDROID_TOOLCHAIN" 162 echo "Wow no gdb in env var ANDROID_TOOLCHAIN which is $ANDROID_TOOLCHAIN"
132 exit 4 163 exit 4
133 else 164 else
134 echo Using $gdb 165 echo Using $gdb
135 fi 166 fi
136 167
137 # ${gdb} -x $cmdfile $* $app_process 168 # ${gdb} -x $cmdfile $* $app_process
138 ${gdb} -x $cmdfile $gdb_args 169 ${gdb} -x $cmdfile $gdb_args
139 rm $cmdfile 170 rm $cmdfile
OLDNEW
« no previous file with comments | « no previous file | build/android/gdb_content_shell » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698