/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 breezy/bzr/__init__.py

  • Committer: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2018-09-13 12:50:28 UTC
  • mfrom: (7096.2.2 empty-port)
  • Revision ID: breezy.the.bot@gmail.com-20180913125028-mja5gz8xsams9iey
Allow port to be empty when parsing URLs.

Merged from https://code.launchpad.net/~jelmer/brz/empty-port/+merge/354640

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2017 Breezy Developers
 
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
16
 
 
17
from __future__ import absolute_import
 
18
 
 
19
from .. import (
 
20
    config,
 
21
    errors,
 
22
    controldir,
 
23
    pyutils,
 
24
    registry,
 
25
    )
 
26
 
 
27
class BzrProber(controldir.Prober):
 
28
    """Prober for formats that use a .bzr/ control directory."""
 
29
 
 
30
    formats = registry.FormatRegistry(controldir.network_format_registry)
 
31
    """The known .bzr formats."""
 
32
 
 
33
    @classmethod
 
34
    def probe_transport(klass, transport):
 
35
        """Return the .bzrdir style format present in a directory."""
 
36
        try:
 
37
            format_string = transport.get_bytes(".bzr/branch-format")
 
38
        except errors.NoSuchFile:
 
39
            raise errors.NotBranchError(path=transport.base)
 
40
        try:
 
41
            first_line = format_string[:format_string.index(b"\n")+1]
 
42
        except ValueError:
 
43
            first_line = format_string
 
44
        try:
 
45
            cls = klass.formats.get(first_line)
 
46
        except KeyError:
 
47
            raise errors.UnknownFormatError(format=first_line, kind='bzrdir')
 
48
        return cls.from_string(format_string)
 
49
 
 
50
    @classmethod
 
51
    def known_formats(cls):
 
52
        result = []
 
53
        for name, format in cls.formats.items():
 
54
            if callable(format):
 
55
                format = format()
 
56
            result.append(format)
 
57
        return result
 
58
 
 
59
 
 
60
controldir.ControlDirFormat.register_prober(BzrProber)
 
61
 
 
62
 
 
63
class RemoteBzrProber(controldir.Prober):
 
64
    """Prober for remote servers that provide a Bazaar smart server."""
 
65
 
 
66
    @classmethod
 
67
    def probe_transport(klass, transport):
 
68
        """Return a RemoteBzrDirFormat object if it looks possible."""
 
69
        try:
 
70
            medium = transport.get_smart_medium()
 
71
        except (NotImplementedError, AttributeError,
 
72
                errors.TransportNotPossible, errors.NoSmartMedium,
 
73
                errors.SmartProtocolError):
 
74
            # no smart server, so not a branch for this format type.
 
75
            raise errors.NotBranchError(path=transport.base)
 
76
        else:
 
77
            # Decline to open it if the server doesn't support our required
 
78
            # version (3) so that the VFS-based transport will do it.
 
79
            if medium.should_probe():
 
80
                try:
 
81
                    server_version = medium.protocol_version()
 
82
                except errors.SmartProtocolError:
 
83
                    # Apparently there's no usable smart server there, even though
 
84
                    # the medium supports the smart protocol.
 
85
                    raise errors.NotBranchError(path=transport.base)
 
86
                if server_version != '2':
 
87
                    raise errors.NotBranchError(path=transport.base)
 
88
            from .remote import RemoteBzrDirFormat
 
89
            return RemoteBzrDirFormat()
 
90
 
 
91
    @classmethod
 
92
    def known_formats(cls):
 
93
        from .remote import RemoteBzrDirFormat
 
94
        return [RemoteBzrDirFormat()]
 
95
 
 
96
 
 
97
controldir.ControlDirFormat.register_server_prober(RemoteBzrProber)
 
98
 
 
99
# Register bzr formats
 
100
BzrProber.formats.register_lazy(
 
101
    b"Bazaar-NG meta directory, format 1\n",
 
102
    __name__ + '.bzrdir', 'BzrDirMetaFormat1')
 
103
BzrProber.formats.register_lazy(
 
104
    b"Bazaar meta directory, format 1 (with colocated branches)\n",
 
105
    __name__ + '.bzrdir', 'BzrDirMetaFormat1Colo')
 
106
 
 
107
 
 
108
def register_metadir(registry, key,
 
109
         repository_format, help, native=True, deprecated=False,
 
110
         branch_format=None,
 
111
         tree_format=None,
 
112
         hidden=False,
 
113
         experimental=False,
 
114
         bzrdir_format=None):
 
115
    """Register a metadir subformat.
 
116
 
 
117
    These all use a meta bzrdir, but can be parameterized by the
 
118
    Repository/Branch/WorkingTreeformats.
 
119
 
 
120
    :param repository_format: The fully-qualified repository format class
 
121
        name as a string.
 
122
    :param branch_format: Fully-qualified branch format class name as
 
123
        a string.
 
124
    :param tree_format: Fully-qualified tree format class name as
 
125
        a string.
 
126
    """
 
127
    if bzrdir_format is None:
 
128
        bzrdir_format = 'breezy.bzr.bzrdir.BzrDirMetaFormat1'
 
129
    # This should be expanded to support setting WorkingTree and Branch
 
130
    # formats, once the API supports that.
 
131
    def _load(full_name):
 
132
        mod_name, factory_name = full_name.rsplit('.', 1)
 
133
        try:
 
134
            factory = pyutils.get_named_object(mod_name, factory_name)
 
135
        except ImportError as e:
 
136
            raise ImportError('failed to load %s: %s' % (full_name, e))
 
137
        except AttributeError:
 
138
            raise AttributeError('no factory %s in module %r'
 
139
                % (full_name, sys.modules[mod_name]))
 
140
        return factory()
 
141
 
 
142
    def helper():
 
143
        bd = _load(bzrdir_format)
 
144
        if branch_format is not None:
 
145
            bd.set_branch_format(_load(branch_format))
 
146
        if tree_format is not None:
 
147
            bd.workingtree_format = _load(tree_format)
 
148
        if repository_format is not None:
 
149
            bd.repository_format = _load(repository_format)
 
150
        return bd
 
151
    registry.register(key, helper, help, native, deprecated, hidden,
 
152
        experimental)
 
153
 
 
154
register_metadir(controldir.format_registry, 'knit',
 
155
    'breezy.bzr.knitrepo.RepositoryFormatKnit1',
 
156
    'Format using knits.  Recommended for interoperation with bzr <= 0.14.',
 
157
    branch_format='breezy.bzr.fullhistory.BzrBranchFormat5',
 
158
    tree_format='breezy.bzr.workingtree_3.WorkingTreeFormat3',
 
159
    hidden=True,
 
160
    deprecated=True)
 
161
register_metadir(controldir.format_registry, 'dirstate',
 
162
    'breezy.bzr.knitrepo.RepositoryFormatKnit1',
 
163
    help='Format using dirstate for working trees. '
 
164
        'Compatible with bzr 0.8 and '
 
165
        'above when accessed over the network. Introduced in bzr 0.15.',
 
166
    branch_format='breezy.bzr.fullhistory.BzrBranchFormat5',
 
167
    tree_format='breezy.bzr.workingtree_4.WorkingTreeFormat4',
 
168
    hidden=True,
 
169
    deprecated=True)
 
170
register_metadir(controldir.format_registry, 'dirstate-tags',
 
171
    'breezy.bzr.knitrepo.RepositoryFormatKnit1',
 
172
    help='Variant of dirstate with support for tags. '
 
173
        'Introduced in bzr 0.15.',
 
174
    branch_format='breezy.bzr.branch.BzrBranchFormat6',
 
175
    tree_format='breezy.bzr.workingtree_4.WorkingTreeFormat4',
 
176
    hidden=True,
 
177
    deprecated=True)
 
178
register_metadir(controldir.format_registry, 'rich-root',
 
179
    'breezy.bzr.knitrepo.RepositoryFormatKnit4',
 
180
    help='Variant of dirstate with better handling of tree roots. '
 
181
        'Introduced in bzr 1.0',
 
182
    branch_format='breezy.bzr.branch.BzrBranchFormat6',
 
183
    tree_format='breezy.bzr.workingtree_4.WorkingTreeFormat4',
 
184
    hidden=True,
 
185
    deprecated=True)
 
186
register_metadir(controldir.format_registry, 'dirstate-with-subtree',
 
187
    'breezy.bzr.knitrepo.RepositoryFormatKnit3',
 
188
    help='Variant of dirstate with support for nested trees. '
 
189
         'Introduced in 0.15.',
 
190
    branch_format='breezy.bzr.branch.BzrBranchFormat6',
 
191
    tree_format='breezy.bzr.workingtree_4.WorkingTreeFormat4',
 
192
    experimental=True,
 
193
    hidden=True,
 
194
    )
 
195
register_metadir(controldir.format_registry, 'pack-0.92',
 
196
    'breezy.bzr.knitpack_repo.RepositoryFormatKnitPack1',
 
197
    help='Pack-based format used in 1.x series. Introduced in 0.92. '
 
198
        'Interoperates with bzr repositories before 0.92 but cannot be '
 
199
        'read by bzr < 0.92. '
 
200
        ,
 
201
    branch_format='breezy.bzr.branch.BzrBranchFormat6',
 
202
    tree_format='breezy.bzr.workingtree_4.WorkingTreeFormat4',
 
203
    deprecated=True,
 
204
    hidden=True,
 
205
    )
 
206
register_metadir(controldir.format_registry, 'pack-0.92-subtree',
 
207
    'breezy.bzr.knitpack_repo.RepositoryFormatKnitPack3',
 
208
    help='Pack-based format used in 1.x series, with subtree support. '
 
209
        'Introduced in 0.92. Interoperates with '
 
210
        'bzr repositories before 0.92 but cannot be read by bzr < 0.92. '
 
211
        ,
 
212
    branch_format='breezy.bzr.branch.BzrBranchFormat6',
 
213
    tree_format='breezy.bzr.workingtree_4.WorkingTreeFormat4',
 
214
    hidden=True,
 
215
    deprecated=True,
 
216
    experimental=True,
 
217
    )
 
218
register_metadir(controldir.format_registry, 'rich-root-pack',
 
219
    'breezy.bzr.knitpack_repo.RepositoryFormatKnitPack4',
 
220
    help='A variant of pack-0.92 that supports rich-root data '
 
221
         '(needed for bzr-svn and bzr-git). Introduced in 1.0.',
 
222
    branch_format='breezy.bzr.branch.BzrBranchFormat6',
 
223
    tree_format='breezy.bzr.workingtree_4.WorkingTreeFormat4',
 
224
    hidden=True,
 
225
    deprecated=True,
 
226
    )
 
227
register_metadir(controldir.format_registry, '1.6',
 
228
    'breezy.bzr.knitpack_repo.RepositoryFormatKnitPack5',
 
229
    help='A format that allows a branch to indicate that there is another '
 
230
         '(stacked) repository that should be used to access data that is '
 
231
         'not present locally.',
 
232
    branch_format='breezy.bzr.branch.BzrBranchFormat7',
 
233
    tree_format='breezy.bzr.workingtree_4.WorkingTreeFormat4',
 
234
    hidden=True,
 
235
    deprecated=True,
 
236
    )
 
237
register_metadir(controldir.format_registry, '1.6.1-rich-root',
 
238
    'breezy.bzr.knitpack_repo.RepositoryFormatKnitPack5RichRoot',
 
239
    help='A variant of 1.6 that supports rich-root data '
 
240
         '(needed for bzr-svn and bzr-git).',
 
241
    branch_format='breezy.bzr.branch.BzrBranchFormat7',
 
242
    tree_format='breezy.bzr.workingtree_4.WorkingTreeFormat4',
 
243
    hidden=True,
 
244
    deprecated=True,
 
245
    )
 
246
register_metadir(controldir.format_registry, '1.9',
 
247
    'breezy.bzr.knitpack_repo.RepositoryFormatKnitPack6',
 
248
    help='A repository format using B+tree indexes. These indexes '
 
249
         'are smaller in size, have smarter caching and provide faster '
 
250
         'performance for most operations.',
 
251
    branch_format='breezy.bzr.branch.BzrBranchFormat7',
 
252
    tree_format='breezy.bzr.workingtree_4.WorkingTreeFormat4',
 
253
    hidden=True,
 
254
    deprecated=True,
 
255
    )
 
256
register_metadir(controldir.format_registry, '1.9-rich-root',
 
257
    'breezy.bzr.knitpack_repo.RepositoryFormatKnitPack6RichRoot',
 
258
    help='A variant of 1.9 that supports rich-root data '
 
259
         '(needed for bzr-svn and bzr-git).',
 
260
    branch_format='breezy.bzr.branch.BzrBranchFormat7',
 
261
    tree_format='breezy.bzr.workingtree_4.WorkingTreeFormat4',
 
262
    hidden=True,
 
263
    deprecated=True,
 
264
    )
 
265
register_metadir(controldir.format_registry, '1.14',
 
266
    'breezy.bzr.knitpack_repo.RepositoryFormatKnitPack6',
 
267
    help='A working-tree format that supports content filtering.',
 
268
    branch_format='breezy.bzr.branch.BzrBranchFormat7',
 
269
    tree_format='breezy.bzr.workingtree_4.WorkingTreeFormat5',
 
270
    hidden=True,
 
271
    deprecated=True,
 
272
    )
 
273
register_metadir(controldir.format_registry, '1.14-rich-root',
 
274
    'breezy.bzr.knitpack_repo.RepositoryFormatKnitPack6RichRoot',
 
275
    help='A variant of 1.14 that supports rich-root data '
 
276
         '(needed for bzr-svn and bzr-git).',
 
277
    branch_format='breezy.bzr.branch.BzrBranchFormat7',
 
278
    tree_format='breezy.bzr.workingtree_4.WorkingTreeFormat5',
 
279
    hidden=True,
 
280
    deprecated=True,
 
281
    )
 
282
# The following un-numbered 'development' formats should always just be aliases.
 
283
register_metadir(controldir.format_registry, 'development-subtree',
 
284
    'breezy.bzr.groupcompress_repo.RepositoryFormat2aSubtree',
 
285
    help='Current development format, subtree variant. Can convert data to and '
 
286
        'from pack-0.92-subtree (and anything compatible with '
 
287
        'pack-0.92-subtree) format repositories. Repositories and branches in '
 
288
        'this format can only be read by bzr.dev. Please read '
 
289
        'http://doc.bazaar.canonical.com/latest/developers/development-repo.html '
 
290
        'before use.',
 
291
    branch_format='breezy.bzr.branch.BzrBranchFormat7',
 
292
    tree_format='breezy.bzr.workingtree_4.WorkingTreeFormat6',
 
293
    experimental=True,
 
294
    hidden=True,
 
295
    )
 
296
register_metadir(controldir.format_registry, 'development5-subtree',
 
297
    'breezy.bzr.knitpack_repo.RepositoryFormatPackDevelopment2Subtree',
 
298
    help='Development format, subtree variant. Can convert data to and '
 
299
        'from pack-0.92-subtree (and anything compatible with '
 
300
        'pack-0.92-subtree) format repositories. Repositories and branches in '
 
301
        'this format can only be read by bzr.dev. Please read '
 
302
        'http://doc.bazaar.canonical.com/latest/developers/development-repo.html '
 
303
        'before use.',
 
304
    branch_format='breezy.bzr.branch.BzrBranchFormat7',
 
305
    tree_format='breezy.bzr.workingtree_4.WorkingTreeFormat6',
 
306
    experimental=True,
 
307
    hidden=True,
 
308
    )
 
309
 
 
310
register_metadir(controldir.format_registry, 'development-colo',
 
311
    'breezy.bzr.groupcompress_repo.RepositoryFormat2a',
 
312
    help='The 2a format with experimental support for colocated branches.\n',
 
313
    branch_format='breezy.bzr.branch.BzrBranchFormat7',
 
314
    tree_format='breezy.bzr.workingtree_4.WorkingTreeFormat6',
 
315
    experimental=True,
 
316
    bzrdir_format='breezy.bzr.bzrdir.BzrDirMetaFormat1Colo',
 
317
    hidden=True,
 
318
    )
 
319
 
 
320
 
 
321
# And the development formats above will have aliased one of the following:
 
322
 
 
323
# Finally, the current format.
 
324
register_metadir(controldir.format_registry, '2a',
 
325
    'breezy.bzr.groupcompress_repo.RepositoryFormat2a',
 
326
    help='Format for the bzr 2.0 series.\n',
 
327
    branch_format='breezy.bzr.branch.BzrBranchFormat7',
 
328
    tree_format='breezy.bzr.workingtree_4.WorkingTreeFormat6',
 
329
    experimental=False,
 
330
    )
 
331
 
 
332
# The following format should be an alias for the rich root equivalent
 
333
# of the default format
 
334
 
 
335
controldir.format_registry.register_alias('default-rich-root', '2a', hidden=True)
 
336
 
 
337
# The following format should is just an alias for the default bzr format.
 
338
controldir.format_registry.register_alias('bzr', '2a')
 
339
 
 
340
# The current format that is made on 'bzr init'.
 
341
format_name = config.GlobalStack().get('default_format')
 
342
controldir.format_registry.set_default(format_name)