1
# Copyright (C) 2007 Canonical Ltd
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.
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.
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17
"""Implementation of Transport that traces transport operations.
19
This does not change the transport behaviour at all, merely records every call
20
and then delegates it.
23
from __future__ import absolute_import
25
from bzrlib.transport import decorator
28
class TransportTraceDecorator(decorator.TransportDecorator):
29
"""A tracing decorator for Transports.
31
Calls that potentially perform IO are logged to self._activity. The
32
_activity attribute is shared as the transport is cloned, but not if a new
33
transport is created without cloning.
35
Not all operations are logged at this point, if you need an unlogged
36
operation please add a test to the tests of this transport, for the logging
37
of the operation you want logged.
39
See also TransportLogDecorator, that records a machine-readable log in
40
memory for eg testing.
43
def __init__(self, url, _decorated=None, _from_transport=None):
44
"""Set the 'base' path where files will be stored.
46
_decorated is a private parameter for cloning.
48
super(TransportTraceDecorator, self).__init__(url, _decorated)
49
if _from_transport is None:
54
self._activity = _from_transport._activity
56
def append_file(self, relpath, f, mode=None):
57
"""See Transport.append_file()."""
58
return self._decorated.append_file(relpath, f, mode=mode)
60
def append_bytes(self, relpath, bytes, mode=None):
61
"""See Transport.append_bytes()."""
62
return self._decorated.append_bytes(relpath, bytes, mode=mode)
64
def delete(self, relpath):
65
"""See Transport.delete()."""
66
self._activity.append(('delete', relpath))
67
return self._decorated.delete(relpath)
69
def delete_tree(self, relpath):
70
"""See Transport.delete_tree()."""
71
return self._decorated.delete_tree(relpath)
74
def _get_url_prefix(self):
75
"""Tracing transports are identified by 'trace+'"""
78
def get(self, relpath):
79
"""See Transport.get()."""
80
self._trace(('get', relpath))
81
return self._decorated.get(relpath)
83
def get_smart_client(self):
84
return self._decorated.get_smart_client()
86
def has(self, relpath):
87
"""See Transport.has()."""
88
return self._decorated.has(relpath)
90
def is_readonly(self):
91
"""See Transport.is_readonly."""
92
return self._decorated.is_readonly()
94
def mkdir(self, relpath, mode=None):
95
"""See Transport.mkdir()."""
96
self._trace(('mkdir', relpath, mode))
97
return self._decorated.mkdir(relpath, mode)
99
def open_write_stream(self, relpath, mode=None):
100
"""See Transport.open_write_stream."""
101
return self._decorated.open_write_stream(relpath, mode=mode)
103
def put_file(self, relpath, f, mode=None):
104
"""See Transport.put_file()."""
105
return self._decorated.put_file(relpath, f, mode)
107
def put_bytes(self, relpath, bytes, mode=None):
108
"""See Transport.put_bytes()."""
109
self._trace(('put_bytes', relpath, len(bytes), mode))
110
return self._decorated.put_bytes(relpath, bytes, mode)
112
def put_bytes_non_atomic(self, relpath, bytes, mode=None,
113
create_parent_dir=False, dir_mode=None):
114
"""See Transport.put_bytes_non_atomic."""
115
self._trace(('put_bytes_non_atomic', relpath, len(bytes), mode,
116
create_parent_dir, dir_mode))
117
return self._decorated.put_bytes_non_atomic(relpath, bytes, mode=mode,
118
create_parent_dir=create_parent_dir, dir_mode=dir_mode)
121
"""See Transport.listable."""
122
return self._decorated.listable()
124
def iter_files_recursive(self):
125
"""See Transport.iter_files_recursive()."""
126
return self._decorated.iter_files_recursive()
128
def list_dir(self, relpath):
129
"""See Transport.list_dir()."""
130
return self._decorated.list_dir(relpath)
132
def readv(self, relpath, offsets, adjust_for_latency=False,
134
# we override at the readv() level rather than _readv() so that any
135
# latency adjustments will be done by the underlying transport
136
self._trace(('readv', relpath, offsets, adjust_for_latency,
138
return self._decorated.readv(relpath, offsets, adjust_for_latency,
141
def recommended_page_size(self):
142
"""See Transport.recommended_page_size()."""
143
return self._decorated.recommended_page_size()
145
def rename(self, rel_from, rel_to):
146
self._activity.append(('rename', rel_from, rel_to))
147
return self._decorated.rename(rel_from, rel_to)
149
def rmdir(self, relpath):
150
"""See Transport.rmdir."""
151
self._trace(('rmdir', relpath))
152
return self._decorated.rmdir(relpath)
154
def stat(self, relpath):
155
"""See Transport.stat()."""
156
return self._decorated.stat(relpath)
158
def lock_read(self, relpath):
159
"""See Transport.lock_read."""
160
return self._decorated.lock_read(relpath)
162
def lock_write(self, relpath):
163
"""See Transport.lock_write."""
164
return self._decorated.lock_write(relpath)
166
def _trace(self, operation_tuple):
167
"""Record that a transport operation occured.
169
:param operation: Tuple of transport call name and arguments.
171
self._activity.append(operation_tuple)
174
def get_test_permutations():
175
"""Return the permutations to be used in testing."""
176
from bzrlib.tests import test_server
177
return [(TransportTraceDecorator, test_server.TraceServer)]