/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to remote.py

Merge changes, open index.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2007-2008 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
16
 
 
17
import bzrlib
 
18
from bzrlib import urlutils
 
19
from bzrlib.bzrdir import BzrDir, BzrDirFormat
 
20
from bzrlib.errors import NoSuchFile, NotLocalUrl
 
21
from bzrlib.lockable_files import TransportLock
 
22
from bzrlib.repository import Repository
 
23
from bzrlib.trace import info
 
24
from bzrlib.transport import Transport
 
25
 
 
26
from bzrlib.plugins.git import git
 
27
from bzrlib.plugins.git.branch import GitBranch
 
28
from bzrlib.plugins.git.errors import NoSuchRef
 
29
from bzrlib.plugins.git.dir import GitDir
 
30
from bzrlib.plugins.git.foreign import ForeignBranch
 
31
from bzrlib.plugins.git.repository import GitFormat, GitRepository
 
32
 
 
33
import os
 
34
import tempfile
 
35
import urllib
 
36
import urlparse
 
37
 
 
38
from dulwich.pack import PackData, Pack
 
39
 
 
40
 
 
41
class GitSmartTransport(Transport):
 
42
 
 
43
    def __init__(self, url, _client=None):
 
44
        Transport.__init__(self, url)
 
45
        (scheme, _, loc, _, _) = urlparse.urlsplit(url)
 
46
        assert scheme == "git"
 
47
        hostport, self._path = urllib.splithost(loc)
 
48
        (self._host, self._port) = urllib.splitnport(hostport, git.protocol.TCP_GIT_PORT)
 
49
        self._client = _client
 
50
 
 
51
    def _get_client(self):
 
52
        if self._client is not None:
 
53
            ret = self._client
 
54
            self._client = None
 
55
            return ret
 
56
        return git.client.TCPGitClient(self._host, self._port)
 
57
 
 
58
    def fetch_pack(self, determine_wants, graph_walker, pack_data, progress=None):
 
59
        if progress is None:
 
60
            def progress(text):
 
61
                info("git: %s" % text)
 
62
        self._get_client().fetch_pack(self._path, determine_wants, 
 
63
            graph_walker, pack_data, progress)
 
64
 
 
65
    def get(self, path):
 
66
        raise NoSuchFile(path)
 
67
 
 
68
    def abspath(self, relpath):
 
69
        return urlutils.join(self.base, relpath)
 
70
 
 
71
    def clone(self, offset=None):
 
72
        """See Transport.clone()."""
 
73
        if offset is None:
 
74
            newurl = self.base
 
75
        else:
 
76
            newurl = urlutils.join(self.base, offset)
 
77
 
 
78
        return GitSmartTransport(newurl, self._client)
 
79
 
 
80
 
 
81
class RemoteGitDir(GitDir):
 
82
 
 
83
    def __init__(self, transport, lockfiles, format):
 
84
        self._format = format
 
85
        self.root_transport = transport
 
86
        self.transport = transport
 
87
        self._lockfiles = lockfiles
 
88
 
 
89
    def open_repository(self):
 
90
        return RemoteGitRepository(self, self._lockfiles)
 
91
 
 
92
    def open_branch(self):
 
93
        repo = self.open_repository()
 
94
        # TODO: Support for multiple branches in one bzrdir in bzrlib!
 
95
        return RemoteGitBranch(self, repo, "HEAD", self._lockfiles)
 
96
 
 
97
    def open_workingtree(self):
 
98
        raise NotLocalUrl(self.transport.base)
 
99
 
 
100
 
 
101
class RemoteGitRepository(GitRepository):
 
102
 
 
103
    def __init__(self, gitdir, lockfiles):
 
104
        GitRepository.__init__(self, gitdir, lockfiles)
 
105
 
 
106
    def fetch_pack(self, determine_wants, graph_walker, pack_data, 
 
107
                   progress=None):
 
108
        self._transport.fetch_pack(determine_wants, graph_walker, pack_data, 
 
109
            progress)
 
110
 
 
111
    def fetch_objects(self, determine_wants, graph_walker, progress=None):
 
112
        fd, path = tempfile.mkstemp(suffix=".pack")
 
113
        self.fetch_pack(determine_wants, graph_walker, lambda x: os.write(fd, x), progress)
 
114
        os.close(fd)
 
115
        try:
 
116
            basename = path[:-len(".pack")]
 
117
            p = PackData(path)
 
118
            p.create_index_v2(basename+".idx")
 
119
            for o in Pack(basename).iterobjects():
 
120
                yield o
 
121
        finally:
 
122
            os.remove(path)
 
123
 
 
124
 
 
125
class RemoteGitBranch(GitBranch):
 
126
 
 
127
    def __init__(self, bzrdir, repository, name, lockfiles):
 
128
        def determine_wants(heads):
 
129
            if not name in heads:
 
130
                raise NoSuchRef(name)
 
131
            self._ref = heads[name]
 
132
        bzrdir.root_transport.fetch_pack(determine_wants, None, lambda x: None, 
 
133
                             lambda x: mutter("git: %s" % x))
 
134
        super(RemoteGitBranch, self).__init__(bzrdir, repository, name, self._ref, lockfiles)
 
135
 
 
136
    def last_revision(self):
 
137
        return self.mapping.revision_id_foreign_to_bzr(self._ref)
 
138
 
 
139
    def _synchronize_history(self, destination, revision_id):
 
140
        """See Branch._synchronize_history()."""
 
141
        destination.generate_revision_history(self.last_revision())
 
142