/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: Robert Collins
  • Date: 2008-04-06 23:37:06 UTC
  • mto: This revision was merged to the branch mainline in revision 3340.
  • Revision ID: robertc@robertcollins.net-20080406233706-3md3w1c651a0pndm
Fix ReST table formatting in doc/developers/plugin-api.txt.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2005, 2006, 2007 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  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
from cStringIO import StringIO
 
31
import os
 
32
import sys
 
33
 
 
34
from bzrlib.lazy_import import lazy_import
 
35
lazy_import(globals(), """
 
36
from stat import S_ISDIR
 
37
import textwrap
 
38
from warnings import warn
 
39
 
 
40
import bzrlib
 
41
from bzrlib import (
 
42
    errors,
 
43
    graph,
 
44
    lockable_files,
 
45
    lockdir,
 
46
    registry,
 
47
    remote,
 
48
    revision as _mod_revision,
 
49
    symbol_versioning,
 
50
    ui,
 
51
    urlutils,
 
52
    win32utils,
 
53
    workingtree,
 
54
    workingtree_4,
 
55
    xml4,
 
56
    xml5,
 
57
    )
 
58
from bzrlib.osutils import (
 
59
    sha_strings,
 
60
    sha_string,
 
61
    )
 
62
from bzrlib.smart.client import _SmartClient
 
63
from bzrlib.smart import protocol
 
64
from bzrlib.store.revision.text import TextRevisionStore
 
65
from bzrlib.store.text import TextStore
 
66
from bzrlib.store.versioned import WeaveStore
 
67
from bzrlib.transactions import WriteTransaction
 
68
from bzrlib.transport import (
 
69
    do_catching_redirections,
 
70
    get_transport,
 
71
    )
 
72
from bzrlib.weave import Weave
 
73
""")
 
74
 
 
75
from bzrlib.trace import (
 
76
    mutter,
 
77
    note,
 
78
    )
 
79
from bzrlib.transport.local import LocalTransport
 
80
from bzrlib.symbol_versioning import (
 
81
    deprecated_function,
 
82
    deprecated_method,
 
83
    zero_ninetyone,
 
84
    )
 
85
 
 
86
 
 
87
class BzrDir(object):
 
88
    """A .bzr control diretory.
 
89
    
 
90
    BzrDir instances let you create or open any of the things that can be
 
91
    found within .bzr - checkouts, branches and repositories.
 
92
    
 
93
    transport
 
94
        the transport which this bzr dir is rooted at (i.e. file:///.../.bzr/)
 
95
    root_transport
 
96
        a transport connected to the directory this bzr was opened from
 
97
        (i.e. the parent directory holding the .bzr directory).
 
98
    """
 
99
 
 
100
    def break_lock(self):
 
101
        """Invoke break_lock on the first object in the bzrdir.
 
102
 
 
103
        If there is a tree, the tree is opened and break_lock() called.
 
104
        Otherwise, branch is tried, and finally repository.
 
105
        """
 
106
        # XXX: This seems more like a UI function than something that really
 
107
        # belongs in this class.
 
108
        try:
 
109
            thing_to_unlock = self.open_workingtree()
 
110
        except (errors.NotLocalUrl, errors.NoWorkingTree):
 
111
            try:
 
112
                thing_to_unlock = self.open_branch()
 
113
            except errors.NotBranchError:
 
114
                try:
 
115
                    thing_to_unlock = self.open_repository()
 
116
                except errors.NoRepositoryPresent:
 
117
                    return
 
118
        thing_to_unlock.break_lock()
 
119
 
 
120
    def can_convert_format(self):
 
121
        """Return true if this bzrdir is one whose format we can convert from."""
 
122
        return True
 
123
 
 
124
    def check_conversion_target(self, target_format):
 
125
        target_repo_format = target_format.repository_format
 
126
        source_repo_format = self._format.repository_format
 
127
        source_repo_format.check_conversion_target(target_repo_format)
 
128
 
 
129
    @staticmethod
 
130
    def _check_supported(format, allow_unsupported,
 
131
        recommend_upgrade=True,
 
132
        basedir=None):
 
133
        """Give an error or warning on old formats.
 
134
 
 
135
        :param format: may be any kind of format - workingtree, branch, 
 
136
        or repository.
 
137
 
 
138
        :param allow_unsupported: If true, allow opening 
 
139
        formats that are strongly deprecated, and which may 
 
140
        have limited functionality.
 
141
 
 
142
        :param recommend_upgrade: If true (default), warn
 
143
        the user through the ui object that they may wish
 
144
        to upgrade the object.
 
145
        """
 
146
        # TODO: perhaps move this into a base Format class; it's not BzrDir
 
147
        # specific. mbp 20070323
 
148
        if not allow_unsupported and not format.is_supported():
 
149
            # see open_downlevel to open legacy branches.
 
150
            raise errors.UnsupportedFormatError(format=format)
 
151
        if recommend_upgrade \
 
152
            and getattr(format, 'upgrade_recommended', False):
 
153
            ui.ui_factory.recommend_upgrade(
 
154
                format.get_format_description(),
 
155
                basedir)
 
156
 
 
157
    def clone(self, url, revision_id=None, force_new_repo=False):
 
158
        """Clone this bzrdir and its contents to url verbatim.
 
159
 
 
160
        If url's last component does not exist, it will be created.
 
161
 
 
162
        if revision_id is not None, then the clone operation may tune
 
163
            itself to download less data.
 
164
        :param force_new_repo: Do not use a shared repository for the target 
 
165
                               even if one is available.
 
166
        """
 
167
        return self.clone_on_transport(get_transport(url),
 
168
                                       revision_id=revision_id,
 
169
                                       force_new_repo=force_new_repo)
 
170
 
 
171
    def clone_on_transport(self, transport, revision_id=None,
 
172
                           force_new_repo=False):
 
173
        """Clone this bzrdir and its contents to transport verbatim.
 
174
 
 
175
        If the target directory does not exist, it will be created.
 
176
 
 
177
        if revision_id is not None, then the clone operation may tune
 
178
            itself to download less data.
 
179
        :param force_new_repo: Do not use a shared repository for the target 
 
180
                               even if one is available.
 
181
        """
 
182
        transport.ensure_base()
 
183
        result = self._format.initialize_on_transport(transport)
 
184
        try:
 
185
            local_repo = self.find_repository()
 
186
        except errors.NoRepositoryPresent:
 
187
            local_repo = None
 
188
        if local_repo:
 
189
            # may need to copy content in
 
190
            if force_new_repo:
 
191
                result_repo = local_repo.clone(
 
192
                    result,
 
193
                    revision_id=revision_id)
 
194
                result_repo.set_make_working_trees(local_repo.make_working_trees())
 
195
            else:
 
196
                try:
 
197
                    result_repo = result.find_repository()
 
198
                    # fetch content this dir needs.
 
199
                    result_repo.fetch(local_repo, revision_id=revision_id)
 
200
                except errors.NoRepositoryPresent:
 
201
                    # needed to make one anyway.
 
202
                    result_repo = local_repo.clone(
 
203
                        result,
 
204
                        revision_id=revision_id)
 
205
                    result_repo.set_make_working_trees(local_repo.make_working_trees())
 
206
        # 1 if there is a branch present
 
207
        #   make sure its content is available in the target repository
 
208
        #   clone it.
 
209
        try:
 
210
            self.open_branch().clone(result, revision_id=revision_id)
 
211
        except errors.NotBranchError:
 
212
            pass
 
213
        try:
 
214
            result_repo = result.find_repository()
 
215
        except errors.NoRepositoryPresent:
 
216
            result_repo = None
 
217
        if result_repo is None or result_repo.make_working_trees():
 
218
            try:
 
219
                self.open_workingtree().clone(result)
 
220
            except (errors.NoWorkingTree, errors.NotLocalUrl):
 
221
                pass
 
222
        return result
 
223
 
 
224
    # TODO: This should be given a Transport, and should chdir up; otherwise
 
225
    # this will open a new connection.
 
226
    def _make_tail(self, url):
 
227
        t = get_transport(url)
 
228
        t.ensure_base()
 
229
 
 
230
    @classmethod
 
231
    def create(cls, base, format=None, possible_transports=None):
 
232
        """Create a new BzrDir at the url 'base'.
 
233
        
 
234
        :param format: If supplied, the format of branch to create.  If not
 
235
            supplied, the default is used.
 
236
        :param possible_transports: If supplied, a list of transports that 
 
237
            can be reused to share a remote connection.
 
238
        """
 
239
        if cls is not BzrDir:
 
240
            raise AssertionError("BzrDir.create always creates the default"
 
241
                " format, not one of %r" % cls)
 
242
        t = get_transport(base, possible_transports)
 
243
        t.ensure_base()
 
244
        if format is None:
 
245
            format = BzrDirFormat.get_default_format()
 
246
        return format.initialize_on_transport(t)
 
247
 
 
248
    @staticmethod
 
249
    def find_bzrdirs(transport, evaluate=None, list_current=None):
 
250
        """Find bzrdirs recursively from current location.
 
251
 
 
252
        This is intended primarily as a building block for more sophisticated
 
253
        functionality, like finding trees under a directory, or finding
 
254
        branches that use a given repository.
 
255
        :param evaluate: An optional callable that yields recurse, value,
 
256
            where recurse controls whether this bzrdir is recursed into
 
257
            and value is the value to yield.  By default, all bzrdirs
 
258
            are recursed into, and the return value is the bzrdir.
 
259
        :param list_current: if supplied, use this function to list the current
 
260
            directory, instead of Transport.list_dir
 
261
        :return: a generator of found bzrdirs, or whatever evaluate returns.
 
262
        """
 
263
        if list_current is None:
 
264
            def list_current(transport):
 
265
                return transport.list_dir('')
 
266
        if evaluate is None:
 
267
            def evaluate(bzrdir):
 
268
                return True, bzrdir
 
269
 
 
270
        pending = [transport]
 
271
        while len(pending) > 0:
 
272
            current_transport = pending.pop()
 
273
            recurse = True
 
274
            try:
 
275
                bzrdir = BzrDir.open_from_transport(current_transport)
 
276
            except errors.NotBranchError:
 
277
                pass
 
278
            else:
 
279
                recurse, value = evaluate(bzrdir)
 
280
                yield value
 
281
            try:
 
282
                subdirs = list_current(current_transport)
 
283
            except errors.NoSuchFile:
 
284
                continue
 
285
            if recurse:
 
286
                for subdir in sorted(subdirs, reverse=True):
 
287
                    pending.append(current_transport.clone(subdir))
 
288
 
 
289
    @staticmethod
 
290
    def find_branches(transport):
 
291
        """Find all branches under a transport.
 
292
 
 
293
        This will find all branches below the transport, including branches
 
294
        inside other branches.  Where possible, it will use
 
295
        Repository.find_branches.
 
296
 
 
297
        To list all the branches that use a particular Repository, see
 
298
        Repository.find_branches
 
299
        """
 
300
        def evaluate(bzrdir):
 
301
            try:
 
302
                repository = bzrdir.open_repository()
 
303
            except errors.NoRepositoryPresent:
 
304
                pass
 
305
            else:
 
306
                return False, (None, repository)
 
307
            try:
 
308
                branch = bzrdir.open_branch()
 
309
            except errors.NotBranchError:
 
310
                return True, (None, None)
 
311
            else:
 
312
                return True, (branch, None)
 
313
        branches = []
 
314
        for branch, repo in BzrDir.find_bzrdirs(transport, evaluate=evaluate):
 
315
            if repo is not None:
 
316
                branches.extend(repo.find_branches())
 
317
            if branch is not None:
 
318
                branches.append(branch)
 
319
        return branches
 
320
 
 
321
 
 
322
    def destroy_repository(self):
 
323
        """Destroy the repository in this BzrDir"""
 
324
        raise NotImplementedError(self.destroy_repository)
 
325
 
 
326
    def create_branch(self):
 
327
        """Create a branch in this BzrDir.
 
328
 
 
329
        The bzrdir's format will control what branch format is created.
 
330
        For more control see BranchFormatXX.create(a_bzrdir).
 
331
        """
 
332
        raise NotImplementedError(self.create_branch)
 
333
 
 
334
    def destroy_branch(self):
 
335
        """Destroy the branch in this BzrDir"""
 
336
        raise NotImplementedError(self.destroy_branch)
 
337
 
 
338
    @staticmethod
 
339
    def create_branch_and_repo(base, force_new_repo=False, format=None):
 
340
        """Create a new BzrDir, Branch and Repository at the url 'base'.
 
341
 
 
342
        This will use the current default BzrDirFormat unless one is
 
343
        specified, and use whatever 
 
344
        repository format that that uses via bzrdir.create_branch and
 
345
        create_repository. If a shared repository is available that is used
 
346
        preferentially.
 
347
 
 
348
        The created Branch object is returned.
 
349
 
 
350
        :param base: The URL to create the branch at.
 
351
        :param force_new_repo: If True a new repository is always created.
 
352
        :param format: If supplied, the format of branch to create.  If not
 
353
            supplied, the default is used.
 
354
        """
 
355
        bzrdir = BzrDir.create(base, format)
 
356
        bzrdir._find_or_create_repository(force_new_repo)
 
357
        return bzrdir.create_branch()
 
358
 
 
359
    def _find_or_create_repository(self, force_new_repo):
 
360
        """Create a new repository if needed, returning the repository."""
 
361
        if force_new_repo:
 
362
            return self.create_repository()
 
363
        try:
 
364
            return self.find_repository()
 
365
        except errors.NoRepositoryPresent:
 
366
            return self.create_repository()
 
367
        
 
368
    @staticmethod
 
369
    def create_branch_convenience(base, force_new_repo=False,
 
370
                                  force_new_tree=None, format=None,
 
371
                                  possible_transports=None):
 
372
        """Create a new BzrDir, Branch and Repository at the url 'base'.
 
373
 
 
374
        This is a convenience function - it will use an existing repository
 
375
        if possible, can be told explicitly whether to create a working tree or
 
376
        not.
 
377
 
 
378
        This will use the current default BzrDirFormat unless one is
 
379
        specified, and use whatever 
 
380
        repository format that that uses via bzrdir.create_branch and
 
381
        create_repository. If a shared repository is available that is used
 
382
        preferentially. Whatever repository is used, its tree creation policy
 
383
        is followed.
 
384
 
 
385
        The created Branch object is returned.
 
386
        If a working tree cannot be made due to base not being a file:// url,
 
387
        no error is raised unless force_new_tree is True, in which case no 
 
388
        data is created on disk and NotLocalUrl is raised.
 
389
 
 
390
        :param base: The URL to create the branch at.
 
391
        :param force_new_repo: If True a new repository is always created.
 
392
        :param force_new_tree: If True or False force creation of a tree or 
 
393
                               prevent such creation respectively.
 
394
        :param format: Override for the bzrdir format to create.
 
395
        :param possible_transports: An optional reusable transports list.
 
396
        """
 
397
        if force_new_tree:
 
398
            # check for non local urls
 
399
            t = get_transport(base, possible_transports)
 
400
            if not isinstance(t, LocalTransport):
 
401
                raise errors.NotLocalUrl(base)
 
402
        bzrdir = BzrDir.create(base, format, possible_transports)
 
403
        repo = bzrdir._find_or_create_repository(force_new_repo)
 
404
        result = bzrdir.create_branch()
 
405
        if force_new_tree or (repo.make_working_trees() and
 
406
                              force_new_tree is None):
 
407
            try:
 
408
                bzrdir.create_workingtree()
 
409
            except errors.NotLocalUrl:
 
410
                pass
 
411
        return result
 
412
 
 
413
    @staticmethod
 
414
    @deprecated_function(zero_ninetyone)
 
415
    def create_repository(base, shared=False, format=None):
 
416
        """Create a new BzrDir and Repository at the url 'base'.
 
417
 
 
418
        If no format is supplied, this will default to the current default
 
419
        BzrDirFormat by default, and use whatever repository format that that
 
420
        uses for bzrdirformat.create_repository.
 
421
 
 
422
        :param shared: Create a shared repository rather than a standalone
 
423
                       repository.
 
424
        The Repository object is returned.
 
425
 
 
426
        This must be overridden as an instance method in child classes, where
 
427
        it should take no parameters and construct whatever repository format
 
428
        that child class desires.
 
429
 
 
430
        This method is deprecated, please call create_repository on a bzrdir
 
431
        instance instead.
 
432
        """
 
433
        bzrdir = BzrDir.create(base, format)
 
434
        return bzrdir.create_repository(shared)
 
435
 
 
436
    @staticmethod
 
437
    def create_standalone_workingtree(base, format=None):
 
438
        """Create a new BzrDir, WorkingTree, Branch and Repository at 'base'.
 
439
 
 
440
        'base' must be a local path or a file:// url.
 
441
 
 
442
        This will use the current default BzrDirFormat unless one is
 
443
        specified, and use whatever 
 
444
        repository format that that uses for bzrdirformat.create_workingtree,
 
445
        create_branch and create_repository.
 
446
 
 
447
        :param format: Override for the bzrdir format to create.
 
448
        :return: The WorkingTree object.
 
449
        """
 
450
        t = get_transport(base)
 
451
        if not isinstance(t, LocalTransport):
 
452
            raise errors.NotLocalUrl(base)
 
453
        bzrdir = BzrDir.create_branch_and_repo(base,
 
454
                                               force_new_repo=True,
 
455
                                               format=format).bzrdir
 
456
        return bzrdir.create_workingtree()
 
457
 
 
458
    def create_workingtree(self, revision_id=None, from_branch=None,
 
459
        accelerator_tree=None, hardlink=False):
 
460
        """Create a working tree at this BzrDir.
 
461
        
 
462
        :param revision_id: create it as of this revision id.
 
463
        :param from_branch: override bzrdir branch (for lightweight checkouts)
 
464
        :param accelerator_tree: A tree which can be used for retrieving file
 
465
            contents more quickly than the revision tree, i.e. a workingtree.
 
466
            The revision tree will be used for cases where accelerator_tree's
 
467
            content is different.
 
468
        """
 
469
        raise NotImplementedError(self.create_workingtree)
 
470
 
 
471
    def retire_bzrdir(self, limit=10000):
 
472
        """Permanently disable the bzrdir.
 
473
 
 
474
        This is done by renaming it to give the user some ability to recover
 
475
        if there was a problem.
 
476
 
 
477
        This will have horrible consequences if anyone has anything locked or
 
478
        in use.
 
479
        :param limit: number of times to retry
 
480
        """
 
481
        i  = 0
 
482
        while True:
 
483
            try:
 
484
                to_path = '.bzr.retired.%d' % i
 
485
                self.root_transport.rename('.bzr', to_path)
 
486
                note("renamed %s to %s"
 
487
                    % (self.root_transport.abspath('.bzr'), to_path))
 
488
                return
 
489
            except (errors.TransportError, IOError, errors.PathError):
 
490
                i += 1
 
491
                if i > limit:
 
492
                    raise
 
493
                else:
 
494
                    pass
 
495
 
 
496
    def destroy_workingtree(self):
 
497
        """Destroy the working tree at this BzrDir.
 
498
 
 
499
        Formats that do not support this may raise UnsupportedOperation.
 
500
        """
 
501
        raise NotImplementedError(self.destroy_workingtree)
 
502
 
 
503
    def destroy_workingtree_metadata(self):
 
504
        """Destroy the control files for the working tree at this BzrDir.
 
505
 
 
506
        The contents of working tree files are not affected.
 
507
        Formats that do not support this may raise UnsupportedOperation.
 
508
        """
 
509
        raise NotImplementedError(self.destroy_workingtree_metadata)
 
510
 
 
511
    def find_repository(self):
 
512
        """Find the repository that should be used.
 
513
 
 
514
        This does not require a branch as we use it to find the repo for
 
515
        new branches as well as to hook existing branches up to their
 
516
        repository.
 
517
        """
 
518
        try:
 
519
            return self.open_repository()
 
520
        except errors.NoRepositoryPresent:
 
521
            pass
 
522
        next_transport = self.root_transport.clone('..')
 
523
        while True:
 
524
            # find the next containing bzrdir
 
525
            try:
 
526
                found_bzrdir = BzrDir.open_containing_from_transport(
 
527
                    next_transport)[0]
 
528
            except errors.NotBranchError:
 
529
                # none found
 
530
                raise errors.NoRepositoryPresent(self)
 
531
            # does it have a repository ?
 
532
            try:
 
533
                repository = found_bzrdir.open_repository()
 
534
            except errors.NoRepositoryPresent:
 
535
                next_transport = found_bzrdir.root_transport.clone('..')
 
536
                if (found_bzrdir.root_transport.base == next_transport.base):
 
537
                    # top of the file system
 
538
                    break
 
539
                else:
 
540
                    continue
 
541
            if ((found_bzrdir.root_transport.base ==
 
542
                 self.root_transport.base) or repository.is_shared()):
 
543
                return repository
 
544
            else:
 
545
                raise errors.NoRepositoryPresent(self)
 
546
        raise errors.NoRepositoryPresent(self)
 
547
 
 
548
    def get_branch_reference(self):
 
549
        """Return the referenced URL for the branch in this bzrdir.
 
550
 
 
551
        :raises NotBranchError: If there is no Branch.
 
552
        :return: The URL the branch in this bzrdir references if it is a
 
553
            reference branch, or None for regular branches.
 
554
        """
 
555
        return None
 
556
 
 
557
    def get_branch_transport(self, branch_format):
 
558
        """Get the transport for use by branch format in this BzrDir.
 
559
 
 
560
        Note that bzr dirs that do not support format strings will raise
 
561
        IncompatibleFormat if the branch format they are given has
 
562
        a format string, and vice versa.
 
563
 
 
564
        If branch_format is None, the transport is returned with no 
 
565
        checking. If it is not None, then the returned transport is
 
566
        guaranteed to point to an existing directory ready for use.
 
567
        """
 
568
        raise NotImplementedError(self.get_branch_transport)
 
569
        
 
570
    def get_repository_transport(self, repository_format):
 
571
        """Get the transport for use by repository format in this BzrDir.
 
572
 
 
573
        Note that bzr dirs that do not support format strings will raise
 
574
        IncompatibleFormat if the repository format they are given has
 
575
        a format string, and vice versa.
 
576
 
 
577
        If repository_format is None, the transport is returned with no 
 
578
        checking. If it is not None, then the returned transport is
 
579
        guaranteed to point to an existing directory ready for use.
 
580
        """
 
581
        raise NotImplementedError(self.get_repository_transport)
 
582
        
 
583
    def get_workingtree_transport(self, tree_format):
 
584
        """Get the transport for use by workingtree format in this BzrDir.
 
585
 
 
586
        Note that bzr dirs that do not support format strings will raise
 
587
        IncompatibleFormat if the workingtree format they are given has a
 
588
        format string, and vice versa.
 
589
 
 
590
        If workingtree_format is None, the transport is returned with no 
 
591
        checking. If it is not None, then the returned transport is
 
592
        guaranteed to point to an existing directory ready for use.
 
593
        """
 
594
        raise NotImplementedError(self.get_workingtree_transport)
 
595
        
 
596
    def __init__(self, _transport, _format):
 
597
        """Initialize a Bzr control dir object.
 
598
        
 
599
        Only really common logic should reside here, concrete classes should be
 
600
        made with varying behaviours.
 
601
 
 
602
        :param _format: the format that is creating this BzrDir instance.
 
603
        :param _transport: the transport this dir is based at.
 
604
        """
 
605
        self._format = _format
 
606
        self.transport = _transport.clone('.bzr')
 
607
        self.root_transport = _transport
 
608
 
 
609
    def is_control_filename(self, filename):
 
610
        """True if filename is the name of a path which is reserved for bzrdir's.
 
611
        
 
612
        :param filename: A filename within the root transport of this bzrdir.
 
613
 
 
614
        This is true IF and ONLY IF the filename is part of the namespace reserved
 
615
        for bzr control dirs. Currently this is the '.bzr' directory in the root
 
616
        of the root_transport. it is expected that plugins will need to extend
 
617
        this in the future - for instance to make bzr talk with svn working
 
618
        trees.
 
619
        """
 
620
        # this might be better on the BzrDirFormat class because it refers to 
 
621
        # all the possible bzrdir disk formats. 
 
622
        # This method is tested via the workingtree is_control_filename tests- 
 
623
        # it was extracted from WorkingTree.is_control_filename. If the method's
 
624
        # contract is extended beyond the current trivial implementation, please
 
625
        # add new tests for it to the appropriate place.
 
626
        return filename == '.bzr' or filename.startswith('.bzr/')
 
627
 
 
628
    def needs_format_conversion(self, format=None):
 
629
        """Return true if this bzrdir needs convert_format run on it.
 
630
        
 
631
        For instance, if the repository format is out of date but the 
 
632
        branch and working tree are not, this should return True.
 
633
 
 
634
        :param format: Optional parameter indicating a specific desired
 
635
                       format we plan to arrive at.
 
636
        """
 
637
        raise NotImplementedError(self.needs_format_conversion)
 
638
 
 
639
    @staticmethod
 
640
    def open_unsupported(base):
 
641
        """Open a branch which is not supported."""
 
642
        return BzrDir.open(base, _unsupported=True)
 
643
        
 
644
    @staticmethod
 
645
    def open(base, _unsupported=False, possible_transports=None):
 
646
        """Open an existing bzrdir, rooted at 'base' (url).
 
647
        
 
648
        :param _unsupported: a private parameter to the BzrDir class.
 
649
        """
 
650
        t = get_transport(base, possible_transports=possible_transports)
 
651
        return BzrDir.open_from_transport(t, _unsupported=_unsupported)
 
652
 
 
653
    @staticmethod
 
654
    def open_from_transport(transport, _unsupported=False,
 
655
                            _server_formats=True):
 
656
        """Open a bzrdir within a particular directory.
 
657
 
 
658
        :param transport: Transport containing the bzrdir.
 
659
        :param _unsupported: private.
 
660
        """
 
661
        base = transport.base
 
662
 
 
663
        def find_format(transport):
 
664
            return transport, BzrDirFormat.find_format(
 
665
                transport, _server_formats=_server_formats)
 
666
 
 
667
        def redirected(transport, e, redirection_notice):
 
668
            qualified_source = e.get_source_url()
 
669
            relpath = transport.relpath(qualified_source)
 
670
            if not e.target.endswith(relpath):
 
671
                # Not redirected to a branch-format, not a branch
 
672
                raise errors.NotBranchError(path=e.target)
 
673
            target = e.target[:-len(relpath)]
 
674
            note('%s is%s redirected to %s',
 
675
                 transport.base, e.permanently, target)
 
676
            # Let's try with a new transport
 
677
            # FIXME: If 'transport' has a qualifier, this should
 
678
            # be applied again to the new transport *iff* the
 
679
            # schemes used are the same. Uncomment this code
 
680
            # once the function (and tests) exist.
 
681
            # -- vila20070212
 
682
            #target = urlutils.copy_url_qualifiers(original, target)
 
683
            return get_transport(target)
 
684
 
 
685
        try:
 
686
            transport, format = do_catching_redirections(find_format,
 
687
                                                         transport,
 
688
                                                         redirected)
 
689
        except errors.TooManyRedirections:
 
690
            raise errors.NotBranchError(base)
 
691
 
 
692
        BzrDir._check_supported(format, _unsupported)
 
693
        return format.open(transport, _found=True)
 
694
 
 
695
    def open_branch(self, unsupported=False):
 
696
        """Open the branch object at this BzrDir if one is present.
 
697
 
 
698
        If unsupported is True, then no longer supported branch formats can
 
699
        still be opened.
 
700
        
 
701
        TODO: static convenience version of this?
 
702
        """
 
703
        raise NotImplementedError(self.open_branch)
 
704
 
 
705
    @staticmethod
 
706
    def open_containing(url, possible_transports=None):
 
707
        """Open an existing branch which contains url.
 
708
        
 
709
        :param url: url to search from.
 
710
        See open_containing_from_transport for more detail.
 
711
        """
 
712
        transport = get_transport(url, possible_transports)
 
713
        return BzrDir.open_containing_from_transport(transport)
 
714
    
 
715
    @staticmethod
 
716
    def open_containing_from_transport(a_transport):
 
717
        """Open an existing branch which contains a_transport.base.
 
718
 
 
719
        This probes for a branch at a_transport, and searches upwards from there.
 
720
 
 
721
        Basically we keep looking up until we find the control directory or
 
722
        run into the root.  If there isn't one, raises NotBranchError.
 
723
        If there is one and it is either an unrecognised format or an unsupported 
 
724
        format, UnknownFormatError or UnsupportedFormatError are raised.
 
725
        If there is one, it is returned, along with the unused portion of url.
 
726
 
 
727
        :return: The BzrDir that contains the path, and a Unicode path 
 
728
                for the rest of the URL.
 
729
        """
 
730
        # this gets the normalised url back. I.e. '.' -> the full path.
 
731
        url = a_transport.base
 
732
        while True:
 
733
            try:
 
734
                result = BzrDir.open_from_transport(a_transport)
 
735
                return result, urlutils.unescape(a_transport.relpath(url))
 
736
            except errors.NotBranchError, e:
 
737
                pass
 
738
            try:
 
739
                new_t = a_transport.clone('..')
 
740
            except errors.InvalidURLJoin:
 
741
                # reached the root, whatever that may be
 
742
                raise errors.NotBranchError(path=url)
 
743
            if new_t.base == a_transport.base:
 
744
                # reached the root, whatever that may be
 
745
                raise errors.NotBranchError(path=url)
 
746
            a_transport = new_t
 
747
 
 
748
    def _get_tree_branch(self):
 
749
        """Return the branch and tree, if any, for this bzrdir.
 
750
 
 
751
        Return None for tree if not present or inaccessible.
 
752
        Raise NotBranchError if no branch is present.
 
753
        :return: (tree, branch)
 
754
        """
 
755
        try:
 
756
            tree = self.open_workingtree()
 
757
        except (errors.NoWorkingTree, errors.NotLocalUrl):
 
758
            tree = None
 
759
            branch = self.open_branch()
 
760
        else:
 
761
            branch = tree.branch
 
762
        return tree, branch
 
763
 
 
764
    @classmethod
 
765
    def open_tree_or_branch(klass, location):
 
766
        """Return the branch and working tree at a location.
 
767
 
 
768
        If there is no tree at the location, tree will be None.
 
769
        If there is no branch at the location, an exception will be
 
770
        raised
 
771
        :return: (tree, branch)
 
772
        """
 
773
        bzrdir = klass.open(location)
 
774
        return bzrdir._get_tree_branch()
 
775
 
 
776
    @classmethod
 
777
    def open_containing_tree_or_branch(klass, location):
 
778
        """Return the branch and working tree contained by a location.
 
779
 
 
780
        Returns (tree, branch, relpath).
 
781
        If there is no tree at containing the location, tree will be None.
 
782
        If there is no branch containing the location, an exception will be
 
783
        raised
 
784
        relpath is the portion of the path that is contained by the branch.
 
785
        """
 
786
        bzrdir, relpath = klass.open_containing(location)
 
787
        tree, branch = bzrdir._get_tree_branch()
 
788
        return tree, branch, relpath
 
789
 
 
790
    def open_repository(self, _unsupported=False):
 
791
        """Open the repository object at this BzrDir if one is present.
 
792
 
 
793
        This will not follow the Branch object pointer - it's strictly a direct
 
794
        open facility. Most client code should use open_branch().repository to
 
795
        get at a repository.
 
796
 
 
797
        :param _unsupported: a private parameter, not part of the api.
 
798
        TODO: static convenience version of this?
 
799
        """
 
800
        raise NotImplementedError(self.open_repository)
 
801
 
 
802
    def open_workingtree(self, _unsupported=False,
 
803
                         recommend_upgrade=True, from_branch=None):
 
804
        """Open the workingtree object at this BzrDir if one is present.
 
805
 
 
806
        :param recommend_upgrade: Optional keyword parameter, when True (the
 
807
            default), emit through the ui module a recommendation that the user
 
808
            upgrade the working tree when the workingtree being opened is old
 
809
            (but still fully supported).
 
810
        :param from_branch: override bzrdir branch (for lightweight checkouts)
 
811
        """
 
812
        raise NotImplementedError(self.open_workingtree)
 
813
 
 
814
    def has_branch(self):
 
815
        """Tell if this bzrdir contains a branch.
 
816
        
 
817
        Note: if you're going to open the branch, you should just go ahead
 
818
        and try, and not ask permission first.  (This method just opens the 
 
819
        branch and discards it, and that's somewhat expensive.) 
 
820
        """
 
821
        try:
 
822
            self.open_branch()
 
823
            return True
 
824
        except errors.NotBranchError:
 
825
            return False
 
826
 
 
827
    def has_workingtree(self):
 
828
        """Tell if this bzrdir contains a working tree.
 
829
 
 
830
        This will still raise an exception if the bzrdir has a workingtree that
 
831
        is remote & inaccessible.
 
832
        
 
833
        Note: if you're going to open the working tree, you should just go ahead
 
834
        and try, and not ask permission first.  (This method just opens the 
 
835
        workingtree and discards it, and that's somewhat expensive.) 
 
836
        """
 
837
        try:
 
838
            self.open_workingtree(recommend_upgrade=False)
 
839
            return True
 
840
        except errors.NoWorkingTree:
 
841
            return False
 
842
 
 
843
    def _cloning_metadir(self):
 
844
        """Produce a metadir suitable for cloning with."""
 
845
        result_format = self._format.__class__()
 
846
        try:
 
847
            try:
 
848
                branch = self.open_branch()
 
849
                source_repository = branch.repository
 
850
            except errors.NotBranchError:
 
851
                source_branch = None
 
852
                source_repository = self.open_repository()
 
853
        except errors.NoRepositoryPresent:
 
854
            source_repository = None
 
855
        else:
 
856
            # XXX TODO: This isinstance is here because we have not implemented
 
857
            # the fix recommended in bug # 103195 - to delegate this choice the
 
858
            # repository itself.
 
859
            repo_format = source_repository._format
 
860
            if not isinstance(repo_format, remote.RemoteRepositoryFormat):
 
861
                result_format.repository_format = repo_format
 
862
        try:
 
863
            # TODO: Couldn't we just probe for the format in these cases,
 
864
            # rather than opening the whole tree?  It would be a little
 
865
            # faster. mbp 20070401
 
866
            tree = self.open_workingtree(recommend_upgrade=False)
 
867
        except (errors.NoWorkingTree, errors.NotLocalUrl):
 
868
            result_format.workingtree_format = None
 
869
        else:
 
870
            result_format.workingtree_format = tree._format.__class__()
 
871
        return result_format, source_repository
 
872
 
 
873
    def cloning_metadir(self):
 
874
        """Produce a metadir suitable for cloning or sprouting with.
 
875
 
 
876
        These operations may produce workingtrees (yes, even though they're
 
877
        "cloning" something that doesn't have a tree), so a viable workingtree
 
878
        format must be selected.
 
879
        """
 
880
        format, repository = self._cloning_metadir()
 
881
        if format._workingtree_format is None:
 
882
            if repository is None:
 
883
                return format
 
884
            tree_format = repository._format._matchingbzrdir.workingtree_format
 
885
            format.workingtree_format = tree_format.__class__()
 
886
        return format
 
887
 
 
888
    def checkout_metadir(self):
 
889
        return self.cloning_metadir()
 
890
 
 
891
    def sprout(self, url, revision_id=None, force_new_repo=False,
 
892
               recurse='down', possible_transports=None,
 
893
               accelerator_tree=None, hardlink=False):
 
894
        """Create a copy of this bzrdir prepared for use as a new line of
 
895
        development.
 
896
 
 
897
        If url's last component does not exist, it will be created.
 
898
 
 
899
        Attributes related to the identity of the source branch like
 
900
        branch nickname will be cleaned, a working tree is created
 
901
        whether one existed before or not; and a local branch is always
 
902
        created.
 
903
 
 
904
        if revision_id is not None, then the clone operation may tune
 
905
            itself to download less data.
 
906
        :param accelerator_tree: A tree which can be used for retrieving file
 
907
            contents more quickly than the revision tree, i.e. a workingtree.
 
908
            The revision tree will be used for cases where accelerator_tree's
 
909
            content is different.
 
910
        :param hardlink: If true, hard-link files from accelerator_tree,
 
911
            where possible.
 
912
        """
 
913
        target_transport = get_transport(url, possible_transports)
 
914
        target_transport.ensure_base()
 
915
        cloning_format = self.cloning_metadir()
 
916
        result = cloning_format.initialize_on_transport(target_transport)
 
917
        try:
 
918
            source_branch = self.open_branch()
 
919
            source_repository = source_branch.repository
 
920
        except errors.NotBranchError:
 
921
            source_branch = None
 
922
            try:
 
923
                source_repository = self.open_repository()
 
924
            except errors.NoRepositoryPresent:
 
925
                source_repository = None
 
926
        if force_new_repo:
 
927
            result_repo = None
 
928
        else:
 
929
            try:
 
930
                result_repo = result.find_repository()
 
931
            except errors.NoRepositoryPresent:
 
932
                result_repo = None
 
933
        if source_repository is None and result_repo is not None:
 
934
            pass
 
935
        elif source_repository is None and result_repo is None:
 
936
            # no repo available, make a new one
 
937
            result.create_repository()
 
938
        elif source_repository is not None and result_repo is None:
 
939
            # have source, and want to make a new target repo
 
940
            result_repo = source_repository.sprout(result,
 
941
                                                   revision_id=revision_id)
 
942
        else:
 
943
            # fetch needed content into target.
 
944
            if source_repository is not None:
 
945
                # would rather do 
 
946
                # source_repository.copy_content_into(result_repo,
 
947
                #                                     revision_id=revision_id)
 
948
                # so we can override the copy method
 
949
                result_repo.fetch(source_repository, revision_id=revision_id)
 
950
        if source_branch is not None:
 
951
            source_branch.sprout(result, revision_id=revision_id)
 
952
        else:
 
953
            result.create_branch()
 
954
        if isinstance(target_transport, LocalTransport) and (
 
955
            result_repo is None or result_repo.make_working_trees()):
 
956
            wt = result.create_workingtree(accelerator_tree=accelerator_tree,
 
957
                hardlink=hardlink)
 
958
            wt.lock_write()
 
959
            try:
 
960
                if wt.path2id('') is None:
 
961
                    try:
 
962
                        wt.set_root_id(self.open_workingtree.get_root_id())
 
963
                    except errors.NoWorkingTree:
 
964
                        pass
 
965
            finally:
 
966
                wt.unlock()
 
967
        else:
 
968
            wt = None
 
969
        if recurse == 'down':
 
970
            if wt is not None:
 
971
                basis = wt.basis_tree()
 
972
                basis.lock_read()
 
973
                subtrees = basis.iter_references()
 
974
                recurse_branch = wt.branch
 
975
            elif source_branch is not None:
 
976
                basis = source_branch.basis_tree()
 
977
                basis.lock_read()
 
978
                subtrees = basis.iter_references()
 
979
                recurse_branch = source_branch
 
980
            else:
 
981
                subtrees = []
 
982
                basis = None
 
983
            try:
 
984
                for path, file_id in subtrees:
 
985
                    target = urlutils.join(url, urlutils.escape(path))
 
986
                    sublocation = source_branch.reference_parent(file_id, path)
 
987
                    sublocation.bzrdir.sprout(target,
 
988
                        basis.get_reference_revision(file_id, path),
 
989
                        force_new_repo=force_new_repo, recurse=recurse)
 
990
            finally:
 
991
                if basis is not None:
 
992
                    basis.unlock()
 
993
        return result
 
994
 
 
995
 
 
996
class BzrDirPreSplitOut(BzrDir):
 
997
    """A common class for the all-in-one formats."""
 
998
 
 
999
    def __init__(self, _transport, _format):
 
1000
        """See BzrDir.__init__."""
 
1001
        super(BzrDirPreSplitOut, self).__init__(_transport, _format)
 
1002
        assert self._format._lock_class == lockable_files.TransportLock
 
1003
        assert self._format._lock_file_name == 'branch-lock'
 
1004
        self._control_files = lockable_files.LockableFiles(
 
1005
                                            self.get_branch_transport(None),
 
1006
                                            self._format._lock_file_name,
 
1007
                                            self._format._lock_class)
 
1008
 
 
1009
    def break_lock(self):
 
1010
        """Pre-splitout bzrdirs do not suffer from stale locks."""
 
1011
        raise NotImplementedError(self.break_lock)
 
1012
 
 
1013
    def clone(self, url, revision_id=None, force_new_repo=False):
 
1014
        """See BzrDir.clone()."""
 
1015
        from bzrlib.workingtree import WorkingTreeFormat2
 
1016
        self._make_tail(url)
 
1017
        result = self._format._initialize_for_clone(url)
 
1018
        self.open_repository().clone(result, revision_id=revision_id)
 
1019
        from_branch = self.open_branch()
 
1020
        from_branch.clone(result, revision_id=revision_id)
 
1021
        try:
 
1022
            self.open_workingtree().clone(result)
 
1023
        except errors.NotLocalUrl:
 
1024
            # make a new one, this format always has to have one.
 
1025
            try:
 
1026
                WorkingTreeFormat2().initialize(result)
 
1027
            except errors.NotLocalUrl:
 
1028
                # but we cannot do it for remote trees.
 
1029
                to_branch = result.open_branch()
 
1030
                WorkingTreeFormat2().stub_initialize_remote(to_branch.control_files)
 
1031
        return result
 
1032
 
 
1033
    def create_branch(self):
 
1034
        """See BzrDir.create_branch."""
 
1035
        return self.open_branch()
 
1036
 
 
1037
    def destroy_branch(self):
 
1038
        """See BzrDir.destroy_branch."""
 
1039
        raise errors.UnsupportedOperation(self.destroy_branch, self)
 
1040
 
 
1041
    def create_repository(self, shared=False):
 
1042
        """See BzrDir.create_repository."""
 
1043
        if shared:
 
1044
            raise errors.IncompatibleFormat('shared repository', self._format)
 
1045
        return self.open_repository()
 
1046
 
 
1047
    def destroy_repository(self):
 
1048
        """See BzrDir.destroy_repository."""
 
1049
        raise errors.UnsupportedOperation(self.destroy_repository, self)
 
1050
 
 
1051
    def create_workingtree(self, revision_id=None, from_branch=None,
 
1052
                           accelerator_tree=None, hardlink=False):
 
1053
        """See BzrDir.create_workingtree."""
 
1054
        # this looks buggy but is not -really-
 
1055
        # because this format creates the workingtree when the bzrdir is
 
1056
        # created
 
1057
        # clone and sprout will have set the revision_id
 
1058
        # and that will have set it for us, its only
 
1059
        # specific uses of create_workingtree in isolation
 
1060
        # that can do wonky stuff here, and that only
 
1061
        # happens for creating checkouts, which cannot be 
 
1062
        # done on this format anyway. So - acceptable wart.
 
1063
        result = self.open_workingtree(recommend_upgrade=False)
 
1064
        if revision_id is not None:
 
1065
            if revision_id == _mod_revision.NULL_REVISION:
 
1066
                result.set_parent_ids([])
 
1067
            else:
 
1068
                result.set_parent_ids([revision_id])
 
1069
        return result
 
1070
 
 
1071
    def destroy_workingtree(self):
 
1072
        """See BzrDir.destroy_workingtree."""
 
1073
        raise errors.UnsupportedOperation(self.destroy_workingtree, self)
 
1074
 
 
1075
    def destroy_workingtree_metadata(self):
 
1076
        """See BzrDir.destroy_workingtree_metadata."""
 
1077
        raise errors.UnsupportedOperation(self.destroy_workingtree_metadata, 
 
1078
                                          self)
 
1079
 
 
1080
    def get_branch_transport(self, branch_format):
 
1081
        """See BzrDir.get_branch_transport()."""
 
1082
        if branch_format is None:
 
1083
            return self.transport
 
1084
        try:
 
1085
            branch_format.get_format_string()
 
1086
        except NotImplementedError:
 
1087
            return self.transport
 
1088
        raise errors.IncompatibleFormat(branch_format, self._format)
 
1089
 
 
1090
    def get_repository_transport(self, repository_format):
 
1091
        """See BzrDir.get_repository_transport()."""
 
1092
        if repository_format is None:
 
1093
            return self.transport
 
1094
        try:
 
1095
            repository_format.get_format_string()
 
1096
        except NotImplementedError:
 
1097
            return self.transport
 
1098
        raise errors.IncompatibleFormat(repository_format, self._format)
 
1099
 
 
1100
    def get_workingtree_transport(self, workingtree_format):
 
1101
        """See BzrDir.get_workingtree_transport()."""
 
1102
        if workingtree_format is None:
 
1103
            return self.transport
 
1104
        try:
 
1105
            workingtree_format.get_format_string()
 
1106
        except NotImplementedError:
 
1107
            return self.transport
 
1108
        raise errors.IncompatibleFormat(workingtree_format, self._format)
 
1109
 
 
1110
    def needs_format_conversion(self, format=None):
 
1111
        """See BzrDir.needs_format_conversion()."""
 
1112
        # if the format is not the same as the system default,
 
1113
        # an upgrade is needed.
 
1114
        if format is None:
 
1115
            format = BzrDirFormat.get_default_format()
 
1116
        return not isinstance(self._format, format.__class__)
 
1117
 
 
1118
    def open_branch(self, unsupported=False):
 
1119
        """See BzrDir.open_branch."""
 
1120
        from bzrlib.branch import BzrBranchFormat4
 
1121
        format = BzrBranchFormat4()
 
1122
        self._check_supported(format, unsupported)
 
1123
        return format.open(self, _found=True)
 
1124
 
 
1125
    def sprout(self, url, revision_id=None, force_new_repo=False,
 
1126
               possible_transports=None, accelerator_tree=None,
 
1127
               hardlink=False):
 
1128
        """See BzrDir.sprout()."""
 
1129
        from bzrlib.workingtree import WorkingTreeFormat2
 
1130
        self._make_tail(url)
 
1131
        result = self._format._initialize_for_clone(url)
 
1132
        try:
 
1133
            self.open_repository().clone(result, revision_id=revision_id)
 
1134
        except errors.NoRepositoryPresent:
 
1135
            pass
 
1136
        try:
 
1137
            self.open_branch().sprout(result, revision_id=revision_id)
 
1138
        except errors.NotBranchError:
 
1139
            pass
 
1140
        # we always want a working tree
 
1141
        WorkingTreeFormat2().initialize(result,
 
1142
                                        accelerator_tree=accelerator_tree,
 
1143
                                        hardlink=hardlink)
 
1144
        return result
 
1145
 
 
1146
 
 
1147
class BzrDir4(BzrDirPreSplitOut):
 
1148
    """A .bzr version 4 control object.
 
1149
    
 
1150
    This is a deprecated format and may be removed after sept 2006.
 
1151
    """
 
1152
 
 
1153
    def create_repository(self, shared=False):
 
1154
        """See BzrDir.create_repository."""
 
1155
        return self._format.repository_format.initialize(self, shared)
 
1156
 
 
1157
    def needs_format_conversion(self, format=None):
 
1158
        """Format 4 dirs are always in need of conversion."""
 
1159
        return True
 
1160
 
 
1161
    def open_repository(self):
 
1162
        """See BzrDir.open_repository."""
 
1163
        from bzrlib.repofmt.weaverepo import RepositoryFormat4
 
1164
        return RepositoryFormat4().open(self, _found=True)
 
1165
 
 
1166
 
 
1167
class BzrDir5(BzrDirPreSplitOut):
 
1168
    """A .bzr version 5 control object.
 
1169
 
 
1170
    This is a deprecated format and may be removed after sept 2006.
 
1171
    """
 
1172
 
 
1173
    def open_repository(self):
 
1174
        """See BzrDir.open_repository."""
 
1175
        from bzrlib.repofmt.weaverepo import RepositoryFormat5
 
1176
        return RepositoryFormat5().open(self, _found=True)
 
1177
 
 
1178
    def open_workingtree(self, _unsupported=False,
 
1179
            recommend_upgrade=True):
 
1180
        """See BzrDir.create_workingtree."""
 
1181
        from bzrlib.workingtree import WorkingTreeFormat2
 
1182
        wt_format = WorkingTreeFormat2()
 
1183
        # we don't warn here about upgrades; that ought to be handled for the
 
1184
        # bzrdir as a whole
 
1185
        return wt_format.open(self, _found=True)
 
1186
 
 
1187
 
 
1188
class BzrDir6(BzrDirPreSplitOut):
 
1189
    """A .bzr version 6 control object.
 
1190
 
 
1191
    This is a deprecated format and may be removed after sept 2006.
 
1192
    """
 
1193
 
 
1194
    def open_repository(self):
 
1195
        """See BzrDir.open_repository."""
 
1196
        from bzrlib.repofmt.weaverepo import RepositoryFormat6
 
1197
        return RepositoryFormat6().open(self, _found=True)
 
1198
 
 
1199
    def open_workingtree(self, _unsupported=False,
 
1200
        recommend_upgrade=True):
 
1201
        """See BzrDir.create_workingtree."""
 
1202
        # we don't warn here about upgrades; that ought to be handled for the
 
1203
        # bzrdir as a whole
 
1204
        from bzrlib.workingtree import WorkingTreeFormat2
 
1205
        return WorkingTreeFormat2().open(self, _found=True)
 
1206
 
 
1207
 
 
1208
class BzrDirMeta1(BzrDir):
 
1209
    """A .bzr meta version 1 control object.
 
1210
    
 
1211
    This is the first control object where the 
 
1212
    individual aspects are really split out: there are separate repository,
 
1213
    workingtree and branch subdirectories and any subset of the three can be
 
1214
    present within a BzrDir.
 
1215
    """
 
1216
 
 
1217
    def can_convert_format(self):
 
1218
        """See BzrDir.can_convert_format()."""
 
1219
        return True
 
1220
 
 
1221
    def create_branch(self):
 
1222
        """See BzrDir.create_branch."""
 
1223
        return self._format.get_branch_format().initialize(self)
 
1224
 
 
1225
    def destroy_branch(self):
 
1226
        """See BzrDir.create_branch."""
 
1227
        self.transport.delete_tree('branch')
 
1228
 
 
1229
    def create_repository(self, shared=False):
 
1230
        """See BzrDir.create_repository."""
 
1231
        return self._format.repository_format.initialize(self, shared)
 
1232
 
 
1233
    def destroy_repository(self):
 
1234
        """See BzrDir.destroy_repository."""
 
1235
        self.transport.delete_tree('repository')
 
1236
 
 
1237
    def create_workingtree(self, revision_id=None, from_branch=None,
 
1238
                           accelerator_tree=None, hardlink=False):
 
1239
        """See BzrDir.create_workingtree."""
 
1240
        return self._format.workingtree_format.initialize(
 
1241
            self, revision_id, from_branch=from_branch,
 
1242
            accelerator_tree=accelerator_tree, hardlink=hardlink)
 
1243
 
 
1244
    def destroy_workingtree(self):
 
1245
        """See BzrDir.destroy_workingtree."""
 
1246
        wt = self.open_workingtree(recommend_upgrade=False)
 
1247
        repository = wt.branch.repository
 
1248
        empty = repository.revision_tree(_mod_revision.NULL_REVISION)
 
1249
        wt.revert(old_tree=empty)
 
1250
        self.destroy_workingtree_metadata()
 
1251
 
 
1252
    def destroy_workingtree_metadata(self):
 
1253
        self.transport.delete_tree('checkout')
 
1254
 
 
1255
    def find_branch_format(self):
 
1256
        """Find the branch 'format' for this bzrdir.
 
1257
 
 
1258
        This might be a synthetic object for e.g. RemoteBranch and SVN.
 
1259
        """
 
1260
        from bzrlib.branch import BranchFormat
 
1261
        return BranchFormat.find_format(self)
 
1262
 
 
1263
    def _get_mkdir_mode(self):
 
1264
        """Figure out the mode to use when creating a bzrdir subdir."""
 
1265
        temp_control = lockable_files.LockableFiles(self.transport, '',
 
1266
                                     lockable_files.TransportLock)
 
1267
        return temp_control._dir_mode
 
1268
 
 
1269
    def get_branch_reference(self):
 
1270
        """See BzrDir.get_branch_reference()."""
 
1271
        from bzrlib.branch import BranchFormat
 
1272
        format = BranchFormat.find_format(self)
 
1273
        return format.get_reference(self)
 
1274
 
 
1275
    def get_branch_transport(self, branch_format):
 
1276
        """See BzrDir.get_branch_transport()."""
 
1277
        if branch_format is None:
 
1278
            return self.transport.clone('branch')
 
1279
        try:
 
1280
            branch_format.get_format_string()
 
1281
        except NotImplementedError:
 
1282
            raise errors.IncompatibleFormat(branch_format, self._format)
 
1283
        try:
 
1284
            self.transport.mkdir('branch', mode=self._get_mkdir_mode())
 
1285
        except errors.FileExists:
 
1286
            pass
 
1287
        return self.transport.clone('branch')
 
1288
 
 
1289
    def get_repository_transport(self, repository_format):
 
1290
        """See BzrDir.get_repository_transport()."""
 
1291
        if repository_format is None:
 
1292
            return self.transport.clone('repository')
 
1293
        try:
 
1294
            repository_format.get_format_string()
 
1295
        except NotImplementedError:
 
1296
            raise errors.IncompatibleFormat(repository_format, self._format)
 
1297
        try:
 
1298
            self.transport.mkdir('repository', mode=self._get_mkdir_mode())
 
1299
        except errors.FileExists:
 
1300
            pass
 
1301
        return self.transport.clone('repository')
 
1302
 
 
1303
    def get_workingtree_transport(self, workingtree_format):
 
1304
        """See BzrDir.get_workingtree_transport()."""
 
1305
        if workingtree_format is None:
 
1306
            return self.transport.clone('checkout')
 
1307
        try:
 
1308
            workingtree_format.get_format_string()
 
1309
        except NotImplementedError:
 
1310
            raise errors.IncompatibleFormat(workingtree_format, self._format)
 
1311
        try:
 
1312
            self.transport.mkdir('checkout', mode=self._get_mkdir_mode())
 
1313
        except errors.FileExists:
 
1314
            pass
 
1315
        return self.transport.clone('checkout')
 
1316
 
 
1317
    def needs_format_conversion(self, format=None):
 
1318
        """See BzrDir.needs_format_conversion()."""
 
1319
        if format is None:
 
1320
            format = BzrDirFormat.get_default_format()
 
1321
        if not isinstance(self._format, format.__class__):
 
1322
            # it is not a meta dir format, conversion is needed.
 
1323
            return True
 
1324
        # we might want to push this down to the repository?
 
1325
        try:
 
1326
            if not isinstance(self.open_repository()._format,
 
1327
                              format.repository_format.__class__):
 
1328
                # the repository needs an upgrade.
 
1329
                return True
 
1330
        except errors.NoRepositoryPresent:
 
1331
            pass
 
1332
        try:
 
1333
            if not isinstance(self.open_branch()._format,
 
1334
                              format.get_branch_format().__class__):
 
1335
                # the branch needs an upgrade.
 
1336
                return True
 
1337
        except errors.NotBranchError:
 
1338
            pass
 
1339
        try:
 
1340
            my_wt = self.open_workingtree(recommend_upgrade=False)
 
1341
            if not isinstance(my_wt._format,
 
1342
                              format.workingtree_format.__class__):
 
1343
                # the workingtree needs an upgrade.
 
1344
                return True
 
1345
        except (errors.NoWorkingTree, errors.NotLocalUrl):
 
1346
            pass
 
1347
        return False
 
1348
 
 
1349
    def open_branch(self, unsupported=False):
 
1350
        """See BzrDir.open_branch."""
 
1351
        format = self.find_branch_format()
 
1352
        self._check_supported(format, unsupported)
 
1353
        return format.open(self, _found=True)
 
1354
 
 
1355
    def open_repository(self, unsupported=False):
 
1356
        """See BzrDir.open_repository."""
 
1357
        from bzrlib.repository import RepositoryFormat
 
1358
        format = RepositoryFormat.find_format(self)
 
1359
        self._check_supported(format, unsupported)
 
1360
        return format.open(self, _found=True)
 
1361
 
 
1362
    def open_workingtree(self, unsupported=False,
 
1363
            recommend_upgrade=True):
 
1364
        """See BzrDir.open_workingtree."""
 
1365
        from bzrlib.workingtree import WorkingTreeFormat
 
1366
        format = WorkingTreeFormat.find_format(self)
 
1367
        self._check_supported(format, unsupported,
 
1368
            recommend_upgrade,
 
1369
            basedir=self.root_transport.base)
 
1370
        return format.open(self, _found=True)
 
1371
 
 
1372
 
 
1373
class BzrDirFormat(object):
 
1374
    """An encapsulation of the initialization and open routines for a format.
 
1375
 
 
1376
    Formats provide three things:
 
1377
     * An initialization routine,
 
1378
     * a format string,
 
1379
     * an open routine.
 
1380
 
 
1381
    Formats are placed in a dict by their format string for reference 
 
1382
    during bzrdir opening. These should be subclasses of BzrDirFormat
 
1383
    for consistency.
 
1384
 
 
1385
    Once a format is deprecated, just deprecate the initialize and open
 
1386
    methods on the format class. Do not deprecate the object, as the 
 
1387
    object will be created every system load.
 
1388
    """
 
1389
 
 
1390
    _default_format = None
 
1391
    """The default format used for new .bzr dirs."""
 
1392
 
 
1393
    _formats = {}
 
1394
    """The known formats."""
 
1395
 
 
1396
    _control_formats = []
 
1397
    """The registered control formats - .bzr, ....
 
1398
    
 
1399
    This is a list of BzrDirFormat objects.
 
1400
    """
 
1401
 
 
1402
    _control_server_formats = []
 
1403
    """The registered control server formats, e.g. RemoteBzrDirs.
 
1404
 
 
1405
    This is a list of BzrDirFormat objects.
 
1406
    """
 
1407
 
 
1408
    _lock_file_name = 'branch-lock'
 
1409
 
 
1410
    # _lock_class must be set in subclasses to the lock type, typ.
 
1411
    # TransportLock or LockDir
 
1412
 
 
1413
    @classmethod
 
1414
    def find_format(klass, transport, _server_formats=True):
 
1415
        """Return the format present at transport."""
 
1416
        if _server_formats:
 
1417
            formats = klass._control_server_formats + klass._control_formats
 
1418
        else:
 
1419
            formats = klass._control_formats
 
1420
        for format in formats:
 
1421
            try:
 
1422
                return format.probe_transport(transport)
 
1423
            except errors.NotBranchError:
 
1424
                # this format does not find a control dir here.
 
1425
                pass
 
1426
        raise errors.NotBranchError(path=transport.base)
 
1427
 
 
1428
    @classmethod
 
1429
    def probe_transport(klass, transport):
 
1430
        """Return the .bzrdir style format present in a directory."""
 
1431
        try:
 
1432
            format_string = transport.get(".bzr/branch-format").read()
 
1433
        except errors.NoSuchFile:
 
1434
            raise errors.NotBranchError(path=transport.base)
 
1435
 
 
1436
        try:
 
1437
            return klass._formats[format_string]
 
1438
        except KeyError:
 
1439
            raise errors.UnknownFormatError(format=format_string)
 
1440
 
 
1441
    @classmethod
 
1442
    def get_default_format(klass):
 
1443
        """Return the current default format."""
 
1444
        return klass._default_format
 
1445
 
 
1446
    def get_format_string(self):
 
1447
        """Return the ASCII format string that identifies this format."""
 
1448
        raise NotImplementedError(self.get_format_string)
 
1449
 
 
1450
    def get_format_description(self):
 
1451
        """Return the short description for this format."""
 
1452
        raise NotImplementedError(self.get_format_description)
 
1453
 
 
1454
    def get_converter(self, format=None):
 
1455
        """Return the converter to use to convert bzrdirs needing converts.
 
1456
 
 
1457
        This returns a bzrlib.bzrdir.Converter object.
 
1458
 
 
1459
        This should return the best upgrader to step this format towards the
 
1460
        current default format. In the case of plugins we can/should provide
 
1461
        some means for them to extend the range of returnable converters.
 
1462
 
 
1463
        :param format: Optional format to override the default format of the 
 
1464
                       library.
 
1465
        """
 
1466
        raise NotImplementedError(self.get_converter)
 
1467
 
 
1468
    def initialize(self, url, possible_transports=None):
 
1469
        """Create a bzr control dir at this url and return an opened copy.
 
1470
        
 
1471
        Subclasses should typically override initialize_on_transport
 
1472
        instead of this method.
 
1473
        """
 
1474
        return self.initialize_on_transport(get_transport(url,
 
1475
                                                          possible_transports))
 
1476
 
 
1477
    def initialize_on_transport(self, transport):
 
1478
        """Initialize a new bzrdir in the base directory of a Transport."""
 
1479
        # Since we don't have a .bzr directory, inherit the
 
1480
        # mode from the root directory
 
1481
        temp_control = lockable_files.LockableFiles(transport,
 
1482
                            '', lockable_files.TransportLock)
 
1483
        temp_control._transport.mkdir('.bzr',
 
1484
                                      # FIXME: RBC 20060121 don't peek under
 
1485
                                      # the covers
 
1486
                                      mode=temp_control._dir_mode)
 
1487
        if sys.platform == 'win32' and isinstance(transport, LocalTransport):
 
1488
            win32utils.set_file_attr_hidden(transport._abspath('.bzr'))
 
1489
        file_mode = temp_control._file_mode
 
1490
        del temp_control
 
1491
        mutter('created control directory in ' + transport.base)
 
1492
        control = transport.clone('.bzr')
 
1493
        utf8_files = [('README', 
 
1494
                       "This is a Bazaar-NG control directory.\n"
 
1495
                       "Do not change any files in this directory.\n"),
 
1496
                      ('branch-format', self.get_format_string()),
 
1497
                      ]
 
1498
        # NB: no need to escape relative paths that are url safe.
 
1499
        control_files = lockable_files.LockableFiles(control,
 
1500
                            self._lock_file_name, self._lock_class)
 
1501
        control_files.create_lock()
 
1502
        control_files.lock_write()
 
1503
        try:
 
1504
            for file, content in utf8_files:
 
1505
                control_files.put_utf8(file, content)
 
1506
        finally:
 
1507
            control_files.unlock()
 
1508
        return self.open(transport, _found=True)
 
1509
 
 
1510
    def is_supported(self):
 
1511
        """Is this format supported?
 
1512
 
 
1513
        Supported formats must be initializable and openable.
 
1514
        Unsupported formats may not support initialization or committing or 
 
1515
        some other features depending on the reason for not being supported.
 
1516
        """
 
1517
        return True
 
1518
 
 
1519
    def same_model(self, target_format):
 
1520
        return (self.repository_format.rich_root_data == 
 
1521
            target_format.rich_root_data)
 
1522
 
 
1523
    @classmethod
 
1524
    def known_formats(klass):
 
1525
        """Return all the known formats.
 
1526
        
 
1527
        Concrete formats should override _known_formats.
 
1528
        """
 
1529
        # There is double indirection here to make sure that control 
 
1530
        # formats used by more than one dir format will only be probed 
 
1531
        # once. This can otherwise be quite expensive for remote connections.
 
1532
        result = set()
 
1533
        for format in klass._control_formats:
 
1534
            result.update(format._known_formats())
 
1535
        return result
 
1536
    
 
1537
    @classmethod
 
1538
    def _known_formats(klass):
 
1539
        """Return the known format instances for this control format."""
 
1540
        return set(klass._formats.values())
 
1541
 
 
1542
    def open(self, transport, _found=False):
 
1543
        """Return an instance of this format for the dir transport points at.
 
1544
        
 
1545
        _found is a private parameter, do not use it.
 
1546
        """
 
1547
        if not _found:
 
1548
            found_format = BzrDirFormat.find_format(transport)
 
1549
            if not isinstance(found_format, self.__class__):
 
1550
                raise AssertionError("%s was asked to open %s, but it seems to need "
 
1551
                        "format %s" 
 
1552
                        % (self, transport, found_format))
 
1553
        return self._open(transport)
 
1554
 
 
1555
    def _open(self, transport):
 
1556
        """Template method helper for opening BzrDirectories.
 
1557
 
 
1558
        This performs the actual open and any additional logic or parameter
 
1559
        passing.
 
1560
        """
 
1561
        raise NotImplementedError(self._open)
 
1562
 
 
1563
    @classmethod
 
1564
    def register_format(klass, format):
 
1565
        klass._formats[format.get_format_string()] = format
 
1566
 
 
1567
    @classmethod
 
1568
    def register_control_format(klass, format):
 
1569
        """Register a format that does not use '.bzr' for its control dir.
 
1570
 
 
1571
        TODO: This should be pulled up into a 'ControlDirFormat' base class
 
1572
        which BzrDirFormat can inherit from, and renamed to register_format 
 
1573
        there. It has been done without that for now for simplicity of
 
1574
        implementation.
 
1575
        """
 
1576
        klass._control_formats.append(format)
 
1577
 
 
1578
    @classmethod
 
1579
    def register_control_server_format(klass, format):
 
1580
        """Register a control format for client-server environments.
 
1581
 
 
1582
        These formats will be tried before ones registered with
 
1583
        register_control_format.  This gives implementations that decide to the
 
1584
        chance to grab it before anything looks at the contents of the format
 
1585
        file.
 
1586
        """
 
1587
        klass._control_server_formats.append(format)
 
1588
 
 
1589
    @classmethod
 
1590
    @symbol_versioning.deprecated_method(symbol_versioning.zero_fourteen)
 
1591
    def set_default_format(klass, format):
 
1592
        klass._set_default_format(format)
 
1593
 
 
1594
    @classmethod
 
1595
    def _set_default_format(klass, format):
 
1596
        """Set default format (for testing behavior of defaults only)"""
 
1597
        klass._default_format = format
 
1598
 
 
1599
    def __str__(self):
 
1600
        # Trim the newline
 
1601
        return self.get_format_string().rstrip()
 
1602
 
 
1603
    @classmethod
 
1604
    def unregister_format(klass, format):
 
1605
        assert klass._formats[format.get_format_string()] is format
 
1606
        del klass._formats[format.get_format_string()]
 
1607
 
 
1608
    @classmethod
 
1609
    def unregister_control_format(klass, format):
 
1610
        klass._control_formats.remove(format)
 
1611
 
 
1612
 
 
1613
class BzrDirFormat4(BzrDirFormat):
 
1614
    """Bzr dir format 4.
 
1615
 
 
1616
    This format is a combined format for working tree, branch and repository.
 
1617
    It has:
 
1618
     - Format 1 working trees [always]
 
1619
     - Format 4 branches [always]
 
1620
     - Format 4 repositories [always]
 
1621
 
 
1622
    This format is deprecated: it indexes texts using a text it which is
 
1623
    removed in format 5; write support for this format has been removed.
 
1624
    """
 
1625
 
 
1626
    _lock_class = lockable_files.TransportLock
 
1627
 
 
1628
    def get_format_string(self):
 
1629
        """See BzrDirFormat.get_format_string()."""
 
1630
        return "Bazaar-NG branch, format 0.0.4\n"
 
1631
 
 
1632
    def get_format_description(self):
 
1633
        """See BzrDirFormat.get_format_description()."""
 
1634
        return "All-in-one format 4"
 
1635
 
 
1636
    def get_converter(self, format=None):
 
1637
        """See BzrDirFormat.get_converter()."""
 
1638
        # there is one and only one upgrade path here.
 
1639
        return ConvertBzrDir4To5()
 
1640
        
 
1641
    def initialize_on_transport(self, transport):
 
1642
        """Format 4 branches cannot be created."""
 
1643
        raise errors.UninitializableFormat(self)
 
1644
 
 
1645
    def is_supported(self):
 
1646
        """Format 4 is not supported.
 
1647
 
 
1648
        It is not supported because the model changed from 4 to 5 and the
 
1649
        conversion logic is expensive - so doing it on the fly was not 
 
1650
        feasible.
 
1651
        """
 
1652
        return False
 
1653
 
 
1654
    def _open(self, transport):
 
1655
        """See BzrDirFormat._open."""
 
1656
        return BzrDir4(transport, self)
 
1657
 
 
1658
    def __return_repository_format(self):
 
1659
        """Circular import protection."""
 
1660
        from bzrlib.repofmt.weaverepo import RepositoryFormat4
 
1661
        return RepositoryFormat4()
 
1662
    repository_format = property(__return_repository_format)
 
1663
 
 
1664
 
 
1665
class BzrDirFormat5(BzrDirFormat):
 
1666
    """Bzr control format 5.
 
1667
 
 
1668
    This format is a combined format for working tree, branch and repository.
 
1669
    It has:
 
1670
     - Format 2 working trees [always] 
 
1671
     - Format 4 branches [always] 
 
1672
     - Format 5 repositories [always]
 
1673
       Unhashed stores in the repository.
 
1674
    """
 
1675
 
 
1676
    _lock_class = lockable_files.TransportLock
 
1677
 
 
1678
    def get_format_string(self):
 
1679
        """See BzrDirFormat.get_format_string()."""
 
1680
        return "Bazaar-NG branch, format 5\n"
 
1681
 
 
1682
    def get_format_description(self):
 
1683
        """See BzrDirFormat.get_format_description()."""
 
1684
        return "All-in-one format 5"
 
1685
 
 
1686
    def get_converter(self, format=None):
 
1687
        """See BzrDirFormat.get_converter()."""
 
1688
        # there is one and only one upgrade path here.
 
1689
        return ConvertBzrDir5To6()
 
1690
 
 
1691
    def _initialize_for_clone(self, url):
 
1692
        return self.initialize_on_transport(get_transport(url), _cloning=True)
 
1693
        
 
1694
    def initialize_on_transport(self, transport, _cloning=False):
 
1695
        """Format 5 dirs always have working tree, branch and repository.
 
1696
        
 
1697
        Except when they are being cloned.
 
1698
        """
 
1699
        from bzrlib.branch import BzrBranchFormat4
 
1700
        from bzrlib.repofmt.weaverepo import RepositoryFormat5
 
1701
        from bzrlib.workingtree import WorkingTreeFormat2
 
1702
        result = (super(BzrDirFormat5, self).initialize_on_transport(transport))
 
1703
        RepositoryFormat5().initialize(result, _internal=True)
 
1704
        if not _cloning:
 
1705
            branch = BzrBranchFormat4().initialize(result)
 
1706
            try:
 
1707
                WorkingTreeFormat2().initialize(result)
 
1708
            except errors.NotLocalUrl:
 
1709
                # Even though we can't access the working tree, we need to
 
1710
                # create its control files.
 
1711
                WorkingTreeFormat2().stub_initialize_remote(branch.control_files)
 
1712
        return result
 
1713
 
 
1714
    def _open(self, transport):
 
1715
        """See BzrDirFormat._open."""
 
1716
        return BzrDir5(transport, self)
 
1717
 
 
1718
    def __return_repository_format(self):
 
1719
        """Circular import protection."""
 
1720
        from bzrlib.repofmt.weaverepo import RepositoryFormat5
 
1721
        return RepositoryFormat5()
 
1722
    repository_format = property(__return_repository_format)
 
1723
 
 
1724
 
 
1725
class BzrDirFormat6(BzrDirFormat):
 
1726
    """Bzr control format 6.
 
1727
 
 
1728
    This format is a combined format for working tree, branch and repository.
 
1729
    It has:
 
1730
     - Format 2 working trees [always] 
 
1731
     - Format 4 branches [always] 
 
1732
     - Format 6 repositories [always]
 
1733
    """
 
1734
 
 
1735
    _lock_class = lockable_files.TransportLock
 
1736
 
 
1737
    def get_format_string(self):
 
1738
        """See BzrDirFormat.get_format_string()."""
 
1739
        return "Bazaar-NG branch, format 6\n"
 
1740
 
 
1741
    def get_format_description(self):
 
1742
        """See BzrDirFormat.get_format_description()."""
 
1743
        return "All-in-one format 6"
 
1744
 
 
1745
    def get_converter(self, format=None):
 
1746
        """See BzrDirFormat.get_converter()."""
 
1747
        # there is one and only one upgrade path here.
 
1748
        return ConvertBzrDir6ToMeta()
 
1749
        
 
1750
    def _initialize_for_clone(self, url):
 
1751
        return self.initialize_on_transport(get_transport(url), _cloning=True)
 
1752
 
 
1753
    def initialize_on_transport(self, transport, _cloning=False):
 
1754
        """Format 6 dirs always have working tree, branch and repository.
 
1755
        
 
1756
        Except when they are being cloned.
 
1757
        """
 
1758
        from bzrlib.branch import BzrBranchFormat4
 
1759
        from bzrlib.repofmt.weaverepo import RepositoryFormat6
 
1760
        from bzrlib.workingtree import WorkingTreeFormat2
 
1761
        result = super(BzrDirFormat6, self).initialize_on_transport(transport)
 
1762
        RepositoryFormat6().initialize(result, _internal=True)
 
1763
        if not _cloning:
 
1764
            branch = BzrBranchFormat4().initialize(result)
 
1765
            try:
 
1766
                WorkingTreeFormat2().initialize(result)
 
1767
            except errors.NotLocalUrl:
 
1768
                # Even though we can't access the working tree, we need to
 
1769
                # create its control files.
 
1770
                WorkingTreeFormat2().stub_initialize_remote(branch.control_files)
 
1771
        return result
 
1772
 
 
1773
    def _open(self, transport):
 
1774
        """See BzrDirFormat._open."""
 
1775
        return BzrDir6(transport, self)
 
1776
 
 
1777
    def __return_repository_format(self):
 
1778
        """Circular import protection."""
 
1779
        from bzrlib.repofmt.weaverepo import RepositoryFormat6
 
1780
        return RepositoryFormat6()
 
1781
    repository_format = property(__return_repository_format)
 
1782
 
 
1783
 
 
1784
class BzrDirMetaFormat1(BzrDirFormat):
 
1785
    """Bzr meta control format 1
 
1786
 
 
1787
    This is the first format with split out working tree, branch and repository
 
1788
    disk storage.
 
1789
    It has:
 
1790
     - Format 3 working trees [optional]
 
1791
     - Format 5 branches [optional]
 
1792
     - Format 7 repositories [optional]
 
1793
    """
 
1794
 
 
1795
    _lock_class = lockdir.LockDir
 
1796
 
 
1797
    def __init__(self):
 
1798
        self._workingtree_format = None
 
1799
        self._branch_format = None
 
1800
 
 
1801
    def __eq__(self, other):
 
1802
        if other.__class__ is not self.__class__:
 
1803
            return False
 
1804
        if other.repository_format != self.repository_format:
 
1805
            return False
 
1806
        if other.workingtree_format != self.workingtree_format:
 
1807
            return False
 
1808
        return True
 
1809
 
 
1810
    def __ne__(self, other):
 
1811
        return not self == other
 
1812
 
 
1813
    def get_branch_format(self):
 
1814
        if self._branch_format is None:
 
1815
            from bzrlib.branch import BranchFormat
 
1816
            self._branch_format = BranchFormat.get_default_format()
 
1817
        return self._branch_format
 
1818
 
 
1819
    def set_branch_format(self, format):
 
1820
        self._branch_format = format
 
1821
 
 
1822
    def get_converter(self, format=None):
 
1823
        """See BzrDirFormat.get_converter()."""
 
1824
        if format is None:
 
1825
            format = BzrDirFormat.get_default_format()
 
1826
        if not isinstance(self, format.__class__):
 
1827
            # converting away from metadir is not implemented
 
1828
            raise NotImplementedError(self.get_converter)
 
1829
        return ConvertMetaToMeta(format)
 
1830
 
 
1831
    def get_format_string(self):
 
1832
        """See BzrDirFormat.get_format_string()."""
 
1833
        return "Bazaar-NG meta directory, format 1\n"
 
1834
 
 
1835
    def get_format_description(self):
 
1836
        """See BzrDirFormat.get_format_description()."""
 
1837
        return "Meta directory format 1"
 
1838
 
 
1839
    def _open(self, transport):
 
1840
        """See BzrDirFormat._open."""
 
1841
        return BzrDirMeta1(transport, self)
 
1842
 
 
1843
    def __return_repository_format(self):
 
1844
        """Circular import protection."""
 
1845
        if getattr(self, '_repository_format', None):
 
1846
            return self._repository_format
 
1847
        from bzrlib.repository import RepositoryFormat
 
1848
        return RepositoryFormat.get_default_format()
 
1849
 
 
1850
    def __set_repository_format(self, value):
 
1851
        """Allow changing the repository format for metadir formats."""
 
1852
        self._repository_format = value
 
1853
 
 
1854
    repository_format = property(__return_repository_format, __set_repository_format)
 
1855
 
 
1856
    def __get_workingtree_format(self):
 
1857
        if self._workingtree_format is None:
 
1858
            from bzrlib.workingtree import WorkingTreeFormat
 
1859
            self._workingtree_format = WorkingTreeFormat.get_default_format()
 
1860
        return self._workingtree_format
 
1861
 
 
1862
    def __set_workingtree_format(self, wt_format):
 
1863
        self._workingtree_format = wt_format
 
1864
 
 
1865
    workingtree_format = property(__get_workingtree_format,
 
1866
                                  __set_workingtree_format)
 
1867
 
 
1868
 
 
1869
# Register bzr control format
 
1870
BzrDirFormat.register_control_format(BzrDirFormat)
 
1871
 
 
1872
# Register bzr formats
 
1873
BzrDirFormat.register_format(BzrDirFormat4())
 
1874
BzrDirFormat.register_format(BzrDirFormat5())
 
1875
BzrDirFormat.register_format(BzrDirFormat6())
 
1876
__default_format = BzrDirMetaFormat1()
 
1877
BzrDirFormat.register_format(__default_format)
 
1878
BzrDirFormat._default_format = __default_format
 
1879
 
 
1880
 
 
1881
class Converter(object):
 
1882
    """Converts a disk format object from one format to another."""
 
1883
 
 
1884
    def convert(self, to_convert, pb):
 
1885
        """Perform the conversion of to_convert, giving feedback via pb.
 
1886
 
 
1887
        :param to_convert: The disk object to convert.
 
1888
        :param pb: a progress bar to use for progress information.
 
1889
        """
 
1890
 
 
1891
    def step(self, message):
 
1892
        """Update the pb by a step."""
 
1893
        self.count +=1
 
1894
        self.pb.update(message, self.count, self.total)
 
1895
 
 
1896
 
 
1897
class ConvertBzrDir4To5(Converter):
 
1898
    """Converts format 4 bzr dirs to format 5."""
 
1899
 
 
1900
    def __init__(self):
 
1901
        super(ConvertBzrDir4To5, self).__init__()
 
1902
        self.converted_revs = set()
 
1903
        self.absent_revisions = set()
 
1904
        self.text_count = 0
 
1905
        self.revisions = {}
 
1906
        
 
1907
    def convert(self, to_convert, pb):
 
1908
        """See Converter.convert()."""
 
1909
        self.bzrdir = to_convert
 
1910
        self.pb = pb
 
1911
        self.pb.note('starting upgrade from format 4 to 5')
 
1912
        if isinstance(self.bzrdir.transport, LocalTransport):
 
1913
            self.bzrdir.get_workingtree_transport(None).delete('stat-cache')
 
1914
        self._convert_to_weaves()
 
1915
        return BzrDir.open(self.bzrdir.root_transport.base)
 
1916
 
 
1917
    def _convert_to_weaves(self):
 
1918
        self.pb.note('note: upgrade may be faster if all store files are ungzipped first')
 
1919
        try:
 
1920
            # TODO permissions
 
1921
            stat = self.bzrdir.transport.stat('weaves')
 
1922
            if not S_ISDIR(stat.st_mode):
 
1923
                self.bzrdir.transport.delete('weaves')
 
1924
                self.bzrdir.transport.mkdir('weaves')
 
1925
        except errors.NoSuchFile:
 
1926
            self.bzrdir.transport.mkdir('weaves')
 
1927
        # deliberately not a WeaveFile as we want to build it up slowly.
 
1928
        self.inv_weave = Weave('inventory')
 
1929
        # holds in-memory weaves for all files
 
1930
        self.text_weaves = {}
 
1931
        self.bzrdir.transport.delete('branch-format')
 
1932
        self.branch = self.bzrdir.open_branch()
 
1933
        self._convert_working_inv()
 
1934
        rev_history = self.branch.revision_history()
 
1935
        # to_read is a stack holding the revisions we still need to process;
 
1936
        # appending to it adds new highest-priority revisions
 
1937
        self.known_revisions = set(rev_history)
 
1938
        self.to_read = rev_history[-1:]
 
1939
        while self.to_read:
 
1940
            rev_id = self.to_read.pop()
 
1941
            if (rev_id not in self.revisions
 
1942
                and rev_id not in self.absent_revisions):
 
1943
                self._load_one_rev(rev_id)
 
1944
        self.pb.clear()
 
1945
        to_import = self._make_order()
 
1946
        for i, rev_id in enumerate(to_import):
 
1947
            self.pb.update('converting revision', i, len(to_import))
 
1948
            self._convert_one_rev(rev_id)
 
1949
        self.pb.clear()
 
1950
        self._write_all_weaves()
 
1951
        self._write_all_revs()
 
1952
        self.pb.note('upgraded to weaves:')
 
1953
        self.pb.note('  %6d revisions and inventories', len(self.revisions))
 
1954
        self.pb.note('  %6d revisions not present', len(self.absent_revisions))
 
1955
        self.pb.note('  %6d texts', self.text_count)
 
1956
        self._cleanup_spare_files_after_format4()
 
1957
        self.branch.control_files.put_utf8('branch-format', BzrDirFormat5().get_format_string())
 
1958
 
 
1959
    def _cleanup_spare_files_after_format4(self):
 
1960
        # FIXME working tree upgrade foo.
 
1961
        for n in 'merged-patches', 'pending-merged-patches':
 
1962
            try:
 
1963
                ## assert os.path.getsize(p) == 0
 
1964
                self.bzrdir.transport.delete(n)
 
1965
            except errors.NoSuchFile:
 
1966
                pass
 
1967
        self.bzrdir.transport.delete_tree('inventory-store')
 
1968
        self.bzrdir.transport.delete_tree('text-store')
 
1969
 
 
1970
    def _convert_working_inv(self):
 
1971
        inv = xml4.serializer_v4.read_inventory(
 
1972
                    self.branch.control_files.get('inventory'))
 
1973
        new_inv_xml = xml5.serializer_v5.write_inventory_to_string(inv, working=True)
 
1974
        # FIXME inventory is a working tree change.
 
1975
        self.branch.control_files.put('inventory', StringIO(new_inv_xml))
 
1976
 
 
1977
    def _write_all_weaves(self):
 
1978
        controlweaves = WeaveStore(self.bzrdir.transport, prefixed=False)
 
1979
        weave_transport = self.bzrdir.transport.clone('weaves')
 
1980
        weaves = WeaveStore(weave_transport, prefixed=False)
 
1981
        transaction = WriteTransaction()
 
1982
 
 
1983
        try:
 
1984
            i = 0
 
1985
            for file_id, file_weave in self.text_weaves.items():
 
1986
                self.pb.update('writing weave', i, len(self.text_weaves))
 
1987
                weaves._put_weave(file_id, file_weave, transaction)
 
1988
                i += 1
 
1989
            self.pb.update('inventory', 0, 1)
 
1990
            controlweaves._put_weave('inventory', self.inv_weave, transaction)
 
1991
            self.pb.update('inventory', 1, 1)
 
1992
        finally:
 
1993
            self.pb.clear()
 
1994
 
 
1995
    def _write_all_revs(self):
 
1996
        """Write all revisions out in new form."""
 
1997
        self.bzrdir.transport.delete_tree('revision-store')
 
1998
        self.bzrdir.transport.mkdir('revision-store')
 
1999
        revision_transport = self.bzrdir.transport.clone('revision-store')
 
2000
        # TODO permissions
 
2001
        _revision_store = TextRevisionStore(TextStore(revision_transport,
 
2002
                                                      prefixed=False,
 
2003
                                                      compressed=True))
 
2004
        try:
 
2005
            transaction = WriteTransaction()
 
2006
            for i, rev_id in enumerate(self.converted_revs):
 
2007
                self.pb.update('write revision', i, len(self.converted_revs))
 
2008
                _revision_store.add_revision(self.revisions[rev_id], transaction)
 
2009
        finally:
 
2010
            self.pb.clear()
 
2011
            
 
2012
    def _load_one_rev(self, rev_id):
 
2013
        """Load a revision object into memory.
 
2014
 
 
2015
        Any parents not either loaded or abandoned get queued to be
 
2016
        loaded."""
 
2017
        self.pb.update('loading revision',
 
2018
                       len(self.revisions),
 
2019
                       len(self.known_revisions))
 
2020
        if not self.branch.repository.has_revision(rev_id):
 
2021
            self.pb.clear()
 
2022
            self.pb.note('revision {%s} not present in branch; '
 
2023
                         'will be converted as a ghost',
 
2024
                         rev_id)
 
2025
            self.absent_revisions.add(rev_id)
 
2026
        else:
 
2027
            rev = self.branch.repository._revision_store.get_revision(rev_id,
 
2028
                self.branch.repository.get_transaction())
 
2029
            for parent_id in rev.parent_ids:
 
2030
                self.known_revisions.add(parent_id)
 
2031
                self.to_read.append(parent_id)
 
2032
            self.revisions[rev_id] = rev
 
2033
 
 
2034
    def _load_old_inventory(self, rev_id):
 
2035
        assert rev_id not in self.converted_revs
 
2036
        old_inv_xml = self.branch.repository.inventory_store.get(rev_id).read()
 
2037
        inv = xml4.serializer_v4.read_inventory_from_string(old_inv_xml)
 
2038
        inv.revision_id = rev_id
 
2039
        rev = self.revisions[rev_id]
 
2040
        if rev.inventory_sha1:
 
2041
            assert rev.inventory_sha1 == sha_string(old_inv_xml), \
 
2042
                'inventory sha mismatch for {%s}' % rev_id
 
2043
        return inv
 
2044
 
 
2045
    def _load_updated_inventory(self, rev_id):
 
2046
        assert rev_id in self.converted_revs
 
2047
        inv_xml = self.inv_weave.get_text(rev_id)
 
2048
        inv = xml5.serializer_v5.read_inventory_from_string(inv_xml, rev_id)
 
2049
        return inv
 
2050
 
 
2051
    def _convert_one_rev(self, rev_id):
 
2052
        """Convert revision and all referenced objects to new format."""
 
2053
        rev = self.revisions[rev_id]
 
2054
        inv = self._load_old_inventory(rev_id)
 
2055
        present_parents = [p for p in rev.parent_ids
 
2056
                           if p not in self.absent_revisions]
 
2057
        self._convert_revision_contents(rev, inv, present_parents)
 
2058
        self._store_new_inv(rev, inv, present_parents)
 
2059
        self.converted_revs.add(rev_id)
 
2060
 
 
2061
    def _store_new_inv(self, rev, inv, present_parents):
 
2062
        # the XML is now updated with text versions
 
2063
        if __debug__:
 
2064
            entries = inv.iter_entries()
 
2065
            entries.next()
 
2066
            for path, ie in entries:
 
2067
                assert getattr(ie, 'revision', None) is not None, \
 
2068
                    'no revision on {%s} in {%s}' % \
 
2069
                    (file_id, rev.revision_id)
 
2070
        new_inv_xml = xml5.serializer_v5.write_inventory_to_string(inv)
 
2071
        new_inv_sha1 = sha_string(new_inv_xml)
 
2072
        self.inv_weave.add_lines(rev.revision_id,
 
2073
                                 present_parents,
 
2074
                                 new_inv_xml.splitlines(True))
 
2075
        rev.inventory_sha1 = new_inv_sha1
 
2076
 
 
2077
    def _convert_revision_contents(self, rev, inv, present_parents):
 
2078
        """Convert all the files within a revision.
 
2079
 
 
2080
        Also upgrade the inventory to refer to the text revision ids."""
 
2081
        rev_id = rev.revision_id
 
2082
        mutter('converting texts of revision {%s}',
 
2083
               rev_id)
 
2084
        parent_invs = map(self._load_updated_inventory, present_parents)
 
2085
        entries = inv.iter_entries()
 
2086
        entries.next()
 
2087
        for path, ie in entries:
 
2088
            self._convert_file_version(rev, ie, parent_invs)
 
2089
 
 
2090
    def _convert_file_version(self, rev, ie, parent_invs):
 
2091
        """Convert one version of one file.
 
2092
 
 
2093
        The file needs to be added into the weave if it is a merge
 
2094
        of >=2 parents or if it's changed from its parent.
 
2095
        """
 
2096
        file_id = ie.file_id
 
2097
        rev_id = rev.revision_id
 
2098
        w = self.text_weaves.get(file_id)
 
2099
        if w is None:
 
2100
            w = Weave(file_id)
 
2101
            self.text_weaves[file_id] = w
 
2102
        text_changed = False
 
2103
        parent_candiate_entries = ie.parent_candidates(parent_invs)
 
2104
        for old_revision in parent_candiate_entries.keys():
 
2105
            # if this fails, its a ghost ?
 
2106
            assert old_revision in self.converted_revs, \
 
2107
                "Revision {%s} not in converted_revs" % old_revision
 
2108
        heads = graph.Graph(self).heads(parent_candiate_entries.keys())
 
2109
        # XXX: Note that this is unordered - and this is tolerable because 
 
2110
        # the previous code was also unordered.
 
2111
        previous_entries = dict((head, parent_candiate_entries[head]) for head
 
2112
            in heads)
 
2113
        self.snapshot_ie(previous_entries, ie, w, rev_id)
 
2114
        del ie.text_id
 
2115
        assert getattr(ie, 'revision', None) is not None
 
2116
 
 
2117
    @symbol_versioning.deprecated_method(symbol_versioning.one_one)
 
2118
    def get_parents(self, revision_ids):
 
2119
        for revision_id in revision_ids:
 
2120
            yield self.revisions[revision_id].parent_ids
 
2121
 
 
2122
    def get_parent_map(self, revision_ids):
 
2123
        """See graph._StackedParentsProvider.get_parent_map"""
 
2124
        return dict((revision_id, self.revisions[revision_id])
 
2125
                    for revision_id in revision_ids
 
2126
                     if revision_id in self.revisions)
 
2127
 
 
2128
    def snapshot_ie(self, previous_revisions, ie, w, rev_id):
 
2129
        # TODO: convert this logic, which is ~= snapshot to
 
2130
        # a call to:. This needs the path figured out. rather than a work_tree
 
2131
        # a v4 revision_tree can be given, or something that looks enough like
 
2132
        # one to give the file content to the entry if it needs it.
 
2133
        # and we need something that looks like a weave store for snapshot to 
 
2134
        # save against.
 
2135
        #ie.snapshot(rev, PATH, previous_revisions, REVISION_TREE, InMemoryWeaveStore(self.text_weaves))
 
2136
        if len(previous_revisions) == 1:
 
2137
            previous_ie = previous_revisions.values()[0]
 
2138
            if ie._unchanged(previous_ie):
 
2139
                ie.revision = previous_ie.revision
 
2140
                return
 
2141
        if ie.has_text():
 
2142
            text = self.branch.repository.weave_store.get(ie.text_id)
 
2143
            file_lines = text.readlines()
 
2144
            assert sha_strings(file_lines) == ie.text_sha1
 
2145
            assert sum(map(len, file_lines)) == ie.text_size
 
2146
            w.add_lines(rev_id, previous_revisions, file_lines)
 
2147
            self.text_count += 1
 
2148
        else:
 
2149
            w.add_lines(rev_id, previous_revisions, [])
 
2150
        ie.revision = rev_id
 
2151
 
 
2152
    def _make_order(self):
 
2153
        """Return a suitable order for importing revisions.
 
2154
 
 
2155
        The order must be such that an revision is imported after all
 
2156
        its (present) parents.
 
2157
        """
 
2158
        todo = set(self.revisions.keys())
 
2159
        done = self.absent_revisions.copy()
 
2160
        order = []
 
2161
        while todo:
 
2162
            # scan through looking for a revision whose parents
 
2163
            # are all done
 
2164
            for rev_id in sorted(list(todo)):
 
2165
                rev = self.revisions[rev_id]
 
2166
                parent_ids = set(rev.parent_ids)
 
2167
                if parent_ids.issubset(done):
 
2168
                    # can take this one now
 
2169
                    order.append(rev_id)
 
2170
                    todo.remove(rev_id)
 
2171
                    done.add(rev_id)
 
2172
        return order
 
2173
 
 
2174
 
 
2175
class ConvertBzrDir5To6(Converter):
 
2176
    """Converts format 5 bzr dirs to format 6."""
 
2177
 
 
2178
    def convert(self, to_convert, pb):
 
2179
        """See Converter.convert()."""
 
2180
        self.bzrdir = to_convert
 
2181
        self.pb = pb
 
2182
        self.pb.note('starting upgrade from format 5 to 6')
 
2183
        self._convert_to_prefixed()
 
2184
        return BzrDir.open(self.bzrdir.root_transport.base)
 
2185
 
 
2186
    def _convert_to_prefixed(self):
 
2187
        from bzrlib.store import TransportStore
 
2188
        self.bzrdir.transport.delete('branch-format')
 
2189
        for store_name in ["weaves", "revision-store"]:
 
2190
            self.pb.note("adding prefixes to %s" % store_name)
 
2191
            store_transport = self.bzrdir.transport.clone(store_name)
 
2192
            store = TransportStore(store_transport, prefixed=True)
 
2193
            for urlfilename in store_transport.list_dir('.'):
 
2194
                filename = urlutils.unescape(urlfilename)
 
2195
                if (filename.endswith(".weave") or
 
2196
                    filename.endswith(".gz") or
 
2197
                    filename.endswith(".sig")):
 
2198
                    file_id = os.path.splitext(filename)[0]
 
2199
                else:
 
2200
                    file_id = filename
 
2201
                prefix_dir = store.hash_prefix(file_id)
 
2202
                # FIXME keep track of the dirs made RBC 20060121
 
2203
                try:
 
2204
                    store_transport.move(filename, prefix_dir + '/' + filename)
 
2205
                except errors.NoSuchFile: # catches missing dirs strangely enough
 
2206
                    store_transport.mkdir(prefix_dir)
 
2207
                    store_transport.move(filename, prefix_dir + '/' + filename)
 
2208
        self.bzrdir._control_files.put_utf8('branch-format', BzrDirFormat6().get_format_string())
 
2209
 
 
2210
 
 
2211
class ConvertBzrDir6ToMeta(Converter):
 
2212
    """Converts format 6 bzr dirs to metadirs."""
 
2213
 
 
2214
    def convert(self, to_convert, pb):
 
2215
        """See Converter.convert()."""
 
2216
        from bzrlib.repofmt.weaverepo import RepositoryFormat7
 
2217
        from bzrlib.branch import BzrBranchFormat5
 
2218
        self.bzrdir = to_convert
 
2219
        self.pb = pb
 
2220
        self.count = 0
 
2221
        self.total = 20 # the steps we know about
 
2222
        self.garbage_inventories = []
 
2223
 
 
2224
        self.pb.note('starting upgrade from format 6 to metadir')
 
2225
        self.bzrdir._control_files.put_utf8('branch-format', "Converting to format 6")
 
2226
        # its faster to move specific files around than to open and use the apis...
 
2227
        # first off, nuke ancestry.weave, it was never used.
 
2228
        try:
 
2229
            self.step('Removing ancestry.weave')
 
2230
            self.bzrdir.transport.delete('ancestry.weave')
 
2231
        except errors.NoSuchFile:
 
2232
            pass
 
2233
        # find out whats there
 
2234
        self.step('Finding branch files')
 
2235
        last_revision = self.bzrdir.open_branch().last_revision()
 
2236
        bzrcontents = self.bzrdir.transport.list_dir('.')
 
2237
        for name in bzrcontents:
 
2238
            if name.startswith('basis-inventory.'):
 
2239
                self.garbage_inventories.append(name)
 
2240
        # create new directories for repository, working tree and branch
 
2241
        self.dir_mode = self.bzrdir._control_files._dir_mode
 
2242
        self.file_mode = self.bzrdir._control_files._file_mode
 
2243
        repository_names = [('inventory.weave', True),
 
2244
                            ('revision-store', True),
 
2245
                            ('weaves', True)]
 
2246
        self.step('Upgrading repository  ')
 
2247
        self.bzrdir.transport.mkdir('repository', mode=self.dir_mode)
 
2248
        self.make_lock('repository')
 
2249
        # we hard code the formats here because we are converting into
 
2250
        # the meta format. The meta format upgrader can take this to a 
 
2251
        # future format within each component.
 
2252
        self.put_format('repository', RepositoryFormat7())
 
2253
        for entry in repository_names:
 
2254
            self.move_entry('repository', entry)
 
2255
 
 
2256
        self.step('Upgrading branch      ')
 
2257
        self.bzrdir.transport.mkdir('branch', mode=self.dir_mode)
 
2258
        self.make_lock('branch')
 
2259
        self.put_format('branch', BzrBranchFormat5())
 
2260
        branch_files = [('revision-history', True),
 
2261
                        ('branch-name', True),
 
2262
                        ('parent', False)]
 
2263
        for entry in branch_files:
 
2264
            self.move_entry('branch', entry)
 
2265
 
 
2266
        checkout_files = [('pending-merges', True),
 
2267
                          ('inventory', True),
 
2268
                          ('stat-cache', False)]
 
2269
        # If a mandatory checkout file is not present, the branch does not have
 
2270
        # a functional checkout. Do not create a checkout in the converted
 
2271
        # branch.
 
2272
        for name, mandatory in checkout_files:
 
2273
            if mandatory and name not in bzrcontents:
 
2274
                has_checkout = False
 
2275
                break
 
2276
        else:
 
2277
            has_checkout = True
 
2278
        if not has_checkout:
 
2279
            self.pb.note('No working tree.')
 
2280
            # If some checkout files are there, we may as well get rid of them.
 
2281
            for name, mandatory in checkout_files:
 
2282
                if name in bzrcontents:
 
2283
                    self.bzrdir.transport.delete(name)
 
2284
        else:
 
2285
            from bzrlib.workingtree import WorkingTreeFormat3
 
2286
            self.step('Upgrading working tree')
 
2287
            self.bzrdir.transport.mkdir('checkout', mode=self.dir_mode)
 
2288
            self.make_lock('checkout')
 
2289
            self.put_format(
 
2290
                'checkout', WorkingTreeFormat3())
 
2291
            self.bzrdir.transport.delete_multi(
 
2292
                self.garbage_inventories, self.pb)
 
2293
            for entry in checkout_files:
 
2294
                self.move_entry('checkout', entry)
 
2295
            if last_revision is not None:
 
2296
                self.bzrdir._control_files.put_utf8(
 
2297
                    'checkout/last-revision', last_revision)
 
2298
        self.bzrdir._control_files.put_utf8(
 
2299
            'branch-format', BzrDirMetaFormat1().get_format_string())
 
2300
        return BzrDir.open(self.bzrdir.root_transport.base)
 
2301
 
 
2302
    def make_lock(self, name):
 
2303
        """Make a lock for the new control dir name."""
 
2304
        self.step('Make %s lock' % name)
 
2305
        ld = lockdir.LockDir(self.bzrdir.transport,
 
2306
                             '%s/lock' % name,
 
2307
                             file_modebits=self.file_mode,
 
2308
                             dir_modebits=self.dir_mode)
 
2309
        ld.create()
 
2310
 
 
2311
    def move_entry(self, new_dir, entry):
 
2312
        """Move then entry name into new_dir."""
 
2313
        name = entry[0]
 
2314
        mandatory = entry[1]
 
2315
        self.step('Moving %s' % name)
 
2316
        try:
 
2317
            self.bzrdir.transport.move(name, '%s/%s' % (new_dir, name))
 
2318
        except errors.NoSuchFile:
 
2319
            if mandatory:
 
2320
                raise
 
2321
 
 
2322
    def put_format(self, dirname, format):
 
2323
        self.bzrdir._control_files.put_utf8('%s/format' % dirname, format.get_format_string())
 
2324
 
 
2325
 
 
2326
class ConvertMetaToMeta(Converter):
 
2327
    """Converts the components of metadirs."""
 
2328
 
 
2329
    def __init__(self, target_format):
 
2330
        """Create a metadir to metadir converter.
 
2331
 
 
2332
        :param target_format: The final metadir format that is desired.
 
2333
        """
 
2334
        self.target_format = target_format
 
2335
 
 
2336
    def convert(self, to_convert, pb):
 
2337
        """See Converter.convert()."""
 
2338
        self.bzrdir = to_convert
 
2339
        self.pb = pb
 
2340
        self.count = 0
 
2341
        self.total = 1
 
2342
        self.step('checking repository format')
 
2343
        try:
 
2344
            repo = self.bzrdir.open_repository()
 
2345
        except errors.NoRepositoryPresent:
 
2346
            pass
 
2347
        else:
 
2348
            if not isinstance(repo._format, self.target_format.repository_format.__class__):
 
2349
                from bzrlib.repository import CopyConverter
 
2350
                self.pb.note('starting repository conversion')
 
2351
                converter = CopyConverter(self.target_format.repository_format)
 
2352
                converter.convert(repo, pb)
 
2353
        try:
 
2354
            branch = self.bzrdir.open_branch()
 
2355
        except errors.NotBranchError:
 
2356
            pass
 
2357
        else:
 
2358
            # TODO: conversions of Branch and Tree should be done by
 
2359
            # InterXFormat lookups
 
2360
            # Avoid circular imports
 
2361
            from bzrlib import branch as _mod_branch
 
2362
            if (branch._format.__class__ is _mod_branch.BzrBranchFormat5 and
 
2363
                self.target_format.get_branch_format().__class__ is
 
2364
                _mod_branch.BzrBranchFormat6):
 
2365
                branch_converter = _mod_branch.Converter5to6()
 
2366
                branch_converter.convert(branch)
 
2367
        try:
 
2368
            tree = self.bzrdir.open_workingtree(recommend_upgrade=False)
 
2369
        except (errors.NoWorkingTree, errors.NotLocalUrl):
 
2370
            pass
 
2371
        else:
 
2372
            # TODO: conversions of Branch and Tree should be done by
 
2373
            # InterXFormat lookups
 
2374
            if (isinstance(tree, workingtree.WorkingTree3) and
 
2375
                not isinstance(tree, workingtree_4.WorkingTree4) and
 
2376
                isinstance(self.target_format.workingtree_format,
 
2377
                    workingtree_4.WorkingTreeFormat4)):
 
2378
                workingtree_4.Converter3to4().convert(tree)
 
2379
        return to_convert
 
2380
 
 
2381
 
 
2382
# This is not in remote.py because it's small, and needs to be registered.
 
2383
# Putting it in remote.py creates a circular import problem.
 
2384
# we can make it a lazy object if the control formats is turned into something
 
2385
# like a registry.
 
2386
class RemoteBzrDirFormat(BzrDirMetaFormat1):
 
2387
    """Format representing bzrdirs accessed via a smart server"""
 
2388
 
 
2389
    def get_format_description(self):
 
2390
        return 'bzr remote bzrdir'
 
2391
    
 
2392
    @classmethod
 
2393
    def probe_transport(klass, transport):
 
2394
        """Return a RemoteBzrDirFormat object if it looks possible."""
 
2395
        try:
 
2396
            client = transport.get_smart_client()
 
2397
        except (NotImplementedError, AttributeError,
 
2398
                errors.TransportNotPossible):
 
2399
            # no smart server, so not a branch for this format type.
 
2400
            raise errors.NotBranchError(path=transport.base)
 
2401
        else:
 
2402
            # Send a 'hello' request in protocol version one, and decline to
 
2403
            # open it if the server doesn't support our required version (2) so
 
2404
            # that the VFS-based transport will do it.
 
2405
            request = client.get_request()
 
2406
            smart_protocol = protocol.SmartClientRequestProtocolOne(request)
 
2407
            server_version = smart_protocol.query_version()
 
2408
            if server_version != 2:
 
2409
                raise errors.NotBranchError(path=transport.base)
 
2410
            return klass()
 
2411
 
 
2412
    def initialize_on_transport(self, transport):
 
2413
        try:
 
2414
            # hand off the request to the smart server
 
2415
            shared_medium = transport.get_shared_medium()
 
2416
        except errors.NoSmartMedium:
 
2417
            # TODO: lookup the local format from a server hint.
 
2418
            local_dir_format = BzrDirMetaFormat1()
 
2419
            return local_dir_format.initialize_on_transport(transport)
 
2420
        client = _SmartClient(shared_medium)
 
2421
        path = client.remote_path_from_transport(transport)
 
2422
        response = _SmartClient(shared_medium).call('BzrDirFormat.initialize',
 
2423
                                                    path)
 
2424
        assert response[0] in ('ok', ), 'unexpected response code %s' % (response,)
 
2425
        return remote.RemoteBzrDir(transport)
 
2426
 
 
2427
    def _open(self, transport):
 
2428
        return remote.RemoteBzrDir(transport)
 
2429
 
 
2430
    def __eq__(self, other):
 
2431
        if not isinstance(other, RemoteBzrDirFormat):
 
2432
            return False
 
2433
        return self.get_format_description() == other.get_format_description()
 
2434
 
 
2435
 
 
2436
BzrDirFormat.register_control_server_format(RemoteBzrDirFormat)
 
2437
 
 
2438
 
 
2439
class BzrDirFormatInfo(object):
 
2440
 
 
2441
    def __init__(self, native, deprecated, hidden, experimental):
 
2442
        self.deprecated = deprecated
 
2443
        self.native = native
 
2444
        self.hidden = hidden
 
2445
        self.experimental = experimental
 
2446
 
 
2447
 
 
2448
class BzrDirFormatRegistry(registry.Registry):
 
2449
    """Registry of user-selectable BzrDir subformats.
 
2450
    
 
2451
    Differs from BzrDirFormat._control_formats in that it provides sub-formats,
 
2452
    e.g. BzrDirMeta1 with weave repository.  Also, it's more user-oriented.
 
2453
    """
 
2454
 
 
2455
    def __init__(self):
 
2456
        """Create a BzrDirFormatRegistry."""
 
2457
        self._aliases = set()
 
2458
        super(BzrDirFormatRegistry, self).__init__()
 
2459
 
 
2460
    def aliases(self):
 
2461
        """Return a set of the format names which are aliases."""
 
2462
        return frozenset(self._aliases)
 
2463
 
 
2464
    def register_metadir(self, key,
 
2465
             repository_format, help, native=True, deprecated=False,
 
2466
             branch_format=None,
 
2467
             tree_format=None,
 
2468
             hidden=False,
 
2469
             experimental=False,
 
2470
             alias=False):
 
2471
        """Register a metadir subformat.
 
2472
 
 
2473
        These all use a BzrDirMetaFormat1 bzrdir, but can be parameterized
 
2474
        by the Repository format.
 
2475
 
 
2476
        :param repository_format: The fully-qualified repository format class
 
2477
            name as a string.
 
2478
        :param branch_format: Fully-qualified branch format class name as
 
2479
            a string.
 
2480
        :param tree_format: Fully-qualified tree format class name as
 
2481
            a string.
 
2482
        """
 
2483
        # This should be expanded to support setting WorkingTree and Branch
 
2484
        # formats, once BzrDirMetaFormat1 supports that.
 
2485
        def _load(full_name):
 
2486
            mod_name, factory_name = full_name.rsplit('.', 1)
 
2487
            try:
 
2488
                mod = __import__(mod_name, globals(), locals(),
 
2489
                        [factory_name])
 
2490
            except ImportError, e:
 
2491
                raise ImportError('failed to load %s: %s' % (full_name, e))
 
2492
            try:
 
2493
                factory = getattr(mod, factory_name)
 
2494
            except AttributeError:
 
2495
                raise AttributeError('no factory %s in module %r'
 
2496
                    % (full_name, mod))
 
2497
            return factory()
 
2498
 
 
2499
        def helper():
 
2500
            bd = BzrDirMetaFormat1()
 
2501
            if branch_format is not None:
 
2502
                bd.set_branch_format(_load(branch_format))
 
2503
            if tree_format is not None:
 
2504
                bd.workingtree_format = _load(tree_format)
 
2505
            if repository_format is not None:
 
2506
                bd.repository_format = _load(repository_format)
 
2507
            return bd
 
2508
        self.register(key, helper, help, native, deprecated, hidden,
 
2509
            experimental, alias)
 
2510
 
 
2511
    def register(self, key, factory, help, native=True, deprecated=False,
 
2512
                 hidden=False, experimental=False, alias=False):
 
2513
        """Register a BzrDirFormat factory.
 
2514
        
 
2515
        The factory must be a callable that takes one parameter: the key.
 
2516
        It must produce an instance of the BzrDirFormat when called.
 
2517
 
 
2518
        This function mainly exists to prevent the info object from being
 
2519
        supplied directly.
 
2520
        """
 
2521
        registry.Registry.register(self, key, factory, help,
 
2522
            BzrDirFormatInfo(native, deprecated, hidden, experimental))
 
2523
        if alias:
 
2524
            self._aliases.add(key)
 
2525
 
 
2526
    def register_lazy(self, key, module_name, member_name, help, native=True,
 
2527
        deprecated=False, hidden=False, experimental=False, alias=False):
 
2528
        registry.Registry.register_lazy(self, key, module_name, member_name,
 
2529
            help, BzrDirFormatInfo(native, deprecated, hidden, experimental))
 
2530
        if alias:
 
2531
            self._aliases.add(key)
 
2532
 
 
2533
    def set_default(self, key):
 
2534
        """Set the 'default' key to be a clone of the supplied key.
 
2535
        
 
2536
        This method must be called once and only once.
 
2537
        """
 
2538
        registry.Registry.register(self, 'default', self.get(key),
 
2539
            self.get_help(key), info=self.get_info(key))
 
2540
        self._aliases.add('default')
 
2541
 
 
2542
    def set_default_repository(self, key):
 
2543
        """Set the FormatRegistry default and Repository default.
 
2544
        
 
2545
        This is a transitional method while Repository.set_default_format
 
2546
        is deprecated.
 
2547
        """
 
2548
        if 'default' in self:
 
2549
            self.remove('default')
 
2550
        self.set_default(key)
 
2551
        format = self.get('default')()
 
2552
        assert isinstance(format, BzrDirMetaFormat1)
 
2553
 
 
2554
    def make_bzrdir(self, key):
 
2555
        return self.get(key)()
 
2556
 
 
2557
    def help_topic(self, topic):
 
2558
        output = textwrap.dedent("""\
 
2559
            These formats can be used for creating branches, working trees, and
 
2560
            repositories.
 
2561
 
 
2562
            """)
 
2563
        default_realkey = None
 
2564
        default_help = self.get_help('default')
 
2565
        help_pairs = []
 
2566
        for key in self.keys():
 
2567
            if key == 'default':
 
2568
                continue
 
2569
            help = self.get_help(key)
 
2570
            if help == default_help:
 
2571
                default_realkey = key
 
2572
            else:
 
2573
                help_pairs.append((key, help))
 
2574
 
 
2575
        def wrapped(key, help, info):
 
2576
            if info.native:
 
2577
                help = '(native) ' + help
 
2578
            return ':%s:\n%s\n\n' % (key, 
 
2579
                    textwrap.fill(help, initial_indent='    ', 
 
2580
                    subsequent_indent='    '))
 
2581
        if default_realkey is not None:
 
2582
            output += wrapped(default_realkey, '(default) %s' % default_help,
 
2583
                              self.get_info('default'))
 
2584
        deprecated_pairs = []
 
2585
        experimental_pairs = []
 
2586
        for key, help in help_pairs:
 
2587
            info = self.get_info(key)
 
2588
            if info.hidden:
 
2589
                continue
 
2590
            elif info.deprecated:
 
2591
                deprecated_pairs.append((key, help))
 
2592
            elif info.experimental:
 
2593
                experimental_pairs.append((key, help))
 
2594
            else:
 
2595
                output += wrapped(key, help, info)
 
2596
        if len(experimental_pairs) > 0:
 
2597
            output += "Experimental formats are shown below.\n\n"
 
2598
            for key, help in experimental_pairs:
 
2599
                info = self.get_info(key)
 
2600
                output += wrapped(key, help, info)
 
2601
        if len(deprecated_pairs) > 0:
 
2602
            output += "Deprecated formats are shown below.\n\n"
 
2603
            for key, help in deprecated_pairs:
 
2604
                info = self.get_info(key)
 
2605
                output += wrapped(key, help, info)
 
2606
 
 
2607
        return output
 
2608
 
 
2609
 
 
2610
format_registry = BzrDirFormatRegistry()
 
2611
format_registry.register('weave', BzrDirFormat6,
 
2612
    'Pre-0.8 format.  Slower than knit and does not'
 
2613
    ' support checkouts or shared repositories.',
 
2614
    deprecated=True)
 
2615
format_registry.register_metadir('knit',
 
2616
    'bzrlib.repofmt.knitrepo.RepositoryFormatKnit1',
 
2617
    'Format using knits.  Recommended for interoperation with bzr <= 0.14.',
 
2618
    branch_format='bzrlib.branch.BzrBranchFormat5',
 
2619
    tree_format='bzrlib.workingtree.WorkingTreeFormat3')
 
2620
format_registry.register_metadir('metaweave',
 
2621
    'bzrlib.repofmt.weaverepo.RepositoryFormat7',
 
2622
    'Transitional format in 0.8.  Slower than knit.',
 
2623
    branch_format='bzrlib.branch.BzrBranchFormat5',
 
2624
    tree_format='bzrlib.workingtree.WorkingTreeFormat3',
 
2625
    deprecated=True)
 
2626
format_registry.register_metadir('dirstate',
 
2627
    'bzrlib.repofmt.knitrepo.RepositoryFormatKnit1',
 
2628
    help='New in 0.15: Fast local operations. Compatible with bzr 0.8 and '
 
2629
        'above when accessed over the network.',
 
2630
    branch_format='bzrlib.branch.BzrBranchFormat5',
 
2631
    # this uses bzrlib.workingtree.WorkingTreeFormat4 because importing
 
2632
    # directly from workingtree_4 triggers a circular import.
 
2633
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
 
2634
    )
 
2635
format_registry.register_metadir('dirstate-tags',
 
2636
    'bzrlib.repofmt.knitrepo.RepositoryFormatKnit1',
 
2637
    help='New in 0.15: Fast local operations and improved scaling for '
 
2638
        'network operations. Additionally adds support for tags.'
 
2639
        ' Incompatible with bzr < 0.15.',
 
2640
    branch_format='bzrlib.branch.BzrBranchFormat6',
 
2641
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
 
2642
    )
 
2643
format_registry.register_metadir('rich-root',
 
2644
    'bzrlib.repofmt.knitrepo.RepositoryFormatKnit4',
 
2645
    help='New in 1.0.  Better handling of tree roots.  Incompatible with'
 
2646
        ' bzr < 1.0',
 
2647
    branch_format='bzrlib.branch.BzrBranchFormat6',
 
2648
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
 
2649
    )
 
2650
format_registry.register_metadir('dirstate-with-subtree',
 
2651
    'bzrlib.repofmt.knitrepo.RepositoryFormatKnit3',
 
2652
    help='New in 0.15: Fast local operations and improved scaling for '
 
2653
        'network operations. Additionally adds support for versioning nested '
 
2654
        'bzr branches. Incompatible with bzr < 0.15.',
 
2655
    branch_format='bzrlib.branch.BzrBranchFormat6',
 
2656
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
 
2657
    experimental=True,
 
2658
    hidden=True,
 
2659
    )
 
2660
format_registry.register_metadir('pack-0.92',
 
2661
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack1',
 
2662
    help='New in 0.92: Pack-based format with data compatible with '
 
2663
        'dirstate-tags format repositories. Interoperates with '
 
2664
        'bzr repositories before 0.92 but cannot be read by bzr < 0.92. '
 
2665
        'Previously called knitpack-experimental.  '
 
2666
        'For more information, see '
 
2667
        'http://doc.bazaar-vcs.org/latest/developers/packrepo.html.',
 
2668
    branch_format='bzrlib.branch.BzrBranchFormat6',
 
2669
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
 
2670
    )
 
2671
format_registry.register_metadir('pack-0.92-subtree',
 
2672
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack3',
 
2673
    help='New in 0.92: Pack-based format with data compatible with '
 
2674
        'dirstate-with-subtree format repositories. Interoperates with '
 
2675
        'bzr repositories before 0.92 but cannot be read by bzr < 0.92. '
 
2676
        'Previously called knitpack-experimental.  '
 
2677
        'For more information, see '
 
2678
        'http://doc.bazaar-vcs.org/latest/developers/packrepo.html.',
 
2679
    branch_format='bzrlib.branch.BzrBranchFormat6',
 
2680
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
 
2681
    hidden=True,
 
2682
    experimental=True,
 
2683
    )
 
2684
format_registry.register_metadir('rich-root-pack',
 
2685
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack4',
 
2686
    help='New in 1.0: Pack-based format with data compatible with '
 
2687
        'rich-root format repositories. Incompatible with'
 
2688
        ' bzr < 1.0',
 
2689
    branch_format='bzrlib.branch.BzrBranchFormat6',
 
2690
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
 
2691
    )
 
2692
# The following two formats should always just be aliases.
 
2693
format_registry.register_metadir('development',
 
2694
    'bzrlib.repofmt.pack_repo.RepositoryFormatPackDevelopment0',
 
2695
    help='Current development format. Can convert data to and from pack-0.92 '
 
2696
        '(and anything compatible with pack-0.92) format repositories. '
 
2697
        'Repositories in this format can only be read by bzr.dev. '
 
2698
        'Please read '
 
2699
        'http://doc.bazaar-vcs.org/latest/developers/development-repo.html '
 
2700
        'before use.',
 
2701
    branch_format='bzrlib.branch.BzrBranchFormat6',
 
2702
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
 
2703
    experimental=True,
 
2704
    alias=True,
 
2705
    )
 
2706
format_registry.register_metadir('development-subtree',
 
2707
    'bzrlib.repofmt.pack_repo.RepositoryFormatPackDevelopment0Subtree',
 
2708
    help='Current development format, subtree variant. Can convert data to and '
 
2709
        'from pack-0.92 (and anything compatible with pack-0.92) format '
 
2710
        'repositories. Repositories in this format can only be read by '
 
2711
        'bzr.dev. Please read '
 
2712
        'http://doc.bazaar-vcs.org/latest/developers/development-repo.html '
 
2713
        'before use.',
 
2714
    branch_format='bzrlib.branch.BzrBranchFormat6',
 
2715
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
 
2716
    experimental=True,
 
2717
    alias=True,
 
2718
    )
 
2719
# And the development formats which the will have aliased one of follow:
 
2720
format_registry.register_metadir('development0',
 
2721
    'bzrlib.repofmt.pack_repo.RepositoryFormatPackDevelopment0',
 
2722
    help='Trivial rename of pack-0.92 to provide a development format. '
 
2723
        'Please read '
 
2724
        'http://doc.bazaar-vcs.org/latest/developers/development-repo.html '
 
2725
        'before use.',
 
2726
    branch_format='bzrlib.branch.BzrBranchFormat6',
 
2727
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
 
2728
    hidden=True,
 
2729
    experimental=True,
 
2730
    )
 
2731
format_registry.register_metadir('development0-subtree',
 
2732
    'bzrlib.repofmt.pack_repo.RepositoryFormatPackDevelopment0Subtree',
 
2733
    help='Trivial rename of pack-0.92-subtree to provide a development format. '
 
2734
        'Please read '
 
2735
        'http://doc.bazaar-vcs.org/latest/developers/development-repo.html '
 
2736
        'before use.',
 
2737
    branch_format='bzrlib.branch.BzrBranchFormat6',
 
2738
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
 
2739
    hidden=True,
 
2740
    experimental=True,
 
2741
    )
 
2742
format_registry.set_default('pack-0.92')