/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: John Arbash Meinel
  • Date: 2006-04-25 15:05:42 UTC
  • mfrom: (1185.85.85 bzr-encoding)
  • mto: This revision was merged to the branch mainline in revision 1752.
  • Revision ID: john@arbash-meinel.com-20060425150542-c7b518dca9928691
[merge] the old bzr-encoding changes, reparenting them on bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2006-2011 Canonical Ltd
2
 
#
 
1
# Copyright (C) 2005, 2006 Canonical Ltd
 
2
 
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
5
5
# the Free Software Foundation; either version 2 of the License, or
6
6
# (at your option) any later version.
7
 
#
 
7
 
8
8
# This program is distributed in the hope that it will be useful,
9
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
11
# GNU General Public License for more details.
12
 
#
 
12
 
13
13
# You should have received a copy of the GNU General Public License
14
14
# along with this program; if not, write to the Free Software
15
 
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
16
 
17
17
"""BzrDir logic. The BzrDir is the basic control directory used by bzr.
18
18
 
19
19
At format 7 this was split out into Branch, Repository and Checkout control
20
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
21
"""
27
22
 
28
 
from __future__ import absolute_import
29
 
 
30
 
import sys
31
 
 
32
 
from ..lazy_import import lazy_import
33
 
lazy_import(globals(), """
34
 
from breezy import (
35
 
    branch as _mod_branch,
36
 
    cleanup,
37
 
    lockable_files,
38
 
    lockdir,
39
 
    osutils,
40
 
    repository,
41
 
    revision as _mod_revision,
42
 
    transport as _mod_transport,
43
 
    ui,
44
 
    urlutils,
45
 
    win32utils,
46
 
    )
47
 
from breezy.bzr import (
48
 
    branch as _mod_bzrbranch,
49
 
    fetch,
50
 
    remote,
51
 
    vf_search,
52
 
    workingtree_3,
53
 
    workingtree_4,
54
 
    )
55
 
from breezy.bzr import fullhistory as fullhistorybranch
56
 
from breezy.bzr import knitpack_repo
57
 
from breezy.transport import (
58
 
    do_catching_redirections,
59
 
    local,
60
 
    )
61
 
from breezy.i18n import gettext
62
 
""")
63
 
 
64
 
from ..sixish import viewitems
65
 
from ..trace import (
66
 
    mutter,
67
 
    note,
68
 
    warning,
69
 
    )
70
 
 
71
 
from .. import (
72
 
    config,
73
 
    controldir,
74
 
    errors,
75
 
    )
76
 
 
77
 
 
78
 
class MissingFeature(errors.BzrError):
79
 
 
80
 
    _fmt = ("Missing feature %(feature)s not provided by this "
81
 
            "version of Bazaar or any plugin.")
82
 
 
83
 
    def __init__(self, feature):
84
 
        self.feature = feature
85
 
 
86
 
 
87
 
class FeatureAlreadyRegistered(errors.BzrError):
88
 
 
89
 
    _fmt = 'The feature %(feature)s has already been registered.'
90
 
 
91
 
    def __init__(self, feature):
92
 
        self.feature = feature
93
 
 
94
 
 
95
 
class BzrDir(controldir.ControlDir):
 
23
from copy import deepcopy
 
24
import os
 
25
from cStringIO import StringIO
 
26
from unittest import TestSuite
 
27
 
 
28
import bzrlib
 
29
import bzrlib.errors as errors
 
30
from bzrlib.lockable_files import LockableFiles, TransportLock
 
31
from bzrlib.lockdir import LockDir
 
32
from bzrlib.osutils import safe_unicode
 
33
from bzrlib.osutils import (
 
34
                            abspath,
 
35
                            pathjoin,
 
36
                            safe_unicode,
 
37
                            sha_strings,
 
38
                            sha_string,
 
39
                            )
 
40
from bzrlib.store.revision.text import TextRevisionStore
 
41
from bzrlib.store.text import TextStore
 
42
from bzrlib.store.versioned import WeaveStore
 
43
from bzrlib.symbol_versioning import *
 
44
from bzrlib.trace import mutter
 
45
from bzrlib.transactions import WriteTransaction
 
46
from bzrlib.transport import get_transport, urlunescape
 
47
from bzrlib.transport.local import LocalTransport
 
48
from bzrlib.weave import Weave
 
49
from bzrlib.xml4 import serializer_v4
 
50
from bzrlib.xml5 import serializer_v5
 
51
 
 
52
 
 
53
class BzrDir(object):
96
54
    """A .bzr control diretory.
97
 
 
 
55
    
98
56
    BzrDir instances let you create or open any of the things that can be
99
57
    found within .bzr - checkouts, branches and repositories.
100
 
 
101
 
    :ivar transport:
 
58
    
 
59
    transport
102
60
        the transport which this bzr dir is rooted at (i.e. file:///.../.bzr/)
103
 
    :ivar root_transport:
104
 
        a transport connected to the directory this bzr was opened from
105
 
        (i.e. the parent directory holding the .bzr directory).
106
 
 
107
 
    Everything in the bzrdir should have the same file permissions.
108
 
 
109
 
    :cvar hooks: An instance of BzrDirHooks.
 
61
    root_transport
 
62
        a transport connected to the directory this bzr was opened from.
110
63
    """
111
64
 
112
 
    def break_lock(self):
113
 
        """Invoke break_lock on the first object in the bzrdir.
114
 
 
115
 
        If there is a tree, the tree is opened and break_lock() called.
116
 
        Otherwise, branch is tried, and finally repository.
 
65
    def can_convert_format(self):
 
66
        """Return true if this bzrdir is one whose format we can convert from."""
 
67
        return True
 
68
 
 
69
    @staticmethod
 
70
    def _check_supported(format, allow_unsupported):
 
71
        """Check whether format is a supported format.
 
72
 
 
73
        If allow_unsupported is True, this is a no-op.
117
74
        """
118
 
        # XXX: This seems more like a UI function than something that really
119
 
        # belongs in this class.
120
 
        try:
121
 
            thing_to_unlock = self.open_workingtree()
122
 
        except (errors.NotLocalUrl, errors.NoWorkingTree):
123
 
            try:
124
 
                thing_to_unlock = self.open_branch()
125
 
            except errors.NotBranchError:
126
 
                try:
127
 
                    thing_to_unlock = self.open_repository()
128
 
                except errors.NoRepositoryPresent:
129
 
                    return
130
 
        thing_to_unlock.break_lock()
131
 
 
132
 
    def check_conversion_target(self, target_format):
133
 
        """Check that a bzrdir as a whole can be converted to a new format."""
134
 
        # The only current restriction is that the repository content can be
135
 
        # fetched compatibly with the target.
136
 
        target_repo_format = target_format.repository_format
137
 
        try:
138
 
            self.open_repository()._format.check_conversion_target(
139
 
                target_repo_format)
140
 
        except errors.NoRepositoryPresent:
141
 
            # No repo, no problem.
142
 
            pass
143
 
 
144
 
    def clone_on_transport(self, transport, revision_id=None,
145
 
                           force_new_repo=False, preserve_stacking=False, stacked_on=None,
146
 
                           create_prefix=False, use_existing_dir=True, no_tree=False,
147
 
                           tag_selector=None):
148
 
        """Clone this bzrdir and its contents to transport verbatim.
149
 
 
150
 
        :param transport: The transport for the location to produce the clone
151
 
            at.  If the target directory does not exist, it will be created.
152
 
        :param revision_id: The tip revision-id to use for any branch or
153
 
            working tree.  If not None, then the clone operation may tune
 
75
        if not allow_unsupported and not format.is_supported():
 
76
            # see open_downlevel to open legacy branches.
 
77
            raise errors.UnsupportedFormatError(
 
78
                    'sorry, format %s not supported' % format,
 
79
                    ['use a different bzr version',
 
80
                     'or remove the .bzr directory'
 
81
                     ' and "bzr init" again'])
 
82
 
 
83
    def clone(self, url, revision_id=None, basis=None, force_new_repo=False):
 
84
        """Clone this bzrdir and its contents to url verbatim.
 
85
 
 
86
        If urls last component does not exist, it will be created.
 
87
 
 
88
        if revision_id is not None, then the clone operation may tune
154
89
            itself to download less data.
155
 
        :param force_new_repo: Do not use a shared repository for the target,
 
90
        :param force_new_repo: Do not use a shared repository for the target 
156
91
                               even if one is available.
157
 
        :param preserve_stacking: When cloning a stacked branch, stack the
158
 
            new branch on top of the other branch's stacked-on branch.
159
 
        :param create_prefix: Create any missing directories leading up to
160
 
            to_transport.
161
 
        :param use_existing_dir: Use an existing directory if one exists.
162
 
        :param no_tree: If set to true prevents creation of a working tree.
163
92
        """
164
 
        # Overview: put together a broad description of what we want to end up
165
 
        # with; then make as few api calls as possible to do it.
166
 
 
167
 
        # We may want to create a repo/branch/tree, if we do so what format
168
 
        # would we want for each:
169
 
        require_stacking = (stacked_on is not None)
170
 
        format = self.cloning_metadir(require_stacking)
171
 
 
172
 
        # Figure out what objects we want:
 
93
        self._make_tail(url)
 
94
        basis_repo, basis_branch, basis_tree = self._get_basis_components(basis)
 
95
        result = self._format.initialize(url)
173
96
        try:
174
97
            local_repo = self.find_repository()
175
98
        except errors.NoRepositoryPresent:
176
99
            local_repo = None
177
 
        local_branches = self.get_branches()
178
 
        try:
179
 
            local_active_branch = local_branches['']
180
 
        except KeyError:
181
 
            pass
182
 
        else:
183
 
            # enable fallbacks when branch is not a branch reference
184
 
            if local_active_branch.repository.has_same_location(local_repo):
185
 
                local_repo = local_active_branch.repository
186
 
            if preserve_stacking:
187
 
                try:
188
 
                    stacked_on = local_active_branch.get_stacked_on_url()
189
 
                except (_mod_branch.UnstackableBranchFormat,
190
 
                        errors.UnstackableRepositoryFormat,
191
 
                        errors.NotStacked):
192
 
                    pass
193
 
        # Bug: We create a metadir without knowing if it can support stacking,
194
 
        # we should look up the policy needs first, or just use it as a hint,
195
 
        # or something.
196
100
        if local_repo:
197
 
            make_working_trees = (local_repo.make_working_trees() and
198
 
                                  not no_tree)
199
 
            want_shared = local_repo.is_shared()
200
 
            repo_format_name = format.repository_format.network_name()
201
 
        else:
202
 
            make_working_trees = False
203
 
            want_shared = False
204
 
            repo_format_name = None
205
 
 
206
 
        result_repo, result, require_stacking, repository_policy = \
207
 
            format.initialize_on_transport_ex(
208
 
                transport, use_existing_dir=use_existing_dir,
209
 
                create_prefix=create_prefix, force_new_repo=force_new_repo,
210
 
                stacked_on=stacked_on, stack_on_pwd=self.root_transport.base,
211
 
                repo_format_name=repo_format_name,
212
 
                make_working_trees=make_working_trees, shared_repo=want_shared)
213
 
        if repo_format_name:
214
 
            try:
215
 
                # If the result repository is in the same place as the
216
 
                # resulting bzr dir, it will have no content, further if the
217
 
                # result is not stacked then we know all content should be
218
 
                # copied, and finally if we are copying up to a specific
219
 
                # revision_id then we can use the pending-ancestry-result which
220
 
                # does not require traversing all of history to describe it.
221
 
                if (result_repo.user_url == result.user_url
222
 
                    and not require_stacking
223
 
                        and revision_id is not None):
224
 
                    fetch_spec = vf_search.PendingAncestryResult(
225
 
                        [revision_id], local_repo)
226
 
                    result_repo.fetch(local_repo, fetch_spec=fetch_spec)
227
 
                else:
 
101
            # may need to copy content in
 
102
            if force_new_repo:
 
103
                local_repo.clone(result, revision_id=revision_id, basis=basis_repo)
 
104
            else:
 
105
                try:
 
106
                    result_repo = result.find_repository()
 
107
                    # fetch content this dir needs.
 
108
                    if basis_repo:
 
109
                        # XXX FIXME RBC 20060214 need tests for this when the basis
 
110
                        # is incomplete
 
111
                        result_repo.fetch(basis_repo, revision_id=revision_id)
228
112
                    result_repo.fetch(local_repo, revision_id=revision_id)
229
 
            finally:
230
 
                result_repo.unlock()
231
 
        else:
232
 
            if result_repo is not None:
233
 
                raise AssertionError('result_repo not None(%r)' % result_repo)
 
113
                except errors.NoRepositoryPresent:
 
114
                    # needed to make one anyway.
 
115
                    local_repo.clone(result, revision_id=revision_id, basis=basis_repo)
234
116
        # 1 if there is a branch present
235
117
        #   make sure its content is available in the target repository
236
118
        #   clone it.
237
 
        for name, local_branch in local_branches.items():
238
 
            local_branch.clone(
239
 
                result, revision_id=(None if name != '' else revision_id),
240
 
                repository_policy=repository_policy,
241
 
                name=name, tag_selector=tag_selector)
242
 
        try:
243
 
            # Cheaper to check if the target is not local, than to try making
244
 
            # the tree and fail.
245
 
            result.root_transport.local_abspath('.')
246
 
            if result_repo is None or result_repo.make_working_trees():
247
 
                self.open_workingtree().clone(result, revision_id=revision_id)
 
119
        try:
 
120
            self.open_branch().clone(result, revision_id=revision_id)
 
121
        except errors.NotBranchError:
 
122
            pass
 
123
        try:
 
124
            self.open_workingtree().clone(result, basis=basis_tree)
248
125
        except (errors.NoWorkingTree, errors.NotLocalUrl):
249
126
            pass
250
127
        return result
251
128
 
252
 
    # TODO: This should be given a Transport, and should chdir up; otherwise
253
 
    # this will open a new connection.
 
129
    def _get_basis_components(self, basis):
 
130
        """Retrieve the basis components that are available at basis."""
 
131
        if basis is None:
 
132
            return None, None, None
 
133
        try:
 
134
            basis_tree = basis.open_workingtree()
 
135
            basis_branch = basis_tree.branch
 
136
            basis_repo = basis_branch.repository
 
137
        except (errors.NoWorkingTree, errors.NotLocalUrl):
 
138
            basis_tree = None
 
139
            try:
 
140
                basis_branch = basis.open_branch()
 
141
                basis_repo = basis_branch.repository
 
142
            except errors.NotBranchError:
 
143
                basis_branch = None
 
144
                try:
 
145
                    basis_repo = basis.open_repository()
 
146
                except errors.NoRepositoryPresent:
 
147
                    basis_repo = None
 
148
        return basis_repo, basis_branch, basis_tree
 
149
 
254
150
    def _make_tail(self, url):
255
 
        t = _mod_transport.get_transport(url)
256
 
        t.ensure_base()
257
 
 
258
 
    def determine_repository_policy(self, force_new_repo=False, stack_on=None,
259
 
                                    stack_on_pwd=None, require_stacking=False):
260
 
        """Return an object representing a policy to use.
261
 
 
262
 
        This controls whether a new repository is created, and the format of
263
 
        that repository, or some existing shared repository used instead.
264
 
 
265
 
        If stack_on is supplied, will not seek a containing shared repo.
266
 
 
267
 
        :param force_new_repo: If True, require a new repository to be created.
268
 
        :param stack_on: If supplied, the location to stack on.  If not
269
 
            supplied, a default_stack_on location may be used.
270
 
        :param stack_on_pwd: If stack_on is relative, the location it is
271
 
            relative to.
272
 
        """
273
 
        def repository_policy(found_bzrdir):
274
 
            stack_on = None
275
 
            stack_on_pwd = None
276
 
            config = found_bzrdir.get_config()
277
 
            stop = False
278
 
            stack_on = config.get_default_stack_on()
279
 
            if stack_on is not None:
280
 
                stack_on_pwd = found_bzrdir.user_url
281
 
                stop = True
282
 
            # does it have a repository ?
283
 
            try:
284
 
                repository = found_bzrdir.open_repository()
285
 
            except errors.NoRepositoryPresent:
286
 
                repository = None
287
 
            else:
288
 
                if (found_bzrdir.user_url != self.user_url and
289
 
                        not repository.is_shared()):
290
 
                    # Don't look higher, can't use a higher shared repo.
291
 
                    repository = None
292
 
                    stop = True
293
 
                else:
294
 
                    stop = True
295
 
            if not stop:
296
 
                return None, False
297
 
            if repository:
298
 
                return UseExistingRepository(
299
 
                    repository, stack_on, stack_on_pwd,
300
 
                    require_stacking=require_stacking), True
301
 
            else:
302
 
                return CreateRepository(
303
 
                    self, stack_on, stack_on_pwd,
304
 
                    require_stacking=require_stacking), True
305
 
 
306
 
        if not force_new_repo:
307
 
            if stack_on is None:
308
 
                policy = self._find_containing(repository_policy)
309
 
                if policy is not None:
310
 
                    return policy
311
 
            else:
312
 
                try:
313
 
                    return UseExistingRepository(
314
 
                        self.open_repository(), stack_on, stack_on_pwd,
315
 
                        require_stacking=require_stacking)
316
 
                except errors.NoRepositoryPresent:
317
 
                    pass
318
 
        return CreateRepository(self, stack_on, stack_on_pwd,
319
 
                                require_stacking=require_stacking)
 
151
        segments = url.split('/')
 
152
        if segments and segments[-1] not in ('', '.'):
 
153
            parent = '/'.join(segments[:-1])
 
154
            t = bzrlib.transport.get_transport(parent)
 
155
            try:
 
156
                t.mkdir(segments[-1])
 
157
            except errors.FileExists:
 
158
                pass
 
159
 
 
160
    @classmethod
 
161
    def create(cls, base):
 
162
        """Create a new BzrDir at the url 'base'.
 
163
        
 
164
        This will call the current default formats initialize with base
 
165
        as the only parameter.
 
166
 
 
167
        If you need a specific format, consider creating an instance
 
168
        of that and calling initialize().
 
169
        """
 
170
        if cls is not BzrDir:
 
171
            raise AssertionError("BzrDir.create always creates the default format, "
 
172
                    "not one of %r" % cls)
 
173
        segments = base.split('/')
 
174
        if segments and segments[-1] not in ('', '.'):
 
175
            parent = '/'.join(segments[:-1])
 
176
            t = bzrlib.transport.get_transport(parent)
 
177
            try:
 
178
                t.mkdir(segments[-1])
 
179
            except errors.FileExists:
 
180
                pass
 
181
        return BzrDirFormat.get_default_format().initialize(safe_unicode(base))
 
182
 
 
183
    def create_branch(self):
 
184
        """Create a branch in this BzrDir.
 
185
 
 
186
        The bzrdirs format will control what branch format is created.
 
187
        For more control see BranchFormatXX.create(a_bzrdir).
 
188
        """
 
189
        raise NotImplementedError(self.create_branch)
 
190
 
 
191
    @staticmethod
 
192
    def create_branch_and_repo(base, force_new_repo=False):
 
193
        """Create a new BzrDir, Branch and Repository at the url 'base'.
 
194
 
 
195
        This will use the current default BzrDirFormat, and use whatever 
 
196
        repository format that that uses via bzrdir.create_branch and
 
197
        create_repository. If a shared repository is available that is used
 
198
        preferentially.
 
199
 
 
200
        The created Branch object is returned.
 
201
 
 
202
        :param base: The URL to create the branch at.
 
203
        :param force_new_repo: If True a new repository is always created.
 
204
        """
 
205
        bzrdir = BzrDir.create(base)
 
206
        bzrdir._find_or_create_repository(force_new_repo)
 
207
        return bzrdir.create_branch()
320
208
 
321
209
    def _find_or_create_repository(self, force_new_repo):
322
210
        """Create a new repository if needed, returning the repository."""
323
 
        policy = self.determine_repository_policy(force_new_repo)
324
 
        return policy.acquire_repository()[0]
325
 
 
326
 
    def _find_source_repo(self, exit_stack, source_branch):
327
 
        """Find the source branch and repo for a sprout operation.
328
 
 
329
 
        This is helper intended for use by _sprout.
330
 
 
331
 
        :returns: (source_branch, source_repository).  Either or both may be
332
 
            None.  If not None, they will be read-locked (and their unlock(s)
333
 
            scheduled via the exit_stack param).
334
 
        """
335
 
        if source_branch is not None:
336
 
            exit_stack.enter_context(source_branch.lock_read())
337
 
            return source_branch, source_branch.repository
 
211
        if force_new_repo:
 
212
            return self.create_repository()
338
213
        try:
339
 
            source_branch = self.open_branch()
340
 
            source_repository = source_branch.repository
341
 
        except errors.NotBranchError:
342
 
            source_branch = None
343
 
            try:
344
 
                source_repository = self.open_repository()
345
 
            except errors.NoRepositoryPresent:
346
 
                source_repository = None
347
 
            else:
348
 
                exit_stack.enter_context(source_repository.lock_read())
 
214
            return self.find_repository()
 
215
        except errors.NoRepositoryPresent:
 
216
            return self.create_repository()
 
217
        
 
218
    @staticmethod
 
219
    def create_branch_convenience(base, force_new_repo=False,
 
220
                                  force_new_tree=None, format=None):
 
221
        """Create a new BzrDir, Branch and Repository at the url 'base'.
 
222
 
 
223
        This is a convenience function - it will use an existing repository
 
224
        if possible, can be told explicitly whether to create a working tree or
 
225
        not.
 
226
 
 
227
        This will use the current default BzrDirFormat, and use whatever 
 
228
        repository format that that uses via bzrdir.create_branch and
 
229
        create_repository. If a shared repository is available that is used
 
230
        preferentially. Whatever repository is used, its tree creation policy
 
231
        is followed.
 
232
 
 
233
        The created Branch object is returned.
 
234
        If a working tree cannot be made due to base not being a file:// url,
 
235
        no error is raised unless force_new_tree is True, in which case no 
 
236
        data is created on disk and NotLocalUrl is raised.
 
237
 
 
238
        :param base: The URL to create the branch at.
 
239
        :param force_new_repo: If True a new repository is always created.
 
240
        :param force_new_tree: If True or False force creation of a tree or 
 
241
                               prevent such creation respectively.
 
242
        :param format: Override for the for the bzrdir format to create
 
243
        """
 
244
        if force_new_tree:
 
245
            # check for non local urls
 
246
            t = get_transport(safe_unicode(base))
 
247
            if not isinstance(t, LocalTransport):
 
248
                raise errors.NotLocalUrl(base)
 
249
        if format is None:
 
250
            bzrdir = BzrDir.create(base)
349
251
        else:
350
 
            exit_stack.enter_context(source_branch.lock_read())
351
 
        return source_branch, source_repository
352
 
 
353
 
    def sprout(self, url, revision_id=None, force_new_repo=False,
354
 
               recurse='down', possible_transports=None,
355
 
               accelerator_tree=None, hardlink=False, stacked=False,
356
 
               source_branch=None, create_tree_if_local=True,
357
 
               lossy=False):
358
 
        """Create a copy of this controldir prepared for use as a new line of
359
 
        development.
360
 
 
361
 
        If url's last component does not exist, it will be created.
362
 
 
363
 
        Attributes related to the identity of the source branch like
364
 
        branch nickname will be cleaned, a working tree is created
365
 
        whether one existed before or not; and a local branch is always
366
 
        created.
367
 
 
368
 
        if revision_id is not None, then the clone operation may tune
369
 
            itself to download less data.
370
 
 
371
 
        :param accelerator_tree: A tree which can be used for retrieving file
372
 
            contents more quickly than the revision tree, i.e. a workingtree.
373
 
            The revision tree will be used for cases where accelerator_tree's
374
 
            content is different.
375
 
        :param hardlink: If true, hard-link files from accelerator_tree,
376
 
            where possible.
377
 
        :param stacked: If true, create a stacked branch referring to the
378
 
            location of this control directory.
379
 
        :param create_tree_if_local: If true, a working-tree will be created
380
 
            when working locally.
381
 
        :return: The created control directory
382
 
        """
383
 
        with cleanup.ExitStack() as stack:
384
 
            fetch_spec_factory = fetch.FetchSpecFactory()
385
 
            if revision_id is not None:
386
 
                fetch_spec_factory.add_revision_ids([revision_id])
387
 
                fetch_spec_factory.source_branch_stop_revision_id = revision_id
388
 
            if possible_transports is None:
389
 
                possible_transports = []
390
 
            else:
391
 
                possible_transports = list(possible_transports) + [
392
 
                    self.root_transport]
393
 
            target_transport = _mod_transport.get_transport(url,
394
 
                                                            possible_transports)
395
 
            target_transport.ensure_base()
396
 
            cloning_format = self.cloning_metadir(stacked)
397
 
            # Create/update the result branch
398
 
            try:
399
 
                result = controldir.ControlDir.open_from_transport(
400
 
                    target_transport)
401
 
            except errors.NotBranchError:
402
 
                result = cloning_format.initialize_on_transport(target_transport)
403
 
            source_branch, source_repository = self._find_source_repo(
404
 
                stack, source_branch)
405
 
            fetch_spec_factory.source_branch = source_branch
406
 
            # if a stacked branch wasn't requested, we don't create one
407
 
            # even if the origin was stacked
408
 
            if stacked and source_branch is not None:
409
 
                stacked_branch_url = self.root_transport.base
410
 
            else:
411
 
                stacked_branch_url = None
412
 
            repository_policy = result.determine_repository_policy(
413
 
                force_new_repo, stacked_branch_url, require_stacking=stacked)
414
 
            result_repo, is_new_repo = repository_policy.acquire_repository(
415
 
                possible_transports=possible_transports)
416
 
            stack.enter_context(result_repo.lock_write())
417
 
            fetch_spec_factory.source_repo = source_repository
418
 
            fetch_spec_factory.target_repo = result_repo
419
 
            if stacked or (len(result_repo._fallback_repositories) != 0):
420
 
                target_repo_kind = fetch.TargetRepoKinds.STACKED
421
 
            elif is_new_repo:
422
 
                target_repo_kind = fetch.TargetRepoKinds.EMPTY
423
 
            else:
424
 
                target_repo_kind = fetch.TargetRepoKinds.PREEXISTING
425
 
            fetch_spec_factory.target_repo_kind = target_repo_kind
426
 
            if source_repository is not None:
427
 
                fetch_spec = fetch_spec_factory.make_fetch_spec()
428
 
                result_repo.fetch(source_repository, fetch_spec=fetch_spec)
429
 
 
430
 
            if source_branch is None:
431
 
                # this is for sprouting a controldir without a branch; is that
432
 
                # actually useful?
433
 
                # Not especially, but it's part of the contract.
434
 
                result_branch = result.create_branch()
435
 
            else:
436
 
                result_branch = source_branch.sprout(
437
 
                    result, revision_id=revision_id,
438
 
                    repository_policy=repository_policy, repository=result_repo)
439
 
            mutter("created new branch %r" % (result_branch,))
440
 
 
441
 
            # Create/update the result working tree
442
 
            if (create_tree_if_local and not result.has_workingtree()
443
 
                    and isinstance(target_transport, local.LocalTransport)
444
 
                    and (result_repo is None or result_repo.make_working_trees())
445
 
                    and result.open_branch(
446
 
                        name="",
447
 
                        possible_transports=possible_transports).name == result_branch.name):
448
 
                wt = result.create_workingtree(
449
 
                    accelerator_tree=accelerator_tree, hardlink=hardlink,
450
 
                    from_branch=result_branch)
451
 
                with wt.lock_write():
452
 
                    if not wt.is_versioned(''):
453
 
                        try:
454
 
                            wt.set_root_id(self.open_workingtree.path2id(''))
455
 
                        except errors.NoWorkingTree:
456
 
                            pass
457
 
            else:
458
 
                wt = None
459
 
            if recurse == 'down':
460
 
                tree = None
461
 
                if wt is not None:
462
 
                    tree = wt
463
 
                    basis = tree.basis_tree()
464
 
                    stack.enter_context(basis.lock_read())
465
 
                elif result_branch is not None:
466
 
                    basis = tree = result_branch.basis_tree()
467
 
                elif source_branch is not None:
468
 
                    basis = tree = source_branch.basis_tree()
469
 
                if tree is not None:
470
 
                    stack.enter_context(tree.lock_read())
471
 
                    subtrees = tree.iter_references()
472
 
                else:
473
 
                    subtrees = []
474
 
                for path in subtrees:
475
 
                    target = urlutils.join(url, urlutils.escape(path))
476
 
                    sublocation = tree.reference_parent(
477
 
                        path, branch=result_branch,
478
 
                        possible_transports=possible_transports)
479
 
                    if sublocation is None:
480
 
                        warning(
481
 
                            'Ignoring nested tree %s, parent location unknown.',
482
 
                            path)
483
 
                        continue
484
 
                    sublocation.controldir.sprout(
485
 
                        target, basis.get_reference_revision(path),
486
 
                        force_new_repo=force_new_repo, recurse=recurse,
487
 
                        stacked=stacked)
488
 
            return result
489
 
 
490
 
    def _available_backup_name(self, base):
491
 
        """Find a non-existing backup file name based on base.
492
 
 
493
 
        See breezy.osutils.available_backup_name about race conditions.
494
 
        """
495
 
        return osutils.available_backup_name(base, self.root_transport.has)
496
 
 
497
 
    def backup_bzrdir(self):
498
 
        """Backup this bzr control directory.
499
 
 
500
 
        :return: Tuple with old path name and new path name
501
 
        """
502
 
 
503
 
        with ui.ui_factory.nested_progress_bar():
504
 
            old_path = self.root_transport.abspath('.bzr')
505
 
            backup_dir = self._available_backup_name('backup.bzr')
506
 
            new_path = self.root_transport.abspath(backup_dir)
507
 
            ui.ui_factory.note(
508
 
                gettext('making backup of {0}\n  to {1}').format(
509
 
                    urlutils.unescape_for_display(old_path, 'utf-8'),
510
 
                    urlutils.unescape_for_display(new_path, 'utf-8')))
511
 
            self.root_transport.copy_tree('.bzr', backup_dir)
512
 
            return (old_path, new_path)
513
 
 
514
 
    def retire_bzrdir(self, limit=10000):
515
 
        """Permanently disable the bzrdir.
516
 
 
517
 
        This is done by renaming it to give the user some ability to recover
518
 
        if there was a problem.
519
 
 
520
 
        This will have horrible consequences if anyone has anything locked or
521
 
        in use.
522
 
        :param limit: number of times to retry
523
 
        """
524
 
        i = 0
525
 
        while True:
526
 
            try:
527
 
                to_path = '.bzr.retired.%d' % i
528
 
                self.root_transport.rename('.bzr', to_path)
529
 
                note(gettext("renamed {0} to {1}").format(
530
 
                    self.root_transport.abspath('.bzr'), to_path))
531
 
                return
532
 
            except (errors.TransportError, IOError, errors.PathError):
533
 
                i += 1
534
 
                if i > limit:
535
 
                    raise
536
 
                else:
537
 
                    pass
538
 
 
539
 
    def _find_containing(self, evaluate):
540
 
        """Find something in a containing control directory.
541
 
 
542
 
        This method will scan containing control dirs, until it finds what
543
 
        it is looking for, decides that it will never find it, or runs out
544
 
        of containing control directories to check.
545
 
 
546
 
        It is used to implement find_repository and
547
 
        determine_repository_policy.
548
 
 
549
 
        :param evaluate: A function returning (value, stop).  If stop is True,
550
 
            the value will be returned.
551
 
        """
552
 
        found_bzrdir = self
553
 
        while True:
554
 
            result, stop = evaluate(found_bzrdir)
555
 
            if stop:
556
 
                return result
557
 
            next_transport = found_bzrdir.root_transport.clone('..')
558
 
            if (found_bzrdir.user_url == next_transport.base):
559
 
                # top of the file system
560
 
                return None
561
 
            # find the next containing bzrdir
562
 
            try:
563
 
                found_bzrdir = self.open_containing_from_transport(
564
 
                    next_transport)[0]
565
 
            except errors.NotBranchError:
566
 
                return None
 
252
            bzrdir = format.initialize(base)
 
253
        repo = bzrdir._find_or_create_repository(force_new_repo)
 
254
        result = bzrdir.create_branch()
 
255
        if force_new_tree or (repo.make_working_trees() and 
 
256
                              force_new_tree is None):
 
257
            try:
 
258
                bzrdir.create_workingtree()
 
259
            except errors.NotLocalUrl:
 
260
                pass
 
261
        return result
 
262
        
 
263
    @staticmethod
 
264
    def create_repository(base, shared=False):
 
265
        """Create a new BzrDir and Repository at the url 'base'.
 
266
 
 
267
        This will use the current default BzrDirFormat, and use whatever 
 
268
        repository format that that uses for bzrdirformat.create_repository.
 
269
 
 
270
        ;param shared: Create a shared repository rather than a standalone
 
271
                       repository.
 
272
        The Repository object is returned.
 
273
 
 
274
        This must be overridden as an instance method in child classes, where
 
275
        it should take no parameters and construct whatever repository format
 
276
        that child class desires.
 
277
        """
 
278
        bzrdir = BzrDir.create(base)
 
279
        return bzrdir.create_repository()
 
280
 
 
281
    @staticmethod
 
282
    def create_standalone_workingtree(base):
 
283
        """Create a new BzrDir, WorkingTree, Branch and Repository at 'base'.
 
284
 
 
285
        'base' must be a local path or a file:// url.
 
286
 
 
287
        This will use the current default BzrDirFormat, and use whatever 
 
288
        repository format that that uses for bzrdirformat.create_workingtree,
 
289
        create_branch and create_repository.
 
290
 
 
291
        The WorkingTree object is returned.
 
292
        """
 
293
        t = get_transport(safe_unicode(base))
 
294
        if not isinstance(t, LocalTransport):
 
295
            raise errors.NotLocalUrl(base)
 
296
        bzrdir = BzrDir.create_branch_and_repo(safe_unicode(base),
 
297
                                               force_new_repo=True).bzrdir
 
298
        return bzrdir.create_workingtree()
 
299
 
 
300
    def create_workingtree(self, revision_id=None):
 
301
        """Create a working tree at this BzrDir.
 
302
        
 
303
        revision_id: create it as of this revision id.
 
304
        """
 
305
        raise NotImplementedError(self.create_workingtree)
567
306
 
568
307
    def find_repository(self):
569
 
        """Find the repository that should be used.
 
308
        """Find the repository that should be used for a_bzrdir.
570
309
 
571
310
        This does not require a branch as we use it to find the repo for
572
311
        new branches as well as to hook existing branches up to their
573
312
        repository.
574
313
        """
575
 
        def usable_repository(found_bzrdir):
576
 
            # does it have a repository ?
 
314
        try:
 
315
            return self.open_repository()
 
316
        except errors.NoRepositoryPresent:
 
317
            pass
 
318
        next_transport = self.root_transport.clone('..')
 
319
        while True:
 
320
            try:
 
321
                found_bzrdir = BzrDir.open_containing_from_transport(
 
322
                    next_transport)[0]
 
323
            except errors.NotBranchError:
 
324
                raise errors.NoRepositoryPresent(self)
577
325
            try:
578
326
                repository = found_bzrdir.open_repository()
579
327
            except errors.NoRepositoryPresent:
580
 
                return None, False
581
 
            if found_bzrdir.user_url == self.user_url:
582
 
                return repository, True
583
 
            elif repository.is_shared():
584
 
                return repository, True
585
 
            else:
586
 
                return None, True
587
 
 
588
 
        found_repo = self._find_containing(usable_repository)
589
 
        if found_repo is None:
590
 
            raise errors.NoRepositoryPresent(self)
591
 
        return found_repo
592
 
 
593
 
    def _find_creation_modes(self):
594
 
        """Determine the appropriate modes for files and directories.
595
 
 
596
 
        They're always set to be consistent with the base directory,
597
 
        assuming that this transport allows setting modes.
598
 
        """
599
 
        # TODO: Do we need or want an option (maybe a config setting) to turn
600
 
        # this off or override it for particular locations? -- mbp 20080512
601
 
        if self._mode_check_done:
602
 
            return
603
 
        self._mode_check_done = True
604
 
        try:
605
 
            st = self.transport.stat('.')
606
 
        except errors.TransportNotPossible:
607
 
            self._dir_mode = None
608
 
            self._file_mode = None
609
 
        else:
610
 
            # Check the directory mode, but also make sure the created
611
 
            # directories and files are read-write for this user. This is
612
 
            # mostly a workaround for filesystems which lie about being able to
613
 
            # write to a directory (cygwin & win32)
614
 
            if (st.st_mode & 0o7777 == 00000):
615
 
                # FTP allows stat but does not return dir/file modes
616
 
                self._dir_mode = None
617
 
                self._file_mode = None
618
 
            else:
619
 
                self._dir_mode = (st.st_mode & 0o7777) | 0o0700
620
 
                # Remove the sticky and execute bits for files
621
 
                self._file_mode = self._dir_mode & ~0o7111
622
 
 
623
 
    def _get_file_mode(self):
624
 
        """Return Unix mode for newly created files, or None.
625
 
        """
626
 
        if not self._mode_check_done:
627
 
            self._find_creation_modes()
628
 
        return self._file_mode
629
 
 
630
 
    def _get_dir_mode(self):
631
 
        """Return Unix mode for newly created directories, or None.
632
 
        """
633
 
        if not self._mode_check_done:
634
 
            self._find_creation_modes()
635
 
        return self._dir_mode
636
 
 
637
 
    def get_config(self):
638
 
        """Get configuration for this BzrDir."""
639
 
        return config.BzrDirConfig(self)
640
 
 
641
 
    def _get_config(self):
642
 
        """By default, no configuration is available."""
643
 
        return None
644
 
 
645
 
    def __init__(self, _transport, _format):
646
 
        """Initialize a Bzr control dir object.
647
 
 
648
 
        Only really common logic should reside here, concrete classes should be
649
 
        made with varying behaviours.
650
 
 
651
 
        :param _format: the format that is creating this BzrDir instance.
652
 
        :param _transport: the transport this dir is based at.
653
 
        """
654
 
        self._format = _format
655
 
        # these are also under the more standard names of
656
 
        # control_transport and user_transport
657
 
        self.transport = _transport.clone('.bzr')
658
 
        self.root_transport = _transport
659
 
        self._mode_check_done = False
660
 
 
661
 
    @property
662
 
    def user_transport(self):
663
 
        return self.root_transport
664
 
 
665
 
    @property
666
 
    def control_transport(self):
667
 
        return self.transport
668
 
 
669
 
    def _cloning_metadir(self):
670
 
        """Produce a metadir suitable for cloning with.
671
 
 
672
 
        :returns: (destination_bzrdir_format, source_repository)
673
 
        """
674
 
        result_format = self._format.__class__()
675
 
        try:
676
 
            try:
677
 
                branch = self.open_branch(ignore_fallbacks=True)
678
 
                source_repository = branch.repository
679
 
                result_format._branch_format = branch._format
680
 
            except errors.NotBranchError:
681
 
                source_repository = self.open_repository()
682
 
        except errors.NoRepositoryPresent:
683
 
            source_repository = None
684
 
        else:
685
 
            # XXX TODO: This isinstance is here because we have not implemented
686
 
            # the fix recommended in bug # 103195 - to delegate this choice the
687
 
            # repository itself.
688
 
            repo_format = source_repository._format
689
 
            if isinstance(repo_format, remote.RemoteRepositoryFormat):
690
 
                source_repository._ensure_real()
691
 
                repo_format = source_repository._real_repository._format
692
 
            result_format.repository_format = repo_format
693
 
        try:
694
 
            # TODO: Couldn't we just probe for the format in these cases,
695
 
            # rather than opening the whole tree?  It would be a little
696
 
            # faster. mbp 20070401
697
 
            tree = self.open_workingtree(recommend_upgrade=False)
698
 
        except (errors.NoWorkingTree, errors.NotLocalUrl):
699
 
            result_format.workingtree_format = None
700
 
        else:
701
 
            result_format.workingtree_format = tree._format.__class__()
702
 
        return result_format, source_repository
703
 
 
704
 
    def cloning_metadir(self, require_stacking=False):
705
 
        """Produce a metadir suitable for cloning or sprouting with.
706
 
 
707
 
        These operations may produce workingtrees (yes, even though they're
708
 
        "cloning" something that doesn't have a tree), so a viable workingtree
709
 
        format must be selected.
710
 
 
711
 
        :require_stacking: If True, non-stackable formats will be upgraded
712
 
            to similar stackable formats.
713
 
        :returns: a ControlDirFormat with all component formats either set
714
 
            appropriately or set to None if that component should not be
715
 
            created.
716
 
        """
717
 
        format, repository = self._cloning_metadir()
718
 
        if format._workingtree_format is None:
719
 
            # No tree in self.
720
 
            if repository is None:
721
 
                # No repository either
722
 
                return format
723
 
            # We have a repository, so set a working tree? (Why? This seems to
724
 
            # contradict the stated return value in the docstring).
725
 
            tree_format = (
726
 
                repository._format._matchingcontroldir.workingtree_format)
727
 
            format.workingtree_format = tree_format.__class__()
728
 
        if require_stacking:
729
 
            format.require_stacking()
730
 
        return format
731
 
 
732
 
    def get_branch_transport(self, branch_format, name=None):
 
328
                next_transport = found_bzrdir.root_transport.clone('..')
 
329
                continue
 
330
            if ((found_bzrdir.root_transport.base == 
 
331
                 self.root_transport.base) or repository.is_shared()):
 
332
                return repository
 
333
            else:
 
334
                raise errors.NoRepositoryPresent(self)
 
335
        raise errors.NoRepositoryPresent(self)
 
336
 
 
337
    def get_branch_transport(self, branch_format):
733
338
        """Get the transport for use by branch format in this BzrDir.
734
339
 
735
340
        Note that bzr dirs that do not support format strings will raise
736
341
        IncompatibleFormat if the branch format they are given has
737
 
        a format string, and vice versa.
 
342
        a format string, and vice verca.
738
343
 
739
 
        If branch_format is None, the transport is returned with no
740
 
        checking. If it is not None, then the returned transport is
 
344
        If branch_format is None, the transport is returned with no 
 
345
        checking. if it is not None, then the returned transport is
741
346
        guaranteed to point to an existing directory ready for use.
742
347
        """
743
348
        raise NotImplementedError(self.get_branch_transport)
744
 
 
 
349
        
745
350
    def get_repository_transport(self, repository_format):
746
351
        """Get the transport for use by repository format in this BzrDir.
747
352
 
748
353
        Note that bzr dirs that do not support format strings will raise
749
354
        IncompatibleFormat if the repository format they are given has
750
 
        a format string, and vice versa.
 
355
        a format string, and vice verca.
751
356
 
752
 
        If repository_format is None, the transport is returned with no
753
 
        checking. If it is not None, then the returned transport is
 
357
        If repository_format is None, the transport is returned with no 
 
358
        checking. if it is not None, then the returned transport is
754
359
        guaranteed to point to an existing directory ready for use.
755
360
        """
756
361
        raise NotImplementedError(self.get_repository_transport)
757
 
 
 
362
        
758
363
    def get_workingtree_transport(self, tree_format):
759
364
        """Get the transport for use by workingtree format in this BzrDir.
760
365
 
761
366
        Note that bzr dirs that do not support format strings will raise
762
 
        IncompatibleFormat if the workingtree format they are given has a
763
 
        format string, and vice versa.
 
367
        IncompatibleFormat if the workingtree format they are given has
 
368
        a format string, and vice verca.
764
369
 
765
 
        If workingtree_format is None, the transport is returned with no
766
 
        checking. If it is not None, then the returned transport is
 
370
        If workingtree_format is None, the transport is returned with no 
 
371
        checking. if it is not None, then the returned transport is
767
372
        guaranteed to point to an existing directory ready for use.
768
373
        """
769
374
        raise NotImplementedError(self.get_workingtree_transport)
770
 
 
771
 
    @classmethod
772
 
    def create(cls, base, format=None, possible_transports=None):
773
 
        """Create a new BzrDir at the url 'base'.
774
 
 
775
 
        :param format: If supplied, the format of branch to create.  If not
776
 
            supplied, the default is used.
777
 
        :param possible_transports: If supplied, a list of transports that
778
 
            can be reused to share a remote connection.
779
 
        """
780
 
        if cls is not BzrDir:
781
 
            raise AssertionError("BzrDir.create always creates the "
782
 
                                 "default format, not one of %r" % cls)
783
 
        return controldir.ControlDir.create(
784
 
            base, format=format, possible_transports=possible_transports)
785
 
 
786
 
    def __repr__(self):
787
 
        return "<%s at %r>" % (self.__class__.__name__, self.user_url)
788
 
 
789
 
    def update_feature_flags(self, updated_flags):
790
 
        """Update the features required by this bzrdir.
791
 
 
792
 
        :param updated_flags: Dictionary mapping feature names to necessities
793
 
            A necessity can be None to indicate the feature should be removed
794
 
        """
795
 
        self.control_files.lock_write()
796
 
        try:
797
 
            self._format._update_feature_flags(updated_flags)
798
 
            self.transport.put_bytes('branch-format', self._format.as_string())
799
 
        finally:
800
 
            self.control_files.unlock()
 
375
        
 
376
    def __init__(self, _transport, _format):
 
377
        """Initialize a Bzr control dir object.
 
378
        
 
379
        Only really common logic should reside here, concrete classes should be
 
380
        made with varying behaviours.
 
381
 
 
382
        :param _format: the format that is creating this BzrDir instance.
 
383
        :param _transport: the transport this dir is based at.
 
384
        """
 
385
        self._format = _format
 
386
        self.transport = _transport.clone('.bzr')
 
387
        self.root_transport = _transport
 
388
 
 
389
    def needs_format_conversion(self, format=None):
 
390
        """Return true if this bzrdir needs convert_format run on it.
 
391
        
 
392
        For instance, if the repository format is out of date but the 
 
393
        branch and working tree are not, this should return True.
 
394
 
 
395
        :param format: Optional parameter indicating a specific desired
 
396
                       format we plan to arrive at.
 
397
        """
 
398
        raise NotImplementedError(self.needs_format_conversion)
 
399
 
 
400
    @staticmethod
 
401
    def open_unsupported(base):
 
402
        """Open a branch which is not supported."""
 
403
        return BzrDir.open(base, _unsupported=True)
 
404
        
 
405
    @staticmethod
 
406
    def open(base, _unsupported=False):
 
407
        """Open an existing bzrdir, rooted at 'base' (url)
 
408
        
 
409
        _unsupported is a private parameter to the BzrDir class.
 
410
        """
 
411
        t = get_transport(base)
 
412
        mutter("trying to open %r with transport %r", base, t)
 
413
        format = BzrDirFormat.find_format(t)
 
414
        BzrDir._check_supported(format, _unsupported)
 
415
        return format.open(t, _found=True)
 
416
 
 
417
    def open_branch(self, unsupported=False):
 
418
        """Open the branch object at this BzrDir if one is present.
 
419
 
 
420
        If unsupported is True, then no longer supported branch formats can
 
421
        still be opened.
 
422
        
 
423
        TODO: static convenience version of this?
 
424
        """
 
425
        raise NotImplementedError(self.open_branch)
 
426
 
 
427
    @staticmethod
 
428
    def open_containing(url):
 
429
        """Open an existing branch which contains url.
 
430
        
 
431
        :param url: url to search from.
 
432
        See open_containing_from_transport for more detail.
 
433
        """
 
434
        return BzrDir.open_containing_from_transport(get_transport(url))
 
435
    
 
436
    @staticmethod
 
437
    def open_containing_from_transport(a_transport):
 
438
        """Open an existing branch which contains a_transport.base
 
439
 
 
440
        This probes for a branch at a_transport, and searches upwards from there.
 
441
 
 
442
        Basically we keep looking up until we find the control directory or
 
443
        run into the root.  If there isn't one, raises NotBranchError.
 
444
        If there is one and it is either an unrecognised format or an unsupported 
 
445
        format, UnknownFormatError or UnsupportedFormatError are raised.
 
446
        If there is one, it is returned, along with the unused portion of url.
 
447
        """
 
448
        # this gets the normalised url back. I.e. '.' -> the full path.
 
449
        url = a_transport.base
 
450
        while True:
 
451
            try:
 
452
                format = BzrDirFormat.find_format(a_transport)
 
453
                BzrDir._check_supported(format, False)
 
454
                return format.open(a_transport), a_transport.relpath(url)
 
455
            except errors.NotBranchError, e:
 
456
                mutter('not a branch in: %r %s', a_transport.base, e)
 
457
            new_t = a_transport.clone('..')
 
458
            if new_t.base == a_transport.base:
 
459
                # reached the root, whatever that may be
 
460
                raise errors.NotBranchError(path=url)
 
461
            a_transport = new_t
 
462
 
 
463
    def open_repository(self, _unsupported=False):
 
464
        """Open the repository object at this BzrDir if one is present.
 
465
 
 
466
        This will not follow the Branch object pointer - its strictly a direct
 
467
        open facility. Most client code should use open_branch().repository to
 
468
        get at a repository.
 
469
 
 
470
        _unsupported is a private parameter, not part of the api.
 
471
        TODO: static convenience version of this?
 
472
        """
 
473
        raise NotImplementedError(self.open_repository)
 
474
 
 
475
    def open_workingtree(self, _unsupported=False):
 
476
        """Open the workingtree object at this BzrDir if one is present.
 
477
        
 
478
        TODO: static convenience version of this?
 
479
        """
 
480
        raise NotImplementedError(self.open_workingtree)
 
481
 
 
482
    def has_branch(self):
 
483
        """Tell if this bzrdir contains a branch.
 
484
        
 
485
        Note: if you're going to open the branch, you should just go ahead
 
486
        and try, and not ask permission first.  (This method just opens the 
 
487
        branch and discards it, and that's somewhat expensive.) 
 
488
        """
 
489
        try:
 
490
            self.open_branch()
 
491
            return True
 
492
        except errors.NotBranchError:
 
493
            return False
 
494
 
 
495
    def has_workingtree(self):
 
496
        """Tell if this bzrdir contains a working tree.
 
497
 
 
498
        This will still raise an exception if the bzrdir has a workingtree that
 
499
        is remote & inaccessible.
 
500
        
 
501
        Note: if you're going to open the working tree, you should just go ahead
 
502
        and try, and not ask permission first.  (This method just opens the 
 
503
        workingtree and discards it, and that's somewhat expensive.) 
 
504
        """
 
505
        try:
 
506
            self.open_workingtree()
 
507
            return True
 
508
        except errors.NoWorkingTree:
 
509
            return False
 
510
 
 
511
    def sprout(self, url, revision_id=None, basis=None, force_new_repo=False):
 
512
        """Create a copy of this bzrdir prepared for use as a new line of
 
513
        development.
 
514
 
 
515
        If urls last component does not exist, it will be created.
 
516
 
 
517
        Attributes related to the identity of the source branch like
 
518
        branch nickname will be cleaned, a working tree is created
 
519
        whether one existed before or not; and a local branch is always
 
520
        created.
 
521
 
 
522
        if revision_id is not None, then the clone operation may tune
 
523
            itself to download less data.
 
524
        """
 
525
        self._make_tail(url)
 
526
        result = self._format.initialize(url)
 
527
        basis_repo, basis_branch, basis_tree = self._get_basis_components(basis)
 
528
        try:
 
529
            source_branch = self.open_branch()
 
530
            source_repository = source_branch.repository
 
531
        except errors.NotBranchError:
 
532
            source_branch = None
 
533
            try:
 
534
                source_repository = self.open_repository()
 
535
            except errors.NoRepositoryPresent:
 
536
                # copy the entire basis one if there is one
 
537
                # but there is no repository.
 
538
                source_repository = basis_repo
 
539
        if force_new_repo:
 
540
            result_repo = None
 
541
        else:
 
542
            try:
 
543
                result_repo = result.find_repository()
 
544
            except errors.NoRepositoryPresent:
 
545
                result_repo = None
 
546
        if source_repository is None and result_repo is not None:
 
547
            pass
 
548
        elif source_repository is None and result_repo is None:
 
549
            # no repo available, make a new one
 
550
            result.create_repository()
 
551
        elif source_repository is not None and result_repo is None:
 
552
            # have soure, and want to make a new target repo
 
553
            source_repository.clone(result,
 
554
                                    revision_id=revision_id,
 
555
                                    basis=basis_repo)
 
556
        else:
 
557
            # fetch needed content into target.
 
558
            if basis_repo:
 
559
                # XXX FIXME RBC 20060214 need tests for this when the basis
 
560
                # is incomplete
 
561
                result_repo.fetch(basis_repo, revision_id=revision_id)
 
562
            result_repo.fetch(source_repository, revision_id=revision_id)
 
563
        if source_branch is not None:
 
564
            source_branch.sprout(result, revision_id=revision_id)
 
565
        else:
 
566
            result.create_branch()
 
567
        if result_repo is None or result_repo.make_working_trees():
 
568
            result.create_workingtree()
 
569
        return result
 
570
 
 
571
 
 
572
class BzrDirPreSplitOut(BzrDir):
 
573
    """A common class for the all-in-one formats."""
 
574
 
 
575
    def __init__(self, _transport, _format):
 
576
        """See BzrDir.__init__."""
 
577
        super(BzrDirPreSplitOut, self).__init__(_transport, _format)
 
578
        assert self._format._lock_class == TransportLock
 
579
        assert self._format._lock_file_name == 'branch-lock'
 
580
        self._control_files = LockableFiles(self.get_branch_transport(None),
 
581
                                            self._format._lock_file_name,
 
582
                                            self._format._lock_class)
 
583
 
 
584
    def clone(self, url, revision_id=None, basis=None, force_new_repo=False):
 
585
        """See BzrDir.clone()."""
 
586
        from bzrlib.workingtree import WorkingTreeFormat2
 
587
        self._make_tail(url)
 
588
        result = self._format._initialize_for_clone(url)
 
589
        basis_repo, basis_branch, basis_tree = self._get_basis_components(basis)
 
590
        self.open_repository().clone(result, revision_id=revision_id, basis=basis_repo)
 
591
        self.open_branch().clone(result, revision_id=revision_id)
 
592
        try:
 
593
            self.open_workingtree().clone(result, basis=basis_tree)
 
594
        except errors.NotLocalUrl:
 
595
            # make a new one, this format always has to have one.
 
596
            try:
 
597
                WorkingTreeFormat2().initialize(result)
 
598
            except errors.NotLocalUrl:
 
599
                # but we canot do it for remote trees.
 
600
                pass
 
601
        return result
 
602
 
 
603
    def create_branch(self):
 
604
        """See BzrDir.create_branch."""
 
605
        return self.open_branch()
 
606
 
 
607
    def create_repository(self, shared=False):
 
608
        """See BzrDir.create_repository."""
 
609
        if shared:
 
610
            raise errors.IncompatibleFormat('shared repository', self._format)
 
611
        return self.open_repository()
 
612
 
 
613
    def create_workingtree(self, revision_id=None):
 
614
        """See BzrDir.create_workingtree."""
 
615
        # this looks buggy but is not -really-
 
616
        # clone and sprout will have set the revision_id
 
617
        # and that will have set it for us, its only
 
618
        # specific uses of create_workingtree in isolation
 
619
        # that can do wonky stuff here, and that only
 
620
        # happens for creating checkouts, which cannot be 
 
621
        # done on this format anyway. So - acceptable wart.
 
622
        result = self.open_workingtree()
 
623
        if revision_id is not None:
 
624
            result.set_last_revision(revision_id)
 
625
        return result
 
626
 
 
627
    def get_branch_transport(self, branch_format):
 
628
        """See BzrDir.get_branch_transport()."""
 
629
        if branch_format is None:
 
630
            return self.transport
 
631
        try:
 
632
            branch_format.get_format_string()
 
633
        except NotImplementedError:
 
634
            return self.transport
 
635
        raise errors.IncompatibleFormat(branch_format, self._format)
 
636
 
 
637
    def get_repository_transport(self, repository_format):
 
638
        """See BzrDir.get_repository_transport()."""
 
639
        if repository_format is None:
 
640
            return self.transport
 
641
        try:
 
642
            repository_format.get_format_string()
 
643
        except NotImplementedError:
 
644
            return self.transport
 
645
        raise errors.IncompatibleFormat(repository_format, self._format)
 
646
 
 
647
    def get_workingtree_transport(self, workingtree_format):
 
648
        """See BzrDir.get_workingtree_transport()."""
 
649
        if workingtree_format is None:
 
650
            return self.transport
 
651
        try:
 
652
            workingtree_format.get_format_string()
 
653
        except NotImplementedError:
 
654
            return self.transport
 
655
        raise errors.IncompatibleFormat(workingtree_format, self._format)
 
656
 
 
657
    def needs_format_conversion(self, format=None):
 
658
        """See BzrDir.needs_format_conversion()."""
 
659
        # if the format is not the same as the system default,
 
660
        # an upgrade is needed.
 
661
        if format is None:
 
662
            format = BzrDirFormat.get_default_format()
 
663
        return not isinstance(self._format, format.__class__)
 
664
 
 
665
    def open_branch(self, unsupported=False):
 
666
        """See BzrDir.open_branch."""
 
667
        from bzrlib.branch import BzrBranchFormat4
 
668
        format = BzrBranchFormat4()
 
669
        self._check_supported(format, unsupported)
 
670
        return format.open(self, _found=True)
 
671
 
 
672
    def sprout(self, url, revision_id=None, basis=None):
 
673
        """See BzrDir.sprout()."""
 
674
        from bzrlib.workingtree import WorkingTreeFormat2
 
675
        self._make_tail(url)
 
676
        result = self._format._initialize_for_clone(url)
 
677
        basis_repo, basis_branch, basis_tree = self._get_basis_components(basis)
 
678
        try:
 
679
            self.open_repository().clone(result, revision_id=revision_id, basis=basis_repo)
 
680
        except errors.NoRepositoryPresent:
 
681
            pass
 
682
        try:
 
683
            self.open_branch().sprout(result, revision_id=revision_id)
 
684
        except errors.NotBranchError:
 
685
            pass
 
686
        # we always want a working tree
 
687
        WorkingTreeFormat2().initialize(result)
 
688
        return result
 
689
 
 
690
 
 
691
class BzrDir4(BzrDirPreSplitOut):
 
692
    """A .bzr version 4 control object.
 
693
    
 
694
    This is a deprecated format and may be removed after sept 2006.
 
695
    """
 
696
 
 
697
    def create_repository(self, shared=False):
 
698
        """See BzrDir.create_repository."""
 
699
        return self._format.repository_format.initialize(self, shared)
 
700
 
 
701
    def needs_format_conversion(self, format=None):
 
702
        """Format 4 dirs are always in need of conversion."""
 
703
        return True
 
704
 
 
705
    def open_repository(self):
 
706
        """See BzrDir.open_repository."""
 
707
        from bzrlib.repository import RepositoryFormat4
 
708
        return RepositoryFormat4().open(self, _found=True)
 
709
 
 
710
 
 
711
class BzrDir5(BzrDirPreSplitOut):
 
712
    """A .bzr version 5 control object.
 
713
 
 
714
    This is a deprecated format and may be removed after sept 2006.
 
715
    """
 
716
 
 
717
    def open_repository(self):
 
718
        """See BzrDir.open_repository."""
 
719
        from bzrlib.repository import RepositoryFormat5
 
720
        return RepositoryFormat5().open(self, _found=True)
 
721
 
 
722
    def open_workingtree(self, _unsupported=False):
 
723
        """See BzrDir.create_workingtree."""
 
724
        from bzrlib.workingtree import WorkingTreeFormat2
 
725
        return WorkingTreeFormat2().open(self, _found=True)
 
726
 
 
727
 
 
728
class BzrDir6(BzrDirPreSplitOut):
 
729
    """A .bzr version 6 control object.
 
730
 
 
731
    This is a deprecated format and may be removed after sept 2006.
 
732
    """
 
733
 
 
734
    def open_repository(self):
 
735
        """See BzrDir.open_repository."""
 
736
        from bzrlib.repository import RepositoryFormat6
 
737
        return RepositoryFormat6().open(self, _found=True)
 
738
 
 
739
    def open_workingtree(self, _unsupported=False):
 
740
        """See BzrDir.create_workingtree."""
 
741
        from bzrlib.workingtree import WorkingTreeFormat2
 
742
        return WorkingTreeFormat2().open(self, _found=True)
801
743
 
802
744
 
803
745
class BzrDirMeta1(BzrDir):
804
746
    """A .bzr meta version 1 control object.
805
 
 
806
 
    This is the first control object where the
 
747
    
 
748
    This is the first control object where the 
807
749
    individual aspects are really split out: there are separate repository,
808
750
    workingtree and branch subdirectories and any subset of the three can be
809
751
    present within a BzrDir.
810
752
    """
811
753
 
812
 
    def _get_branch_path(self, name):
813
 
        """Obtain the branch path to use.
814
 
 
815
 
        This uses the API specified branch name first, and then falls back to
816
 
        the branch name specified in the URL. If neither of those is specified,
817
 
        it uses the default branch.
818
 
 
819
 
        :param name: Optional branch name to use
820
 
        :return: Relative path to branch
821
 
        """
822
 
        if name == "":
823
 
            return 'branch'
824
 
        return urlutils.join('branches', urlutils.escape(name))
825
 
 
826
 
    def _read_branch_list(self):
827
 
        """Read the branch list.
828
 
 
829
 
        :return: List of branch names.
830
 
        """
831
 
        try:
832
 
            f = self.control_transport.get('branch-list')
833
 
        except errors.NoSuchFile:
834
 
            return []
835
 
 
836
 
        ret = []
837
 
        try:
838
 
            for name in f:
839
 
                ret.append(name.rstrip(b"\n").decode('utf-8'))
840
 
        finally:
841
 
            f.close()
842
 
        return ret
843
 
 
844
 
    def _write_branch_list(self, branches):
845
 
        """Write out the branch list.
846
 
 
847
 
        :param branches: List of utf-8 branch names to write
848
 
        """
849
 
        self.transport.put_bytes(
850
 
            'branch-list',
851
 
            b"".join([name.encode('utf-8') + b"\n" for name in branches]))
852
 
 
853
 
    def __init__(self, _transport, _format):
854
 
        super(BzrDirMeta1, self).__init__(_transport, _format)
855
 
        self.control_files = lockable_files.LockableFiles(
856
 
            self.control_transport, self._format._lock_file_name,
857
 
            self._format._lock_class)
858
 
 
859
754
    def can_convert_format(self):
860
755
        """See BzrDir.can_convert_format()."""
861
756
        return True
862
757
 
863
 
    def create_branch(self, name=None, repository=None,
864
 
                      append_revisions_only=None):
865
 
        """See ControlDir.create_branch."""
866
 
        if name is None:
867
 
            name = self._get_selected_branch()
868
 
        return self._format.get_branch_format().initialize(
869
 
            self, name=name, repository=repository,
870
 
            append_revisions_only=append_revisions_only)
871
 
 
872
 
    def destroy_branch(self, name=None):
873
 
        """See ControlDir.destroy_branch."""
874
 
        if name is None:
875
 
            name = self._get_selected_branch()
876
 
        path = self._get_branch_path(name)
877
 
        if name != u"":
878
 
            self.control_files.lock_write()
879
 
            try:
880
 
                branches = self._read_branch_list()
881
 
                try:
882
 
                    branches.remove(name)
883
 
                except ValueError:
884
 
                    raise errors.NotBranchError(name)
885
 
                self._write_branch_list(branches)
886
 
            finally:
887
 
                self.control_files.unlock()
888
 
        try:
889
 
            self.transport.delete_tree(path)
890
 
        except errors.NoSuchFile:
891
 
            raise errors.NotBranchError(
892
 
                path=urlutils.join(self.transport.base, path), controldir=self)
 
758
    def create_branch(self):
 
759
        """See BzrDir.create_branch."""
 
760
        from bzrlib.branch import BranchFormat
 
761
        return BranchFormat.get_default_format().initialize(self)
893
762
 
894
763
    def create_repository(self, shared=False):
895
764
        """See BzrDir.create_repository."""
896
765
        return self._format.repository_format.initialize(self, shared)
897
766
 
898
 
    def destroy_repository(self):
899
 
        """See BzrDir.destroy_repository."""
900
 
        try:
901
 
            self.transport.delete_tree('repository')
902
 
        except errors.NoSuchFile:
903
 
            raise errors.NoRepositoryPresent(self)
904
 
 
905
 
    def create_workingtree(self, revision_id=None, from_branch=None,
906
 
                           accelerator_tree=None, hardlink=False):
 
767
    def create_workingtree(self, revision_id=None):
907
768
        """See BzrDir.create_workingtree."""
908
 
        return self._format.workingtree_format.initialize(
909
 
            self, revision_id, from_branch=from_branch,
910
 
            accelerator_tree=accelerator_tree, hardlink=hardlink)
911
 
 
912
 
    def destroy_workingtree(self):
913
 
        """See BzrDir.destroy_workingtree."""
914
 
        wt = self.open_workingtree(recommend_upgrade=False)
915
 
        repository = wt.branch.repository
916
 
        empty = repository.revision_tree(_mod_revision.NULL_REVISION)
917
 
        # We ignore the conflicts returned by wt.revert since we're about to
918
 
        # delete the wt metadata anyway, all that should be left here are
919
 
        # detritus. But see bug #634470 about subtree .bzr dirs.
920
 
        wt.revert(old_tree=empty)
921
 
        self.destroy_workingtree_metadata()
922
 
 
923
 
    def destroy_workingtree_metadata(self):
924
 
        self.transport.delete_tree('checkout')
925
 
 
926
 
    def find_branch_format(self, name=None):
927
 
        """Find the branch 'format' for this bzrdir.
928
 
 
929
 
        This might be a synthetic object for e.g. RemoteBranch and SVN.
930
 
        """
931
 
        from .branch import BranchFormatMetadir
932
 
        return BranchFormatMetadir.find_format(self, name=name)
 
769
        from bzrlib.workingtree import WorkingTreeFormat
 
770
        return WorkingTreeFormat.get_default_format().initialize(self, revision_id)
933
771
 
934
772
    def _get_mkdir_mode(self):
935
773
        """Figure out the mode to use when creating a bzrdir subdir."""
936
 
        temp_control = lockable_files.LockableFiles(
937
 
            self.transport, '', lockable_files.TransportLock)
 
774
        temp_control = LockableFiles(self.transport, '', TransportLock)
938
775
        return temp_control._dir_mode
939
776
 
940
 
    def get_branch_reference(self, name=None):
941
 
        """See BzrDir.get_branch_reference()."""
942
 
        from .branch import BranchFormatMetadir
943
 
        format = BranchFormatMetadir.find_format(self, name=name)
944
 
        return format.get_reference(self, name=name)
945
 
 
946
 
    def set_branch_reference(self, target_branch, name=None):
947
 
        format = _mod_bzrbranch.BranchReferenceFormat()
948
 
        if (self.control_url == target_branch.controldir.control_url
949
 
                and name == target_branch.name):
950
 
            raise controldir.BranchReferenceLoop(target_branch)
951
 
        return format.initialize(self, target_branch=target_branch, name=name)
952
 
 
953
 
    def get_branch_transport(self, branch_format, name=None):
 
777
    def get_branch_transport(self, branch_format):
954
778
        """See BzrDir.get_branch_transport()."""
955
 
        if name is None:
956
 
            name = self._get_selected_branch()
957
 
        path = self._get_branch_path(name)
958
 
        # XXX: this shouldn't implicitly create the directory if it's just
959
 
        # promising to get a transport -- mbp 20090727
960
779
        if branch_format is None:
961
 
            return self.transport.clone(path)
 
780
            return self.transport.clone('branch')
962
781
        try:
963
782
            branch_format.get_format_string()
964
783
        except NotImplementedError:
965
784
            raise errors.IncompatibleFormat(branch_format, self._format)
966
 
        if name != "":
967
 
            branches = self._read_branch_list()
968
 
            if name not in branches:
969
 
                self.control_files.lock_write()
970
 
                try:
971
 
                    branches = self._read_branch_list()
972
 
                    dirname = urlutils.dirname(name)
973
 
                    if dirname != u"" and dirname in branches:
974
 
                        raise errors.ParentBranchExists(name)
975
 
                    child_branches = [
976
 
                        b.startswith(name + u"/") for b in branches]
977
 
                    if any(child_branches):
978
 
                        raise errors.AlreadyBranchError(name)
979
 
                    branches.append(name)
980
 
                    self._write_branch_list(branches)
981
 
                finally:
982
 
                    self.control_files.unlock()
983
 
        branch_transport = self.transport.clone(path)
984
 
        mode = self._get_mkdir_mode()
985
 
        branch_transport.create_prefix(mode=mode)
986
785
        try:
987
 
            self.transport.mkdir(path, mode=mode)
 
786
            self.transport.mkdir('branch', mode=self._get_mkdir_mode())
988
787
        except errors.FileExists:
989
788
            pass
990
 
        return self.transport.clone(path)
 
789
        return self.transport.clone('branch')
991
790
 
992
791
    def get_repository_transport(self, repository_format):
993
792
        """See BzrDir.get_repository_transport()."""
1017
816
            pass
1018
817
        return self.transport.clone('checkout')
1019
818
 
1020
 
    def branch_names(self):
1021
 
        """See ControlDir.branch_names."""
1022
 
        ret = []
1023
 
        try:
1024
 
            self.get_branch_reference()
1025
 
        except errors.NotBranchError:
1026
 
            pass
1027
 
        else:
1028
 
            ret.append("")
1029
 
        ret.extend(self._read_branch_list())
1030
 
        return ret
1031
 
 
1032
 
    def get_branches(self):
1033
 
        """See ControlDir.get_branches."""
1034
 
        ret = {}
1035
 
        try:
1036
 
            ret[""] = self.open_branch(name="")
1037
 
        except (errors.NotBranchError, errors.NoRepositoryPresent):
1038
 
            pass
1039
 
 
1040
 
        for name in self._read_branch_list():
1041
 
            ret[name] = self.open_branch(name=name)
1042
 
 
1043
 
        return ret
1044
 
 
1045
 
    def has_workingtree(self):
1046
 
        """Tell if this bzrdir contains a working tree.
1047
 
 
1048
 
        Note: if you're going to open the working tree, you should just go
1049
 
        ahead and try, and not ask permission first.
1050
 
        """
1051
 
        from .workingtree import WorkingTreeFormatMetaDir
1052
 
        try:
1053
 
            WorkingTreeFormatMetaDir.find_format_string(self)
1054
 
        except errors.NoWorkingTree:
1055
 
            return False
1056
 
        return True
1057
 
 
1058
 
    def needs_format_conversion(self, format):
 
819
    def needs_format_conversion(self, format=None):
1059
820
        """See BzrDir.needs_format_conversion()."""
1060
 
        if (not isinstance(self._format, format.__class__)
1061
 
                or self._format.get_format_string() != format.get_format_string()):
 
821
        if format is None:
 
822
            format = BzrDirFormat.get_default_format()
 
823
        if not isinstance(self._format, format.__class__):
1062
824
            # it is not a meta dir format, conversion is needed.
1063
825
            return True
1064
826
        # we might want to push this down to the repository?
1069
831
                return True
1070
832
        except errors.NoRepositoryPresent:
1071
833
            pass
1072
 
        for branch in self.list_branches():
1073
 
            if not isinstance(branch._format,
1074
 
                              format.get_branch_format().__class__):
1075
 
                # the branch needs an upgrade.
1076
 
                return True
1077
 
        try:
1078
 
            my_wt = self.open_workingtree(recommend_upgrade=False)
1079
 
            if not isinstance(my_wt._format,
1080
 
                              format.workingtree_format.__class__):
1081
 
                # the workingtree needs an upgrade.
1082
 
                return True
1083
 
        except (errors.NoWorkingTree, errors.NotLocalUrl):
1084
 
            pass
 
834
        # currently there are no other possible conversions for meta1 formats.
1085
835
        return False
1086
836
 
1087
 
    def open_branch(self, name=None, unsupported=False,
1088
 
                    ignore_fallbacks=False, possible_transports=None):
1089
 
        """See ControlDir.open_branch."""
1090
 
        if name is None:
1091
 
            name = self._get_selected_branch()
1092
 
        format = self.find_branch_format(name=name)
1093
 
        format.check_support_status(unsupported)
1094
 
        if possible_transports is None:
1095
 
            possible_transports = []
1096
 
        else:
1097
 
            possible_transports = list(possible_transports)
1098
 
        possible_transports.append(self.root_transport)
1099
 
        return format.open(self, name=name,
1100
 
                           _found=True, ignore_fallbacks=ignore_fallbacks,
1101
 
                           possible_transports=possible_transports)
 
837
    def open_branch(self, unsupported=False):
 
838
        """See BzrDir.open_branch."""
 
839
        from bzrlib.branch import BranchFormat
 
840
        format = BranchFormat.find_format(self)
 
841
        self._check_supported(format, unsupported)
 
842
        return format.open(self, _found=True)
1102
843
 
1103
844
    def open_repository(self, unsupported=False):
1104
845
        """See BzrDir.open_repository."""
1105
 
        from .repository import RepositoryFormatMetaDir
1106
 
        format = RepositoryFormatMetaDir.find_format(self)
1107
 
        format.check_support_status(unsupported)
 
846
        from bzrlib.repository import RepositoryFormat
 
847
        format = RepositoryFormat.find_format(self)
 
848
        self._check_supported(format, unsupported)
1108
849
        return format.open(self, _found=True)
1109
850
 
1110
 
    def open_workingtree(self, unsupported=False,
1111
 
                         recommend_upgrade=True):
 
851
    def open_workingtree(self, unsupported=False):
1112
852
        """See BzrDir.open_workingtree."""
1113
 
        from .workingtree import WorkingTreeFormatMetaDir
1114
 
        format = WorkingTreeFormatMetaDir.find_format(self)
1115
 
        format.check_support_status(unsupported, recommend_upgrade,
1116
 
                                    basedir=self.root_transport.base)
 
853
        from bzrlib.workingtree import WorkingTreeFormat
 
854
        format = WorkingTreeFormat.find_format(self)
 
855
        self._check_supported(format, unsupported)
1117
856
        return format.open(self, _found=True)
1118
857
 
1119
 
    def _get_config(self):
1120
 
        return config.TransportConfig(self.transport, 'control.conf')
1121
 
 
1122
 
 
1123
 
class BzrFormat(object):
1124
 
    """Base class for all formats of things living in metadirs.
1125
 
 
1126
 
    This class manages the format string that is stored in the 'format'
1127
 
    or 'branch-format' file.
1128
 
 
1129
 
    All classes for (branch-, repository-, workingtree-) formats that
1130
 
    live in meta directories and have their own 'format' file
1131
 
    (i.e. different from .bzr/branch-format) derive from this class,
1132
 
    as well as the relevant base class for their kind
1133
 
    (BranchFormat, WorkingTreeFormat, RepositoryFormat).
1134
 
 
1135
 
    Each format is identified by a "format" or "branch-format" file with a
1136
 
    single line containing the base format name and then an optional list of
1137
 
    feature flags.
1138
 
 
1139
 
    Feature flags are supported as of bzr 2.5. Setting feature flags on formats
1140
 
    will render them inaccessible to older versions of bzr.
1141
 
 
1142
 
    :ivar features: Dictionary mapping feature names to their necessity
1143
 
    """
1144
 
 
1145
 
    _present_features = set()
1146
 
 
1147
 
    def __init__(self):
1148
 
        self.features = {}
1149
 
 
1150
 
    @classmethod
1151
 
    def register_feature(cls, name):
1152
 
        """Register a feature as being present.
1153
 
 
1154
 
        :param name: Name of the feature
1155
 
        """
1156
 
        if b" " in name:
1157
 
            raise ValueError("spaces are not allowed in feature names")
1158
 
        if name in cls._present_features:
1159
 
            raise FeatureAlreadyRegistered(name)
1160
 
        cls._present_features.add(name)
1161
 
 
1162
 
    @classmethod
1163
 
    def unregister_feature(cls, name):
1164
 
        """Unregister a feature."""
1165
 
        cls._present_features.remove(name)
1166
 
 
1167
 
    def check_support_status(self, allow_unsupported, recommend_upgrade=True,
1168
 
                             basedir=None):
1169
 
        for name, necessity in viewitems(self.features):
1170
 
            if name in self._present_features:
1171
 
                continue
1172
 
            if necessity == b"optional":
1173
 
                mutter("ignoring optional missing feature %s", name)
1174
 
                continue
1175
 
            elif necessity == b"required":
1176
 
                raise MissingFeature(name)
1177
 
            else:
1178
 
                mutter("treating unknown necessity as require for %s",
1179
 
                       name)
1180
 
                raise MissingFeature(name)
1181
 
 
1182
 
    @classmethod
1183
 
    def get_format_string(cls):
1184
 
        """Return the ASCII format string that identifies this format."""
1185
 
        raise NotImplementedError(cls.get_format_string)
1186
 
 
1187
 
    @classmethod
1188
 
    def from_string(cls, text):
1189
 
        format_string = cls.get_format_string()
1190
 
        if not text.startswith(format_string):
1191
 
            raise AssertionError(
1192
 
                "Invalid format header %r for %r" % (text, cls))
1193
 
        lines = text[len(format_string):].splitlines()
1194
 
        ret = cls()
1195
 
        for lineno, line in enumerate(lines):
1196
 
            try:
1197
 
                (necessity, feature) = line.split(b" ", 1)
1198
 
            except ValueError:
1199
 
                raise errors.ParseFormatError(format=cls, lineno=lineno + 2,
1200
 
                                              line=line, text=text)
1201
 
            ret.features[feature] = necessity
1202
 
        return ret
1203
 
 
1204
 
    def as_string(self):
1205
 
        """Return the string representation of this format.
1206
 
        """
1207
 
        lines = [self.get_format_string()]
1208
 
        lines.extend([(item[1] + b" " + item[0] + b"\n")
1209
 
                      for item in sorted(viewitems(self.features))])
1210
 
        return b"".join(lines)
1211
 
 
1212
 
    @classmethod
1213
 
    def _find_format(klass, registry, kind, format_string):
1214
 
        try:
1215
 
            first_line = format_string[:format_string.index(b"\n") + 1]
1216
 
        except ValueError:
1217
 
            first_line = format_string
1218
 
        try:
1219
 
            cls = registry.get(first_line)
1220
 
        except KeyError:
1221
 
            raise errors.UnknownFormatError(format=first_line, kind=kind)
1222
 
        return cls.from_string(format_string)
1223
 
 
1224
 
    def network_name(self):
1225
 
        """A simple byte string uniquely identifying this format for RPC calls.
1226
 
 
1227
 
        Metadir branch formats use their format string.
1228
 
        """
1229
 
        return self.as_string()
1230
 
 
1231
 
    def __eq__(self, other):
1232
 
        return (self.__class__ is other.__class__
1233
 
                and self.features == other.features)
1234
 
 
1235
 
    def _update_feature_flags(self, updated_flags):
1236
 
        """Update the feature flags in this format.
1237
 
 
1238
 
        :param updated_flags: Updated feature flags
1239
 
        """
1240
 
        for name, necessity in updated_flags.items():
1241
 
            if necessity is None:
1242
 
                try:
1243
 
                    del self.features[name]
1244
 
                except KeyError:
1245
 
                    pass
1246
 
            else:
1247
 
                self.features[name] = necessity
1248
 
 
1249
 
 
1250
 
class BzrDirFormat(BzrFormat, controldir.ControlDirFormat):
1251
 
    """ControlDirFormat base class for .bzr/ directories.
1252
 
 
1253
 
    Formats are placed in a dict by their format string for reference
 
858
 
 
859
class BzrDirFormat(object):
 
860
    """An encapsulation of the initialization and open routines for a format.
 
861
 
 
862
    Formats provide three things:
 
863
     * An initialization routine,
 
864
     * a format string,
 
865
     * an open routine.
 
866
 
 
867
    Formats are placed in an dict by their format string for reference 
1254
868
    during bzrdir opening. These should be subclasses of BzrDirFormat
1255
869
    for consistency.
1256
870
 
1257
871
    Once a format is deprecated, just deprecate the initialize and open
1258
 
    methods on the format class. Do not deprecate the object, as the
 
872
    methods on the format class. Do not deprecate the object, as the 
1259
873
    object will be created every system load.
1260
874
    """
1261
875
 
 
876
    _default_format = None
 
877
    """The default format used for new .bzr dirs."""
 
878
 
 
879
    _formats = {}
 
880
    """The known formats."""
 
881
 
1262
882
    _lock_file_name = 'branch-lock'
1263
883
 
1264
884
    # _lock_class must be set in subclasses to the lock type, typ.
1265
885
    # TransportLock or LockDir
1266
886
 
 
887
    @classmethod
 
888
    def find_format(klass, transport):
 
889
        """Return the format registered for URL."""
 
890
        try:
 
891
            format_string = transport.get(".bzr/branch-format").read()
 
892
            return klass._formats[format_string]
 
893
        except errors.NoSuchFile:
 
894
            raise errors.NotBranchError(path=transport.base)
 
895
        except KeyError:
 
896
            raise errors.UnknownFormatError(format_string)
 
897
 
 
898
    @classmethod
 
899
    def get_default_format(klass):
 
900
        """Return the current default format."""
 
901
        return klass._default_format
 
902
 
 
903
    def get_format_string(self):
 
904
        """Return the ASCII format string that identifies this format."""
 
905
        raise NotImplementedError(self.get_format_string)
 
906
 
 
907
    def get_format_description(self):
 
908
        """Return the short description for this format."""
 
909
        raise NotImplementedError(self.get_format_description)
 
910
 
 
911
    def get_converter(self, format=None):
 
912
        """Return the converter to use to convert bzrdirs needing converts.
 
913
 
 
914
        This returns a bzrlib.bzrdir.Converter object.
 
915
 
 
916
        This should return the best upgrader to step this format towards the
 
917
        current default format. In the case of plugins we can/shouold provide
 
918
        some means for them to extend the range of returnable converters.
 
919
 
 
920
        :param format: Optional format to override the default foramt of the 
 
921
                       library.
 
922
        """
 
923
        raise NotImplementedError(self.get_converter)
 
924
 
 
925
    def initialize(self, url):
 
926
        """Create a bzr control dir at this url and return an opened copy.
 
927
        
 
928
        Subclasses should typically override initialize_on_transport
 
929
        instead of this method.
 
930
        """
 
931
        return self.initialize_on_transport(get_transport(url))
 
932
 
1267
933
    def initialize_on_transport(self, transport):
1268
934
        """Initialize a new bzrdir in the base directory of a Transport."""
1269
 
        try:
1270
 
            # can we hand off the request to the smart server rather than using
1271
 
            # vfs calls?
1272
 
            client_medium = transport.get_smart_medium()
1273
 
        except errors.NoSmartMedium:
1274
 
            return self._initialize_on_transport_vfs(transport)
1275
 
        else:
1276
 
            # Current RPC's only know how to create bzr metadir1 instances, so
1277
 
            # we still delegate to vfs methods if the requested format is not a
1278
 
            # metadir1
1279
 
            if not isinstance(self, BzrDirMetaFormat1):
1280
 
                return self._initialize_on_transport_vfs(transport)
1281
 
            from .remote import RemoteBzrDirFormat
1282
 
            remote_format = RemoteBzrDirFormat()
1283
 
            self._supply_sub_formats_to(remote_format)
1284
 
            return remote_format.initialize_on_transport(transport)
1285
 
 
1286
 
    def initialize_on_transport_ex(self, transport, use_existing_dir=False,
1287
 
                                   create_prefix=False, force_new_repo=False, stacked_on=None,
1288
 
                                   stack_on_pwd=None, repo_format_name=None, make_working_trees=None,
1289
 
                                   shared_repo=False, vfs_only=False):
1290
 
        """Create this format on transport.
1291
 
 
1292
 
        The directory to initialize will be created.
1293
 
 
1294
 
        :param force_new_repo: Do not use a shared repository for the target,
1295
 
                               even if one is available.
1296
 
        :param create_prefix: Create any missing directories leading up to
1297
 
            to_transport.
1298
 
        :param use_existing_dir: Use an existing directory if one exists.
1299
 
        :param stacked_on: A url to stack any created branch on, None to follow
1300
 
            any target stacking policy.
1301
 
        :param stack_on_pwd: If stack_on is relative, the location it is
1302
 
            relative to.
1303
 
        :param repo_format_name: If non-None, a repository will be
1304
 
            made-or-found. Should none be found, or if force_new_repo is True
1305
 
            the repo_format_name is used to select the format of repository to
1306
 
            create.
1307
 
        :param make_working_trees: Control the setting of make_working_trees
1308
 
            for a new shared repository when one is made. None to use whatever
1309
 
            default the format has.
1310
 
        :param shared_repo: Control whether made repositories are shared or
1311
 
            not.
1312
 
        :param vfs_only: If True do not attempt to use a smart server
1313
 
        :return: repo, controldir, require_stacking, repository_policy. repo is
1314
 
            None if none was created or found, bzrdir is always valid.
1315
 
            require_stacking is the result of examining the stacked_on
1316
 
            parameter and any stacking policy found for the target.
1317
 
        """
1318
 
        if not vfs_only:
1319
 
            # Try to hand off to a smart server
1320
 
            try:
1321
 
                client_medium = transport.get_smart_medium()
1322
 
            except errors.NoSmartMedium:
1323
 
                pass
1324
 
            else:
1325
 
                from .remote import RemoteBzrDirFormat
1326
 
                # TODO: lookup the local format from a server hint.
1327
 
                remote_dir_format = RemoteBzrDirFormat()
1328
 
                remote_dir_format._network_name = self.network_name()
1329
 
                self._supply_sub_formats_to(remote_dir_format)
1330
 
                return remote_dir_format.initialize_on_transport_ex(
1331
 
                    transport, use_existing_dir=use_existing_dir,
1332
 
                    create_prefix=create_prefix, force_new_repo=force_new_repo,
1333
 
                    stacked_on=stacked_on, stack_on_pwd=stack_on_pwd,
1334
 
                    repo_format_name=repo_format_name,
1335
 
                    make_working_trees=make_working_trees,
1336
 
                    shared_repo=shared_repo)
1337
 
        # XXX: Refactor the create_prefix/no_create_prefix code into a
1338
 
        #      common helper function
1339
 
        # The destination may not exist - if so make it according to policy.
1340
 
 
1341
 
        def make_directory(transport):
1342
 
            transport.mkdir('.')
1343
 
            return transport
1344
 
 
1345
 
        def redirected(transport, e, redirection_notice):
1346
 
            note(redirection_notice)
1347
 
            return transport._redirected_to(e.source, e.target)
1348
 
        try:
1349
 
            transport = do_catching_redirections(make_directory, transport,
1350
 
                                                 redirected)
1351
 
        except errors.FileExists:
1352
 
            if not use_existing_dir:
1353
 
                raise
1354
 
        except errors.NoSuchFile:
1355
 
            if not create_prefix:
1356
 
                raise
1357
 
            transport.create_prefix()
1358
 
 
1359
 
        require_stacking = (stacked_on is not None)
1360
 
        # Now the target directory exists, but doesn't have a .bzr
1361
 
        # directory. So we need to create it, along with any work to create
1362
 
        # all of the dependent branches, etc.
1363
 
 
1364
 
        result = self.initialize_on_transport(transport)
1365
 
        if repo_format_name:
1366
 
            try:
1367
 
                # use a custom format
1368
 
                result._format.repository_format = \
1369
 
                    repository.network_format_registry.get(repo_format_name)
1370
 
            except AttributeError:
1371
 
                # The format didn't permit it to be set.
1372
 
                pass
1373
 
            # A repository is desired, either in-place or shared.
1374
 
            repository_policy = result.determine_repository_policy(
1375
 
                force_new_repo, stacked_on, stack_on_pwd,
1376
 
                require_stacking=require_stacking)
1377
 
            result_repo, is_new_repo = repository_policy.acquire_repository(
1378
 
                make_working_trees, shared_repo)
1379
 
            if not require_stacking and repository_policy._require_stacking:
1380
 
                require_stacking = True
1381
 
                result._format.require_stacking()
1382
 
            result_repo.lock_write()
1383
 
        else:
1384
 
            result_repo = None
1385
 
            repository_policy = None
1386
 
        return result_repo, result, require_stacking, repository_policy
1387
 
 
1388
 
    def _initialize_on_transport_vfs(self, transport):
1389
 
        """Initialize a new bzrdir using VFS calls.
1390
 
 
1391
 
        :param transport: The transport to create the .bzr directory in.
1392
 
        :return: A
1393
 
        """
1394
 
        # Since we are creating a .bzr directory, inherit the
 
935
        # Since we don'transport have a .bzr directory, inherit the
1395
936
        # mode from the root directory
1396
 
        temp_control = lockable_files.LockableFiles(transport,
1397
 
                                                    '', lockable_files.TransportLock)
1398
 
        try:
1399
 
            temp_control._transport.mkdir('.bzr',
1400
 
                                          # FIXME: RBC 20060121 don't peek under
1401
 
                                          # the covers
1402
 
                                          mode=temp_control._dir_mode)
1403
 
        except errors.FileExists:
1404
 
            raise errors.AlreadyControlDirError(transport.base)
1405
 
        if sys.platform == 'win32' and isinstance(transport, local.LocalTransport):
1406
 
            win32utils.set_file_attr_hidden(transport._abspath('.bzr'))
 
937
        temp_control = LockableFiles(transport, '', TransportLock)
 
938
        temp_control._transport.mkdir('.bzr',
 
939
                                      # FIXME: RBC 20060121 dont peek under
 
940
                                      # the covers
 
941
                                      mode=temp_control._dir_mode)
1407
942
        file_mode = temp_control._file_mode
1408
943
        del temp_control
1409
 
        bzrdir_transport = transport.clone('.bzr')
1410
 
        utf8_files = [('README',
1411
 
                       b"This is a Bazaar control directory.\n"
1412
 
                       b"Do not change any files in this directory.\n"
1413
 
                       b"See http://bazaar.canonical.com/ for more information about Bazaar.\n"),
1414
 
                      ('branch-format', self.as_string()),
 
944
        mutter('created control directory in ' + transport.base)
 
945
        control = transport.clone('.bzr')
 
946
        utf8_files = [('README', 
 
947
                       "This is a Bazaar-NG control directory.\n"
 
948
                       "Do not change any files in this directory.\n"),
 
949
                      ('branch-format', self.get_format_string()),
1415
950
                      ]
1416
951
        # NB: no need to escape relative paths that are url safe.
1417
 
        control_files = lockable_files.LockableFiles(bzrdir_transport,
1418
 
                                                     self._lock_file_name, self._lock_class)
 
952
        control_files = LockableFiles(control, self._lock_file_name, 
 
953
                                      self._lock_class)
1419
954
        control_files.create_lock()
1420
955
        control_files.lock_write()
1421
956
        try:
1422
 
            for (filename, content) in utf8_files:
1423
 
                bzrdir_transport.put_bytes(filename, content,
1424
 
                                           mode=file_mode)
 
957
            for file, content in utf8_files:
 
958
                control_files.put_utf8(file, content)
1425
959
        finally:
1426
960
            control_files.unlock()
1427
961
        return self.open(transport, _found=True)
1428
962
 
 
963
    def is_supported(self):
 
964
        """Is this format supported?
 
965
 
 
966
        Supported formats must be initializable and openable.
 
967
        Unsupported formats may not support initialization or committing or 
 
968
        some other features depending on the reason for not being supported.
 
969
        """
 
970
        return True
 
971
 
1429
972
    def open(self, transport, _found=False):
1430
973
        """Return an instance of this format for the dir transport points at.
1431
 
 
 
974
        
1432
975
        _found is a private parameter, do not use it.
1433
976
        """
1434
977
        if not _found:
1435
 
            found_format = controldir.ControlDirFormat.find_format(transport)
1436
 
            if not isinstance(found_format, self.__class__):
1437
 
                raise AssertionError("%s was asked to open %s, but it seems to need "
1438
 
                                     "format %s"
1439
 
                                     % (self, transport, found_format))
1440
 
            # Allow subclasses - use the found format.
1441
 
            self._supply_sub_formats_to(found_format)
1442
 
            return found_format._open(transport)
 
978
            assert isinstance(BzrDirFormat.find_format(transport),
 
979
                              self.__class__)
1443
980
        return self._open(transport)
1444
981
 
1445
982
    def _open(self, transport):
1450
987
        """
1451
988
        raise NotImplementedError(self._open)
1452
989
 
1453
 
    def _supply_sub_formats_to(self, other_format):
1454
 
        """Give other_format the same values for sub formats as this has.
1455
 
 
1456
 
        This method is expected to be used when parameterising a
1457
 
        RemoteBzrDirFormat instance with the parameters from a
1458
 
        BzrDirMetaFormat1 instance.
1459
 
 
1460
 
        :param other_format: other_format is a format which should be
1461
 
            compatible with whatever sub formats are supported by self.
1462
 
        :return: None.
1463
 
        """
1464
 
        other_format.features = dict(self.features)
1465
 
 
1466
 
    def supports_transport(self, transport):
1467
 
        # bzr formats can be opened over all known transports
1468
 
        return True
1469
 
 
1470
 
    def check_support_status(self, allow_unsupported, recommend_upgrade=True,
1471
 
                             basedir=None):
1472
 
        controldir.ControlDirFormat.check_support_status(self,
1473
 
                                                         allow_unsupported=allow_unsupported, recommend_upgrade=recommend_upgrade,
1474
 
                                                         basedir=basedir)
1475
 
        BzrFormat.check_support_status(self, allow_unsupported=allow_unsupported,
1476
 
                                       recommend_upgrade=recommend_upgrade, basedir=basedir)
1477
 
 
1478
 
    @classmethod
1479
 
    def is_control_filename(klass, filename):
1480
 
        """True if filename is the name of a path which is reserved for bzrdir's.
1481
 
 
1482
 
        :param filename: A filename within the root transport of this bzrdir.
1483
 
 
1484
 
        This is true IF and ONLY IF the filename is part of the namespace
1485
 
        reserved for bzr control dirs. Currently this is the '.bzr' directory
1486
 
        in the root of the root_transport.
1487
 
        """
1488
 
        # this might be better on the BzrDirFormat class because it refers to
1489
 
        # all the possible bzrdir disk formats.
1490
 
        # This method is tested via the workingtree is_control_filename tests-
1491
 
        # it was extracted from WorkingTree.is_control_filename. If the
1492
 
        # method's contract is extended beyond the current trivial
1493
 
        # implementation, please add new tests for it to the appropriate place.
1494
 
        return filename == '.bzr' or filename.startswith('.bzr/')
 
990
    @classmethod
 
991
    def register_format(klass, format):
 
992
        klass._formats[format.get_format_string()] = format
 
993
 
 
994
    @classmethod
 
995
    def set_default_format(klass, format):
 
996
        klass._default_format = format
 
997
 
 
998
    def __str__(self):
 
999
        return self.get_format_string()[:-1]
 
1000
 
 
1001
    @classmethod
 
1002
    def unregister_format(klass, format):
 
1003
        assert klass._formats[format.get_format_string()] is format
 
1004
        del klass._formats[format.get_format_string()]
 
1005
 
 
1006
 
 
1007
class BzrDirFormat4(BzrDirFormat):
 
1008
    """Bzr dir format 4.
 
1009
 
 
1010
    This format is a combined format for working tree, branch and repository.
 
1011
    It has:
 
1012
     - Format 1 working trees [always]
 
1013
     - Format 4 branches [always]
 
1014
     - Format 4 repositories [always]
 
1015
 
 
1016
    This format is deprecated: it indexes texts using a text it which is
 
1017
    removed in format 5; write support for this format has been removed.
 
1018
    """
 
1019
 
 
1020
    _lock_class = TransportLock
 
1021
 
 
1022
    def get_format_string(self):
 
1023
        """See BzrDirFormat.get_format_string()."""
 
1024
        return "Bazaar-NG branch, format 0.0.4\n"
 
1025
 
 
1026
    def get_format_description(self):
 
1027
        """See BzrDirFormat.get_format_description()."""
 
1028
        return "All-in-one format 4"
 
1029
 
 
1030
    def get_converter(self, format=None):
 
1031
        """See BzrDirFormat.get_converter()."""
 
1032
        # there is one and only one upgrade path here.
 
1033
        return ConvertBzrDir4To5()
 
1034
        
 
1035
    def initialize_on_transport(self, transport):
 
1036
        """Format 4 branches cannot be created."""
 
1037
        raise errors.UninitializableFormat(self)
 
1038
 
 
1039
    def is_supported(self):
 
1040
        """Format 4 is not supported.
 
1041
 
 
1042
        It is not supported because the model changed from 4 to 5 and the
 
1043
        conversion logic is expensive - so doing it on the fly was not 
 
1044
        feasible.
 
1045
        """
 
1046
        return False
 
1047
 
 
1048
    def _open(self, transport):
 
1049
        """See BzrDirFormat._open."""
 
1050
        return BzrDir4(transport, self)
 
1051
 
 
1052
    def __return_repository_format(self):
 
1053
        """Circular import protection."""
 
1054
        from bzrlib.repository import RepositoryFormat4
 
1055
        return RepositoryFormat4(self)
 
1056
    repository_format = property(__return_repository_format)
 
1057
 
 
1058
 
 
1059
class BzrDirFormat5(BzrDirFormat):
 
1060
    """Bzr control format 5.
 
1061
 
 
1062
    This format is a combined format for working tree, branch and repository.
 
1063
    It has:
 
1064
     - Format 2 working trees [always] 
 
1065
     - Format 4 branches [always] 
 
1066
     - Format 5 repositories [always]
 
1067
       Unhashed stores in the repository.
 
1068
    """
 
1069
 
 
1070
    _lock_class = TransportLock
 
1071
 
 
1072
    def get_format_string(self):
 
1073
        """See BzrDirFormat.get_format_string()."""
 
1074
        return "Bazaar-NG branch, format 5\n"
 
1075
 
 
1076
    def get_format_description(self):
 
1077
        """See BzrDirFormat.get_format_description()."""
 
1078
        return "All-in-one format 5"
 
1079
 
 
1080
    def get_converter(self, format=None):
 
1081
        """See BzrDirFormat.get_converter()."""
 
1082
        # there is one and only one upgrade path here.
 
1083
        return ConvertBzrDir5To6()
 
1084
 
 
1085
    def _initialize_for_clone(self, url):
 
1086
        return self.initialize_on_transport(get_transport(url), _cloning=True)
 
1087
        
 
1088
    def initialize_on_transport(self, transport, _cloning=False):
 
1089
        """Format 5 dirs always have working tree, branch and repository.
 
1090
        
 
1091
        Except when they are being cloned.
 
1092
        """
 
1093
        from bzrlib.branch import BzrBranchFormat4
 
1094
        from bzrlib.repository import RepositoryFormat5
 
1095
        from bzrlib.workingtree import WorkingTreeFormat2
 
1096
        result = (super(BzrDirFormat5, self).initialize_on_transport(transport))
 
1097
        RepositoryFormat5().initialize(result, _internal=True)
 
1098
        if not _cloning:
 
1099
            BzrBranchFormat4().initialize(result)
 
1100
            WorkingTreeFormat2().initialize(result)
 
1101
        return result
 
1102
 
 
1103
    def _open(self, transport):
 
1104
        """See BzrDirFormat._open."""
 
1105
        return BzrDir5(transport, self)
 
1106
 
 
1107
    def __return_repository_format(self):
 
1108
        """Circular import protection."""
 
1109
        from bzrlib.repository import RepositoryFormat5
 
1110
        return RepositoryFormat5(self)
 
1111
    repository_format = property(__return_repository_format)
 
1112
 
 
1113
 
 
1114
class BzrDirFormat6(BzrDirFormat):
 
1115
    """Bzr control format 6.
 
1116
 
 
1117
    This format is a combined format for working tree, branch and repository.
 
1118
    It has:
 
1119
     - Format 2 working trees [always] 
 
1120
     - Format 4 branches [always] 
 
1121
     - Format 6 repositories [always]
 
1122
    """
 
1123
 
 
1124
    _lock_class = TransportLock
 
1125
 
 
1126
    def get_format_string(self):
 
1127
        """See BzrDirFormat.get_format_string()."""
 
1128
        return "Bazaar-NG branch, format 6\n"
 
1129
 
 
1130
    def get_format_description(self):
 
1131
        """See BzrDirFormat.get_format_description()."""
 
1132
        return "All-in-one format 6"
 
1133
 
 
1134
    def get_converter(self, format=None):
 
1135
        """See BzrDirFormat.get_converter()."""
 
1136
        # there is one and only one upgrade path here.
 
1137
        return ConvertBzrDir6ToMeta()
 
1138
        
 
1139
    def _initialize_for_clone(self, url):
 
1140
        return self.initialize_on_transport(get_transport(url), _cloning=True)
 
1141
 
 
1142
    def initialize_on_transport(self, transport, _cloning=False):
 
1143
        """Format 6 dirs always have working tree, branch and repository.
 
1144
        
 
1145
        Except when they are being cloned.
 
1146
        """
 
1147
        from bzrlib.branch import BzrBranchFormat4
 
1148
        from bzrlib.repository import RepositoryFormat6
 
1149
        from bzrlib.workingtree import WorkingTreeFormat2
 
1150
        result = super(BzrDirFormat6, self).initialize_on_transport(transport)
 
1151
        RepositoryFormat6().initialize(result, _internal=True)
 
1152
        if not _cloning:
 
1153
            BzrBranchFormat4().initialize(result)
 
1154
            try:
 
1155
                WorkingTreeFormat2().initialize(result)
 
1156
            except errors.NotLocalUrl:
 
1157
                # emulate pre-check behaviour for working tree and silently 
 
1158
                # fail.
 
1159
                pass
 
1160
        return result
 
1161
 
 
1162
    def _open(self, transport):
 
1163
        """See BzrDirFormat._open."""
 
1164
        return BzrDir6(transport, self)
 
1165
 
 
1166
    def __return_repository_format(self):
 
1167
        """Circular import protection."""
 
1168
        from bzrlib.repository import RepositoryFormat6
 
1169
        return RepositoryFormat6(self)
 
1170
    repository_format = property(__return_repository_format)
1495
1171
 
1496
1172
 
1497
1173
class BzrDirMetaFormat1(BzrDirFormat):
1499
1175
 
1500
1176
    This is the first format with split out working tree, branch and repository
1501
1177
    disk storage.
1502
 
 
1503
1178
    It has:
1504
 
 
1505
 
    - Format 3 working trees [optional]
1506
 
    - Format 5 branches [optional]
1507
 
    - Format 7 repositories [optional]
 
1179
     - Format 3 working trees [optional]
 
1180
     - Format 5 branches [optional]
 
1181
     - Format 7 repositories [optional]
1508
1182
    """
1509
1183
 
1510
 
    _lock_class = lockdir.LockDir
1511
 
 
1512
 
    fixed_components = False
1513
 
 
1514
 
    colocated_branches = True
1515
 
 
1516
 
    def __init__(self):
1517
 
        BzrDirFormat.__init__(self)
1518
 
        self._workingtree_format = None
1519
 
        self._branch_format = None
1520
 
        self._repository_format = None
1521
 
 
1522
 
    def __eq__(self, other):
1523
 
        if other.__class__ is not self.__class__:
1524
 
            return False
1525
 
        if other.repository_format != self.repository_format:
1526
 
            return False
1527
 
        if other.workingtree_format != self.workingtree_format:
1528
 
            return False
1529
 
        if other.features != self.features:
1530
 
            return False
1531
 
        return True
1532
 
 
1533
 
    def __ne__(self, other):
1534
 
        return not self == other
1535
 
 
1536
 
    def get_branch_format(self):
1537
 
        if self._branch_format is None:
1538
 
            from .branch import format_registry as branch_format_registry
1539
 
            self._branch_format = branch_format_registry.get_default()
1540
 
        return self._branch_format
1541
 
 
1542
 
    def set_branch_format(self, format):
1543
 
        self._branch_format = format
1544
 
 
1545
 
    def require_stacking(self, stack_on=None, possible_transports=None,
1546
 
                         _skip_repo=False):
1547
 
        """We have a request to stack, try to ensure the formats support it.
1548
 
 
1549
 
        :param stack_on: If supplied, it is the URL to a branch that we want to
1550
 
            stack on. Check to see if that format supports stacking before
1551
 
            forcing an upgrade.
1552
 
        """
1553
 
        # Stacking is desired. requested by the target, but does the place it
1554
 
        # points at support stacking? If it doesn't then we should
1555
 
        # not implicitly upgrade. We check this here.
1556
 
        new_repo_format = None
1557
 
        new_branch_format = None
1558
 
 
1559
 
        # a bit of state for get_target_branch so that we don't try to open it
1560
 
        # 2 times, for both repo *and* branch
1561
 
        target = [None, False, None]  # target_branch, checked, upgrade anyway
1562
 
 
1563
 
        def get_target_branch():
1564
 
            if target[1]:
1565
 
                # We've checked, don't check again
1566
 
                return target
1567
 
            if stack_on is None:
1568
 
                # No target format, that means we want to force upgrading
1569
 
                target[:] = [None, True, True]
1570
 
                return target
1571
 
            try:
1572
 
                target_dir = BzrDir.open(stack_on,
1573
 
                                         possible_transports=possible_transports)
1574
 
            except errors.NotBranchError:
1575
 
                # Nothing there, don't change formats
1576
 
                target[:] = [None, True, False]
1577
 
                return target
1578
 
            except errors.JailBreak:
1579
 
                # JailBreak, JFDI and upgrade anyway
1580
 
                target[:] = [None, True, True]
1581
 
                return target
1582
 
            try:
1583
 
                target_branch = target_dir.open_branch()
1584
 
            except errors.NotBranchError:
1585
 
                # No branch, don't upgrade formats
1586
 
                target[:] = [None, True, False]
1587
 
                return target
1588
 
            target[:] = [target_branch, True, False]
1589
 
            return target
1590
 
 
1591
 
        if (not _skip_repo
1592
 
                and not self.repository_format.supports_external_lookups):
1593
 
            # We need to upgrade the Repository.
1594
 
            target_branch, _, do_upgrade = get_target_branch()
1595
 
            if target_branch is None:
1596
 
                # We don't have a target branch, should we upgrade anyway?
1597
 
                if do_upgrade:
1598
 
                    # stack_on is inaccessible, JFDI.
1599
 
                    # TODO: bad monkey, hard-coded formats...
1600
 
                    if self.repository_format.rich_root_data:
1601
 
                        new_repo_format = knitpack_repo.RepositoryFormatKnitPack5RichRoot()
1602
 
                    else:
1603
 
                        new_repo_format = knitpack_repo.RepositoryFormatKnitPack5()
1604
 
            else:
1605
 
                # If the target already supports stacking, then we know the
1606
 
                # project is already able to use stacking, so auto-upgrade
1607
 
                # for them
1608
 
                new_repo_format = target_branch.repository._format
1609
 
                if not new_repo_format.supports_external_lookups:
1610
 
                    # target doesn't, source doesn't, so don't auto upgrade
1611
 
                    # repo
1612
 
                    new_repo_format = None
1613
 
            if new_repo_format is not None:
1614
 
                self.repository_format = new_repo_format
1615
 
                note(gettext('Source repository format does not support stacking,'
1616
 
                             ' using format:\n  %s'),
1617
 
                     new_repo_format.get_format_description())
1618
 
 
1619
 
        if not self.get_branch_format().supports_stacking():
1620
 
            # We just checked the repo, now lets check if we need to
1621
 
            # upgrade the branch format
1622
 
            target_branch, _, do_upgrade = get_target_branch()
1623
 
            if target_branch is None:
1624
 
                if do_upgrade:
1625
 
                    # TODO: bad monkey, hard-coded formats...
1626
 
                    from .branch import BzrBranchFormat7
1627
 
                    new_branch_format = BzrBranchFormat7()
1628
 
            else:
1629
 
                new_branch_format = target_branch._format
1630
 
                if not new_branch_format.supports_stacking():
1631
 
                    new_branch_format = None
1632
 
            if new_branch_format is not None:
1633
 
                # Does support stacking, use its format.
1634
 
                self.set_branch_format(new_branch_format)
1635
 
                note(gettext('Source branch format does not support stacking,'
1636
 
                             ' using format:\n  %s'),
1637
 
                     new_branch_format.get_format_description())
 
1184
    _lock_class = LockDir
1638
1185
 
1639
1186
    def get_converter(self, format=None):
1640
1187
        """See BzrDirFormat.get_converter()."""
1641
1188
        if format is None:
1642
1189
            format = BzrDirFormat.get_default_format()
1643
 
        if (isinstance(self, BzrDirMetaFormat1)
1644
 
                and isinstance(format, BzrDirMetaFormat1Colo)):
1645
 
            return ConvertMetaToColo(format)
1646
 
        if (isinstance(self, BzrDirMetaFormat1Colo)
1647
 
                and isinstance(format, BzrDirMetaFormat1)):
1648
 
            return ConvertMetaToColo(format)
1649
1190
        if not isinstance(self, format.__class__):
1650
1191
            # converting away from metadir is not implemented
1651
1192
            raise NotImplementedError(self.get_converter)
1652
1193
        return ConvertMetaToMeta(format)
1653
1194
 
1654
 
    @classmethod
1655
 
    def get_format_string(cls):
 
1195
    def get_format_string(self):
1656
1196
        """See BzrDirFormat.get_format_string()."""
1657
 
        return b"Bazaar-NG meta directory, format 1\n"
 
1197
        return "Bazaar-NG meta directory, format 1\n"
1658
1198
 
1659
1199
    def get_format_description(self):
1660
1200
        """See BzrDirFormat.get_format_description()."""
1662
1202
 
1663
1203
    def _open(self, transport):
1664
1204
        """See BzrDirFormat._open."""
1665
 
        # Create a new format instance because otherwise initialisation of new
1666
 
        # metadirs share the global default format object leading to alias
1667
 
        # problems.
1668
 
        format = BzrDirMetaFormat1()
1669
 
        self._supply_sub_formats_to(format)
1670
 
        return BzrDirMeta1(transport, format)
 
1205
        return BzrDirMeta1(transport, self)
1671
1206
 
1672
1207
    def __return_repository_format(self):
1673
1208
        """Circular import protection."""
1674
 
        if self._repository_format:
 
1209
        if getattr(self, '_repository_format', None):
1675
1210
            return self._repository_format
1676
 
        from .repository import format_registry
1677
 
        return format_registry.get_default()
 
1211
        from bzrlib.repository import RepositoryFormat
 
1212
        return RepositoryFormat.get_default_format()
1678
1213
 
1679
 
    def _set_repository_format(self, value):
1680
 
        """Allow changing the repository format for metadir formats."""
 
1214
    def __set_repository_format(self, value):
 
1215
        """Allow changint the repository format for metadir formats."""
1681
1216
        self._repository_format = value
1682
1217
 
1683
 
    repository_format = property(__return_repository_format,
1684
 
                                 _set_repository_format)
1685
 
 
1686
 
    def _supply_sub_formats_to(self, other_format):
1687
 
        """Give other_format the same values for sub formats as this has.
1688
 
 
1689
 
        This method is expected to be used when parameterising a
1690
 
        RemoteBzrDirFormat instance with the parameters from a
1691
 
        BzrDirMetaFormat1 instance.
1692
 
 
1693
 
        :param other_format: other_format is a format which should be
1694
 
            compatible with whatever sub formats are supported by self.
1695
 
        :return: None.
1696
 
        """
1697
 
        super(BzrDirMetaFormat1, self)._supply_sub_formats_to(other_format)
1698
 
        if getattr(self, '_repository_format', None) is not None:
1699
 
            other_format.repository_format = self.repository_format
1700
 
        if self._branch_format is not None:
1701
 
            other_format._branch_format = self._branch_format
1702
 
        if self._workingtree_format is not None:
1703
 
            other_format.workingtree_format = self.workingtree_format
1704
 
 
1705
 
    def __get_workingtree_format(self):
1706
 
        if self._workingtree_format is None:
1707
 
            from .workingtree import (
1708
 
                format_registry as wt_format_registry,
1709
 
                )
1710
 
            self._workingtree_format = wt_format_registry.get_default()
1711
 
        return self._workingtree_format
1712
 
 
1713
 
    def __set_workingtree_format(self, wt_format):
1714
 
        self._workingtree_format = wt_format
1715
 
 
1716
 
    def __repr__(self):
1717
 
        return "<%r>" % (self.__class__.__name__,)
1718
 
 
1719
 
    workingtree_format = property(__get_workingtree_format,
1720
 
                                  __set_workingtree_format)
1721
 
 
1722
 
 
1723
 
class BzrDirMetaFormat1Colo(BzrDirMetaFormat1):
1724
 
    """BzrDirMeta1 format with support for colocated branches."""
1725
 
 
1726
 
    colocated_branches = True
1727
 
 
1728
 
    @classmethod
1729
 
    def get_format_string(cls):
1730
 
        """See BzrDirFormat.get_format_string()."""
1731
 
        return b"Bazaar meta directory, format 1 (with colocated branches)\n"
1732
 
 
1733
 
    def get_format_description(self):
1734
 
        """See BzrDirFormat.get_format_description()."""
1735
 
        return "Meta directory format 1 with support for colocated branches"
1736
 
 
1737
 
    def _open(self, transport):
1738
 
        """See BzrDirFormat._open."""
1739
 
        # Create a new format instance because otherwise initialisation of new
1740
 
        # metadirs share the global default format object leading to alias
1741
 
        # problems.
1742
 
        format = BzrDirMetaFormat1Colo()
1743
 
        self._supply_sub_formats_to(format)
1744
 
        return BzrDirMeta1(transport, format)
1745
 
 
1746
 
 
1747
 
class ConvertMetaToMeta(controldir.Converter):
 
1218
    repository_format = property(__return_repository_format, __set_repository_format)
 
1219
 
 
1220
 
 
1221
BzrDirFormat.register_format(BzrDirFormat4())
 
1222
BzrDirFormat.register_format(BzrDirFormat5())
 
1223
BzrDirFormat.register_format(BzrDirFormat6())
 
1224
__default_format = BzrDirMetaFormat1()
 
1225
BzrDirFormat.register_format(__default_format)
 
1226
BzrDirFormat.set_default_format(__default_format)
 
1227
 
 
1228
 
 
1229
class BzrDirTestProviderAdapter(object):
 
1230
    """A tool to generate a suite testing multiple bzrdir formats at once.
 
1231
 
 
1232
    This is done by copying the test once for each transport and injecting
 
1233
    the transport_server, transport_readonly_server, and bzrdir_format
 
1234
    classes into each copy. Each copy is also given a new id() to make it
 
1235
    easy to identify.
 
1236
    """
 
1237
 
 
1238
    def __init__(self, transport_server, transport_readonly_server, formats):
 
1239
        self._transport_server = transport_server
 
1240
        self._transport_readonly_server = transport_readonly_server
 
1241
        self._formats = formats
 
1242
    
 
1243
    def adapt(self, test):
 
1244
        result = TestSuite()
 
1245
        for format in self._formats:
 
1246
            new_test = deepcopy(test)
 
1247
            new_test.transport_server = self._transport_server
 
1248
            new_test.transport_readonly_server = self._transport_readonly_server
 
1249
            new_test.bzrdir_format = format
 
1250
            def make_new_test_id():
 
1251
                new_id = "%s(%s)" % (new_test.id(), format.__class__.__name__)
 
1252
                return lambda: new_id
 
1253
            new_test.id = make_new_test_id()
 
1254
            result.addTest(new_test)
 
1255
        return result
 
1256
 
 
1257
 
 
1258
class ScratchDir(BzrDir6):
 
1259
    """Special test class: a bzrdir that cleans up itself..
 
1260
 
 
1261
    >>> d = ScratchDir()
 
1262
    >>> base = d.transport.base
 
1263
    >>> isdir(base)
 
1264
    True
 
1265
    >>> b.transport.__del__()
 
1266
    >>> isdir(base)
 
1267
    False
 
1268
    """
 
1269
 
 
1270
    def __init__(self, files=[], dirs=[], transport=None):
 
1271
        """Make a test branch.
 
1272
 
 
1273
        This creates a temporary directory and runs init-tree in it.
 
1274
 
 
1275
        If any files are listed, they are created in the working copy.
 
1276
        """
 
1277
        if transport is None:
 
1278
            transport = bzrlib.transport.local.ScratchTransport()
 
1279
            # local import for scope restriction
 
1280
            BzrDirFormat6().initialize(transport.base)
 
1281
            super(ScratchDir, self).__init__(transport, BzrDirFormat6())
 
1282
            self.create_repository()
 
1283
            self.create_branch()
 
1284
            self.create_workingtree()
 
1285
        else:
 
1286
            super(ScratchDir, self).__init__(transport, BzrDirFormat6())
 
1287
 
 
1288
        # BzrBranch creates a clone to .bzr and then forgets about the
 
1289
        # original transport. A ScratchTransport() deletes itself and
 
1290
        # everything underneath it when it goes away, so we need to
 
1291
        # grab a local copy to prevent that from happening
 
1292
        self._transport = transport
 
1293
 
 
1294
        for d in dirs:
 
1295
            self._transport.mkdir(d)
 
1296
            
 
1297
        for f in files:
 
1298
            self._transport.put(f, 'content of %s' % f)
 
1299
 
 
1300
    def clone(self):
 
1301
        """
 
1302
        >>> orig = ScratchDir(files=["file1", "file2"])
 
1303
        >>> os.listdir(orig.base)
 
1304
        [u'.bzr', u'file1', u'file2']
 
1305
        >>> clone = orig.clone()
 
1306
        >>> if os.name != 'nt':
 
1307
        ...   os.path.samefile(orig.base, clone.base)
 
1308
        ... else:
 
1309
        ...   orig.base == clone.base
 
1310
        ...
 
1311
        False
 
1312
        >>> os.listdir(clone.base)
 
1313
        [u'.bzr', u'file1', u'file2']
 
1314
        """
 
1315
        from shutil import copytree
 
1316
        from bzrlib.osutils import mkdtemp
 
1317
        base = mkdtemp()
 
1318
        os.rmdir(base)
 
1319
        copytree(self.base, base, symlinks=True)
 
1320
        return ScratchDir(
 
1321
            transport=bzrlib.transport.local.ScratchTransport(base))
 
1322
 
 
1323
 
 
1324
class Converter(object):
 
1325
    """Converts a disk format object from one format to another."""
 
1326
 
 
1327
    def convert(self, to_convert, pb):
 
1328
        """Perform the conversion of to_convert, giving feedback via pb.
 
1329
 
 
1330
        :param to_convert: The disk object to convert.
 
1331
        :param pb: a progress bar to use for progress information.
 
1332
        """
 
1333
 
 
1334
    def step(self, message):
 
1335
        """Update the pb by a step."""
 
1336
        self.count +=1
 
1337
        self.pb.update(message, self.count, self.total)
 
1338
 
 
1339
 
 
1340
class ConvertBzrDir4To5(Converter):
 
1341
    """Converts format 4 bzr dirs to format 5."""
 
1342
 
 
1343
    def __init__(self):
 
1344
        super(ConvertBzrDir4To5, self).__init__()
 
1345
        self.converted_revs = set()
 
1346
        self.absent_revisions = set()
 
1347
        self.text_count = 0
 
1348
        self.revisions = {}
 
1349
        
 
1350
    def convert(self, to_convert, pb):
 
1351
        """See Converter.convert()."""
 
1352
        self.bzrdir = to_convert
 
1353
        self.pb = pb
 
1354
        self.pb.note('starting upgrade from format 4 to 5')
 
1355
        if isinstance(self.bzrdir.transport, LocalTransport):
 
1356
            self.bzrdir.get_workingtree_transport(None).delete('stat-cache')
 
1357
        self._convert_to_weaves()
 
1358
        return BzrDir.open(self.bzrdir.root_transport.base)
 
1359
 
 
1360
    def _convert_to_weaves(self):
 
1361
        self.pb.note('note: upgrade may be faster if all store files are ungzipped first')
 
1362
        try:
 
1363
            # TODO permissions
 
1364
            stat = self.bzrdir.transport.stat('weaves')
 
1365
            if not S_ISDIR(stat.st_mode):
 
1366
                self.bzrdir.transport.delete('weaves')
 
1367
                self.bzrdir.transport.mkdir('weaves')
 
1368
        except errors.NoSuchFile:
 
1369
            self.bzrdir.transport.mkdir('weaves')
 
1370
        # deliberately not a WeaveFile as we want to build it up slowly.
 
1371
        self.inv_weave = Weave('inventory')
 
1372
        # holds in-memory weaves for all files
 
1373
        self.text_weaves = {}
 
1374
        self.bzrdir.transport.delete('branch-format')
 
1375
        self.branch = self.bzrdir.open_branch()
 
1376
        self._convert_working_inv()
 
1377
        rev_history = self.branch.revision_history()
 
1378
        # to_read is a stack holding the revisions we still need to process;
 
1379
        # appending to it adds new highest-priority revisions
 
1380
        self.known_revisions = set(rev_history)
 
1381
        self.to_read = rev_history[-1:]
 
1382
        while self.to_read:
 
1383
            rev_id = self.to_read.pop()
 
1384
            if (rev_id not in self.revisions
 
1385
                and rev_id not in self.absent_revisions):
 
1386
                self._load_one_rev(rev_id)
 
1387
        self.pb.clear()
 
1388
        to_import = self._make_order()
 
1389
        for i, rev_id in enumerate(to_import):
 
1390
            self.pb.update('converting revision', i, len(to_import))
 
1391
            self._convert_one_rev(rev_id)
 
1392
        self.pb.clear()
 
1393
        self._write_all_weaves()
 
1394
        self._write_all_revs()
 
1395
        self.pb.note('upgraded to weaves:')
 
1396
        self.pb.note('  %6d revisions and inventories', len(self.revisions))
 
1397
        self.pb.note('  %6d revisions not present', len(self.absent_revisions))
 
1398
        self.pb.note('  %6d texts', self.text_count)
 
1399
        self._cleanup_spare_files_after_format4()
 
1400
        self.branch.control_files.put_utf8('branch-format', BzrDirFormat5().get_format_string())
 
1401
 
 
1402
    def _cleanup_spare_files_after_format4(self):
 
1403
        # FIXME working tree upgrade foo.
 
1404
        for n in 'merged-patches', 'pending-merged-patches':
 
1405
            try:
 
1406
                ## assert os.path.getsize(p) == 0
 
1407
                self.bzrdir.transport.delete(n)
 
1408
            except errors.NoSuchFile:
 
1409
                pass
 
1410
        self.bzrdir.transport.delete_tree('inventory-store')
 
1411
        self.bzrdir.transport.delete_tree('text-store')
 
1412
 
 
1413
    def _convert_working_inv(self):
 
1414
        inv = serializer_v4.read_inventory(self.branch.control_files.get('inventory'))
 
1415
        new_inv_xml = serializer_v5.write_inventory_to_string(inv)
 
1416
        # FIXME inventory is a working tree change.
 
1417
        self.branch.control_files.put('inventory', new_inv_xml)
 
1418
 
 
1419
    def _write_all_weaves(self):
 
1420
        controlweaves = WeaveStore(self.bzrdir.transport, prefixed=False)
 
1421
        weave_transport = self.bzrdir.transport.clone('weaves')
 
1422
        weaves = WeaveStore(weave_transport, prefixed=False)
 
1423
        transaction = WriteTransaction()
 
1424
 
 
1425
        try:
 
1426
            i = 0
 
1427
            for file_id, file_weave in self.text_weaves.items():
 
1428
                self.pb.update('writing weave', i, len(self.text_weaves))
 
1429
                weaves._put_weave(file_id, file_weave, transaction)
 
1430
                i += 1
 
1431
            self.pb.update('inventory', 0, 1)
 
1432
            controlweaves._put_weave('inventory', self.inv_weave, transaction)
 
1433
            self.pb.update('inventory', 1, 1)
 
1434
        finally:
 
1435
            self.pb.clear()
 
1436
 
 
1437
    def _write_all_revs(self):
 
1438
        """Write all revisions out in new form."""
 
1439
        self.bzrdir.transport.delete_tree('revision-store')
 
1440
        self.bzrdir.transport.mkdir('revision-store')
 
1441
        revision_transport = self.bzrdir.transport.clone('revision-store')
 
1442
        # TODO permissions
 
1443
        _revision_store = TextRevisionStore(TextStore(revision_transport,
 
1444
                                                      prefixed=False,
 
1445
                                                      compressed=True))
 
1446
        try:
 
1447
            transaction = bzrlib.transactions.WriteTransaction()
 
1448
            for i, rev_id in enumerate(self.converted_revs):
 
1449
                self.pb.update('write revision', i, len(self.converted_revs))
 
1450
                _revision_store.add_revision(self.revisions[rev_id], transaction)
 
1451
        finally:
 
1452
            self.pb.clear()
 
1453
            
 
1454
    def _load_one_rev(self, rev_id):
 
1455
        """Load a revision object into memory.
 
1456
 
 
1457
        Any parents not either loaded or abandoned get queued to be
 
1458
        loaded."""
 
1459
        self.pb.update('loading revision',
 
1460
                       len(self.revisions),
 
1461
                       len(self.known_revisions))
 
1462
        if not self.branch.repository.has_revision(rev_id):
 
1463
            self.pb.clear()
 
1464
            self.pb.note('revision {%s} not present in branch; '
 
1465
                         'will be converted as a ghost',
 
1466
                         rev_id)
 
1467
            self.absent_revisions.add(rev_id)
 
1468
        else:
 
1469
            rev = self.branch.repository._revision_store.get_revision(rev_id,
 
1470
                self.branch.repository.get_transaction())
 
1471
            for parent_id in rev.parent_ids:
 
1472
                self.known_revisions.add(parent_id)
 
1473
                self.to_read.append(parent_id)
 
1474
            self.revisions[rev_id] = rev
 
1475
 
 
1476
    def _load_old_inventory(self, rev_id):
 
1477
        assert rev_id not in self.converted_revs
 
1478
        old_inv_xml = self.branch.repository.inventory_store.get(rev_id).read()
 
1479
        inv = serializer_v4.read_inventory_from_string(old_inv_xml)
 
1480
        rev = self.revisions[rev_id]
 
1481
        if rev.inventory_sha1:
 
1482
            assert rev.inventory_sha1 == sha_string(old_inv_xml), \
 
1483
                'inventory sha mismatch for {%s}' % rev_id
 
1484
        return inv
 
1485
 
 
1486
    def _load_updated_inventory(self, rev_id):
 
1487
        assert rev_id in self.converted_revs
 
1488
        inv_xml = self.inv_weave.get_text(rev_id)
 
1489
        inv = serializer_v5.read_inventory_from_string(inv_xml)
 
1490
        return inv
 
1491
 
 
1492
    def _convert_one_rev(self, rev_id):
 
1493
        """Convert revision and all referenced objects to new format."""
 
1494
        rev = self.revisions[rev_id]
 
1495
        inv = self._load_old_inventory(rev_id)
 
1496
        present_parents = [p for p in rev.parent_ids
 
1497
                           if p not in self.absent_revisions]
 
1498
        self._convert_revision_contents(rev, inv, present_parents)
 
1499
        self._store_new_weave(rev, inv, present_parents)
 
1500
        self.converted_revs.add(rev_id)
 
1501
 
 
1502
    def _store_new_weave(self, rev, inv, present_parents):
 
1503
        # the XML is now updated with text versions
 
1504
        if __debug__:
 
1505
            for file_id in inv:
 
1506
                ie = inv[file_id]
 
1507
                if ie.kind == 'root_directory':
 
1508
                    continue
 
1509
                assert hasattr(ie, 'revision'), \
 
1510
                    'no revision on {%s} in {%s}' % \
 
1511
                    (file_id, rev.revision_id)
 
1512
        new_inv_xml = serializer_v5.write_inventory_to_string(inv)
 
1513
        new_inv_sha1 = sha_string(new_inv_xml)
 
1514
        self.inv_weave.add_lines(rev.revision_id, 
 
1515
                                 present_parents,
 
1516
                                 new_inv_xml.splitlines(True))
 
1517
        rev.inventory_sha1 = new_inv_sha1
 
1518
 
 
1519
    def _convert_revision_contents(self, rev, inv, present_parents):
 
1520
        """Convert all the files within a revision.
 
1521
 
 
1522
        Also upgrade the inventory to refer to the text revision ids."""
 
1523
        rev_id = rev.revision_id
 
1524
        mutter('converting texts of revision {%s}',
 
1525
               rev_id)
 
1526
        parent_invs = map(self._load_updated_inventory, present_parents)
 
1527
        for file_id in inv:
 
1528
            ie = inv[file_id]
 
1529
            self._convert_file_version(rev, ie, parent_invs)
 
1530
 
 
1531
    def _convert_file_version(self, rev, ie, parent_invs):
 
1532
        """Convert one version of one file.
 
1533
 
 
1534
        The file needs to be added into the weave if it is a merge
 
1535
        of >=2 parents or if it's changed from its parent.
 
1536
        """
 
1537
        if ie.kind == 'root_directory':
 
1538
            return
 
1539
        file_id = ie.file_id
 
1540
        rev_id = rev.revision_id
 
1541
        w = self.text_weaves.get(file_id)
 
1542
        if w is None:
 
1543
            w = Weave(file_id)
 
1544
            self.text_weaves[file_id] = w
 
1545
        text_changed = False
 
1546
        previous_entries = ie.find_previous_heads(parent_invs,
 
1547
                                                  None,
 
1548
                                                  None,
 
1549
                                                  entry_vf=w)
 
1550
        for old_revision in previous_entries:
 
1551
                # if this fails, its a ghost ?
 
1552
                assert old_revision in self.converted_revs 
 
1553
        self.snapshot_ie(previous_entries, ie, w, rev_id)
 
1554
        del ie.text_id
 
1555
        assert getattr(ie, 'revision', None) is not None
 
1556
 
 
1557
    def snapshot_ie(self, previous_revisions, ie, w, rev_id):
 
1558
        # TODO: convert this logic, which is ~= snapshot to
 
1559
        # a call to:. This needs the path figured out. rather than a work_tree
 
1560
        # a v4 revision_tree can be given, or something that looks enough like
 
1561
        # one to give the file content to the entry if it needs it.
 
1562
        # and we need something that looks like a weave store for snapshot to 
 
1563
        # save against.
 
1564
        #ie.snapshot(rev, PATH, previous_revisions, REVISION_TREE, InMemoryWeaveStore(self.text_weaves))
 
1565
        if len(previous_revisions) == 1:
 
1566
            previous_ie = previous_revisions.values()[0]
 
1567
            if ie._unchanged(previous_ie):
 
1568
                ie.revision = previous_ie.revision
 
1569
                return
 
1570
        if ie.has_text():
 
1571
            text = self.branch.repository.text_store.get(ie.text_id)
 
1572
            file_lines = text.readlines()
 
1573
            assert sha_strings(file_lines) == ie.text_sha1
 
1574
            assert sum(map(len, file_lines)) == ie.text_size
 
1575
            w.add_lines(rev_id, previous_revisions, file_lines)
 
1576
            self.text_count += 1
 
1577
        else:
 
1578
            w.add_lines(rev_id, previous_revisions, [])
 
1579
        ie.revision = rev_id
 
1580
 
 
1581
    def _make_order(self):
 
1582
        """Return a suitable order for importing revisions.
 
1583
 
 
1584
        The order must be such that an revision is imported after all
 
1585
        its (present) parents.
 
1586
        """
 
1587
        todo = set(self.revisions.keys())
 
1588
        done = self.absent_revisions.copy()
 
1589
        order = []
 
1590
        while todo:
 
1591
            # scan through looking for a revision whose parents
 
1592
            # are all done
 
1593
            for rev_id in sorted(list(todo)):
 
1594
                rev = self.revisions[rev_id]
 
1595
                parent_ids = set(rev.parent_ids)
 
1596
                if parent_ids.issubset(done):
 
1597
                    # can take this one now
 
1598
                    order.append(rev_id)
 
1599
                    todo.remove(rev_id)
 
1600
                    done.add(rev_id)
 
1601
        return order
 
1602
 
 
1603
 
 
1604
class ConvertBzrDir5To6(Converter):
 
1605
    """Converts format 5 bzr dirs to format 6."""
 
1606
 
 
1607
    def convert(self, to_convert, pb):
 
1608
        """See Converter.convert()."""
 
1609
        self.bzrdir = to_convert
 
1610
        self.pb = pb
 
1611
        self.pb.note('starting upgrade from format 5 to 6')
 
1612
        self._convert_to_prefixed()
 
1613
        return BzrDir.open(self.bzrdir.root_transport.base)
 
1614
 
 
1615
    def _convert_to_prefixed(self):
 
1616
        from bzrlib.store import TransportStore
 
1617
        self.bzrdir.transport.delete('branch-format')
 
1618
        for store_name in ["weaves", "revision-store"]:
 
1619
            self.pb.note("adding prefixes to %s" % store_name)
 
1620
            store_transport = self.bzrdir.transport.clone(store_name)
 
1621
            store = TransportStore(store_transport, prefixed=True)
 
1622
            for urlfilename in store_transport.list_dir('.'):
 
1623
                filename = urlunescape(urlfilename)
 
1624
                if (filename.endswith(".weave") or
 
1625
                    filename.endswith(".gz") or
 
1626
                    filename.endswith(".sig")):
 
1627
                    file_id = os.path.splitext(filename)[0]
 
1628
                else:
 
1629
                    file_id = filename
 
1630
                prefix_dir = store.hash_prefix(file_id)
 
1631
                # FIXME keep track of the dirs made RBC 20060121
 
1632
                try:
 
1633
                    store_transport.move(filename, prefix_dir + '/' + filename)
 
1634
                except errors.NoSuchFile: # catches missing dirs strangely enough
 
1635
                    store_transport.mkdir(prefix_dir)
 
1636
                    store_transport.move(filename, prefix_dir + '/' + filename)
 
1637
        self.bzrdir._control_files.put_utf8('branch-format', BzrDirFormat6().get_format_string())
 
1638
 
 
1639
 
 
1640
class ConvertBzrDir6ToMeta(Converter):
 
1641
    """Converts format 6 bzr dirs to metadirs."""
 
1642
 
 
1643
    def convert(self, to_convert, pb):
 
1644
        """See Converter.convert()."""
 
1645
        self.bzrdir = to_convert
 
1646
        self.pb = pb
 
1647
        self.count = 0
 
1648
        self.total = 20 # the steps we know about
 
1649
        self.garbage_inventories = []
 
1650
 
 
1651
        self.pb.note('starting upgrade from format 6 to metadir')
 
1652
        self.bzrdir._control_files.put_utf8('branch-format', "Converting to format 6")
 
1653
        # its faster to move specific files around than to open and use the apis...
 
1654
        # first off, nuke ancestry.weave, it was never used.
 
1655
        try:
 
1656
            self.step('Removing ancestry.weave')
 
1657
            self.bzrdir.transport.delete('ancestry.weave')
 
1658
        except errors.NoSuchFile:
 
1659
            pass
 
1660
        # find out whats there
 
1661
        self.step('Finding branch files')
 
1662
        last_revision = self.bzrdir.open_branch().last_revision()
 
1663
        bzrcontents = self.bzrdir.transport.list_dir('.')
 
1664
        for name in bzrcontents:
 
1665
            if name.startswith('basis-inventory.'):
 
1666
                self.garbage_inventories.append(name)
 
1667
        # create new directories for repository, working tree and branch
 
1668
        self.dir_mode = self.bzrdir._control_files._dir_mode
 
1669
        self.file_mode = self.bzrdir._control_files._file_mode
 
1670
        repository_names = [('inventory.weave', True),
 
1671
                            ('revision-store', True),
 
1672
                            ('weaves', True)]
 
1673
        self.step('Upgrading repository  ')
 
1674
        self.bzrdir.transport.mkdir('repository', mode=self.dir_mode)
 
1675
        self.make_lock('repository')
 
1676
        # we hard code the formats here because we are converting into
 
1677
        # the meta format. The meta format upgrader can take this to a 
 
1678
        # future format within each component.
 
1679
        self.put_format('repository', bzrlib.repository.RepositoryFormat7())
 
1680
        for entry in repository_names:
 
1681
            self.move_entry('repository', entry)
 
1682
 
 
1683
        self.step('Upgrading branch      ')
 
1684
        self.bzrdir.transport.mkdir('branch', mode=self.dir_mode)
 
1685
        self.make_lock('branch')
 
1686
        self.put_format('branch', bzrlib.branch.BzrBranchFormat5())
 
1687
        branch_files = [('revision-history', True),
 
1688
                        ('branch-name', True),
 
1689
                        ('parent', False)]
 
1690
        for entry in branch_files:
 
1691
            self.move_entry('branch', entry)
 
1692
 
 
1693
        self.step('Upgrading working tree')
 
1694
        self.bzrdir.transport.mkdir('checkout', mode=self.dir_mode)
 
1695
        self.make_lock('checkout')
 
1696
        self.put_format('checkout', bzrlib.workingtree.WorkingTreeFormat3())
 
1697
        self.bzrdir.transport.delete_multi(self.garbage_inventories, self.pb)
 
1698
        checkout_files = [('pending-merges', True),
 
1699
                          ('inventory', True),
 
1700
                          ('stat-cache', False)]
 
1701
        for entry in checkout_files:
 
1702
            self.move_entry('checkout', entry)
 
1703
        if last_revision is not None:
 
1704
            self.bzrdir._control_files.put_utf8('checkout/last-revision',
 
1705
                                                last_revision)
 
1706
        self.bzrdir._control_files.put_utf8('branch-format', BzrDirMetaFormat1().get_format_string())
 
1707
        return BzrDir.open(self.bzrdir.root_transport.base)
 
1708
 
 
1709
    def make_lock(self, name):
 
1710
        """Make a lock for the new control dir name."""
 
1711
        self.step('Make %s lock' % name)
 
1712
        ld = LockDir(self.bzrdir.transport, 
 
1713
                     '%s/lock' % name,
 
1714
                     file_modebits=self.file_mode,
 
1715
                     dir_modebits=self.dir_mode)
 
1716
        ld.create()
 
1717
 
 
1718
    def move_entry(self, new_dir, entry):
 
1719
        """Move then entry name into new_dir."""
 
1720
        name = entry[0]
 
1721
        mandatory = entry[1]
 
1722
        self.step('Moving %s' % name)
 
1723
        try:
 
1724
            self.bzrdir.transport.move(name, '%s/%s' % (new_dir, name))
 
1725
        except errors.NoSuchFile:
 
1726
            if mandatory:
 
1727
                raise
 
1728
 
 
1729
    def put_format(self, dirname, format):
 
1730
        self.bzrdir._control_files.put_utf8('%s/format' % dirname, format.get_format_string())
 
1731
 
 
1732
 
 
1733
class ConvertMetaToMeta(Converter):
1748
1734
    """Converts the components of metadirs."""
1749
1735
 
1750
1736
    def __init__(self, target_format):
1756
1742
 
1757
1743
    def convert(self, to_convert, pb):
1758
1744
        """See Converter.convert()."""
1759
 
        self.controldir = to_convert
1760
 
        with ui.ui_factory.nested_progress_bar() as self.pb:
1761
 
            self.count = 0
1762
 
            self.total = 1
1763
 
            self.step('checking repository format')
1764
 
            try:
1765
 
                repo = self.controldir.open_repository()
1766
 
            except errors.NoRepositoryPresent:
1767
 
                pass
1768
 
            else:
1769
 
                repo_fmt = self.target_format.repository_format
1770
 
                if not isinstance(repo._format, repo_fmt.__class__):
1771
 
                    from ..repository import CopyConverter
1772
 
                    ui.ui_factory.note(gettext('starting repository conversion'))
1773
 
                    if not repo_fmt.supports_overriding_transport:
1774
 
                        raise AssertionError(
1775
 
                            "Repository in metadir does not support "
1776
 
                            "overriding transport")
1777
 
                    converter = CopyConverter(self.target_format.repository_format)
1778
 
                    converter.convert(repo, pb)
1779
 
            for branch in self.controldir.list_branches():
1780
 
                # TODO: conversions of Branch and Tree should be done by
1781
 
                # InterXFormat lookups/some sort of registry.
1782
 
                # Avoid circular imports
1783
 
                old = branch._format.__class__
1784
 
                new = self.target_format.get_branch_format().__class__
1785
 
                while old != new:
1786
 
                    if (old == fullhistorybranch.BzrBranchFormat5
1787
 
                        and new in (_mod_bzrbranch.BzrBranchFormat6,
1788
 
                                    _mod_bzrbranch.BzrBranchFormat7,
1789
 
                                    _mod_bzrbranch.BzrBranchFormat8)):
1790
 
                        branch_converter = _mod_bzrbranch.Converter5to6()
1791
 
                    elif (old == _mod_bzrbranch.BzrBranchFormat6
1792
 
                          and new in (_mod_bzrbranch.BzrBranchFormat7,
1793
 
                                      _mod_bzrbranch.BzrBranchFormat8)):
1794
 
                        branch_converter = _mod_bzrbranch.Converter6to7()
1795
 
                    elif (old == _mod_bzrbranch.BzrBranchFormat7
1796
 
                          and new is _mod_bzrbranch.BzrBranchFormat8):
1797
 
                        branch_converter = _mod_bzrbranch.Converter7to8()
1798
 
                    else:
1799
 
                        raise errors.BadConversionTarget("No converter", new,
1800
 
                                                         branch._format)
1801
 
                    branch_converter.convert(branch)
1802
 
                    branch = self.controldir.open_branch()
1803
 
                    old = branch._format.__class__
1804
 
            try:
1805
 
                tree = self.controldir.open_workingtree(recommend_upgrade=False)
1806
 
            except (errors.NoWorkingTree, errors.NotLocalUrl):
1807
 
                pass
1808
 
            else:
1809
 
                # TODO: conversions of Branch and Tree should be done by
1810
 
                # InterXFormat lookups
1811
 
                if (isinstance(tree, workingtree_3.WorkingTree3)
1812
 
                    and not isinstance(tree, workingtree_4.DirStateWorkingTree)
1813
 
                    and isinstance(self.target_format.workingtree_format,
1814
 
                                   workingtree_4.DirStateWorkingTreeFormat)):
1815
 
                    workingtree_4.Converter3to4().convert(tree)
1816
 
                if (isinstance(tree, workingtree_4.DirStateWorkingTree)
1817
 
                    and not isinstance(tree, workingtree_4.WorkingTree5)
1818
 
                    and isinstance(self.target_format.workingtree_format,
1819
 
                                   workingtree_4.WorkingTreeFormat5)):
1820
 
                    workingtree_4.Converter4to5().convert(tree)
1821
 
                if (isinstance(tree, workingtree_4.DirStateWorkingTree)
1822
 
                    and not isinstance(tree, workingtree_4.WorkingTree6)
1823
 
                    and isinstance(self.target_format.workingtree_format,
1824
 
                                   workingtree_4.WorkingTreeFormat6)):
1825
 
                    workingtree_4.Converter4or5to6().convert(tree)
 
1745
        self.bzrdir = to_convert
 
1746
        self.pb = pb
 
1747
        self.count = 0
 
1748
        self.total = 1
 
1749
        self.step('checking repository format')
 
1750
        try:
 
1751
            repo = self.bzrdir.open_repository()
 
1752
        except errors.NoRepositoryPresent:
 
1753
            pass
 
1754
        else:
 
1755
            if not isinstance(repo._format, self.target_format.repository_format.__class__):
 
1756
                from bzrlib.repository import CopyConverter
 
1757
                self.pb.note('starting repository conversion')
 
1758
                converter = CopyConverter(self.target_format.repository_format)
 
1759
                converter.convert(repo, pb)
1826
1760
        return to_convert
1827
 
 
1828
 
 
1829
 
class ConvertMetaToColo(controldir.Converter):
1830
 
    """Add colocated branch support."""
1831
 
 
1832
 
    def __init__(self, target_format):
1833
 
        """Create a converter.that upgrades a metadir to the colo format.
1834
 
 
1835
 
        :param target_format: The final metadir format that is desired.
1836
 
        """
1837
 
        self.target_format = target_format
1838
 
 
1839
 
    def convert(self, to_convert, pb):
1840
 
        """See Converter.convert()."""
1841
 
        to_convert.transport.put_bytes('branch-format',
1842
 
                                       self.target_format.as_string())
1843
 
        return BzrDir.open_from_transport(to_convert.root_transport)
1844
 
 
1845
 
 
1846
 
class ConvertMetaToColo(controldir.Converter):
1847
 
    """Convert a 'development-colo' bzrdir to a '2a' bzrdir."""
1848
 
 
1849
 
    def __init__(self, target_format):
1850
 
        """Create a converter that converts a 'development-colo' metadir
1851
 
        to a '2a' metadir.
1852
 
 
1853
 
        :param target_format: The final metadir format that is desired.
1854
 
        """
1855
 
        self.target_format = target_format
1856
 
 
1857
 
    def convert(self, to_convert, pb):
1858
 
        """See Converter.convert()."""
1859
 
        to_convert.transport.put_bytes('branch-format',
1860
 
                                       self.target_format.as_string())
1861
 
        return BzrDir.open_from_transport(to_convert.root_transport)
1862
 
 
1863
 
 
1864
 
class CreateRepository(controldir.RepositoryAcquisitionPolicy):
1865
 
    """A policy of creating a new repository"""
1866
 
 
1867
 
    def __init__(self, controldir, stack_on=None, stack_on_pwd=None,
1868
 
                 require_stacking=False):
1869
 
        """Constructor.
1870
 
 
1871
 
        :param controldir: The controldir to create the repository on.
1872
 
        :param stack_on: A location to stack on
1873
 
        :param stack_on_pwd: If stack_on is relative, the location it is
1874
 
            relative to.
1875
 
        """
1876
 
        super(CreateRepository, self).__init__(
1877
 
            stack_on, stack_on_pwd, require_stacking)
1878
 
        self._controldir = controldir
1879
 
 
1880
 
    def acquire_repository(self, make_working_trees=None, shared=False,
1881
 
                           possible_transports=None):
1882
 
        """Implementation of RepositoryAcquisitionPolicy.acquire_repository
1883
 
 
1884
 
        Creates the desired repository in the controldir we already have.
1885
 
        """
1886
 
        if possible_transports is None:
1887
 
            possible_transports = []
1888
 
        else:
1889
 
            possible_transports = list(possible_transports)
1890
 
        possible_transports.append(self._controldir.root_transport)
1891
 
        stack_on = self._get_full_stack_on()
1892
 
        if stack_on:
1893
 
            format = self._controldir._format
1894
 
            format.require_stacking(stack_on=stack_on,
1895
 
                                    possible_transports=possible_transports)
1896
 
            if not self._require_stacking:
1897
 
                # We have picked up automatic stacking somewhere.
1898
 
                note(gettext('Using default stacking branch {0} at {1}').format(
1899
 
                    self._stack_on, self._stack_on_pwd))
1900
 
        repository = self._controldir.create_repository(shared=shared)
1901
 
        self._add_fallback(repository,
1902
 
                           possible_transports=possible_transports)
1903
 
        if make_working_trees is not None:
1904
 
            repository.set_make_working_trees(make_working_trees)
1905
 
        return repository, True
1906
 
 
1907
 
 
1908
 
class UseExistingRepository(controldir.RepositoryAcquisitionPolicy):
1909
 
    """A policy of reusing an existing repository"""
1910
 
 
1911
 
    def __init__(self, repository, stack_on=None, stack_on_pwd=None,
1912
 
                 require_stacking=False):
1913
 
        """Constructor.
1914
 
 
1915
 
        :param repository: The repository to use.
1916
 
        :param stack_on: A location to stack on
1917
 
        :param stack_on_pwd: If stack_on is relative, the location it is
1918
 
            relative to.
1919
 
        """
1920
 
        super(UseExistingRepository, self).__init__(
1921
 
            stack_on, stack_on_pwd, require_stacking)
1922
 
        self._repository = repository
1923
 
 
1924
 
    def acquire_repository(self, make_working_trees=None, shared=False,
1925
 
                           possible_transports=None):
1926
 
        """Implementation of RepositoryAcquisitionPolicy.acquire_repository
1927
 
 
1928
 
        Returns an existing repository to use.
1929
 
        """
1930
 
        if possible_transports is None:
1931
 
            possible_transports = []
1932
 
        else:
1933
 
            possible_transports = list(possible_transports)
1934
 
        possible_transports.append(self._repository.controldir.transport)
1935
 
        self._add_fallback(self._repository,
1936
 
                           possible_transports=possible_transports)
1937
 
        return self._repository, False
1938
 
 
1939
 
 
1940
 
controldir.ControlDirFormat._default_format = BzrDirMetaFormat1()