/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
# Copyright (C) 2009 Jelmer Vernooij <jelmer@samba.org>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

"""Map from Git sha's to Bazaar objects."""

from dulwich.objects import (
    Blob,
    Tree,
    )
import stat

from bzrlib import (
    errors,
    ui,
    )

from bzrlib.plugins.git.mapping import (
    inventory_to_tree_and_blobs,
    mapping_registry,
    revision_to_commit,
    )
from bzrlib.plugins.git.shamap import (
    SqliteGitShaMap,
    )


class BazaarObjectStore(object):
    """A Git-style object store backed onto a Bazaar repository."""

    def __init__(self, repository, mapping=None):
        self.repository = repository
        if mapping is None:
            self.mapping = self.repository.get_mapping()
        else:
            self.mapping = mapping
        self._idmap = SqliteGitShaMap(self.repository._transport)

    def _update_sha_map(self):
        all_revids = self.repository.all_revision_ids()
        graph = self.repository.get_graph()
        present_revids = set(self._idmap.revids())
        pb = ui.ui_factory.nested_progress_bar()
        try:
            for i, revid in enumerate(graph.iter_topo_order(all_revids)):
                if revid in present_revids:
                    continue
                pb.update("updating git map", i, len(all_revids))
                self._update_sha_map_revision(revid)
        finally:
            self._idmap.commit()
            pb.finished()

    def _update_sha_map_revision(self, revid):
        inv = self.repository.get_inventory(revid)
        objects = inventory_to_tree_and_blobs(self.repository, self.mapping,
            revid)
        for sha, o, path in objects:
            if path == "":
                tree_sha = sha
            ie = inv[inv.path2id(path)]
            if ie.kind in ("file", "symlink"):
                self._idmap.add_entry(sha, "blob", (ie.file_id, ie.revision))
            elif ie.kind == "directory":
                self._idmap.add_entry(sha, "tree", (path, ie.revision))
            else:
                raise AssertionError()
        rev = self.repository.get_revision(revid)
        commit_obj = revision_to_commit(rev, tree_sha,
            self._idmap._parent_lookup)
        try:
            foreign_revid, mapping = mapping_registry.parse_revision_id(revid)
        except errors.InvalidRevisionId:
            pass
        else:
            if foreign_revid != commit_obj.id:
                raise AssertionError("recreated git commit had different sha1: expected %s, got %s" % (foreign_revid, commit_obj.id))
        self._idmap.add_entry(commit_obj.id, "commit", (revid, tree_sha))

    def _get_blob(self, fileid, revision):
        """Return a Git Blob object from a fileid and revision stored in bzr.
        
        :param fileid: File id of the text
        :param revision: Revision of the text
        """
        text = self.repository.texts.get_record_stream([(fileid, revision)],
            "unordered", True).next().get_bytes_as("fulltext")
        blob = Blob()
        blob._text = text
        return blob

    def _get_tree(self, path, revid, inv=None):
        """Return a Git Tree object from a path and a revision stored in bzr.

        :param path: path in the tree.
        :param revision: Revision of the tree.
        """
        if inv is None:
            inv = self.repository.get_inventory(revid)
        tree = Tree()
        fileid = inv.path2id(path)
        for name, ie in inv[fileid].children.iteritems():
            if ie.kind == "directory":
                subtree = self._get_tree(inv.id2path(ie.file_id), revid, inv)
                tree.add(stat.S_IFDIR, name.encode('UTF-8'), subtree.id)
            elif ie.kind == "file":
                blob = self._get_blob(ie.file_id, ie.revision)
                mode = stat.S_IFREG | 0644
                if ie.executable:
                    mode |= 0111
                tree.add(mode, name.encode('UTF-8'), blob.id)
            elif ie.kind == "symlink":
                raise AssertionError("Symlinks not yet supported")
        tree.serialize()
        return tree

    def _get_commit(self, revid, tree_sha):
        rev = self.repository.get_revision(revid)
        return revision_to_commit(rev, tree_sha, self._idmap._parent_lookup)

    def get_raw(self, sha):
        obj = self[sha]
        assert obj.id == sha
        return obj._text

    def __getitem__(self, sha):
        # See if sha is in map
        try:
            (type, type_data) = self._idmap.lookup_git_sha(sha)
        except KeyError:
            # if not, see if there are any unconverted revisions and add them 
            # to the map, search for sha in map again
            self._update_sha_map()
            (type, type_data) = self._idmap.lookup_git_sha(sha)
        # convert object to git object
        if type == "commit":
            return self._get_commit(*type_data)
        elif type == "blob":
            return self._get_blob(*type_data)
        elif type == "tree":
            return self._get_tree(*type_data)
        else:
            raise AssertionError("Unknown object type '%s'" % type)