OLD | NEW |
---|---|
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # | 2 # |
3 # Copyright (C) 2013 The Android Open Source Project | 3 # Copyright (C) 2013 The Android Open Source Project |
4 # | 4 # |
5 # Licensed under the Apache License, Version 2.0 (the "License"); | 5 # Licensed under the Apache License, Version 2.0 (the "License"); |
6 # you may not use this file except in compliance with the License. | 6 # you may not use this file except in compliance with the License. |
7 # You may obtain a copy of the License at | 7 # You may obtain a copy of the License at |
8 # | 8 # |
9 # http://www.apache.org/licenses/LICENSE-2.0 | 9 # http://www.apache.org/licenses/LICENSE-2.0 |
10 # | 10 # |
11 # Unless required by applicable law or agreed to in writing, software | 11 # Unless required by applicable law or agreed to in writing, software |
12 # distributed under the License is distributed on an "AS IS" BASIS, | 12 # distributed under the License is distributed on an "AS IS" BASIS, |
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
14 # See the License for the specific language governing permissions and | 14 # See the License for the specific language governing permissions and |
15 # limitations under the License. | 15 # limitations under the License. |
16 | 16 |
17 """stack symbolizes native crash dumps.""" | 17 """stack symbolizes native crash dumps.""" |
18 | 18 |
19 import getopt | 19 import getopt |
20 import glob | 20 import glob |
21 import logging | 21 import logging |
22 import os | 22 import os |
23 import sys | 23 import sys |
24 | 24 |
25 import stack_core | 25 import stack_core |
26 import stack_libs | 26 import stack_libs |
27 import subprocess | 27 import subprocess |
28 import symbol | 28 import symbol |
29 import sys | 29 import sys |
30 | 30 |
rmcilroy
2016/02/03 12:35:39
Please update src/third_party/android_platform/REA
agrieve
2016/02/03 20:27:17
Done.
| |
31 sys.path.insert(0, os.path.join(os.path.dirname(__file__), | |
32 os.pardir, os.pardir, os.pardir, os.pardir, | |
33 'build', 'android')) | |
34 from pylib import constants | |
rmcilroy
2016/02/03 12:35:39
I'd rather not do this. Since this script comes fr
agrieve
2016/02/03 20:27:17
We already import constants within symbol.py, so i
rmcilroy
2016/02/04 11:36:42
You are right, ok.
| |
35 | |
36 | |
31 DEFAULT_SYMROOT='/tmp/symbols' | 37 DEFAULT_SYMROOT='/tmp/symbols' |
32 DEFAULT_APK_DIR='chrome_apk' | 38 DEFAULT_APK_DIR='chrome_apk' |
33 # From: https://source.android.com/source/build-numbers.html | 39 # From: https://source.android.com/source/build-numbers.html |
34 _ANDROID_M_MAJOR_VERSION=6 | 40 _ANDROID_M_MAJOR_VERSION=6 |
35 | 41 |
36 def PrintUsage(): | 42 def PrintUsage(): |
37 """Print usage and exit with error.""" | 43 """Print usage and exit with error.""" |
38 # pylint: disable-msg=C6310 | 44 # pylint: disable-msg=C6310 |
39 print | 45 print |
40 print " usage: " + sys.argv[0] + " [options] [FILE]" | 46 print " usage: " + sys.argv[0] + " [options] [FILE]" |
41 print | 47 print |
42 print " --symbols-dir=path" | 48 print " --symbols-dir=path" |
43 print " the path to a symbols dir, such as =/tmp/out/target/product/drea m/symbols" | 49 print " the path to a symbols dir, such as =/tmp/out/target/product/drea m/symbols" |
44 print | 50 print |
45 print " --chrome-symbols-dir=path" | 51 print " --chrome-symbols-dir=path" |
46 print " the path to a Chrome symbols dir (can be absolute or relative" | 52 print " the path to a Chrome symbols dir (can be absolute or relative" |
47 print " to src), such as =out/Debug/lib" | 53 print " to src), such as =out/Debug/lib" |
48 print " If not specified, will look for the newest lib in out/Debug or" | 54 print |
49 print " out/Release" | 55 print " --output-directory=path" |
56 print " the path to the build output directory, such as out/Debug." | |
57 print " Ignored if --chrome-symbols-dir is passed." | |
50 print | 58 print |
51 print " --packed-relocation-adjustments" | 59 print " --packed-relocation-adjustments" |
52 print " --no-packed-relocation-adjustments" | 60 print " --no-packed-relocation-adjustments" |
53 print " turn packed relocation adjustment on and off (default is off)" | 61 print " turn packed relocation adjustment on and off (default is off)" |
54 print " If running on pre-M Android and the stack trace appears to" | 62 print " If running on pre-M Android and the stack trace appears to" |
55 print " make no sense, try turning this feature on." | 63 print " make no sense, try turning this feature on." |
56 print | 64 print |
57 print " --chrome-apk-dir=path" | 65 print " --chrome-apk-dir=path" |
58 print " the path to the APK staging dir (can be absolute or relative" | 66 print " the path to the APK staging dir (can be absolute or relative" |
59 print " to src), such as =out/Debug/chrome_apk" | 67 print " to src), such as =out/Debug/chrome_apk" |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
132 | 140 |
133 def main(argv): | 141 def main(argv): |
134 try: | 142 try: |
135 options, arguments = getopt.getopt(argv, "", | 143 options, arguments = getopt.getopt(argv, "", |
136 ["packed-relocation-adjustments", | 144 ["packed-relocation-adjustments", |
137 "no-packed-relocation-adjustments", | 145 "no-packed-relocation-adjustments", |
138 "more-info", | 146 "more-info", |
139 "less-info", | 147 "less-info", |
140 "chrome-symbols-dir=", | 148 "chrome-symbols-dir=", |
141 "chrome-apk-dir=", | 149 "chrome-apk-dir=", |
150 "output-directory=", | |
142 "symbols-dir=", | 151 "symbols-dir=", |
143 "symbols-zip=", | 152 "symbols-zip=", |
144 "arch=", | 153 "arch=", |
145 "verbose", | 154 "verbose", |
146 "help"]) | 155 "help"]) |
147 except getopt.GetoptError, unused_error: | 156 except getopt.GetoptError, unused_error: |
148 PrintUsage() | 157 PrintUsage() |
149 | 158 |
159 constants.require_explicit_output_dir = True | |
160 | |
150 zip_arg = None | 161 zip_arg = None |
151 more_info = False | 162 more_info = False |
152 chrome_apk_dir = None | 163 chrome_apk_dir = None |
153 packed_relocation_adjustments = "unknown" | 164 packed_relocation_adjustments = "unknown" |
154 for option, value in options: | 165 for option, value in options: |
155 if option == "--help": | 166 if option == "--help": |
156 PrintUsage() | 167 PrintUsage() |
157 elif option == "--symbols-dir": | 168 elif option == "--symbols-dir": |
158 symbol.SYMBOLS_DIR = os.path.expanduser(value) | 169 symbol.SYMBOLS_DIR = os.path.expanduser(value) |
159 elif option == "--symbols-zip": | 170 elif option == "--symbols-zip": |
160 zip_arg = os.path.expanduser(value) | 171 zip_arg = os.path.expanduser(value) |
161 elif option == "--arch": | 172 elif option == "--arch": |
162 symbol.ARCH = value | 173 symbol.ARCH = value |
163 elif option == "--chrome-symbols-dir": | 174 elif option == "--chrome-symbols-dir": |
164 symbol.CHROME_SYMBOLS_DIR = os.path.join(symbol.CHROME_SRC, value) | 175 symbol.CHROME_SYMBOLS_DIR = os.path.join(symbol.CHROME_SRC, value) |
165 elif option == "--chrome-apk-dir": | 176 elif option == "--chrome-apk-dir": |
166 chrome_apk_dir = os.path.join(symbol.CHROME_SRC, value) | 177 chrome_apk_dir = os.path.join(symbol.CHROME_SRC, value) |
178 elif option == "--output-directory": | |
179 constants.SetOutputDirectory(value) | |
167 elif option == "--packed-relocation-adjustments": | 180 elif option == "--packed-relocation-adjustments": |
168 packed_relocation_adjustments = True | 181 packed_relocation_adjustments = True |
169 elif option == "--no-packed-relocation-adjustments": | 182 elif option == "--no-packed-relocation-adjustments": |
170 packed_relocation_adjustments = False | 183 packed_relocation_adjustments = False |
171 elif option == "--more-info": | 184 elif option == "--more-info": |
172 more_info = True | 185 more_info = True |
173 elif option == "--less-info": | 186 elif option == "--less-info": |
174 more_info = False | 187 more_info = False |
175 elif option == "--verbose": | 188 elif option == "--verbose": |
176 logging.basicConfig(level=logging.DEBUG) | 189 logging.basicConfig(level=logging.DEBUG) |
177 | 190 |
178 if symbol.CHROME_SYMBOLS_DIR and not chrome_apk_dir: | 191 if symbol.CHROME_SYMBOLS_DIR and not chrome_apk_dir: |
179 chrome_apk_dir = os.path.join(symbol.CHROME_SYMBOLS_DIR, | 192 chrome_apk_dir = os.path.join(symbol.CHROME_SYMBOLS_DIR, |
180 '..', DEFAULT_APK_DIR) | 193 '..', DEFAULT_APK_DIR) |
181 | 194 |
182 if len(arguments) > 1: | 195 if len(arguments) > 1: |
183 PrintUsage() | 196 PrintUsage() |
184 | 197 |
198 # Do an up-front test that the output directory is known. | |
199 constants.GetOutDirectory() | |
200 | |
185 if not arguments or arguments[0] == "-": | 201 if not arguments or arguments[0] == "-": |
186 print "Reading native crash info from stdin" | 202 print "Reading native crash info from stdin" |
187 f = sys.stdin | 203 f = sys.stdin |
188 else: | 204 else: |
189 print "Searching for native crashes in: " + os.path.realpath(arguments[0]) | 205 print "Searching for native crashes in: " + os.path.realpath(arguments[0]) |
190 f = open(arguments[0], "r") | 206 f = open(arguments[0], "r") |
191 | 207 |
192 lines = f.readlines() | 208 lines = f.readlines() |
193 f.close() | 209 f.close() |
194 | 210 |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
234 if rootdir: | 250 if rootdir: |
235 # be a good citizen and clean up...os.rmdir and os.removedirs() don't work | 251 # be a good citizen and clean up...os.rmdir and os.removedirs() don't work |
236 cmd = "rm -rf \"%s\"" % rootdir | 252 cmd = "rm -rf \"%s\"" % rootdir |
237 print "\ncleaning up (%s)" % cmd | 253 print "\ncleaning up (%s)" % cmd |
238 os.system(cmd) | 254 os.system(cmd) |
239 | 255 |
240 if __name__ == "__main__": | 256 if __name__ == "__main__": |
241 sys.exit(main(sys.argv[1:])) | 257 sys.exit(main(sys.argv[1:])) |
242 | 258 |
243 # vi: ts=2 sw=2 | 259 # vi: ts=2 sw=2 |
OLD | NEW |