~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/trace.py

  • Committer: Robert Collins
  • Date: 2007-10-02 05:33:39 UTC
  • mto: This revision was merged to the branch mainline in revision 2885.
  • Revision ID: robertc@robertcollins.net-20071002053339-vnyjf4jrxv0jeekf
* Move transport logging into a new transport class
  TransportTraceDecorator (trace+ to get it from a url).
* Give Registry a useful __repr__.
* Fix a bug introduced by the change to use a Registry for transport where
  the transport loading tests left global state behind due to the
  _get_protocol_handlers method returning a reference, not a value object.
* Add an upper_limit parameter to readv, because when asking for byte
  ranges within the latency-adjustment window near the end of the file
  causes errors that are tricky to manage.
* A few minor drive-by formatting fixes.
* The TransportDecorator constructor now accepts a _from_transport
  parameter for decorators that want to share state (used by the trace
  decorator)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2007 Canonical Ltd
 
2
#
 
3
# This program is free software; you can redistribute it and/or modify
 
4
# it under the terms of the GNU General Public License as published by
 
5
# the Free Software Foundation; either version 2 of the License, or
 
6
# (at your option) any later version.
 
7
#
 
8
# This program is distributed in the hope that it will be useful,
 
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
# GNU General Public License for more details.
 
12
#
 
13
# You should have received a copy of the GNU General Public License
 
14
# along with this program; if not, write to the Free Software
 
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
16
 
 
17
"""Implementation of Transport that traces transport operations.
 
18
 
 
19
This does not change the transport behaviour at allmerely records every call
 
20
and then delegates it.
 
21
"""
 
22
 
 
23
from bzrlib.transport.decorator import TransportDecorator, DecoratorServer
 
24
 
 
25
 
 
26
class TransportTraceDecorator(TransportDecorator):
 
27
    """A tracing decorator for Transports.
 
28
 
 
29
    Calls that potentially perform IO are logged to self._activity. The
 
30
    _activity attribute is shared as the transport is cloned, but not if a new
 
31
    transport is created without cloning.
 
32
    """
 
33
 
 
34
    def __init__(self, url, _decorated=None, _from_transport=None):
 
35
        """Set the 'base' path where files will be stored.
 
36
        
 
37
        _decorated is a private parameter for cloning.
 
38
        """
 
39
        TransportDecorator.__init__(self, url, _decorated)
 
40
        if _from_transport is None:
 
41
            # newly created
 
42
            self._activity = []
 
43
        else:
 
44
            # cloned
 
45
            self._activity = _from_transport._activity
 
46
 
 
47
    def append_file(self, relpath, f, mode=None):
 
48
        """See Transport.append_file()."""
 
49
        return self._decorated.append_file(relpath, f, mode=mode)
 
50
 
 
51
    def append_bytes(self, relpath, bytes, mode=None):
 
52
        """See Transport.append_bytes()."""
 
53
        return self._decorated.append_bytes(relpath, bytes, mode=mode)
 
54
 
 
55
    def delete(self, relpath):
 
56
        """See Transport.delete()."""
 
57
        return self._decorated.delete(relpath)
 
58
 
 
59
    def delete_tree(self, relpath):
 
60
        """See Transport.delete_tree()."""
 
61
        return self._decorated.delete_tree(relpath)
 
62
 
 
63
    @classmethod
 
64
    def _get_url_prefix(self):
 
65
        """Tracing transports are identified by 'trace+'"""
 
66
        return 'trace+'
 
67
 
 
68
    def get(self, relpath):
 
69
        """See Transport.get()."""
 
70
        self._activity.append(('get', relpath))
 
71
        return self._decorated.get(relpath)
 
72
 
 
73
    def get_smart_client(self):
 
74
        return self._decorated.get_smart_client()
 
75
 
 
76
    def has(self, relpath):
 
77
        """See Transport.has()."""
 
78
        return self._decorated.has(relpath)
 
79
 
 
80
    def is_readonly(self):
 
81
        """See Transport.is_readonly."""
 
82
        return self._decorated.is_readonly()
 
83
 
 
84
    def mkdir(self, relpath, mode=None):
 
85
        """See Transport.mkdir()."""
 
86
        return self._decorated.mkdir(relpath, mode)
 
87
 
 
88
    def open_write_stream(self, relpath, mode=None):
 
89
        """See Transport.open_write_stream."""
 
90
        return self._decorated.open_write_stream(relpath, mode=mode)
 
91
 
 
92
    def put_file(self, relpath, f, mode=None):
 
93
        """See Transport.put_file()."""
 
94
        return self._decorated.put_file(relpath, f, mode)
 
95
    
 
96
    def put_bytes(self, relpath, bytes, mode=None):
 
97
        """See Transport.put_bytes()."""
 
98
        self._activity.append(('put_bytes', relpath, len(bytes), mode))
 
99
        return self._decorated.put_bytes(relpath, bytes, mode)
 
100
 
 
101
    def listable(self):
 
102
        """See Transport.listable."""
 
103
        return self._decorated.listable()
 
104
 
 
105
    def iter_files_recursive(self):
 
106
        """See Transport.iter_files_recursive()."""
 
107
        return self._decorated.iter_files_recursive()
 
108
    
 
109
    def list_dir(self, relpath):
 
110
        """See Transport.list_dir()."""
 
111
        return self._decorated.list_dir(relpath)
 
112
 
 
113
    def readv(self, relpath, offsets, adjust_for_latency=False,
 
114
        upper_limit=None):
 
115
        """See Transport.readv."""
 
116
        self._activity.append(('readv', relpath, offsets, adjust_for_latency,
 
117
            upper_limit))
 
118
        return self._decorated.readv(relpath, offsets, adjust_for_latency,
 
119
            upper_limit)
 
120
 
 
121
    def recommended_page_size(self):
 
122
        """See Transport.recommended_page_size()."""
 
123
        return self._decorated.recommended_page_size()
 
124
 
 
125
    def rename(self, rel_from, rel_to):
 
126
        return self._decorated.rename(rel_from, rel_to)
 
127
    
 
128
    def rmdir(self, relpath):
 
129
        """See Transport.rmdir."""
 
130
        return self._decorated.rmdir(relpath)
 
131
 
 
132
    def stat(self, relpath):
 
133
        """See Transport.stat()."""
 
134
        return self._decorated.stat(relpath)
 
135
 
 
136
    def lock_read(self, relpath):
 
137
        """See Transport.lock_read."""
 
138
        return self._decorated.lock_read(relpath)
 
139
 
 
140
    def lock_write(self, relpath):
 
141
        """See Transport.lock_write."""
 
142
        return self._decorated.lock_write(relpath)
 
143
 
 
144
 
 
145
class TraceServer(DecoratorServer):
 
146
    """Server for the TransportTraceDecorator for testing with."""
 
147
 
 
148
    def get_decorator_class(self):
 
149
        return TransportTraceDecorator
 
150
 
 
151
 
 
152
def get_test_permutations():
 
153
    """Return the permutations to be used in testing.
 
154
    
 
155
    The Decorator class is not directly usable, and testing it would not have
 
156
    any benefit - its the concrete classes which need to be tested.
 
157
    """
 
158
    return [(TransportTraceDecorator, TraceServer)]