~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/remotebranch.py

  • Committer: Martin Pool
  • Date: 2005-08-26 02:31:37 UTC
  • Revision ID: mbp@sourcefrog.net-20050826023137-eb4b101cc92f9792
- ignore tags files

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /usr/bin/env python
 
2
 
1
3
# Copyright (C) 2005 Canonical Ltd
2
4
 
3
5
# This program is free software; you can redistribute it and/or modify
24
26
 
25
27
import gzip
26
28
from cStringIO import StringIO
27
 
import os
28
29
import urllib2
29
 
import urlparse
30
 
 
31
 
from bzrlib.errors import BzrError, BzrCheckError
32
 
from bzrlib.branch import Branch, BZR_BRANCH_FORMAT
33
 
from bzrlib.trace import mutter
34
 
from bzrlib.xml import serializer_v4
35
 
 
36
 
 
37
 
ENABLE_URLGRABBER = False
38
 
 
39
 
from bzrlib.errors import BzrError, NoSuchRevision
 
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
from bzrlib.errors import BzrError
40
42
 
41
43
class GetFailed(BzrError):
42
44
    def __init__(self, url, status):
82
84
    orig_url = url
83
85
    while True:
84
86
        try:
85
 
            fmt_url = url + '/.bzr/branch-format'
86
 
            ff = get_url(fmt_url)
 
87
            ff = get_url(url + '/.bzr/branch-format')
 
88
 
87
89
            fmt = ff.read()
88
90
            ff.close()
89
91
 
96
98
        except urllib2.URLError:
97
99
            pass
98
100
 
99
 
        scheme, host, path = list(urlparse.urlparse(url))[:3]
100
 
        # discard params, query, fragment
101
 
        
102
 
        # strip off one component of the path component
103
 
        idx = path.rfind('/')
104
 
        if idx == -1 or path == '/':
105
 
            raise BzrError('no branch root found for URL %s'
106
 
                           ' or enclosing directories'
107
 
                           % orig_url)
108
 
        path = path[:idx]
109
 
        url = urlparse.urlunparse((scheme, host, path, '', '', ''))
 
101
        try:
 
102
            idx = url.rindex('/')
 
103
        except ValueError:
 
104
            raise BzrError('no branch root found for URL %s' % orig_url)
 
105
 
 
106
        url = url[:idx]        
110
107
        
111
108
 
112
109
 
114
111
    def __init__(self, baseurl, find_root=True):
115
112
        """Create new proxy for a remote branch."""
116
113
        if find_root:
117
 
            self.base = _find_remote_root(baseurl)
 
114
            self.baseurl = _find_remote_root(baseurl)
118
115
        else:
119
 
            self.base = baseurl
 
116
            self.baseurl = baseurl
120
117
            self._check_format()
121
118
 
122
119
        self.inventory_store = RemoteStore(baseurl + '/.bzr/inventory-store/')
132
129
    def controlfile(self, filename, mode):
133
130
        if mode not in ('rb', 'rt', 'r'):
134
131
            raise BzrError("file mode %r not supported for remote branches" % mode)
135
 
        return get_url(self.base + '/.bzr/' + filename, False)
 
132
        return get_url(self.baseurl + '/.bzr/' + filename, False)
136
133
 
137
134
 
138
135
    def lock_read(self):
142
139
    def lock_write(self):
143
140
        from errors import LockError
144
141
        raise LockError("write lock not supported for remote branch %s"
145
 
                        % self.base)
 
142
                        % self.baseurl)
146
143
 
147
144
    def unlock(self):
148
145
        pass
149
146
    
150
147
 
151
148
    def relpath(self, path):
152
 
        if not path.startswith(self.base):
 
149
        if not path.startswith(self.baseurl):
153
150
            raise BzrError('path %r is not under base URL %r'
154
 
                           % (path, self.base))
155
 
        pl = len(self.base)
 
151
                           % (path, self.baseurl))
 
152
        pl = len(self.baseurl)
156
153
        return path[pl:].lstrip('/')
157
154
 
158
155
 
159
156
    def get_revision(self, revision_id):
160
 
        try:
161
 
            revf = self.revision_store[revision_id]
162
 
        except KeyError:
163
 
            raise NoSuchRevision(self, revision_id)
164
 
        r = serializer_v4.read_revision(revf)
 
157
        from bzrlib.revision import Revision
 
158
        from bzrlib.xml import unpack_xml
 
159
        revf = self.revision_store[revision_id]
 
160
        r = unpack_xml(Revision, revf)
165
161
        if r.revision_id != revision_id:
166
162
            raise BzrCheckError('revision stored as {%s} actually contains {%s}'
167
163
                                % (revision_id, r.revision_id))
182
178
        p = self._path(fileid)
183
179
        try:
184
180
            return get_url(p, compressed=True)
185
 
        except urllib2.URLError:
 
181
        except:
186
182
            raise KeyError(fileid)
187
183
    
188
184