/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 breezy/revisiontree.py

  • Committer: Jelmer Vernooij
  • Date: 2018-05-07 15:27:39 UTC
  • mto: This revision was merged to the branch mainline in revision 6958.
  • Revision ID: jelmer@jelmer.uk-20180507152739-fuv9z9r0yzi7ln3t
Specify source in .coveragerc.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2006-2010 Canonical Ltd
 
2
#
 
3
# This program is free software; you can redistribute it and/or modify
 
4
# it under the terms of the GNU General Public License as published by
 
5
# the Free Software Foundation; either version 2 of the License, or
 
6
# (at your option) any later version.
 
7
#
 
8
# This program is distributed in the hope that it will be useful,
 
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
# GNU General Public License for more details.
 
12
#
 
13
# You should have received a copy of the GNU General Public License
 
14
# along with this program; if not, write to the Free Software
 
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
16
 
 
17
"""RevisionTree - a Tree implementation backed by repository data for a revision."""
 
18
 
 
19
from __future__ import absolute_import
 
20
 
 
21
from . import (
 
22
    errors,
 
23
    lock,
 
24
    revision,
 
25
    tree,
 
26
    )
 
27
from .sixish import (
 
28
    BytesIO,
 
29
    )
 
30
 
 
31
 
 
32
class RevisionTree(tree.Tree):
 
33
    """Tree viewing a previous revision.
 
34
 
 
35
    File text can be retrieved from the text store.
 
36
    """
 
37
 
 
38
    def __init__(self, repository, revision_id):
 
39
        self._repository = repository
 
40
        self._revision_id = revision_id
 
41
        self._rules_searcher = None
 
42
 
 
43
    def has_versioned_directories(self):
 
44
        """See `Tree.has_versioned_directories`."""
 
45
        return self._repository._format.supports_versioned_directories
 
46
 
 
47
    def supports_tree_reference(self):
 
48
        return getattr(self._repository._format, "supports_tree_reference",
 
49
            False)
 
50
 
 
51
    def get_parent_ids(self):
 
52
        """See Tree.get_parent_ids.
 
53
 
 
54
        A RevisionTree's parents match the revision graph.
 
55
        """
 
56
        if self._revision_id in (None, revision.NULL_REVISION):
 
57
            parent_ids = []
 
58
        else:
 
59
            parent_ids = self._repository.get_revision(
 
60
                self._revision_id).parent_ids
 
61
        return parent_ids
 
62
 
 
63
    def get_revision_id(self):
 
64
        """Return the revision id associated with this tree."""
 
65
        return self._revision_id
 
66
 
 
67
    def get_file_revision(self, path, file_id=None):
 
68
        """Return the revision id in which a file was last changed."""
 
69
        raise NotImplementedError(self.get_file_revision)
 
70
 
 
71
    def get_file_text(self, path, file_id=None):
 
72
        for (identifier, content) in self.iter_files_bytes([(path, None)]):
 
73
            ret = "".join(content)
 
74
        return ret
 
75
 
 
76
    def get_file(self, path, file_id=None):
 
77
        return BytesIO(self.get_file_text(path, file_id))
 
78
 
 
79
    def is_locked(self):
 
80
        return self._repository.is_locked()
 
81
 
 
82
    def lock_read(self):
 
83
        self._repository.lock_read()
 
84
        return lock.LogicalLockResult(self.unlock)
 
85
 
 
86
    def __repr__(self):
 
87
        return '<%s instance at %x, rev_id=%r>' % (
 
88
            self.__class__.__name__, id(self), self._revision_id)
 
89
 
 
90
    def unlock(self):
 
91
        self._repository.unlock()
 
92
 
 
93
    def _get_rules_searcher(self, default_searcher):
 
94
        """See Tree._get_rules_searcher."""
 
95
        if self._rules_searcher is None:
 
96
            self._rules_searcher = super(RevisionTree,
 
97
                self)._get_rules_searcher(default_searcher)
 
98
        return self._rules_searcher