~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/readonly.py

  • Committer: Launchpad Translations on behalf of bzr-core
  • Date: 2012-05-29 04:30:47 UTC
  • mto: (6581.1.1 trunk)
  • mto: This revision was merged to the branch mainline in revision 6582.
  • Revision ID: launchpad_translations_on_behalf_of_bzr-core-20120529043047-mmj2hkq63ke8kl81
Launchpad automatic translations update.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2006 Canonical Ltd
 
1
# Copyright (C) 2006, 2009 Canonical Ltd
2
2
#
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
12
12
#
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
16
16
 
17
17
"""Implementation of Transport that adapts another transport to be readonly."""
18
18
 
19
 
from bzrlib.errors import TransportNotPossible
20
 
from bzrlib.transport.decorator import TransportDecorator, DecoratorServer
21
 
 
22
 
 
23
 
class ReadonlyTransportDecorator(TransportDecorator):
 
19
from __future__ import absolute_import
 
20
 
 
21
from bzrlib.errors import TransportNotPossible, NoSmartMedium
 
22
from bzrlib.transport import decorator
 
23
 
 
24
 
 
25
class ReadonlyTransportDecorator(decorator.TransportDecorator):
24
26
    """A decorator that can convert any transport to be readonly.
25
27
 
26
28
    This is requested via the 'readonly+' prefix to get_transport().
27
29
    """
28
30
 
29
 
    def append(self, relpath, f):
30
 
        """See Transport.append()."""
31
 
        raise TransportNotPossible('readonly transport')
32
 
    
 
31
    def append_file(self, relpath, f, mode=None):
 
32
        """See Transport.append_file()."""
 
33
        raise TransportNotPossible('readonly transport')
 
34
 
 
35
    def append_bytes(self, relpath, bytes, mode=None):
 
36
        """See Transport.append_bytes()."""
 
37
        raise TransportNotPossible('readonly transport')
 
38
 
33
39
    @classmethod
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')
45
51
 
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')
 
55
 
 
56
    def put_bytes(self, relpath, bytes, mode=None):
 
57
        """See Transport.put_bytes()."""
48
58
        raise TransportNotPossible('readonly transport')
49
59
 
50
60
    def mkdir(self, relpath, mode=None):
63
73
        """See Transport.lock_write."""
64
74
        raise TransportNotPossible('readonly transport')
65
75
 
66
 
 
67
 
class ReadonlyServer(DecoratorServer):
68
 
    """Server for the ReadonlyTransportDecorator for testing with."""
69
 
 
70
 
    def get_decorator_class(self):
71
 
        return ReadonlyTransportDecorator
 
76
    def get_smart_client(self):
 
77
        raise NoSmartServer(self.base)
 
78
 
 
79
    def get_smart_medium(self):
 
80
        raise NoSmartMedium(self)
72
81
 
73
82
 
74
83
def get_test_permutations():
75
84
    """Return the permutations to be used in testing."""
76
 
    return [(ReadonlyTransportDecorator, ReadonlyServer),
77
 
            ]
 
85
    from bzrlib.tests import test_server
 
86
    return [(ReadonlyTransportDecorator, test_server.ReadonlyServer),]