Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar/TracebackUtils.py
blob: 940381e6c5a69d62f90177a080172e125b4da4fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# Copyright (C) 2006, Red Hat, Inc.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA.

import sys
import traceback
import os
import signal

haveThreadframe = True
try:
    import threadframe
except ImportError:
    haveThreadframe = False

class TracebackHelper(object):
    def __init__(self):
        fname = "%s-%d" % (os.path.basename(sys.argv[0]), os.getpid())
        self._fpath = os.path.join("/tmp", fname)
        print "Tracebacks will be written to %s on SIGUSR1" % self._fpath
        signal.signal(signal.SIGUSR1, self._handler)

    def __del__(self):
        try:
            os.remove(self._fpath)
        except OSError:
            pass

    def _handler(self, signum, pframe):
        f = open(self._fpath, "a")
        if not haveThreadframe:
            f.write("Threadframe not installed.  No traceback available.\n")
        else:
            frames = threadframe.dict()
            for thread_id, frame in frames.iteritems():
                f.write(('-' * 79) + '\n')
                f.write('[Thread %s] %d' % (thread_id, sys.getrefcount(frame)) + '\n')
                traceback.print_stack(frame, limit=None, file=f)
                f.write("\n")
        f.write('\n')
        f.close()