1
# Copyright (C) 2006 Canonical Ltd
1
# Copyright (C) 2006, 2009 Canonical Ltd
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
13
13
# You should have received a copy of the GNU General Public License
14
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
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17
17
"""Implementation of Transport that adapts another transport to be readonly."""
19
from bzrlib.errors import TransportNotPossible
20
from bzrlib.transport.decorator import TransportDecorator, DecoratorServer
23
class ReadonlyTransportDecorator(TransportDecorator):
19
from __future__ import absolute_import
21
from bzrlib.errors import TransportNotPossible, NoSmartMedium
22
from bzrlib.transport import decorator
25
class ReadonlyTransportDecorator(decorator.TransportDecorator):
24
26
"""A decorator that can convert any transport to be readonly.
26
28
This is requested via the 'readonly+' prefix to get_transport().
29
def append(self, relpath, f):
30
"""See Transport.append()."""
31
raise TransportNotPossible('readonly transport')
31
def append_file(self, relpath, f, mode=None):
32
"""See Transport.append_file()."""
33
raise TransportNotPossible('readonly transport')
35
def append_bytes(self, relpath, bytes, mode=None):
36
"""See Transport.append_bytes()."""
37
raise TransportNotPossible('readonly transport')
34
40
def _get_url_prefix(self):
35
41
"""Readonly transport decorators are invoked via 'readonly+'"""
43
49
"""See Transport.delete_tree()."""
44
50
raise TransportNotPossible('readonly transport')
46
def put(self, relpath, f, mode=None):
47
"""See Transport.put()."""
52
def put_file(self, relpath, f, mode=None):
53
"""See Transport.put_file()."""
54
raise TransportNotPossible('readonly transport')
56
def put_bytes(self, relpath, bytes, mode=None):
57
"""See Transport.put_bytes()."""
48
58
raise TransportNotPossible('readonly transport')
50
60
def mkdir(self, relpath, mode=None):
63
73
"""See Transport.lock_write."""
64
74
raise TransportNotPossible('readonly transport')
67
class ReadonlyServer(DecoratorServer):
68
"""Server for the ReadonlyTransportDecorator for testing with."""
70
def get_decorator_class(self):
71
return ReadonlyTransportDecorator
76
def get_smart_client(self):
77
raise NoSmartServer(self.base)
79
def get_smart_medium(self):
80
raise NoSmartMedium(self)
74
83
def get_test_permutations():
75
84
"""Return the permutations to be used in testing."""
76
return [(ReadonlyTransportDecorator, ReadonlyServer),
85
from bzrlib.tests import test_server
86
return [(ReadonlyTransportDecorator, test_server.ReadonlyServer),]