/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: Robert Collins
  • Date: 2005-12-24 02:20:45 UTC
  • mto: (1185.50.57 bzr-jam-integration)
  • mto: This revision was merged to the branch mainline in revision 1550.
  • Revision ID: robertc@robertcollins.net-20051224022045-14efc8dfa0e1a4e9
Start tests for api usage.

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 io import BytesIO
20
 
from . import (
21
 
    lock,
22
 
    revision,
23
 
    tree,
24
 
    )
25
 
 
26
 
 
27
 
class RevisionTree(tree.Tree):
28
 
    """Tree viewing a previous revision.
29
 
 
30
 
    File text can be retrieved from the text store.
31
 
    """
32
 
 
33
 
    def __init__(self, repository, revision_id):
34
 
        self._repository = repository
35
 
        self._revision_id = revision_id
36
 
        self._rules_searcher = None
37
 
 
38
 
    def has_versioned_directories(self):
39
 
        """See `Tree.has_versioned_directories`."""
40
 
        return self._repository._format.supports_versioned_directories
41
 
 
42
 
    def supports_tree_reference(self):
43
 
        return getattr(self._repository._format, "supports_tree_reference",
44
 
                       False)
45
 
 
46
 
    def get_parent_ids(self):
47
 
        """See Tree.get_parent_ids.
48
 
 
49
 
        A RevisionTree's parents match the revision graph.
50
 
        """
51
 
        if self._revision_id in (None, revision.NULL_REVISION):
52
 
            parent_ids = []
53
 
        else:
54
 
            parent_ids = self._repository.get_revision(
55
 
                self._revision_id).parent_ids
56
 
        return parent_ids
57
 
 
58
 
    def get_revision_id(self):
59
 
        """Return the revision id associated with this tree."""
60
 
        return self._revision_id
61
 
 
62
 
    def get_file_revision(self, path):
63
 
        """Return the revision id in which a file was last changed."""
64
 
        raise NotImplementedError(self.get_file_revision)
65
 
 
66
 
    def get_file_text(self, path):
67
 
        for (identifier, content) in self.iter_files_bytes([(path, None)]):
68
 
            ret = b"".join(content)
69
 
        return ret
70
 
 
71
 
    def get_file(self, path):
72
 
        return BytesIO(self.get_file_text(path))
73
 
 
74
 
    def is_locked(self):
75
 
        return self._repository.is_locked()
76
 
 
77
 
    def lock_read(self):
78
 
        self._repository.lock_read()
79
 
        return lock.LogicalLockResult(self.unlock)
80
 
 
81
 
    def __repr__(self):
82
 
        return '<%s instance at %x, rev_id=%r>' % (
83
 
            self.__class__.__name__, id(self), self._revision_id)
84
 
 
85
 
    def unlock(self):
86
 
        self._repository.unlock()
87
 
 
88
 
    def _get_rules_searcher(self, default_searcher):
89
 
        """See Tree._get_rules_searcher."""
90
 
        if self._rules_searcher is None:
91
 
            self._rules_searcher = super(RevisionTree,
92
 
                                         self)._get_rules_searcher(default_searcher)
93
 
        return self._rules_searcher