/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to brzlib/workingtree_4.py

  • Committer: Jelmer Vernooij
  • Date: 2017-05-21 12:41:27 UTC
  • mto: This revision was merged to the branch mainline in revision 6623.
  • Revision ID: jelmer@jelmer.uk-20170521124127-iv8etg0vwymyai6y
s/bzr/brz/ in apport config.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2007-2010 Canonical Ltd
 
1
# Copyright (C) 2007-2012 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
22
22
WorkingTree.open(dir).
23
23
"""
24
24
 
 
25
from __future__ import absolute_import
 
26
 
25
27
from cStringIO import StringIO
26
28
import os
27
29
import sys
28
30
 
29
 
from bzrlib.lazy_import import lazy_import
 
31
from brzlib.lazy_import import lazy_import
30
32
lazy_import(globals(), """
31
33
import errno
32
34
import stat
33
35
 
34
 
import bzrlib
35
 
from bzrlib import (
 
36
from brzlib import (
36
37
    bzrdir,
37
38
    cache_utf8,
 
39
    config,
 
40
    conflicts as _mod_conflicts,
 
41
    controldir,
38
42
    debug,
39
43
    dirstate,
40
44
    errors,
 
45
    filters as _mod_filters,
41
46
    generate_ids,
42
47
    osutils,
43
48
    revision as _mod_revision,
46
51
    transform,
47
52
    views,
48
53
    )
49
 
import bzrlib.branch
50
 
import bzrlib.ui
51
54
""")
52
55
 
53
 
from bzrlib.decorators import needs_read_lock, needs_write_lock
54
 
from bzrlib.filters import filtered_input_file, internal_size_sha_file_byname
55
 
from bzrlib.inventory import Inventory, ROOT_ID, entry_factory
56
 
from bzrlib.lock import LogicalLockResult
57
 
from bzrlib.mutabletree import needs_tree_write_lock
58
 
from bzrlib.osutils import (
 
56
from brzlib.decorators import needs_read_lock, needs_write_lock
 
57
from brzlib.inventory import Inventory, ROOT_ID, entry_factory
 
58
from brzlib.lock import LogicalLockResult
 
59
from brzlib.lockable_files import LockableFiles
 
60
from brzlib.lockdir import LockDir
 
61
from brzlib.mutabletree import (
 
62
    MutableTree,
 
63
    needs_tree_write_lock,
 
64
    )
 
65
from brzlib.osutils import (
59
66
    file_kind,
60
67
    isdir,
61
68
    pathjoin,
62
69
    realpath,
63
70
    safe_unicode,
64
71
    )
65
 
from bzrlib.trace import mutter
66
 
from bzrlib.transport.local import LocalTransport
67
 
from bzrlib.tree import InterTree
68
 
from bzrlib.tree import Tree
69
 
from bzrlib.workingtree import WorkingTree, WorkingTree3, WorkingTreeFormat3
70
 
 
71
 
 
72
 
class DirStateWorkingTree(WorkingTree3):
 
72
from brzlib.symbol_versioning import (
 
73
    deprecated_in,
 
74
    deprecated_method,
 
75
    )
 
76
from brzlib.transport.local import LocalTransport
 
77
from brzlib.tree import (
 
78
    InterTree,
 
79
    InventoryTree,
 
80
    )
 
81
from brzlib.workingtree import (
 
82
    InventoryWorkingTree,
 
83
    WorkingTree,
 
84
    WorkingTreeFormatMetaDir,
 
85
    )
 
86
 
 
87
 
 
88
class DirStateWorkingTree(InventoryWorkingTree):
 
89
 
73
90
    def __init__(self, basedir,
74
91
                 branch,
75
92
                 _control_files=None,
85
102
        self._format = _format
86
103
        self.bzrdir = _bzrdir
87
104
        basedir = safe_unicode(basedir)
88
 
        mutter("opening working tree %r", basedir)
 
105
        trace.mutter("opening working tree %r", basedir)
89
106
        self._branch = branch
90
107
        self.basedir = realpath(basedir)
91
108
        # if branch is at our basedir and is a format 6 or less
125
142
            state.add(f, file_id, kind, None, '')
126
143
        self._make_dirty(reset_inventory=True)
127
144
 
 
145
    def _get_check_refs(self):
 
146
        """Return the references needed to perform a check of this tree."""
 
147
        return [('trees', self.last_revision())]
 
148
 
128
149
    def _make_dirty(self, reset_inventory):
129
150
        """Make the tree state dirty.
130
151
 
182
203
 
183
204
    def _comparison_data(self, entry, path):
184
205
        kind, executable, stat_value = \
185
 
            WorkingTree3._comparison_data(self, entry, path)
 
206
            WorkingTree._comparison_data(self, entry, path)
186
207
        # it looks like a plain directory, but it's really a reference -- see
187
208
        # also kind()
188
209
        if (self._repo_supports_tree_reference and kind == 'directory'
194
215
    def commit(self, message=None, revprops=None, *args, **kwargs):
195
216
        # mark the tree as dirty post commit - commit
196
217
        # can change the current versioned list by doing deletes.
197
 
        result = WorkingTree3.commit(self, message, revprops, *args, **kwargs)
 
218
        result = WorkingTree.commit(self, message, revprops, *args, **kwargs)
198
219
        self._make_dirty(reset_inventory=True)
199
220
        return result
200
221
 
219
240
        local_path = self.bzrdir.get_workingtree_transport(None
220
241
            ).local_abspath('dirstate')
221
242
        self._dirstate = dirstate.DirState.on_file(local_path,
222
 
            self._sha1_provider())
 
243
            self._sha1_provider(), self._worth_saving_limit())
223
244
        return self._dirstate
224
245
 
225
246
    def _sha1_provider(self):
234
255
        else:
235
256
            return None
236
257
 
 
258
    def _worth_saving_limit(self):
 
259
        """How many hash changes are ok before we must save the dirstate.
 
260
 
 
261
        :return: an integer. -1 means never save.
 
262
        """
 
263
        conf = self.get_config_stack()
 
264
        return conf.get('bzr.workingtree.worth_saving_limit')
 
265
 
237
266
    def filter_unversioned_files(self, paths):
238
267
        """Filter out paths that are versioned.
239
268
 
369
398
        state = self.current_dirstate()
370
399
        if stat_value is None:
371
400
            try:
372
 
                stat_value = os.lstat(file_abspath)
 
401
                stat_value = osutils.lstat(file_abspath)
373
402
            except OSError, e:
374
403
                if e.errno == errno.ENOENT:
375
404
                    return None
390
419
                return link_or_sha1
391
420
        return None
392
421
 
393
 
    def _get_inventory(self):
 
422
    def _get_root_inventory(self):
394
423
        """Get the inventory for the tree. This is only valid within a lock."""
395
424
        if 'evil' in debug.debug_flags:
396
425
            trace.mutter_callsite(2,
401
430
        self._generate_inventory()
402
431
        return self._inventory
403
432
 
 
433
    @deprecated_method(deprecated_in((2, 5, 0)))
 
434
    def _get_inventory(self):
 
435
        return self.root_inventory
 
436
 
404
437
    inventory = property(_get_inventory,
405
438
                         doc="Inventory of this Tree")
406
439
 
 
440
    root_inventory = property(_get_root_inventory,
 
441
        "Root inventory of this tree")
 
442
 
407
443
    @needs_read_lock
408
444
    def get_parent_ids(self):
409
445
        """See Tree.get_parent_ids.
456
492
            return False # Missing entries are not executable
457
493
        return entry[1][0][3] # Executable?
458
494
 
459
 
    if not osutils.supports_executable():
460
 
        def is_executable(self, file_id, path=None):
461
 
            """Test if a file is executable or not.
 
495
    def is_executable(self, file_id, path=None):
 
496
        """Test if a file is executable or not.
462
497
 
463
 
            Note: The caller is expected to take a read-lock before calling this.
464
 
            """
 
498
        Note: The caller is expected to take a read-lock before calling this.
 
499
        """
 
500
        if not self._supports_executable():
465
501
            entry = self._get_entry(file_id=file_id, path=path)
466
502
            if entry == (None, None):
467
503
                return False
468
504
            return entry[1][0][3]
469
 
 
470
 
        _is_executable_from_path_and_stat = \
471
 
            _is_executable_from_path_and_stat_from_basis
472
 
    else:
473
 
        def is_executable(self, file_id, path=None):
474
 
            """Test if a file is executable or not.
475
 
 
476
 
            Note: The caller is expected to take a read-lock before calling this.
477
 
            """
 
505
        else:
478
506
            self._must_be_locked()
479
507
            if not path:
480
508
                path = self.id2path(file_id)
481
 
            mode = os.lstat(self.abspath(path)).st_mode
 
509
            mode = osutils.lstat(self.abspath(path)).st_mode
482
510
            return bool(stat.S_ISREG(mode) and stat.S_IEXEC & mode)
483
511
 
484
512
    def all_file_ids(self):
570
598
    def lock_read(self):
571
599
        """See Branch.lock_read, and WorkingTree.unlock.
572
600
 
573
 
        :return: A bzrlib.lock.LogicalLockResult.
 
601
        :return: A brzlib.lock.LogicalLockResult.
574
602
        """
575
603
        self.branch.lock_read()
576
604
        try:
616
644
    def lock_tree_write(self):
617
645
        """See MutableTree.lock_tree_write, and WorkingTree.unlock.
618
646
 
619
 
        :return: A bzrlib.lock.LogicalLockResult.
 
647
        :return: A brzlib.lock.LogicalLockResult.
620
648
        """
621
649
        self.branch.lock_read()
622
650
        return self._lock_self_write()
624
652
    def lock_write(self):
625
653
        """See MutableTree.lock_write, and WorkingTree.unlock.
626
654
 
627
 
        :return: A bzrlib.lock.LogicalLockResult.
 
655
        :return: A brzlib.lock.LogicalLockResult.
628
656
        """
629
657
        self.branch.lock_write()
630
658
        return self._lock_self_write()
664
692
 
665
693
        if self._inventory is not None:
666
694
            update_inventory = True
667
 
            inv = self.inventory
 
695
            inv = self.root_inventory
668
696
            to_dir_id = to_entry[0][2]
669
697
            to_dir_ie = inv[to_dir_id]
670
698
        else:
850
878
                rollback_rename()
851
879
                raise
852
880
            result.append((from_rel, to_rel))
853
 
            state._dirblock_state = dirstate.DirState.IN_MEMORY_MODIFIED
 
881
            state._mark_modified()
854
882
            self._make_dirty(reset_inventory=False)
855
883
 
856
884
        return result
866
894
    @needs_read_lock
867
895
    def path2id(self, path):
868
896
        """Return the id for path in this tree."""
 
897
        if isinstance(path, list):
 
898
            if path == []:
 
899
                path = [""]
 
900
            path = osutils.pathjoin(*path)
869
901
        path = path.strip('/')
870
902
        entry = self._get_entry(path=path)
871
903
        if entry == (None, None):
949
981
                    all_versioned = False
950
982
                    break
951
983
            if not all_versioned:
952
 
                raise errors.PathsNotVersionedError(paths)
 
984
                raise errors.PathsNotVersionedError(
 
985
                    [p.decode('utf-8') for p in paths])
953
986
        # -- remove redundancy in supplied paths to prevent over-scanning --
954
987
        search_paths = osutils.minimum_path_selection(paths)
955
988
        # sketch:
1004
1037
            found_dir_names = set(dir_name_id[:2] for dir_name_id in found)
1005
1038
            for dir_name in split_paths:
1006
1039
                if dir_name not in found_dir_names:
1007
 
                    raise errors.PathsNotVersionedError(paths)
 
1040
                    raise errors.PathsNotVersionedError(
 
1041
                        [p.decode('utf-8') for p in paths])
1008
1042
 
1009
1043
        for dir_name_id, trees_info in found.iteritems():
1010
1044
            for index in search_indexes:
1017
1051
 
1018
1052
        This is a meaningless operation for dirstate, but we obey it anyhow.
1019
1053
        """
1020
 
        return self.inventory
 
1054
        return self.root_inventory
1021
1055
 
1022
1056
    @needs_read_lock
1023
1057
    def revision_tree(self, revision_id):
1113
1147
                        _mod_revision.NULL_REVISION)))
1114
1148
                ghosts.append(rev_id)
1115
1149
            accepted_revisions.add(rev_id)
1116
 
        dirstate.set_parent_trees(real_trees, ghosts=ghosts)
 
1150
        updated = False
 
1151
        if (len(real_trees) == 1
 
1152
            and not ghosts
 
1153
            and self.branch.repository._format.fast_deltas
 
1154
            and isinstance(real_trees[0][1],
 
1155
                revisiontree.InventoryRevisionTree)
 
1156
            and self.get_parent_ids()):
 
1157
            rev_id, rev_tree = real_trees[0]
 
1158
            basis_id = self.get_parent_ids()[0]
 
1159
            # There are times when basis_tree won't be in
 
1160
            # self.branch.repository, (switch, for example)
 
1161
            try:
 
1162
                basis_tree = self.branch.repository.revision_tree(basis_id)
 
1163
            except errors.NoSuchRevision:
 
1164
                # Fall back to the set_parent_trees(), since we can't use
 
1165
                # _make_delta if we can't get the RevisionTree
 
1166
                pass
 
1167
            else:
 
1168
                delta = rev_tree.root_inventory._make_delta(
 
1169
                    basis_tree.root_inventory)
 
1170
                dirstate.update_basis_by_delta(delta, rev_id)
 
1171
                updated = True
 
1172
        if not updated:
 
1173
            dirstate.set_parent_trees(real_trees, ghosts=ghosts)
1117
1174
        self._make_dirty(reset_inventory=False)
1118
1175
 
1119
1176
    def _set_root_id(self, file_id):
1139
1196
 
1140
1197
    def unlock(self):
1141
1198
        """Unlock in format 4 trees needs to write the entire dirstate."""
1142
 
        # do non-implementation specific cleanup
1143
 
        self._cleanup()
1144
 
 
1145
1199
        if self._control_files._lock_count == 1:
 
1200
            # do non-implementation specific cleanup
 
1201
            self._cleanup()
 
1202
 
1146
1203
            # eventually we should do signature checking during read locks for
1147
1204
            # dirstate updates.
1148
1205
            if self._control_files._lock_mode == 'w':
1247
1304
        # have to change the legacy inventory too.
1248
1305
        if self._inventory is not None:
1249
1306
            for file_id in file_ids:
1250
 
                self._inventory.remove_recursive_id(file_id)
 
1307
                if self._inventory.has_id(file_id):
 
1308
                    self._inventory.remove_recursive_id(file_id)
1251
1309
 
1252
1310
    @needs_tree_write_lock
1253
1311
    def rename_one(self, from_rel, to_rel, after=False):
1254
1312
        """See WorkingTree.rename_one"""
1255
1313
        self.flush()
1256
 
        WorkingTree.rename_one(self, from_rel, to_rel, after)
 
1314
        super(DirStateWorkingTree, self).rename_one(from_rel, to_rel, after)
1257
1315
 
1258
1316
    @needs_tree_write_lock
1259
1317
    def apply_inventory_delta(self, changes):
1285
1343
        # being created.
1286
1344
        self._inventory = None
1287
1345
        # generate a delta,
1288
 
        delta = inv._make_delta(self.inventory)
 
1346
        delta = inv._make_delta(self.root_inventory)
1289
1347
        # and apply it.
1290
1348
        self.apply_inventory_delta(delta)
1291
1349
        if had_inventory:
1292
1350
            self._inventory = inv
1293
1351
        self.flush()
1294
1352
 
 
1353
    @needs_tree_write_lock
 
1354
    def reset_state(self, revision_ids=None):
 
1355
        """Reset the state of the working tree.
 
1356
 
 
1357
        This does a hard-reset to a last-known-good state. This is a way to
 
1358
        fix if something got corrupted (like the .bzr/checkout/dirstate file)
 
1359
        """
 
1360
        if revision_ids is None:
 
1361
            revision_ids = self.get_parent_ids()
 
1362
        if not revision_ids:
 
1363
            base_tree = self.branch.repository.revision_tree(
 
1364
                _mod_revision.NULL_REVISION)
 
1365
            trees = []
 
1366
        else:
 
1367
            trees = zip(revision_ids,
 
1368
                        self.branch.repository.revision_trees(revision_ids))
 
1369
            base_tree = trees[0][1]
 
1370
        state = self.current_dirstate()
 
1371
        # We don't support ghosts yet
 
1372
        state.set_state_from_scratch(base_tree.root_inventory, trees, [])
 
1373
 
1295
1374
 
1296
1375
class ContentFilterAwareSHA1Provider(dirstate.SHA1Provider):
1297
1376
 
1302
1381
        """See dirstate.SHA1Provider.sha1()."""
1303
1382
        filters = self.tree._content_filter_stack(
1304
1383
            self.tree.relpath(osutils.safe_unicode(abspath)))
1305
 
        return internal_size_sha_file_byname(abspath, filters)[1]
 
1384
        return _mod_filters.internal_size_sha_file_byname(abspath, filters)[1]
1306
1385
 
1307
1386
    def stat_and_sha1(self, abspath):
1308
1387
        """See dirstate.SHA1Provider.stat_and_sha1()."""
1312
1391
        try:
1313
1392
            statvalue = os.fstat(file_obj.fileno())
1314
1393
            if filters:
1315
 
                file_obj = filtered_input_file(file_obj, filters)
 
1394
                file_obj = _mod_filters.filtered_input_file(file_obj, filters)
1316
1395
            sha1 = osutils.size_sha_file(file_obj)[1]
1317
1396
        finally:
1318
1397
            file_obj.close()
1329
1408
    def _file_content_summary(self, path, stat_result):
1330
1409
        # This is to support the somewhat obsolete path_content_summary method
1331
1410
        # with content filtering: see
1332
 
        # <https://bugs.edge.launchpad.net/bzr/+bug/415508>.
 
1411
        # <https://bugs.launchpad.net/bzr/+bug/415508>.
1333
1412
        #
1334
1413
        # If the dirstate cache is up to date and knows the hash and size,
1335
1414
        # return that.
1348
1427
class WorkingTree4(DirStateWorkingTree):
1349
1428
    """This is the Format 4 working tree.
1350
1429
 
1351
 
    This differs from WorkingTree3 by:
 
1430
    This differs from WorkingTree by:
1352
1431
     - Having a consolidated internal dirstate, stored in a
1353
1432
       randomly-accessible sorted file on disk.
1354
1433
     - Not having a regular inventory attribute.  One can be synthesized
1382
1461
        return views.PathBasedViews(self)
1383
1462
 
1384
1463
 
1385
 
class DirStateWorkingTreeFormat(WorkingTreeFormat3):
 
1464
class DirStateWorkingTreeFormat(WorkingTreeFormatMetaDir):
 
1465
 
 
1466
    missing_parent_conflicts = True
 
1467
 
 
1468
    supports_versioned_directories = True
 
1469
 
 
1470
    _lock_class = LockDir
 
1471
    _lock_file_name = 'lock'
 
1472
 
 
1473
    def _open_control_files(self, a_bzrdir):
 
1474
        transport = a_bzrdir.get_workingtree_transport(None)
 
1475
        return LockableFiles(transport, self._lock_file_name,
 
1476
                             self._lock_class)
1386
1477
 
1387
1478
    def initialize(self, a_bzrdir, revision_id=None, from_branch=None,
1388
1479
                   accelerator_tree=None, hardlink=False):
1389
1480
        """See WorkingTreeFormat.initialize().
1390
1481
 
1391
1482
        :param revision_id: allows creating a working tree at a different
1392
 
        revision than the branch is at.
 
1483
            revision than the branch is at.
1393
1484
        :param accelerator_tree: A tree which can be used for retrieving file
1394
1485
            contents more quickly than the revision tree, i.e. a workingtree.
1395
1486
            The revision tree will be used for cases where accelerator_tree's
1406
1497
        control_files = self._open_control_files(a_bzrdir)
1407
1498
        control_files.create_lock()
1408
1499
        control_files.lock_write()
1409
 
        transport.put_bytes('format', self.get_format_string(),
 
1500
        transport.put_bytes('format', self.as_string(),
1410
1501
            mode=a_bzrdir._get_file_mode())
1411
1502
        if from_branch is not None:
1412
1503
            branch = from_branch
1472
1563
                transform.build_tree(basis, wt, accelerator_tree,
1473
1564
                                     hardlink=hardlink,
1474
1565
                                     delta_from_tree=delta_from_tree)
 
1566
                for hook in MutableTree.hooks['post_build_tree']:
 
1567
                    hook(wt)
1475
1568
            finally:
1476
1569
                basis.unlock()
1477
1570
        finally:
1488
1581
        :param wt: the WorkingTree object
1489
1582
        """
1490
1583
 
 
1584
    def open(self, a_bzrdir, _found=False):
 
1585
        """Return the WorkingTree object for a_bzrdir
 
1586
 
 
1587
        _found is a private parameter, do not use it. It is used to indicate
 
1588
               if format probing has already been done.
 
1589
        """
 
1590
        if not _found:
 
1591
            # we are being called directly and must probe.
 
1592
            raise NotImplementedError
 
1593
        if not isinstance(a_bzrdir.transport, LocalTransport):
 
1594
            raise errors.NotLocalUrl(a_bzrdir.transport.base)
 
1595
        wt = self._open(a_bzrdir, self._open_control_files(a_bzrdir))
 
1596
        return wt
 
1597
 
1491
1598
    def _open(self, a_bzrdir, control_files):
1492
1599
        """Open the tree itself.
1493
1600
 
1506
1613
    def _get_matchingbzrdir(self):
1507
1614
        """Overrideable method to get a bzrdir for testing."""
1508
1615
        # please test against something that will let us do tree references
1509
 
        return bzrdir.format_registry.make_bzrdir(
1510
 
            'dirstate-with-subtree')
 
1616
        return controldir.format_registry.make_bzrdir(
 
1617
            'development-subtree')
1511
1618
 
1512
1619
    _matchingbzrdir = property(__get_matchingbzrdir)
1513
1620
 
1518
1625
    This format:
1519
1626
        - exists within a metadir controlling .bzr
1520
1627
        - includes an explicit version marker for the workingtree control
1521
 
          files, separate from the BzrDir format
 
1628
          files, separate from the ControlDir format
1522
1629
        - modifies the hash cache format
1523
1630
        - is new in bzr 0.15
1524
1631
        - uses a LockDir to guard access to it.
1528
1635
 
1529
1636
    _tree_class = WorkingTree4
1530
1637
 
1531
 
    def get_format_string(self):
 
1638
    @classmethod
 
1639
    def get_format_string(cls):
1532
1640
        """See WorkingTreeFormat.get_format_string()."""
1533
1641
        return "Bazaar Working Tree Format 4 (bzr 0.15)\n"
1534
1642
 
1545
1653
 
1546
1654
    _tree_class = WorkingTree5
1547
1655
 
1548
 
    def get_format_string(self):
 
1656
    @classmethod
 
1657
    def get_format_string(cls):
1549
1658
        """See WorkingTreeFormat.get_format_string()."""
1550
1659
        return "Bazaar Working Tree Format 5 (bzr 1.11)\n"
1551
1660
 
1565
1674
 
1566
1675
    _tree_class = WorkingTree6
1567
1676
 
1568
 
    def get_format_string(self):
 
1677
    @classmethod
 
1678
    def get_format_string(cls):
1569
1679
        """See WorkingTreeFormat.get_format_string()."""
1570
1680
        return "Bazaar Working Tree Format 6 (bzr 1.14)\n"
1571
1681
 
1583
1693
    def supports_views(self):
1584
1694
        return True
1585
1695
 
1586
 
 
1587
 
class DirStateRevisionTree(Tree):
 
1696
    def _get_matchingbzrdir(self):
 
1697
        """Overrideable method to get a bzrdir for testing."""
 
1698
        # We use 'development-subtree' instead of '2a', because we have a
 
1699
        # few tests that want to test tree references
 
1700
        return bzrdir.format_registry.make_bzrdir('development-subtree')
 
1701
 
 
1702
 
 
1703
class DirStateRevisionTree(InventoryTree):
1588
1704
    """A revision tree pulling the inventory from a dirstate.
1589
1705
    
1590
1706
    Note that this is one of the historical (ie revision) trees cached in the
1609
1725
    def annotate_iter(self, file_id,
1610
1726
                      default_revision=_mod_revision.CURRENT_REVISION):
1611
1727
        """See Tree.annotate_iter"""
1612
 
        text_key = (file_id, self.inventory[file_id].revision)
 
1728
        text_key = (file_id, self.get_file_revision(file_id))
1613
1729
        annotations = self._repository.texts.annotate(text_key)
1614
1730
        return [(key[-1], line) for (key, line) in annotations]
1615
1731
 
1616
 
    def _get_ancestors(self, default_revision):
1617
 
        return set(self._repository.get_ancestry(self._revision_id,
1618
 
                                                 topo_sorted=False))
1619
1732
    def _comparison_data(self, entry, path):
1620
1733
        """See Tree._comparison_data."""
1621
1734
        if entry is None:
1674
1787
        if path is not None:
1675
1788
            path = path.encode('utf8')
1676
1789
        parent_index = self._get_parent_index()
1677
 
        return self._dirstate._get_entry(parent_index, fileid_utf8=file_id, path_utf8=path)
 
1790
        return self._dirstate._get_entry(parent_index, fileid_utf8=file_id,
 
1791
            path_utf8=path)
1678
1792
 
1679
1793
    def _generate_inventory(self):
1680
1794
        """Create and set self.inventory from the dirstate object.
1737
1851
                elif kind == 'directory':
1738
1852
                    parent_ies[(dirname + '/' + name).strip('/')] = inv_entry
1739
1853
                elif kind == 'symlink':
1740
 
                    inv_entry.executable = False
1741
 
                    inv_entry.text_size = None
1742
1854
                    inv_entry.symlink_target = utf8_decode(fingerprint)[0]
1743
1855
                elif kind == 'tree-reference':
1744
1856
                    inv_entry.reference_revision = fingerprint or None
1764
1876
        # Make sure the file exists
1765
1877
        entry = self._get_entry(file_id, path=path)
1766
1878
        if entry == (None, None): # do we raise?
1767
 
            return None
 
1879
            raise errors.NoSuchId(self, file_id)
1768
1880
        parent_index = self._get_parent_index()
1769
1881
        last_changed_revision = entry[1][parent_index][4]
1770
1882
        try:
1781
1893
            return parent_details[1]
1782
1894
        return None
1783
1895
 
 
1896
    @needs_read_lock
 
1897
    def get_file_revision(self, file_id):
 
1898
        inv, inv_file_id = self._unpack_file_id(file_id)
 
1899
        return inv[inv_file_id].revision
 
1900
 
1784
1901
    def get_file(self, file_id, path=None):
1785
1902
        return StringIO(self.get_file_text(file_id))
1786
1903
 
1787
1904
    def get_file_size(self, file_id):
1788
1905
        """See Tree.get_file_size"""
1789
 
        return self.inventory[file_id].text_size
 
1906
        inv, inv_file_id = self._unpack_file_id(file_id)
 
1907
        return inv[inv_file_id].text_size
1790
1908
 
1791
1909
    def get_file_text(self, file_id, path=None):
1792
 
        _, content = list(self.iter_files_bytes([(file_id, None)]))[0]
1793
 
        return ''.join(content)
 
1910
        content = None
 
1911
        for _, content_iter in self.iter_files_bytes([(file_id, None)]):
 
1912
            if content is not None:
 
1913
                raise AssertionError('iter_files_bytes returned'
 
1914
                    ' too many entries')
 
1915
            # For each entry returned by iter_files_bytes, we must consume the
 
1916
            # content_iter before we step the files iterator.
 
1917
            content = ''.join(content_iter)
 
1918
        if content is None:
 
1919
            raise AssertionError('iter_files_bytes did not return'
 
1920
                ' the requested data')
 
1921
        return content
1794
1922
 
1795
1923
    def get_reference_revision(self, file_id, path=None):
1796
 
        return self.inventory[file_id].reference_revision
 
1924
        inv, inv_file_id = self._unpack_file_id(file_id)
 
1925
        return inv[inv_file_id].reference_revision
1797
1926
 
1798
1927
    def iter_files_bytes(self, desired_files):
1799
1928
        """See Tree.iter_files_bytes.
1809
1938
                                       identifier))
1810
1939
        return self._repository.iter_files_bytes(repo_desired_files)
1811
1940
 
1812
 
    def get_symlink_target(self, file_id):
 
1941
    def get_symlink_target(self, file_id, path=None):
1813
1942
        entry = self._get_entry(file_id=file_id)
1814
1943
        parent_index = self._get_parent_index()
1815
1944
        if entry[1][parent_index][0] != 'l':
1823
1952
        """Return the revision id for this tree."""
1824
1953
        return self._revision_id
1825
1954
 
1826
 
    def _get_inventory(self):
 
1955
    def _get_root_inventory(self):
1827
1956
        if self._inventory is not None:
1828
1957
            return self._inventory
1829
1958
        self._must_be_locked()
1830
1959
        self._generate_inventory()
1831
1960
        return self._inventory
1832
1961
 
 
1962
    root_inventory = property(_get_root_inventory,
 
1963
                         doc="Inventory of this Tree")
 
1964
 
 
1965
    @deprecated_method(deprecated_in((2, 5, 0)))
 
1966
    def _get_inventory(self):
 
1967
        return self.root_inventory
 
1968
 
1833
1969
    inventory = property(_get_inventory,
1834
1970
                         doc="Inventory of this Tree")
1835
1971
 
1853
1989
 
1854
1990
    def path_content_summary(self, path):
1855
1991
        """See Tree.path_content_summary."""
1856
 
        id = self.inventory.path2id(path)
1857
 
        if id is None:
 
1992
        inv, inv_file_id = self._path2inv_file_id(path)
 
1993
        if inv_file_id is None:
1858
1994
            return ('missing', None, None, None)
1859
 
        entry = self._inventory[id]
 
1995
        entry = inv[inv_file_id]
1860
1996
        kind = entry.kind
1861
1997
        if kind == 'file':
1862
1998
            return (kind, entry.text_size, entry.executable, entry.text_sha1)
1866
2002
            return (kind, None, None, None)
1867
2003
 
1868
2004
    def is_executable(self, file_id, path=None):
1869
 
        ie = self.inventory[file_id]
 
2005
        inv, inv_file_id = self._unpack_file_id(file_id)
 
2006
        ie = inv[inv_file_id]
1870
2007
        if ie.kind != "file":
1871
 
            return None
 
2008
            return False
1872
2009
        return ie.executable
1873
2010
 
1874
2011
    def is_locked(self):
1877
2014
    def list_files(self, include_root=False, from_dir=None, recursive=True):
1878
2015
        # We use a standard implementation, because DirStateRevisionTree is
1879
2016
        # dealing with one of the parents of the current state
1880
 
        inv = self._get_inventory()
1881
2017
        if from_dir is None:
 
2018
            inv = self.root_inventory
1882
2019
            from_dir_id = None
1883
2020
        else:
1884
 
            from_dir_id = inv.path2id(from_dir)
 
2021
            inv, from_dir_id = self._path2inv_file_id(from_dir)
1885
2022
            if from_dir_id is None:
1886
2023
                # Directory not versioned
1887
2024
                return
 
2025
        # FIXME: Support nested trees
1888
2026
        entries = inv.iter_entries(from_dir=from_dir_id, recursive=recursive)
1889
2027
        if inv.root is not None and not include_root and from_dir is None:
1890
2028
            entries.next()
1894
2032
    def lock_read(self):
1895
2033
        """Lock the tree for a set of operations.
1896
2034
 
1897
 
        :return: A bzrlib.lock.LogicalLockResult.
 
2035
        :return: A brzlib.lock.LogicalLockResult.
1898
2036
        """
1899
2037
        if not self._locked:
1900
2038
            self._repository.lock_read()
1912
2050
    def path2id(self, path):
1913
2051
        """Return the id for path in this tree."""
1914
2052
        # lookup by path: faster than splitting and walking the ivnentory.
 
2053
        if isinstance(path, list):
 
2054
            if path == []:
 
2055
                path = [""]
 
2056
            path = osutils.pathjoin(*path)
1915
2057
        entry = self._get_entry(path=path)
1916
2058
        if entry == (None, None):
1917
2059
            return None
1940
2082
        # So for now, we just build up the parent inventory, and extract
1941
2083
        # it the same way RevisionTree does.
1942
2084
        _directory = 'directory'
1943
 
        inv = self._get_inventory()
 
2085
        inv = self._get_root_inventory()
1944
2086
        top_id = inv.path2id(prefix)
1945
2087
        if top_id is None:
1946
2088
            pending = []
1987
2129
    def make_source_parent_tree(source, target):
1988
2130
        """Change the source tree into a parent of the target."""
1989
2131
        revid = source.commit('record tree')
1990
 
        target.branch.repository.fetch(source.branch.repository, revid)
 
2132
        target.branch.fetch(source.branch, revid)
1991
2133
        target.set_parent_ids([revid])
1992
2134
        return target.basis_tree(), target
1993
2135
 
2000
2142
    @classmethod
2001
2143
    def make_source_parent_tree_compiled_dirstate(klass, test_case, source,
2002
2144
                                                  target):
2003
 
        from bzrlib.tests.test__dirstate_helpers import \
 
2145
        from brzlib.tests.test__dirstate_helpers import \
2004
2146
            compiled_dirstate_helpers_feature
2005
2147
        test_case.requireFeature(compiled_dirstate_helpers_feature)
2006
 
        from bzrlib._dirstate_helpers_pyx import ProcessEntryC
 
2148
        from brzlib._dirstate_helpers_pyx import ProcessEntryC
2007
2149
        result = klass.make_source_parent_tree(source, target)
2008
2150
        result[1]._iter_changes = ProcessEntryC
2009
2151
        return result
2085
2227
                path_entries = state._entries_for_path(path)
2086
2228
                if not path_entries:
2087
2229
                    # this specified path is not present at all: error
2088
 
                    not_versioned.append(path)
 
2230
                    not_versioned.append(path.decode('utf-8'))
2089
2231
                    continue
2090
2232
                found_versioned = False
2091
2233
                # for each id at this path
2099
2241
                if not found_versioned:
2100
2242
                    # none of the indexes was not 'absent' at all ids for this
2101
2243
                    # path.
2102
 
                    not_versioned.append(path)
 
2244
                    not_versioned.append(path.decode('utf-8'))
2103
2245
            if len(not_versioned) > 0:
2104
2246
                raise errors.PathsNotVersionedError(not_versioned)
2105
2247
        # -- remove redundancy in supplied specific_files to prevent over-scanning --
2172
2314
    def update_format(self, tree):
2173
2315
        """Change the format marker."""
2174
2316
        tree._transport.put_bytes('format',
2175
 
            self.target_format.get_format_string(),
 
2317
            self.target_format.as_string(),
2176
2318
            mode=tree.bzrdir._get_file_mode())
2177
2319
 
2178
2320
 
2195
2337
    def update_format(self, tree):
2196
2338
        """Change the format marker."""
2197
2339
        tree._transport.put_bytes('format',
2198
 
            self.target_format.get_format_string(),
 
2340
            self.target_format.as_string(),
2199
2341
            mode=tree.bzrdir._get_file_mode())
2200
2342
 
2201
2343
 
2224
2366
    def update_format(self, tree):
2225
2367
        """Change the format marker."""
2226
2368
        tree._transport.put_bytes('format',
2227
 
            self.target_format.get_format_string(),
 
2369
            self.target_format.as_string(),
2228
2370
            mode=tree.bzrdir._get_file_mode())