~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/remotebranch.py

  • Committer: Martin Pool
  • Date: 2005-07-07 10:22:02 UTC
  • Revision ID: mbp@sourcefrog.net-20050707102201-2d2a13a25098b101
- rearrange and clear up merged weave

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /usr/bin/env python
 
2
 
 
3
# Copyright (C) 2005 Canonical Ltd
 
4
 
 
5
# This program is free software; you can redistribute it and/or modify
 
6
# it under the terms of the GNU General Public License as published by
 
7
# the Free Software Foundation; either version 2 of the License, or
 
8
# (at your option) any later version.
 
9
 
 
10
# This program is distributed in the hope that it will be useful,
 
11
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
# GNU General Public License for more details.
 
14
 
 
15
# You should have received a copy of the GNU General Public License
 
16
# along with this program; if not, write to the Free Software
 
17
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
18
 
 
19
 
 
20
"""Proxy object for access to remote branches.
 
21
 
 
22
At the moment remote branches are only for HTTP and only for read
 
23
access.
 
24
"""
 
25
 
 
26
 
 
27
import gzip
 
28
from cStringIO import StringIO
 
29
import urllib2
 
30
 
 
31
from errors import BzrError, BzrCheckError
 
32
from branch import Branch, BZR_BRANCH_FORMAT
 
33
from trace import mutter
 
34
 
 
35
# velocitynet.com.au transparently proxies connections and thereby
 
36
# breaks keep-alive -- sucks!
 
37
 
 
38
 
 
39
ENABLE_URLGRABBER = True
 
40
 
 
41
 
 
42
if ENABLE_URLGRABBER:
 
43
    import urlgrabber
 
44
    import urlgrabber.keepalive
 
45
    urlgrabber.keepalive.DEBUG = 0
 
46
    def get_url(path, compressed=False):
 
47
        try:
 
48
            url = path
 
49
            if compressed:
 
50
                url += '.gz'
 
51
            mutter("grab url %s" % url)
 
52
            url_f = urlgrabber.urlopen(url, keepalive=1, close_connection=0)
 
53
            if not compressed:
 
54
                return url_f
 
55
            else:
 
56
                return gzip.GzipFile(fileobj=StringIO(url_f.read()))
 
57
        except urllib2.URLError, e:
 
58
            raise BzrError("remote fetch failed: %r: %s" % (url, e))
 
59
else:
 
60
    def get_url(url, compressed=False):
 
61
        import urllib2
 
62
        if compressed:
 
63
            url += '.gz'
 
64
        mutter("get_url %s" % url)
 
65
        url_f = urllib2.urlopen(url)
 
66
        if compressed:
 
67
            return gzip.GzipFile(fileobj=StringIO(url_f.read()))
 
68
        else:
 
69
            return url_f
 
70
 
 
71
 
 
72
 
 
73
def _find_remote_root(url):
 
74
    """Return the prefix URL that corresponds to the branch root."""
 
75
    orig_url = url
 
76
    while True:
 
77
        try:
 
78
            ff = get_url(url + '/.bzr/branch-format')
 
79
 
 
80
            fmt = ff.read()
 
81
            ff.close()
 
82
 
 
83
            fmt = fmt.rstrip('\r\n')
 
84
            if fmt != BZR_BRANCH_FORMAT.rstrip('\r\n'):
 
85
                raise BzrError("sorry, branch format %r not supported at url %s"
 
86
                               % (fmt, url))
 
87
            
 
88
            return url
 
89
        except urllib2.URLError:
 
90
            pass
 
91
 
 
92
        try:
 
93
            idx = url.rindex('/')
 
94
        except ValueError:
 
95
            raise BzrError('no branch root found for URL %s' % orig_url)
 
96
 
 
97
        url = url[:idx]        
 
98
        
 
99
 
 
100
 
 
101
class RemoteBranch(Branch):
 
102
    def __init__(self, baseurl, find_root=True):
 
103
        """Create new proxy for a remote branch."""
 
104
        if find_root:
 
105
            self.baseurl = _find_remote_root(baseurl)
 
106
        else:
 
107
            self.baseurl = baseurl
 
108
            self._check_format()
 
109
 
 
110
        self.inventory_store = RemoteStore(baseurl + '/.bzr/inventory-store/')
 
111
        self.text_store = RemoteStore(baseurl + '/.bzr/text-store/')
 
112
        self.revision_store = RemoteStore(baseurl + '/.bzr/revision-store/')
 
113
 
 
114
    def __str__(self):
 
115
        b = getattr(self, 'baseurl', 'undefined')
 
116
        return '%s(%r)' % (self.__class__.__name__, b)
 
117
 
 
118
    __repr__ = __str__
 
119
 
 
120
    def controlfile(self, filename, mode):
 
121
        if mode not in ('rb', 'rt', 'r'):
 
122
            raise BzrError("file mode %r not supported for remote branches" % mode)
 
123
        return get_url(self.baseurl + '/.bzr/' + filename, False)
 
124
 
 
125
 
 
126
    def lock_read(self):
 
127
        # no locking for remote branches yet
 
128
        pass
 
129
 
 
130
    def lock_write(self):
 
131
        from errors import LockError
 
132
        raise LockError("write lock not supported for remote branch %s"
 
133
                        % self.baseurl)
 
134
 
 
135
    def unlock(self):
 
136
        pass
 
137
    
 
138
 
 
139
    def relpath(self, path):
 
140
        if not path.startswith(self.baseurl):
 
141
            raise BzrError('path %r is not under base URL %r'
 
142
                           % (path, self.baseurl))
 
143
        pl = len(self.baseurl)
 
144
        return path[pl:].lstrip('/')
 
145
 
 
146
 
 
147
    def get_revision(self, revision_id):
 
148
        from bzrlib.revision import Revision
 
149
        from bzrlib.xml import unpack_xml
 
150
        revf = self.revision_store[revision_id]
 
151
        r = unpack_xml(Revision, revf)
 
152
        if r.revision_id != revision_id:
 
153
            raise BzrCheckError('revision stored as {%s} actually contains {%s}'
 
154
                                % (revision_id, r.revision_id))
 
155
        return r
 
156
 
 
157
 
 
158
class RemoteStore(object):
 
159
    def __init__(self, baseurl):
 
160
        self._baseurl = baseurl
 
161
        
 
162
 
 
163
    def _path(self, name):
 
164
        if '/' in name:
 
165
            raise ValueError('invalid store id', name)
 
166
        return self._baseurl + '/' + name
 
167
        
 
168
    def __getitem__(self, fileid):
 
169
        p = self._path(fileid)
 
170
        return get_url(p, compressed=True)
 
171
    
 
172
 
 
173