~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/crash.py

  • Committer: Martin Pool
  • Date: 2010-02-23 07:43:11 UTC
  • mfrom: (4797.2.20 2.1)
  • mto: This revision was merged to the branch mainline in revision 5055.
  • Revision ID: mbp@sourcefrog.net-20100223074311-gnj55xdhrgz9l94e
Merge 2.1 back to trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
A crash is an exception propagated up almost to the top level of Bazaar.
21
21
 
22
22
If we have apport <https://launchpad.net/apport/>, we store a report of the
23
 
crash using apport into its /var/crash spool directory, from where the user
 
23
crash using apport into it's /var/crash spool directory, from where the user
24
24
can either manually send it to Launchpad.  In some cases (at least Ubuntu
25
25
development releases), Apport may pop up a window asking if they want
26
26
to send it.
33
33
In principle apport can run on any platform though as of Feb 2010 there seem
34
34
to be some portability bugs.
35
35
 
36
 
To force this off in bzr turn set APPORT_DISABLE in the environment or 
 
36
To force this off in bzr turn set APPORT_DISBLE in the environment or 
37
37
-Dno_apport.
38
38
"""
39
39
 
143
143
    exc_type, exc_object, exc_tb = exc_info
144
144
 
145
145
    pr = Report()
146
 
    # add_proc_info gives you the memory map of the process, which is not so
147
 
    # useful for Bazaar but does tell you what binary libraries are loaded.
148
 
    # More importantly it sets the ExecutablePath, InterpreterPath, etc.
 
146
    # add_proc_info gets the executable and interpreter path, which is needed,
 
147
    # plus some less useful stuff like the memory map
149
148
    pr.add_proc_info()
150
149
    pr.add_user_info()
151
150
 
166
165
    pr['PythonLoadedModules'] = _format_module_list()
167
166
    pr['BzrDebugFlags'] = pprint.pformat(debug.debug_flags)
168
167
 
169
 
    # actually we'd rather file directly against the upstream product, but
170
 
    # apport does seem to count on there being one in there; we might need to
171
 
    # redirect it elsewhere anyhow
172
 
    pr['SourcePackage'] = 'bzr'
173
 
    pr['Package'] = 'bzr'
174
 
 
175
 
    # tell apport to file directly against the bzr package using 
176
 
    # <https://bugs.launchpad.net/bzr/+bug/391015>
177
 
    #
178
 
    # XXX: unfortunately apport may crash later if the crashdb definition
179
 
    # file isn't present
180
 
    pr['CrashDb'] = 'bzr'
181
 
 
182
168
    tb_file = StringIO()
183
169
    traceback.print_exception(exc_type, exc_object, exc_tb, file=tb_file)
184
170
    pr['Traceback'] = tb_file.getvalue()