/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 versionedfiles.py

Ignore .plugins dir.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2005-2007 Jelmer Vernooij <jelmer@samba.org>
 
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 3 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, see <http://www.gnu.org/licenses/>.
 
15
 
 
16
from bzrlib import debug, osutils, urlutils
 
17
from bzrlib.trace import mutter
 
18
from bzrlib.versionedfile import FulltextContentFactory, VersionedFiles, AbsentContentFactory, VirtualVersionedFiles
 
19
 
 
20
from bzrlib.plugins.svn.core import SubversionException
 
21
from bzrlib.plugins.svn.errors import ERR_FS_NOT_FILE
 
22
 
 
23
from cStringIO import StringIO
 
24
 
 
25
class SvnTexts(VersionedFiles):
 
26
    """Subversion texts backend."""
 
27
 
 
28
    def __init__(self, repository):
 
29
        self.repository = repository
 
30
 
 
31
    def check(self, progressbar=None):
 
32
        return True
 
33
 
 
34
    def add_mpdiffs(self, records):
 
35
        raise NotImplementedError(self.add_mpdiffs)
 
36
 
 
37
    def get_record_stream(self, keys, ordering, include_delta_closure):
 
38
        # TODO: there may be valid text revisions that only exist as 
 
39
        # ghosts in the repository itself. This function will 
 
40
        # not be able to report them.
 
41
        # TODO: Sort keys by file id and issue just one get_file_revs() call 
 
42
        # per file-id ?
 
43
        for (fileid, revid) in list(keys):
 
44
            (branch, revnum, mapping) = self.repository.lookup_revision_id(revid)
 
45
            map = self.repository.get_fileid_map(revnum, branch, mapping)
 
46
            # Unfortunately, the map is the other way around
 
47
            lines = None
 
48
            for k,(v,ck) in map.items():
 
49
                if v == fileid:
 
50
                    try:
 
51
                        stream = StringIO()
 
52
                        self.repository.transport.get_file(urlutils.join(branch, k), stream, revnum)
 
53
                        lines = stream.readlines()
 
54
                    except SubversionException, (_, num):
 
55
                        if num == ERR_FS_NOT_FILE:
 
56
                            lines = []
 
57
                        else:
 
58
                            raise
 
59
                    break
 
60
            if lines is None:
 
61
                raise Exception("Inconsistent key specified: (%r,%r)" % (fileid, revid))
 
62
            yield FulltextContentFactory((fileid,revid), None, 
 
63
                        sha1=osutils.sha_strings(lines),
 
64
                        text=''.join(lines))
 
65
 
 
66
    def get_parent_map(self, keys):
 
67
        invs = {}
 
68
 
 
69
        # First, figure out the revision number/path
 
70
        ret = {}
 
71
        for (fileid, revid) in keys:
 
72
            # FIXME: Evil hack
 
73
            ret[(fileid, revid)] = None
 
74
        return ret
 
75
 
 
76
    # TODO: annotate, get_sha1s, iter_lines_added_or_present_in_keys, keys
 
77
 
 
78
 
 
79
class VirtualRevisionTexts(VirtualVersionedFiles):
 
80
    """Virtual revisions backend."""
 
81
    def __init__(self, repository):
 
82
        self.repository = repository
 
83
        super(VirtualRevisionTexts, self).__init__(self.repository._make_parents_provider().get_parent_map, self.get_lines)
 
84
 
 
85
    def get_lines(self, key):
 
86
        return osutils.split_lines(self.repository.get_revision_xml(key))
 
87
 
 
88
    # TODO: annotate, iter_lines_added_or_present_in_keys, keys
 
89
 
 
90
 
 
91
class VirtualInventoryTexts(VirtualVersionedFiles):
 
92
    """Virtual inventories backend."""
 
93
    def __init__(self, repository):
 
94
        self.repository = repository
 
95
        super(VirtualInventoryTexts, self).__init__(self.repository._make_parents_provider().get_parent_map, self.get_lines)
 
96
 
 
97
    def get_lines(self, key):
 
98
        return osutils.split_lines(self.repository.get_inventory_xml(key))
 
99
 
 
100
    # TODO: annotate, iter_lines_added_or_present_in_keys, keys
 
101
 
 
102
 
 
103
class VirtualSignatureTexts(VirtualVersionedFiles):
 
104
    """Virtual signatures backend."""
 
105
    def __init__(self, repository):
 
106
        self.repository = repository
 
107
        super(VirtualSignatureTexts, self).__init__(self.repository._make_parents_provider().get_parent_map, self.get_lines)
 
108
 
 
109
    def get_lines(self, key):
 
110
        return osutils.split_lines(self.repository.get_signature_text(key))
 
111
 
 
112
    # TODO: annotate, iter_lines_added_or_present_in_keys, keys
 
113