14
18
# You should have received a copy of the GNU General Public License
15
19
# along with this program; if not, write to the Free Software
16
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19
23
"""A GIT branch and repository format implementation for bzr."""
25
sys.path.insert(0, os.path.join(os.path.dirname(__file__), "dulwich"))
27
from bzrlib import bzrdir
28
from bzrlib.foreign import ForeignVcs, VcsMappingRegistry, foreign_vcs_registry
29
from bzrlib.plugins.git.dir import LocalGitBzrDirFormat, RemoteGitBzrDirFormat
30
from bzrlib.transport import register_lazy_transport
32
bzrdir.format_registry.register(
33
'git', LocalGitBzrDirFormat,
34
help='GIT repository.',
35
native=False, experimental=True,
38
bzrdir.BzrDirFormat.register_control_format(LocalGitBzrDirFormat)
39
bzrdir.BzrDirFormat.register_control_format(RemoteGitBzrDirFormat)
41
register_lazy_transport("git://", 'bzrlib.plugins.git.remote',
45
class ForeignGit(ForeignVcs):
49
git_mapping_registry = VcsMappingRegistry()
50
git_mapping_registry.register_lazy('git-experimental', "bzrlib.plugins.git.mapping",
51
"BzrGitMappingExperimental")
52
foreign_vcs_registry.register("git", ForeignGit(git_mapping_registry),
53
"Stupid content tracker")
28
dulwich_minimum_version = (0, 19, 11)
30
from .. import ( # noqa: F401
31
__version__ as breezy_version,
38
from ..controldir import (
42
network_format_registry as controldir_network_format_registry,
45
from ..transport import (
46
register_lazy_transport,
47
register_transport_proto,
48
transport_server_registry,
50
from ..commands import (
55
if getattr(sys, "frozen", None):
56
# allow import additional libs from ./_lib for bzr.exe only
57
sys.path.append(os.path.normpath(
58
os.path.join(os.path.dirname(__file__), '_lib')))
63
from dulwich import __version__ as dulwich_version
65
raise brz_errors.DependencyNotPresent(
67
"bzr-git: Please install dulwich, https://www.dulwich.io/")
69
if dulwich_version < dulwich_minimum_version:
70
raise brz_errors.DependencyNotPresent(
72
"bzr-git: Dulwich is too old; at least %d.%d.%d is required" %
73
dulwich_minimum_version)
76
_versions_checked = False
79
def lazy_check_versions():
80
global _versions_checked
84
_versions_checked = True
87
format_registry.register_lazy(
88
'git', __name__ + ".dir", "LocalGitControlDirFormat",
89
help='GIT repository.', native=False, experimental=False)
91
format_registry.register_lazy(
92
'git-bare', __name__ + ".dir", "BareLocalGitControlDirFormat",
93
help='Bare GIT repository (no working tree).', native=False,
96
from ..revisionspec import (RevisionSpec_dwim, revspec_registry)
97
revspec_registry.register_lazy("git:", __name__ + ".revspec",
99
RevisionSpec_dwim.append_possible_lazy_revspec(
100
__name__ + ".revspec", "RevisionSpec_git")
103
class LocalGitProber(Prober):
106
def priority(klass, transport):
109
def probe_transport(self, transport):
111
external_url = transport.external_url()
112
except brz_errors.InProcessTransport:
113
raise brz_errors.NotBranchError(path=transport.base)
114
if (external_url.startswith("http:") or
115
external_url.startswith("https:")):
116
# Already handled by RemoteGitProber
117
raise brz_errors.NotBranchError(path=transport.base)
118
if urlutils.split(transport.base)[1] == ".git":
119
raise brz_errors.NotBranchError(path=transport.base)
120
if not transport.has_any(['objects', '.git/objects', '.git']):
121
raise brz_errors.NotBranchError(path=transport.base)
122
lazy_check_versions()
124
BareLocalGitControlDirFormat,
125
LocalGitControlDirFormat,
127
if transport.has_any(['.git/objects', '.git']):
128
return LocalGitControlDirFormat()
129
if transport.has('info') and transport.has('objects'):
130
return BareLocalGitControlDirFormat()
131
raise brz_errors.NotBranchError(path=transport.base)
134
def known_formats(cls):
136
BareLocalGitControlDirFormat,
137
LocalGitControlDirFormat,
139
return [BareLocalGitControlDirFormat(), LocalGitControlDirFormat()]
142
def user_agent_for_github():
143
# GitHub requires we lie. https://github.com/dulwich/dulwich/issues/562
144
return "git/Breezy/%s" % breezy_version
147
def is_github_url(url):
148
(scheme, user, password, host, port,
149
path) = urlutils.parse_url(url)
150
return host in ("github.com", "gopkg.in")
153
class RemoteGitProber(Prober):
156
def priority(klass, transport):
157
# This is a surprisingly good heuristic to determine whether this
158
# prober is more likely to succeed than the Bazaar one.
159
if 'git' in transport.base:
163
def probe_http_transport(self, transport):
164
# This function intentionally doesn't use any of the support code under
165
# breezy.git, since it's called for every repository that's
166
# accessed over HTTP, whether it's Git, Bzr or something else.
167
# Importing Dulwich and the other support code adds unnecessray slowdowns.
168
base_url = urlutils.strip_segment_parameters(transport.external_url())
169
url = urlutils.URL.from_string(base_url)
170
url.user = url.quoted_user = None
171
url.password = url.quoted_password = None
173
url = urlutils.join(str(url), "info/refs") + "?service=git-upload-pack"
174
headers = {"Content-Type": "application/x-git-upload-pack-request",
175
"Accept": "application/x-git-upload-pack-result",
177
if is_github_url(url):
178
# GitHub requires we lie.
179
# https://github.com/dulwich/dulwich/issues/562
180
headers["User-Agent"] = user_agent_for_github()
181
resp = transport.request('GET', url, headers=headers)
182
if resp.status in (404, 405):
183
raise brz_errors.NotBranchError(transport.base)
184
elif resp.status == 400 and resp.reason == 'no such method: info':
186
raise brz_errors.NotBranchError(transport.base)
187
elif resp.status != 200:
188
raise brz_errors.UnexpectedHttpStatus(url, resp.status)
190
ct = resp.getheader("Content-Type")
191
if ct and ct.startswith("application/x-git"):
192
from .remote import RemoteGitControlDirFormat
193
return RemoteGitControlDirFormat()
196
BareLocalGitControlDirFormat,
198
ret = BareLocalGitControlDirFormat()
199
ret._refs_text = resp.read()
201
raise brz_errors.NotBranchError(transport.base)
203
def probe_transport(self, transport):
205
external_url = transport.external_url()
206
except brz_errors.InProcessTransport:
207
raise brz_errors.NotBranchError(path=transport.base)
209
if (external_url.startswith("http:") or
210
external_url.startswith("https:")):
211
return self.probe_http_transport(transport)
213
if (not external_url.startswith("git://") and
214
not external_url.startswith("git+")):
215
raise brz_errors.NotBranchError(transport.base)
217
# little ugly, but works
218
from .remote import (
220
RemoteGitControlDirFormat,
222
if isinstance(transport, GitSmartTransport):
223
return RemoteGitControlDirFormat()
224
raise brz_errors.NotBranchError(path=transport.base)
227
def known_formats(cls):
228
from .remote import RemoteGitControlDirFormat
229
return [RemoteGitControlDirFormat()]
232
ControlDirFormat.register_prober(LocalGitProber)
233
ControlDirFormat.register_prober(RemoteGitProber)
235
register_transport_proto(
236
'git://', help="Access using the Git smart server protocol.")
237
register_transport_proto(
239
help="Access using the Git smart server protocol over SSH.")
241
register_lazy_transport("git://", __name__ + '.remote',
242
'TCPGitSmartTransport')
243
register_lazy_transport("git+ssh://", __name__ + '.remote',
244
'SSHGitSmartTransport')
247
plugin_cmds.register_lazy("cmd_git_import", [], __name__ + ".commands")
248
plugin_cmds.register_lazy("cmd_git_object", ["git-objects", "git-cat"],
249
__name__ + ".commands")
250
plugin_cmds.register_lazy("cmd_git_refs", [], __name__ + ".commands")
251
plugin_cmds.register_lazy("cmd_git_apply", [], __name__ + ".commands")
252
plugin_cmds.register_lazy("cmd_git_push_pristine_tar_deltas",
253
['git-push-pristine-tar', 'git-push-pristine'],
254
__name__ + ".commands")
257
def extract_git_foreign_revid(rev):
259
foreign_revid = rev.foreign_revid
260
except AttributeError:
261
from .mapping import mapping_registry
262
foreign_revid, mapping = \
263
mapping_registry.parse_revision_id(rev.revision_id)
266
from .mapping import foreign_vcs_git
267
if rev.mapping.vcs == foreign_vcs_git:
270
raise brz_errors.InvalidRevisionId(rev.revision_id, None)
273
def update_stanza(rev, stanza):
275
git_commit = extract_git_foreign_revid(rev)
276
except brz_errors.InvalidRevisionId:
279
stanza.add("git-commit", git_commit)
282
from ..hooks import install_lazy_named_hook
283
install_lazy_named_hook(
284
"breezy.version_info_formats.format_rio",
285
"RioVersionInfoBuilder.hooks", "revision", update_stanza,
288
transport_server_registry.register_lazy(
289
'git', __name__ + '.server', 'serve_git',
290
'Git Smart server protocol over TCP. (default port: 9418)')
292
transport_server_registry.register_lazy(
293
'git-receive-pack', __name__ + '.server',
294
'serve_git_receive_pack',
295
help='Git Smart server receive pack command. (inetd mode only)')
296
transport_server_registry.register_lazy(
297
'git-upload-pack', __name__ + 'git.server',
298
'serve_git_upload_pack',
299
help='Git Smart server upload pack command. (inetd mode only)')
301
from ..repository import (
302
format_registry as repository_format_registry,
303
network_format_registry as repository_network_format_registry,
305
repository_network_format_registry.register_lazy(
306
b'git', __name__ + '.repository', 'GitRepositoryFormat')
308
register_extra_lazy_repository_format = getattr(repository_format_registry,
309
"register_extra_lazy")
310
register_extra_lazy_repository_format(__name__ + '.repository',
311
'GitRepositoryFormat')
313
from ..branch import (
314
network_format_registry as branch_network_format_registry,
316
branch_network_format_registry.register_lazy(
317
b'git', __name__ + '.branch', 'LocalGitBranchFormat')
320
from ..branch import (
321
format_registry as branch_format_registry,
323
branch_format_registry.register_extra_lazy(
324
__name__ + '.branch',
325
'LocalGitBranchFormat',
327
branch_format_registry.register_extra_lazy(
328
__name__ + '.remote',
329
'RemoteGitBranchFormat',
333
from ..workingtree import (
334
format_registry as workingtree_format_registry,
336
workingtree_format_registry.register_extra_lazy(
337
__name__ + '.workingtree',
338
'GitWorkingTreeFormat',
341
controldir_network_format_registry.register_lazy(
342
b'git', __name__ + ".dir", "GitControlDirFormat")
345
from ..diff import format_registry as diff_format_registry
346
diff_format_registry.register_lazy(
347
'git', __name__ + '.send',
348
'GitDiffTree', 'Git am-style diff format')
351
format_registry as send_format_registry,
353
send_format_registry.register_lazy('git', __name__ + '.send',
354
'send_git', 'Git am-style diff format')
356
from ..directory_service import directories
357
directories.register_lazy('github:', __name__ + '.directory',
360
directories.register_lazy('git@github.com:', __name__ + '.directory',
364
from ..help_topics import (
367
topic_registry.register_lazy(
368
'git', __name__ + '.help', 'help_git', 'Using Bazaar with Git')
370
from ..foreign import (
371
foreign_vcs_registry,
373
foreign_vcs_registry.register_lazy(
374
"git", __name__ + ".mapping", "foreign_vcs_git", "Stupid content tracker")
377
def update_git_cache(repository, revid):
378
"""Update the git cache after a local commit."""
379
if getattr(repository, "_git", None) is not None:
380
return # No need to update cache for git repositories
382
if not repository.control_transport.has("git"):
383
return # No existing cache, don't bother updating
385
lazy_check_versions()
386
except brz_errors.DependencyNotPresent as e:
387
# dulwich is probably missing. silently ignore
388
trace.mutter("not updating git map for %r: %s",
391
from .object_store import BazaarObjectStore
392
store = BazaarObjectStore(repository)
393
with store.lock_write():
395
parent_revisions = set(repository.get_parent_map([revid])[revid])
397
# Isn't this a bit odd - how can a revision that was just committed
400
missing_revisions = store._missing_revisions(parent_revisions)
401
if not missing_revisions:
402
store._cache.idmap.start_write_group()
404
# Only update if the cache was up to date previously
405
store._update_sha_map_revision(revid)
406
except BaseException:
407
store._cache.idmap.abort_write_group()
410
store._cache.idmap.commit_write_group()
413
def post_commit_update_cache(local_branch, master_branch, old_revno, old_revid,
414
new_revno, new_revid):
415
if local_branch is not None:
416
update_git_cache(local_branch.repository, new_revid)
417
update_git_cache(master_branch.repository, new_revid)
420
def loggerhead_git_hook(branch_app, environ):
421
branch = branch_app.branch
422
config_stack = branch.get_config_stack()
423
if not config_stack.get('git.http'):
425
from .server import git_http_hook
426
return git_http_hook(branch, environ['REQUEST_METHOD'],
427
environ['PATH_INFO'])
430
install_lazy_named_hook("breezy.branch",
431
"Branch.hooks", "post_commit",
432
post_commit_update_cache, "git cache")
433
install_lazy_named_hook("breezy.plugins.loggerhead.apps.branch",
434
"BranchWSGIApp.hooks", "controller",
435
loggerhead_git_hook, "git support")
438
from ..config import (
444
option_registry.register(
446
default=None, from_unicode=bool_from_store, invalid='warning',
448
Allow fetching of Git packs over HTTP.
450
This enables support for fetching Git packs over HTTP in Loggerhead.
57
from bzrlib.plugins.git import tests
58
456
return tests.test_suite()