~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/readonly.py

  • Committer: Aaron Bentley
  • Date: 2005-09-12 02:53:07 UTC
  • mto: (1185.3.4)
  • mto: This revision was merged to the branch mainline in revision 1390.
  • Revision ID: aaron.bentley@utoronto.ca-20050912025307-8c21544e8db1cbdb
added all_descendants and node_distances, exception when root doesn't exist

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2006, 2009 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
 
 
17
 
"""Implementation of Transport that adapts another transport to be readonly."""
18
 
 
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):
26
 
    """A decorator that can convert any transport to be readonly.
27
 
 
28
 
    This is requested via the 'readonly+' prefix to get_transport().
29
 
    """
30
 
 
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
 
 
39
 
    @classmethod
40
 
    def _get_url_prefix(self):
41
 
        """Readonly transport decorators are invoked via 'readonly+'"""
42
 
        return 'readonly+'
43
 
 
44
 
    def delete(self, relpath):
45
 
        """See Transport.delete()."""
46
 
        raise TransportNotPossible('readonly transport')
47
 
 
48
 
    def delete_tree(self, relpath):
49
 
        """See Transport.delete_tree()."""
50
 
        raise TransportNotPossible('readonly transport')
51
 
 
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()."""
58
 
        raise TransportNotPossible('readonly transport')
59
 
 
60
 
    def mkdir(self, relpath, mode=None):
61
 
        """See Transport.mkdir()."""
62
 
        raise TransportNotPossible('readonly transport')
63
 
 
64
 
    def is_readonly(self):
65
 
        """See Transport.is_readonly."""
66
 
        return True
67
 
 
68
 
    def rmdir(self, relpath):
69
 
        """See Transport.rmdir."""
70
 
        raise TransportNotPossible('readonly transport')
71
 
 
72
 
    def lock_write(self, relpath):
73
 
        """See Transport.lock_write."""
74
 
        raise TransportNotPossible('readonly transport')
75
 
 
76
 
    def get_smart_client(self):
77
 
        raise NoSmartServer(self.base)
78
 
 
79
 
    def get_smart_medium(self):
80
 
        raise NoSmartMedium(self)
81
 
 
82
 
 
83
 
def get_test_permutations():
84
 
    """Return the permutations to be used in testing."""
85
 
    from bzrlib.tests import test_server
86
 
    return [(ReadonlyTransportDecorator, test_server.ReadonlyServer),]