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

Cache trees rather than inventories.

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
 
35
35
 
36
36
class GitRevisionTree(revisiontree.RevisionTree):
37
 
    """Revision tree implementation based on Git objects."""
38
37
 
39
38
    def __init__(self, repository, revision_id):
40
39
        self._revision_id = revision_id
47
46
        except KeyError, r:
48
47
            raise errors.NoSuchRevision(repository, revision_id)
49
48
        self.tree = commit.tree
50
 
        fileid_map = self.mapping.get_fileid_map(store.__getitem__, self.tree)
51
 
        self._inventory = GitInventory(self.tree, self.mapping, fileid_map,
52
 
            store, revision_id)
 
49
        self._inventory = GitInventory(self.tree, self.mapping, store, 
 
50
                                       revision_id)
53
51
 
54
52
    def get_revision_id(self):
55
 
        """See RevisionTree.get_revision_id."""
56
53
        return self._revision_id
57
54
 
58
55
    def get_file_text(self, file_id, path=None):
59
 
        """See RevisionTree.get_file_text."""
60
56
        if path is not None:
61
57
            entry = self._inventory._get_ie(path)
62
58
        else:
66
62
        return entry.object.data
67
63
 
68
64
 
69
 
def tree_delta_from_git_changes(changes, mapping,
70
 
        (old_fileid_map, new_fileid_map), specific_file=None,
71
 
        require_versioned=False):
 
65
def tree_delta_from_git_changes(changes, mapping, specific_file=None, 
 
66
                                require_versioned=False):
72
67
    """Create a TreeDelta from two git trees.
73
 
 
74
 
    source and target are iterators over tuples with:
 
68
    
 
69
    source and target are iterators over tuples with: 
75
70
        (filename, sha, mode)
76
71
    """
77
72
    ret = delta.TreeDelta()
78
73
    for (oldpath, newpath), (oldmode, newmode), (oldsha, newsha) in changes:
79
 
        if mapping.is_control_file(oldpath):
80
 
            oldpath = None
81
 
        if mapping.is_control_file(newpath):
82
 
            newpath = None
83
 
        if oldpath is None and newpath is None:
84
 
            continue
85
74
        if oldpath is None:
86
 
            ret.added.append((newpath, new_fileid_map.lookup_file_id(newpath.encode("utf-8")), mode_kind(newmode)))
 
75
            ret.added.append((newpath, mapping.generate_file_id(newpath), mode_kind(newmode)))
87
76
        elif newpath is None:
88
 
            ret.removed.append((oldpath, old_fileid_map.lookup_file_id(oldpath.encode("utf-8")), mode_kind(oldmode)))
 
77
            ret.removed.append((oldpath, mapping.generate_file_id(oldpath), mode_kind(oldmode)))
89
78
        elif oldpath != newpath:
90
 
            ret.renamed.append((oldpath, newpath, old_fileid_map.lookup_file_id(oldpath.encode("utf-8")), mode_kind(newmode), (oldsha != newsha), (oldmode != newmode)))
 
79
            ret.renamed.append((oldpath, newpath, mapping.generate_file_id(oldpath), mode_kind(newmode), (oldsha != newsha), (oldmode != newmode)))
91
80
        elif mode_kind(oldmode) != mode_kind(newmode):
92
 
            ret.kind_changed.append((newpath, new_fileid_map.lookup_file_id(newpath.encode("utf-8")), mode_kind(oldmode), mode_kind(newmode)))
 
81
            ret.kind_changed.append((newpath, mapping.generate_file_id(newpath), mode_kind(oldmode), mode_kind(newmode)))
93
82
        elif oldsha != newsha or oldmode != newmode:
94
 
            ret.modified.append((newpath, new_fileid_map.lookup_file_id(newpath.encode("utf-8")), mode_kind(newmode), (oldsha != newsha), (oldmode != newmode)))
 
83
            ret.modified.append((newpath, mapping.generate_file_id(newpath), mode_kind(newmode), (oldsha != newsha), (oldmode != newmode)))
95
84
        else:
96
 
            ret.unchanged.append((newpath, new_fileid_map.lookup_file_id(newpath.encode("utf-8")), mode_kind(newmode)))
 
85
            ret.unchanged.append((newpath, mapping.generate_file_id(newpath), mode_kind(newmode)))
97
86
    return ret
98
87
 
99
88
 
100
 
def changes_from_git_changes(changes, mapping, specific_file=None,
 
89
def changes_from_git_changes(changes, mapping, specific_file=None, 
101
90
                                require_versioned=False):
102
91
    """Create a iter_changes-like generator from a git stream.
103
 
 
104
 
    source and target are iterators over tuples with:
 
92
    
 
93
    source and target are iterators over tuples with: 
105
94
        (filename, sha, mode)
106
95
    """
107
96
    for (oldpath, newpath), (oldmode, newmode), (oldsha, newsha) in changes:
138
127
                newname = newpath
139
128
            else:
140
129
                newparent = mapping.generate_file_id(newparentpath)
141
 
        yield (fileid, (oldpath, newpath), (oldsha != newsha),
142
 
             (oldpath is not None, newpath is not None),
143
 
             (oldparent, newparent), (oldname, newname),
144
 
             (oldkind, newkind), (oldexe, newexe))
 
130
        yield fileid, (oldpath, newpath), (oldsha != newsha), (oldpath is not None, newpath is not None), (oldparent, newparent), (oldname, newname), (oldkind, newkind), (oldexe, newexe)
145
131
 
146
132
 
147
133
class InterGitRevisionTrees(tree.InterTree):
153
139
 
154
140
    @classmethod
155
141
    def is_compatible(cls, source, target):
156
 
        return (isinstance(source, GitRevisionTree) and
 
142
        return (isinstance(source, GitRevisionTree) and 
157
143
                isinstance(target, GitRevisionTree))
158
144
 
159
145
    def compare(self, want_unchanged=False, specific_files=None,
163
149
            raise AssertionError
164
150
        changes = self.source._repository._git.object_store.tree_changes(
165
151
            self.source.tree, self.target.tree, want_unchanged=want_unchanged)
166
 
        source_fileid_map = self.source.mapping.get_fileid_map(
167
 
            self.source._repository._git.object_store.__getitem__,
168
 
            self.source.tree)
169
 
        target_fileid_map = self.target.mapping.get_fileid_map(
170
 
            self.target._repository._git.object_store.__getitem__,
171
 
            self.target.tree)
172
 
        return tree_delta_from_git_changes(changes, self.target.mapping,
173
 
            (source_fileid_map, target_fileid_map),
 
152
        return tree_delta_from_git_changes(changes, self.target.mapping, 
174
153
            specific_file=specific_files)
175
154
 
176
155
    def iter_changes(self, include_unchanged=False, specific_files=None,
177
 
        pb=None, extra_trees=[], require_versioned=True,
178
 
        want_unversioned=False):
 
156
        pb=None, extra_trees=[], require_versioned=True, want_unversioned=False):
179
157
        if self.source._repository._git.object_store != self.target._repository._git.object_store:
180
158
            raise AssertionError
181
159
        changes = self.source._repository._git.object_store.tree_changes(
182
 
            self.source.tree, self.target.tree,
 
160
            self.source.tree, self.target.tree, 
183
161
            want_unchanged=include_unchanged)
184
 
        return changes_from_git_changes(changes, self.target.mapping,
 
162
        return changes_from_git_changes(changes, self.target.mapping, 
185
163
            specific_file=specific_files)
186
164
 
187
165