/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
2367.1.7 by Robert Collins
Added ``bzrlib.strace.strace`` which will strace a single callable and
1
# Copyright (C) 2007 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
18
"""Support for running strace against the current process."""
19
20
import os
21
import signal
22
import subprocess
23
import tempfile
24
25
# this is currently test-focused, so importing bzrlib.tests is ok. We might
26
# want to move feature to its own module though.
27
from bzrlib.tests import Feature
28
2367.1.9 by Robert Collins
Review feedback.
29
2367.1.7 by Robert Collins
Added ``bzrlib.strace.strace`` which will strace a single callable and
30
def strace(function, *args, **kwargs):
31
    """Invoke strace on function.
32
2367.1.9 by Robert Collins
Review feedback.
33
    :return: a tuple: function-result, a StraceResult.
2367.1.7 by Robert Collins
Added ``bzrlib.strace.strace`` which will strace a single callable and
34
    """
35
    # capture strace output to a file
2394.1.1 by Andrew Bennetts
Wait for strace to attach before running the function we want to trace.
36
    log_file = tempfile.NamedTemporaryFile()
2367.1.7 by Robert Collins
Added ``bzrlib.strace.strace`` which will strace a single callable and
37
    log_file_fd = log_file.fileno()
38
    pid = os.getpid()
39
    # start strace
40
    proc = subprocess.Popen(['strace',
2394.1.1 by Andrew Bennetts
Wait for strace to attach before running the function we want to trace.
41
        '-f', '-r', '-tt', '-p', str(pid), '-o', log_file.name
2367.1.7 by Robert Collins
Added ``bzrlib.strace.strace`` which will strace a single callable and
42
        ],
2394.1.1 by Andrew Bennetts
Wait for strace to attach before running the function we want to trace.
43
        stdout=subprocess.PIPE,
44
        stderr=subprocess.STDOUT)
45
    # Wait for strace to attach
46
    attached_notice = proc.stdout.readline()
47
    # Run the function to strace
2367.1.9 by Robert Collins
Review feedback.
48
    result = function(*args, **kwargs)
2367.1.7 by Robert Collins
Added ``bzrlib.strace.strace`` which will strace a single callable and
49
    # stop strace
50
    os.kill(proc.pid, signal.SIGQUIT)
51
    proc.communicate()
52
    # grab the log
53
    log_file.seek(0)
54
    log = log_file.read()
55
    log_file.close()
2367.1.9 by Robert Collins
Review feedback.
56
    return result, StraceResult(log)
2367.1.7 by Robert Collins
Added ``bzrlib.strace.strace`` which will strace a single callable and
57
58
59
class StraceResult(object):
60
    """The result of stracing a function."""
61
62
    def __init__(self, raw_log):
63
        """Create a StraceResult.
64
65
        :param raw_log: The output that strace created.
66
        """
67
        self.raw_log = raw_log
68
69
70
class _StraceFeature(Feature):
71
72
    def _probe(self):
73
        try:
74
            proc = subprocess.Popen(['strace'],
75
                stderr=subprocess.PIPE,
76
                stdout=subprocess.PIPE)
77
            proc.communicate()
78
            return True
79
        except OSError, e:
80
            if e.errno == errno.ENOENT:
81
                # strace is not installed
82
                return False
83
            else:
84
                raise
85
86
    def feature_name(self):
87
        return 'strace'
88
89
StraceFeature = _StraceFeature()