~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/workingtree_4.py

Put in place a structure for the admin-guide

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2007-2010 Canonical Ltd
 
1
# Copyright (C) 2005, 2006, 2007, 2008, 2009 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
53
53
from bzrlib.decorators import needs_read_lock, needs_write_lock
54
54
from bzrlib.filters import filtered_input_file, internal_size_sha_file_byname
55
55
from bzrlib.inventory import Inventory, ROOT_ID, entry_factory
56
 
from bzrlib.lock import LogicalLockResult
 
56
import bzrlib.mutabletree
57
57
from bzrlib.mutabletree import needs_tree_write_lock
58
58
from bzrlib.osutils import (
59
59
    file_kind,
568
568
            return _mod_revision.NULL_REVISION
569
569
 
570
570
    def lock_read(self):
571
 
        """See Branch.lock_read, and WorkingTree.unlock.
572
 
 
573
 
        :return: A bzrlib.lock.LogicalLockResult.
574
 
        """
 
571
        """See Branch.lock_read, and WorkingTree.unlock."""
575
572
        self.branch.lock_read()
576
573
        try:
577
574
            self._control_files.lock_read()
590
587
        except:
591
588
            self.branch.unlock()
592
589
            raise
593
 
        return LogicalLockResult(self.unlock)
594
590
 
595
591
    def _lock_self_write(self):
596
592
        """This should be called after the branch is locked."""
611
607
        except:
612
608
            self.branch.unlock()
613
609
            raise
614
 
        return LogicalLockResult(self.unlock)
615
610
 
616
611
    def lock_tree_write(self):
617
 
        """See MutableTree.lock_tree_write, and WorkingTree.unlock.
618
 
 
619
 
        :return: A bzrlib.lock.LogicalLockResult.
620
 
        """
 
612
        """See MutableTree.lock_tree_write, and WorkingTree.unlock."""
621
613
        self.branch.lock_read()
622
 
        return self._lock_self_write()
 
614
        self._lock_self_write()
623
615
 
624
616
    def lock_write(self):
625
 
        """See MutableTree.lock_write, and WorkingTree.unlock.
626
 
 
627
 
        :return: A bzrlib.lock.LogicalLockResult.
628
 
        """
 
617
        """See MutableTree.lock_write, and WorkingTree.unlock."""
629
618
        self.branch.lock_write()
630
 
        return self._lock_self_write()
 
619
        self._lock_self_write()
631
620
 
632
621
    @needs_tree_write_lock
633
622
    def move(self, from_paths, to_dir, after=False):
1247
1236
        # have to change the legacy inventory too.
1248
1237
        if self._inventory is not None:
1249
1238
            for file_id in file_ids:
1250
 
                if self._inventory.has_id(file_id):
1251
 
                    self._inventory.remove_recursive_id(file_id)
 
1239
                self._inventory.remove_recursive_id(file_id)
1252
1240
 
1253
1241
    @needs_tree_write_lock
1254
1242
    def rename_one(self, from_rel, to_rel, after=False):
1330
1318
    def _file_content_summary(self, path, stat_result):
1331
1319
        # This is to support the somewhat obsolete path_content_summary method
1332
1320
        # with content filtering: see
1333
 
        # <https://bugs.launchpad.net/bzr/+bug/415508>.
 
1321
        # <https://bugs.edge.launchpad.net/bzr/+bug/415508>.
1334
1322
        #
1335
1323
        # If the dirstate cache is up to date and knows the hash and size,
1336
1324
        # return that.
1384
1372
 
1385
1373
 
1386
1374
class DirStateWorkingTreeFormat(WorkingTreeFormat3):
1387
 
 
1388
1375
    def initialize(self, a_bzrdir, revision_id=None, from_branch=None,
1389
1376
                   accelerator_tree=None, hardlink=False):
1390
1377
        """See WorkingTreeFormat.initialize().
1768
1755
            return None
1769
1756
        parent_index = self._get_parent_index()
1770
1757
        last_changed_revision = entry[1][parent_index][4]
1771
 
        try:
1772
 
            rev = self._repository.get_revision(last_changed_revision)
1773
 
        except errors.NoSuchRevision:
1774
 
            raise errors.FileTimestampUnavailable(self.id2path(file_id))
1775
 
        return rev.timestamp
 
1758
        return self._repository.get_revision(last_changed_revision).timestamp
1776
1759
 
1777
1760
    def get_file_sha1(self, file_id, path=None, stat_value=None):
1778
1761
        entry = self._get_entry(file_id=file_id, path=path)
1845
1828
        entry = self._get_entry(file_id=file_id)[1]
1846
1829
        if entry is None:
1847
1830
            raise errors.NoSuchId(tree=self, file_id=file_id)
1848
 
        parent_index = self._get_parent_index()
1849
 
        return dirstate.DirState._minikind_to_kind[entry[parent_index][0]]
 
1831
        return dirstate.DirState._minikind_to_kind[entry[1][0]]
1850
1832
 
1851
1833
    def stored_kind(self, file_id):
1852
1834
        """See Tree.stored_kind"""
1872
1854
            return None
1873
1855
        return ie.executable
1874
1856
 
1875
 
    def is_locked(self):
1876
 
        return self._locked
1877
 
 
1878
1857
    def list_files(self, include_root=False, from_dir=None, recursive=True):
1879
1858
        # We use a standard implementation, because DirStateRevisionTree is
1880
1859
        # dealing with one of the parents of the current state
1893
1872
            yield path, 'V', entry.kind, entry.file_id, entry
1894
1873
 
1895
1874
    def lock_read(self):
1896
 
        """Lock the tree for a set of operations.
1897
 
 
1898
 
        :return: A bzrlib.lock.LogicalLockResult.
1899
 
        """
 
1875
        """Lock the tree for a set of operations."""
1900
1876
        if not self._locked:
1901
1877
            self._repository.lock_read()
1902
1878
            if self._dirstate._lock_token is None:
1903
1879
                self._dirstate.lock_read()
1904
1880
                self._dirstate_locked = True
1905
1881
        self._locked += 1
1906
 
        return LogicalLockResult(self.unlock)
1907
1882
 
1908
1883
    def _must_be_locked(self):
1909
1884
        if not self._locked:
1999
1974
        return result
2000
1975
 
2001
1976
    @classmethod
2002
 
    def make_source_parent_tree_compiled_dirstate(klass, test_case, source,
2003
 
                                                  target):
 
1977
    def make_source_parent_tree_compiled_dirstate(klass, test_case, source, target):
2004
1978
        from bzrlib.tests.test__dirstate_helpers import \
2005
 
            compiled_dirstate_helpers_feature
2006
 
        test_case.requireFeature(compiled_dirstate_helpers_feature)
 
1979
            CompiledDirstateHelpersFeature
 
1980
        if not CompiledDirstateHelpersFeature.available():
 
1981
            from bzrlib.tests import UnavailableFeature
 
1982
            raise UnavailableFeature(CompiledDirstateHelpersFeature)
2007
1983
        from bzrlib._dirstate_helpers_pyx import ProcessEntryC
2008
1984
        result = klass.make_source_parent_tree(source, target)
2009
1985
        result[1]._iter_changes = ProcessEntryC