/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to breezy/strace.py

  • Committer: John Arbash Meinel
  • Date: 2006-04-25 15:05:42 UTC
  • mfrom: (1185.85.85 bzr-encoding)
  • mto: This revision was merged to the branch mainline in revision 1752.
  • Revision ID: john@arbash-meinel.com-20060425150542-c7b518dca9928691
[merge] the old bzr-encoding changes, reparenting them on bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2007, 2009, 2010 Canonical Ltd
2
 
#   Authors: Robert Collins <robert.collins@canonical.com>
3
 
#
4
 
# This program is free software; you can redistribute it and/or modify
5
 
# it under the terms of the GNU General Public License as published by
6
 
# the Free Software Foundation; either version 2 of the License, or
7
 
# (at your option) any later version.
8
 
#
9
 
# This program is distributed in the hope that it will be useful,
10
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
 
# GNU General Public License for more details.
13
 
#
14
 
# You should have received a copy of the GNU General Public License
15
 
# along with this program; if not, write to the Free Software
16
 
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17
 
 
18
 
"""Support for running strace against the current process."""
19
 
 
20
 
from __future__ import absolute_import
21
 
 
22
 
import os
23
 
import signal
24
 
import subprocess
25
 
import tempfile
26
 
 
27
 
from . import errors
28
 
 
29
 
 
30
 
def strace(function, *args, **kwargs):
31
 
    """Invoke strace on function.
32
 
 
33
 
    :return: a tuple: function-result, a StraceResult.
34
 
    """
35
 
    return strace_detailed(function, args, kwargs)
36
 
 
37
 
 
38
 
def strace_detailed(function, args, kwargs, follow_children=True):
39
 
    # FIXME: strace is buggy
40
 
    # (https://bugs.launchpad.net/ubuntu/+source/strace/+bug/103133) and the
41
 
    # test suite hangs if the '-f' is given to strace *and* more than one
42
 
    # thread is running. Using follow_children=False allows the test suite to
43
 
    # disable fork following to work around the bug.
44
 
 
45
 
    # capture strace output to a file
46
 
    log_file = tempfile.NamedTemporaryFile()
47
 
    err_file = tempfile.NamedTemporaryFile()
48
 
    pid = os.getpid()
49
 
    # start strace
50
 
    strace_cmd = ['strace', '-r', '-tt', '-p', str(pid), '-o', log_file.name]
51
 
    if follow_children:
52
 
        strace_cmd.append('-f')
53
 
    # need to catch both stdout and stderr to work around
54
 
    # bug 627208
55
 
    proc = subprocess.Popen(strace_cmd,
56
 
                            stdout=subprocess.PIPE,
57
 
                            stderr=err_file.fileno())
58
 
    # Wait for strace to attach
59
 
    proc.stdout.readline()
60
 
    # Run the function to strace
61
 
    result = function(*args, **kwargs)
62
 
    # stop strace
63
 
    os.kill(proc.pid, signal.SIGQUIT)
64
 
    proc.communicate()
65
 
    # grab the log
66
 
    log_file.seek(0)
67
 
    log = log_file.read()
68
 
    log_file.close()
69
 
    # and stderr
70
 
    err_file.seek(0)
71
 
    err_messages = err_file.read()
72
 
    err_file.close()
73
 
    # and read any errors
74
 
    if err_messages.startswith("attach: ptrace(PTRACE_ATTACH,"):
75
 
        raise StraceError(err_messages=err_messages)
76
 
    return result, StraceResult(log, err_messages)
77
 
 
78
 
 
79
 
class StraceError(errors.BzrError):
80
 
 
81
 
    _fmt = "strace failed: %(err_messages)s"
82
 
 
83
 
 
84
 
class StraceResult(object):
85
 
    """The result of stracing a function."""
86
 
 
87
 
    def __init__(self, raw_log, err_messages):
88
 
        """Create a StraceResult.
89
 
 
90
 
        :param raw_log: The output that strace created.
91
 
        """
92
 
        self.raw_log = raw_log
93
 
        self.err_messages = err_messages