1
# Copyright (C) 2007-2008 Canonical Ltd
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.
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.
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
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
26
from bzrlib.plugins.git.branch import GitBranch
27
from bzrlib.plugins.git.errors import NoSuchRef
28
from bzrlib.plugins.git.dir import GitDir
29
from bzrlib.plugins.git.foreign import ForeignBranch
30
from bzrlib.plugins.git.repository import GitFormat, GitRepository
38
from dulwich.pack import PackData, Pack
40
# Don't run any tests on GitSmartTransport as it is not intended to be
41
# a full implementation of Transport
42
def get_test_permutations():
46
class GitSmartTransport(Transport):
48
def __init__(self, url, _client=None):
49
Transport.__init__(self, url)
50
(scheme, _, loc, _, _) = urlparse.urlsplit(url)
51
assert scheme == "git"
52
hostport, self._path = urllib.splithost(loc)
53
(self._host, self._port) = urllib.splitnport(hostport, git.protocol.TCP_GIT_PORT)
54
self._client = _client
56
def _get_client(self):
57
if self._client is not None:
61
return git.client.TCPGitClient(self._host, self._port)
63
def fetch_pack(self, determine_wants, graph_walker, pack_data, progress=None):
66
info("git: %s" % text)
67
self._get_client().fetch_pack(self._path, determine_wants,
68
graph_walker, pack_data, progress)
71
raise NoSuchFile(path)
73
def abspath(self, relpath):
74
return urlutils.join(self.base, relpath)
76
def clone(self, offset=None):
77
"""See Transport.clone()."""
81
newurl = urlutils.join(self.base, offset)
83
return GitSmartTransport(newurl, self._client)
86
class RemoteGitDir(GitDir):
88
def __init__(self, transport, lockfiles, format):
90
self.root_transport = transport
91
self.transport = transport
92
self._lockfiles = lockfiles
94
def open_repository(self):
95
return RemoteGitRepository(self, self._lockfiles)
97
def open_branch(self, _unsupported=False):
98
repo = self.open_repository()
99
# TODO: Support for multiple branches in one bzrdir in bzrlib!
100
return RemoteGitBranch(self, repo, "HEAD", self._lockfiles)
102
def open_workingtree(self):
103
raise NotLocalUrl(self.transport.base)
106
class RemoteGitRepository(GitRepository):
108
def __init__(self, gitdir, lockfiles):
109
GitRepository.__init__(self, gitdir, lockfiles)
111
def fetch_pack(self, determine_wants, graph_walker, pack_data,
113
self._transport.fetch_pack(determine_wants, graph_walker, pack_data,
116
def fetch_objects(self, determine_wants, graph_walker, progress=None):
117
fd, path = tempfile.mkstemp(suffix=".pack")
118
self.fetch_pack(determine_wants, graph_walker, lambda x: os.write(fd, x), progress)
120
basename = path[:-len(".pack")]
122
p.create_index_v2(basename+".idx")
123
pack = Pack(basename)
125
return (len(p), pack.iterobjects())
128
class RemoteGitBranch(GitBranch):
130
def __init__(self, bzrdir, repository, name, lockfiles):
131
def determine_wants(heads):
132
if not name in heads:
133
raise NoSuchRef(name)
134
self._ref = heads[name]
135
bzrdir.root_transport.fetch_pack(determine_wants, None, lambda x: None,
136
lambda x: mutter("git: %s" % x))
137
super(RemoteGitBranch, self).__init__(bzrdir, repository, name, self._ref, lockfiles)
139
def last_revision(self):
140
return self.mapping.revision_id_foreign_to_bzr(self._ref)
142
def _synchronize_history(self, destination, revision_id):
143
"""See Branch._synchronize_history()."""
144
destination.generate_revision_history(self.last_revision())