/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: Gustav Hartvigsson
  • Date: 2021-01-09 21:36:27 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20210109213627-h1xwcutzy9m7a99b
Added 'Case Preserving Working Tree Use Cases' from Canonical Wiki

* Addod a page from the Canonical Bazaar wiki
  with information on the scmeatics of case
  perserving filesystems an a case insensitive
  filesystem works.
  
  * Needs re-work, but this will do as it is the
    same inforamoton as what was on the linked
    page in the currint documentation.

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
import os
 
21
import signal
 
22
import subprocess
 
23
import tempfile
 
24
 
 
25
from . import errors
 
26
 
 
27
 
 
28
def strace(function, *args, **kwargs):
 
29
    """Invoke strace on function.
 
30
 
 
31
    :return: a tuple: function-result, a StraceResult.
 
32
    """
 
33
    return strace_detailed(function, args, kwargs)
 
34
 
 
35
 
 
36
def strace_detailed(function, args, kwargs, follow_children=True):
 
37
    # FIXME: strace is buggy
 
38
    # (https://bugs.launchpad.net/ubuntu/+source/strace/+bug/103133) and the
 
39
    # test suite hangs if the '-f' is given to strace *and* more than one
 
40
    # thread is running. Using follow_children=False allows the test suite to
 
41
    # disable fork following to work around the bug.
 
42
 
 
43
    # capture strace output to a file
 
44
    log_file = tempfile.NamedTemporaryFile()
 
45
    err_file = tempfile.NamedTemporaryFile()
 
46
    pid = os.getpid()
 
47
    # start strace
 
48
    strace_cmd = ['strace', '-r', '-tt', '-p', str(pid), '-o', log_file.name]
 
49
    if follow_children:
 
50
        strace_cmd.append('-f')
 
51
    # need to catch both stdout and stderr to work around
 
52
    # bug 627208
 
53
    proc = subprocess.Popen(strace_cmd,
 
54
                            stdout=subprocess.PIPE,
 
55
                            stderr=err_file.fileno())
 
56
    # Wait for strace to attach
 
57
    proc.stdout.readline()
 
58
    # Run the function to strace
 
59
    result = function(*args, **kwargs)
 
60
    # stop strace
 
61
    os.kill(proc.pid, signal.SIGQUIT)
 
62
    proc.communicate()
 
63
    # grab the log
 
64
    log_file.seek(0)
 
65
    log = log_file.read()
 
66
    log_file.close()
 
67
    # and stderr
 
68
    err_file.seek(0)
 
69
    err_messages = err_file.read()
 
70
    err_file.close()
 
71
    # and read any errors
 
72
    if err_messages.startswith("attach: ptrace(PTRACE_ATTACH,"):
 
73
        raise StraceError(err_messages=err_messages)
 
74
    return result, StraceResult(log, err_messages)
 
75
 
 
76
 
 
77
class StraceError(errors.BzrError):
 
78
 
 
79
    _fmt = "strace failed: %(err_messages)s"
 
80
 
 
81
 
 
82
class StraceResult(object):
 
83
    """The result of stracing a function."""
 
84
 
 
85
    def __init__(self, raw_log, err_messages):
 
86
        """Create a StraceResult.
 
87
 
 
88
        :param raw_log: The output that strace created.
 
89
        """
 
90
        self.raw_log = raw_log
 
91
        self.err_messages = err_messages