1
# Copyright (C) 2007 Canonical Ltd
2
# Authors: Robert Collins <robert.collins@canonical.com>
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.
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.
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
18
"""Support for running strace against the current process."""
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
29
def strace(function, *args, **kwargs):
30
"""Invoke strace on function.
32
:return: A StraceResult.
34
# capture strace output to a file
35
log_file = tempfile.TemporaryFile()
36
log_file_fd = log_file.fileno()
39
proc = subprocess.Popen(['strace',
40
'-f', '-r', '-tt', '-p', str(pid),
44
# TODO? confirm its started (test suite should be sufficient)
45
# (can loop on proc.pid, but that may not indicate started and attached.)
46
function(*args, **kwargs)
48
os.kill(proc.pid, signal.SIGQUIT)
54
return StraceResult(log)
57
class StraceResult(object):
58
"""The result of stracing a function."""
60
def __init__(self, raw_log):
61
"""Create a StraceResult.
63
:param raw_log: The output that strace created.
65
self.raw_log = raw_log
68
class _StraceFeature(Feature):
72
proc = subprocess.Popen(['strace'],
73
stderr=subprocess.PIPE,
74
stdout=subprocess.PIPE)
78
if e.errno == errno.ENOENT:
79
# strace is not installed
84
def feature_name(self):
87
StraceFeature = _StraceFeature()