~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/workingtree.py

  • Committer: Martin Pool
  • Date: 2007-04-04 06:17:31 UTC
  • mto: This revision was merged to the branch mainline in revision 2397.
  • Revision ID: mbp@sourcefrog.net-20070404061731-tt2xrzllqhbodn83
Contents of TODO file moved into bug tracker

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005-2010 Canonical Ltd
 
1
# Copyright (C) 2005, 2006, 2007 Canonical Ltd
2
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
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
"""WorkingTree object and friends.
18
18
 
19
19
A WorkingTree represents the editable working copy of a branch.
20
 
Operations which represent the WorkingTree are also done here,
21
 
such as renaming or adding files.  The WorkingTree has an inventory
22
 
which is updated by these operations.  A commit produces a
 
20
Operations which represent the WorkingTree are also done here, 
 
21
such as renaming or adding files.  The WorkingTree has an inventory 
 
22
which is updated by these operations.  A commit produces a 
23
23
new revision based on the workingtree and its inventory.
24
24
 
25
25
At the moment every WorkingTree has its own branch.  Remote
29
29
WorkingTree.open(dir).
30
30
"""
31
31
 
 
32
# TODO: Give the workingtree sole responsibility for the working inventory;
 
33
# remove the variable and references to it from the branch.  This may require
 
34
# updating the commit code so as to update the inventory within the working
 
35
# copy, and making sure there's only one WorkingTree for any directory on disk.
 
36
# At the moment they may alias the inventory and have old copies of it in
 
37
# memory.  (Now done? -- mbp 20060309)
32
38
 
33
39
from cStringIO import StringIO
34
40
import os
35
 
import sys
36
41
 
37
42
from bzrlib.lazy_import import lazy_import
38
43
lazy_import(globals(), """
39
44
from bisect import bisect_left
40
45
import collections
 
46
from copy import deepcopy
41
47
import errno
42
48
import itertools
43
49
import operator
44
50
import stat
 
51
from time import time
 
52
import warnings
45
53
import re
46
54
 
47
55
import bzrlib
49
57
    branch,
50
58
    bzrdir,
51
59
    conflicts as _mod_conflicts,
52
 
    controldir,
 
60
    dirstate,
53
61
    errors,
54
62
    generate_ids,
55
63
    globbing,
56
 
    graph as _mod_graph,
57
64
    hashcache,
58
65
    ignores,
59
 
    inventory,
60
66
    merge,
61
 
    revision as _mod_revision,
 
67
    osutils,
62
68
    revisiontree,
 
69
    repository,
 
70
    textui,
63
71
    trace,
64
72
    transform,
65
 
    transport,
66
73
    ui,
67
 
    views,
 
74
    urlutils,
68
75
    xml5,
 
76
    xml6,
69
77
    xml7,
70
78
    )
71
 
from bzrlib.workingtree_4 import (
72
 
    WorkingTreeFormat4,
73
 
    WorkingTreeFormat5,
74
 
    WorkingTreeFormat6,
75
 
    )
 
79
import bzrlib.branch
 
80
from bzrlib.transport import get_transport
 
81
import bzrlib.ui
 
82
from bzrlib.workingtree_4 import WorkingTreeFormat4
76
83
""")
77
84
 
78
85
from bzrlib import symbol_versioning
79
86
from bzrlib.decorators import needs_read_lock, needs_write_lock
80
 
from bzrlib.lock import LogicalLockResult
81
 
from bzrlib.lockable_files import LockableFiles
 
87
from bzrlib.inventory import InventoryEntry, Inventory, ROOT_ID, TreeReference
 
88
from bzrlib.lockable_files import LockableFiles, TransportLock
82
89
from bzrlib.lockdir import LockDir
83
90
import bzrlib.mutabletree
84
91
from bzrlib.mutabletree import needs_tree_write_lock
85
 
from bzrlib import osutils
86
92
from bzrlib.osutils import (
 
93
    compact_date,
87
94
    file_kind,
88
95
    isdir,
89
96
    normpath,
90
97
    pathjoin,
 
98
    rand_chars,
91
99
    realpath,
92
100
    safe_unicode,
93
101
    splitpath,
94
102
    supports_executable,
95
103
    )
96
 
from bzrlib.filters import filtered_input_file
97
104
from bzrlib.trace import mutter, note
98
105
from bzrlib.transport.local import LocalTransport
99
 
from bzrlib.revision import CURRENT_REVISION
 
106
from bzrlib.progress import DummyProgress, ProgressPhase
 
107
from bzrlib.revision import NULL_REVISION, CURRENT_REVISION
100
108
from bzrlib.rio import RioReader, rio_file, Stanza
101
 
from bzrlib.symbol_versioning import (
102
 
    deprecated_passed,
103
 
    DEPRECATED_PARAMETER,
104
 
    )
 
109
from bzrlib.symbol_versioning import (deprecated_passed,
 
110
        deprecated_method,
 
111
        deprecated_function,
 
112
        DEPRECATED_PARAMETER,
 
113
        zero_eight,
 
114
        zero_eleven,
 
115
        zero_thirteen,
 
116
        )
105
117
 
106
118
 
107
119
MERGE_MODIFIED_HEADER_1 = "BZR merge-modified list format 1"
108
 
# TODO: Modifying the conflict objects or their type is currently nearly
109
 
# impossible as there is no clear relationship between the working tree format
110
 
# and the conflict list file format.
111
120
CONFLICT_HEADER_1 = "BZR conflict list format 1"
112
121
 
113
 
ERROR_PATH_NOT_FOUND = 3    # WindowsError errno code, equivalent to ENOENT
 
122
 
 
123
@deprecated_function(zero_thirteen)
 
124
def gen_file_id(name):
 
125
    """Return new file id for the basename 'name'.
 
126
 
 
127
    Use bzrlib.generate_ids.gen_file_id() instead
 
128
    """
 
129
    return generate_ids.gen_file_id(name)
 
130
 
 
131
 
 
132
@deprecated_function(zero_thirteen)
 
133
def gen_root_id():
 
134
    """Return a new tree-root file id.
 
135
 
 
136
    This has been deprecated in favor of bzrlib.generate_ids.gen_root_id()
 
137
    """
 
138
    return generate_ids.gen_root_id()
114
139
 
115
140
 
116
141
class TreeEntry(object):
117
142
    """An entry that implements the minimum interface used by commands.
118
143
 
119
 
    This needs further inspection, it may be better to have
 
144
    This needs further inspection, it may be better to have 
120
145
    InventoryEntries without ids - though that seems wrong. For now,
121
146
    this is a parallel hierarchy to InventoryEntry, and needs to become
122
147
    one of several things: decorates to that hierarchy, children of, or
125
150
    no InventoryEntry available - i.e. for unversioned objects.
126
151
    Perhaps they should be UnversionedEntry et al. ? - RBC 20051003
127
152
    """
128
 
 
 
153
 
129
154
    def __eq__(self, other):
130
155
        # yes, this us ugly, TODO: best practice __eq__ style.
131
156
        return (isinstance(other, TreeEntry)
132
157
                and other.__class__ == self.__class__)
133
 
 
 
158
 
134
159
    def kind_character(self):
135
160
        return "???"
136
161
 
168
193
        return ''
169
194
 
170
195
 
171
 
class WorkingTree(bzrlib.mutabletree.MutableTree,
172
 
    controldir.ControlComponent):
 
196
class WorkingTree(bzrlib.mutabletree.MutableTree):
173
197
    """Working copy tree.
174
198
 
175
199
    The inventory is held in the `Branch` working-inventory, and the
177
201
 
178
202
    It is possible for a `WorkingTree` to have a filename which is
179
203
    not listed in the Inventory and vice versa.
180
 
 
181
 
    :ivar basedir: The root of the tree on disk. This is a unicode path object
182
 
        (as opposed to a URL).
183
204
    """
184
205
 
185
 
    # override this to set the strategy for storing views
186
 
    def _make_views(self):
187
 
        return views.DisabledViews(self)
188
 
 
189
206
    def __init__(self, basedir='.',
190
207
                 branch=DEPRECATED_PARAMETER,
191
208
                 _inventory=None,
202
219
        if not _internal:
203
220
            raise errors.BzrError("Please use bzrdir.open_workingtree or "
204
221
                "WorkingTree.open() to obtain a WorkingTree.")
 
222
        assert isinstance(basedir, basestring), \
 
223
            "base directory %r is not a string" % basedir
205
224
        basedir = safe_unicode(basedir)
206
225
        mutter("opening working tree %r", basedir)
207
226
        if deprecated_passed(branch):
215
234
            self._control_files = self.branch.control_files
216
235
        else:
217
236
            # assume all other formats have their own control files.
 
237
            assert isinstance(_control_files, LockableFiles), \
 
238
                    "_control_files must be a LockableFiles, not %r" \
 
239
                    % _control_files
218
240
            self._control_files = _control_files
219
 
        self._transport = self._control_files._transport
220
241
        # update the whole cache up front and write to disk if anything changed;
221
242
        # in the future we might want to do this more selectively
222
243
        # two possible ways offer themselves : in self._unlock, write the cache
226
247
        wt_trans = self.bzrdir.get_workingtree_transport(None)
227
248
        cache_filename = wt_trans.local_abspath('stat-cache')
228
249
        self._hashcache = hashcache.HashCache(basedir, cache_filename,
229
 
            self.bzrdir._get_file_mode(),
230
 
            self._content_filter_stack_provider())
 
250
                                              self._control_files._file_mode)
231
251
        hc = self._hashcache
232
252
        hc.read()
233
253
        # is this scan needed ? it makes things kinda slow.
247
267
            # the Format factory and creation methods that are
248
268
            # permitted to do this.
249
269
            self._set_inventory(_inventory, dirty=False)
250
 
        self._detect_case_handling()
251
 
        self._rules_searcher = None
252
 
        self.views = self._make_views()
253
 
 
254
 
    @property
255
 
    def user_transport(self):
256
 
        return self.bzrdir.user_transport
257
 
 
258
 
    @property
259
 
    def control_transport(self):
260
 
        return self._transport
261
 
 
262
 
    def _detect_case_handling(self):
263
 
        wt_trans = self.bzrdir.get_workingtree_transport(None)
264
 
        try:
265
 
            wt_trans.stat("FoRMaT")
266
 
        except errors.NoSuchFile:
267
 
            self.case_sensitive = True
268
 
        else:
269
 
            self.case_sensitive = False
270
 
 
271
 
        self._setup_directory_is_tree_reference()
272
270
 
273
271
    branch = property(
274
272
        fget=lambda self: self._branch,
289
287
        self._control_files.break_lock()
290
288
        self.branch.break_lock()
291
289
 
292
 
    def _get_check_refs(self):
293
 
        """Return the references needed to perform a check of this tree.
294
 
        
295
 
        The default implementation returns no refs, and is only suitable for
296
 
        trees that have no local caching and can commit on ghosts at any time.
297
 
 
298
 
        :seealso: bzrlib.check for details about check_refs.
299
 
        """
300
 
        return []
301
 
 
302
290
    def requires_rich_root(self):
303
291
        return self._format.requires_rich_root
304
292
 
305
293
    def supports_tree_reference(self):
306
294
        return False
307
295
 
308
 
    def supports_content_filtering(self):
309
 
        return self._format.supports_content_filtering()
310
 
 
311
 
    def supports_views(self):
312
 
        return self.views.supports_views()
313
 
 
314
296
    def _set_inventory(self, inv, dirty):
315
297
        """Set the internal cached inventory.
316
298
 
321
303
            False then the inventory is the same as that on disk and any
322
304
            serialisation would be unneeded overhead.
323
305
        """
 
306
        assert inv.root is not None
324
307
        self._inventory = inv
325
308
        self._inventory_is_modified = dirty
326
309
 
330
313
 
331
314
        """
332
315
        if path is None:
333
 
            path = osutils.getcwd()
 
316
            path = os.path.getcwdu()
334
317
        control = bzrdir.BzrDir.open(path, _unsupported)
335
318
        return control.open_workingtree(_unsupported)
336
 
 
 
319
        
337
320
    @staticmethod
338
321
    def open_containing(path=None):
339
322
        """Open an existing working tree which has its root about path.
340
 
 
 
323
        
341
324
        This probes for a working tree at path and searches upwards from there.
342
325
 
343
326
        Basically we keep looking up until we find the control directory or
350
333
        if path is None:
351
334
            path = osutils.getcwd()
352
335
        control, relpath = bzrdir.BzrDir.open_containing(path)
 
336
 
353
337
        return control.open_workingtree(), relpath
354
338
 
355
339
    @staticmethod
356
 
    def open_containing_paths(file_list, default_directory='.',
357
 
        canonicalize=True, apply_view=True):
358
 
        """Open the WorkingTree that contains a set of paths.
359
 
 
360
 
        Fail if the paths given are not all in a single tree.
361
 
 
362
 
        This is used for the many command-line interfaces that take a list of
363
 
        any number of files and that require they all be in the same tree.
364
 
        """
365
 
        # recommended replacement for builtins.internal_tree_files
366
 
        if file_list is None or len(file_list) == 0:
367
 
            tree = WorkingTree.open_containing(default_directory)[0]
368
 
            # XXX: doesn't really belong here, and seems to have the strange
369
 
            # side effect of making it return a bunch of files, not the whole
370
 
            # tree -- mbp 20100716
371
 
            if tree.supports_views() and apply_view:
372
 
                view_files = tree.views.lookup_view()
373
 
                if view_files:
374
 
                    file_list = view_files
375
 
                    view_str = views.view_display_str(view_files)
376
 
                    note("Ignoring files outside view. View is %s" % view_str)
377
 
            return tree, file_list
378
 
        tree = WorkingTree.open_containing(file_list[0])[0]
379
 
        return tree, tree.safe_relpath_files(file_list, canonicalize,
380
 
            apply_view=apply_view)
381
 
 
382
 
    def safe_relpath_files(self, file_list, canonicalize=True, apply_view=True):
383
 
        """Convert file_list into a list of relpaths in tree.
384
 
 
385
 
        :param self: A tree to operate on.
386
 
        :param file_list: A list of user provided paths or None.
387
 
        :param apply_view: if True and a view is set, apply it or check that
388
 
            specified files are within it
389
 
        :return: A list of relative paths.
390
 
        :raises errors.PathNotChild: When a provided path is in a different self
391
 
            than self.
392
 
        """
393
 
        if file_list is None:
394
 
            return None
395
 
        if self.supports_views() and apply_view:
396
 
            view_files = self.views.lookup_view()
397
 
        else:
398
 
            view_files = []
399
 
        new_list = []
400
 
        # self.relpath exists as a "thunk" to osutils, but canonical_relpath
401
 
        # doesn't - fix that up here before we enter the loop.
402
 
        if canonicalize:
403
 
            fixer = lambda p: osutils.canonical_relpath(self.basedir, p)
404
 
        else:
405
 
            fixer = self.relpath
406
 
        for filename in file_list:
407
 
            relpath = fixer(osutils.dereference_path(filename))
408
 
            if view_files and not osutils.is_inside_any(view_files, relpath):
409
 
                raise errors.FileOutsideView(filename, view_files)
410
 
            new_list.append(relpath)
411
 
        return new_list
412
 
 
413
 
    @staticmethod
414
340
    def open_downlevel(path=None):
415
341
        """Open an unsupported working tree.
416
342
 
418
344
        """
419
345
        return WorkingTree.open(path, _unsupported=True)
420
346
 
421
 
    @staticmethod
422
 
    def find_trees(location):
423
 
        def list_current(transport):
424
 
            return [d for d in transport.list_dir('') if d != '.bzr']
425
 
        def evaluate(bzrdir):
426
 
            try:
427
 
                tree = bzrdir.open_workingtree()
428
 
            except errors.NoWorkingTree:
429
 
                return True, None
430
 
            else:
431
 
                return True, tree
432
 
        t = transport.get_transport(location)
433
 
        iterator = bzrdir.BzrDir.find_bzrdirs(t, evaluate=evaluate,
434
 
                                              list_current=list_current)
435
 
        return [tr for tr in iterator if tr is not None]
436
 
 
437
347
    # should be deprecated - this is slow and in any case treating them as a
438
348
    # container is (we now know) bad style -- mbp 20070302
439
349
    ## @deprecated_method(zero_fifteen)
448
358
            if osutils.lexists(self.abspath(path)):
449
359
                yield ie.file_id
450
360
 
451
 
    def all_file_ids(self):
452
 
        """See Tree.iter_all_file_ids"""
453
 
        return set(self.inventory)
454
 
 
455
361
    def __repr__(self):
456
362
        return "<%s of %s>" % (self.__class__.__name__,
457
363
                               getattr(self, 'basedir', None))
458
364
 
459
365
    def abspath(self, filename):
460
366
        return pathjoin(self.basedir, filename)
461
 
 
 
367
    
462
368
    def basis_tree(self):
463
369
        """Return RevisionTree for the current last revision.
464
 
 
 
370
        
465
371
        If the left most parent is a ghost then the returned tree will be an
466
 
        empty tree - one obtained by calling
467
 
        repository.revision_tree(NULL_REVISION).
 
372
        empty tree - one obtained by calling repository.revision_tree(None).
468
373
        """
469
374
        try:
470
375
            revision_id = self.get_parent_ids()[0]
472
377
            # no parents, return an empty revision tree.
473
378
            # in the future this should return the tree for
474
379
            # 'empty:' - the implicit root empty tree.
475
 
            return self.branch.repository.revision_tree(
476
 
                       _mod_revision.NULL_REVISION)
 
380
            return self.branch.repository.revision_tree(None)
477
381
        try:
478
382
            return self.revision_tree(revision_id)
479
383
        except errors.NoSuchRevision:
483
387
        # at this point ?
484
388
        try:
485
389
            return self.branch.repository.revision_tree(revision_id)
486
 
        except (errors.RevisionNotPresent, errors.NoSuchRevision):
 
390
        except errors.RevisionNotPresent:
487
391
            # the basis tree *may* be a ghost or a low level error may have
488
 
            # occurred. If the revision is present, its a problem, if its not
 
392
            # occured. If the revision is present, its a problem, if its not
489
393
            # its a ghost.
490
394
            if self.branch.repository.has_revision(revision_id):
491
395
                raise
492
396
            # the basis tree is a ghost so return an empty tree.
493
 
            return self.branch.repository.revision_tree(
494
 
                       _mod_revision.NULL_REVISION)
495
 
 
496
 
    def _cleanup(self):
497
 
        self._flush_ignore_list_cache()
 
397
            return self.branch.repository.revision_tree(None)
 
398
 
 
399
    @staticmethod
 
400
    @deprecated_method(zero_eight)
 
401
    def create(branch, directory):
 
402
        """Create a workingtree for branch at directory.
 
403
 
 
404
        If existing_directory already exists it must have a .bzr directory.
 
405
        If it does not exist, it will be created.
 
406
 
 
407
        This returns a new WorkingTree object for the new checkout.
 
408
 
 
409
        TODO FIXME RBC 20060124 when we have checkout formats in place this
 
410
        should accept an optional revisionid to checkout [and reject this if
 
411
        checking out into the same dir as a pre-checkout-aware branch format.]
 
412
 
 
413
        XXX: When BzrDir is present, these should be created through that 
 
414
        interface instead.
 
415
        """
 
416
        warnings.warn('delete WorkingTree.create', stacklevel=3)
 
417
        transport = get_transport(directory)
 
418
        if branch.bzrdir.root_transport.base == transport.base:
 
419
            # same dir 
 
420
            return branch.bzrdir.create_workingtree()
 
421
        # different directory, 
 
422
        # create a branch reference
 
423
        # and now a working tree.
 
424
        raise NotImplementedError
 
425
 
 
426
    @staticmethod
 
427
    @deprecated_method(zero_eight)
 
428
    def create_standalone(directory):
 
429
        """Create a checkout and a branch and a repo at directory.
 
430
 
 
431
        Directory must exist and be empty.
 
432
 
 
433
        please use BzrDir.create_standalone_workingtree
 
434
        """
 
435
        return bzrdir.BzrDir.create_standalone_workingtree(directory)
498
436
 
499
437
    def relpath(self, path):
500
438
        """Return the local path portion from a given path.
501
 
 
502
 
        The path may be absolute or relative. If its a relative path it is
 
439
        
 
440
        The path may be absolute or relative. If its a relative path it is 
503
441
        interpreted relative to the python current working directory.
504
442
        """
505
443
        return osutils.relpath(self.basedir, path)
507
445
    def has_filename(self, filename):
508
446
        return osutils.lexists(self.abspath(filename))
509
447
 
510
 
    def get_file(self, file_id, path=None, filtered=True):
511
 
        return self.get_file_with_stat(file_id, path, filtered=filtered)[0]
512
 
 
513
 
    def get_file_with_stat(self, file_id, path=None, filtered=True,
514
 
        _fstat=os.fstat):
515
 
        """See Tree.get_file_with_stat."""
516
 
        if path is None:
517
 
            path = self.id2path(file_id)
518
 
        file_obj = self.get_file_byname(path, filtered=False)
519
 
        stat_value = _fstat(file_obj.fileno())
520
 
        if filtered and self.supports_content_filtering():
521
 
            filters = self._content_filter_stack(path)
522
 
            file_obj = filtered_input_file(file_obj, filters)
523
 
        return (file_obj, stat_value)
524
 
 
525
 
    def get_file_text(self, file_id, path=None, filtered=True):
526
 
        my_file = self.get_file(file_id, path=path, filtered=filtered)
527
 
        try:
528
 
            return my_file.read()
529
 
        finally:
530
 
            my_file.close()
531
 
 
532
 
    def get_file_byname(self, filename, filtered=True):
533
 
        path = self.abspath(filename)
534
 
        f = file(path, 'rb')
535
 
        if filtered and self.supports_content_filtering():
536
 
            filters = self._content_filter_stack(filename)
537
 
            return filtered_input_file(f, filters)
538
 
        else:
539
 
            return f
540
 
 
541
 
    def get_file_lines(self, file_id, path=None, filtered=True):
542
 
        """See Tree.get_file_lines()"""
543
 
        file = self.get_file(file_id, path, filtered=filtered)
544
 
        try:
545
 
            return file.readlines()
546
 
        finally:
547
 
            file.close()
 
448
    def get_file(self, file_id):
 
449
        file_id = osutils.safe_file_id(file_id)
 
450
        return self.get_file_byname(self.id2path(file_id))
 
451
 
 
452
    def get_file_text(self, file_id):
 
453
        file_id = osutils.safe_file_id(file_id)
 
454
        return self.get_file(file_id).read()
 
455
 
 
456
    def get_file_byname(self, filename):
 
457
        return file(self.abspath(filename), 'rb')
548
458
 
549
459
    @needs_read_lock
550
 
    def annotate_iter(self, file_id, default_revision=CURRENT_REVISION):
 
460
    def annotate_iter(self, file_id):
551
461
        """See Tree.annotate_iter
552
462
 
553
463
        This implementation will use the basis tree implementation if possible.
557
467
        incorrectly attributed to CURRENT_REVISION (but after committing, the
558
468
        attribution will be correct).
559
469
        """
560
 
        maybe_file_parent_keys = []
561
 
        for parent_id in self.get_parent_ids():
562
 
            try:
563
 
                parent_tree = self.revision_tree(parent_id)
564
 
            except errors.NoSuchRevisionInTree:
565
 
                parent_tree = self.branch.repository.revision_tree(parent_id)
566
 
            parent_tree.lock_read()
567
 
            try:
568
 
                if file_id not in parent_tree:
569
 
                    continue
570
 
                ie = parent_tree.inventory[file_id]
571
 
                if ie.kind != 'file':
572
 
                    # Note: this is slightly unnecessary, because symlinks and
573
 
                    # directories have a "text" which is the empty text, and we
574
 
                    # know that won't mess up annotations. But it seems cleaner
575
 
                    continue
576
 
                parent_text_key = (file_id, ie.revision)
577
 
                if parent_text_key not in maybe_file_parent_keys:
578
 
                    maybe_file_parent_keys.append(parent_text_key)
579
 
            finally:
580
 
                parent_tree.unlock()
581
 
        graph = _mod_graph.Graph(self.branch.repository.texts)
582
 
        heads = graph.heads(maybe_file_parent_keys)
583
 
        file_parent_keys = []
584
 
        for key in maybe_file_parent_keys:
585
 
            if key in heads:
586
 
                file_parent_keys.append(key)
587
 
 
588
 
        # Now we have the parents of this content
589
 
        annotator = self.branch.repository.texts.get_annotator()
590
 
        text = self.get_file_text(file_id)
591
 
        this_key =(file_id, default_revision)
592
 
        annotator.add_special_text(this_key, file_parent_keys, text)
593
 
        annotations = [(key[-1], line)
594
 
                       for key, line in annotator.annotate_flat(this_key)]
595
 
        return annotations
596
 
 
597
 
    def _get_ancestors(self, default_revision):
598
 
        ancestors = set([default_revision])
599
 
        for parent_id in self.get_parent_ids():
600
 
            ancestors.update(self.branch.repository.get_ancestry(
601
 
                             parent_id, topo_sorted=False))
602
 
        return ancestors
 
470
        file_id = osutils.safe_file_id(file_id)
 
471
        basis = self.basis_tree()
 
472
        basis.lock_read()
 
473
        try:
 
474
            changes = self._iter_changes(basis, True, [self.id2path(file_id)],
 
475
                require_versioned=True).next()
 
476
            changed_content, kind = changes[2], changes[6]
 
477
            if not changed_content:
 
478
                return basis.annotate_iter(file_id)
 
479
            if kind[1] is None:
 
480
                return None
 
481
            import annotate
 
482
            if kind[0] != 'file':
 
483
                old_lines = []
 
484
            else:
 
485
                old_lines = list(basis.annotate_iter(file_id))
 
486
            old = [old_lines]
 
487
            for tree in self.branch.repository.revision_trees(
 
488
                self.get_parent_ids()[1:]):
 
489
                if file_id not in tree:
 
490
                    continue
 
491
                old.append(list(tree.annotate_iter(file_id)))
 
492
            return annotate.reannotate(old, self.get_file(file_id).readlines(),
 
493
                                       CURRENT_REVISION)
 
494
        finally:
 
495
            basis.unlock()
603
496
 
604
497
    def get_parent_ids(self):
605
498
        """See Tree.get_parent_ids.
606
 
 
 
499
        
607
500
        This implementation reads the pending merges list and last_revision
608
501
        value and uses that to decide what the parents list should be.
609
502
        """
610
 
        last_rev = _mod_revision.ensure_null(self._last_revision())
611
 
        if _mod_revision.NULL_REVISION == last_rev:
 
503
        last_rev = self._last_revision()
 
504
        if last_rev is None:
612
505
            parents = []
613
506
        else:
614
507
            parents = [last_rev]
615
508
        try:
616
 
            merges_bytes = self._transport.get_bytes('pending-merges')
 
509
            merges_file = self._control_files.get('pending-merges')
617
510
        except errors.NoSuchFile:
618
511
            pass
619
512
        else:
620
 
            for l in osutils.split_lines(merges_bytes):
621
 
                revision_id = l.rstrip('\n')
 
513
            for l in merges_file.readlines():
 
514
                revision_id = osutils.safe_revision_id(l.rstrip('\n'))
622
515
                parents.append(revision_id)
623
516
        return parents
624
517
 
626
519
    def get_root_id(self):
627
520
        """Return the id of this trees root"""
628
521
        return self._inventory.root.file_id
629
 
 
 
522
        
630
523
    def _get_store_filename(self, file_id):
631
524
        ## XXX: badly named; this is not in the store at all
 
525
        file_id = osutils.safe_file_id(file_id)
632
526
        return self.abspath(self.id2path(file_id))
633
527
 
634
528
    @needs_read_lock
635
529
    def clone(self, to_bzrdir, revision_id=None):
636
530
        """Duplicate this working tree into to_bzr, including all state.
637
 
 
 
531
        
638
532
        Specifically modified files are kept as modified, but
639
533
        ignored and unknown files are discarded.
640
534
 
641
535
        If you want to make a new line of development, see bzrdir.sprout()
642
536
 
643
537
        revision
644
 
            If not None, the cloned tree will have its last revision set to
645
 
            revision, and difference between the source trees last revision
 
538
            If not None, the cloned tree will have its last revision set to 
 
539
            revision, and and difference between the source trees last revision
646
540
            and this one merged in.
647
541
        """
648
542
        # assumes the target bzr dir format is compatible.
649
 
        result = to_bzrdir.create_workingtree()
 
543
        result = self._format.initialize(to_bzrdir)
650
544
        self.copy_content_into(result, revision_id)
651
545
        return result
652
546
 
663
557
            tree.set_parent_ids([revision_id])
664
558
 
665
559
    def id2abspath(self, file_id):
 
560
        file_id = osutils.safe_file_id(file_id)
666
561
        return self.abspath(self.id2path(file_id))
667
562
 
668
563
    def has_id(self, file_id):
669
564
        # files that have been deleted are excluded
 
565
        file_id = osutils.safe_file_id(file_id)
670
566
        inv = self.inventory
671
567
        if not inv.has_id(file_id):
672
568
            return False
674
570
        return osutils.lexists(self.abspath(path))
675
571
 
676
572
    def has_or_had_id(self, file_id):
 
573
        file_id = osutils.safe_file_id(file_id)
677
574
        if file_id == self.inventory.root.file_id:
678
575
            return True
679
576
        return self.inventory.has_id(file_id)
681
578
    __contains__ = has_id
682
579
 
683
580
    def get_file_size(self, file_id):
684
 
        """See Tree.get_file_size"""
685
 
        # XXX: this returns the on-disk size; it should probably return the
686
 
        # canonical size
687
 
        try:
688
 
            return os.path.getsize(self.id2abspath(file_id))
689
 
        except OSError, e:
690
 
            if e.errno != errno.ENOENT:
691
 
                raise
692
 
            else:
693
 
                return None
 
581
        file_id = osutils.safe_file_id(file_id)
 
582
        return os.path.getsize(self.id2abspath(file_id))
694
583
 
695
584
    @needs_read_lock
696
585
    def get_file_sha1(self, file_id, path=None, stat_value=None):
 
586
        file_id = osutils.safe_file_id(file_id)
697
587
        if not path:
698
588
            path = self._inventory.id2path(file_id)
699
589
        return self._hashcache.get_sha1(path, stat_value)
700
590
 
701
591
    def get_file_mtime(self, file_id, path=None):
 
592
        file_id = osutils.safe_file_id(file_id)
702
593
        if not path:
703
594
            path = self.inventory.id2path(file_id)
704
595
        return os.lstat(self.abspath(path)).st_mtime
705
596
 
706
 
    def _is_executable_from_path_and_stat_from_basis(self, path, stat_result):
707
 
        file_id = self.path2id(path)
708
 
        if file_id is None:
709
 
            # For unversioned files on win32, we just assume they are not
710
 
            # executable
711
 
            return False
712
 
        return self._inventory[file_id].executable
713
 
 
714
 
    def _is_executable_from_path_and_stat_from_stat(self, path, stat_result):
715
 
        mode = stat_result.st_mode
716
 
        return bool(stat.S_ISREG(mode) and stat.S_IEXEC & mode)
717
 
 
718
597
    if not supports_executable():
719
598
        def is_executable(self, file_id, path=None):
 
599
            file_id = osutils.safe_file_id(file_id)
720
600
            return self._inventory[file_id].executable
721
 
 
722
 
        _is_executable_from_path_and_stat = \
723
 
            _is_executable_from_path_and_stat_from_basis
724
601
    else:
725
602
        def is_executable(self, file_id, path=None):
726
603
            if not path:
 
604
                file_id = osutils.safe_file_id(file_id)
727
605
                path = self.id2path(file_id)
728
606
            mode = os.lstat(self.abspath(path)).st_mode
729
607
            return bool(stat.S_ISREG(mode) and stat.S_IEXEC & mode)
730
608
 
731
 
        _is_executable_from_path_and_stat = \
732
 
            _is_executable_from_path_and_stat_from_stat
733
 
 
734
609
    @needs_tree_write_lock
735
610
    def _add(self, files, ids, kinds):
736
611
        """See MutableTree._add."""
737
612
        # TODO: Re-adding a file that is removed in the working copy
738
613
        # should probably put it back with the previous ID.
739
 
        # the read and write working inventory should not occur in this
 
614
        # the read and write working inventory should not occur in this 
740
615
        # function - they should be part of lock_write and unlock.
741
 
        inv = self.inventory
 
616
        inv = self.read_working_inventory()
742
617
        for f, file_id, kind in zip(files, ids, kinds):
 
618
            assert kind is not None
743
619
            if file_id is None:
744
620
                inv.add_path(f, kind=kind)
745
621
            else:
 
622
                file_id = osutils.safe_file_id(file_id)
746
623
                inv.add_path(f, kind=kind, file_id=file_id)
747
 
            self._inventory_is_modified = True
 
624
        self._write_inventory(inv)
748
625
 
749
626
    @needs_tree_write_lock
750
627
    def _gather_kinds(self, files, kinds):
810
687
        if updated:
811
688
            self.set_parent_ids(parents, allow_leftmost_as_ghost=True)
812
689
 
813
 
    def path_content_summary(self, path, _lstat=os.lstat,
814
 
        _mapper=osutils.file_kind_from_stat_mode):
815
 
        """See Tree.path_content_summary."""
816
 
        abspath = self.abspath(path)
817
 
        try:
818
 
            stat_result = _lstat(abspath)
819
 
        except OSError, e:
820
 
            if getattr(e, 'errno', None) == errno.ENOENT:
821
 
                # no file.
822
 
                return ('missing', None, None, None)
823
 
            # propagate other errors
824
 
            raise
825
 
        kind = _mapper(stat_result.st_mode)
826
 
        if kind == 'file':
827
 
            return self._file_content_summary(path, stat_result)
828
 
        elif kind == 'directory':
829
 
            # perhaps it looks like a plain directory, but it's really a
830
 
            # reference.
831
 
            if self._directory_is_tree_reference(path):
832
 
                kind = 'tree-reference'
833
 
            return kind, None, None, None
834
 
        elif kind == 'symlink':
835
 
            target = osutils.readlink(abspath)
836
 
            return ('symlink', None, None, target)
837
 
        else:
838
 
            return (kind, None, None, None)
839
 
 
840
 
    def _file_content_summary(self, path, stat_result):
841
 
        size = stat_result.st_size
842
 
        executable = self._is_executable_from_path_and_stat(path, stat_result)
843
 
        # try for a stat cache lookup
844
 
        return ('file', size, executable, self._sha_from_stat(
845
 
            path, stat_result))
 
690
    @deprecated_method(zero_eleven)
 
691
    @needs_read_lock
 
692
    def pending_merges(self):
 
693
        """Return a list of pending merges.
 
694
 
 
695
        These are revisions that have been merged into the working
 
696
        directory but not yet committed.
 
697
 
 
698
        As of 0.11 this is deprecated. Please see WorkingTree.get_parent_ids()
 
699
        instead - which is available on all tree objects.
 
700
        """
 
701
        return self.get_parent_ids()[1:]
846
702
 
847
703
    def _check_parents_for_ghosts(self, revision_ids, allow_leftmost_as_ghost):
848
704
        """Common ghost checking functionality from set_parent_*.
858
714
 
859
715
    def _set_merges_from_parent_ids(self, parent_ids):
860
716
        merges = parent_ids[1:]
861
 
        self._transport.put_bytes('pending-merges', '\n'.join(merges),
862
 
            mode=self.bzrdir._get_file_mode())
863
 
 
864
 
    def _filter_parent_ids_by_ancestry(self, revision_ids):
865
 
        """Check that all merged revisions are proper 'heads'.
866
 
 
867
 
        This will always return the first revision_id, and any merged revisions
868
 
        which are
869
 
        """
870
 
        if len(revision_ids) == 0:
871
 
            return revision_ids
872
 
        graph = self.branch.repository.get_graph()
873
 
        heads = graph.heads(revision_ids)
874
 
        new_revision_ids = revision_ids[:1]
875
 
        for revision_id in revision_ids[1:]:
876
 
            if revision_id in heads and revision_id not in new_revision_ids:
877
 
                new_revision_ids.append(revision_id)
878
 
        if new_revision_ids != revision_ids:
879
 
            trace.mutter('requested to set revision_ids = %s,'
880
 
                         ' but filtered to %s', revision_ids, new_revision_ids)
881
 
        return new_revision_ids
 
717
        self._control_files.put_bytes('pending-merges', '\n'.join(merges))
882
718
 
883
719
    @needs_tree_write_lock
884
720
    def set_parent_ids(self, revision_ids, allow_leftmost_as_ghost=False):
885
721
        """Set the parent ids to revision_ids.
886
 
 
 
722
        
887
723
        See also set_parent_trees. This api will try to retrieve the tree data
888
724
        for each element of revision_ids from the trees repository. If you have
889
725
        tree data already available, it is more efficient to use
893
729
        :param revision_ids: The revision_ids to set as the parent ids of this
894
730
            working tree. Any of these may be ghosts.
895
731
        """
 
732
        revision_ids = [osutils.safe_revision_id(r) for r in revision_ids]
896
733
        self._check_parents_for_ghosts(revision_ids,
897
734
            allow_leftmost_as_ghost=allow_leftmost_as_ghost)
898
 
        for revision_id in revision_ids:
899
 
            _mod_revision.check_not_reserved_id(revision_id)
900
 
 
901
 
        revision_ids = self._filter_parent_ids_by_ancestry(revision_ids)
902
735
 
903
736
        if len(revision_ids) > 0:
904
737
            self.set_last_revision(revision_ids[0])
905
738
        else:
906
 
            self.set_last_revision(_mod_revision.NULL_REVISION)
 
739
            self.set_last_revision(None)
907
740
 
908
741
        self._set_merges_from_parent_ids(revision_ids)
909
742
 
910
743
    @needs_tree_write_lock
911
744
    def set_parent_trees(self, parents_list, allow_leftmost_as_ghost=False):
912
745
        """See MutableTree.set_parent_trees."""
913
 
        parent_ids = [rev for (rev, tree) in parents_list]
914
 
        for revision_id in parent_ids:
915
 
            _mod_revision.check_not_reserved_id(revision_id)
 
746
        parent_ids = [osutils.safe_revision_id(rev) for (rev, tree) in parents_list]
916
747
 
917
748
        self._check_parents_for_ghosts(parent_ids,
918
749
            allow_leftmost_as_ghost=allow_leftmost_as_ghost)
919
750
 
920
 
        parent_ids = self._filter_parent_ids_by_ancestry(parent_ids)
921
 
 
922
751
        if len(parent_ids) == 0:
923
 
            leftmost_parent_id = _mod_revision.NULL_REVISION
 
752
            leftmost_parent_id = None
924
753
            leftmost_parent_tree = None
925
754
        else:
926
755
            leftmost_parent_id, leftmost_parent_tree = parents_list[0]
951
780
                yield Stanza(file_id=file_id.decode('utf8'), hash=hash)
952
781
        self._put_rio('merge-hashes', iter_stanzas(), MERGE_MODIFIED_HEADER_1)
953
782
 
954
 
    def _sha_from_stat(self, path, stat_result):
955
 
        """Get a sha digest from the tree's stat cache.
956
 
 
957
 
        The default implementation assumes no stat cache is present.
958
 
 
959
 
        :param path: The path.
960
 
        :param stat_result: The stat result being looked up.
961
 
        """
962
 
        return None
963
 
 
964
783
    def _put_rio(self, filename, stanzas, header):
965
784
        self._must_be_locked()
966
785
        my_file = rio_file(stanzas, header)
967
 
        self._transport.put_file(filename, my_file,
968
 
            mode=self.bzrdir._get_file_mode())
 
786
        self._control_files.put(filename, my_file)
969
787
 
970
788
    @needs_write_lock # because merge pulls data into the branch.
971
 
    def merge_from_branch(self, branch, to_revision=None, from_revision=None,
972
 
                          merge_type=None, force=False):
 
789
    def merge_from_branch(self, branch, to_revision=None):
973
790
        """Merge from a branch into this working tree.
974
791
 
975
792
        :param branch: The branch to merge from.
979
796
            branch.last_revision().
980
797
        """
981
798
        from bzrlib.merge import Merger, Merge3Merger
982
 
        merger = Merger(self.branch, this_tree=self)
983
 
        # check that there are no local alterations
984
 
        if not force and self.has_changes():
985
 
            raise errors.UncommittedChanges(self)
986
 
        if to_revision is None:
987
 
            to_revision = _mod_revision.ensure_null(branch.last_revision())
988
 
        merger.other_rev_id = to_revision
989
 
        if _mod_revision.is_null(merger.other_rev_id):
990
 
            raise errors.NoCommits(branch)
991
 
        self.branch.fetch(branch, last_revision=merger.other_rev_id)
992
 
        merger.other_basis = merger.other_rev_id
993
 
        merger.other_tree = self.branch.repository.revision_tree(
994
 
            merger.other_rev_id)
995
 
        merger.other_branch = branch
996
 
        if from_revision is None:
 
799
        pb = bzrlib.ui.ui_factory.nested_progress_bar()
 
800
        try:
 
801
            merger = Merger(self.branch, this_tree=self, pb=pb)
 
802
            merger.pp = ProgressPhase("Merge phase", 5, pb)
 
803
            merger.pp.next_phase()
 
804
            # check that there are no
 
805
            # local alterations
 
806
            merger.check_basis(check_clean=True, require_commits=False)
 
807
            if to_revision is None:
 
808
                to_revision = branch.last_revision()
 
809
            else:
 
810
                to_revision = osutils.safe_revision_id(to_revision)
 
811
            merger.other_rev_id = to_revision
 
812
            if merger.other_rev_id is None:
 
813
                raise error.NoCommits(branch)
 
814
            self.branch.fetch(branch, last_revision=merger.other_rev_id)
 
815
            merger.other_basis = merger.other_rev_id
 
816
            merger.other_tree = self.branch.repository.revision_tree(
 
817
                merger.other_rev_id)
 
818
            merger.other_branch = branch
 
819
            merger.pp.next_phase()
997
820
            merger.find_base()
998
 
        else:
999
 
            merger.set_base_revision(from_revision, branch)
1000
 
        if merger.base_rev_id == merger.other_rev_id:
1001
 
            raise errors.PointlessMerge
1002
 
        merger.backup_files = False
1003
 
        if merge_type is None:
 
821
            if merger.base_rev_id == merger.other_rev_id:
 
822
                raise errors.PointlessMerge
 
823
            merger.backup_files = False
1004
824
            merger.merge_type = Merge3Merger
1005
 
        else:
1006
 
            merger.merge_type = merge_type
1007
 
        merger.set_interesting_files(None)
1008
 
        merger.show_base = False
1009
 
        merger.reprocess = False
1010
 
        conflicts = merger.do_merge()
1011
 
        merger.set_pending()
 
825
            merger.set_interesting_files(None)
 
826
            merger.show_base = False
 
827
            merger.reprocess = False
 
828
            conflicts = merger.do_merge()
 
829
            merger.set_pending()
 
830
        finally:
 
831
            pb.finished()
1012
832
        return conflicts
1013
833
 
1014
834
    @needs_read_lock
1015
835
    def merge_modified(self):
1016
836
        """Return a dictionary of files modified by a merge.
1017
837
 
1018
 
        The list is initialized by WorkingTree.set_merge_modified, which is
 
838
        The list is initialized by WorkingTree.set_merge_modified, which is 
1019
839
        typically called after we make some automatic updates to the tree
1020
840
        because of a merge.
1021
841
 
1023
843
        still in the working inventory and have that text hash.
1024
844
        """
1025
845
        try:
1026
 
            hashfile = self._transport.get('merge-hashes')
 
846
            hashfile = self._control_files.get('merge-hashes')
1027
847
        except errors.NoSuchFile:
1028
848
            return {}
 
849
        merge_hashes = {}
1029
850
        try:
1030
 
            merge_hashes = {}
1031
 
            try:
1032
 
                if hashfile.next() != MERGE_MODIFIED_HEADER_1 + '\n':
1033
 
                    raise errors.MergeModifiedFormatError()
1034
 
            except StopIteration:
 
851
            if hashfile.next() != MERGE_MODIFIED_HEADER_1 + '\n':
1035
852
                raise errors.MergeModifiedFormatError()
1036
 
            for s in RioReader(hashfile):
1037
 
                # RioReader reads in Unicode, so convert file_ids back to utf8
1038
 
                file_id = osutils.safe_file_id(s.get("file_id"), warn=False)
1039
 
                if file_id not in self.inventory:
1040
 
                    continue
1041
 
                text_hash = s.get("hash")
1042
 
                if text_hash == self.get_file_sha1(file_id):
1043
 
                    merge_hashes[file_id] = text_hash
1044
 
            return merge_hashes
1045
 
        finally:
1046
 
            hashfile.close()
 
853
        except StopIteration:
 
854
            raise errors.MergeModifiedFormatError()
 
855
        for s in RioReader(hashfile):
 
856
            # RioReader reads in Unicode, so convert file_ids back to utf8
 
857
            file_id = osutils.safe_file_id(s.get("file_id"), warn=False)
 
858
            if file_id not in self.inventory:
 
859
                continue
 
860
            text_hash = s.get("hash")
 
861
            if text_hash == self.get_file_sha1(file_id):
 
862
                merge_hashes[file_id] = text_hash
 
863
        return merge_hashes
1047
864
 
1048
865
    @needs_write_lock
1049
866
    def mkdir(self, path, file_id=None):
1055
872
        return file_id
1056
873
 
1057
874
    def get_symlink_target(self, file_id):
1058
 
        abspath = self.id2abspath(file_id)
1059
 
        target = osutils.readlink(abspath)
1060
 
        return target
 
875
        file_id = osutils.safe_file_id(file_id)
 
876
        return os.readlink(self.id2abspath(file_id))
1061
877
 
1062
878
    @needs_write_lock
1063
879
    def subsume(self, other_tree):
1101
917
            other_tree.unlock()
1102
918
        other_tree.bzrdir.retire_bzrdir()
1103
919
 
1104
 
    def _setup_directory_is_tree_reference(self):
1105
 
        if self._branch.repository._format.supports_tree_reference:
1106
 
            self._directory_is_tree_reference = \
1107
 
                self._directory_may_be_tree_reference
1108
 
        else:
1109
 
            self._directory_is_tree_reference = \
1110
 
                self._directory_is_never_tree_reference
1111
 
 
1112
 
    def _directory_is_never_tree_reference(self, relpath):
1113
 
        return False
1114
 
 
1115
 
    def _directory_may_be_tree_reference(self, relpath):
1116
 
        # as a special case, if a directory contains control files then
1117
 
        # it's a tree reference, except that the root of the tree is not
1118
 
        return relpath and osutils.isdir(self.abspath(relpath) + u"/.bzr")
1119
 
        # TODO: We could ask all the control formats whether they
1120
 
        # recognize this directory, but at the moment there's no cheap api
1121
 
        # to do that.  Since we probably can only nest bzr checkouts and
1122
 
        # they always use this name it's ok for now.  -- mbp 20060306
1123
 
        #
1124
 
        # FIXME: There is an unhandled case here of a subdirectory
1125
 
        # containing .bzr but not a branch; that will probably blow up
1126
 
        # when you try to commit it.  It might happen if there is a
1127
 
        # checkout in a subdirectory.  This can be avoided by not adding
1128
 
        # it.  mbp 20070306
1129
 
 
1130
920
    @needs_tree_write_lock
1131
921
    def extract(self, file_id, format=None):
1132
922
        """Extract a subtree from this tree.
1133
 
 
 
923
        
1134
924
        A new branch will be created, relative to the path for this tree.
1135
925
        """
1136
926
        self.flush()
1139
929
            transport = self.branch.bzrdir.root_transport
1140
930
            for name in segments:
1141
931
                transport = transport.clone(name)
1142
 
                transport.ensure_base()
 
932
                try:
 
933
                    transport.mkdir('.')
 
934
                except errors.FileExists:
 
935
                    pass
1143
936
            return transport
1144
 
 
 
937
            
1145
938
        sub_path = self.id2path(file_id)
1146
939
        branch_transport = mkdirs(sub_path)
1147
940
        if format is None:
1148
 
            format = self.bzrdir.cloning_metadir()
1149
 
        branch_transport.ensure_base()
 
941
            format = bzrdir.format_registry.make_bzrdir('dirstate-with-subtree')
 
942
        try:
 
943
            branch_transport.mkdir('.')
 
944
        except errors.FileExists:
 
945
            pass
1150
946
        branch_bzrdir = format.initialize_on_transport(branch_transport)
1151
947
        try:
1152
948
            repo = branch_bzrdir.find_repository()
1153
949
        except errors.NoRepositoryPresent:
1154
950
            repo = branch_bzrdir.create_repository()
1155
 
        if not repo.supports_rich_root():
1156
 
            raise errors.RootNotRich()
 
951
            assert repo.supports_rich_root()
 
952
        else:
 
953
            if not repo.supports_rich_root():
 
954
                raise errors.RootNotRich()
1157
955
        new_branch = branch_bzrdir.create_branch()
1158
956
        new_branch.pull(self.branch)
1159
957
        for parent_id in self.get_parent_ids():
1161
959
        tree_transport = self.bzrdir.root_transport.clone(sub_path)
1162
960
        if tree_transport.base != branch_transport.base:
1163
961
            tree_bzrdir = format.initialize_on_transport(tree_transport)
1164
 
            branch.BranchReferenceFormat().initialize(tree_bzrdir,
1165
 
                target_branch=new_branch)
 
962
            branch.BranchReferenceFormat().initialize(tree_bzrdir, new_branch)
1166
963
        else:
1167
964
            tree_bzrdir = branch_bzrdir
1168
 
        wt = tree_bzrdir.create_workingtree(_mod_revision.NULL_REVISION)
 
965
        wt = tree_bzrdir.create_workingtree(NULL_REVISION)
1169
966
        wt.set_parent_ids(self.get_parent_ids())
1170
967
        my_inv = self.inventory
1171
 
        child_inv = inventory.Inventory(root_id=None)
 
968
        child_inv = Inventory(root_id=None)
1172
969
        new_root = my_inv[file_id]
1173
970
        my_inv.remove_recursive_id(file_id)
1174
971
        new_root.parent_id = None
1178
975
        return wt
1179
976
 
1180
977
    def _serialize(self, inventory, out_file):
1181
 
        xml5.serializer_v5.write_inventory(self._inventory, out_file,
1182
 
            working=True)
 
978
        xml5.serializer_v5.write_inventory(self._inventory, out_file)
1183
979
 
1184
980
    def _deserialize(selt, in_file):
1185
981
        return xml5.serializer_v5.read_inventory(in_file)
1192
988
        sio = StringIO()
1193
989
        self._serialize(self._inventory, sio)
1194
990
        sio.seek(0)
1195
 
        self._transport.put_file('inventory', sio,
1196
 
            mode=self.bzrdir._get_file_mode())
 
991
        self._control_files.put('inventory', sio)
1197
992
        self._inventory_is_modified = False
1198
993
 
1199
994
    def _kind(self, relpath):
1200
995
        return osutils.file_kind(self.abspath(relpath))
1201
996
 
1202
 
    def list_files(self, include_root=False, from_dir=None, recursive=True):
1203
 
        """List all files as (path, class, kind, id, entry).
 
997
    def list_files(self, include_root=False):
 
998
        """Recursively list all files as (path, class, kind, id, entry).
1204
999
 
1205
1000
        Lists, but does not descend into unversioned directories.
 
1001
 
1206
1002
        This does not include files that have been deleted in this
1207
 
        tree. Skips the control directory.
 
1003
        tree.
1208
1004
 
1209
 
        :param include_root: if True, return an entry for the root
1210
 
        :param from_dir: start from this directory or None for the root
1211
 
        :param recursive: whether to recurse into subdirectories or not
 
1005
        Skips the control directory.
1212
1006
        """
1213
1007
        # list_files is an iterator, so @needs_read_lock doesn't work properly
1214
1008
        # with it. So callers should be careful to always read_lock the tree.
1216
1010
            raise errors.ObjectNotLocked(self)
1217
1011
 
1218
1012
        inv = self.inventory
1219
 
        if from_dir is None and include_root is True:
 
1013
        if include_root is True:
1220
1014
            yield ('', 'V', 'directory', inv.root.file_id, inv.root)
1221
1015
        # Convert these into local objects to save lookup times
1222
1016
        pathjoin = osutils.pathjoin
1229
1023
        fk_entries = {'directory':TreeDirectory, 'file':TreeFile, 'symlink':TreeLink}
1230
1024
 
1231
1025
        # directory file_id, relative path, absolute path, reverse sorted children
1232
 
        if from_dir is not None:
1233
 
            from_dir_id = inv.path2id(from_dir)
1234
 
            if from_dir_id is None:
1235
 
                # Directory not versioned
1236
 
                return
1237
 
            from_dir_abspath = pathjoin(self.basedir, from_dir)
1238
 
        else:
1239
 
            from_dir_id = inv.root.file_id
1240
 
            from_dir_abspath = self.basedir
1241
 
        children = os.listdir(from_dir_abspath)
 
1026
        children = os.listdir(self.basedir)
1242
1027
        children.sort()
1243
 
        # jam 20060527 The kernel sized tree seems equivalent whether we
 
1028
        # jam 20060527 The kernel sized tree seems equivalent whether we 
1244
1029
        # use a deque and popleft to keep them sorted, or if we use a plain
1245
1030
        # list and just reverse() them.
1246
1031
        children = collections.deque(children)
1247
 
        stack = [(from_dir_id, u'', from_dir_abspath, children)]
 
1032
        stack = [(inv.root.file_id, u'', self.basedir, children)]
1248
1033
        while stack:
1249
1034
            from_dir_id, from_dir_relpath, from_dir_abspath, children = stack[-1]
1250
1035
 
1266
1051
 
1267
1052
                # absolute path
1268
1053
                fap = from_dir_abspath + '/' + f
1269
 
 
1270
 
                dir_ie = inv[from_dir_id]
1271
 
                if dir_ie.kind == 'directory':
1272
 
                    f_ie = dir_ie.children.get(f)
1273
 
                else:
1274
 
                    f_ie = None
 
1054
                
 
1055
                f_ie = inv.get_child(from_dir_id, f)
1275
1056
                if f_ie:
1276
1057
                    c = 'V'
1277
1058
                elif self.is_ignored(fp[1:]):
1278
1059
                    c = 'I'
1279
1060
                else:
1280
 
                    # we may not have found this file, because of a unicode
1281
 
                    # issue, or because the directory was actually a symlink.
 
1061
                    # we may not have found this file, because of a unicode issue
1282
1062
                    f_norm, can_access = osutils.normalized_filename(f)
1283
1063
                    if f == f_norm or not can_access:
1284
1064
                        # No change, so treat this file normally
1309
1089
                    except KeyError:
1310
1090
                        yield fp[1:], c, fk, None, TreeEntry()
1311
1091
                    continue
1312
 
 
 
1092
                
1313
1093
                if fk != 'directory':
1314
1094
                    continue
1315
1095
 
1316
 
                # But do this child first if recursing down
1317
 
                if recursive:
1318
 
                    new_children = os.listdir(fap)
1319
 
                    new_children.sort()
1320
 
                    new_children = collections.deque(new_children)
1321
 
                    stack.append((f_ie.file_id, fp, fap, new_children))
1322
 
                    # Break out of inner loop,
1323
 
                    # so that we start outer loop with child
1324
 
                    break
 
1096
                # But do this child first
 
1097
                new_children = os.listdir(fap)
 
1098
                new_children.sort()
 
1099
                new_children = collections.deque(new_children)
 
1100
                stack.append((f_ie.file_id, fp, fap, new_children))
 
1101
                # Break out of inner loop,
 
1102
                # so that we start outer loop with child
 
1103
                break
1325
1104
            else:
1326
1105
                # if we finished all children, pop it off the stack
1327
1106
                stack.pop()
1328
1107
 
1329
1108
    @needs_tree_write_lock
1330
 
    def move(self, from_paths, to_dir=None, after=False):
 
1109
    def move(self, from_paths, to_dir=None, after=False, **kwargs):
1331
1110
        """Rename files.
1332
1111
 
1333
1112
        to_dir must exist in the inventory.
1334
1113
 
1335
1114
        If to_dir exists and is a directory, the files are moved into
1336
 
        it, keeping their old names.
 
1115
        it, keeping their old names.  
1337
1116
 
1338
1117
        Note that to_dir is only the last component of the new name;
1339
1118
        this doesn't change the directory.
1367
1146
 
1368
1147
        # check for deprecated use of signature
1369
1148
        if to_dir is None:
1370
 
            raise TypeError('You must supply a target directory')
 
1149
            to_dir = kwargs.get('to_name', None)
 
1150
            if to_dir is None:
 
1151
                raise TypeError('You must supply a target directory')
 
1152
            else:
 
1153
                symbol_versioning.warn('The parameter to_name was deprecated'
 
1154
                                       ' in version 0.13. Use to_dir instead',
 
1155
                                       DeprecationWarning)
 
1156
 
1371
1157
        # check destination directory
1372
 
        if isinstance(from_paths, basestring):
1373
 
            raise ValueError()
 
1158
        assert not isinstance(from_paths, basestring)
1374
1159
        inv = self.inventory
1375
1160
        to_abs = self.abspath(to_dir)
1376
1161
        if not isdir(to_abs):
1460
1245
                only_change_inv = True
1461
1246
            elif self.has_filename(from_rel) and not self.has_filename(to_rel):
1462
1247
                only_change_inv = False
1463
 
            elif (not self.case_sensitive
1464
 
                  and from_rel.lower() == to_rel.lower()
1465
 
                  and self.has_filename(from_rel)):
1466
 
                only_change_inv = False
1467
1248
            else:
1468
1249
                # something is wrong, so lets determine what exactly
1469
1250
                if not self.has_filename(from_rel) and \
1472
1253
                        errors.PathsDoNotExist(paths=(str(from_rel),
1473
1254
                        str(to_rel))))
1474
1255
                else:
1475
 
                    raise errors.RenameFailedFilesExist(from_rel, to_rel)
 
1256
                    raise errors.RenameFailedFilesExist(from_rel, to_rel,
 
1257
                        extra="(Use --after to update the Bazaar id)")
1476
1258
            rename_entry.only_change_inv = only_change_inv
1477
1259
        return rename_entries
1478
1260
 
1498
1280
        inv = self.inventory
1499
1281
        for entry in moved:
1500
1282
            try:
1501
 
                self._move_entry(WorkingTree._RenameEntry(
1502
 
                    entry.to_rel, entry.from_id,
 
1283
                self._move_entry(_RenameEntry(entry.to_rel, entry.from_id,
1503
1284
                    entry.to_tail, entry.to_parent_id, entry.from_rel,
1504
1285
                    entry.from_tail, entry.from_parent_id,
1505
1286
                    entry.only_change_inv))
1556
1337
        from_tail = splitpath(from_rel)[-1]
1557
1338
        from_id = inv.path2id(from_rel)
1558
1339
        if from_id is None:
1559
 
            # if file is missing in the inventory maybe it's in the basis_tree
1560
 
            basis_tree = self.branch.basis_tree()
1561
 
            from_id = basis_tree.path2id(from_rel)
1562
 
            if from_id is None:
1563
 
                raise errors.BzrRenameFailedError(from_rel,to_rel,
1564
 
                    errors.NotVersionedError(path=str(from_rel)))
1565
 
            # put entry back in the inventory so we can rename it
1566
 
            from_entry = basis_tree.inventory[from_id].copy()
1567
 
            inv.add(from_entry)
1568
 
        else:
1569
 
            from_entry = inv[from_id]
 
1340
            raise errors.BzrRenameFailedError(from_rel,to_rel,
 
1341
                errors.NotVersionedError(path=str(from_rel)))
 
1342
        from_entry = inv[from_id]
1570
1343
        from_parent_id = from_entry.parent_id
1571
1344
        to_dir, to_tail = os.path.split(to_rel)
1572
1345
        to_dir_id = inv.path2id(to_dir)
1618
1391
        These are files in the working directory that are not versioned or
1619
1392
        control files or ignored.
1620
1393
        """
1621
 
        # force the extras method to be fully executed before returning, to
 
1394
        # force the extras method to be fully executed before returning, to 
1622
1395
        # prevent race conditions with the lock
1623
1396
        return iter(
1624
1397
            [subp for subp in self.extras() if not self.is_ignored(subp)])
1634
1407
        :raises: NoSuchId if any fileid is not currently versioned.
1635
1408
        """
1636
1409
        for file_id in file_ids:
1637
 
            if file_id not in self._inventory:
1638
 
                raise errors.NoSuchId(self, file_id)
1639
 
        for file_id in file_ids:
 
1410
            file_id = osutils.safe_file_id(file_id)
1640
1411
            if self._inventory.has_id(file_id):
1641
1412
                self._inventory.remove_recursive_id(file_id)
 
1413
            else:
 
1414
                raise errors.NoSuchId(self, file_id)
1642
1415
        if len(file_ids):
1643
 
            # in the future this should just set a dirty bit to wait for the
 
1416
            # in the future this should just set a dirty bit to wait for the 
1644
1417
            # final unlock. However, until all methods of workingtree start
1645
 
            # with the current in -memory inventory rather than triggering
 
1418
            # with the current in -memory inventory rather than triggering 
1646
1419
            # a read, it is more complex - we need to teach read_inventory
1647
1420
            # to know when to read, and when to not read first... and possibly
1648
1421
            # to save first when the in memory one may be corrupted.
1649
1422
            # so for now, we just only write it if it is indeed dirty.
1650
1423
            # - RBC 20060907
1651
1424
            self._write_inventory(self._inventory)
 
1425
    
 
1426
    @deprecated_method(zero_eight)
 
1427
    def iter_conflicts(self):
 
1428
        """List all files in the tree that have text or content conflicts.
 
1429
        DEPRECATED.  Use conflicts instead."""
 
1430
        return self._iter_conflicts()
1652
1431
 
1653
1432
    def _iter_conflicts(self):
1654
1433
        conflicted = set()
1663
1442
 
1664
1443
    @needs_write_lock
1665
1444
    def pull(self, source, overwrite=False, stop_revision=None,
1666
 
             change_reporter=None, possible_transports=None, local=False):
 
1445
             change_reporter=None):
 
1446
        top_pb = bzrlib.ui.ui_factory.nested_progress_bar()
1667
1447
        source.lock_read()
1668
1448
        try:
 
1449
            pp = ProgressPhase("Pull phase", 2, top_pb)
 
1450
            pp.next_phase()
1669
1451
            old_revision_info = self.branch.last_revision_info()
1670
1452
            basis_tree = self.basis_tree()
1671
 
            count = self.branch.pull(source, overwrite, stop_revision,
1672
 
                                     possible_transports=possible_transports,
1673
 
                                     local=local)
 
1453
            count = self.branch.pull(source, overwrite, stop_revision)
1674
1454
            new_revision_info = self.branch.last_revision_info()
1675
1455
            if new_revision_info != old_revision_info:
 
1456
                pp.next_phase()
1676
1457
                repository = self.branch.repository
 
1458
                pb = bzrlib.ui.ui_factory.nested_progress_bar()
1677
1459
                basis_tree.lock_read()
1678
1460
                try:
1679
1461
                    new_basis_tree = self.branch.basis_tree()
1682
1464
                                new_basis_tree,
1683
1465
                                basis_tree,
1684
1466
                                this_tree=self,
1685
 
                                pb=None,
 
1467
                                pb=pb,
1686
1468
                                change_reporter=change_reporter)
1687
 
                    basis_root_id = basis_tree.get_root_id()
1688
 
                    new_root_id = new_basis_tree.get_root_id()
1689
 
                    if basis_root_id != new_root_id:
1690
 
                        self.set_root_id(new_root_id)
 
1469
                    if (basis_tree.inventory.root is None and
 
1470
                        new_basis_tree.inventory.root is not None):
 
1471
                        self.set_root_id(new_basis_tree.inventory.root.file_id)
1691
1472
                finally:
 
1473
                    pb.finished()
1692
1474
                    basis_tree.unlock()
1693
1475
                # TODO - dedup parents list with things merged by pull ?
1694
1476
                # reuse the revisiontree we merged against to set the new
1695
1477
                # tree data.
1696
1478
                parent_trees = [(self.branch.last_revision(), new_basis_tree)]
1697
 
                # we have to pull the merge trees out again, because
1698
 
                # merge_inner has set the ids. - this corner is not yet
 
1479
                # we have to pull the merge trees out again, because 
 
1480
                # merge_inner has set the ids. - this corner is not yet 
1699
1481
                # layered well enough to prevent double handling.
1700
1482
                # XXX TODO: Fix the double handling: telling the tree about
1701
1483
                # the already known parent data is wasteful.
1707
1489
            return count
1708
1490
        finally:
1709
1491
            source.unlock()
 
1492
            top_pb.finished()
1710
1493
 
1711
1494
    @needs_write_lock
1712
1495
    def put_file_bytes_non_atomic(self, file_id, bytes):
1713
1496
        """See MutableTree.put_file_bytes_non_atomic."""
 
1497
        file_id = osutils.safe_file_id(file_id)
1714
1498
        stream = file(self.id2abspath(file_id), 'wb')
1715
1499
        try:
1716
1500
            stream.write(bytes)
1738
1522
 
1739
1523
            fl = []
1740
1524
            for subf in os.listdir(dirabs):
1741
 
                if self.bzrdir.is_control_filename(subf):
 
1525
                if subf == '.bzr':
1742
1526
                    continue
1743
1527
                if subf not in dir_entry.children:
1744
 
                    try:
1745
 
                        (subf_norm,
1746
 
                         can_access) = osutils.normalized_filename(subf)
1747
 
                    except UnicodeDecodeError:
1748
 
                        path_os_enc = path.encode(osutils._fs_enc)
1749
 
                        relpath = path_os_enc + '/' + subf
1750
 
                        raise errors.BadFilenameEncoding(relpath,
1751
 
                                                         osutils._fs_enc)
 
1528
                    subf_norm, can_access = osutils.normalized_filename(subf)
1752
1529
                    if subf_norm != subf and can_access:
1753
1530
                        if subf_norm not in dir_entry.children:
1754
1531
                            fl.append(subf_norm)
1755
1532
                    else:
1756
1533
                        fl.append(subf)
1757
 
 
 
1534
            
1758
1535
            fl.sort()
1759
1536
            for subf in fl:
1760
1537
                subp = pathjoin(path, subf)
1776
1553
        if ignoreset is not None:
1777
1554
            return ignoreset
1778
1555
 
1779
 
        ignore_globs = set()
 
1556
        ignore_globs = set(bzrlib.DEFAULT_IGNORE)
1780
1557
        ignore_globs.update(ignores.get_runtime_ignores())
1781
1558
        ignore_globs.update(ignores.get_user_ignores())
1782
1559
        if self.has_filename(bzrlib.IGNORE_FILENAME):
1797
1574
        r"""Check whether the filename matches an ignore pattern.
1798
1575
 
1799
1576
        Patterns containing '/' or '\' need to match the whole path;
1800
 
        others match against only the last component.  Patterns starting
1801
 
        with '!' are ignore exceptions.  Exceptions take precedence
1802
 
        over regular patterns and cause the filename to not be ignored.
 
1577
        others match against only the last component.
1803
1578
 
1804
1579
        If the file is ignored, returns the pattern which caused it to
1805
1580
        be ignored, otherwise None.  So this can simply be used as a
1806
1581
        boolean if desired."""
1807
1582
        if getattr(self, '_ignoreglobster', None) is None:
1808
 
            self._ignoreglobster = globbing.ExceptionGlobster(self.get_ignore_list())
 
1583
            self._ignoreglobster = globbing.Globster(self.get_ignore_list())
1809
1584
        return self._ignoreglobster.match(filename)
1810
1585
 
1811
1586
    def kind(self, file_id):
1812
1587
        return file_kind(self.id2abspath(file_id))
1813
1588
 
1814
 
    def stored_kind(self, file_id):
1815
 
        """See Tree.stored_kind"""
1816
 
        return self.inventory[file_id].kind
1817
 
 
1818
1589
    def _comparison_data(self, entry, path):
1819
1590
        abspath = self.abspath(path)
1820
1591
        try:
1830
1601
            mode = stat_value.st_mode
1831
1602
            kind = osutils.file_kind_from_stat_mode(mode)
1832
1603
            if not supports_executable():
1833
 
                executable = entry is not None and entry.executable
 
1604
                executable = entry.executable
1834
1605
            else:
1835
1606
                executable = bool(stat.S_ISREG(mode) and stat.S_IEXEC & mode)
1836
1607
        return kind, executable, stat_value
1851
1622
    @needs_read_lock
1852
1623
    def _last_revision(self):
1853
1624
        """helper for get_parent_ids."""
1854
 
        return _mod_revision.ensure_null(self.branch.last_revision())
 
1625
        return self.branch.last_revision()
1855
1626
 
1856
1627
    def is_locked(self):
1857
1628
        return self._control_files.is_locked()
1861
1632
            raise errors.ObjectNotLocked(self)
1862
1633
 
1863
1634
    def lock_read(self):
1864
 
        """Lock the tree for reading.
1865
 
 
1866
 
        This also locks the branch, and can be unlocked via self.unlock().
1867
 
 
1868
 
        :return: A bzrlib.lock.LogicalLockResult.
1869
 
        """
 
1635
        """See Branch.lock_read, and WorkingTree.unlock."""
1870
1636
        if not self.is_locked():
1871
1637
            self._reset_data()
1872
1638
        self.branch.lock_read()
1873
1639
        try:
1874
 
            self._control_files.lock_read()
1875
 
            return LogicalLockResult(self.unlock)
 
1640
            return self._control_files.lock_read()
1876
1641
        except:
1877
1642
            self.branch.unlock()
1878
1643
            raise
1879
1644
 
1880
1645
    def lock_tree_write(self):
1881
 
        """See MutableTree.lock_tree_write, and WorkingTree.unlock.
1882
 
 
1883
 
        :return: A bzrlib.lock.LogicalLockResult.
1884
 
        """
 
1646
        """See MutableTree.lock_tree_write, and WorkingTree.unlock."""
1885
1647
        if not self.is_locked():
1886
1648
            self._reset_data()
1887
1649
        self.branch.lock_read()
1888
1650
        try:
1889
 
            self._control_files.lock_write()
1890
 
            return LogicalLockResult(self.unlock)
 
1651
            return self._control_files.lock_write()
1891
1652
        except:
1892
1653
            self.branch.unlock()
1893
1654
            raise
1894
1655
 
1895
1656
    def lock_write(self):
1896
 
        """See MutableTree.lock_write, and WorkingTree.unlock.
1897
 
 
1898
 
        :return: A bzrlib.lock.LogicalLockResult.
1899
 
        """
 
1657
        """See MutableTree.lock_write, and WorkingTree.unlock."""
1900
1658
        if not self.is_locked():
1901
1659
            self._reset_data()
1902
1660
        self.branch.lock_write()
1903
1661
        try:
1904
 
            self._control_files.lock_write()
1905
 
            return LogicalLockResult(self.unlock)
 
1662
            return self._control_files.lock_write()
1906
1663
        except:
1907
1664
            self.branch.unlock()
1908
1665
            raise
1916
1673
    def _reset_data(self):
1917
1674
        """Reset transient data that cannot be revalidated."""
1918
1675
        self._inventory_is_modified = False
1919
 
        f = self._transport.get('inventory')
1920
 
        try:
1921
 
            result = self._deserialize(f)
1922
 
        finally:
1923
 
            f.close()
 
1676
        result = self._deserialize(self._control_files.get('inventory'))
1924
1677
        self._set_inventory(result, dirty=False)
1925
1678
 
1926
1679
    @needs_tree_write_lock
1927
1680
    def set_last_revision(self, new_revision):
1928
1681
        """Change the last revision in the working tree."""
 
1682
        new_revision = osutils.safe_revision_id(new_revision)
1929
1683
        if self._change_last_revision(new_revision):
1930
1684
            self._cache_basis_inventory(new_revision)
1931
1685
 
1932
1686
    def _change_last_revision(self, new_revision):
1933
1687
        """Template method part of set_last_revision to perform the change.
1934
 
 
 
1688
        
1935
1689
        This is used to allow WorkingTree3 instances to not affect branch
1936
1690
        when their last revision is set.
1937
1691
        """
1938
 
        if _mod_revision.is_null(new_revision):
 
1692
        if new_revision is None:
1939
1693
            self.branch.set_revision_history([])
1940
1694
            return False
1941
1695
        try:
1947
1701
 
1948
1702
    def _write_basis_inventory(self, xml):
1949
1703
        """Write the basis inventory XML to the basis-inventory file"""
 
1704
        assert isinstance(xml, str), 'serialised xml must be bytestring.'
1950
1705
        path = self._basis_inventory_name()
1951
1706
        sio = StringIO(xml)
1952
 
        self._transport.put_file(path, sio,
1953
 
            mode=self.bzrdir._get_file_mode())
 
1707
        self._control_files.put(path, sio)
1954
1708
 
1955
1709
    def _create_basis_xml_from_inventory(self, revision_id, inventory):
1956
1710
        """Create the text that will be saved in basis-inventory"""
1957
 
        inventory.revision_id = revision_id
 
1711
        # TODO: jam 20070209 This should be redundant, as the revision_id
 
1712
        #       as all callers should have already converted the revision_id to
 
1713
        #       utf8
 
1714
        inventory.revision_id = osutils.safe_revision_id(revision_id)
1958
1715
        return xml7.serializer_v7.write_inventory_to_string(inventory)
1959
1716
 
1960
1717
    def _cache_basis_inventory(self, new_revision):
1963
1720
        # as commit already has that ready-to-use [while the format is the
1964
1721
        # same, that is].
1965
1722
        try:
1966
 
            # this double handles the inventory - unpack and repack -
 
1723
            # this double handles the inventory - unpack and repack - 
1967
1724
            # but is easier to understand. We can/should put a conditional
1968
1725
            # in here based on whether the inventory is in the latest format
1969
1726
            # - perhaps we should repack all inventories on a repository
1970
1727
            # upgrade ?
1971
1728
            # the fast path is to copy the raw xml from the repository. If the
1972
 
            # xml contains 'revision_id="', then we assume the right
 
1729
            # xml contains 'revision_id="', then we assume the right 
1973
1730
            # revision_id is set. We must check for this full string, because a
1974
1731
            # root node id can legitimately look like 'revision_id' but cannot
1975
1732
            # contain a '"'.
1976
 
            xml = self.branch.repository._get_inventory_xml(new_revision)
 
1733
            xml = self.branch.repository.get_inventory_xml(new_revision)
1977
1734
            firstline = xml.split('\n', 1)[0]
1978
 
            if (not 'revision_id="' in firstline or
 
1735
            if (not 'revision_id="' in firstline or 
1979
1736
                'format="7"' not in firstline):
1980
 
                inv = self.branch.repository._serializer.read_inventory_from_string(
1981
 
                    xml, new_revision)
 
1737
                inv = self.branch.repository.deserialise_inventory(
 
1738
                    new_revision, xml)
1982
1739
                xml = self._create_basis_xml_from_inventory(new_revision, inv)
1983
1740
            self._write_basis_inventory(xml)
1984
1741
        except (errors.NoSuchRevision, errors.RevisionNotPresent):
1987
1744
    def read_basis_inventory(self):
1988
1745
        """Read the cached basis inventory."""
1989
1746
        path = self._basis_inventory_name()
1990
 
        return self._transport.get_bytes(path)
1991
 
 
 
1747
        return self._control_files.get(path).read()
 
1748
        
1992
1749
    @needs_read_lock
1993
1750
    def read_working_inventory(self):
1994
1751
        """Read the working inventory.
1995
 
 
 
1752
        
1996
1753
        :raises errors.InventoryModified: read_working_inventory will fail
1997
1754
            when the current in memory inventory has been modified.
1998
1755
        """
1999
 
        # conceptually this should be an implementation detail of the tree.
 
1756
        # conceptually this should be an implementation detail of the tree. 
2000
1757
        # XXX: Deprecate this.
2001
1758
        # ElementTree does its own conversion from UTF-8, so open in
2002
1759
        # binary.
2003
1760
        if self._inventory_is_modified:
2004
1761
            raise errors.InventoryModified(self)
2005
 
        f = self._transport.get('inventory')
2006
 
        try:
2007
 
            result = self._deserialize(f)
2008
 
        finally:
2009
 
            f.close()
 
1762
        result = self._deserialize(self._control_files.get('inventory'))
2010
1763
        self._set_inventory(result, dirty=False)
2011
1764
        return result
2012
1765
 
2013
1766
    @needs_tree_write_lock
2014
 
    def remove(self, files, verbose=False, to_file=None, keep_files=True,
2015
 
        force=False):
2016
 
        """Remove nominated files from the working inventory.
2017
 
 
2018
 
        :files: File paths relative to the basedir.
2019
 
        :keep_files: If true, the files will also be kept.
2020
 
        :force: Delete files and directories, even if they are changed and
2021
 
            even if the directories are not empty.
 
1767
    def remove(self, files, verbose=False, to_file=None):
 
1768
        """Remove nominated files from the working inventory..
 
1769
 
 
1770
        This does not remove their text.  This does not run on XXX on what? RBC
 
1771
 
 
1772
        TODO: Refuse to remove modified files unless --force is given?
 
1773
 
 
1774
        TODO: Do something useful with directories.
 
1775
 
 
1776
        TODO: Should this remove the text or not?  Tough call; not
 
1777
        removing may be useful and the user can just use use rm, and
 
1778
        is the opposite of add.  Removing it is consistent with most
 
1779
        other tools.  Maybe an option.
2022
1780
        """
 
1781
        ## TODO: Normalize names
 
1782
        ## TODO: Remove nested loops; better scalability
2023
1783
        if isinstance(files, basestring):
2024
1784
            files = [files]
2025
1785
 
2026
 
        inv_delta = []
2027
 
 
2028
 
        all_files = set() # specified and nested files 
2029
 
        unknown_nested_files=set()
2030
 
        if to_file is None:
2031
 
            to_file = sys.stdout
2032
 
 
2033
 
        files_to_backup = []
2034
 
 
2035
 
        def recurse_directory_to_add_files(directory):
2036
 
            # Recurse directory and add all files
2037
 
            # so we can check if they have changed.
2038
 
            for parent_info, file_infos in self.walkdirs(directory):
2039
 
                for relpath, basename, kind, lstat, fileid, kind in file_infos:
2040
 
                    # Is it versioned or ignored?
2041
 
                    if self.path2id(relpath):
2042
 
                        # Add nested content for deletion.
2043
 
                        all_files.add(relpath)
2044
 
                    else:
2045
 
                        # Files which are not versioned
2046
 
                        # should be treated as unknown.
2047
 
                        files_to_backup.append(relpath)
2048
 
 
2049
 
        for filename in files:
2050
 
            # Get file name into canonical form.
2051
 
            abspath = self.abspath(filename)
2052
 
            filename = self.relpath(abspath)
2053
 
            if len(filename) > 0:
2054
 
                all_files.add(filename)
2055
 
                recurse_directory_to_add_files(filename)
2056
 
 
2057
 
        files = list(all_files)
2058
 
 
2059
 
        if len(files) == 0:
2060
 
            return # nothing to do
2061
 
 
2062
 
        # Sort needed to first handle directory content before the directory
2063
 
        files.sort(reverse=True)
2064
 
 
2065
 
        # Bail out if we are going to delete files we shouldn't
2066
 
        if not keep_files and not force:
2067
 
            for (file_id, path, content_change, versioned, parent_id, name,
2068
 
                 kind, executable) in self.iter_changes(self.basis_tree(),
2069
 
                     include_unchanged=True, require_versioned=False,
2070
 
                     want_unversioned=True, specific_files=files):
2071
 
                if versioned[0] == False:
2072
 
                    # The record is unknown or newly added
2073
 
                    files_to_backup.append(path[1])
2074
 
                elif (content_change and (kind[1] is not None) and
2075
 
                        osutils.is_inside_any(files, path[1])):
2076
 
                    # Versioned and changed, but not deleted, and still
2077
 
                    # in one of the dirs to be deleted.
2078
 
                    files_to_backup.append(path[1])
2079
 
 
2080
 
        def backup(file_to_backup):
2081
 
            backup_name = self.bzrdir.generate_backup_name(file_to_backup)
2082
 
            osutils.rename(abs_path, self.abspath(backup_name))
2083
 
            return "removed %s (but kept a copy: %s)" % (file_to_backup, backup_name)
2084
 
 
2085
 
        # Build inv_delta and delete files where applicable,
2086
 
        # do this before any modifications to inventory.
 
1786
        inv = self.inventory
 
1787
 
 
1788
        # do this before any modifications
2087
1789
        for f in files:
2088
 
            fid = self.path2id(f)
2089
 
            message = None
 
1790
            fid = inv.path2id(f)
2090
1791
            if not fid:
2091
 
                message = "%s is not versioned." % (f,)
 
1792
                note("%s is not versioned."%f)
2092
1793
            else:
2093
1794
                if verbose:
2094
 
                    # having removed it, it must be either ignored or unknown
 
1795
                    # having remove it, it must be either ignored or unknown
2095
1796
                    if self.is_ignored(f):
2096
1797
                        new_status = 'I'
2097
1798
                    else:
2098
1799
                        new_status = '?'
2099
 
                    # XXX: Really should be a more abstract reporter interface
2100
 
                    kind_ch = osutils.kind_marker(self.kind(fid))
2101
 
                    to_file.write(new_status + '       ' + f + kind_ch + '\n')
2102
 
                # Unversion file
2103
 
                inv_delta.append((f, None, fid, None))
2104
 
                message = "removed %s" % (f,)
2105
 
 
2106
 
            if not keep_files:
2107
 
                abs_path = self.abspath(f)
2108
 
                if osutils.lexists(abs_path):
2109
 
                    if (osutils.isdir(abs_path) and
2110
 
                        len(os.listdir(abs_path)) > 0):
2111
 
                        if force:
2112
 
                            osutils.rmtree(abs_path)
2113
 
                            message = "deleted %s" % (f,)
2114
 
                        else:
2115
 
                            message = backup(f)
2116
 
                    else:
2117
 
                        if f in files_to_backup:
2118
 
                            message = backup(f)
2119
 
                        else:
2120
 
                            osutils.delete_any(abs_path)
2121
 
                            message = "deleted %s" % (f,)
2122
 
                elif message is not None:
2123
 
                    # Only care if we haven't done anything yet.
2124
 
                    message = "%s does not exist." % (f,)
2125
 
 
2126
 
            # Print only one message (if any) per file.
2127
 
            if message is not None:
2128
 
                note(message)
2129
 
        self.apply_inventory_delta(inv_delta)
 
1800
                    textui.show_status(new_status, inv[fid].kind, f,
 
1801
                                       to_file=to_file)
 
1802
                del inv[fid]
 
1803
 
 
1804
        self._write_inventory(inv)
2130
1805
 
2131
1806
    @needs_tree_write_lock
2132
 
    def revert(self, filenames=None, old_tree=None, backups=True,
2133
 
               pb=None, report_changes=False):
 
1807
    def revert(self, filenames, old_tree=None, backups=True, 
 
1808
               pb=DummyProgress(), report_changes=False):
2134
1809
        from bzrlib.conflicts import resolve
2135
 
        if filenames == []:
2136
 
            filenames = None
2137
 
            symbol_versioning.warn('Using [] to revert all files is deprecated'
2138
 
                ' as of bzr 0.91.  Please use None (the default) instead.',
2139
 
                DeprecationWarning, stacklevel=2)
2140
1810
        if old_tree is None:
2141
 
            basis_tree = self.basis_tree()
2142
 
            basis_tree.lock_read()
2143
 
            old_tree = basis_tree
 
1811
            old_tree = self.basis_tree()
 
1812
        conflicts = transform.revert(self, old_tree, filenames, backups, pb,
 
1813
                                     report_changes)
 
1814
        if not len(filenames):
 
1815
            self.set_parent_ids(self.get_parent_ids()[:1])
 
1816
            resolve(self)
2144
1817
        else:
2145
 
            basis_tree = None
2146
 
        try:
2147
 
            conflicts = transform.revert(self, old_tree, filenames, backups, pb,
2148
 
                                         report_changes)
2149
 
            if filenames is None and len(self.get_parent_ids()) > 1:
2150
 
                parent_trees = []
2151
 
                last_revision = self.last_revision()
2152
 
                if last_revision != _mod_revision.NULL_REVISION:
2153
 
                    if basis_tree is None:
2154
 
                        basis_tree = self.basis_tree()
2155
 
                        basis_tree.lock_read()
2156
 
                    parent_trees.append((last_revision, basis_tree))
2157
 
                self.set_parent_trees(parent_trees)
2158
 
                resolve(self)
2159
 
            else:
2160
 
                resolve(self, filenames, ignore_misses=True, recursive=True)
2161
 
        finally:
2162
 
            if basis_tree is not None:
2163
 
                basis_tree.unlock()
 
1818
            resolve(self, filenames, ignore_misses=True)
2164
1819
        return conflicts
2165
1820
 
2166
1821
    def revision_tree(self, revision_id):
2193
1848
    def set_inventory(self, new_inventory_list):
2194
1849
        from bzrlib.inventory import (Inventory,
2195
1850
                                      InventoryDirectory,
 
1851
                                      InventoryEntry,
2196
1852
                                      InventoryFile,
2197
1853
                                      InventoryLink)
2198
1854
        inv = Inventory(self.get_root_id())
2200
1856
            name = os.path.basename(path)
2201
1857
            if name == "":
2202
1858
                continue
2203
 
            # fixme, there should be a factory function inv,add_??
 
1859
            # fixme, there should be a factory function inv,add_?? 
2204
1860
            if kind == 'directory':
2205
1861
                inv.add(InventoryDirectory(file_id, name, parent))
2206
1862
            elif kind == 'file':
2214
1870
    @needs_tree_write_lock
2215
1871
    def set_root_id(self, file_id):
2216
1872
        """Set the root id for this tree."""
2217
 
        # for compatability
 
1873
        # for compatability 
2218
1874
        if file_id is None:
2219
 
            raise ValueError(
2220
 
                'WorkingTree.set_root_id with fileid=None')
2221
 
        file_id = osutils.safe_file_id(file_id)
 
1875
            symbol_versioning.warn(symbol_versioning.zero_twelve
 
1876
                % 'WorkingTree.set_root_id with fileid=None',
 
1877
                DeprecationWarning,
 
1878
                stacklevel=3)
 
1879
            file_id = ROOT_ID
 
1880
        else:
 
1881
            file_id = osutils.safe_file_id(file_id)
2222
1882
        self._set_root_id(file_id)
2223
1883
 
2224
1884
    def _set_root_id(self, file_id):
2225
1885
        """Set the root id for this tree, in a format specific manner.
2226
1886
 
2227
 
        :param file_id: The file id to assign to the root. It must not be
 
1887
        :param file_id: The file id to assign to the root. It must not be 
2228
1888
            present in the current inventory or an error will occur. It must
2229
1889
            not be None, but rather a valid file id.
2230
1890
        """
2249
1909
 
2250
1910
    def unlock(self):
2251
1911
        """See Branch.unlock.
2252
 
 
 
1912
        
2253
1913
        WorkingTree locking just uses the Branch locking facilities.
2254
1914
        This is current because all working trees have an embedded branch
2255
1915
        within them. IF in the future, we were to make branch data shareable
2256
 
        between multiple working trees, i.e. via shared storage, then we
 
1916
        between multiple working trees, i.e. via shared storage, then we 
2257
1917
        would probably want to lock both the local tree, and the branch.
2258
1918
        """
2259
1919
        raise NotImplementedError(self.unlock)
2260
1920
 
2261
 
    _marker = object()
2262
 
 
2263
 
    def update(self, change_reporter=None, possible_transports=None,
2264
 
               revision=None, old_tip=_marker):
 
1921
    def update(self):
2265
1922
        """Update a working tree along its branch.
2266
1923
 
2267
1924
        This will update the branch if its bound too, which means we have
2285
1942
        - Merge current state -> basis tree of the master w.r.t. the old tree
2286
1943
          basis.
2287
1944
        - Do a 'normal' merge of the old branch basis if it is relevant.
2288
 
 
2289
 
        :param revision: The target revision to update to. Must be in the
2290
 
            revision history.
2291
 
        :param old_tip: If branch.update() has already been run, the value it
2292
 
            returned (old tip of the branch or None). _marker is used
2293
 
            otherwise.
2294
1945
        """
2295
 
        if self.branch.get_bound_location() is not None:
 
1946
        if self.branch.get_master_branch() is not None:
2296
1947
            self.lock_write()
2297
 
            update_branch = (old_tip is self._marker)
 
1948
            update_branch = True
2298
1949
        else:
2299
1950
            self.lock_tree_write()
2300
1951
            update_branch = False
2301
1952
        try:
2302
1953
            if update_branch:
2303
 
                old_tip = self.branch.update(possible_transports)
 
1954
                old_tip = self.branch.update()
2304
1955
            else:
2305
 
                if old_tip is self._marker:
2306
 
                    old_tip = None
2307
 
            return self._update_tree(old_tip, change_reporter, revision)
 
1956
                old_tip = None
 
1957
            return self._update_tree(old_tip)
2308
1958
        finally:
2309
1959
            self.unlock()
2310
1960
 
2311
1961
    @needs_tree_write_lock
2312
 
    def _update_tree(self, old_tip=None, change_reporter=None, revision=None):
 
1962
    def _update_tree(self, old_tip=None):
2313
1963
        """Update a tree to the master branch.
2314
1964
 
2315
1965
        :param old_tip: if supplied, the previous tip revision the branch,
2321
1971
        # cant set that until we update the working trees last revision to be
2322
1972
        # one from the new branch, because it will just get absorbed by the
2323
1973
        # parent de-duplication logic.
2324
 
        #
 
1974
        # 
2325
1975
        # We MUST save it even if an error occurs, because otherwise the users
2326
1976
        # local work is unreferenced and will appear to have been lost.
2327
 
        #
2328
 
        nb_conflicts = 0
 
1977
        # 
 
1978
        result = 0
2329
1979
        try:
2330
1980
            last_rev = self.get_parent_ids()[0]
2331
1981
        except IndexError:
2332
 
            last_rev = _mod_revision.NULL_REVISION
2333
 
        if revision is None:
2334
 
            revision = self.branch.last_revision()
2335
 
 
2336
 
        old_tip = old_tip or _mod_revision.NULL_REVISION
2337
 
 
2338
 
        if not _mod_revision.is_null(old_tip) and old_tip != last_rev:
2339
 
            # the branch we are bound to was updated
2340
 
            # merge those changes in first
2341
 
            base_tree  = self.basis_tree()
2342
 
            other_tree = self.branch.repository.revision_tree(old_tip)
2343
 
            nb_conflicts = merge.merge_inner(self.branch, other_tree,
2344
 
                                             base_tree, this_tree=self,
2345
 
                                             change_reporter=change_reporter)
2346
 
            if nb_conflicts:
2347
 
                self.add_parent_tree((old_tip, other_tree))
2348
 
                trace.note('Rerun update after fixing the conflicts.')
2349
 
                return nb_conflicts
2350
 
 
2351
 
        if last_rev != _mod_revision.ensure_null(revision):
2352
 
            # the working tree is up to date with the branch
2353
 
            # we can merge the specified revision from master
2354
 
            to_tree = self.branch.repository.revision_tree(revision)
2355
 
            to_root_id = to_tree.get_root_id()
2356
 
 
 
1982
            last_rev = None
 
1983
        if last_rev != self.branch.last_revision():
 
1984
            # merge tree state up to new branch tip.
2357
1985
            basis = self.basis_tree()
2358
1986
            basis.lock_read()
2359
1987
            try:
2360
 
                if (basis.inventory.root is None
2361
 
                    or basis.inventory.root.file_id != to_root_id):
2362
 
                    self.set_root_id(to_root_id)
 
1988
                to_tree = self.branch.basis_tree()
 
1989
                if basis.inventory.root is None:
 
1990
                    self.set_root_id(to_tree.inventory.root.file_id)
2363
1991
                    self.flush()
 
1992
                result += merge.merge_inner(
 
1993
                                      self.branch,
 
1994
                                      to_tree,
 
1995
                                      basis,
 
1996
                                      this_tree=self)
2364
1997
            finally:
2365
1998
                basis.unlock()
2366
 
 
2367
 
            # determine the branch point
2368
 
            graph = self.branch.repository.get_graph()
2369
 
            base_rev_id = graph.find_unique_lca(self.branch.last_revision(),
2370
 
                                                last_rev)
2371
 
            base_tree = self.branch.repository.revision_tree(base_rev_id)
2372
 
 
2373
 
            nb_conflicts = merge.merge_inner(self.branch, to_tree, base_tree,
2374
 
                                             this_tree=self,
2375
 
                                             change_reporter=change_reporter)
2376
 
            self.set_last_revision(revision)
2377
1999
            # TODO - dedup parents list with things merged by pull ?
2378
2000
            # reuse the tree we've updated to to set the basis:
2379
 
            parent_trees = [(revision, to_tree)]
 
2001
            parent_trees = [(self.branch.last_revision(), to_tree)]
2380
2002
            merges = self.get_parent_ids()[1:]
2381
2003
            # Ideally we ask the tree for the trees here, that way the working
2382
 
            # tree can decide whether to give us the entire tree or give us a
 
2004
            # tree can decide whether to give us teh entire tree or give us a
2383
2005
            # lazy initialised tree. dirstate for instance will have the trees
2384
2006
            # in ram already, whereas a last-revision + basis-inventory tree
2385
2007
            # will not, but also does not need them when setting parents.
2386
2008
            for parent in merges:
2387
2009
                parent_trees.append(
2388
2010
                    (parent, self.branch.repository.revision_tree(parent)))
2389
 
            if not _mod_revision.is_null(old_tip):
 
2011
            if old_tip is not None:
2390
2012
                parent_trees.append(
2391
2013
                    (old_tip, self.branch.repository.revision_tree(old_tip)))
2392
2014
            self.set_parent_trees(parent_trees)
2393
2015
            last_rev = parent_trees[0][0]
2394
 
        return nb_conflicts
 
2016
        else:
 
2017
            # the working tree had the same last-revision as the master
 
2018
            # branch did. We may still have pivot local work from the local
 
2019
            # branch into old_tip:
 
2020
            if old_tip is not None:
 
2021
                self.add_parent_tree_id(old_tip)
 
2022
        if old_tip and old_tip != last_rev:
 
2023
            # our last revision was not the prior branch last revision
 
2024
            # and we have converted that last revision to a pending merge.
 
2025
            # base is somewhere between the branch tip now
 
2026
            # and the now pending merge
 
2027
 
 
2028
            # Since we just modified the working tree and inventory, flush out
 
2029
            # the current state, before we modify it again.
 
2030
            # TODO: jam 20070214 WorkingTree3 doesn't require this, dirstate
 
2031
            #       requires it only because TreeTransform directly munges the
 
2032
            #       inventory and calls tree._write_inventory(). Ultimately we
 
2033
            #       should be able to remove this extra flush.
 
2034
            self.flush()
 
2035
            from bzrlib.revision import common_ancestor
 
2036
            try:
 
2037
                base_rev_id = common_ancestor(self.branch.last_revision(),
 
2038
                                              old_tip,
 
2039
                                              self.branch.repository)
 
2040
            except errors.NoCommonAncestor:
 
2041
                base_rev_id = None
 
2042
            base_tree = self.branch.repository.revision_tree(base_rev_id)
 
2043
            other_tree = self.branch.repository.revision_tree(old_tip)
 
2044
            result += merge.merge_inner(
 
2045
                                  self.branch,
 
2046
                                  other_tree,
 
2047
                                  base_tree,
 
2048
                                  this_tree=self)
 
2049
        return result
2395
2050
 
2396
2051
    def _write_hashcache_if_dirty(self):
2397
2052
        """Write out the hashcache if it is dirty."""
2448
2103
    def walkdirs(self, prefix=""):
2449
2104
        """Walk the directories of this tree.
2450
2105
 
2451
 
        returns a generator which yields items in the form:
2452
 
                ((curren_directory_path, fileid),
2453
 
                 [(file1_path, file1_name, file1_kind, (lstat), file1_id,
2454
 
                   file1_kind), ... ])
2455
 
 
2456
2106
        This API returns a generator, which is only valid during the current
2457
2107
        tree transaction - within a single lock_read or lock_write duration.
2458
2108
 
2459
 
        If the tree is not locked, it may cause an error to be raised,
2460
 
        depending on the tree implementation.
 
2109
        If the tree is not locked, it may cause an error to be raised, depending
 
2110
        on the tree implementation.
2461
2111
        """
2462
2112
        disk_top = self.abspath(prefix)
2463
2113
        if disk_top.endswith('/'):
2469
2119
            current_disk = disk_iterator.next()
2470
2120
            disk_finished = False
2471
2121
        except OSError, e:
2472
 
            if not (e.errno == errno.ENOENT or
2473
 
                (sys.platform == 'win32' and e.errno == ERROR_PATH_NOT_FOUND)):
 
2122
            if e.errno != errno.ENOENT:
2474
2123
                raise
2475
2124
            current_disk = None
2476
2125
            disk_finished = True
2481
2130
            current_inv = None
2482
2131
            inv_finished = True
2483
2132
        while not inv_finished or not disk_finished:
2484
 
            if current_disk:
2485
 
                ((cur_disk_dir_relpath, cur_disk_dir_path_from_top),
2486
 
                    cur_disk_dir_content) = current_disk
2487
 
            else:
2488
 
                ((cur_disk_dir_relpath, cur_disk_dir_path_from_top),
2489
 
                    cur_disk_dir_content) = ((None, None), None)
2490
2133
            if not disk_finished:
2491
2134
                # strip out .bzr dirs
2492
 
                if (cur_disk_dir_path_from_top[top_strip_len:] == '' and
2493
 
                    len(cur_disk_dir_content) > 0):
2494
 
                    # osutils.walkdirs can be made nicer -
 
2135
                if current_disk[0][1][top_strip_len:] == '':
 
2136
                    # osutils.walkdirs can be made nicer - 
2495
2137
                    # yield the path-from-prefix rather than the pathjoined
2496
2138
                    # value.
2497
 
                    bzrdir_loc = bisect_left(cur_disk_dir_content,
2498
 
                        ('.bzr', '.bzr'))
2499
 
                    if (bzrdir_loc < len(cur_disk_dir_content)
2500
 
                        and self.bzrdir.is_control_filename(
2501
 
                            cur_disk_dir_content[bzrdir_loc][0])):
 
2139
                    bzrdir_loc = bisect_left(current_disk[1], ('.bzr', '.bzr'))
 
2140
                    if current_disk[1][bzrdir_loc][0] == '.bzr':
2502
2141
                        # we dont yield the contents of, or, .bzr itself.
2503
 
                        del cur_disk_dir_content[bzrdir_loc]
 
2142
                        del current_disk[1][bzrdir_loc]
2504
2143
            if inv_finished:
2505
2144
                # everything is unknown
2506
2145
                direction = 1
2508
2147
                # everything is missing
2509
2148
                direction = -1
2510
2149
            else:
2511
 
                direction = cmp(current_inv[0][0], cur_disk_dir_relpath)
 
2150
                direction = cmp(current_inv[0][0], current_disk[0][0])
2512
2151
            if direction > 0:
2513
2152
                # disk is before inventory - unknown
2514
2153
                dirblock = [(relpath, basename, kind, stat, None, None) for
2515
 
                    relpath, basename, kind, stat, top_path in
2516
 
                    cur_disk_dir_content]
2517
 
                yield (cur_disk_dir_relpath, None), dirblock
 
2154
                    relpath, basename, kind, stat, top_path in current_disk[1]]
 
2155
                yield (current_disk[0][0], None), dirblock
2518
2156
                try:
2519
2157
                    current_disk = disk_iterator.next()
2520
2158
                except StopIteration:
2522
2160
            elif direction < 0:
2523
2161
                # inventory is before disk - missing.
2524
2162
                dirblock = [(relpath, basename, 'unknown', None, fileid, kind)
2525
 
                    for relpath, basename, dkind, stat, fileid, kind in
 
2163
                    for relpath, basename, dkind, stat, fileid, kind in 
2526
2164
                    current_inv[1]]
2527
2165
                yield (current_inv[0][0], current_inv[0][1]), dirblock
2528
2166
                try:
2534
2172
                # merge the inventory and disk data together
2535
2173
                dirblock = []
2536
2174
                for relpath, subiterator in itertools.groupby(sorted(
2537
 
                    current_inv[1] + cur_disk_dir_content,
2538
 
                    key=operator.itemgetter(0)), operator.itemgetter(1)):
 
2175
                    current_inv[1] + current_disk[1], key=operator.itemgetter(0)), operator.itemgetter(1)):
2539
2176
                    path_elements = list(subiterator)
2540
2177
                    if len(path_elements) == 2:
2541
2178
                        inv_row, disk_row = path_elements
2567
2204
                    disk_finished = True
2568
2205
 
2569
2206
    def _walkdirs(self, prefix=""):
2570
 
        """Walk the directories of this tree.
2571
 
 
2572
 
           :prefix: is used as the directrory to start with.
2573
 
           returns a generator which yields items in the form:
2574
 
                ((curren_directory_path, fileid),
2575
 
                 [(file1_path, file1_name, file1_kind, None, file1_id,
2576
 
                   file1_kind), ... ])
2577
 
        """
2578
2207
        _directory = 'directory'
2579
2208
        # get the root in the inventory
2580
2209
        inv = self.inventory
2594
2223
                relroot = ""
2595
2224
            # FIXME: stash the node in pending
2596
2225
            entry = inv[top_id]
2597
 
            if entry.kind == 'directory':
2598
 
                for name, child in entry.sorted_children():
2599
 
                    dirblock.append((relroot + name, name, child.kind, None,
2600
 
                        child.file_id, child.kind
2601
 
                        ))
 
2226
            for name, child in entry.sorted_children():
 
2227
                dirblock.append((relroot + name, name, child.kind, None,
 
2228
                    child.file_id, child.kind
 
2229
                    ))
2602
2230
            yield (currentdir[0], entry.file_id), dirblock
2603
2231
            # push the user specified dirs from dirblock
2604
2232
            for dir in reversed(dirblock):
2637
2265
        self.set_conflicts(un_resolved)
2638
2266
        return un_resolved, resolved
2639
2267
 
2640
 
    @needs_read_lock
2641
 
    def _check(self, references):
2642
 
        """Check the tree for consistency.
2643
 
 
2644
 
        :param references: A dict with keys matching the items returned by
2645
 
            self._get_check_refs(), and values from looking those keys up in
2646
 
            the repository.
2647
 
        """
2648
 
        tree_basis = self.basis_tree()
2649
 
        tree_basis.lock_read()
2650
 
        try:
2651
 
            repo_basis = references[('trees', self.last_revision())]
2652
 
            if len(list(repo_basis.iter_changes(tree_basis))) > 0:
2653
 
                raise errors.BzrCheckError(
2654
 
                    "Mismatched basis inventory content.")
2655
 
            self._validate()
2656
 
        finally:
2657
 
            tree_basis.unlock()
2658
 
 
2659
2268
    def _validate(self):
2660
2269
        """Validate internal structures.
2661
2270
 
2667
2276
        """
2668
2277
        return
2669
2278
 
2670
 
    def _get_rules_searcher(self, default_searcher):
2671
 
        """See Tree._get_rules_searcher."""
2672
 
        if self._rules_searcher is None:
2673
 
            self._rules_searcher = super(WorkingTree,
2674
 
                self)._get_rules_searcher(default_searcher)
2675
 
        return self._rules_searcher
2676
 
 
2677
 
    def get_shelf_manager(self):
2678
 
        """Return the ShelfManager for this WorkingTree."""
2679
 
        from bzrlib.shelf import ShelfManager
2680
 
        return ShelfManager(self, self._transport)
2681
 
 
2682
2279
 
2683
2280
class WorkingTree2(WorkingTree):
2684
2281
    """This is the Format 2 working tree.
2685
2282
 
2686
 
    This was the first weave based working tree.
 
2283
    This was the first weave based working tree. 
2687
2284
     - uses os locks for locking.
2688
2285
     - uses the branch last-revision.
2689
2286
    """
2699
2296
        if self._inventory is None:
2700
2297
            self.read_working_inventory()
2701
2298
 
2702
 
    def _get_check_refs(self):
2703
 
        """Return the references needed to perform a check of this tree."""
2704
 
        return [('trees', self.last_revision())]
2705
 
 
2706
2299
    def lock_tree_write(self):
2707
2300
        """See WorkingTree.lock_tree_write().
2708
2301
 
2709
2302
        In Format2 WorkingTrees we have a single lock for the branch and tree
2710
2303
        so lock_tree_write() degrades to lock_write().
2711
 
 
2712
 
        :return: An object with an unlock method which will release the lock
2713
 
            obtained.
2714
2304
        """
2715
2305
        self.branch.lock_write()
2716
2306
        try:
2717
 
            self._control_files.lock_write()
2718
 
            return self
 
2307
            return self._control_files.lock_write()
2719
2308
        except:
2720
2309
            self.branch.unlock()
2721
2310
            raise
2722
2311
 
2723
2312
    def unlock(self):
2724
 
        # do non-implementation specific cleanup
2725
 
        self._cleanup()
2726
 
 
2727
2313
        # we share control files:
2728
2314
        if self._control_files._lock_count == 3:
2729
2315
            # _inventory_is_modified is always False during a read lock.
2730
2316
            if self._inventory_is_modified:
2731
2317
                self.flush()
2732
2318
            self._write_hashcache_if_dirty()
2733
 
 
 
2319
                    
2734
2320
        # reverse order of locking.
2735
2321
        try:
2736
2322
            return self._control_files.unlock()
2752
2338
    def _last_revision(self):
2753
2339
        """See Mutable.last_revision."""
2754
2340
        try:
2755
 
            return self._transport.get_bytes('last-revision')
 
2341
            return osutils.safe_revision_id(
 
2342
                        self._control_files.get('last-revision').read())
2756
2343
        except errors.NoSuchFile:
2757
 
            return _mod_revision.NULL_REVISION
 
2344
            return None
2758
2345
 
2759
2346
    def _change_last_revision(self, revision_id):
2760
2347
        """See WorkingTree._change_last_revision."""
2761
 
        if revision_id is None or revision_id == _mod_revision.NULL_REVISION:
 
2348
        if revision_id is None or revision_id == NULL_REVISION:
2762
2349
            try:
2763
 
                self._transport.delete('last-revision')
 
2350
                self._control_files._transport.delete('last-revision')
2764
2351
            except errors.NoSuchFile:
2765
2352
                pass
2766
2353
            return False
2767
2354
        else:
2768
 
            self._transport.put_bytes('last-revision', revision_id,
2769
 
                mode=self.bzrdir._get_file_mode())
 
2355
            self._control_files.put_bytes('last-revision', revision_id)
2770
2356
            return True
2771
2357
 
2772
 
    def _get_check_refs(self):
2773
 
        """Return the references needed to perform a check of this tree."""
2774
 
        return [('trees', self.last_revision())]
2775
 
 
2776
2358
    @needs_tree_write_lock
2777
2359
    def set_conflicts(self, conflicts):
2778
 
        self._put_rio('conflicts', conflicts.to_stanzas(),
 
2360
        self._put_rio('conflicts', conflicts.to_stanzas(), 
2779
2361
                      CONFLICT_HEADER_1)
2780
2362
 
2781
2363
    @needs_tree_write_lock
2788
2370
    @needs_read_lock
2789
2371
    def conflicts(self):
2790
2372
        try:
2791
 
            confile = self._transport.get('conflicts')
 
2373
            confile = self._control_files.get('conflicts')
2792
2374
        except errors.NoSuchFile:
2793
2375
            return _mod_conflicts.ConflictList()
2794
2376
        try:
2795
 
            try:
2796
 
                if confile.next() != CONFLICT_HEADER_1 + '\n':
2797
 
                    raise errors.ConflictFormatError()
2798
 
            except StopIteration:
 
2377
            if confile.next() != CONFLICT_HEADER_1 + '\n':
2799
2378
                raise errors.ConflictFormatError()
2800
 
            return _mod_conflicts.ConflictList.from_stanzas(RioReader(confile))
2801
 
        finally:
2802
 
            confile.close()
 
2379
        except StopIteration:
 
2380
            raise errors.ConflictFormatError()
 
2381
        return _mod_conflicts.ConflictList.from_stanzas(RioReader(confile))
2803
2382
 
2804
2383
    def unlock(self):
2805
 
        # do non-implementation specific cleanup
2806
 
        self._cleanup()
2807
2384
        if self._control_files._lock_count == 1:
2808
2385
            # _inventory_is_modified is always False during a read lock.
2809
2386
            if self._inventory_is_modified:
2822
2399
            return path[:-len(suffix)]
2823
2400
 
2824
2401
 
 
2402
@deprecated_function(zero_eight)
 
2403
def is_control_file(filename):
 
2404
    """See WorkingTree.is_control_filename(filename)."""
 
2405
    ## FIXME: better check
 
2406
    filename = normpath(filename)
 
2407
    while filename != '':
 
2408
        head, tail = os.path.split(filename)
 
2409
        ## mutter('check %r for control file' % ((head, tail),))
 
2410
        if tail == '.bzr':
 
2411
            return True
 
2412
        if filename == head:
 
2413
            break
 
2414
        filename = head
 
2415
    return False
 
2416
 
 
2417
 
2825
2418
class WorkingTreeFormat(object):
2826
2419
    """An encapsulation of the initialization and open routines for a format.
2827
2420
 
2830
2423
     * a format string,
2831
2424
     * an open routine.
2832
2425
 
2833
 
    Formats are placed in an dict by their format string for reference
 
2426
    Formats are placed in an dict by their format string for reference 
2834
2427
    during workingtree opening. Its not required that these be instances, they
2835
 
    can be classes themselves with class methods - it simply depends on
 
2428
    can be classes themselves with class methods - it simply depends on 
2836
2429
    whether state is needed for a given format or not.
2837
2430
 
2838
2431
    Once a format is deprecated, just deprecate the initialize and open
2839
 
    methods on the format class. Do not deprecate the object, as the
 
2432
    methods on the format class. Do not deprecate the object, as the 
2840
2433
    object will be created every time regardless.
2841
2434
    """
2842
2435
 
2855
2448
        """Return the format for the working tree object in a_bzrdir."""
2856
2449
        try:
2857
2450
            transport = a_bzrdir.get_workingtree_transport(None)
2858
 
            format_string = transport.get_bytes("format")
 
2451
            format_string = transport.get("format").read()
2859
2452
            return klass._formats[format_string]
2860
2453
        except errors.NoSuchFile:
2861
2454
            raise errors.NoWorkingTree(base=transport.base)
2862
2455
        except KeyError:
2863
 
            raise errors.UnknownFormatError(format=format_string,
2864
 
                                            kind="working tree")
 
2456
            raise errors.UnknownFormatError(format=format_string)
2865
2457
 
2866
2458
    def __eq__(self, other):
2867
2459
        return self.__class__ is other.__class__
2886
2478
        """Is this format supported?
2887
2479
 
2888
2480
        Supported formats can be initialized and opened.
2889
 
        Unsupported formats may not support initialization or committing or
 
2481
        Unsupported formats may not support initialization or committing or 
2890
2482
        some other features depending on the reason for not being supported.
2891
2483
        """
2892
2484
        return True
2893
2485
 
2894
 
    def supports_content_filtering(self):
2895
 
        """True if this format supports content filtering."""
2896
 
        return False
2897
 
 
2898
 
    def supports_views(self):
2899
 
        """True if this format supports stored views."""
2900
 
        return False
2901
 
 
2902
2486
    @classmethod
2903
2487
    def register_format(klass, format):
2904
2488
        klass._formats[format.get_format_string()] = format
2909
2493
 
2910
2494
    @classmethod
2911
2495
    def unregister_format(klass, format):
 
2496
        assert klass._formats[format.get_format_string()] is format
2912
2497
        del klass._formats[format.get_format_string()]
2913
2498
 
2914
2499
 
2915
2500
class WorkingTreeFormat2(WorkingTreeFormat):
2916
 
    """The second working tree format.
 
2501
    """The second working tree format. 
2917
2502
 
2918
2503
    This format modified the hash cache from the format 1 hash cache.
2919
2504
    """
2924
2509
        """See WorkingTreeFormat.get_format_description()."""
2925
2510
        return "Working tree format 2"
2926
2511
 
2927
 
    def _stub_initialize_on_transport(self, transport, file_mode):
2928
 
        """Workaround: create control files for a remote working tree.
2929
 
 
 
2512
    def stub_initialize_remote(self, control_files):
 
2513
        """As a special workaround create critical control files for a remote working tree
 
2514
        
2930
2515
        This ensures that it can later be updated and dealt with locally,
2931
 
        since BzrDirFormat6 and BzrDirFormat5 cannot represent dirs with
 
2516
        since BzrDirFormat6 and BzrDirFormat5 cannot represent dirs with 
2932
2517
        no working tree.  (See bug #43064).
2933
2518
        """
2934
2519
        sio = StringIO()
2935
 
        inv = inventory.Inventory()
2936
 
        xml5.serializer_v5.write_inventory(inv, sio, working=True)
 
2520
        inv = Inventory()
 
2521
        xml5.serializer_v5.write_inventory(inv, sio)
2937
2522
        sio.seek(0)
2938
 
        transport.put_file('inventory', sio, file_mode)
2939
 
        transport.put_bytes('pending-merges', '', file_mode)
2940
 
 
2941
 
    def initialize(self, a_bzrdir, revision_id=None, from_branch=None,
2942
 
                   accelerator_tree=None, hardlink=False):
 
2523
        control_files.put('inventory', sio)
 
2524
 
 
2525
        control_files.put_bytes('pending-merges', '')
 
2526
        
 
2527
 
 
2528
    def initialize(self, a_bzrdir, revision_id=None):
2943
2529
        """See WorkingTreeFormat.initialize()."""
2944
2530
        if not isinstance(a_bzrdir.transport, LocalTransport):
2945
2531
            raise errors.NotLocalUrl(a_bzrdir.transport.base)
2946
 
        if from_branch is not None:
2947
 
            branch = from_branch
2948
 
        else:
2949
 
            branch = a_bzrdir.open_branch()
2950
 
        if revision_id is None:
2951
 
            revision_id = _mod_revision.ensure_null(branch.last_revision())
2952
 
        branch.lock_write()
2953
 
        try:
2954
 
            branch.generate_revision_history(revision_id)
2955
 
        finally:
2956
 
            branch.unlock()
2957
 
        inv = inventory.Inventory()
 
2532
        branch = a_bzrdir.open_branch()
 
2533
        if revision_id is not None:
 
2534
            revision_id = osutils.safe_revision_id(revision_id)
 
2535
            branch.lock_write()
 
2536
            try:
 
2537
                revision_history = branch.revision_history()
 
2538
                try:
 
2539
                    position = revision_history.index(revision_id)
 
2540
                except ValueError:
 
2541
                    raise errors.NoSuchRevision(branch, revision_id)
 
2542
                branch.set_revision_history(revision_history[:position + 1])
 
2543
            finally:
 
2544
                branch.unlock()
 
2545
        revision = branch.last_revision()
 
2546
        inv = Inventory()
2958
2547
        wt = WorkingTree2(a_bzrdir.root_transport.local_abspath('.'),
2959
2548
                         branch,
2960
2549
                         inv,
2961
2550
                         _internal=True,
2962
2551
                         _format=self,
2963
2552
                         _bzrdir=a_bzrdir)
2964
 
        basis_tree = branch.repository.revision_tree(revision_id)
 
2553
        basis_tree = branch.repository.revision_tree(revision)
2965
2554
        if basis_tree.inventory.root is not None:
2966
 
            wt.set_root_id(basis_tree.get_root_id())
 
2555
            wt.set_root_id(basis_tree.inventory.root.file_id)
2967
2556
        # set the parent list and cache the basis tree.
2968
 
        if _mod_revision.is_null(revision_id):
2969
 
            parent_trees = []
2970
 
        else:
2971
 
            parent_trees = [(revision_id, basis_tree)]
2972
 
        wt.set_parent_trees(parent_trees)
 
2557
        wt.set_parent_trees([(revision, basis_tree)])
2973
2558
        transform.build_tree(basis_tree, wt)
2974
2559
        return wt
2975
2560
 
3005
2590
        - is new in bzr 0.8
3006
2591
        - uses a LockDir to guard access for writes.
3007
2592
    """
3008
 
 
 
2593
    
3009
2594
    upgrade_recommended = True
3010
2595
 
3011
2596
    def get_format_string(self):
3028
2613
 
3029
2614
    def _open_control_files(self, a_bzrdir):
3030
2615
        transport = a_bzrdir.get_workingtree_transport(None)
3031
 
        return LockableFiles(transport, self._lock_file_name,
 
2616
        return LockableFiles(transport, self._lock_file_name, 
3032
2617
                             self._lock_class)
3033
2618
 
3034
 
    def initialize(self, a_bzrdir, revision_id=None, from_branch=None,
3035
 
                   accelerator_tree=None, hardlink=False):
 
2619
    def initialize(self, a_bzrdir, revision_id=None):
3036
2620
        """See WorkingTreeFormat.initialize().
3037
 
 
3038
 
        :param revision_id: if supplied, create a working tree at a different
3039
 
            revision than the branch is at.
3040
 
        :param accelerator_tree: A tree which can be used for retrieving file
3041
 
            contents more quickly than the revision tree, i.e. a workingtree.
3042
 
            The revision tree will be used for cases where accelerator_tree's
3043
 
            content is different.
3044
 
        :param hardlink: If true, hard-link files from accelerator_tree,
3045
 
            where possible.
 
2621
        
 
2622
        revision_id allows creating a working tree at a different
 
2623
        revision than the branch is at.
3046
2624
        """
3047
2625
        if not isinstance(a_bzrdir.transport, LocalTransport):
3048
2626
            raise errors.NotLocalUrl(a_bzrdir.transport.base)
3050
2628
        control_files = self._open_control_files(a_bzrdir)
3051
2629
        control_files.create_lock()
3052
2630
        control_files.lock_write()
3053
 
        transport.put_bytes('format', self.get_format_string(),
3054
 
            mode=a_bzrdir._get_file_mode())
3055
 
        if from_branch is not None:
3056
 
            branch = from_branch
 
2631
        control_files.put_utf8('format', self.get_format_string())
 
2632
        branch = a_bzrdir.open_branch()
 
2633
        if revision_id is None:
 
2634
            revision_id = branch.last_revision()
3057
2635
        else:
3058
 
            branch = a_bzrdir.open_branch()
3059
 
        if revision_id is None:
3060
 
            revision_id = _mod_revision.ensure_null(branch.last_revision())
 
2636
            revision_id = osutils.safe_revision_id(revision_id)
3061
2637
        # WorkingTree3 can handle an inventory which has a unique root id.
3062
2638
        # as of bzr 0.12. However, bzr 0.11 and earlier fail to handle
3063
2639
        # those trees. And because there isn't a format bump inbetween, we
3076
2652
            basis_tree = branch.repository.revision_tree(revision_id)
3077
2653
            # only set an explicit root id if there is one to set.
3078
2654
            if basis_tree.inventory.root is not None:
3079
 
                wt.set_root_id(basis_tree.get_root_id())
3080
 
            if revision_id == _mod_revision.NULL_REVISION:
 
2655
                wt.set_root_id(basis_tree.inventory.root.file_id)
 
2656
            if revision_id == NULL_REVISION:
3081
2657
                wt.set_parent_trees([])
3082
2658
            else:
3083
2659
                wt.set_parent_trees([(revision_id, basis_tree)])
3090
2666
        return wt
3091
2667
 
3092
2668
    def _initial_inventory(self):
3093
 
        return inventory.Inventory()
 
2669
        return Inventory()
3094
2670
 
3095
2671
    def __init__(self):
3096
2672
        super(WorkingTreeFormat3, self).__init__()
3111
2687
 
3112
2688
    def _open(self, a_bzrdir, control_files):
3113
2689
        """Open the tree itself.
3114
 
 
 
2690
        
3115
2691
        :param a_bzrdir: the dir for the tree.
3116
2692
        :param control_files: the control files for the tree.
3117
2693
        """
3125
2701
        return self.get_format_string()
3126
2702
 
3127
2703
 
3128
 
__default_format = WorkingTreeFormat6()
 
2704
__default_format = WorkingTreeFormat4()
3129
2705
WorkingTreeFormat.register_format(__default_format)
3130
 
WorkingTreeFormat.register_format(WorkingTreeFormat5())
3131
 
WorkingTreeFormat.register_format(WorkingTreeFormat4())
3132
2706
WorkingTreeFormat.register_format(WorkingTreeFormat3())
3133
2707
WorkingTreeFormat.set_default_format(__default_format)
3134
2708
# formats which have no format string are not discoverable
3135
2709
# and not independently creatable, so are not registered.
3136
2710
_legacy_formats = [WorkingTreeFormat2(),
3137
2711
                   ]
 
2712
 
 
2713
 
 
2714
class WorkingTreeTestProviderAdapter(object):
 
2715
    """A tool to generate a suite testing multiple workingtree formats at once.
 
2716
 
 
2717
    This is done by copying the test once for each transport and injecting
 
2718
    the transport_server, transport_readonly_server, and workingtree_format
 
2719
    classes into each copy. Each copy is also given a new id() to make it
 
2720
    easy to identify.
 
2721
    """
 
2722
 
 
2723
    def __init__(self, transport_server, transport_readonly_server, formats):
 
2724
        self._transport_server = transport_server
 
2725
        self._transport_readonly_server = transport_readonly_server
 
2726
        self._formats = formats
 
2727
    
 
2728
    def _clone_test(self, test, bzrdir_format, workingtree_format, variation):
 
2729
        """Clone test for adaption."""
 
2730
        new_test = deepcopy(test)
 
2731
        new_test.transport_server = self._transport_server
 
2732
        new_test.transport_readonly_server = self._transport_readonly_server
 
2733
        new_test.bzrdir_format = bzrdir_format
 
2734
        new_test.workingtree_format = workingtree_format
 
2735
        def make_new_test_id():
 
2736
            new_id = "%s(%s)" % (test.id(), variation)
 
2737
            return lambda: new_id
 
2738
        new_test.id = make_new_test_id()
 
2739
        return new_test
 
2740
    
 
2741
    def adapt(self, test):
 
2742
        from bzrlib.tests import TestSuite
 
2743
        result = TestSuite()
 
2744
        for workingtree_format, bzrdir_format in self._formats:
 
2745
            new_test = self._clone_test(
 
2746
                test,
 
2747
                bzrdir_format,
 
2748
                workingtree_format, workingtree_format.__class__.__name__)
 
2749
            result.addTest(new_test)
 
2750
        return result