/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
0.200.235 by Jelmer Vernooij
Depend on newer dulwich.
1
# Copyright (C) 2006-2009 Canonical Ltd
0.200.201 by Jelmer Vernooij
Try to import nothing other than __init__ when not opening git repositories.
2
0.200.1 by Robert Collins
Commit initial content.
3
# Authors: Robert Collins <robert.collins@canonical.com>
0.200.184 by Jelmer Vernooij
Update authors: line.
4
#          Jelmer Vernooij <jelmer@samba.org>
5
#          John Carr <john.carr@unrouted.co.uk>
0.200.1 by Robert Collins
Commit initial content.
6
#
7
# This program is free software; you can redistribute it and/or modify
8
# it under the terms of the GNU General Public License as published by
9
# the Free Software Foundation; either version 2 of the License, or
10
# (at your option) any later version.
11
#
12
# This program is distributed in the hope that it will be useful,
13
# but WITHOUT ANY WARRANTY; without even the implied warranty of
14
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
# GNU General Public License for more details.
16
#
17
# You should have received a copy of the GNU General Public License
18
# along with this program; if not, write to the Free Software
19
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20
21
22
"""A GIT branch and repository format implementation for bzr."""
23
0.224.1 by Alexander Belchenko
bzr.exe support: allow import of dulwich from _lib subdirectory
24
import os
25
import sys
26
0.200.199 by Jelmer Vernooij
Check for bzrlib API version.
27
import bzrlib
28
import bzrlib.api
0.200.519 by Jelmer Vernooij
Move imports down, might not be available in older bzr-git versions.
29
0.200.587 by Jelmer Vernooij
Put plugin info in separate file.
30
from info import (
0.200.583 by Jelmer Vernooij
Add plugin api info.
31
    bzr_compatible_versions,
32
    bzr_plugin_version as version_info,
33
    dulwich_minimum_version,
34
    )
0.200.519 by Jelmer Vernooij
Move imports down, might not be available in older bzr-git versions.
35
36
if version_info[3] == 'final':
37
    version_string = '%d.%d.%d' % version_info[:3]
38
else:
39
    version_string = '%d.%d.%d%s%d' % version_info
40
__version__ = version_string
41
0.200.583 by Jelmer Vernooij
Add plugin api info.
42
bzrlib.api.require_any_api(bzrlib, bzr_compatible_versions)
0.200.519 by Jelmer Vernooij
Move imports down, might not be available in older bzr-git versions.
43
44
0.200.292 by Jelmer Vernooij
Fix formatting.
45
from bzrlib import (
46
    errors as bzr_errors,
47
    )
0.200.1111 by Jelmer Vernooij
Drop support for Bazaar < 2.3.
48
49
from bzrlib.controldir import (
50
    ControlDirFormat,
51
    Prober,
52
    format_registry,
0.200.1137 by Jelmer Vernooij
Support BzrProber.known_formats().
53
    network_format_registry as controldir_network_format_registry,
0.200.1111 by Jelmer Vernooij
Drop support for Bazaar < 2.3.
54
    )
0.200.1012 by Jelmer Vernooij
Rename BzrDir to ControlDir.
55
0.200.292 by Jelmer Vernooij
Fix formatting.
56
from bzrlib.foreign import (
57
    foreign_vcs_registry,
58
    )
0.200.1011 by Jelmer Vernooij
Add some basic documentation in 'bzr help git'.
59
from bzrlib.help_topics import (
60
    topic_registry,
61
    )
0.200.292 by Jelmer Vernooij
Fix formatting.
62
from bzrlib.transport import (
63
    register_lazy_transport,
0.200.308 by Jelmer Vernooij
Register git protocols.
64
    register_transport_proto,
0.200.292 by Jelmer Vernooij
Fix formatting.
65
    )
66
from bzrlib.commands import (
67
    plugin_cmds,
68
    )
0.238.1 by Lukas Lalinsky, Jelmer Vernooij
Import initial work on 'bzr send --format=git' based on luks' patch for bzr-svn.
69
from bzrlib.send import (
70
    format_registry as send_format_registry,
0.200.292 by Jelmer Vernooij
Fix formatting.
71
    )
0.200.341 by Jelmer Vernooij
Add stanza with git commit info in 'bzr version-info'
72
0.200.192 by Jelmer Vernooij
use system-provided dulwich, remove own copy.
73
0.224.1 by Alexander Belchenko
bzr.exe support: allow import of dulwich from _lib subdirectory
74
if getattr(sys, "frozen", None):
75
    # allow import additional libs from ./_lib for bzr.exe only
0.200.926 by Jelmer Vernooij
Fix formatting, drop support for Bazaar < 2.0.
76
    sys.path.append(os.path.normpath(
77
        os.path.join(os.path.dirname(__file__), '_lib')))
0.224.1 by Alexander Belchenko
bzr.exe support: allow import of dulwich from _lib subdirectory
78
0.200.987 by Jelmer Vernooij
Add DulwichFeature.
79
80
def import_dulwich():
0.200.200 by Jelmer Vernooij
Register lazily where possible.
81
    try:
82
        from dulwich import __version__ as dulwich_version
83
    except ImportError:
0.200.695 by Jelmer Vernooij
Clean up trailing whitespace.
84
        raise bzr_errors.DependencyNotPresent("dulwich",
85
            "bzr-git: Please install dulwich, https://launchpad.net/dulwich")
0.200.200 by Jelmer Vernooij
Register lazily where possible.
86
    else:
0.200.583 by Jelmer Vernooij
Add plugin api info.
87
        if dulwich_version < dulwich_minimum_version:
0.200.926 by Jelmer Vernooij
Fix formatting, drop support for Bazaar < 2.0.
88
            raise bzr_errors.DependencyNotPresent("dulwich",
89
                "bzr-git: Dulwich is too old; at least %d.%d.%d is required" %
90
                    dulwich_minimum_version)
0.200.199 by Jelmer Vernooij
Check for bzrlib API version.
91
0.200.987 by Jelmer Vernooij
Add DulwichFeature.
92
93
_versions_checked = False
94
def lazy_check_versions():
95
    global _versions_checked
96
    if _versions_checked:
97
        return
98
    import_dulwich()
99
    _versions_checked = True
100
0.200.1012 by Jelmer Vernooij
Rename BzrDir to ControlDir.
101
format_registry.register_lazy('git',
0.200.1141 by Jelmer Vernooij
Use transports in git-import.
102
    "bzrlib.plugins.git.dir", "LocalGitControlDirFormat",
0.200.1018 by Jelmer Vernooij
Fix use with new control dir API.
103
    help='GIT repository.', native=False, experimental=False,
0.200.200 by Jelmer Vernooij
Register lazily where possible.
104
    )
0.200.204 by Jelmer Vernooij
Support bzr 1.11.
105
0.200.1032 by Jelmer Vernooij
Support bare repositories.
106
format_registry.register_lazy('git-bare',
0.200.1141 by Jelmer Vernooij
Use transports in git-import.
107
    "bzrlib.plugins.git.dir", "BareLocalGitControlDirFormat",
0.200.1032 by Jelmer Vernooij
Support bare repositories.
108
    help='Bare GIT repository (no working tree).', native=False,
109
    experimental=False,
110
    )
111
0.200.292 by Jelmer Vernooij
Fix formatting.
112
from bzrlib.revisionspec import revspec_registry
0.200.674 by Jelmer Vernooij
Fix formatting.
113
revspec_registry.register_lazy("git:", "bzrlib.plugins.git.revspec",
0.200.292 by Jelmer Vernooij
Fix formatting.
114
    "RevisionSpec_git")
0.200.200 by Jelmer Vernooij
Register lazily where possible.
115
0.200.1111 by Jelmer Vernooij
Drop support for Bazaar < 2.3.
116
from bzrlib.revisionspec import dwim_revspecs, RevisionSpec_dwim
117
if getattr(RevisionSpec_dwim, "append_possible_lazy_revspec", None):
118
    RevisionSpec_dwim.append_possible_lazy_revspec(
119
        "bzrlib.plugins.git.revspec", "RevisionSpec_git")
120
else: # bzr < 2.4
121
    from bzrlib.plugins.git.revspec import RevisionSpec_git
122
    dwim_revspecs.append(RevisionSpec_git)
0.200.645 by Jelmer Vernooij
Support DWIM git: revspecs.
123
0.200.328 by Jelmer Vernooij
Support stacking, depend on bzr 1.15.
124
0.200.1014 by Jelmer Vernooij
Fix tests.
125
class LocalGitProber(Prober):
126
127
    def probe_transport(self, transport):
0.200.720 by Jelmer Vernooij
Avoid loading bzr-git/dulwich when not necessary.
128
        try:
0.200.926 by Jelmer Vernooij
Fix formatting, drop support for Bazaar < 2.0.
129
            if not transport.has_any(['info/refs', '.git/branches',
130
                                      'branches']):
0.200.720 by Jelmer Vernooij
Avoid loading bzr-git/dulwich when not necessary.
131
                raise bzr_errors.NotBranchError(path=transport.base)
132
        except bzr_errors.NoSuchFile:
133
            raise bzr_errors.NotBranchError(path=transport.base)
0.200.730 by Jelmer Vernooij
Don't claim control directories can be accessed directly, always open the
134
        from bzrlib import urlutils
135
        if urlutils.split(transport.base)[1] == ".git":
136
            raise bzr_errors.NotBranchError(path=transport.base)
0.239.13 by Jelmer Vernooij
Don't break "bzr info -v" when Dulwich is not installed.
137
        lazy_check_versions()
0.200.580 by Jelmer Vernooij
Remove 'as git' imports.
138
        import dulwich
0.200.1032 by Jelmer Vernooij
Support bare repositories.
139
        from bzrlib.plugins.git.transportgit import TransportRepo
0.200.201 by Jelmer Vernooij
Try to import nothing other than __init__ when not opening git repositories.
140
        try:
0.200.1032 by Jelmer Vernooij
Support bare repositories.
141
            gitrepo = TransportRepo(transport)
0.200.580 by Jelmer Vernooij
Remove 'as git' imports.
142
        except dulwich.errors.NotGitRepository, e:
0.200.203 by Jelmer Vernooij
Fix imports.
143
            raise bzr_errors.NotBranchError(path=transport.base)
0.200.1032 by Jelmer Vernooij
Support bare repositories.
144
        else:
0.200.1137 by Jelmer Vernooij
Support BzrProber.known_formats().
145
            from bzrlib.plugins.git.dir import (
146
                BareLocalGitControlDirFormat,
147
                LocalGitControlDirFormat,
148
                )
0.200.1032 by Jelmer Vernooij
Support bare repositories.
149
            if gitrepo.bare:
150
                return BareLocalGitControlDirFormat()
151
            else:
152
                return LocalGitControlDirFormat()
0.200.201 by Jelmer Vernooij
Try to import nothing other than __init__ when not opening git repositories.
153
0.200.1139 by Jelmer Vernooij
Prober.known_formats is a class method.
154
    @classmethod
155
    def known_formats(cls):
0.200.1137 by Jelmer Vernooij
Support BzrProber.known_formats().
156
        from bzrlib.plugins.git.dir import (
157
            BareLocalGitControlDirFormat,
158
            LocalGitControlDirFormat,
159
            )
160
        return set([BareLocalGitControlDirFormat(), LocalGitControlDirFormat()])
0.200.1032 by Jelmer Vernooij
Support bare repositories.
161
162
0.200.1014 by Jelmer Vernooij
Fix tests.
163
class RemoteGitProber(Prober):
164
165
    def probe_transport(self, transport):
166
        url = transport.base
167
        if url.startswith('readonly+'):
168
            url = url[len('readonly+'):]
169
        if (not url.startswith("git://") and not url.startswith("git+")):
170
            raise bzr_errors.NotBranchError(transport.base)
171
        # little ugly, but works
0.200.1137 by Jelmer Vernooij
Support BzrProber.known_formats().
172
        from bzrlib.plugins.git.remote import (
173
            GitSmartTransport,
174
            RemoteGitControlDirFormat,
175
            )
0.200.1014 by Jelmer Vernooij
Fix tests.
176
        if not isinstance(transport, GitSmartTransport):
177
            raise bzr_errors.NotBranchError(transport.base)
0.200.1034 by Jelmer Vernooij
Mark bare repositories as not supporting working trees for the purpose of the testsuite.
178
        return RemoteGitControlDirFormat()
0.200.1014 by Jelmer Vernooij
Fix tests.
179
0.200.201 by Jelmer Vernooij
Try to import nothing other than __init__ when not opening git repositories.
180
    @classmethod
0.200.1139 by Jelmer Vernooij
Prober.known_formats is a class method.
181
    def known_formats(cls):
0.200.1137 by Jelmer Vernooij
Support BzrProber.known_formats().
182
        from bzrlib.plugins.git.remote import RemoteGitControlDirFormat
0.200.1012 by Jelmer Vernooij
Rename BzrDir to ControlDir.
183
        return set([RemoteGitControlDirFormat()])
0.200.201 by Jelmer Vernooij
Try to import nothing other than __init__ when not opening git repositories.
184
0.200.1137 by Jelmer Vernooij
Support BzrProber.known_formats().
185
0.200.1138 by Jelmer Vernooij
Support new Prober.known_formats() API.
186
if not getattr(Prober, "known_formats", None): # bzr < 2.4
0.200.1137 by Jelmer Vernooij
Support BzrProber.known_formats().
187
    from bzrlib.plugins.git.dir import (
188
        LocalGitControlDirFormat, BareLocalGitControlDirFormat,
189
        )
190
    from bzrlib.plugins.git.remote import RemoteGitControlDirFormat
191
    ControlDirFormat.register_format(LocalGitControlDirFormat())
192
    ControlDirFormat.register_format(BareLocalGitControlDirFormat())
193
    ControlDirFormat.register_format(RemoteGitControlDirFormat())
0.200.1111 by Jelmer Vernooij
Drop support for Bazaar < 2.3.
194
ControlDirFormat.register_prober(LocalGitProber)
195
ControlDirFormat.register_prober(RemoteGitProber)
0.200.138 by Jelmer Vernooij
Add initial infrastructure for accessing remote git repositories.
196
0.200.674 by Jelmer Vernooij
Fix formatting.
197
register_transport_proto('git://',
0.200.308 by Jelmer Vernooij
Register git protocols.
198
        help="Access using the Git smart server protocol.")
0.200.674 by Jelmer Vernooij
Fix formatting.
199
register_transport_proto('git+ssh://',
0.200.308 by Jelmer Vernooij
Register git protocols.
200
        help="Access using the Git smart server protocol over SSH.")
201
0.200.138 by Jelmer Vernooij
Add initial infrastructure for accessing remote git repositories.
202
register_lazy_transport("git://", 'bzrlib.plugins.git.remote',
0.200.307 by Jelmer Vernooij
Support git+ssh.
203
                        'TCPGitSmartTransport')
204
register_lazy_transport("git+ssh://", 'bzrlib.plugins.git.remote',
205
                        'SSHGitSmartTransport')
0.200.19 by John Arbash Meinel
More refactoring. Add some direct tests for GitModel.
206
0.200.674 by Jelmer Vernooij
Fix formatting.
207
foreign_vcs_registry.register_lazy("git",
0.200.328 by Jelmer Vernooij
Support stacking, depend on bzr 1.15.
208
    "bzrlib.plugins.git.mapping", "foreign_git", "Stupid content tracker")
0.208.5 by Jelmer Vernooij
Add log show function for git.
209
0.200.206 by Jelmer Vernooij
Move commands to a separate python module and register them lazily.
210
plugin_cmds.register_lazy("cmd_git_import", [], "bzrlib.plugins.git.commands")
0.200.674 by Jelmer Vernooij
Fix formatting.
211
plugin_cmds.register_lazy("cmd_git_object", ["git-objects", "git-cat"],
0.200.422 by Jelmer Vernooij
'bzr git-object' without arguments now prints the available git objects.
212
    "bzrlib.plugins.git.commands")
0.200.873 by Jelmer Vernooij
Add convenience command for accessing virtual git refs.
213
plugin_cmds.register_lazy("cmd_git_refs", [], "bzrlib.plugins.git.commands")
0.200.895 by Jelmer Vernooij
Add initial work on git-apply.
214
plugin_cmds.register_lazy("cmd_git_apply", [], "bzrlib.plugins.git.commands")
0.200.177 by Jelmer Vernooij
Add git-import command.
215
0.200.341 by Jelmer Vernooij
Add stanza with git commit info in 'bzr version-info'
216
def update_stanza(rev, stanza):
217
    mapping = getattr(rev, "mapping", None)
218
    if mapping is not None and mapping.revid_prefix.startswith("git-"):
219
        stanza.add("git-commit", rev.foreign_revid)
220
0.200.1088 by Jelmer Vernooij
When possible, lazily load hook points from version_info_format.format_rio.
221
try:
222
    from bzrlib.hooks import install_lazy_named_hook
223
except ImportError: # Compatibility with bzr < 2.4
224
    from bzrlib.version_info_formats.format_rio import (
225
        RioVersionInfoBuilder,
226
        )
0.200.1137 by Jelmer Vernooij
Support BzrProber.known_formats().
227
    RioVersionInfoBuilder.hooks.install_named_hook('revision', update_stanza,
0.200.1088 by Jelmer Vernooij
When possible, lazily load hook points from version_info_format.format_rio.
228
        "git commits")
229
else:
230
    install_lazy_named_hook("bzrlib.version_info_formats.format_rio",
231
        "RioVersionInfoBuilder.hooks", "revision", update_stanza,
232
        "git commits")
0.200.341 by Jelmer Vernooij
Add stanza with git commit info in 'bzr version-info'
233
0.200.531 by Jelmer Vernooij
Support 'bzr serve --git'.
234
0.239.6 by Jelmer Vernooij
Remove pre-1.15 incompatible code.
235
from bzrlib.transport import transport_server_registry
236
transport_server_registry.register_lazy('git',
0.200.674 by Jelmer Vernooij
Fix formatting.
237
    'bzrlib.plugins.git.server',
0.239.6 by Jelmer Vernooij
Remove pre-1.15 incompatible code.
238
    'serve_git',
239
    'Git Smart server protocol over TCP. (default port: 9418)')
0.200.531 by Jelmer Vernooij
Support 'bzr serve --git'.
240
241
0.200.926 by Jelmer Vernooij
Fix formatting, drop support for Bazaar < 2.0.
242
from bzrlib.repository import (
0.200.1083 by Jelmer Vernooij
Register repository format.
243
    format_registry as repository_format_registry,
0.200.926 by Jelmer Vernooij
Fix formatting, drop support for Bazaar < 2.0.
244
    network_format_registry as repository_network_format_registry,
245
    )
0.200.674 by Jelmer Vernooij
Fix formatting.
246
repository_network_format_registry.register_lazy('git',
0.200.536 by Jelmer Vernooij
Implement network name.
247
    'bzrlib.plugins.git.repository', 'GitRepositoryFormat')
248
0.200.1024 by Jelmer Vernooij
Cope with network_format_registry moving.
249
try:
0.200.1083 by Jelmer Vernooij
Register repository format.
250
    register_extra_lazy_repository_format = getattr(repository_format_registry,
251
        "register_extra_lazy")
0.200.1111 by Jelmer Vernooij
Drop support for Bazaar < 2.3.
252
except AttributeError: # bzr < 2.4
0.200.1083 by Jelmer Vernooij
Register repository format.
253
    pass
254
else:
255
    register_extra_lazy_repository_format('bzrlib.plugins.git.repository',
256
        'GitRepositoryFormat')
257
0.200.1127 by Jelmer Vernooij
Register branch format network name.
258
from bzrlib.branch import (
259
    network_format_registry as branch_network_format_registry,
260
    )
261
branch_network_format_registry.register_lazy('git',
262
    'bzrlib.plugins.git.branch', 'GitBranchFormat')
263
0.200.1083 by Jelmer Vernooij
Register repository format.
264
try:
0.200.1090 by Jelmer Vernooij
Register branch format for testing.
265
    from bzrlib.branch import (
266
        format_registry as branch_format_registry,
267
        )
0.200.1111 by Jelmer Vernooij
Drop support for Bazaar < 2.3.
268
except ImportError: # bzr < 2.4
0.200.1090 by Jelmer Vernooij
Register branch format for testing.
269
    pass
270
else:
271
    branch_format_registry.register_extra_lazy(
272
        'bzrlib.plugins.git.branch',
273
        'GitBranchFormat',
274
        )
275
276
try:
0.200.1093 by Jelmer Vernooij
Register working tree format for testing.
277
    from bzrlib.workingtree import (
278
        format_registry as workingtree_format_registry,
279
        )
0.200.1111 by Jelmer Vernooij
Drop support for Bazaar < 2.3.
280
except ImportError: # bzr < 2.4
0.200.1093 by Jelmer Vernooij
Register working tree format for testing.
281
    pass
282
else:
283
    workingtree_format_registry.register_extra_lazy(
284
        'bzrlib.plugins.git.workingtree',
285
        'GitWorkingTreeFormat',
286
        )
287
0.200.1137 by Jelmer Vernooij
Support BzrProber.known_formats().
288
controldir_network_format_registry.register_lazy('git',
289
    "bzrlib.plugins.git.dir", "GitControlDirFormat")
0.200.536 by Jelmer Vernooij
Implement network name.
290
0.238.1 by Lukas Lalinsky, Jelmer Vernooij
Import initial work on 'bzr send --format=git' based on luks' patch for bzr-svn.
291
send_format_registry.register_lazy('git', 'bzrlib.plugins.git.send',
292
                                   'send_git', 'Git am-style diff format')
293
0.200.1137 by Jelmer Vernooij
Support BzrProber.known_formats().
294
topic_registry.register_lazy('git', 'bzrlib.plugins.git.help', 'help_git',
295
    'Using Bazaar with Git')
0.200.1011 by Jelmer Vernooij
Add some basic documentation in 'bzr help git'.
296
0.200.1111 by Jelmer Vernooij
Drop support for Bazaar < 2.3.
297
from bzrlib.diff import format_registry as diff_format_registry
298
diff_format_registry.register_lazy('git', 'bzrlib.plugins.git.send',
299
    'GitDiffTree', 'Git am-style diff format')
0.200.870 by Jelmer Vernooij
Support git-specific bzr diff option.
300
0.201.1 by Jelmer Vernooij
Add very small initial testsuite.
301
def test_suite():
0.200.18 by John Arbash Meinel
Start splitting up the Git{Branch,Dir,Repository} into separate modules, etc.
302
    from bzrlib.plugins.git import tests
303
    return tests.test_suite()