/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 bzrlib/bzrdir.py

  • Committer: Marius Kruger
  • Date: 2010-07-10 21:28:56 UTC
  • mto: (5384.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 5385.
  • Revision ID: marius.kruger@enerweb.co.za-20100710212856-uq4ji3go0u5se7hx
* Update documentation
* add NEWS

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2006-2010 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
16
 
 
17
"""BzrDir logic. The BzrDir is the basic control directory used by bzr.
 
18
 
 
19
At format 7 this was split out into Branch, Repository and Checkout control
 
20
directories.
 
21
 
 
22
Note: This module has a lot of ``open`` functions/methods that return
 
23
references to in-memory objects. As a rule, there are no matching ``close``
 
24
methods. To free any associated resources, simply stop referencing the
 
25
objects returned.
 
26
"""
 
27
 
 
28
# TODO: Move old formats into a plugin to make this file smaller.
 
29
 
 
30
import os
 
31
import sys
 
32
import warnings
 
33
 
 
34
from bzrlib.lazy_import import lazy_import
 
35
lazy_import(globals(), """
 
36
from stat import S_ISDIR
 
37
import textwrap
 
38
 
 
39
import bzrlib
 
40
from bzrlib import (
 
41
    branch,
 
42
    config,
 
43
    errors,
 
44
    graph,
 
45
    lockable_files,
 
46
    lockdir,
 
47
    osutils,
 
48
    remote,
 
49
    repository,
 
50
    revision as _mod_revision,
 
51
    ui,
 
52
    urlutils,
 
53
    versionedfile,
 
54
    win32utils,
 
55
    workingtree,
 
56
    workingtree_4,
 
57
    xml4,
 
58
    xml5,
 
59
    )
 
60
from bzrlib.osutils import (
 
61
    sha_string,
 
62
    )
 
63
from bzrlib.push import (
 
64
    PushResult,
 
65
    )
 
66
from bzrlib.repofmt import pack_repo
 
67
from bzrlib.smart.client import _SmartClient
 
68
from bzrlib.store.versioned import WeaveStore
 
69
from bzrlib.transactions import WriteTransaction
 
70
from bzrlib.transport import (
 
71
    do_catching_redirections,
 
72
    get_transport,
 
73
    local,
 
74
    )
 
75
from bzrlib.weave import Weave
 
76
""")
 
77
 
 
78
from bzrlib.trace import (
 
79
    mutter,
 
80
    note,
 
81
    warning,
 
82
    )
 
83
 
 
84
from bzrlib import (
 
85
    hooks,
 
86
    registry,
 
87
    symbol_versioning,
 
88
    )
 
89
    
 
90
    
 
91
class ControlComponent(object):
 
92
    """Abstract base class for control directory components.
 
93
    
 
94
    This provides interfaces that are common across bzrdirs, 
 
95
    repositories, branches, and workingtree control directories.
 
96
    
 
97
    They all expose two urls and transports: the *user* URL is the 
 
98
    one that stops above the control directory (eg .bzr) and that 
 
99
    should normally be used in messages, and the *control* URL is
 
100
    under that in eg .bzr/checkout and is used to read the control
 
101
    files.
 
102
    
 
103
    This can be used as a mixin and is intended to fit with 
 
104
    foreign formats.
 
105
    """
 
106
    
 
107
    @property
 
108
    def control_transport(self):
 
109
        raise NotImplementedError
 
110
   
 
111
    @property
 
112
    def control_url(self):
 
113
        return self.control_transport.base
 
114
    
 
115
    @property
 
116
    def user_transport(self):
 
117
        raise NotImplementedError
 
118
        
 
119
    @property
 
120
    def user_url(self):
 
121
        return self.user_transport.base
 
122
    
 
123
 
 
124
class BzrDir(ControlComponent):
 
125
    """A .bzr control diretory.
 
126
 
 
127
    BzrDir instances let you create or open any of the things that can be
 
128
    found within .bzr - checkouts, branches and repositories.
 
129
 
 
130
    :ivar transport:
 
131
        the transport which this bzr dir is rooted at (i.e. file:///.../.bzr/)
 
132
    :ivar root_transport:
 
133
        a transport connected to the directory this bzr was opened from
 
134
        (i.e. the parent directory holding the .bzr directory).
 
135
 
 
136
    Everything in the bzrdir should have the same file permissions.
 
137
 
 
138
    :cvar hooks: An instance of BzrDirHooks.
 
139
    """
 
140
 
 
141
    def break_lock(self):
 
142
        """Invoke break_lock on the first object in the bzrdir.
 
143
 
 
144
        If there is a tree, the tree is opened and break_lock() called.
 
145
        Otherwise, branch is tried, and finally repository.
 
146
        """
 
147
        # XXX: This seems more like a UI function than something that really
 
148
        # belongs in this class.
 
149
        try:
 
150
            thing_to_unlock = self.open_workingtree()
 
151
        except (errors.NotLocalUrl, errors.NoWorkingTree):
 
152
            try:
 
153
                thing_to_unlock = self.open_branch()
 
154
            except errors.NotBranchError:
 
155
                try:
 
156
                    thing_to_unlock = self.open_repository()
 
157
                except errors.NoRepositoryPresent:
 
158
                    return
 
159
        thing_to_unlock.break_lock()
 
160
 
 
161
    def can_convert_format(self):
 
162
        """Return true if this bzrdir is one whose format we can convert from."""
 
163
        return True
 
164
 
 
165
    def check_conversion_target(self, target_format):
 
166
        """Check that a bzrdir as a whole can be converted to a new format."""
 
167
        # The only current restriction is that the repository content can be 
 
168
        # fetched compatibly with the target.
 
169
        target_repo_format = target_format.repository_format
 
170
        try:
 
171
            self.open_repository()._format.check_conversion_target(
 
172
                target_repo_format)
 
173
        except errors.NoRepositoryPresent:
 
174
            # No repo, no problem.
 
175
            pass
 
176
 
 
177
    @staticmethod
 
178
    def _check_supported(format, allow_unsupported,
 
179
        recommend_upgrade=True,
 
180
        basedir=None):
 
181
        """Give an error or warning on old formats.
 
182
 
 
183
        :param format: may be any kind of format - workingtree, branch,
 
184
        or repository.
 
185
 
 
186
        :param allow_unsupported: If true, allow opening
 
187
        formats that are strongly deprecated, and which may
 
188
        have limited functionality.
 
189
 
 
190
        :param recommend_upgrade: If true (default), warn
 
191
        the user through the ui object that they may wish
 
192
        to upgrade the object.
 
193
        """
 
194
        # TODO: perhaps move this into a base Format class; it's not BzrDir
 
195
        # specific. mbp 20070323
 
196
        if not allow_unsupported and not format.is_supported():
 
197
            # see open_downlevel to open legacy branches.
 
198
            raise errors.UnsupportedFormatError(format=format)
 
199
        if recommend_upgrade \
 
200
            and getattr(format, 'upgrade_recommended', False):
 
201
            ui.ui_factory.recommend_upgrade(
 
202
                format.get_format_description(),
 
203
                basedir)
 
204
 
 
205
    def clone(self, url, revision_id=None, force_new_repo=False,
 
206
              preserve_stacking=False):
 
207
        """Clone this bzrdir and its contents to url verbatim.
 
208
 
 
209
        :param url: The url create the clone at.  If url's last component does
 
210
            not exist, it will be created.
 
211
        :param revision_id: The tip revision-id to use for any branch or
 
212
            working tree.  If not None, then the clone operation may tune
 
213
            itself to download less data.
 
214
        :param force_new_repo: Do not use a shared repository for the target
 
215
                               even if one is available.
 
216
        :param preserve_stacking: When cloning a stacked branch, stack the
 
217
            new branch on top of the other branch's stacked-on branch.
 
218
        """
 
219
        return self.clone_on_transport(get_transport(url),
 
220
                                       revision_id=revision_id,
 
221
                                       force_new_repo=force_new_repo,
 
222
                                       preserve_stacking=preserve_stacking)
 
223
 
 
224
    def clone_on_transport(self, transport, revision_id=None,
 
225
        force_new_repo=False, preserve_stacking=False, stacked_on=None,
 
226
        create_prefix=False, use_existing_dir=True):
 
227
        """Clone this bzrdir and its contents to transport verbatim.
 
228
 
 
229
        :param transport: The transport for the location to produce the clone
 
230
            at.  If the target directory does not exist, it will be created.
 
231
        :param revision_id: The tip revision-id to use for any branch or
 
232
            working tree.  If not None, then the clone operation may tune
 
233
            itself to download less data.
 
234
        :param force_new_repo: Do not use a shared repository for the target,
 
235
                               even if one is available.
 
236
        :param preserve_stacking: When cloning a stacked branch, stack the
 
237
            new branch on top of the other branch's stacked-on branch.
 
238
        :param create_prefix: Create any missing directories leading up to
 
239
            to_transport.
 
240
        :param use_existing_dir: Use an existing directory if one exists.
 
241
        """
 
242
        # Overview: put together a broad description of what we want to end up
 
243
        # with; then make as few api calls as possible to do it.
 
244
        
 
245
        # We may want to create a repo/branch/tree, if we do so what format
 
246
        # would we want for each:
 
247
        require_stacking = (stacked_on is not None)
 
248
        format = self.cloning_metadir(require_stacking)
 
249
        
 
250
        # Figure out what objects we want:
 
251
        try:
 
252
            local_repo = self.find_repository()
 
253
        except errors.NoRepositoryPresent:
 
254
            local_repo = None
 
255
        try:
 
256
            local_branch = self.open_branch()
 
257
        except errors.NotBranchError:
 
258
            local_branch = None
 
259
        else:
 
260
            # enable fallbacks when branch is not a branch reference
 
261
            if local_branch.repository.has_same_location(local_repo):
 
262
                local_repo = local_branch.repository
 
263
            if preserve_stacking:
 
264
                try:
 
265
                    stacked_on = local_branch.get_stacked_on_url()
 
266
                except (errors.UnstackableBranchFormat,
 
267
                        errors.UnstackableRepositoryFormat,
 
268
                        errors.NotStacked):
 
269
                    pass
 
270
        # Bug: We create a metadir without knowing if it can support stacking,
 
271
        # we should look up the policy needs first, or just use it as a hint,
 
272
        # or something.
 
273
        if local_repo:
 
274
            make_working_trees = local_repo.make_working_trees()
 
275
            want_shared = local_repo.is_shared()
 
276
            repo_format_name = format.repository_format.network_name()
 
277
        else:
 
278
            make_working_trees = False
 
279
            want_shared = False
 
280
            repo_format_name = None
 
281
 
 
282
        result_repo, result, require_stacking, repository_policy = \
 
283
            format.initialize_on_transport_ex(transport,
 
284
            use_existing_dir=use_existing_dir, create_prefix=create_prefix,
 
285
            force_new_repo=force_new_repo, stacked_on=stacked_on,
 
286
            stack_on_pwd=self.root_transport.base,
 
287
            repo_format_name=repo_format_name,
 
288
            make_working_trees=make_working_trees, shared_repo=want_shared)
 
289
        if repo_format_name:
 
290
            try:
 
291
                # If the result repository is in the same place as the
 
292
                # resulting bzr dir, it will have no content, further if the
 
293
                # result is not stacked then we know all content should be
 
294
                # copied, and finally if we are copying up to a specific
 
295
                # revision_id then we can use the pending-ancestry-result which
 
296
                # does not require traversing all of history to describe it.
 
297
                if (result_repo.user_url == result.user_url
 
298
                    and not require_stacking and
 
299
                    revision_id is not None):
 
300
                    fetch_spec = graph.PendingAncestryResult(
 
301
                        [revision_id], local_repo)
 
302
                    result_repo.fetch(local_repo, fetch_spec=fetch_spec)
 
303
                else:
 
304
                    result_repo.fetch(local_repo, revision_id=revision_id)
 
305
            finally:
 
306
                result_repo.unlock()
 
307
        else:
 
308
            if result_repo is not None:
 
309
                raise AssertionError('result_repo not None(%r)' % result_repo)
 
310
        # 1 if there is a branch present
 
311
        #   make sure its content is available in the target repository
 
312
        #   clone it.
 
313
        if local_branch is not None:
 
314
            result_branch = local_branch.clone(result, revision_id=revision_id,
 
315
                repository_policy=repository_policy)
 
316
        try:
 
317
            # Cheaper to check if the target is not local, than to try making
 
318
            # the tree and fail.
 
319
            result.root_transport.local_abspath('.')
 
320
            if result_repo is None or result_repo.make_working_trees():
 
321
                self.open_workingtree().clone(result)
 
322
        except (errors.NoWorkingTree, errors.NotLocalUrl):
 
323
            pass
 
324
        return result
 
325
 
 
326
    # TODO: This should be given a Transport, and should chdir up; otherwise
 
327
    # this will open a new connection.
 
328
    def _make_tail(self, url):
 
329
        t = get_transport(url)
 
330
        t.ensure_base()
 
331
 
 
332
    @classmethod
 
333
    def create(cls, base, format=None, possible_transports=None):
 
334
        """Create a new BzrDir at the url 'base'.
 
335
 
 
336
        :param format: If supplied, the format of branch to create.  If not
 
337
            supplied, the default is used.
 
338
        :param possible_transports: If supplied, a list of transports that
 
339
            can be reused to share a remote connection.
 
340
        """
 
341
        if cls is not BzrDir:
 
342
            raise AssertionError("BzrDir.create always creates the default"
 
343
                " format, not one of %r" % cls)
 
344
        t = get_transport(base, possible_transports)
 
345
        t.ensure_base()
 
346
        if format is None:
 
347
            format = BzrDirFormat.get_default_format()
 
348
        return format.initialize_on_transport(t)
 
349
 
 
350
    @staticmethod
 
351
    def find_bzrdirs(transport, evaluate=None, list_current=None):
 
352
        """Find bzrdirs recursively from current location.
 
353
 
 
354
        This is intended primarily as a building block for more sophisticated
 
355
        functionality, like finding trees under a directory, or finding
 
356
        branches that use a given repository.
 
357
        :param evaluate: An optional callable that yields recurse, value,
 
358
            where recurse controls whether this bzrdir is recursed into
 
359
            and value is the value to yield.  By default, all bzrdirs
 
360
            are recursed into, and the return value is the bzrdir.
 
361
        :param list_current: if supplied, use this function to list the current
 
362
            directory, instead of Transport.list_dir
 
363
        :return: a generator of found bzrdirs, or whatever evaluate returns.
 
364
        """
 
365
        if list_current is None:
 
366
            def list_current(transport):
 
367
                return transport.list_dir('')
 
368
        if evaluate is None:
 
369
            def evaluate(bzrdir):
 
370
                return True, bzrdir
 
371
 
 
372
        pending = [transport]
 
373
        while len(pending) > 0:
 
374
            current_transport = pending.pop()
 
375
            recurse = True
 
376
            try:
 
377
                bzrdir = BzrDir.open_from_transport(current_transport)
 
378
            except (errors.NotBranchError, errors.PermissionDenied):
 
379
                pass
 
380
            else:
 
381
                recurse, value = evaluate(bzrdir)
 
382
                yield value
 
383
            try:
 
384
                subdirs = list_current(current_transport)
 
385
            except (errors.NoSuchFile, errors.PermissionDenied):
 
386
                continue
 
387
            if recurse:
 
388
                for subdir in sorted(subdirs, reverse=True):
 
389
                    pending.append(current_transport.clone(subdir))
 
390
 
 
391
    def list_branches(self):
 
392
        """Return a sequence of all branches local to this control directory.
 
393
 
 
394
        """
 
395
        try:
 
396
            return [self.open_branch()]
 
397
        except (errors.NotBranchError, errors.NoRepositoryPresent):
 
398
            return []
 
399
 
 
400
    @staticmethod
 
401
    def find_branches(transport):
 
402
        """Find all branches under a transport.
 
403
 
 
404
        This will find all branches below the transport, including branches
 
405
        inside other branches.  Where possible, it will use
 
406
        Repository.find_branches.
 
407
 
 
408
        To list all the branches that use a particular Repository, see
 
409
        Repository.find_branches
 
410
        """
 
411
        def evaluate(bzrdir):
 
412
            try:
 
413
                repository = bzrdir.open_repository()
 
414
            except errors.NoRepositoryPresent:
 
415
                pass
 
416
            else:
 
417
                return False, ([], repository)
 
418
            return True, (bzrdir.list_branches(), None)
 
419
        ret = []
 
420
        for branches, repo in BzrDir.find_bzrdirs(transport,
 
421
                                                  evaluate=evaluate):
 
422
            if repo is not None:
 
423
                ret.extend(repo.find_branches())
 
424
            if branches is not None:
 
425
                ret.extend(branches)
 
426
        return ret
 
427
 
 
428
    def destroy_repository(self):
 
429
        """Destroy the repository in this BzrDir"""
 
430
        raise NotImplementedError(self.destroy_repository)
 
431
 
 
432
    def create_branch(self, name=None):
 
433
        """Create a branch in this BzrDir.
 
434
 
 
435
        :param name: Name of the colocated branch to create, None for
 
436
            the default branch.
 
437
 
 
438
        The bzrdir's format will control what branch format is created.
 
439
        For more control see BranchFormatXX.create(a_bzrdir).
 
440
        """
 
441
        raise NotImplementedError(self.create_branch)
 
442
 
 
443
    def destroy_branch(self, name=None):
 
444
        """Destroy a branch in this BzrDir.
 
445
        
 
446
        :param name: Name of the branch to destroy, None for the default 
 
447
            branch.
 
448
        """
 
449
        raise NotImplementedError(self.destroy_branch)
 
450
 
 
451
    @staticmethod
 
452
    def create_branch_and_repo(base, force_new_repo=False, format=None):
 
453
        """Create a new BzrDir, Branch and Repository at the url 'base'.
 
454
 
 
455
        This will use the current default BzrDirFormat unless one is
 
456
        specified, and use whatever
 
457
        repository format that that uses via bzrdir.create_branch and
 
458
        create_repository. If a shared repository is available that is used
 
459
        preferentially.
 
460
 
 
461
        The created Branch object is returned.
 
462
 
 
463
        :param base: The URL to create the branch at.
 
464
        :param force_new_repo: If True a new repository is always created.
 
465
        :param format: If supplied, the format of branch to create.  If not
 
466
            supplied, the default is used.
 
467
        """
 
468
        bzrdir = BzrDir.create(base, format)
 
469
        bzrdir._find_or_create_repository(force_new_repo)
 
470
        return bzrdir.create_branch()
 
471
 
 
472
    def determine_repository_policy(self, force_new_repo=False, stack_on=None,
 
473
                                    stack_on_pwd=None, require_stacking=False):
 
474
        """Return an object representing a policy to use.
 
475
 
 
476
        This controls whether a new repository is created, and the format of
 
477
        that repository, or some existing shared repository used instead.
 
478
 
 
479
        If stack_on is supplied, will not seek a containing shared repo.
 
480
 
 
481
        :param force_new_repo: If True, require a new repository to be created.
 
482
        :param stack_on: If supplied, the location to stack on.  If not
 
483
            supplied, a default_stack_on location may be used.
 
484
        :param stack_on_pwd: If stack_on is relative, the location it is
 
485
            relative to.
 
486
        """
 
487
        def repository_policy(found_bzrdir):
 
488
            stack_on = None
 
489
            stack_on_pwd = None
 
490
            config = found_bzrdir.get_config()
 
491
            stop = False
 
492
            stack_on = config.get_default_stack_on()
 
493
            if stack_on is not None:
 
494
                stack_on_pwd = found_bzrdir.user_url
 
495
                stop = True
 
496
            # does it have a repository ?
 
497
            try:
 
498
                repository = found_bzrdir.open_repository()
 
499
            except errors.NoRepositoryPresent:
 
500
                repository = None
 
501
            else:
 
502
                if (found_bzrdir.user_url != self.user_url 
 
503
                    and not repository.is_shared()):
 
504
                    # Don't look higher, can't use a higher shared repo.
 
505
                    repository = None
 
506
                    stop = True
 
507
                else:
 
508
                    stop = True
 
509
            if not stop:
 
510
                return None, False
 
511
            if repository:
 
512
                return UseExistingRepository(repository, stack_on,
 
513
                    stack_on_pwd, require_stacking=require_stacking), True
 
514
            else:
 
515
                return CreateRepository(self, stack_on, stack_on_pwd,
 
516
                    require_stacking=require_stacking), True
 
517
 
 
518
        if not force_new_repo:
 
519
            if stack_on is None:
 
520
                policy = self._find_containing(repository_policy)
 
521
                if policy is not None:
 
522
                    return policy
 
523
            else:
 
524
                try:
 
525
                    return UseExistingRepository(self.open_repository(),
 
526
                        stack_on, stack_on_pwd,
 
527
                        require_stacking=require_stacking)
 
528
                except errors.NoRepositoryPresent:
 
529
                    pass
 
530
        return CreateRepository(self, stack_on, stack_on_pwd,
 
531
                                require_stacking=require_stacking)
 
532
 
 
533
    def _find_or_create_repository(self, force_new_repo):
 
534
        """Create a new repository if needed, returning the repository."""
 
535
        policy = self.determine_repository_policy(force_new_repo)
 
536
        return policy.acquire_repository()[0]
 
537
 
 
538
    @staticmethod
 
539
    def create_branch_convenience(base, force_new_repo=False,
 
540
                                  force_new_tree=None, format=None,
 
541
                                  possible_transports=None):
 
542
        """Create a new BzrDir, Branch and Repository at the url 'base'.
 
543
 
 
544
        This is a convenience function - it will use an existing repository
 
545
        if possible, can be told explicitly whether to create a working tree or
 
546
        not.
 
547
 
 
548
        This will use the current default BzrDirFormat unless one is
 
549
        specified, and use whatever
 
550
        repository format that that uses via bzrdir.create_branch and
 
551
        create_repository. If a shared repository is available that is used
 
552
        preferentially. Whatever repository is used, its tree creation policy
 
553
        is followed.
 
554
 
 
555
        The created Branch object is returned.
 
556
        If a working tree cannot be made due to base not being a file:// url,
 
557
        no error is raised unless force_new_tree is True, in which case no
 
558
        data is created on disk and NotLocalUrl is raised.
 
559
 
 
560
        :param base: The URL to create the branch at.
 
561
        :param force_new_repo: If True a new repository is always created.
 
562
        :param force_new_tree: If True or False force creation of a tree or
 
563
                               prevent such creation respectively.
 
564
        :param format: Override for the bzrdir format to create.
 
565
        :param possible_transports: An optional reusable transports list.
 
566
        """
 
567
        if force_new_tree:
 
568
            # check for non local urls
 
569
            t = get_transport(base, possible_transports)
 
570
            if not isinstance(t, local.LocalTransport):
 
571
                raise errors.NotLocalUrl(base)
 
572
        bzrdir = BzrDir.create(base, format, possible_transports)
 
573
        repo = bzrdir._find_or_create_repository(force_new_repo)
 
574
        result = bzrdir.create_branch()
 
575
        if force_new_tree or (repo.make_working_trees() and
 
576
                              force_new_tree is None):
 
577
            try:
 
578
                bzrdir.create_workingtree()
 
579
            except errors.NotLocalUrl:
 
580
                pass
 
581
        return result
 
582
 
 
583
    @staticmethod
 
584
    def create_standalone_workingtree(base, format=None):
 
585
        """Create a new BzrDir, WorkingTree, Branch and Repository at 'base'.
 
586
 
 
587
        'base' must be a local path or a file:// url.
 
588
 
 
589
        This will use the current default BzrDirFormat unless one is
 
590
        specified, and use whatever
 
591
        repository format that that uses for bzrdirformat.create_workingtree,
 
592
        create_branch and create_repository.
 
593
 
 
594
        :param format: Override for the bzrdir format to create.
 
595
        :return: The WorkingTree object.
 
596
        """
 
597
        t = get_transport(base)
 
598
        if not isinstance(t, local.LocalTransport):
 
599
            raise errors.NotLocalUrl(base)
 
600
        bzrdir = BzrDir.create_branch_and_repo(base,
 
601
                                               force_new_repo=True,
 
602
                                               format=format).bzrdir
 
603
        return bzrdir.create_workingtree()
 
604
 
 
605
    def create_workingtree(self, revision_id=None, from_branch=None,
 
606
        accelerator_tree=None, hardlink=False):
 
607
        """Create a working tree at this BzrDir.
 
608
 
 
609
        :param revision_id: create it as of this revision id.
 
610
        :param from_branch: override bzrdir branch (for lightweight checkouts)
 
611
        :param accelerator_tree: A tree which can be used for retrieving file
 
612
            contents more quickly than the revision tree, i.e. a workingtree.
 
613
            The revision tree will be used for cases where accelerator_tree's
 
614
            content is different.
 
615
        """
 
616
        raise NotImplementedError(self.create_workingtree)
 
617
 
 
618
    def generate_backup_name(self, base):
 
619
        """Generate a non-existing backup file name based on base."""
 
620
        counter = 1
 
621
        name = "%s.~%d~" % (base, counter)
 
622
        while self.root_transport.has(name):
 
623
            counter += 1
 
624
            name = "%s.~%d~" % (base, counter)
 
625
        return name
 
626
 
 
627
    def backup_bzrdir(self):
 
628
        """Backup this bzr control directory.
 
629
 
 
630
        :return: Tuple with old path name and new path name
 
631
        """
 
632
 
 
633
        backup_dir=self.generate_backup_name('backup.bzr')
 
634
        pb = ui.ui_factory.nested_progress_bar()
 
635
        try:
 
636
            # FIXME: bug 300001 -- the backup fails if the backup directory
 
637
            # already exists, but it should instead either remove it or make
 
638
            # a new backup directory.
 
639
            #
 
640
            old_path = self.root_transport.abspath('.bzr')
 
641
            new_path = self.root_transport.abspath(backup_dir)
 
642
            ui.ui_factory.note('making backup of %s\n  to %s' % (old_path, new_path,))
 
643
            self.root_transport.copy_tree('.bzr', backup_dir)
 
644
            return (old_path, new_path)
 
645
        finally:
 
646
            pb.finished()
 
647
 
 
648
    def retire_bzrdir(self, limit=10000):
 
649
        """Permanently disable the bzrdir.
 
650
 
 
651
        This is done by renaming it to give the user some ability to recover
 
652
        if there was a problem.
 
653
 
 
654
        This will have horrible consequences if anyone has anything locked or
 
655
        in use.
 
656
        :param limit: number of times to retry
 
657
        """
 
658
        i  = 0
 
659
        while True:
 
660
            try:
 
661
                to_path = '.bzr.retired.%d' % i
 
662
                self.root_transport.rename('.bzr', to_path)
 
663
                note("renamed %s to %s"
 
664
                    % (self.root_transport.abspath('.bzr'), to_path))
 
665
                return
 
666
            except (errors.TransportError, IOError, errors.PathError):
 
667
                i += 1
 
668
                if i > limit:
 
669
                    raise
 
670
                else:
 
671
                    pass
 
672
 
 
673
    def destroy_workingtree(self):
 
674
        """Destroy the working tree at this BzrDir.
 
675
 
 
676
        Formats that do not support this may raise UnsupportedOperation.
 
677
        """
 
678
        raise NotImplementedError(self.destroy_workingtree)
 
679
 
 
680
    def destroy_workingtree_metadata(self):
 
681
        """Destroy the control files for the working tree at this BzrDir.
 
682
 
 
683
        The contents of working tree files are not affected.
 
684
        Formats that do not support this may raise UnsupportedOperation.
 
685
        """
 
686
        raise NotImplementedError(self.destroy_workingtree_metadata)
 
687
 
 
688
    def _find_containing(self, evaluate):
 
689
        """Find something in a containing control directory.
 
690
 
 
691
        This method will scan containing control dirs, until it finds what
 
692
        it is looking for, decides that it will never find it, or runs out
 
693
        of containing control directories to check.
 
694
 
 
695
        It is used to implement find_repository and
 
696
        determine_repository_policy.
 
697
 
 
698
        :param evaluate: A function returning (value, stop).  If stop is True,
 
699
            the value will be returned.
 
700
        """
 
701
        found_bzrdir = self
 
702
        while True:
 
703
            result, stop = evaluate(found_bzrdir)
 
704
            if stop:
 
705
                return result
 
706
            next_transport = found_bzrdir.root_transport.clone('..')
 
707
            if (found_bzrdir.user_url == next_transport.base):
 
708
                # top of the file system
 
709
                return None
 
710
            # find the next containing bzrdir
 
711
            try:
 
712
                found_bzrdir = BzrDir.open_containing_from_transport(
 
713
                    next_transport)[0]
 
714
            except errors.NotBranchError:
 
715
                return None
 
716
 
 
717
    def find_repository(self):
 
718
        """Find the repository that should be used.
 
719
 
 
720
        This does not require a branch as we use it to find the repo for
 
721
        new branches as well as to hook existing branches up to their
 
722
        repository.
 
723
        """
 
724
        def usable_repository(found_bzrdir):
 
725
            # does it have a repository ?
 
726
            try:
 
727
                repository = found_bzrdir.open_repository()
 
728
            except errors.NoRepositoryPresent:
 
729
                return None, False
 
730
            if found_bzrdir.user_url == self.user_url:
 
731
                return repository, True
 
732
            elif repository.is_shared():
 
733
                return repository, True
 
734
            else:
 
735
                return None, True
 
736
 
 
737
        found_repo = self._find_containing(usable_repository)
 
738
        if found_repo is None:
 
739
            raise errors.NoRepositoryPresent(self)
 
740
        return found_repo
 
741
 
 
742
    def get_branch_reference(self, name=None):
 
743
        """Return the referenced URL for the branch in this bzrdir.
 
744
 
 
745
        :param name: Optional colocated branch name
 
746
        :raises NotBranchError: If there is no Branch.
 
747
        :raises NoColocatedBranchSupport: If a branch name was specified
 
748
            but colocated branches are not supported.
 
749
        :return: The URL the branch in this bzrdir references if it is a
 
750
            reference branch, or None for regular branches.
 
751
        """
 
752
        if name is not None:
 
753
            raise errors.NoColocatedBranchSupport(self)
 
754
        return None
 
755
 
 
756
    def get_branch_transport(self, branch_format, name=None):
 
757
        """Get the transport for use by branch format in this BzrDir.
 
758
 
 
759
        Note that bzr dirs that do not support format strings will raise
 
760
        IncompatibleFormat if the branch format they are given has
 
761
        a format string, and vice versa.
 
762
 
 
763
        If branch_format is None, the transport is returned with no
 
764
        checking. If it is not None, then the returned transport is
 
765
        guaranteed to point to an existing directory ready for use.
 
766
        """
 
767
        raise NotImplementedError(self.get_branch_transport)
 
768
 
 
769
    def _find_creation_modes(self):
 
770
        """Determine the appropriate modes for files and directories.
 
771
 
 
772
        They're always set to be consistent with the base directory,
 
773
        assuming that this transport allows setting modes.
 
774
        """
 
775
        # TODO: Do we need or want an option (maybe a config setting) to turn
 
776
        # this off or override it for particular locations? -- mbp 20080512
 
777
        if self._mode_check_done:
 
778
            return
 
779
        self._mode_check_done = True
 
780
        try:
 
781
            st = self.transport.stat('.')
 
782
        except errors.TransportNotPossible:
 
783
            self._dir_mode = None
 
784
            self._file_mode = None
 
785
        else:
 
786
            # Check the directory mode, but also make sure the created
 
787
            # directories and files are read-write for this user. This is
 
788
            # mostly a workaround for filesystems which lie about being able to
 
789
            # write to a directory (cygwin & win32)
 
790
            if (st.st_mode & 07777 == 00000):
 
791
                # FTP allows stat but does not return dir/file modes
 
792
                self._dir_mode = None
 
793
                self._file_mode = None
 
794
            else:
 
795
                self._dir_mode = (st.st_mode & 07777) | 00700
 
796
                # Remove the sticky and execute bits for files
 
797
                self._file_mode = self._dir_mode & ~07111
 
798
 
 
799
    def _get_file_mode(self):
 
800
        """Return Unix mode for newly created files, or None.
 
801
        """
 
802
        if not self._mode_check_done:
 
803
            self._find_creation_modes()
 
804
        return self._file_mode
 
805
 
 
806
    def _get_dir_mode(self):
 
807
        """Return Unix mode for newly created directories, or None.
 
808
        """
 
809
        if not self._mode_check_done:
 
810
            self._find_creation_modes()
 
811
        return self._dir_mode
 
812
 
 
813
    def get_repository_transport(self, repository_format):
 
814
        """Get the transport for use by repository format in this BzrDir.
 
815
 
 
816
        Note that bzr dirs that do not support format strings will raise
 
817
        IncompatibleFormat if the repository format they are given has
 
818
        a format string, and vice versa.
 
819
 
 
820
        If repository_format is None, the transport is returned with no
 
821
        checking. If it is not None, then the returned transport is
 
822
        guaranteed to point to an existing directory ready for use.
 
823
        """
 
824
        raise NotImplementedError(self.get_repository_transport)
 
825
 
 
826
    def get_workingtree_transport(self, tree_format):
 
827
        """Get the transport for use by workingtree format in this BzrDir.
 
828
 
 
829
        Note that bzr dirs that do not support format strings will raise
 
830
        IncompatibleFormat if the workingtree format they are given has a
 
831
        format string, and vice versa.
 
832
 
 
833
        If workingtree_format is None, the transport is returned with no
 
834
        checking. If it is not None, then the returned transport is
 
835
        guaranteed to point to an existing directory ready for use.
 
836
        """
 
837
        raise NotImplementedError(self.get_workingtree_transport)
 
838
 
 
839
    def get_config(self):
 
840
        """Get configuration for this BzrDir."""
 
841
        return config.BzrDirConfig(self)
 
842
 
 
843
    def _get_config(self):
 
844
        """By default, no configuration is available."""
 
845
        return None
 
846
 
 
847
    def __init__(self, _transport, _format):
 
848
        """Initialize a Bzr control dir object.
 
849
 
 
850
        Only really common logic should reside here, concrete classes should be
 
851
        made with varying behaviours.
 
852
 
 
853
        :param _format: the format that is creating this BzrDir instance.
 
854
        :param _transport: the transport this dir is based at.
 
855
        """
 
856
        self._format = _format
 
857
        # these are also under the more standard names of 
 
858
        # control_transport and user_transport
 
859
        self.transport = _transport.clone('.bzr')
 
860
        self.root_transport = _transport
 
861
        self._mode_check_done = False
 
862
        
 
863
    @property 
 
864
    def user_transport(self):
 
865
        return self.root_transport
 
866
        
 
867
    @property
 
868
    def control_transport(self):
 
869
        return self.transport
 
870
 
 
871
    def is_control_filename(self, filename):
 
872
        """True if filename is the name of a path which is reserved for bzrdir's.
 
873
 
 
874
        :param filename: A filename within the root transport of this bzrdir.
 
875
 
 
876
        This is true IF and ONLY IF the filename is part of the namespace reserved
 
877
        for bzr control dirs. Currently this is the '.bzr' directory in the root
 
878
        of the root_transport. it is expected that plugins will need to extend
 
879
        this in the future - for instance to make bzr talk with svn working
 
880
        trees.
 
881
        """
 
882
        # this might be better on the BzrDirFormat class because it refers to
 
883
        # all the possible bzrdir disk formats.
 
884
        # This method is tested via the workingtree is_control_filename tests-
 
885
        # it was extracted from WorkingTree.is_control_filename. If the method's
 
886
        # contract is extended beyond the current trivial implementation, please
 
887
        # add new tests for it to the appropriate place.
 
888
        return filename == '.bzr' or filename.startswith('.bzr/')
 
889
 
 
890
    def needs_format_conversion(self, format=None):
 
891
        """Return true if this bzrdir needs convert_format run on it.
 
892
 
 
893
        For instance, if the repository format is out of date but the
 
894
        branch and working tree are not, this should return True.
 
895
 
 
896
        :param format: Optional parameter indicating a specific desired
 
897
                       format we plan to arrive at.
 
898
        """
 
899
        raise NotImplementedError(self.needs_format_conversion)
 
900
 
 
901
    @staticmethod
 
902
    def open_unsupported(base):
 
903
        """Open a branch which is not supported."""
 
904
        return BzrDir.open(base, _unsupported=True)
 
905
 
 
906
    @staticmethod
 
907
    def open(base, _unsupported=False, possible_transports=None):
 
908
        """Open an existing bzrdir, rooted at 'base' (url).
 
909
 
 
910
        :param _unsupported: a private parameter to the BzrDir class.
 
911
        """
 
912
        t = get_transport(base, possible_transports=possible_transports)
 
913
        return BzrDir.open_from_transport(t, _unsupported=_unsupported)
 
914
 
 
915
    @staticmethod
 
916
    def open_from_transport(transport, _unsupported=False,
 
917
                            _server_formats=True):
 
918
        """Open a bzrdir within a particular directory.
 
919
 
 
920
        :param transport: Transport containing the bzrdir.
 
921
        :param _unsupported: private.
 
922
        """
 
923
        for hook in BzrDir.hooks['pre_open']:
 
924
            hook(transport)
 
925
        # Keep initial base since 'transport' may be modified while following
 
926
        # the redirections.
 
927
        base = transport.base
 
928
        def find_format(transport):
 
929
            return transport, BzrDirFormat.find_format(
 
930
                transport, _server_formats=_server_formats)
 
931
 
 
932
        def redirected(transport, e, redirection_notice):
 
933
            redirected_transport = transport._redirected_to(e.source, e.target)
 
934
            if redirected_transport is None:
 
935
                raise errors.NotBranchError(base)
 
936
            note('%s is%s redirected to %s',
 
937
                 transport.base, e.permanently, redirected_transport.base)
 
938
            return redirected_transport
 
939
 
 
940
        try:
 
941
            transport, format = do_catching_redirections(find_format,
 
942
                                                         transport,
 
943
                                                         redirected)
 
944
        except errors.TooManyRedirections:
 
945
            raise errors.NotBranchError(base)
 
946
 
 
947
        BzrDir._check_supported(format, _unsupported)
 
948
        return format.open(transport, _found=True)
 
949
 
 
950
    def open_branch(self, name=None, unsupported=False,
 
951
                    ignore_fallbacks=False):
 
952
        """Open the branch object at this BzrDir if one is present.
 
953
 
 
954
        If unsupported is True, then no longer supported branch formats can
 
955
        still be opened.
 
956
 
 
957
        TODO: static convenience version of this?
 
958
        """
 
959
        raise NotImplementedError(self.open_branch)
 
960
 
 
961
    @staticmethod
 
962
    def open_containing(url, possible_transports=None):
 
963
        """Open an existing branch which contains url.
 
964
 
 
965
        :param url: url to search from.
 
966
        See open_containing_from_transport for more detail.
 
967
        """
 
968
        transport = get_transport(url, possible_transports)
 
969
        return BzrDir.open_containing_from_transport(transport)
 
970
 
 
971
    @staticmethod
 
972
    def open_containing_from_transport(a_transport):
 
973
        """Open an existing branch which contains a_transport.base.
 
974
 
 
975
        This probes for a branch at a_transport, and searches upwards from there.
 
976
 
 
977
        Basically we keep looking up until we find the control directory or
 
978
        run into the root.  If there isn't one, raises NotBranchError.
 
979
        If there is one and it is either an unrecognised format or an unsupported
 
980
        format, UnknownFormatError or UnsupportedFormatError are raised.
 
981
        If there is one, it is returned, along with the unused portion of url.
 
982
 
 
983
        :return: The BzrDir that contains the path, and a Unicode path
 
984
                for the rest of the URL.
 
985
        """
 
986
        # this gets the normalised url back. I.e. '.' -> the full path.
 
987
        url = a_transport.base
 
988
        while True:
 
989
            try:
 
990
                result = BzrDir.open_from_transport(a_transport)
 
991
                return result, urlutils.unescape(a_transport.relpath(url))
 
992
            except errors.NotBranchError, e:
 
993
                pass
 
994
            try:
 
995
                new_t = a_transport.clone('..')
 
996
            except errors.InvalidURLJoin:
 
997
                # reached the root, whatever that may be
 
998
                raise errors.NotBranchError(path=url)
 
999
            if new_t.base == a_transport.base:
 
1000
                # reached the root, whatever that may be
 
1001
                raise errors.NotBranchError(path=url)
 
1002
            a_transport = new_t
 
1003
 
 
1004
    def _get_tree_branch(self, name=None):
 
1005
        """Return the branch and tree, if any, for this bzrdir.
 
1006
 
 
1007
        :param name: Name of colocated branch to open.
 
1008
 
 
1009
        Return None for tree if not present or inaccessible.
 
1010
        Raise NotBranchError if no branch is present.
 
1011
        :return: (tree, branch)
 
1012
        """
 
1013
        try:
 
1014
            tree = self.open_workingtree()
 
1015
        except (errors.NoWorkingTree, errors.NotLocalUrl):
 
1016
            tree = None
 
1017
            branch = self.open_branch(name=name)
 
1018
        else:
 
1019
            if name is not None:
 
1020
                branch = self.open_branch(name=name)
 
1021
            else:
 
1022
                branch = tree.branch
 
1023
        return tree, branch
 
1024
 
 
1025
    @classmethod
 
1026
    def open_tree_or_branch(klass, location):
 
1027
        """Return the branch and working tree at a location.
 
1028
 
 
1029
        If there is no tree at the location, tree will be None.
 
1030
        If there is no branch at the location, an exception will be
 
1031
        raised
 
1032
        :return: (tree, branch)
 
1033
        """
 
1034
        bzrdir = klass.open(location)
 
1035
        return bzrdir._get_tree_branch()
 
1036
 
 
1037
    @classmethod
 
1038
    def open_containing_tree_or_branch(klass, location):
 
1039
        """Return the branch and working tree contained by a location.
 
1040
 
 
1041
        Returns (tree, branch, relpath).
 
1042
        If there is no tree at containing the location, tree will be None.
 
1043
        If there is no branch containing the location, an exception will be
 
1044
        raised
 
1045
        relpath is the portion of the path that is contained by the branch.
 
1046
        """
 
1047
        bzrdir, relpath = klass.open_containing(location)
 
1048
        tree, branch = bzrdir._get_tree_branch()
 
1049
        return tree, branch, relpath
 
1050
 
 
1051
    @classmethod
 
1052
    def open_containing_tree_branch_or_repository(klass, location):
 
1053
        """Return the working tree, branch and repo contained by a location.
 
1054
 
 
1055
        Returns (tree, branch, repository, relpath).
 
1056
        If there is no tree containing the location, tree will be None.
 
1057
        If there is no branch containing the location, branch will be None.
 
1058
        If there is no repository containing the location, repository will be
 
1059
        None.
 
1060
        relpath is the portion of the path that is contained by the innermost
 
1061
        BzrDir.
 
1062
 
 
1063
        If no tree, branch or repository is found, a NotBranchError is raised.
 
1064
        """
 
1065
        bzrdir, relpath = klass.open_containing(location)
 
1066
        try:
 
1067
            tree, branch = bzrdir._get_tree_branch()
 
1068
        except errors.NotBranchError:
 
1069
            try:
 
1070
                repo = bzrdir.find_repository()
 
1071
                return None, None, repo, relpath
 
1072
            except (errors.NoRepositoryPresent):
 
1073
                raise errors.NotBranchError(location)
 
1074
        return tree, branch, branch.repository, relpath
 
1075
 
 
1076
    def open_repository(self, _unsupported=False):
 
1077
        """Open the repository object at this BzrDir if one is present.
 
1078
 
 
1079
        This will not follow the Branch object pointer - it's strictly a direct
 
1080
        open facility. Most client code should use open_branch().repository to
 
1081
        get at a repository.
 
1082
 
 
1083
        :param _unsupported: a private parameter, not part of the api.
 
1084
        TODO: static convenience version of this?
 
1085
        """
 
1086
        raise NotImplementedError(self.open_repository)
 
1087
 
 
1088
    def open_workingtree(self, _unsupported=False,
 
1089
                         recommend_upgrade=True, from_branch=None):
 
1090
        """Open the workingtree object at this BzrDir if one is present.
 
1091
 
 
1092
        :param recommend_upgrade: Optional keyword parameter, when True (the
 
1093
            default), emit through the ui module a recommendation that the user
 
1094
            upgrade the working tree when the workingtree being opened is old
 
1095
            (but still fully supported).
 
1096
        :param from_branch: override bzrdir branch (for lightweight checkouts)
 
1097
        """
 
1098
        raise NotImplementedError(self.open_workingtree)
 
1099
 
 
1100
    def has_branch(self, name=None):
 
1101
        """Tell if this bzrdir contains a branch.
 
1102
 
 
1103
        Note: if you're going to open the branch, you should just go ahead
 
1104
        and try, and not ask permission first.  (This method just opens the
 
1105
        branch and discards it, and that's somewhat expensive.)
 
1106
        """
 
1107
        try:
 
1108
            self.open_branch(name)
 
1109
            return True
 
1110
        except errors.NotBranchError:
 
1111
            return False
 
1112
 
 
1113
    def has_workingtree(self):
 
1114
        """Tell if this bzrdir contains a working tree.
 
1115
 
 
1116
        This will still raise an exception if the bzrdir has a workingtree that
 
1117
        is remote & inaccessible.
 
1118
 
 
1119
        Note: if you're going to open the working tree, you should just go ahead
 
1120
        and try, and not ask permission first.  (This method just opens the
 
1121
        workingtree and discards it, and that's somewhat expensive.)
 
1122
        """
 
1123
        try:
 
1124
            self.open_workingtree(recommend_upgrade=False)
 
1125
            return True
 
1126
        except errors.NoWorkingTree:
 
1127
            return False
 
1128
 
 
1129
    def _cloning_metadir(self):
 
1130
        """Produce a metadir suitable for cloning with.
 
1131
 
 
1132
        :returns: (destination_bzrdir_format, source_repository)
 
1133
        """
 
1134
        result_format = self._format.__class__()
 
1135
        try:
 
1136
            try:
 
1137
                branch = self.open_branch(ignore_fallbacks=True)
 
1138
                source_repository = branch.repository
 
1139
                result_format._branch_format = branch._format
 
1140
            except errors.NotBranchError:
 
1141
                source_branch = None
 
1142
                source_repository = self.open_repository()
 
1143
        except errors.NoRepositoryPresent:
 
1144
            source_repository = None
 
1145
        else:
 
1146
            # XXX TODO: This isinstance is here because we have not implemented
 
1147
            # the fix recommended in bug # 103195 - to delegate this choice the
 
1148
            # repository itself.
 
1149
            repo_format = source_repository._format
 
1150
            if isinstance(repo_format, remote.RemoteRepositoryFormat):
 
1151
                source_repository._ensure_real()
 
1152
                repo_format = source_repository._real_repository._format
 
1153
            result_format.repository_format = repo_format
 
1154
        try:
 
1155
            # TODO: Couldn't we just probe for the format in these cases,
 
1156
            # rather than opening the whole tree?  It would be a little
 
1157
            # faster. mbp 20070401
 
1158
            tree = self.open_workingtree(recommend_upgrade=False)
 
1159
        except (errors.NoWorkingTree, errors.NotLocalUrl):
 
1160
            result_format.workingtree_format = None
 
1161
        else:
 
1162
            result_format.workingtree_format = tree._format.__class__()
 
1163
        return result_format, source_repository
 
1164
 
 
1165
    def cloning_metadir(self, require_stacking=False):
 
1166
        """Produce a metadir suitable for cloning or sprouting with.
 
1167
 
 
1168
        These operations may produce workingtrees (yes, even though they're
 
1169
        "cloning" something that doesn't have a tree), so a viable workingtree
 
1170
        format must be selected.
 
1171
 
 
1172
        :require_stacking: If True, non-stackable formats will be upgraded
 
1173
            to similar stackable formats.
 
1174
        :returns: a BzrDirFormat with all component formats either set
 
1175
            appropriately or set to None if that component should not be
 
1176
            created.
 
1177
        """
 
1178
        format, repository = self._cloning_metadir()
 
1179
        if format._workingtree_format is None:
 
1180
            # No tree in self.
 
1181
            if repository is None:
 
1182
                # No repository either
 
1183
                return format
 
1184
            # We have a repository, so set a working tree? (Why? This seems to
 
1185
            # contradict the stated return value in the docstring).
 
1186
            tree_format = repository._format._matchingbzrdir.workingtree_format
 
1187
            format.workingtree_format = tree_format.__class__()
 
1188
        if require_stacking:
 
1189
            format.require_stacking()
 
1190
        return format
 
1191
 
 
1192
    def checkout_metadir(self):
 
1193
        return self.cloning_metadir()
 
1194
 
 
1195
    def sprout(self, url, revision_id=None, force_new_repo=False,
 
1196
               recurse='down', possible_transports=None,
 
1197
               accelerator_tree=None, hardlink=False, stacked=False,
 
1198
               source_branch=None, create_tree_if_local=True):
 
1199
        """Create a copy of this bzrdir prepared for use as a new line of
 
1200
        development.
 
1201
 
 
1202
        If url's last component does not exist, it will be created.
 
1203
 
 
1204
        Attributes related to the identity of the source branch like
 
1205
        branch nickname will be cleaned, a working tree is created
 
1206
        whether one existed before or not; and a local branch is always
 
1207
        created.
 
1208
 
 
1209
        if revision_id is not None, then the clone operation may tune
 
1210
            itself to download less data.
 
1211
        :param accelerator_tree: A tree which can be used for retrieving file
 
1212
            contents more quickly than the revision tree, i.e. a workingtree.
 
1213
            The revision tree will be used for cases where accelerator_tree's
 
1214
            content is different.
 
1215
        :param hardlink: If true, hard-link files from accelerator_tree,
 
1216
            where possible.
 
1217
        :param stacked: If true, create a stacked branch referring to the
 
1218
            location of this control directory.
 
1219
        :param create_tree_if_local: If true, a working-tree will be created
 
1220
            when working locally.
 
1221
        """
 
1222
        target_transport = get_transport(url, possible_transports)
 
1223
        target_transport.ensure_base()
 
1224
        cloning_format = self.cloning_metadir(stacked)
 
1225
        # Create/update the result branch
 
1226
        result = cloning_format.initialize_on_transport(target_transport)
 
1227
        # if a stacked branch wasn't requested, we don't create one
 
1228
        # even if the origin was stacked
 
1229
        stacked_branch_url = None
 
1230
        if source_branch is not None:
 
1231
            if stacked:
 
1232
                stacked_branch_url = self.root_transport.base
 
1233
            source_repository = source_branch.repository
 
1234
        else:
 
1235
            try:
 
1236
                source_branch = self.open_branch()
 
1237
                source_repository = source_branch.repository
 
1238
                if stacked:
 
1239
                    stacked_branch_url = self.root_transport.base
 
1240
            except errors.NotBranchError:
 
1241
                source_branch = None
 
1242
                try:
 
1243
                    source_repository = self.open_repository()
 
1244
                except errors.NoRepositoryPresent:
 
1245
                    source_repository = None
 
1246
        repository_policy = result.determine_repository_policy(
 
1247
            force_new_repo, stacked_branch_url, require_stacking=stacked)
 
1248
        result_repo, is_new_repo = repository_policy.acquire_repository()
 
1249
        is_stacked = stacked or (len(result_repo._fallback_repositories) != 0)
 
1250
        if is_new_repo and revision_id is not None and not is_stacked:
 
1251
            fetch_spec = graph.PendingAncestryResult(
 
1252
                [revision_id], source_repository)
 
1253
        else:
 
1254
            fetch_spec = None
 
1255
        if source_repository is not None:
 
1256
            # Fetch while stacked to prevent unstacked fetch from
 
1257
            # Branch.sprout.
 
1258
            if fetch_spec is None:
 
1259
                result_repo.fetch(source_repository, revision_id=revision_id)
 
1260
            else:
 
1261
                result_repo.fetch(source_repository, fetch_spec=fetch_spec)
 
1262
 
 
1263
        if source_branch is None:
 
1264
            # this is for sprouting a bzrdir without a branch; is that
 
1265
            # actually useful?
 
1266
            # Not especially, but it's part of the contract.
 
1267
            result_branch = result.create_branch()
 
1268
        else:
 
1269
            result_branch = source_branch.sprout(result,
 
1270
                revision_id=revision_id, repository_policy=repository_policy)
 
1271
        mutter("created new branch %r" % (result_branch,))
 
1272
 
 
1273
        # Create/update the result working tree
 
1274
        if (create_tree_if_local and
 
1275
            isinstance(target_transport, local.LocalTransport) and
 
1276
            (result_repo is None or result_repo.make_working_trees())):
 
1277
            wt = result.create_workingtree(accelerator_tree=accelerator_tree,
 
1278
                hardlink=hardlink)
 
1279
            wt.lock_write()
 
1280
            try:
 
1281
                if wt.path2id('') is None:
 
1282
                    try:
 
1283
                        wt.set_root_id(self.open_workingtree.get_root_id())
 
1284
                    except errors.NoWorkingTree:
 
1285
                        pass
 
1286
            finally:
 
1287
                wt.unlock()
 
1288
        else:
 
1289
            wt = None
 
1290
        if recurse == 'down':
 
1291
            if wt is not None:
 
1292
                basis = wt.basis_tree()
 
1293
                basis.lock_read()
 
1294
                subtrees = basis.iter_references()
 
1295
            elif result_branch is not None:
 
1296
                basis = result_branch.basis_tree()
 
1297
                basis.lock_read()
 
1298
                subtrees = basis.iter_references()
 
1299
            elif source_branch is not None:
 
1300
                basis = source_branch.basis_tree()
 
1301
                basis.lock_read()
 
1302
                subtrees = basis.iter_references()
 
1303
            else:
 
1304
                subtrees = []
 
1305
                basis = None
 
1306
            try:
 
1307
                for path, file_id in subtrees:
 
1308
                    target = urlutils.join(url, urlutils.escape(path))
 
1309
                    sublocation = source_branch.reference_parent(file_id, path)
 
1310
                    sublocation.bzrdir.sprout(target,
 
1311
                        basis.get_reference_revision(file_id, path),
 
1312
                        force_new_repo=force_new_repo, recurse=recurse,
 
1313
                        stacked=stacked)
 
1314
            finally:
 
1315
                if basis is not None:
 
1316
                    basis.unlock()
 
1317
        return result
 
1318
 
 
1319
    def push_branch(self, source, revision_id=None, overwrite=False, 
 
1320
        remember=False, create_prefix=False):
 
1321
        """Push the source branch into this BzrDir."""
 
1322
        br_to = None
 
1323
        # If we can open a branch, use its direct repository, otherwise see
 
1324
        # if there is a repository without a branch.
 
1325
        try:
 
1326
            br_to = self.open_branch()
 
1327
        except errors.NotBranchError:
 
1328
            # Didn't find a branch, can we find a repository?
 
1329
            repository_to = self.find_repository()
 
1330
        else:
 
1331
            # Found a branch, so we must have found a repository
 
1332
            repository_to = br_to.repository
 
1333
 
 
1334
        push_result = PushResult()
 
1335
        push_result.source_branch = source
 
1336
        if br_to is None:
 
1337
            # We have a repository but no branch, copy the revisions, and then
 
1338
            # create a branch.
 
1339
            repository_to.fetch(source.repository, revision_id=revision_id)
 
1340
            br_to = source.clone(self, revision_id=revision_id)
 
1341
            if source.get_push_location() is None or remember:
 
1342
                source.set_push_location(br_to.base)
 
1343
            push_result.stacked_on = None
 
1344
            push_result.branch_push_result = None
 
1345
            push_result.old_revno = None
 
1346
            push_result.old_revid = _mod_revision.NULL_REVISION
 
1347
            push_result.target_branch = br_to
 
1348
            push_result.master_branch = None
 
1349
            push_result.workingtree_updated = False
 
1350
        else:
 
1351
            # We have successfully opened the branch, remember if necessary:
 
1352
            if source.get_push_location() is None or remember:
 
1353
                source.set_push_location(br_to.base)
 
1354
            try:
 
1355
                tree_to = self.open_workingtree()
 
1356
            except errors.NotLocalUrl:
 
1357
                push_result.branch_push_result = source.push(br_to, 
 
1358
                    overwrite, stop_revision=revision_id)
 
1359
                push_result.workingtree_updated = False
 
1360
            except errors.NoWorkingTree:
 
1361
                push_result.branch_push_result = source.push(br_to,
 
1362
                    overwrite, stop_revision=revision_id)
 
1363
                push_result.workingtree_updated = None # Not applicable
 
1364
            else:
 
1365
                tree_to.lock_write()
 
1366
                try:
 
1367
                    push_result.branch_push_result = source.push(
 
1368
                        tree_to.branch, overwrite, stop_revision=revision_id)
 
1369
                    tree_to.update()
 
1370
                finally:
 
1371
                    tree_to.unlock()
 
1372
                push_result.workingtree_updated = True
 
1373
            push_result.old_revno = push_result.branch_push_result.old_revno
 
1374
            push_result.old_revid = push_result.branch_push_result.old_revid
 
1375
            push_result.target_branch = \
 
1376
                push_result.branch_push_result.target_branch
 
1377
        return push_result
 
1378
 
 
1379
 
 
1380
class BzrDirHooks(hooks.Hooks):
 
1381
    """Hooks for BzrDir operations."""
 
1382
 
 
1383
    def __init__(self):
 
1384
        """Create the default hooks."""
 
1385
        hooks.Hooks.__init__(self)
 
1386
        self.create_hook(hooks.HookPoint('pre_open',
 
1387
            "Invoked before attempting to open a BzrDir with the transport "
 
1388
            "that the open will use.", (1, 14), None))
 
1389
        self.create_hook(hooks.HookPoint('post_repo_init',
 
1390
            "Invoked after a repository has been initialized. "
 
1391
            "post_repo_init is called with a "
 
1392
            "bzrlib.bzrdir.RepoInitHookParams.",
 
1393
            (2, 2), None))
 
1394
 
 
1395
# install the default hooks
 
1396
BzrDir.hooks = BzrDirHooks()
 
1397
 
 
1398
 
 
1399
class RepoInitHookParams(object):
 
1400
    """Object holding parameters passed to *_repo_init hooks.
 
1401
 
 
1402
    There are 4 fields that hooks may wish to access:
 
1403
 
 
1404
    :ivar repository: Repository created
 
1405
    :ivar format: Repository format
 
1406
    :ivar bzrdir: The bzrdir for the repository
 
1407
    :ivar shared: The repository is shared
 
1408
    """
 
1409
 
 
1410
    def __init__(self, repository, format, a_bzrdir, shared):
 
1411
        """Create a group of RepoInitHook parameters.
 
1412
 
 
1413
        :param repository: Repository created
 
1414
        :param format: Repository format
 
1415
        :param bzrdir: The bzrdir for the repository
 
1416
        :param shared: The repository is shared
 
1417
        """
 
1418
        self.repository = repository
 
1419
        self.format = format
 
1420
        self.bzrdir = a_bzrdir
 
1421
        self.shared = shared
 
1422
 
 
1423
    def __eq__(self, other):
 
1424
        return self.__dict__ == other.__dict__
 
1425
 
 
1426
    def __repr__(self):
 
1427
        if self.repository:
 
1428
            return "<%s for %s>" % (self.__class__.__name__,
 
1429
                self.repository)
 
1430
        else:
 
1431
            return "<%s for %s>" % (self.__class__.__name__,
 
1432
                self.bzrdir)
 
1433
 
 
1434
 
 
1435
class BzrDirPreSplitOut(BzrDir):
 
1436
    """A common class for the all-in-one formats."""
 
1437
 
 
1438
    def __init__(self, _transport, _format):
 
1439
        """See BzrDir.__init__."""
 
1440
        super(BzrDirPreSplitOut, self).__init__(_transport, _format)
 
1441
        self._control_files = lockable_files.LockableFiles(
 
1442
                                            self.get_branch_transport(None),
 
1443
                                            self._format._lock_file_name,
 
1444
                                            self._format._lock_class)
 
1445
 
 
1446
    def break_lock(self):
 
1447
        """Pre-splitout bzrdirs do not suffer from stale locks."""
 
1448
        raise NotImplementedError(self.break_lock)
 
1449
 
 
1450
    def cloning_metadir(self, require_stacking=False):
 
1451
        """Produce a metadir suitable for cloning with."""
 
1452
        if require_stacking:
 
1453
            return format_registry.make_bzrdir('1.6')
 
1454
        return self._format.__class__()
 
1455
 
 
1456
    def clone(self, url, revision_id=None, force_new_repo=False,
 
1457
              preserve_stacking=False):
 
1458
        """See BzrDir.clone().
 
1459
 
 
1460
        force_new_repo has no effect, since this family of formats always
 
1461
        require a new repository.
 
1462
        preserve_stacking has no effect, since no source branch using this
 
1463
        family of formats can be stacked, so there is no stacking to preserve.
 
1464
        """
 
1465
        self._make_tail(url)
 
1466
        result = self._format._initialize_for_clone(url)
 
1467
        self.open_repository().clone(result, revision_id=revision_id)
 
1468
        from_branch = self.open_branch()
 
1469
        from_branch.clone(result, revision_id=revision_id)
 
1470
        try:
 
1471
            tree = self.open_workingtree()
 
1472
        except errors.NotLocalUrl:
 
1473
            # make a new one, this format always has to have one.
 
1474
            result._init_workingtree()
 
1475
        else:
 
1476
            tree.clone(result)
 
1477
        return result
 
1478
 
 
1479
    def create_branch(self, name=None):
 
1480
        """See BzrDir.create_branch."""
 
1481
        return self._format.get_branch_format().initialize(self, name=name)
 
1482
 
 
1483
    def destroy_branch(self, name=None):
 
1484
        """See BzrDir.destroy_branch."""
 
1485
        raise errors.UnsupportedOperation(self.destroy_branch, self)
 
1486
 
 
1487
    def create_repository(self, shared=False):
 
1488
        """See BzrDir.create_repository."""
 
1489
        if shared:
 
1490
            raise errors.IncompatibleFormat('shared repository', self._format)
 
1491
        return self.open_repository()
 
1492
 
 
1493
    def destroy_repository(self):
 
1494
        """See BzrDir.destroy_repository."""
 
1495
        raise errors.UnsupportedOperation(self.destroy_repository, self)
 
1496
 
 
1497
    def create_workingtree(self, revision_id=None, from_branch=None,
 
1498
                           accelerator_tree=None, hardlink=False):
 
1499
        """See BzrDir.create_workingtree."""
 
1500
        # The workingtree is sometimes created when the bzrdir is created,
 
1501
        # but not when cloning.
 
1502
 
 
1503
        # this looks buggy but is not -really-
 
1504
        # because this format creates the workingtree when the bzrdir is
 
1505
        # created
 
1506
        # clone and sprout will have set the revision_id
 
1507
        # and that will have set it for us, its only
 
1508
        # specific uses of create_workingtree in isolation
 
1509
        # that can do wonky stuff here, and that only
 
1510
        # happens for creating checkouts, which cannot be
 
1511
        # done on this format anyway. So - acceptable wart.
 
1512
        if hardlink:
 
1513
            warning("can't support hardlinked working trees in %r"
 
1514
                % (self,))
 
1515
        try:
 
1516
            result = self.open_workingtree(recommend_upgrade=False)
 
1517
        except errors.NoSuchFile:
 
1518
            result = self._init_workingtree()
 
1519
        if revision_id is not None:
 
1520
            if revision_id == _mod_revision.NULL_REVISION:
 
1521
                result.set_parent_ids([])
 
1522
            else:
 
1523
                result.set_parent_ids([revision_id])
 
1524
        return result
 
1525
 
 
1526
    def _init_workingtree(self):
 
1527
        from bzrlib.workingtree import WorkingTreeFormat2
 
1528
        try:
 
1529
            return WorkingTreeFormat2().initialize(self)
 
1530
        except errors.NotLocalUrl:
 
1531
            # Even though we can't access the working tree, we need to
 
1532
            # create its control files.
 
1533
            return WorkingTreeFormat2()._stub_initialize_on_transport(
 
1534
                self.transport, self._control_files._file_mode)
 
1535
 
 
1536
    def destroy_workingtree(self):
 
1537
        """See BzrDir.destroy_workingtree."""
 
1538
        raise errors.UnsupportedOperation(self.destroy_workingtree, self)
 
1539
 
 
1540
    def destroy_workingtree_metadata(self):
 
1541
        """See BzrDir.destroy_workingtree_metadata."""
 
1542
        raise errors.UnsupportedOperation(self.destroy_workingtree_metadata,
 
1543
                                          self)
 
1544
 
 
1545
    def get_branch_transport(self, branch_format, name=None):
 
1546
        """See BzrDir.get_branch_transport()."""
 
1547
        if name is not None:
 
1548
            raise errors.NoColocatedBranchSupport(self)
 
1549
        if branch_format is None:
 
1550
            return self.transport
 
1551
        try:
 
1552
            branch_format.get_format_string()
 
1553
        except NotImplementedError:
 
1554
            return self.transport
 
1555
        raise errors.IncompatibleFormat(branch_format, self._format)
 
1556
 
 
1557
    def get_repository_transport(self, repository_format):
 
1558
        """See BzrDir.get_repository_transport()."""
 
1559
        if repository_format is None:
 
1560
            return self.transport
 
1561
        try:
 
1562
            repository_format.get_format_string()
 
1563
        except NotImplementedError:
 
1564
            return self.transport
 
1565
        raise errors.IncompatibleFormat(repository_format, self._format)
 
1566
 
 
1567
    def get_workingtree_transport(self, workingtree_format):
 
1568
        """See BzrDir.get_workingtree_transport()."""
 
1569
        if workingtree_format is None:
 
1570
            return self.transport
 
1571
        try:
 
1572
            workingtree_format.get_format_string()
 
1573
        except NotImplementedError:
 
1574
            return self.transport
 
1575
        raise errors.IncompatibleFormat(workingtree_format, self._format)
 
1576
 
 
1577
    def needs_format_conversion(self, format=None):
 
1578
        """See BzrDir.needs_format_conversion()."""
 
1579
        # if the format is not the same as the system default,
 
1580
        # an upgrade is needed.
 
1581
        if format is None:
 
1582
            symbol_versioning.warn(symbol_versioning.deprecated_in((1, 13, 0))
 
1583
                % 'needs_format_conversion(format=None)')
 
1584
            format = BzrDirFormat.get_default_format()
 
1585
        return not isinstance(self._format, format.__class__)
 
1586
 
 
1587
    def open_branch(self, name=None, unsupported=False,
 
1588
                    ignore_fallbacks=False):
 
1589
        """See BzrDir.open_branch."""
 
1590
        from bzrlib.branch import BzrBranchFormat4
 
1591
        format = BzrBranchFormat4()
 
1592
        self._check_supported(format, unsupported)
 
1593
        return format.open(self, name, _found=True)
 
1594
 
 
1595
    def sprout(self, url, revision_id=None, force_new_repo=False,
 
1596
               possible_transports=None, accelerator_tree=None,
 
1597
               hardlink=False, stacked=False, create_tree_if_local=True,
 
1598
               source_branch=None):
 
1599
        """See BzrDir.sprout()."""
 
1600
        if source_branch is not None:
 
1601
            my_branch = self.open_branch()
 
1602
            if source_branch.base != my_branch.base:
 
1603
                raise AssertionError(
 
1604
                    "source branch %r is not within %r with branch %r" %
 
1605
                    (source_branch, self, my_branch))
 
1606
        if stacked:
 
1607
            raise errors.UnstackableBranchFormat(
 
1608
                self._format, self.root_transport.base)
 
1609
        if not create_tree_if_local:
 
1610
            raise errors.MustHaveWorkingTree(
 
1611
                self._format, self.root_transport.base)
 
1612
        from bzrlib.workingtree import WorkingTreeFormat2
 
1613
        self._make_tail(url)
 
1614
        result = self._format._initialize_for_clone(url)
 
1615
        try:
 
1616
            self.open_repository().clone(result, revision_id=revision_id)
 
1617
        except errors.NoRepositoryPresent:
 
1618
            pass
 
1619
        try:
 
1620
            self.open_branch().sprout(result, revision_id=revision_id)
 
1621
        except errors.NotBranchError:
 
1622
            pass
 
1623
 
 
1624
        # we always want a working tree
 
1625
        WorkingTreeFormat2().initialize(result,
 
1626
                                        accelerator_tree=accelerator_tree,
 
1627
                                        hardlink=hardlink)
 
1628
        return result
 
1629
 
 
1630
 
 
1631
class BzrDir4(BzrDirPreSplitOut):
 
1632
    """A .bzr version 4 control object.
 
1633
 
 
1634
    This is a deprecated format and may be removed after sept 2006.
 
1635
    """
 
1636
 
 
1637
    def create_repository(self, shared=False):
 
1638
        """See BzrDir.create_repository."""
 
1639
        return self._format.repository_format.initialize(self, shared)
 
1640
 
 
1641
    def needs_format_conversion(self, format=None):
 
1642
        """Format 4 dirs are always in need of conversion."""
 
1643
        if format is None:
 
1644
            symbol_versioning.warn(symbol_versioning.deprecated_in((1, 13, 0))
 
1645
                % 'needs_format_conversion(format=None)')
 
1646
        return True
 
1647
 
 
1648
    def open_repository(self):
 
1649
        """See BzrDir.open_repository."""
 
1650
        from bzrlib.repofmt.weaverepo import RepositoryFormat4
 
1651
        return RepositoryFormat4().open(self, _found=True)
 
1652
 
 
1653
 
 
1654
class BzrDir5(BzrDirPreSplitOut):
 
1655
    """A .bzr version 5 control object.
 
1656
 
 
1657
    This is a deprecated format and may be removed after sept 2006.
 
1658
    """
 
1659
 
 
1660
    def has_workingtree(self):
 
1661
        """See BzrDir.has_workingtree."""
 
1662
        return True
 
1663
    
 
1664
    def open_repository(self):
 
1665
        """See BzrDir.open_repository."""
 
1666
        from bzrlib.repofmt.weaverepo import RepositoryFormat5
 
1667
        return RepositoryFormat5().open(self, _found=True)
 
1668
 
 
1669
    def open_workingtree(self, _unsupported=False,
 
1670
            recommend_upgrade=True):
 
1671
        """See BzrDir.create_workingtree."""
 
1672
        from bzrlib.workingtree import WorkingTreeFormat2
 
1673
        wt_format = WorkingTreeFormat2()
 
1674
        # we don't warn here about upgrades; that ought to be handled for the
 
1675
        # bzrdir as a whole
 
1676
        return wt_format.open(self, _found=True)
 
1677
 
 
1678
 
 
1679
class BzrDir6(BzrDirPreSplitOut):
 
1680
    """A .bzr version 6 control object.
 
1681
 
 
1682
    This is a deprecated format and may be removed after sept 2006.
 
1683
    """
 
1684
 
 
1685
    def has_workingtree(self):
 
1686
        """See BzrDir.has_workingtree."""
 
1687
        return True
 
1688
    
 
1689
    def open_repository(self):
 
1690
        """See BzrDir.open_repository."""
 
1691
        from bzrlib.repofmt.weaverepo import RepositoryFormat6
 
1692
        return RepositoryFormat6().open(self, _found=True)
 
1693
 
 
1694
    def open_workingtree(self, _unsupported=False,
 
1695
        recommend_upgrade=True):
 
1696
        """See BzrDir.create_workingtree."""
 
1697
        # we don't warn here about upgrades; that ought to be handled for the
 
1698
        # bzrdir as a whole
 
1699
        from bzrlib.workingtree import WorkingTreeFormat2
 
1700
        return WorkingTreeFormat2().open(self, _found=True)
 
1701
 
 
1702
 
 
1703
class BzrDirMeta1(BzrDir):
 
1704
    """A .bzr meta version 1 control object.
 
1705
 
 
1706
    This is the first control object where the
 
1707
    individual aspects are really split out: there are separate repository,
 
1708
    workingtree and branch subdirectories and any subset of the three can be
 
1709
    present within a BzrDir.
 
1710
    """
 
1711
 
 
1712
    def can_convert_format(self):
 
1713
        """See BzrDir.can_convert_format()."""
 
1714
        return True
 
1715
 
 
1716
    def create_branch(self, name=None):
 
1717
        """See BzrDir.create_branch."""
 
1718
        return self._format.get_branch_format().initialize(self, name=name)
 
1719
 
 
1720
    def destroy_branch(self, name=None):
 
1721
        """See BzrDir.create_branch."""
 
1722
        if name is not None:
 
1723
            raise errors.NoColocatedBranchSupport(self)
 
1724
        self.transport.delete_tree('branch')
 
1725
 
 
1726
    def create_repository(self, shared=False):
 
1727
        """See BzrDir.create_repository."""
 
1728
        return self._format.repository_format.initialize(self, shared)
 
1729
 
 
1730
    def destroy_repository(self):
 
1731
        """See BzrDir.destroy_repository."""
 
1732
        self.transport.delete_tree('repository')
 
1733
 
 
1734
    def create_workingtree(self, revision_id=None, from_branch=None,
 
1735
                           accelerator_tree=None, hardlink=False):
 
1736
        """See BzrDir.create_workingtree."""
 
1737
        return self._format.workingtree_format.initialize(
 
1738
            self, revision_id, from_branch=from_branch,
 
1739
            accelerator_tree=accelerator_tree, hardlink=hardlink)
 
1740
 
 
1741
    def destroy_workingtree(self):
 
1742
        """See BzrDir.destroy_workingtree."""
 
1743
        wt = self.open_workingtree(recommend_upgrade=False)
 
1744
        repository = wt.branch.repository
 
1745
        empty = repository.revision_tree(_mod_revision.NULL_REVISION)
 
1746
        wt.revert(old_tree=empty)
 
1747
        self.destroy_workingtree_metadata()
 
1748
 
 
1749
    def destroy_workingtree_metadata(self):
 
1750
        self.transport.delete_tree('checkout')
 
1751
 
 
1752
    def find_branch_format(self, name=None):
 
1753
        """Find the branch 'format' for this bzrdir.
 
1754
 
 
1755
        This might be a synthetic object for e.g. RemoteBranch and SVN.
 
1756
        """
 
1757
        from bzrlib.branch import BranchFormat
 
1758
        return BranchFormat.find_format(self, name=name)
 
1759
 
 
1760
    def _get_mkdir_mode(self):
 
1761
        """Figure out the mode to use when creating a bzrdir subdir."""
 
1762
        temp_control = lockable_files.LockableFiles(self.transport, '',
 
1763
                                     lockable_files.TransportLock)
 
1764
        return temp_control._dir_mode
 
1765
 
 
1766
    def get_branch_reference(self, name=None):
 
1767
        """See BzrDir.get_branch_reference()."""
 
1768
        from bzrlib.branch import BranchFormat
 
1769
        format = BranchFormat.find_format(self, name=name)
 
1770
        return format.get_reference(self, name=name)
 
1771
 
 
1772
    def get_branch_transport(self, branch_format, name=None):
 
1773
        """See BzrDir.get_branch_transport()."""
 
1774
        if name is not None:
 
1775
            raise errors.NoColocatedBranchSupport(self)
 
1776
        # XXX: this shouldn't implicitly create the directory if it's just
 
1777
        # promising to get a transport -- mbp 20090727
 
1778
        if branch_format is None:
 
1779
            return self.transport.clone('branch')
 
1780
        try:
 
1781
            branch_format.get_format_string()
 
1782
        except NotImplementedError:
 
1783
            raise errors.IncompatibleFormat(branch_format, self._format)
 
1784
        try:
 
1785
            self.transport.mkdir('branch', mode=self._get_mkdir_mode())
 
1786
        except errors.FileExists:
 
1787
            pass
 
1788
        return self.transport.clone('branch')
 
1789
 
 
1790
    def get_repository_transport(self, repository_format):
 
1791
        """See BzrDir.get_repository_transport()."""
 
1792
        if repository_format is None:
 
1793
            return self.transport.clone('repository')
 
1794
        try:
 
1795
            repository_format.get_format_string()
 
1796
        except NotImplementedError:
 
1797
            raise errors.IncompatibleFormat(repository_format, self._format)
 
1798
        try:
 
1799
            self.transport.mkdir('repository', mode=self._get_mkdir_mode())
 
1800
        except errors.FileExists:
 
1801
            pass
 
1802
        return self.transport.clone('repository')
 
1803
 
 
1804
    def get_workingtree_transport(self, workingtree_format):
 
1805
        """See BzrDir.get_workingtree_transport()."""
 
1806
        if workingtree_format is None:
 
1807
            return self.transport.clone('checkout')
 
1808
        try:
 
1809
            workingtree_format.get_format_string()
 
1810
        except NotImplementedError:
 
1811
            raise errors.IncompatibleFormat(workingtree_format, self._format)
 
1812
        try:
 
1813
            self.transport.mkdir('checkout', mode=self._get_mkdir_mode())
 
1814
        except errors.FileExists:
 
1815
            pass
 
1816
        return self.transport.clone('checkout')
 
1817
 
 
1818
    def has_workingtree(self):
 
1819
        """Tell if this bzrdir contains a working tree.
 
1820
 
 
1821
        This will still raise an exception if the bzrdir has a workingtree that
 
1822
        is remote & inaccessible.
 
1823
 
 
1824
        Note: if you're going to open the working tree, you should just go
 
1825
        ahead and try, and not ask permission first.
 
1826
        """
 
1827
        from bzrlib.workingtree import WorkingTreeFormat
 
1828
        try:
 
1829
            WorkingTreeFormat.find_format(self)
 
1830
        except errors.NoWorkingTree:
 
1831
            return False
 
1832
        return True
 
1833
 
 
1834
    def needs_format_conversion(self, format=None):
 
1835
        """See BzrDir.needs_format_conversion()."""
 
1836
        if format is None:
 
1837
            symbol_versioning.warn(symbol_versioning.deprecated_in((1, 13, 0))
 
1838
                % 'needs_format_conversion(format=None)')
 
1839
        if format is None:
 
1840
            format = BzrDirFormat.get_default_format()
 
1841
        if not isinstance(self._format, format.__class__):
 
1842
            # it is not a meta dir format, conversion is needed.
 
1843
            return True
 
1844
        # we might want to push this down to the repository?
 
1845
        try:
 
1846
            if not isinstance(self.open_repository()._format,
 
1847
                              format.repository_format.__class__):
 
1848
                # the repository needs an upgrade.
 
1849
                return True
 
1850
        except errors.NoRepositoryPresent:
 
1851
            pass
 
1852
        for branch in self.list_branches():
 
1853
            if not isinstance(branch._format,
 
1854
                              format.get_branch_format().__class__):
 
1855
                # the branch needs an upgrade.
 
1856
                return True
 
1857
        try:
 
1858
            my_wt = self.open_workingtree(recommend_upgrade=False)
 
1859
            if not isinstance(my_wt._format,
 
1860
                              format.workingtree_format.__class__):
 
1861
                # the workingtree needs an upgrade.
 
1862
                return True
 
1863
        except (errors.NoWorkingTree, errors.NotLocalUrl):
 
1864
            pass
 
1865
        return False
 
1866
 
 
1867
    def open_branch(self, name=None, unsupported=False,
 
1868
                    ignore_fallbacks=False):
 
1869
        """See BzrDir.open_branch."""
 
1870
        format = self.find_branch_format(name=name)
 
1871
        self._check_supported(format, unsupported)
 
1872
        return format.open(self, name=name,
 
1873
            _found=True, ignore_fallbacks=ignore_fallbacks)
 
1874
 
 
1875
    def open_repository(self, unsupported=False):
 
1876
        """See BzrDir.open_repository."""
 
1877
        from bzrlib.repository import RepositoryFormat
 
1878
        format = RepositoryFormat.find_format(self)
 
1879
        self._check_supported(format, unsupported)
 
1880
        return format.open(self, _found=True)
 
1881
 
 
1882
    def open_workingtree(self, unsupported=False,
 
1883
            recommend_upgrade=True):
 
1884
        """See BzrDir.open_workingtree."""
 
1885
        from bzrlib.workingtree import WorkingTreeFormat
 
1886
        format = WorkingTreeFormat.find_format(self)
 
1887
        self._check_supported(format, unsupported,
 
1888
            recommend_upgrade,
 
1889
            basedir=self.root_transport.base)
 
1890
        return format.open(self, _found=True)
 
1891
 
 
1892
    def _get_config(self):
 
1893
        return config.TransportConfig(self.transport, 'control.conf')
 
1894
 
 
1895
 
 
1896
class BzrDirFormat(object):
 
1897
    """An encapsulation of the initialization and open routines for a format.
 
1898
 
 
1899
    Formats provide three things:
 
1900
     * An initialization routine,
 
1901
     * a format string,
 
1902
     * an open routine.
 
1903
 
 
1904
    Formats are placed in a dict by their format string for reference
 
1905
    during bzrdir opening. These should be subclasses of BzrDirFormat
 
1906
    for consistency.
 
1907
 
 
1908
    Once a format is deprecated, just deprecate the initialize and open
 
1909
    methods on the format class. Do not deprecate the object, as the
 
1910
    object will be created every system load.
 
1911
 
 
1912
    :cvar colocated_branches: Whether this formats supports colocated branches.
 
1913
    """
 
1914
 
 
1915
    _default_format = None
 
1916
    """The default format used for new .bzr dirs."""
 
1917
 
 
1918
    _formats = {}
 
1919
    """The known formats."""
 
1920
 
 
1921
    _control_formats = []
 
1922
    """The registered control formats - .bzr, ....
 
1923
 
 
1924
    This is a list of BzrDirFormat objects.
 
1925
    """
 
1926
 
 
1927
    _control_server_formats = []
 
1928
    """The registered control server formats, e.g. RemoteBzrDirs.
 
1929
 
 
1930
    This is a list of BzrDirFormat objects.
 
1931
    """
 
1932
 
 
1933
    _lock_file_name = 'branch-lock'
 
1934
 
 
1935
    colocated_branches = False
 
1936
    """Whether co-located branches are supported for this control dir format.
 
1937
    """
 
1938
 
 
1939
    # _lock_class must be set in subclasses to the lock type, typ.
 
1940
    # TransportLock or LockDir
 
1941
 
 
1942
    @classmethod
 
1943
    def find_format(klass, transport, _server_formats=True):
 
1944
        """Return the format present at transport."""
 
1945
        if _server_formats:
 
1946
            formats = klass._control_server_formats + klass._control_formats
 
1947
        else:
 
1948
            formats = klass._control_formats
 
1949
        for format in formats:
 
1950
            try:
 
1951
                return format.probe_transport(transport)
 
1952
            except errors.NotBranchError:
 
1953
                # this format does not find a control dir here.
 
1954
                pass
 
1955
        raise errors.NotBranchError(path=transport.base)
 
1956
 
 
1957
    @classmethod
 
1958
    def probe_transport(klass, transport):
 
1959
        """Return the .bzrdir style format present in a directory."""
 
1960
        try:
 
1961
            format_string = transport.get_bytes(".bzr/branch-format")
 
1962
        except errors.NoSuchFile:
 
1963
            raise errors.NotBranchError(path=transport.base)
 
1964
        try:
 
1965
            return klass._formats[format_string]
 
1966
        except KeyError:
 
1967
            raise errors.UnknownFormatError(format=format_string, kind='bzrdir')
 
1968
 
 
1969
    @classmethod
 
1970
    def get_default_format(klass):
 
1971
        """Return the current default format."""
 
1972
        return klass._default_format
 
1973
 
 
1974
    def get_format_string(self):
 
1975
        """Return the ASCII format string that identifies this format."""
 
1976
        raise NotImplementedError(self.get_format_string)
 
1977
 
 
1978
    def get_format_description(self):
 
1979
        """Return the short description for this format."""
 
1980
        raise NotImplementedError(self.get_format_description)
 
1981
 
 
1982
    def get_converter(self, format=None):
 
1983
        """Return the converter to use to convert bzrdirs needing converts.
 
1984
 
 
1985
        This returns a bzrlib.bzrdir.Converter object.
 
1986
 
 
1987
        This should return the best upgrader to step this format towards the
 
1988
        current default format. In the case of plugins we can/should provide
 
1989
        some means for them to extend the range of returnable converters.
 
1990
 
 
1991
        :param format: Optional format to override the default format of the
 
1992
                       library.
 
1993
        """
 
1994
        raise NotImplementedError(self.get_converter)
 
1995
 
 
1996
    def initialize(self, url, possible_transports=None):
 
1997
        """Create a bzr control dir at this url and return an opened copy.
 
1998
 
 
1999
        While not deprecated, this method is very specific and its use will
 
2000
        lead to many round trips to setup a working environment. See
 
2001
        initialize_on_transport_ex for a [nearly] all-in-one method.
 
2002
 
 
2003
        Subclasses should typically override initialize_on_transport
 
2004
        instead of this method.
 
2005
        """
 
2006
        return self.initialize_on_transport(get_transport(url,
 
2007
                                                          possible_transports))
 
2008
 
 
2009
    def initialize_on_transport(self, transport):
 
2010
        """Initialize a new bzrdir in the base directory of a Transport."""
 
2011
        try:
 
2012
            # can we hand off the request to the smart server rather than using
 
2013
            # vfs calls?
 
2014
            client_medium = transport.get_smart_medium()
 
2015
        except errors.NoSmartMedium:
 
2016
            return self._initialize_on_transport_vfs(transport)
 
2017
        else:
 
2018
            # Current RPC's only know how to create bzr metadir1 instances, so
 
2019
            # we still delegate to vfs methods if the requested format is not a
 
2020
            # metadir1
 
2021
            if type(self) != BzrDirMetaFormat1:
 
2022
                return self._initialize_on_transport_vfs(transport)
 
2023
            remote_format = RemoteBzrDirFormat()
 
2024
            self._supply_sub_formats_to(remote_format)
 
2025
            return remote_format.initialize_on_transport(transport)
 
2026
 
 
2027
    def initialize_on_transport_ex(self, transport, use_existing_dir=False,
 
2028
        create_prefix=False, force_new_repo=False, stacked_on=None,
 
2029
        stack_on_pwd=None, repo_format_name=None, make_working_trees=None,
 
2030
        shared_repo=False, vfs_only=False):
 
2031
        """Create this format on transport.
 
2032
 
 
2033
        The directory to initialize will be created.
 
2034
 
 
2035
        :param force_new_repo: Do not use a shared repository for the target,
 
2036
                               even if one is available.
 
2037
        :param create_prefix: Create any missing directories leading up to
 
2038
            to_transport.
 
2039
        :param use_existing_dir: Use an existing directory if one exists.
 
2040
        :param stacked_on: A url to stack any created branch on, None to follow
 
2041
            any target stacking policy.
 
2042
        :param stack_on_pwd: If stack_on is relative, the location it is
 
2043
            relative to.
 
2044
        :param repo_format_name: If non-None, a repository will be
 
2045
            made-or-found. Should none be found, or if force_new_repo is True
 
2046
            the repo_format_name is used to select the format of repository to
 
2047
            create.
 
2048
        :param make_working_trees: Control the setting of make_working_trees
 
2049
            for a new shared repository when one is made. None to use whatever
 
2050
            default the format has.
 
2051
        :param shared_repo: Control whether made repositories are shared or
 
2052
            not.
 
2053
        :param vfs_only: If True do not attempt to use a smart server
 
2054
        :return: repo, bzrdir, require_stacking, repository_policy. repo is
 
2055
            None if none was created or found, bzrdir is always valid.
 
2056
            require_stacking is the result of examining the stacked_on
 
2057
            parameter and any stacking policy found for the target.
 
2058
        """
 
2059
        if not vfs_only:
 
2060
            # Try to hand off to a smart server 
 
2061
            try:
 
2062
                client_medium = transport.get_smart_medium()
 
2063
            except errors.NoSmartMedium:
 
2064
                pass
 
2065
            else:
 
2066
                # TODO: lookup the local format from a server hint.
 
2067
                remote_dir_format = RemoteBzrDirFormat()
 
2068
                remote_dir_format._network_name = self.network_name()
 
2069
                self._supply_sub_formats_to(remote_dir_format)
 
2070
                return remote_dir_format.initialize_on_transport_ex(transport,
 
2071
                    use_existing_dir=use_existing_dir, create_prefix=create_prefix,
 
2072
                    force_new_repo=force_new_repo, stacked_on=stacked_on,
 
2073
                    stack_on_pwd=stack_on_pwd, repo_format_name=repo_format_name,
 
2074
                    make_working_trees=make_working_trees, shared_repo=shared_repo)
 
2075
        # XXX: Refactor the create_prefix/no_create_prefix code into a
 
2076
        #      common helper function
 
2077
        # The destination may not exist - if so make it according to policy.
 
2078
        def make_directory(transport):
 
2079
            transport.mkdir('.')
 
2080
            return transport
 
2081
        def redirected(transport, e, redirection_notice):
 
2082
            note(redirection_notice)
 
2083
            return transport._redirected_to(e.source, e.target)
 
2084
        try:
 
2085
            transport = do_catching_redirections(make_directory, transport,
 
2086
                redirected)
 
2087
        except errors.FileExists:
 
2088
            if not use_existing_dir:
 
2089
                raise
 
2090
        except errors.NoSuchFile:
 
2091
            if not create_prefix:
 
2092
                raise
 
2093
            transport.create_prefix()
 
2094
 
 
2095
        require_stacking = (stacked_on is not None)
 
2096
        # Now the target directory exists, but doesn't have a .bzr
 
2097
        # directory. So we need to create it, along with any work to create
 
2098
        # all of the dependent branches, etc.
 
2099
 
 
2100
        result = self.initialize_on_transport(transport)
 
2101
        if repo_format_name:
 
2102
            try:
 
2103
                # use a custom format
 
2104
                result._format.repository_format = \
 
2105
                    repository.network_format_registry.get(repo_format_name)
 
2106
            except AttributeError:
 
2107
                # The format didn't permit it to be set.
 
2108
                pass
 
2109
            # A repository is desired, either in-place or shared.
 
2110
            repository_policy = result.determine_repository_policy(
 
2111
                force_new_repo, stacked_on, stack_on_pwd,
 
2112
                require_stacking=require_stacking)
 
2113
            result_repo, is_new_repo = repository_policy.acquire_repository(
 
2114
                make_working_trees, shared_repo)
 
2115
            if not require_stacking and repository_policy._require_stacking:
 
2116
                require_stacking = True
 
2117
                result._format.require_stacking()
 
2118
            result_repo.lock_write()
 
2119
        else:
 
2120
            result_repo = None
 
2121
            repository_policy = None
 
2122
        return result_repo, result, require_stacking, repository_policy
 
2123
 
 
2124
    def _initialize_on_transport_vfs(self, transport):
 
2125
        """Initialize a new bzrdir using VFS calls.
 
2126
 
 
2127
        :param transport: The transport to create the .bzr directory in.
 
2128
        :return: A
 
2129
        """
 
2130
        # Since we are creating a .bzr directory, inherit the
 
2131
        # mode from the root directory
 
2132
        temp_control = lockable_files.LockableFiles(transport,
 
2133
                            '', lockable_files.TransportLock)
 
2134
        temp_control._transport.mkdir('.bzr',
 
2135
                                      # FIXME: RBC 20060121 don't peek under
 
2136
                                      # the covers
 
2137
                                      mode=temp_control._dir_mode)
 
2138
        if sys.platform == 'win32' and isinstance(transport, local.LocalTransport):
 
2139
            win32utils.set_file_attr_hidden(transport._abspath('.bzr'))
 
2140
        file_mode = temp_control._file_mode
 
2141
        del temp_control
 
2142
        bzrdir_transport = transport.clone('.bzr')
 
2143
        utf8_files = [('README',
 
2144
                       "This is a Bazaar control directory.\n"
 
2145
                       "Do not change any files in this directory.\n"
 
2146
                       "See http://bazaar-vcs.org/ for more information about Bazaar.\n"),
 
2147
                      ('branch-format', self.get_format_string()),
 
2148
                      ]
 
2149
        # NB: no need to escape relative paths that are url safe.
 
2150
        control_files = lockable_files.LockableFiles(bzrdir_transport,
 
2151
            self._lock_file_name, self._lock_class)
 
2152
        control_files.create_lock()
 
2153
        control_files.lock_write()
 
2154
        try:
 
2155
            for (filename, content) in utf8_files:
 
2156
                bzrdir_transport.put_bytes(filename, content,
 
2157
                    mode=file_mode)
 
2158
        finally:
 
2159
            control_files.unlock()
 
2160
        return self.open(transport, _found=True)
 
2161
 
 
2162
    def is_supported(self):
 
2163
        """Is this format supported?
 
2164
 
 
2165
        Supported formats must be initializable and openable.
 
2166
        Unsupported formats may not support initialization or committing or
 
2167
        some other features depending on the reason for not being supported.
 
2168
        """
 
2169
        return True
 
2170
 
 
2171
    def network_name(self):
 
2172
        """A simple byte string uniquely identifying this format for RPC calls.
 
2173
 
 
2174
        Bzr control formats use thir disk format string to identify the format
 
2175
        over the wire. Its possible that other control formats have more
 
2176
        complex detection requirements, so we permit them to use any unique and
 
2177
        immutable string they desire.
 
2178
        """
 
2179
        raise NotImplementedError(self.network_name)
 
2180
 
 
2181
    def same_model(self, target_format):
 
2182
        return (self.repository_format.rich_root_data ==
 
2183
            target_format.rich_root_data)
 
2184
 
 
2185
    @classmethod
 
2186
    def known_formats(klass):
 
2187
        """Return all the known formats.
 
2188
 
 
2189
        Concrete formats should override _known_formats.
 
2190
        """
 
2191
        # There is double indirection here to make sure that control
 
2192
        # formats used by more than one dir format will only be probed
 
2193
        # once. This can otherwise be quite expensive for remote connections.
 
2194
        result = set()
 
2195
        for format in klass._control_formats:
 
2196
            result.update(format._known_formats())
 
2197
        return result
 
2198
 
 
2199
    @classmethod
 
2200
    def _known_formats(klass):
 
2201
        """Return the known format instances for this control format."""
 
2202
        return set(klass._formats.values())
 
2203
 
 
2204
    def open(self, transport, _found=False):
 
2205
        """Return an instance of this format for the dir transport points at.
 
2206
 
 
2207
        _found is a private parameter, do not use it.
 
2208
        """
 
2209
        if not _found:
 
2210
            found_format = BzrDirFormat.find_format(transport)
 
2211
            if not isinstance(found_format, self.__class__):
 
2212
                raise AssertionError("%s was asked to open %s, but it seems to need "
 
2213
                        "format %s"
 
2214
                        % (self, transport, found_format))
 
2215
            # Allow subclasses - use the found format.
 
2216
            self._supply_sub_formats_to(found_format)
 
2217
            return found_format._open(transport)
 
2218
        return self._open(transport)
 
2219
 
 
2220
    def _open(self, transport):
 
2221
        """Template method helper for opening BzrDirectories.
 
2222
 
 
2223
        This performs the actual open and any additional logic or parameter
 
2224
        passing.
 
2225
        """
 
2226
        raise NotImplementedError(self._open)
 
2227
 
 
2228
    @classmethod
 
2229
    def register_format(klass, format):
 
2230
        klass._formats[format.get_format_string()] = format
 
2231
        # bzr native formats have a network name of their format string.
 
2232
        network_format_registry.register(format.get_format_string(), format.__class__)
 
2233
 
 
2234
    @classmethod
 
2235
    def register_control_format(klass, format):
 
2236
        """Register a format that does not use '.bzr' for its control dir.
 
2237
 
 
2238
        TODO: This should be pulled up into a 'ControlDirFormat' base class
 
2239
        which BzrDirFormat can inherit from, and renamed to register_format
 
2240
        there. It has been done without that for now for simplicity of
 
2241
        implementation.
 
2242
        """
 
2243
        klass._control_formats.append(format)
 
2244
 
 
2245
    @classmethod
 
2246
    def register_control_server_format(klass, format):
 
2247
        """Register a control format for client-server environments.
 
2248
 
 
2249
        These formats will be tried before ones registered with
 
2250
        register_control_format.  This gives implementations that decide to the
 
2251
        chance to grab it before anything looks at the contents of the format
 
2252
        file.
 
2253
        """
 
2254
        klass._control_server_formats.append(format)
 
2255
 
 
2256
    @classmethod
 
2257
    def _set_default_format(klass, format):
 
2258
        """Set default format (for testing behavior of defaults only)"""
 
2259
        klass._default_format = format
 
2260
 
 
2261
    def __str__(self):
 
2262
        # Trim the newline
 
2263
        return self.get_format_description().rstrip()
 
2264
 
 
2265
    def _supply_sub_formats_to(self, other_format):
 
2266
        """Give other_format the same values for sub formats as this has.
 
2267
 
 
2268
        This method is expected to be used when parameterising a
 
2269
        RemoteBzrDirFormat instance with the parameters from a
 
2270
        BzrDirMetaFormat1 instance.
 
2271
 
 
2272
        :param other_format: other_format is a format which should be
 
2273
            compatible with whatever sub formats are supported by self.
 
2274
        :return: None.
 
2275
        """
 
2276
 
 
2277
    @classmethod
 
2278
    def unregister_format(klass, format):
 
2279
        del klass._formats[format.get_format_string()]
 
2280
 
 
2281
    @classmethod
 
2282
    def unregister_control_format(klass, format):
 
2283
        klass._control_formats.remove(format)
 
2284
 
 
2285
 
 
2286
class BzrDirFormat4(BzrDirFormat):
 
2287
    """Bzr dir format 4.
 
2288
 
 
2289
    This format is a combined format for working tree, branch and repository.
 
2290
    It has:
 
2291
     - Format 1 working trees [always]
 
2292
     - Format 4 branches [always]
 
2293
     - Format 4 repositories [always]
 
2294
 
 
2295
    This format is deprecated: it indexes texts using a text it which is
 
2296
    removed in format 5; write support for this format has been removed.
 
2297
    """
 
2298
 
 
2299
    _lock_class = lockable_files.TransportLock
 
2300
 
 
2301
    def get_format_string(self):
 
2302
        """See BzrDirFormat.get_format_string()."""
 
2303
        return "Bazaar-NG branch, format 0.0.4\n"
 
2304
 
 
2305
    def get_format_description(self):
 
2306
        """See BzrDirFormat.get_format_description()."""
 
2307
        return "All-in-one format 4"
 
2308
 
 
2309
    def get_converter(self, format=None):
 
2310
        """See BzrDirFormat.get_converter()."""
 
2311
        # there is one and only one upgrade path here.
 
2312
        return ConvertBzrDir4To5()
 
2313
 
 
2314
    def initialize_on_transport(self, transport):
 
2315
        """Format 4 branches cannot be created."""
 
2316
        raise errors.UninitializableFormat(self)
 
2317
 
 
2318
    def is_supported(self):
 
2319
        """Format 4 is not supported.
 
2320
 
 
2321
        It is not supported because the model changed from 4 to 5 and the
 
2322
        conversion logic is expensive - so doing it on the fly was not
 
2323
        feasible.
 
2324
        """
 
2325
        return False
 
2326
 
 
2327
    def network_name(self):
 
2328
        return self.get_format_string()
 
2329
 
 
2330
    def _open(self, transport):
 
2331
        """See BzrDirFormat._open."""
 
2332
        return BzrDir4(transport, self)
 
2333
 
 
2334
    def __return_repository_format(self):
 
2335
        """Circular import protection."""
 
2336
        from bzrlib.repofmt.weaverepo import RepositoryFormat4
 
2337
        return RepositoryFormat4()
 
2338
    repository_format = property(__return_repository_format)
 
2339
 
 
2340
 
 
2341
class BzrDirFormatAllInOne(BzrDirFormat):
 
2342
    """Common class for formats before meta-dirs."""
 
2343
 
 
2344
    def initialize_on_transport_ex(self, transport, use_existing_dir=False,
 
2345
        create_prefix=False, force_new_repo=False, stacked_on=None,
 
2346
        stack_on_pwd=None, repo_format_name=None, make_working_trees=None,
 
2347
        shared_repo=False):
 
2348
        """See BzrDirFormat.initialize_on_transport_ex."""
 
2349
        require_stacking = (stacked_on is not None)
 
2350
        # Format 5 cannot stack, but we've been asked to - actually init
 
2351
        # a Meta1Dir
 
2352
        if require_stacking:
 
2353
            format = BzrDirMetaFormat1()
 
2354
            return format.initialize_on_transport_ex(transport,
 
2355
                use_existing_dir=use_existing_dir, create_prefix=create_prefix,
 
2356
                force_new_repo=force_new_repo, stacked_on=stacked_on,
 
2357
                stack_on_pwd=stack_on_pwd, repo_format_name=repo_format_name,
 
2358
                make_working_trees=make_working_trees, shared_repo=shared_repo)
 
2359
        return BzrDirFormat.initialize_on_transport_ex(self, transport,
 
2360
            use_existing_dir=use_existing_dir, create_prefix=create_prefix,
 
2361
            force_new_repo=force_new_repo, stacked_on=stacked_on,
 
2362
            stack_on_pwd=stack_on_pwd, repo_format_name=repo_format_name,
 
2363
            make_working_trees=make_working_trees, shared_repo=shared_repo)
 
2364
 
 
2365
 
 
2366
class BzrDirFormat5(BzrDirFormatAllInOne):
 
2367
    """Bzr control format 5.
 
2368
 
 
2369
    This format is a combined format for working tree, branch and repository.
 
2370
    It has:
 
2371
     - Format 2 working trees [always]
 
2372
     - Format 4 branches [always]
 
2373
     - Format 5 repositories [always]
 
2374
       Unhashed stores in the repository.
 
2375
    """
 
2376
 
 
2377
    _lock_class = lockable_files.TransportLock
 
2378
 
 
2379
    def get_format_string(self):
 
2380
        """See BzrDirFormat.get_format_string()."""
 
2381
        return "Bazaar-NG branch, format 5\n"
 
2382
 
 
2383
    def get_branch_format(self):
 
2384
        from bzrlib import branch
 
2385
        return branch.BzrBranchFormat4()
 
2386
 
 
2387
    def get_format_description(self):
 
2388
        """See BzrDirFormat.get_format_description()."""
 
2389
        return "All-in-one format 5"
 
2390
 
 
2391
    def get_converter(self, format=None):
 
2392
        """See BzrDirFormat.get_converter()."""
 
2393
        # there is one and only one upgrade path here.
 
2394
        return ConvertBzrDir5To6()
 
2395
 
 
2396
    def _initialize_for_clone(self, url):
 
2397
        return self.initialize_on_transport(get_transport(url), _cloning=True)
 
2398
 
 
2399
    def initialize_on_transport(self, transport, _cloning=False):
 
2400
        """Format 5 dirs always have working tree, branch and repository.
 
2401
 
 
2402
        Except when they are being cloned.
 
2403
        """
 
2404
        from bzrlib.branch import BzrBranchFormat4
 
2405
        from bzrlib.repofmt.weaverepo import RepositoryFormat5
 
2406
        result = (super(BzrDirFormat5, self).initialize_on_transport(transport))
 
2407
        RepositoryFormat5().initialize(result, _internal=True)
 
2408
        if not _cloning:
 
2409
            branch = BzrBranchFormat4().initialize(result)
 
2410
            result._init_workingtree()
 
2411
        return result
 
2412
 
 
2413
    def network_name(self):
 
2414
        return self.get_format_string()
 
2415
 
 
2416
    def _open(self, transport):
 
2417
        """See BzrDirFormat._open."""
 
2418
        return BzrDir5(transport, self)
 
2419
 
 
2420
    def __return_repository_format(self):
 
2421
        """Circular import protection."""
 
2422
        from bzrlib.repofmt.weaverepo import RepositoryFormat5
 
2423
        return RepositoryFormat5()
 
2424
    repository_format = property(__return_repository_format)
 
2425
 
 
2426
 
 
2427
class BzrDirFormat6(BzrDirFormatAllInOne):
 
2428
    """Bzr control format 6.
 
2429
 
 
2430
    This format is a combined format for working tree, branch and repository.
 
2431
    It has:
 
2432
     - Format 2 working trees [always]
 
2433
     - Format 4 branches [always]
 
2434
     - Format 6 repositories [always]
 
2435
    """
 
2436
 
 
2437
    _lock_class = lockable_files.TransportLock
 
2438
 
 
2439
    def get_format_string(self):
 
2440
        """See BzrDirFormat.get_format_string()."""
 
2441
        return "Bazaar-NG branch, format 6\n"
 
2442
 
 
2443
    def get_format_description(self):
 
2444
        """See BzrDirFormat.get_format_description()."""
 
2445
        return "All-in-one format 6"
 
2446
 
 
2447
    def get_branch_format(self):
 
2448
        from bzrlib import branch
 
2449
        return branch.BzrBranchFormat4()
 
2450
 
 
2451
    def get_converter(self, format=None):
 
2452
        """See BzrDirFormat.get_converter()."""
 
2453
        # there is one and only one upgrade path here.
 
2454
        return ConvertBzrDir6ToMeta()
 
2455
 
 
2456
    def _initialize_for_clone(self, url):
 
2457
        return self.initialize_on_transport(get_transport(url), _cloning=True)
 
2458
 
 
2459
    def initialize_on_transport(self, transport, _cloning=False):
 
2460
        """Format 6 dirs always have working tree, branch and repository.
 
2461
 
 
2462
        Except when they are being cloned.
 
2463
        """
 
2464
        from bzrlib.branch import BzrBranchFormat4
 
2465
        from bzrlib.repofmt.weaverepo import RepositoryFormat6
 
2466
        result = super(BzrDirFormat6, self).initialize_on_transport(transport)
 
2467
        RepositoryFormat6().initialize(result, _internal=True)
 
2468
        if not _cloning:
 
2469
            branch = BzrBranchFormat4().initialize(result)
 
2470
            result._init_workingtree()
 
2471
        return result
 
2472
 
 
2473
    def network_name(self):
 
2474
        return self.get_format_string()
 
2475
 
 
2476
    def _open(self, transport):
 
2477
        """See BzrDirFormat._open."""
 
2478
        return BzrDir6(transport, self)
 
2479
 
 
2480
    def __return_repository_format(self):
 
2481
        """Circular import protection."""
 
2482
        from bzrlib.repofmt.weaverepo import RepositoryFormat6
 
2483
        return RepositoryFormat6()
 
2484
    repository_format = property(__return_repository_format)
 
2485
 
 
2486
 
 
2487
class BzrDirMetaFormat1(BzrDirFormat):
 
2488
    """Bzr meta control format 1
 
2489
 
 
2490
    This is the first format with split out working tree, branch and repository
 
2491
    disk storage.
 
2492
    It has:
 
2493
     - Format 3 working trees [optional]
 
2494
     - Format 5 branches [optional]
 
2495
     - Format 7 repositories [optional]
 
2496
    """
 
2497
 
 
2498
    _lock_class = lockdir.LockDir
 
2499
 
 
2500
    def __init__(self):
 
2501
        self._workingtree_format = None
 
2502
        self._branch_format = None
 
2503
        self._repository_format = None
 
2504
 
 
2505
    def __eq__(self, other):
 
2506
        if other.__class__ is not self.__class__:
 
2507
            return False
 
2508
        if other.repository_format != self.repository_format:
 
2509
            return False
 
2510
        if other.workingtree_format != self.workingtree_format:
 
2511
            return False
 
2512
        return True
 
2513
 
 
2514
    def __ne__(self, other):
 
2515
        return not self == other
 
2516
 
 
2517
    def get_branch_format(self):
 
2518
        if self._branch_format is None:
 
2519
            from bzrlib.branch import BranchFormat
 
2520
            self._branch_format = BranchFormat.get_default_format()
 
2521
        return self._branch_format
 
2522
 
 
2523
    def set_branch_format(self, format):
 
2524
        self._branch_format = format
 
2525
 
 
2526
    def require_stacking(self, stack_on=None, possible_transports=None,
 
2527
            _skip_repo=False):
 
2528
        """We have a request to stack, try to ensure the formats support it.
 
2529
 
 
2530
        :param stack_on: If supplied, it is the URL to a branch that we want to
 
2531
            stack on. Check to see if that format supports stacking before
 
2532
            forcing an upgrade.
 
2533
        """
 
2534
        # Stacking is desired. requested by the target, but does the place it
 
2535
        # points at support stacking? If it doesn't then we should
 
2536
        # not implicitly upgrade. We check this here.
 
2537
        new_repo_format = None
 
2538
        new_branch_format = None
 
2539
 
 
2540
        # a bit of state for get_target_branch so that we don't try to open it
 
2541
        # 2 times, for both repo *and* branch
 
2542
        target = [None, False, None] # target_branch, checked, upgrade anyway
 
2543
        def get_target_branch():
 
2544
            if target[1]:
 
2545
                # We've checked, don't check again
 
2546
                return target
 
2547
            if stack_on is None:
 
2548
                # No target format, that means we want to force upgrading
 
2549
                target[:] = [None, True, True]
 
2550
                return target
 
2551
            try:
 
2552
                target_dir = BzrDir.open(stack_on,
 
2553
                    possible_transports=possible_transports)
 
2554
            except errors.NotBranchError:
 
2555
                # Nothing there, don't change formats
 
2556
                target[:] = [None, True, False]
 
2557
                return target
 
2558
            except errors.JailBreak:
 
2559
                # JailBreak, JFDI and upgrade anyway
 
2560
                target[:] = [None, True, True]
 
2561
                return target
 
2562
            try:
 
2563
                target_branch = target_dir.open_branch()
 
2564
            except errors.NotBranchError:
 
2565
                # No branch, don't upgrade formats
 
2566
                target[:] = [None, True, False]
 
2567
                return target
 
2568
            target[:] = [target_branch, True, False]
 
2569
            return target
 
2570
 
 
2571
        if (not _skip_repo and
 
2572
                 not self.repository_format.supports_external_lookups):
 
2573
            # We need to upgrade the Repository.
 
2574
            target_branch, _, do_upgrade = get_target_branch()
 
2575
            if target_branch is None:
 
2576
                # We don't have a target branch, should we upgrade anyway?
 
2577
                if do_upgrade:
 
2578
                    # stack_on is inaccessible, JFDI.
 
2579
                    # TODO: bad monkey, hard-coded formats...
 
2580
                    if self.repository_format.rich_root_data:
 
2581
                        new_repo_format = pack_repo.RepositoryFormatKnitPack5RichRoot()
 
2582
                    else:
 
2583
                        new_repo_format = pack_repo.RepositoryFormatKnitPack5()
 
2584
            else:
 
2585
                # If the target already supports stacking, then we know the
 
2586
                # project is already able to use stacking, so auto-upgrade
 
2587
                # for them
 
2588
                new_repo_format = target_branch.repository._format
 
2589
                if not new_repo_format.supports_external_lookups:
 
2590
                    # target doesn't, source doesn't, so don't auto upgrade
 
2591
                    # repo
 
2592
                    new_repo_format = None
 
2593
            if new_repo_format is not None:
 
2594
                self.repository_format = new_repo_format
 
2595
                note('Source repository format does not support stacking,'
 
2596
                     ' using format:\n  %s',
 
2597
                     new_repo_format.get_format_description())
 
2598
 
 
2599
        if not self.get_branch_format().supports_stacking():
 
2600
            # We just checked the repo, now lets check if we need to
 
2601
            # upgrade the branch format
 
2602
            target_branch, _, do_upgrade = get_target_branch()
 
2603
            if target_branch is None:
 
2604
                if do_upgrade:
 
2605
                    # TODO: bad monkey, hard-coded formats...
 
2606
                    new_branch_format = branch.BzrBranchFormat7()
 
2607
            else:
 
2608
                new_branch_format = target_branch._format
 
2609
                if not new_branch_format.supports_stacking():
 
2610
                    new_branch_format = None
 
2611
            if new_branch_format is not None:
 
2612
                # Does support stacking, use its format.
 
2613
                self.set_branch_format(new_branch_format)
 
2614
                note('Source branch format does not support stacking,'
 
2615
                     ' using format:\n  %s',
 
2616
                     new_branch_format.get_format_description())
 
2617
 
 
2618
    def get_converter(self, format=None):
 
2619
        """See BzrDirFormat.get_converter()."""
 
2620
        if format is None:
 
2621
            format = BzrDirFormat.get_default_format()
 
2622
        if not isinstance(self, format.__class__):
 
2623
            # converting away from metadir is not implemented
 
2624
            raise NotImplementedError(self.get_converter)
 
2625
        return ConvertMetaToMeta(format)
 
2626
 
 
2627
    def get_format_string(self):
 
2628
        """See BzrDirFormat.get_format_string()."""
 
2629
        return "Bazaar-NG meta directory, format 1\n"
 
2630
 
 
2631
    def get_format_description(self):
 
2632
        """See BzrDirFormat.get_format_description()."""
 
2633
        return "Meta directory format 1"
 
2634
 
 
2635
    def network_name(self):
 
2636
        return self.get_format_string()
 
2637
 
 
2638
    def _open(self, transport):
 
2639
        """See BzrDirFormat._open."""
 
2640
        # Create a new format instance because otherwise initialisation of new
 
2641
        # metadirs share the global default format object leading to alias
 
2642
        # problems.
 
2643
        format = BzrDirMetaFormat1()
 
2644
        self._supply_sub_formats_to(format)
 
2645
        return BzrDirMeta1(transport, format)
 
2646
 
 
2647
    def __return_repository_format(self):
 
2648
        """Circular import protection."""
 
2649
        if self._repository_format:
 
2650
            return self._repository_format
 
2651
        from bzrlib.repository import RepositoryFormat
 
2652
        return RepositoryFormat.get_default_format()
 
2653
 
 
2654
    def _set_repository_format(self, value):
 
2655
        """Allow changing the repository format for metadir formats."""
 
2656
        self._repository_format = value
 
2657
 
 
2658
    repository_format = property(__return_repository_format,
 
2659
        _set_repository_format)
 
2660
 
 
2661
    def _supply_sub_formats_to(self, other_format):
 
2662
        """Give other_format the same values for sub formats as this has.
 
2663
 
 
2664
        This method is expected to be used when parameterising a
 
2665
        RemoteBzrDirFormat instance with the parameters from a
 
2666
        BzrDirMetaFormat1 instance.
 
2667
 
 
2668
        :param other_format: other_format is a format which should be
 
2669
            compatible with whatever sub formats are supported by self.
 
2670
        :return: None.
 
2671
        """
 
2672
        if getattr(self, '_repository_format', None) is not None:
 
2673
            other_format.repository_format = self.repository_format
 
2674
        if self._branch_format is not None:
 
2675
            other_format._branch_format = self._branch_format
 
2676
        if self._workingtree_format is not None:
 
2677
            other_format.workingtree_format = self.workingtree_format
 
2678
 
 
2679
    def __get_workingtree_format(self):
 
2680
        if self._workingtree_format is None:
 
2681
            from bzrlib.workingtree import WorkingTreeFormat
 
2682
            self._workingtree_format = WorkingTreeFormat.get_default_format()
 
2683
        return self._workingtree_format
 
2684
 
 
2685
    def __set_workingtree_format(self, wt_format):
 
2686
        self._workingtree_format = wt_format
 
2687
 
 
2688
    workingtree_format = property(__get_workingtree_format,
 
2689
                                  __set_workingtree_format)
 
2690
 
 
2691
 
 
2692
network_format_registry = registry.FormatRegistry()
 
2693
"""Registry of formats indexed by their network name.
 
2694
 
 
2695
The network name for a BzrDirFormat is an identifier that can be used when
 
2696
referring to formats with smart server operations. See
 
2697
BzrDirFormat.network_name() for more detail.
 
2698
"""
 
2699
 
 
2700
 
 
2701
# Register bzr control format
 
2702
BzrDirFormat.register_control_format(BzrDirFormat)
 
2703
 
 
2704
# Register bzr formats
 
2705
BzrDirFormat.register_format(BzrDirFormat4())
 
2706
BzrDirFormat.register_format(BzrDirFormat5())
 
2707
BzrDirFormat.register_format(BzrDirFormat6())
 
2708
__default_format = BzrDirMetaFormat1()
 
2709
BzrDirFormat.register_format(__default_format)
 
2710
BzrDirFormat._default_format = __default_format
 
2711
 
 
2712
 
 
2713
class Converter(object):
 
2714
    """Converts a disk format object from one format to another."""
 
2715
 
 
2716
    def convert(self, to_convert, pb):
 
2717
        """Perform the conversion of to_convert, giving feedback via pb.
 
2718
 
 
2719
        :param to_convert: The disk object to convert.
 
2720
        :param pb: a progress bar to use for progress information.
 
2721
        """
 
2722
 
 
2723
    def step(self, message):
 
2724
        """Update the pb by a step."""
 
2725
        self.count +=1
 
2726
        self.pb.update(message, self.count, self.total)
 
2727
 
 
2728
 
 
2729
class ConvertBzrDir4To5(Converter):
 
2730
    """Converts format 4 bzr dirs to format 5."""
 
2731
 
 
2732
    def __init__(self):
 
2733
        super(ConvertBzrDir4To5, self).__init__()
 
2734
        self.converted_revs = set()
 
2735
        self.absent_revisions = set()
 
2736
        self.text_count = 0
 
2737
        self.revisions = {}
 
2738
 
 
2739
    def convert(self, to_convert, pb):
 
2740
        """See Converter.convert()."""
 
2741
        self.bzrdir = to_convert
 
2742
        if pb is not None:
 
2743
            warnings.warn("pb parameter to convert() is deprecated")
 
2744
        self.pb = ui.ui_factory.nested_progress_bar()
 
2745
        try:
 
2746
            ui.ui_factory.note('starting upgrade from format 4 to 5')
 
2747
            if isinstance(self.bzrdir.transport, local.LocalTransport):
 
2748
                self.bzrdir.get_workingtree_transport(None).delete('stat-cache')
 
2749
            self._convert_to_weaves()
 
2750
            return BzrDir.open(self.bzrdir.user_url)
 
2751
        finally:
 
2752
            self.pb.finished()
 
2753
 
 
2754
    def _convert_to_weaves(self):
 
2755
        ui.ui_factory.note('note: upgrade may be faster if all store files are ungzipped first')
 
2756
        try:
 
2757
            # TODO permissions
 
2758
            stat = self.bzrdir.transport.stat('weaves')
 
2759
            if not S_ISDIR(stat.st_mode):
 
2760
                self.bzrdir.transport.delete('weaves')
 
2761
                self.bzrdir.transport.mkdir('weaves')
 
2762
        except errors.NoSuchFile:
 
2763
            self.bzrdir.transport.mkdir('weaves')
 
2764
        # deliberately not a WeaveFile as we want to build it up slowly.
 
2765
        self.inv_weave = Weave('inventory')
 
2766
        # holds in-memory weaves for all files
 
2767
        self.text_weaves = {}
 
2768
        self.bzrdir.transport.delete('branch-format')
 
2769
        self.branch = self.bzrdir.open_branch()
 
2770
        self._convert_working_inv()
 
2771
        rev_history = self.branch.revision_history()
 
2772
        # to_read is a stack holding the revisions we still need to process;
 
2773
        # appending to it adds new highest-priority revisions
 
2774
        self.known_revisions = set(rev_history)
 
2775
        self.to_read = rev_history[-1:]
 
2776
        while self.to_read:
 
2777
            rev_id = self.to_read.pop()
 
2778
            if (rev_id not in self.revisions
 
2779
                and rev_id not in self.absent_revisions):
 
2780
                self._load_one_rev(rev_id)
 
2781
        self.pb.clear()
 
2782
        to_import = self._make_order()
 
2783
        for i, rev_id in enumerate(to_import):
 
2784
            self.pb.update('converting revision', i, len(to_import))
 
2785
            self._convert_one_rev(rev_id)
 
2786
        self.pb.clear()
 
2787
        self._write_all_weaves()
 
2788
        self._write_all_revs()
 
2789
        ui.ui_factory.note('upgraded to weaves:')
 
2790
        ui.ui_factory.note('  %6d revisions and inventories' % len(self.revisions))
 
2791
        ui.ui_factory.note('  %6d revisions not present' % len(self.absent_revisions))
 
2792
        ui.ui_factory.note('  %6d texts' % self.text_count)
 
2793
        self._cleanup_spare_files_after_format4()
 
2794
        self.branch._transport.put_bytes(
 
2795
            'branch-format',
 
2796
            BzrDirFormat5().get_format_string(),
 
2797
            mode=self.bzrdir._get_file_mode())
 
2798
 
 
2799
    def _cleanup_spare_files_after_format4(self):
 
2800
        # FIXME working tree upgrade foo.
 
2801
        for n in 'merged-patches', 'pending-merged-patches':
 
2802
            try:
 
2803
                ## assert os.path.getsize(p) == 0
 
2804
                self.bzrdir.transport.delete(n)
 
2805
            except errors.NoSuchFile:
 
2806
                pass
 
2807
        self.bzrdir.transport.delete_tree('inventory-store')
 
2808
        self.bzrdir.transport.delete_tree('text-store')
 
2809
 
 
2810
    def _convert_working_inv(self):
 
2811
        inv = xml4.serializer_v4.read_inventory(
 
2812
                self.branch._transport.get('inventory'))
 
2813
        new_inv_xml = xml5.serializer_v5.write_inventory_to_string(inv, working=True)
 
2814
        self.branch._transport.put_bytes('inventory', new_inv_xml,
 
2815
            mode=self.bzrdir._get_file_mode())
 
2816
 
 
2817
    def _write_all_weaves(self):
 
2818
        controlweaves = WeaveStore(self.bzrdir.transport, prefixed=False)
 
2819
        weave_transport = self.bzrdir.transport.clone('weaves')
 
2820
        weaves = WeaveStore(weave_transport, prefixed=False)
 
2821
        transaction = WriteTransaction()
 
2822
 
 
2823
        try:
 
2824
            i = 0
 
2825
            for file_id, file_weave in self.text_weaves.items():
 
2826
                self.pb.update('writing weave', i, len(self.text_weaves))
 
2827
                weaves._put_weave(file_id, file_weave, transaction)
 
2828
                i += 1
 
2829
            self.pb.update('inventory', 0, 1)
 
2830
            controlweaves._put_weave('inventory', self.inv_weave, transaction)
 
2831
            self.pb.update('inventory', 1, 1)
 
2832
        finally:
 
2833
            self.pb.clear()
 
2834
 
 
2835
    def _write_all_revs(self):
 
2836
        """Write all revisions out in new form."""
 
2837
        self.bzrdir.transport.delete_tree('revision-store')
 
2838
        self.bzrdir.transport.mkdir('revision-store')
 
2839
        revision_transport = self.bzrdir.transport.clone('revision-store')
 
2840
        # TODO permissions
 
2841
        from bzrlib.xml5 import serializer_v5
 
2842
        from bzrlib.repofmt.weaverepo import RevisionTextStore
 
2843
        revision_store = RevisionTextStore(revision_transport,
 
2844
            serializer_v5, False, versionedfile.PrefixMapper(),
 
2845
            lambda:True, lambda:True)
 
2846
        try:
 
2847
            for i, rev_id in enumerate(self.converted_revs):
 
2848
                self.pb.update('write revision', i, len(self.converted_revs))
 
2849
                text = serializer_v5.write_revision_to_string(
 
2850
                    self.revisions[rev_id])
 
2851
                key = (rev_id,)
 
2852
                revision_store.add_lines(key, None, osutils.split_lines(text))
 
2853
        finally:
 
2854
            self.pb.clear()
 
2855
 
 
2856
    def _load_one_rev(self, rev_id):
 
2857
        """Load a revision object into memory.
 
2858
 
 
2859
        Any parents not either loaded or abandoned get queued to be
 
2860
        loaded."""
 
2861
        self.pb.update('loading revision',
 
2862
                       len(self.revisions),
 
2863
                       len(self.known_revisions))
 
2864
        if not self.branch.repository.has_revision(rev_id):
 
2865
            self.pb.clear()
 
2866
            ui.ui_factory.note('revision {%s} not present in branch; '
 
2867
                         'will be converted as a ghost' %
 
2868
                         rev_id)
 
2869
            self.absent_revisions.add(rev_id)
 
2870
        else:
 
2871
            rev = self.branch.repository.get_revision(rev_id)
 
2872
            for parent_id in rev.parent_ids:
 
2873
                self.known_revisions.add(parent_id)
 
2874
                self.to_read.append(parent_id)
 
2875
            self.revisions[rev_id] = rev
 
2876
 
 
2877
    def _load_old_inventory(self, rev_id):
 
2878
        f = self.branch.repository.inventory_store.get(rev_id)
 
2879
        try:
 
2880
            old_inv_xml = f.read()
 
2881
        finally:
 
2882
            f.close()
 
2883
        inv = xml4.serializer_v4.read_inventory_from_string(old_inv_xml)
 
2884
        inv.revision_id = rev_id
 
2885
        rev = self.revisions[rev_id]
 
2886
        return inv
 
2887
 
 
2888
    def _load_updated_inventory(self, rev_id):
 
2889
        inv_xml = self.inv_weave.get_text(rev_id)
 
2890
        inv = xml5.serializer_v5.read_inventory_from_string(inv_xml, rev_id)
 
2891
        return inv
 
2892
 
 
2893
    def _convert_one_rev(self, rev_id):
 
2894
        """Convert revision and all referenced objects to new format."""
 
2895
        rev = self.revisions[rev_id]
 
2896
        inv = self._load_old_inventory(rev_id)
 
2897
        present_parents = [p for p in rev.parent_ids
 
2898
                           if p not in self.absent_revisions]
 
2899
        self._convert_revision_contents(rev, inv, present_parents)
 
2900
        self._store_new_inv(rev, inv, present_parents)
 
2901
        self.converted_revs.add(rev_id)
 
2902
 
 
2903
    def _store_new_inv(self, rev, inv, present_parents):
 
2904
        new_inv_xml = xml5.serializer_v5.write_inventory_to_string(inv)
 
2905
        new_inv_sha1 = sha_string(new_inv_xml)
 
2906
        self.inv_weave.add_lines(rev.revision_id,
 
2907
                                 present_parents,
 
2908
                                 new_inv_xml.splitlines(True))
 
2909
        rev.inventory_sha1 = new_inv_sha1
 
2910
 
 
2911
    def _convert_revision_contents(self, rev, inv, present_parents):
 
2912
        """Convert all the files within a revision.
 
2913
 
 
2914
        Also upgrade the inventory to refer to the text revision ids."""
 
2915
        rev_id = rev.revision_id
 
2916
        mutter('converting texts of revision {%s}',
 
2917
               rev_id)
 
2918
        parent_invs = map(self._load_updated_inventory, present_parents)
 
2919
        entries = inv.iter_entries()
 
2920
        entries.next()
 
2921
        for path, ie in entries:
 
2922
            self._convert_file_version(rev, ie, parent_invs)
 
2923
 
 
2924
    def _convert_file_version(self, rev, ie, parent_invs):
 
2925
        """Convert one version of one file.
 
2926
 
 
2927
        The file needs to be added into the weave if it is a merge
 
2928
        of >=2 parents or if it's changed from its parent.
 
2929
        """
 
2930
        file_id = ie.file_id
 
2931
        rev_id = rev.revision_id
 
2932
        w = self.text_weaves.get(file_id)
 
2933
        if w is None:
 
2934
            w = Weave(file_id)
 
2935
            self.text_weaves[file_id] = w
 
2936
        text_changed = False
 
2937
        parent_candiate_entries = ie.parent_candidates(parent_invs)
 
2938
        heads = graph.Graph(self).heads(parent_candiate_entries.keys())
 
2939
        # XXX: Note that this is unordered - and this is tolerable because
 
2940
        # the previous code was also unordered.
 
2941
        previous_entries = dict((head, parent_candiate_entries[head]) for head
 
2942
            in heads)
 
2943
        self.snapshot_ie(previous_entries, ie, w, rev_id)
 
2944
        del ie.text_id
 
2945
 
 
2946
    def get_parent_map(self, revision_ids):
 
2947
        """See graph.StackedParentsProvider.get_parent_map"""
 
2948
        return dict((revision_id, self.revisions[revision_id])
 
2949
                    for revision_id in revision_ids
 
2950
                     if revision_id in self.revisions)
 
2951
 
 
2952
    def snapshot_ie(self, previous_revisions, ie, w, rev_id):
 
2953
        # TODO: convert this logic, which is ~= snapshot to
 
2954
        # a call to:. This needs the path figured out. rather than a work_tree
 
2955
        # a v4 revision_tree can be given, or something that looks enough like
 
2956
        # one to give the file content to the entry if it needs it.
 
2957
        # and we need something that looks like a weave store for snapshot to
 
2958
        # save against.
 
2959
        #ie.snapshot(rev, PATH, previous_revisions, REVISION_TREE, InMemoryWeaveStore(self.text_weaves))
 
2960
        if len(previous_revisions) == 1:
 
2961
            previous_ie = previous_revisions.values()[0]
 
2962
            if ie._unchanged(previous_ie):
 
2963
                ie.revision = previous_ie.revision
 
2964
                return
 
2965
        if ie.has_text():
 
2966
            f = self.branch.repository._text_store.get(ie.text_id)
 
2967
            try:
 
2968
                file_lines = f.readlines()
 
2969
            finally:
 
2970
                f.close()
 
2971
            w.add_lines(rev_id, previous_revisions, file_lines)
 
2972
            self.text_count += 1
 
2973
        else:
 
2974
            w.add_lines(rev_id, previous_revisions, [])
 
2975
        ie.revision = rev_id
 
2976
 
 
2977
    def _make_order(self):
 
2978
        """Return a suitable order for importing revisions.
 
2979
 
 
2980
        The order must be such that an revision is imported after all
 
2981
        its (present) parents.
 
2982
        """
 
2983
        todo = set(self.revisions.keys())
 
2984
        done = self.absent_revisions.copy()
 
2985
        order = []
 
2986
        while todo:
 
2987
            # scan through looking for a revision whose parents
 
2988
            # are all done
 
2989
            for rev_id in sorted(list(todo)):
 
2990
                rev = self.revisions[rev_id]
 
2991
                parent_ids = set(rev.parent_ids)
 
2992
                if parent_ids.issubset(done):
 
2993
                    # can take this one now
 
2994
                    order.append(rev_id)
 
2995
                    todo.remove(rev_id)
 
2996
                    done.add(rev_id)
 
2997
        return order
 
2998
 
 
2999
 
 
3000
class ConvertBzrDir5To6(Converter):
 
3001
    """Converts format 5 bzr dirs to format 6."""
 
3002
 
 
3003
    def convert(self, to_convert, pb):
 
3004
        """See Converter.convert()."""
 
3005
        self.bzrdir = to_convert
 
3006
        pb = ui.ui_factory.nested_progress_bar()
 
3007
        try:
 
3008
            ui.ui_factory.note('starting upgrade from format 5 to 6')
 
3009
            self._convert_to_prefixed()
 
3010
            return BzrDir.open(self.bzrdir.user_url)
 
3011
        finally:
 
3012
            pb.finished()
 
3013
 
 
3014
    def _convert_to_prefixed(self):
 
3015
        from bzrlib.store import TransportStore
 
3016
        self.bzrdir.transport.delete('branch-format')
 
3017
        for store_name in ["weaves", "revision-store"]:
 
3018
            ui.ui_factory.note("adding prefixes to %s" % store_name)
 
3019
            store_transport = self.bzrdir.transport.clone(store_name)
 
3020
            store = TransportStore(store_transport, prefixed=True)
 
3021
            for urlfilename in store_transport.list_dir('.'):
 
3022
                filename = urlutils.unescape(urlfilename)
 
3023
                if (filename.endswith(".weave") or
 
3024
                    filename.endswith(".gz") or
 
3025
                    filename.endswith(".sig")):
 
3026
                    file_id, suffix = os.path.splitext(filename)
 
3027
                else:
 
3028
                    file_id = filename
 
3029
                    suffix = ''
 
3030
                new_name = store._mapper.map((file_id,)) + suffix
 
3031
                # FIXME keep track of the dirs made RBC 20060121
 
3032
                try:
 
3033
                    store_transport.move(filename, new_name)
 
3034
                except errors.NoSuchFile: # catches missing dirs strangely enough
 
3035
                    store_transport.mkdir(osutils.dirname(new_name))
 
3036
                    store_transport.move(filename, new_name)
 
3037
        self.bzrdir.transport.put_bytes(
 
3038
            'branch-format',
 
3039
            BzrDirFormat6().get_format_string(),
 
3040
            mode=self.bzrdir._get_file_mode())
 
3041
 
 
3042
 
 
3043
class ConvertBzrDir6ToMeta(Converter):
 
3044
    """Converts format 6 bzr dirs to metadirs."""
 
3045
 
 
3046
    def convert(self, to_convert, pb):
 
3047
        """See Converter.convert()."""
 
3048
        from bzrlib.repofmt.weaverepo import RepositoryFormat7
 
3049
        from bzrlib.branch import BzrBranchFormat5
 
3050
        self.bzrdir = to_convert
 
3051
        self.pb = ui.ui_factory.nested_progress_bar()
 
3052
        self.count = 0
 
3053
        self.total = 20 # the steps we know about
 
3054
        self.garbage_inventories = []
 
3055
        self.dir_mode = self.bzrdir._get_dir_mode()
 
3056
        self.file_mode = self.bzrdir._get_file_mode()
 
3057
 
 
3058
        ui.ui_factory.note('starting upgrade from format 6 to metadir')
 
3059
        self.bzrdir.transport.put_bytes(
 
3060
                'branch-format',
 
3061
                "Converting to format 6",
 
3062
                mode=self.file_mode)
 
3063
        # its faster to move specific files around than to open and use the apis...
 
3064
        # first off, nuke ancestry.weave, it was never used.
 
3065
        try:
 
3066
            self.step('Removing ancestry.weave')
 
3067
            self.bzrdir.transport.delete('ancestry.weave')
 
3068
        except errors.NoSuchFile:
 
3069
            pass
 
3070
        # find out whats there
 
3071
        self.step('Finding branch files')
 
3072
        last_revision = self.bzrdir.open_branch().last_revision()
 
3073
        bzrcontents = self.bzrdir.transport.list_dir('.')
 
3074
        for name in bzrcontents:
 
3075
            if name.startswith('basis-inventory.'):
 
3076
                self.garbage_inventories.append(name)
 
3077
        # create new directories for repository, working tree and branch
 
3078
        repository_names = [('inventory.weave', True),
 
3079
                            ('revision-store', True),
 
3080
                            ('weaves', True)]
 
3081
        self.step('Upgrading repository  ')
 
3082
        self.bzrdir.transport.mkdir('repository', mode=self.dir_mode)
 
3083
        self.make_lock('repository')
 
3084
        # we hard code the formats here because we are converting into
 
3085
        # the meta format. The meta format upgrader can take this to a
 
3086
        # future format within each component.
 
3087
        self.put_format('repository', RepositoryFormat7())
 
3088
        for entry in repository_names:
 
3089
            self.move_entry('repository', entry)
 
3090
 
 
3091
        self.step('Upgrading branch      ')
 
3092
        self.bzrdir.transport.mkdir('branch', mode=self.dir_mode)
 
3093
        self.make_lock('branch')
 
3094
        self.put_format('branch', BzrBranchFormat5())
 
3095
        branch_files = [('revision-history', True),
 
3096
                        ('branch-name', True),
 
3097
                        ('parent', False)]
 
3098
        for entry in branch_files:
 
3099
            self.move_entry('branch', entry)
 
3100
 
 
3101
        checkout_files = [('pending-merges', True),
 
3102
                          ('inventory', True),
 
3103
                          ('stat-cache', False)]
 
3104
        # If a mandatory checkout file is not present, the branch does not have
 
3105
        # a functional checkout. Do not create a checkout in the converted
 
3106
        # branch.
 
3107
        for name, mandatory in checkout_files:
 
3108
            if mandatory and name not in bzrcontents:
 
3109
                has_checkout = False
 
3110
                break
 
3111
        else:
 
3112
            has_checkout = True
 
3113
        if not has_checkout:
 
3114
            ui.ui_factory.note('No working tree.')
 
3115
            # If some checkout files are there, we may as well get rid of them.
 
3116
            for name, mandatory in checkout_files:
 
3117
                if name in bzrcontents:
 
3118
                    self.bzrdir.transport.delete(name)
 
3119
        else:
 
3120
            from bzrlib.workingtree import WorkingTreeFormat3
 
3121
            self.step('Upgrading working tree')
 
3122
            self.bzrdir.transport.mkdir('checkout', mode=self.dir_mode)
 
3123
            self.make_lock('checkout')
 
3124
            self.put_format(
 
3125
                'checkout', WorkingTreeFormat3())
 
3126
            self.bzrdir.transport.delete_multi(
 
3127
                self.garbage_inventories, self.pb)
 
3128
            for entry in checkout_files:
 
3129
                self.move_entry('checkout', entry)
 
3130
            if last_revision is not None:
 
3131
                self.bzrdir.transport.put_bytes(
 
3132
                    'checkout/last-revision', last_revision)
 
3133
        self.bzrdir.transport.put_bytes(
 
3134
            'branch-format',
 
3135
            BzrDirMetaFormat1().get_format_string(),
 
3136
            mode=self.file_mode)
 
3137
        self.pb.finished()
 
3138
        return BzrDir.open(self.bzrdir.user_url)
 
3139
 
 
3140
    def make_lock(self, name):
 
3141
        """Make a lock for the new control dir name."""
 
3142
        self.step('Make %s lock' % name)
 
3143
        ld = lockdir.LockDir(self.bzrdir.transport,
 
3144
                             '%s/lock' % name,
 
3145
                             file_modebits=self.file_mode,
 
3146
                             dir_modebits=self.dir_mode)
 
3147
        ld.create()
 
3148
 
 
3149
    def move_entry(self, new_dir, entry):
 
3150
        """Move then entry name into new_dir."""
 
3151
        name = entry[0]
 
3152
        mandatory = entry[1]
 
3153
        self.step('Moving %s' % name)
 
3154
        try:
 
3155
            self.bzrdir.transport.move(name, '%s/%s' % (new_dir, name))
 
3156
        except errors.NoSuchFile:
 
3157
            if mandatory:
 
3158
                raise
 
3159
 
 
3160
    def put_format(self, dirname, format):
 
3161
        self.bzrdir.transport.put_bytes('%s/format' % dirname,
 
3162
            format.get_format_string(),
 
3163
            self.file_mode)
 
3164
 
 
3165
 
 
3166
class ConvertMetaToMeta(Converter):
 
3167
    """Converts the components of metadirs."""
 
3168
 
 
3169
    def __init__(self, target_format):
 
3170
        """Create a metadir to metadir converter.
 
3171
 
 
3172
        :param target_format: The final metadir format that is desired.
 
3173
        """
 
3174
        self.target_format = target_format
 
3175
 
 
3176
    def convert(self, to_convert, pb):
 
3177
        """See Converter.convert()."""
 
3178
        self.bzrdir = to_convert
 
3179
        self.pb = ui.ui_factory.nested_progress_bar()
 
3180
        self.count = 0
 
3181
        self.total = 1
 
3182
        self.step('checking repository format')
 
3183
        try:
 
3184
            repo = self.bzrdir.open_repository()
 
3185
        except errors.NoRepositoryPresent:
 
3186
            pass
 
3187
        else:
 
3188
            if not isinstance(repo._format, self.target_format.repository_format.__class__):
 
3189
                from bzrlib.repository import CopyConverter
 
3190
                ui.ui_factory.note('starting repository conversion')
 
3191
                converter = CopyConverter(self.target_format.repository_format)
 
3192
                converter.convert(repo, pb)
 
3193
        for branch in self.bzrdir.list_branches():
 
3194
            # TODO: conversions of Branch and Tree should be done by
 
3195
            # InterXFormat lookups/some sort of registry.
 
3196
            # Avoid circular imports
 
3197
            from bzrlib import branch as _mod_branch
 
3198
            old = branch._format.__class__
 
3199
            new = self.target_format.get_branch_format().__class__
 
3200
            while old != new:
 
3201
                if (old == _mod_branch.BzrBranchFormat5 and
 
3202
                    new in (_mod_branch.BzrBranchFormat6,
 
3203
                        _mod_branch.BzrBranchFormat7,
 
3204
                        _mod_branch.BzrBranchFormat8)):
 
3205
                    branch_converter = _mod_branch.Converter5to6()
 
3206
                elif (old == _mod_branch.BzrBranchFormat6 and
 
3207
                    new in (_mod_branch.BzrBranchFormat7,
 
3208
                            _mod_branch.BzrBranchFormat8)):
 
3209
                    branch_converter = _mod_branch.Converter6to7()
 
3210
                elif (old == _mod_branch.BzrBranchFormat7 and
 
3211
                      new is _mod_branch.BzrBranchFormat8):
 
3212
                    branch_converter = _mod_branch.Converter7to8()
 
3213
                else:
 
3214
                    raise errors.BadConversionTarget("No converter", new,
 
3215
                        branch._format)
 
3216
                branch_converter.convert(branch)
 
3217
                branch = self.bzrdir.open_branch()
 
3218
                old = branch._format.__class__
 
3219
        try:
 
3220
            tree = self.bzrdir.open_workingtree(recommend_upgrade=False)
 
3221
        except (errors.NoWorkingTree, errors.NotLocalUrl):
 
3222
            pass
 
3223
        else:
 
3224
            # TODO: conversions of Branch and Tree should be done by
 
3225
            # InterXFormat lookups
 
3226
            if (isinstance(tree, workingtree.WorkingTree3) and
 
3227
                not isinstance(tree, workingtree_4.DirStateWorkingTree) and
 
3228
                isinstance(self.target_format.workingtree_format,
 
3229
                    workingtree_4.DirStateWorkingTreeFormat)):
 
3230
                workingtree_4.Converter3to4().convert(tree)
 
3231
            if (isinstance(tree, workingtree_4.DirStateWorkingTree) and
 
3232
                not isinstance(tree, workingtree_4.WorkingTree5) and
 
3233
                isinstance(self.target_format.workingtree_format,
 
3234
                    workingtree_4.WorkingTreeFormat5)):
 
3235
                workingtree_4.Converter4to5().convert(tree)
 
3236
            if (isinstance(tree, workingtree_4.DirStateWorkingTree) and
 
3237
                not isinstance(tree, workingtree_4.WorkingTree6) and
 
3238
                isinstance(self.target_format.workingtree_format,
 
3239
                    workingtree_4.WorkingTreeFormat6)):
 
3240
                workingtree_4.Converter4or5to6().convert(tree)
 
3241
        self.pb.finished()
 
3242
        return to_convert
 
3243
 
 
3244
 
 
3245
# This is not in remote.py because it's relatively small, and needs to be
 
3246
# registered. Putting it in remote.py creates a circular import problem.
 
3247
# we can make it a lazy object if the control formats is turned into something
 
3248
# like a registry.
 
3249
class RemoteBzrDirFormat(BzrDirMetaFormat1):
 
3250
    """Format representing bzrdirs accessed via a smart server"""
 
3251
 
 
3252
    def __init__(self):
 
3253
        BzrDirMetaFormat1.__init__(self)
 
3254
        # XXX: It's a bit ugly that the network name is here, because we'd
 
3255
        # like to believe that format objects are stateless or at least
 
3256
        # immutable,  However, we do at least avoid mutating the name after
 
3257
        # it's returned.  See <https://bugs.launchpad.net/bzr/+bug/504102>
 
3258
        self._network_name = None
 
3259
 
 
3260
    def __repr__(self):
 
3261
        return "%s(_network_name=%r)" % (self.__class__.__name__,
 
3262
            self._network_name)
 
3263
 
 
3264
    def get_format_description(self):
 
3265
        if self._network_name:
 
3266
            real_format = network_format_registry.get(self._network_name)
 
3267
            return 'Remote: ' + real_format.get_format_description()
 
3268
        return 'bzr remote bzrdir'
 
3269
 
 
3270
    def get_format_string(self):
 
3271
        raise NotImplementedError(self.get_format_string)
 
3272
 
 
3273
    def network_name(self):
 
3274
        if self._network_name:
 
3275
            return self._network_name
 
3276
        else:
 
3277
            raise AssertionError("No network name set.")
 
3278
 
 
3279
    @classmethod
 
3280
    def probe_transport(klass, transport):
 
3281
        """Return a RemoteBzrDirFormat object if it looks possible."""
 
3282
        try:
 
3283
            medium = transport.get_smart_medium()
 
3284
        except (NotImplementedError, AttributeError,
 
3285
                errors.TransportNotPossible, errors.NoSmartMedium,
 
3286
                errors.SmartProtocolError):
 
3287
            # no smart server, so not a branch for this format type.
 
3288
            raise errors.NotBranchError(path=transport.base)
 
3289
        else:
 
3290
            # Decline to open it if the server doesn't support our required
 
3291
            # version (3) so that the VFS-based transport will do it.
 
3292
            if medium.should_probe():
 
3293
                try:
 
3294
                    server_version = medium.protocol_version()
 
3295
                except errors.SmartProtocolError:
 
3296
                    # Apparently there's no usable smart server there, even though
 
3297
                    # the medium supports the smart protocol.
 
3298
                    raise errors.NotBranchError(path=transport.base)
 
3299
                if server_version != '2':
 
3300
                    raise errors.NotBranchError(path=transport.base)
 
3301
            return klass()
 
3302
 
 
3303
    def initialize_on_transport(self, transport):
 
3304
        try:
 
3305
            # hand off the request to the smart server
 
3306
            client_medium = transport.get_smart_medium()
 
3307
        except errors.NoSmartMedium:
 
3308
            # TODO: lookup the local format from a server hint.
 
3309
            local_dir_format = BzrDirMetaFormat1()
 
3310
            return local_dir_format.initialize_on_transport(transport)
 
3311
        client = _SmartClient(client_medium)
 
3312
        path = client.remote_path_from_transport(transport)
 
3313
        try:
 
3314
            response = client.call('BzrDirFormat.initialize', path)
 
3315
        except errors.ErrorFromSmartServer, err:
 
3316
            remote._translate_error(err, path=path)
 
3317
        if response[0] != 'ok':
 
3318
            raise errors.SmartProtocolError('unexpected response code %s' % (response,))
 
3319
        format = RemoteBzrDirFormat()
 
3320
        self._supply_sub_formats_to(format)
 
3321
        return remote.RemoteBzrDir(transport, format)
 
3322
 
 
3323
    def parse_NoneTrueFalse(self, arg):
 
3324
        if not arg:
 
3325
            return None
 
3326
        if arg == 'False':
 
3327
            return False
 
3328
        if arg == 'True':
 
3329
            return True
 
3330
        raise AssertionError("invalid arg %r" % arg)
 
3331
 
 
3332
    def _serialize_NoneTrueFalse(self, arg):
 
3333
        if arg is False:
 
3334
            return 'False'
 
3335
        if arg:
 
3336
            return 'True'
 
3337
        return ''
 
3338
 
 
3339
    def _serialize_NoneString(self, arg):
 
3340
        return arg or ''
 
3341
 
 
3342
    def initialize_on_transport_ex(self, transport, use_existing_dir=False,
 
3343
        create_prefix=False, force_new_repo=False, stacked_on=None,
 
3344
        stack_on_pwd=None, repo_format_name=None, make_working_trees=None,
 
3345
        shared_repo=False):
 
3346
        try:
 
3347
            # hand off the request to the smart server
 
3348
            client_medium = transport.get_smart_medium()
 
3349
        except errors.NoSmartMedium:
 
3350
            do_vfs = True
 
3351
        else:
 
3352
            # Decline to open it if the server doesn't support our required
 
3353
            # version (3) so that the VFS-based transport will do it.
 
3354
            if client_medium.should_probe():
 
3355
                try:
 
3356
                    server_version = client_medium.protocol_version()
 
3357
                    if server_version != '2':
 
3358
                        do_vfs = True
 
3359
                    else:
 
3360
                        do_vfs = False
 
3361
                except errors.SmartProtocolError:
 
3362
                    # Apparently there's no usable smart server there, even though
 
3363
                    # the medium supports the smart protocol.
 
3364
                    do_vfs = True
 
3365
            else:
 
3366
                do_vfs = False
 
3367
        if not do_vfs:
 
3368
            client = _SmartClient(client_medium)
 
3369
            path = client.remote_path_from_transport(transport)
 
3370
            if client_medium._is_remote_before((1, 16)):
 
3371
                do_vfs = True
 
3372
        if do_vfs:
 
3373
            # TODO: lookup the local format from a server hint.
 
3374
            local_dir_format = BzrDirMetaFormat1()
 
3375
            self._supply_sub_formats_to(local_dir_format)
 
3376
            return local_dir_format.initialize_on_transport_ex(transport,
 
3377
                use_existing_dir=use_existing_dir, create_prefix=create_prefix,
 
3378
                force_new_repo=force_new_repo, stacked_on=stacked_on,
 
3379
                stack_on_pwd=stack_on_pwd, repo_format_name=repo_format_name,
 
3380
                make_working_trees=make_working_trees, shared_repo=shared_repo,
 
3381
                vfs_only=True)
 
3382
        return self._initialize_on_transport_ex_rpc(client, path, transport,
 
3383
            use_existing_dir, create_prefix, force_new_repo, stacked_on,
 
3384
            stack_on_pwd, repo_format_name, make_working_trees, shared_repo)
 
3385
 
 
3386
    def _initialize_on_transport_ex_rpc(self, client, path, transport,
 
3387
        use_existing_dir, create_prefix, force_new_repo, stacked_on,
 
3388
        stack_on_pwd, repo_format_name, make_working_trees, shared_repo):
 
3389
        args = []
 
3390
        args.append(self._serialize_NoneTrueFalse(use_existing_dir))
 
3391
        args.append(self._serialize_NoneTrueFalse(create_prefix))
 
3392
        args.append(self._serialize_NoneTrueFalse(force_new_repo))
 
3393
        args.append(self._serialize_NoneString(stacked_on))
 
3394
        # stack_on_pwd is often/usually our transport
 
3395
        if stack_on_pwd:
 
3396
            try:
 
3397
                stack_on_pwd = transport.relpath(stack_on_pwd)
 
3398
                if not stack_on_pwd:
 
3399
                    stack_on_pwd = '.'
 
3400
            except errors.PathNotChild:
 
3401
                pass
 
3402
        args.append(self._serialize_NoneString(stack_on_pwd))
 
3403
        args.append(self._serialize_NoneString(repo_format_name))
 
3404
        args.append(self._serialize_NoneTrueFalse(make_working_trees))
 
3405
        args.append(self._serialize_NoneTrueFalse(shared_repo))
 
3406
        request_network_name = self._network_name or \
 
3407
            BzrDirFormat.get_default_format().network_name()
 
3408
        try:
 
3409
            response = client.call('BzrDirFormat.initialize_ex_1.16',
 
3410
                request_network_name, path, *args)
 
3411
        except errors.UnknownSmartMethod:
 
3412
            client._medium._remember_remote_is_before((1,16))
 
3413
            local_dir_format = BzrDirMetaFormat1()
 
3414
            self._supply_sub_formats_to(local_dir_format)
 
3415
            return local_dir_format.initialize_on_transport_ex(transport,
 
3416
                use_existing_dir=use_existing_dir, create_prefix=create_prefix,
 
3417
                force_new_repo=force_new_repo, stacked_on=stacked_on,
 
3418
                stack_on_pwd=stack_on_pwd, repo_format_name=repo_format_name,
 
3419
                make_working_trees=make_working_trees, shared_repo=shared_repo,
 
3420
                vfs_only=True)
 
3421
        except errors.ErrorFromSmartServer, err:
 
3422
            remote._translate_error(err, path=path)
 
3423
        repo_path = response[0]
 
3424
        bzrdir_name = response[6]
 
3425
        require_stacking = response[7]
 
3426
        require_stacking = self.parse_NoneTrueFalse(require_stacking)
 
3427
        format = RemoteBzrDirFormat()
 
3428
        format._network_name = bzrdir_name
 
3429
        self._supply_sub_formats_to(format)
 
3430
        bzrdir = remote.RemoteBzrDir(transport, format, _client=client)
 
3431
        if repo_path:
 
3432
            repo_format = remote.response_tuple_to_repo_format(response[1:])
 
3433
            if repo_path == '.':
 
3434
                repo_path = ''
 
3435
            if repo_path:
 
3436
                repo_bzrdir_format = RemoteBzrDirFormat()
 
3437
                repo_bzrdir_format._network_name = response[5]
 
3438
                repo_bzr = remote.RemoteBzrDir(transport.clone(repo_path),
 
3439
                    repo_bzrdir_format)
 
3440
            else:
 
3441
                repo_bzr = bzrdir
 
3442
            final_stack = response[8] or None
 
3443
            final_stack_pwd = response[9] or None
 
3444
            if final_stack_pwd:
 
3445
                final_stack_pwd = urlutils.join(
 
3446
                    transport.base, final_stack_pwd)
 
3447
            remote_repo = remote.RemoteRepository(repo_bzr, repo_format)
 
3448
            if len(response) > 10:
 
3449
                # Updated server verb that locks remotely.
 
3450
                repo_lock_token = response[10] or None
 
3451
                remote_repo.lock_write(repo_lock_token, _skip_rpc=True)
 
3452
                if repo_lock_token:
 
3453
                    remote_repo.dont_leave_lock_in_place()
 
3454
            else:
 
3455
                remote_repo.lock_write()
 
3456
            policy = UseExistingRepository(remote_repo, final_stack,
 
3457
                final_stack_pwd, require_stacking)
 
3458
            policy.acquire_repository()
 
3459
        else:
 
3460
            remote_repo = None
 
3461
            policy = None
 
3462
        bzrdir._format.set_branch_format(self.get_branch_format())
 
3463
        if require_stacking:
 
3464
            # The repo has already been created, but we need to make sure that
 
3465
            # we'll make a stackable branch.
 
3466
            bzrdir._format.require_stacking(_skip_repo=True)
 
3467
        return remote_repo, bzrdir, require_stacking, policy
 
3468
 
 
3469
    def _open(self, transport):
 
3470
        return remote.RemoteBzrDir(transport, self)
 
3471
 
 
3472
    def __eq__(self, other):
 
3473
        if not isinstance(other, RemoteBzrDirFormat):
 
3474
            return False
 
3475
        return self.get_format_description() == other.get_format_description()
 
3476
 
 
3477
    def __return_repository_format(self):
 
3478
        # Always return a RemoteRepositoryFormat object, but if a specific bzr
 
3479
        # repository format has been asked for, tell the RemoteRepositoryFormat
 
3480
        # that it should use that for init() etc.
 
3481
        result = remote.RemoteRepositoryFormat()
 
3482
        custom_format = getattr(self, '_repository_format', None)
 
3483
        if custom_format:
 
3484
            if isinstance(custom_format, remote.RemoteRepositoryFormat):
 
3485
                return custom_format
 
3486
            else:
 
3487
                # We will use the custom format to create repositories over the
 
3488
                # wire; expose its details like rich_root_data for code to
 
3489
                # query
 
3490
                result._custom_format = custom_format
 
3491
        return result
 
3492
 
 
3493
    def get_branch_format(self):
 
3494
        result = BzrDirMetaFormat1.get_branch_format(self)
 
3495
        if not isinstance(result, remote.RemoteBranchFormat):
 
3496
            new_result = remote.RemoteBranchFormat()
 
3497
            new_result._custom_format = result
 
3498
            # cache the result
 
3499
            self.set_branch_format(new_result)
 
3500
            result = new_result
 
3501
        return result
 
3502
 
 
3503
    repository_format = property(__return_repository_format,
 
3504
        BzrDirMetaFormat1._set_repository_format) #.im_func)
 
3505
 
 
3506
 
 
3507
BzrDirFormat.register_control_server_format(RemoteBzrDirFormat)
 
3508
 
 
3509
 
 
3510
class BzrDirFormatInfo(object):
 
3511
 
 
3512
    def __init__(self, native, deprecated, hidden, experimental):
 
3513
        self.deprecated = deprecated
 
3514
        self.native = native
 
3515
        self.hidden = hidden
 
3516
        self.experimental = experimental
 
3517
 
 
3518
 
 
3519
class BzrDirFormatRegistry(registry.Registry):
 
3520
    """Registry of user-selectable BzrDir subformats.
 
3521
 
 
3522
    Differs from BzrDirFormat._control_formats in that it provides sub-formats,
 
3523
    e.g. BzrDirMeta1 with weave repository.  Also, it's more user-oriented.
 
3524
    """
 
3525
 
 
3526
    def __init__(self):
 
3527
        """Create a BzrDirFormatRegistry."""
 
3528
        self._aliases = set()
 
3529
        self._registration_order = list()
 
3530
        super(BzrDirFormatRegistry, self).__init__()
 
3531
 
 
3532
    def aliases(self):
 
3533
        """Return a set of the format names which are aliases."""
 
3534
        return frozenset(self._aliases)
 
3535
 
 
3536
    def register_metadir(self, key,
 
3537
             repository_format, help, native=True, deprecated=False,
 
3538
             branch_format=None,
 
3539
             tree_format=None,
 
3540
             hidden=False,
 
3541
             experimental=False,
 
3542
             alias=False):
 
3543
        """Register a metadir subformat.
 
3544
 
 
3545
        These all use a BzrDirMetaFormat1 bzrdir, but can be parameterized
 
3546
        by the Repository/Branch/WorkingTreeformats.
 
3547
 
 
3548
        :param repository_format: The fully-qualified repository format class
 
3549
            name as a string.
 
3550
        :param branch_format: Fully-qualified branch format class name as
 
3551
            a string.
 
3552
        :param tree_format: Fully-qualified tree format class name as
 
3553
            a string.
 
3554
        """
 
3555
        # This should be expanded to support setting WorkingTree and Branch
 
3556
        # formats, once BzrDirMetaFormat1 supports that.
 
3557
        def _load(full_name):
 
3558
            mod_name, factory_name = full_name.rsplit('.', 1)
 
3559
            try:
 
3560
                mod = __import__(mod_name, globals(), locals(),
 
3561
                        [factory_name])
 
3562
            except ImportError, e:
 
3563
                raise ImportError('failed to load %s: %s' % (full_name, e))
 
3564
            try:
 
3565
                factory = getattr(mod, factory_name)
 
3566
            except AttributeError:
 
3567
                raise AttributeError('no factory %s in module %r'
 
3568
                    % (full_name, mod))
 
3569
            return factory()
 
3570
 
 
3571
        def helper():
 
3572
            bd = BzrDirMetaFormat1()
 
3573
            if branch_format is not None:
 
3574
                bd.set_branch_format(_load(branch_format))
 
3575
            if tree_format is not None:
 
3576
                bd.workingtree_format = _load(tree_format)
 
3577
            if repository_format is not None:
 
3578
                bd.repository_format = _load(repository_format)
 
3579
            return bd
 
3580
        self.register(key, helper, help, native, deprecated, hidden,
 
3581
            experimental, alias)
 
3582
 
 
3583
    def register(self, key, factory, help, native=True, deprecated=False,
 
3584
                 hidden=False, experimental=False, alias=False):
 
3585
        """Register a BzrDirFormat factory.
 
3586
 
 
3587
        The factory must be a callable that takes one parameter: the key.
 
3588
        It must produce an instance of the BzrDirFormat when called.
 
3589
 
 
3590
        This function mainly exists to prevent the info object from being
 
3591
        supplied directly.
 
3592
        """
 
3593
        registry.Registry.register(self, key, factory, help,
 
3594
            BzrDirFormatInfo(native, deprecated, hidden, experimental))
 
3595
        if alias:
 
3596
            self._aliases.add(key)
 
3597
        self._registration_order.append(key)
 
3598
 
 
3599
    def register_lazy(self, key, module_name, member_name, help, native=True,
 
3600
        deprecated=False, hidden=False, experimental=False, alias=False):
 
3601
        registry.Registry.register_lazy(self, key, module_name, member_name,
 
3602
            help, BzrDirFormatInfo(native, deprecated, hidden, experimental))
 
3603
        if alias:
 
3604
            self._aliases.add(key)
 
3605
        self._registration_order.append(key)
 
3606
 
 
3607
    def set_default(self, key):
 
3608
        """Set the 'default' key to be a clone of the supplied key.
 
3609
 
 
3610
        This method must be called once and only once.
 
3611
        """
 
3612
        registry.Registry.register(self, 'default', self.get(key),
 
3613
            self.get_help(key), info=self.get_info(key))
 
3614
        self._aliases.add('default')
 
3615
 
 
3616
    def set_default_repository(self, key):
 
3617
        """Set the FormatRegistry default and Repository default.
 
3618
 
 
3619
        This is a transitional method while Repository.set_default_format
 
3620
        is deprecated.
 
3621
        """
 
3622
        if 'default' in self:
 
3623
            self.remove('default')
 
3624
        self.set_default(key)
 
3625
        format = self.get('default')()
 
3626
 
 
3627
    def make_bzrdir(self, key):
 
3628
        return self.get(key)()
 
3629
 
 
3630
    def help_topic(self, topic):
 
3631
        output = ""
 
3632
        default_realkey = None
 
3633
        default_help = self.get_help('default')
 
3634
        help_pairs = []
 
3635
        for key in self._registration_order:
 
3636
            if key == 'default':
 
3637
                continue
 
3638
            help = self.get_help(key)
 
3639
            if help == default_help:
 
3640
                default_realkey = key
 
3641
            else:
 
3642
                help_pairs.append((key, help))
 
3643
 
 
3644
        def wrapped(key, help, info):
 
3645
            if info.native:
 
3646
                help = '(native) ' + help
 
3647
            return ':%s:\n%s\n\n' % (key,
 
3648
                textwrap.fill(help, initial_indent='    ',
 
3649
                    subsequent_indent='    ',
 
3650
                    break_long_words=False))
 
3651
        if default_realkey is not None:
 
3652
            output += wrapped(default_realkey, '(default) %s' % default_help,
 
3653
                              self.get_info('default'))
 
3654
        deprecated_pairs = []
 
3655
        experimental_pairs = []
 
3656
        for key, help in help_pairs:
 
3657
            info = self.get_info(key)
 
3658
            if info.hidden:
 
3659
                continue
 
3660
            elif info.deprecated:
 
3661
                deprecated_pairs.append((key, help))
 
3662
            elif info.experimental:
 
3663
                experimental_pairs.append((key, help))
 
3664
            else:
 
3665
                output += wrapped(key, help, info)
 
3666
        output += "\nSee :doc:`formats-help` for more about storage formats."
 
3667
        other_output = ""
 
3668
        if len(experimental_pairs) > 0:
 
3669
            other_output += "Experimental formats are shown below.\n\n"
 
3670
            for key, help in experimental_pairs:
 
3671
                info = self.get_info(key)
 
3672
                other_output += wrapped(key, help, info)
 
3673
        else:
 
3674
            other_output += \
 
3675
                "No experimental formats are available.\n\n"
 
3676
        if len(deprecated_pairs) > 0:
 
3677
            other_output += "\nDeprecated formats are shown below.\n\n"
 
3678
            for key, help in deprecated_pairs:
 
3679
                info = self.get_info(key)
 
3680
                other_output += wrapped(key, help, info)
 
3681
        else:
 
3682
            other_output += \
 
3683
                "\nNo deprecated formats are available.\n\n"
 
3684
        other_output += \
 
3685
                "\nSee :doc:`formats-help` for more about storage formats."
 
3686
 
 
3687
        if topic == 'other-formats':
 
3688
            return other_output
 
3689
        else:
 
3690
            return output
 
3691
 
 
3692
 
 
3693
class RepositoryAcquisitionPolicy(object):
 
3694
    """Abstract base class for repository acquisition policies.
 
3695
 
 
3696
    A repository acquisition policy decides how a BzrDir acquires a repository
 
3697
    for a branch that is being created.  The most basic policy decision is
 
3698
    whether to create a new repository or use an existing one.
 
3699
    """
 
3700
    def __init__(self, stack_on, stack_on_pwd, require_stacking):
 
3701
        """Constructor.
 
3702
 
 
3703
        :param stack_on: A location to stack on
 
3704
        :param stack_on_pwd: If stack_on is relative, the location it is
 
3705
            relative to.
 
3706
        :param require_stacking: If True, it is a failure to not stack.
 
3707
        """
 
3708
        self._stack_on = stack_on
 
3709
        self._stack_on_pwd = stack_on_pwd
 
3710
        self._require_stacking = require_stacking
 
3711
 
 
3712
    def configure_branch(self, branch):
 
3713
        """Apply any configuration data from this policy to the branch.
 
3714
 
 
3715
        Default implementation sets repository stacking.
 
3716
        """
 
3717
        if self._stack_on is None:
 
3718
            return
 
3719
        if self._stack_on_pwd is None:
 
3720
            stack_on = self._stack_on
 
3721
        else:
 
3722
            try:
 
3723
                stack_on = urlutils.rebase_url(self._stack_on,
 
3724
                    self._stack_on_pwd,
 
3725
                    branch.user_url)
 
3726
            except errors.InvalidRebaseURLs:
 
3727
                stack_on = self._get_full_stack_on()
 
3728
        try:
 
3729
            branch.set_stacked_on_url(stack_on)
 
3730
        except (errors.UnstackableBranchFormat,
 
3731
                errors.UnstackableRepositoryFormat):
 
3732
            if self._require_stacking:
 
3733
                raise
 
3734
 
 
3735
    def requires_stacking(self):
 
3736
        """Return True if this policy requires stacking."""
 
3737
        return self._stack_on is not None and self._require_stacking
 
3738
 
 
3739
    def _get_full_stack_on(self):
 
3740
        """Get a fully-qualified URL for the stack_on location."""
 
3741
        if self._stack_on is None:
 
3742
            return None
 
3743
        if self._stack_on_pwd is None:
 
3744
            return self._stack_on
 
3745
        else:
 
3746
            return urlutils.join(self._stack_on_pwd, self._stack_on)
 
3747
 
 
3748
    def _add_fallback(self, repository, possible_transports=None):
 
3749
        """Add a fallback to the supplied repository, if stacking is set."""
 
3750
        stack_on = self._get_full_stack_on()
 
3751
        if stack_on is None:
 
3752
            return
 
3753
        try:
 
3754
            stacked_dir = BzrDir.open(stack_on,
 
3755
                                      possible_transports=possible_transports)
 
3756
        except errors.JailBreak:
 
3757
            # We keep the stacking details, but we are in the server code so
 
3758
            # actually stacking is not needed.
 
3759
            return
 
3760
        try:
 
3761
            stacked_repo = stacked_dir.open_branch().repository
 
3762
        except errors.NotBranchError:
 
3763
            stacked_repo = stacked_dir.open_repository()
 
3764
        try:
 
3765
            repository.add_fallback_repository(stacked_repo)
 
3766
        except errors.UnstackableRepositoryFormat:
 
3767
            if self._require_stacking:
 
3768
                raise
 
3769
        else:
 
3770
            self._require_stacking = True
 
3771
 
 
3772
    def acquire_repository(self, make_working_trees=None, shared=False):
 
3773
        """Acquire a repository for this bzrdir.
 
3774
 
 
3775
        Implementations may create a new repository or use a pre-exising
 
3776
        repository.
 
3777
        :param make_working_trees: If creating a repository, set
 
3778
            make_working_trees to this value (if non-None)
 
3779
        :param shared: If creating a repository, make it shared if True
 
3780
        :return: A repository, is_new_flag (True if the repository was
 
3781
            created).
 
3782
        """
 
3783
        raise NotImplemented(RepositoryAcquisitionPolicy.acquire_repository)
 
3784
 
 
3785
 
 
3786
class CreateRepository(RepositoryAcquisitionPolicy):
 
3787
    """A policy of creating a new repository"""
 
3788
 
 
3789
    def __init__(self, bzrdir, stack_on=None, stack_on_pwd=None,
 
3790
                 require_stacking=False):
 
3791
        """
 
3792
        Constructor.
 
3793
        :param bzrdir: The bzrdir to create the repository on.
 
3794
        :param stack_on: A location to stack on
 
3795
        :param stack_on_pwd: If stack_on is relative, the location it is
 
3796
            relative to.
 
3797
        """
 
3798
        RepositoryAcquisitionPolicy.__init__(self, stack_on, stack_on_pwd,
 
3799
                                             require_stacking)
 
3800
        self._bzrdir = bzrdir
 
3801
 
 
3802
    def acquire_repository(self, make_working_trees=None, shared=False):
 
3803
        """Implementation of RepositoryAcquisitionPolicy.acquire_repository
 
3804
 
 
3805
        Creates the desired repository in the bzrdir we already have.
 
3806
        """
 
3807
        stack_on = self._get_full_stack_on()
 
3808
        if stack_on:
 
3809
            format = self._bzrdir._format
 
3810
            format.require_stacking(stack_on=stack_on,
 
3811
                                    possible_transports=[self._bzrdir.root_transport])
 
3812
            if not self._require_stacking:
 
3813
                # We have picked up automatic stacking somewhere.
 
3814
                note('Using default stacking branch %s at %s', self._stack_on,
 
3815
                    self._stack_on_pwd)
 
3816
        repository = self._bzrdir.create_repository(shared=shared)
 
3817
        self._add_fallback(repository,
 
3818
                           possible_transports=[self._bzrdir.transport])
 
3819
        if make_working_trees is not None:
 
3820
            repository.set_make_working_trees(make_working_trees)
 
3821
        return repository, True
 
3822
 
 
3823
 
 
3824
class UseExistingRepository(RepositoryAcquisitionPolicy):
 
3825
    """A policy of reusing an existing repository"""
 
3826
 
 
3827
    def __init__(self, repository, stack_on=None, stack_on_pwd=None,
 
3828
                 require_stacking=False):
 
3829
        """Constructor.
 
3830
 
 
3831
        :param repository: The repository to use.
 
3832
        :param stack_on: A location to stack on
 
3833
        :param stack_on_pwd: If stack_on is relative, the location it is
 
3834
            relative to.
 
3835
        """
 
3836
        RepositoryAcquisitionPolicy.__init__(self, stack_on, stack_on_pwd,
 
3837
                                             require_stacking)
 
3838
        self._repository = repository
 
3839
 
 
3840
    def acquire_repository(self, make_working_trees=None, shared=False):
 
3841
        """Implementation of RepositoryAcquisitionPolicy.acquire_repository
 
3842
 
 
3843
        Returns an existing repository to use.
 
3844
        """
 
3845
        self._add_fallback(self._repository,
 
3846
                       possible_transports=[self._repository.bzrdir.transport])
 
3847
        return self._repository, False
 
3848
 
 
3849
 
 
3850
# Please register new formats after old formats so that formats
 
3851
# appear in chronological order and format descriptions can build
 
3852
# on previous ones.
 
3853
format_registry = BzrDirFormatRegistry()
 
3854
# The pre-0.8 formats have their repository format network name registered in
 
3855
# repository.py. MetaDir formats have their repository format network name
 
3856
# inferred from their disk format string.
 
3857
format_registry.register('weave', BzrDirFormat6,
 
3858
    'Pre-0.8 format.  Slower than knit and does not'
 
3859
    ' support checkouts or shared repositories.',
 
3860
    hidden=True,
 
3861
    deprecated=True)
 
3862
format_registry.register_metadir('metaweave',
 
3863
    'bzrlib.repofmt.weaverepo.RepositoryFormat7',
 
3864
    'Transitional format in 0.8.  Slower than knit.',
 
3865
    branch_format='bzrlib.branch.BzrBranchFormat5',
 
3866
    tree_format='bzrlib.workingtree.WorkingTreeFormat3',
 
3867
    hidden=True,
 
3868
    deprecated=True)
 
3869
format_registry.register_metadir('knit',
 
3870
    'bzrlib.repofmt.knitrepo.RepositoryFormatKnit1',
 
3871
    'Format using knits.  Recommended for interoperation with bzr <= 0.14.',
 
3872
    branch_format='bzrlib.branch.BzrBranchFormat5',
 
3873
    tree_format='bzrlib.workingtree.WorkingTreeFormat3',
 
3874
    hidden=True,
 
3875
    deprecated=True)
 
3876
format_registry.register_metadir('dirstate',
 
3877
    'bzrlib.repofmt.knitrepo.RepositoryFormatKnit1',
 
3878
    help='New in 0.15: Fast local operations. Compatible with bzr 0.8 and '
 
3879
        'above when accessed over the network.',
 
3880
    branch_format='bzrlib.branch.BzrBranchFormat5',
 
3881
    # this uses bzrlib.workingtree.WorkingTreeFormat4 because importing
 
3882
    # directly from workingtree_4 triggers a circular import.
 
3883
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
 
3884
    hidden=True,
 
3885
    deprecated=True)
 
3886
format_registry.register_metadir('dirstate-tags',
 
3887
    'bzrlib.repofmt.knitrepo.RepositoryFormatKnit1',
 
3888
    help='New in 0.15: Fast local operations and improved scaling for '
 
3889
        'network operations. Additionally adds support for tags.'
 
3890
        ' Incompatible with bzr < 0.15.',
 
3891
    branch_format='bzrlib.branch.BzrBranchFormat6',
 
3892
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
 
3893
    hidden=True,
 
3894
    deprecated=True)
 
3895
format_registry.register_metadir('rich-root',
 
3896
    'bzrlib.repofmt.knitrepo.RepositoryFormatKnit4',
 
3897
    help='New in 1.0.  Better handling of tree roots.  Incompatible with'
 
3898
        ' bzr < 1.0.',
 
3899
    branch_format='bzrlib.branch.BzrBranchFormat6',
 
3900
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
 
3901
    hidden=True,
 
3902
    deprecated=True)
 
3903
format_registry.register_metadir('dirstate-with-subtree',
 
3904
    'bzrlib.repofmt.knitrepo.RepositoryFormatKnit3',
 
3905
    help='New in 0.15: Fast local operations and improved scaling for '
 
3906
        'network operations. Additionally adds support for versioning nested '
 
3907
        'bzr branches. Incompatible with bzr < 0.15.',
 
3908
    branch_format='bzrlib.branch.BzrBranchFormat6',
 
3909
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
 
3910
    experimental=True,
 
3911
    hidden=True,
 
3912
    )
 
3913
format_registry.register_metadir('pack-0.92',
 
3914
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack1',
 
3915
    help='New in 0.92: Pack-based format with data compatible with '
 
3916
        'dirstate-tags format repositories. Interoperates with '
 
3917
        'bzr repositories before 0.92 but cannot be read by bzr < 0.92. '
 
3918
        ,
 
3919
    branch_format='bzrlib.branch.BzrBranchFormat6',
 
3920
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
 
3921
    )
 
3922
format_registry.register_metadir('pack-0.92-subtree',
 
3923
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack3',
 
3924
    help='New in 0.92: Pack-based format with data compatible with '
 
3925
        'dirstate-with-subtree format repositories. Interoperates with '
 
3926
        'bzr repositories before 0.92 but cannot be read by bzr < 0.92. '
 
3927
        ,
 
3928
    branch_format='bzrlib.branch.BzrBranchFormat6',
 
3929
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
 
3930
    hidden=True,
 
3931
    experimental=True,
 
3932
    )
 
3933
format_registry.register_metadir('rich-root-pack',
 
3934
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack4',
 
3935
    help='New in 1.0: A variant of pack-0.92 that supports rich-root data '
 
3936
         '(needed for bzr-svn and bzr-git).',
 
3937
    branch_format='bzrlib.branch.BzrBranchFormat6',
 
3938
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
 
3939
    hidden=True,
 
3940
    )
 
3941
format_registry.register_metadir('1.6',
 
3942
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack5',
 
3943
    help='A format that allows a branch to indicate that there is another '
 
3944
         '(stacked) repository that should be used to access data that is '
 
3945
         'not present locally.',
 
3946
    branch_format='bzrlib.branch.BzrBranchFormat7',
 
3947
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
 
3948
    hidden=True,
 
3949
    )
 
3950
format_registry.register_metadir('1.6.1-rich-root',
 
3951
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack5RichRoot',
 
3952
    help='A variant of 1.6 that supports rich-root data '
 
3953
         '(needed for bzr-svn and bzr-git).',
 
3954
    branch_format='bzrlib.branch.BzrBranchFormat7',
 
3955
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
 
3956
    hidden=True,
 
3957
    )
 
3958
format_registry.register_metadir('1.9',
 
3959
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack6',
 
3960
    help='A repository format using B+tree indexes. These indexes '
 
3961
         'are smaller in size, have smarter caching and provide faster '
 
3962
         'performance for most operations.',
 
3963
    branch_format='bzrlib.branch.BzrBranchFormat7',
 
3964
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
 
3965
    hidden=True,
 
3966
    )
 
3967
format_registry.register_metadir('1.9-rich-root',
 
3968
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack6RichRoot',
 
3969
    help='A variant of 1.9 that supports rich-root data '
 
3970
         '(needed for bzr-svn and bzr-git).',
 
3971
    branch_format='bzrlib.branch.BzrBranchFormat7',
 
3972
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
 
3973
    hidden=True,
 
3974
    )
 
3975
format_registry.register_metadir('1.14',
 
3976
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack6',
 
3977
    help='A working-tree format that supports content filtering.',
 
3978
    branch_format='bzrlib.branch.BzrBranchFormat7',
 
3979
    tree_format='bzrlib.workingtree.WorkingTreeFormat5',
 
3980
    )
 
3981
format_registry.register_metadir('1.14-rich-root',
 
3982
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack6RichRoot',
 
3983
    help='A variant of 1.14 that supports rich-root data '
 
3984
         '(needed for bzr-svn and bzr-git).',
 
3985
    branch_format='bzrlib.branch.BzrBranchFormat7',
 
3986
    tree_format='bzrlib.workingtree.WorkingTreeFormat5',
 
3987
    )
 
3988
# The following un-numbered 'development' formats should always just be aliases.
 
3989
format_registry.register_metadir('development-rich-root',
 
3990
    'bzrlib.repofmt.groupcompress_repo.RepositoryFormatCHK1',
 
3991
    help='Current development format. Supports rich roots. Can convert data '
 
3992
        'to and from rich-root-pack (and anything compatible with '
 
3993
        'rich-root-pack) format repositories. Repositories and branches in '
 
3994
        'this format can only be read by bzr.dev. Please read '
 
3995
        'http://doc.bazaar.canonical.com/latest/developers/development-repo.html '
 
3996
        'before use.',
 
3997
    branch_format='bzrlib.branch.BzrBranchFormat7',
 
3998
    tree_format='bzrlib.workingtree.WorkingTreeFormat6',
 
3999
    experimental=True,
 
4000
    alias=True,
 
4001
    hidden=True,
 
4002
    )
 
4003
format_registry.register_metadir('development-subtree',
 
4004
    'bzrlib.repofmt.pack_repo.RepositoryFormatPackDevelopment2Subtree',
 
4005
    help='Current development format, subtree variant. Can convert data to and '
 
4006
        'from pack-0.92-subtree (and anything compatible with '
 
4007
        'pack-0.92-subtree) format repositories. Repositories and branches in '
 
4008
        'this format can only be read by bzr.dev. Please read '
 
4009
        'http://doc.bazaar.canonical.com/latest/developers/development-repo.html '
 
4010
        'before use.',
 
4011
    branch_format='bzrlib.branch.BzrBranchFormat7',
 
4012
    tree_format='bzrlib.workingtree.WorkingTreeFormat6',
 
4013
    experimental=True,
 
4014
    hidden=True,
 
4015
    alias=False, # Restore to being an alias when an actual development subtree format is added
 
4016
                 # This current non-alias status is simply because we did not introduce a
 
4017
                 # chk based subtree format.
 
4018
    )
 
4019
 
 
4020
# And the development formats above will have aliased one of the following:
 
4021
format_registry.register_metadir('development6-rich-root',
 
4022
    'bzrlib.repofmt.groupcompress_repo.RepositoryFormatCHK1',
 
4023
    help='pack-1.9 with 255-way hashed CHK inv, group compress, rich roots '
 
4024
        'Please read '
 
4025
        'http://doc.bazaar.canonical.com/latest/developers/development-repo.html '
 
4026
        'before use.',
 
4027
    branch_format='bzrlib.branch.BzrBranchFormat7',
 
4028
    tree_format='bzrlib.workingtree.WorkingTreeFormat6',
 
4029
    hidden=True,
 
4030
    experimental=True,
 
4031
    )
 
4032
 
 
4033
format_registry.register_metadir('development7-rich-root',
 
4034
    'bzrlib.repofmt.groupcompress_repo.RepositoryFormatCHK2',
 
4035
    help='pack-1.9 with 255-way hashed CHK inv, bencode revision, group compress, '
 
4036
        'rich roots. Please read '
 
4037
        'http://doc.bazaar.canonical.com/latest/developers/development-repo.html '
 
4038
        'before use.',
 
4039
    branch_format='bzrlib.branch.BzrBranchFormat7',
 
4040
    tree_format='bzrlib.workingtree.WorkingTreeFormat6',
 
4041
    hidden=True,
 
4042
    experimental=True,
 
4043
    )
 
4044
 
 
4045
format_registry.register_metadir('2a',
 
4046
    'bzrlib.repofmt.groupcompress_repo.RepositoryFormat2a',
 
4047
    help='First format for bzr 2.0 series.\n'
 
4048
        'Uses group-compress storage.\n'
 
4049
        'Provides rich roots which are a one-way transition.\n',
 
4050
        # 'storage in packs, 255-way hashed CHK inventory, bencode revision, group compress, '
 
4051
        # 'rich roots. Supported by bzr 1.16 and later.',
 
4052
    branch_format='bzrlib.branch.BzrBranchFormat7',
 
4053
    tree_format='bzrlib.workingtree.WorkingTreeFormat6',
 
4054
    experimental=True,
 
4055
    )
 
4056
 
 
4057
# The following format should be an alias for the rich root equivalent 
 
4058
# of the default format
 
4059
format_registry.register_metadir('default-rich-root',
 
4060
    'bzrlib.repofmt.groupcompress_repo.RepositoryFormat2a',
 
4061
    branch_format='bzrlib.branch.BzrBranchFormat7',
 
4062
    tree_format='bzrlib.workingtree.WorkingTreeFormat6',
 
4063
    alias=True,
 
4064
    hidden=True,
 
4065
    help='Same as 2a.')
 
4066
 
 
4067
# The current format that is made on 'bzr init'.
 
4068
format_registry.set_default('2a')