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

More work on roundtrip push support.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 
18
18
"""An adapter between a Git Repository and a Bazaar Branch"""
19
19
 
20
 
import bzrlib
21
20
from bzrlib import (
22
21
    errors,
23
 
    graph,
24
22
    inventory,
25
 
    osutils,
26
23
    repository,
27
24
    revision,
28
25
    revisiontree,
29
 
    ui,
30
 
    urlutils,
31
26
    )
32
27
from bzrlib.foreign import (
33
28
    ForeignRepository,
34
29
    )
35
 
from bzrlib.trace import (
36
 
    mutter,
37
 
    )
38
 
from bzrlib.transport import (
39
 
    get_transport,
40
 
    )
41
30
 
42
31
from bzrlib.plugins.git.commit import (
43
32
    GitCommitBuilder,
44
33
    )
45
 
from bzrlib.plugins.git.inventory import (
46
 
    GitInventory,
47
 
    )
48
34
from bzrlib.plugins.git.mapping import (
49
35
    default_mapping,
50
36
    foreign_git,
51
37
    mapping_registry,
52
38
    )
 
39
from bzrlib.plugins.git.tree import (
 
40
    GitRevisionTree,
 
41
    )
53
42
from bzrlib.plugins.git.versionedfiles import (
54
43
    GitRevisions,
55
44
    GitTexts,
56
45
    )
57
46
 
58
47
 
 
48
from dulwich.objects import (
 
49
    Commit,
 
50
    )
 
51
 
 
52
 
59
53
class GitRepository(ForeignRepository):
60
54
    """An adapter to git repositories for bzr."""
61
55
 
64
58
    vcs = foreign_git
65
59
 
66
60
    def __init__(self, gitdir, lockfiles):
67
 
        ForeignRepository.__init__(self, GitRepositoryFormat(), gitdir, 
 
61
        ForeignRepository.__init__(self, GitRepositoryFormat(), gitdir,
68
62
            lockfiles)
69
63
        from bzrlib.plugins.git import fetch, push
70
 
        for optimiser in [fetch.InterRemoteGitNonGitRepository, 
 
64
        for optimiser in [fetch.InterRemoteGitNonGitRepository,
71
65
                          fetch.InterLocalGitNonGitRepository,
72
66
                          fetch.InterGitGitRepository,
73
67
                          push.InterToLocalGitRepository,
75
69
            repository.InterRepository.register_optimiser(optimiser)
76
70
 
77
71
    def is_shared(self):
78
 
        return True
 
72
        return False
79
73
 
80
74
    def supports_rich_root(self):
81
75
        return True
82
76
 
83
 
    def _warn_if_deprecated(self):
 
77
    def _warn_if_deprecated(self, branch=None):
84
78
        # This class isn't deprecated
85
79
        pass
86
80
 
88
82
        return default_mapping
89
83
 
90
84
    def make_working_trees(self):
91
 
        return True
 
85
        return not self._git.bare
 
86
 
 
87
    def revision_graph_can_have_wrong_parents(self):
 
88
        return False
92
89
 
93
90
    def dfetch(self, source, stop_revision):
94
91
        interrepo = repository.InterRepository.get(source, self)
95
92
        return interrepo.dfetch(stop_revision)
96
93
 
97
 
    def dfetch_refs(self, source, stop_revision):
98
 
        interrepo = repository.InterRepository.get(source, self)
99
 
        return interrepo.dfetch_refs(stop_revision)
100
 
 
101
94
 
102
95
class LocalGitRepository(GitRepository):
103
96
    """Git repository on the file system."""
104
97
 
105
98
    def __init__(self, gitdir, lockfiles):
106
 
        # FIXME: This also caches negatives. Need to be more careful 
107
 
        # about this once we start writing to git
108
 
        self._parents_provider = graph.CachingParentsProvider(self)
109
99
        GitRepository.__init__(self, gitdir, lockfiles)
110
100
        self.base = gitdir.root_transport.base
111
101
        self._git = gitdir._git
112
 
        self.texts = None
113
102
        self.signatures = None
114
 
        self.revisions = GitRevisions(self._git.object_store)
 
103
        self.revisions = GitRevisions(self, self._git.object_store)
115
104
        self.inventories = None
116
105
        self.texts = GitTexts(self)
117
106
 
 
107
    def _iter_revision_ids(self):
 
108
        mapping = self.get_mapping()
 
109
        for sha in self._git.object_store:
 
110
            o = self._git.object_store[sha]
 
111
            if not isinstance(o, Commit):
 
112
                continue
 
113
            rev, roundtrip_revid, verifiers = mapping.import_commit(o,
 
114
                self.lookup_foreign_revision_id)
 
115
            yield o.id, rev.revision_id, roundtrip_revid
 
116
 
118
117
    def all_revision_ids(self):
119
 
        ret = set([revision.NULL_REVISION])
120
 
        heads = self._git.refs.as_dict('refs/heads')
121
 
        if heads == {}:
122
 
            return ret
123
 
        bzr_heads = [self.get_mapping().revision_id_foreign_to_bzr(h) for h in heads.itervalues()]
124
 
        ret = set(bzr_heads)
125
 
        graph = self.get_graph()
126
 
        for rev, parents in graph.iter_ancestry(bzr_heads):
127
 
            ret.add(rev)
 
118
        ret = set([])
 
119
        for git_sha, revid, roundtrip_revid in self._iter_revision_ids():
 
120
            ret.add(revid)
 
121
            if roundtrip_revid:
 
122
                ret.add(roundtrip_revid)
128
123
        return ret
129
124
 
130
 
    def _make_parents_provider(self):
131
 
        """See Repository._make_parents_provider()."""
132
 
        return self._parents_provider
133
 
 
134
125
    def get_parent_map(self, revids):
135
126
        parent_map = {}
136
127
        for revision_id in revids:
138
129
            if revision_id == revision.NULL_REVISION:
139
130
                parent_map[revision_id] = ()
140
131
                continue
141
 
            hexsha, mapping = self.lookup_git_revid(revision_id)
142
 
            commit  = self._git.commit(hexsha)
143
 
            if commit is None:
 
132
            hexsha, mapping = self.lookup_bzr_revision_id(revision_id)
 
133
            try:
 
134
                commit = self._git[hexsha]
 
135
            except KeyError:
144
136
                continue
145
 
            else:
146
 
                parent_map[revision_id] = [mapping.revision_id_foreign_to_bzr(p) for p in commit.parents]
 
137
            parent_map[revision_id] = [
 
138
                self.lookup_foreign_revision_id(p, mapping)
 
139
                for p in commit.parents]
147
140
        return parent_map
148
141
 
149
142
    def get_ancestry(self, revision_id, topo_sorted=True):
162
155
    def get_signature_text(self, revision_id):
163
156
        raise errors.NoSuchRevision(self, revision_id)
164
157
 
165
 
    def lookup_revision_id(self, revid):
 
158
    def pack(self, hint=None, clean_obsolete_packs=False):
 
159
        self._git.object_store.pack_loose_objects()
 
160
 
 
161
    def lookup_foreign_revision_id(self, foreign_revid, mapping=None):
166
162
        """Lookup a revision id.
167
 
        
168
 
        :param revid: Bazaar revision id.
169
 
        :return: Tuple with git revisionid and mapping.
 
163
 
170
164
        """
171
 
        # Yes, this doesn't really work, but good enough as a stub
172
 
        return osutils.sha(rev_id).hexdigest(), self.get_mapping()
 
165
        assert type(foreign_revid) is str
 
166
        if mapping is None:
 
167
            mapping = self.get_mapping()
 
168
        from dulwich.protocol import (
 
169
            ZERO_SHA,
 
170
            )
 
171
        if foreign_revid == ZERO_SHA:
 
172
            return revision.NULL_REVISION
 
173
        commit = self._git[foreign_revid]
 
174
        rev, roundtrip_revid, verifiers = mapping.import_commit(commit,
 
175
            lambda x: None)
 
176
        # FIXME: check testament before doing this?
 
177
        if roundtrip_revid:
 
178
            return roundtrip_revid
 
179
        else:
 
180
            return rev.revision_id
173
181
 
174
182
    def has_signature_for_revision_id(self, revision_id):
175
183
        return False
176
184
 
177
 
    def lookup_git_revid(self, bzr_revid):
 
185
    def lookup_bzr_revision_id(self, bzr_revid, mapping=None):
178
186
        try:
179
187
            return mapping_registry.revision_id_bzr_to_foreign(bzr_revid)
180
188
        except errors.InvalidRevisionId:
181
 
            raise errors.NoSuchRevision(self, bzr_revid)
 
189
            if mapping is None:
 
190
                mapping = self.get_mapping()
 
191
            try:
 
192
                return (self._git.refs[mapping.revid_as_refname(bzr_revid)],
 
193
                        mapping)
 
194
            except KeyError:
 
195
                # Update refs from Git commit objects
 
196
                # FIXME: Hitting this a lot will be very inefficient...
 
197
                for git_sha, revid, roundtrip_revid in self._iter_revision_ids():
 
198
                    if not roundtrip_revid:
 
199
                        continue
 
200
                    refname = mapping.revid_as_refname(roundtrip_revid)
 
201
                    self._git.refs[refname] = git_sha
 
202
                    if roundtrip_revid == bzr_revid:
 
203
                        return git_sha, mapping
 
204
                raise errors.NoSuchRevision(self, bzr_revid)
182
205
 
183
206
    def get_revision(self, revision_id):
184
 
        git_commit_id, mapping = self.lookup_git_revid(revision_id)
 
207
        git_commit_id, mapping = self.lookup_bzr_revision_id(revision_id)
185
208
        try:
186
 
            commit = self._git.commit(git_commit_id)
 
209
            commit = self._git[git_commit_id]
187
210
        except KeyError:
188
211
            raise errors.NoSuchRevision(self, revision_id)
189
 
        # print "fetched revision:", git_commit_id
190
 
        revision = mapping.import_commit(commit)
 
212
        revision, roundtrip_revid, verifiers = mapping.import_commit(
 
213
            commit, self.lookup_foreign_revision_id)
191
214
        assert revision is not None
 
215
        # FIXME: check verifiers ?
 
216
        if roundtrip_revid:
 
217
            revision.revision_id = roundtrip_revid
192
218
        return revision
193
219
 
194
220
    def has_revision(self, revision_id):
195
221
        try:
196
 
            self.get_revision(revision_id)
 
222
            git_commit_id, mapping = self.lookup_bzr_revision_id(revision_id)
197
223
        except errors.NoSuchRevision:
198
224
            return False
199
 
        else:
200
 
            return True
 
225
        return (git_commit_id in self._git)
 
226
 
 
227
    def has_revisions(self, revision_ids):
 
228
        return set(filter(self.has_revision, revision_ids))
201
229
 
202
230
    def get_revisions(self, revids):
203
231
        return [self.get_revision(r) for r in revids]
225
253
        progress=None):
226
254
        return self._git.fetch_objects(determine_wants, graph_walker, progress)
227
255
 
228
 
 
229
 
class GitRevisionTree(revisiontree.RevisionTree):
230
 
 
231
 
    def __init__(self, repository, revision_id):
232
 
        self._revision_id = revision_id
233
 
        self._repository = repository
234
 
        store = repository._git.object_store
235
 
        assert isinstance(revision_id, str)
236
 
        git_id, self.mapping = repository.lookup_git_revid(revision_id)
237
 
        try:
238
 
            commit = store[git_id]
239
 
        except KeyError, r:
240
 
            raise errors.NoSuchRevision(repository, revision_id)
241
 
        self.tree = commit.tree
242
 
        self._inventory = GitInventory(self.tree, self.mapping, store, 
243
 
                                       revision_id)
244
 
 
245
 
    def get_revision_id(self):
246
 
        return self._revision_id
247
 
 
248
 
    def get_file_text(self, file_id, path=None):
249
 
        if path is not None:
250
 
            entry = self._inventory._get_ie(path)
251
 
        else:
252
 
            entry = self._inventory[file_id]
253
 
        if entry.kind == 'directory': return ""
254
 
        return entry.object.data
 
256
    def _get_versioned_file_checker(self, text_key_references=None,
 
257
                        ancestors=None):
 
258
        return GitVersionedFileChecker(self,
 
259
            text_key_references=text_key_references, ancestors=ancestors)
 
260
 
 
261
 
 
262
class GitVersionedFileChecker(repository._VersionedFileChecker):
 
263
 
 
264
    file_ids = []
 
265
 
 
266
    def _check_file_version_parents(self, texts, progress_bar):
 
267
        return {}, []
255
268
 
256
269
 
257
270
class GitRepositoryFormat(repository.RepositoryFormat):
264
277
        return "Git Repository"
265
278
 
266
279
    def initialize(self, url, shared=False, _internal=False):
267
 
        raise bzr_errors.UninitializableFormat(self)
 
280
        raise errors.UninitializableFormat(self)
268
281
 
269
282
    def check_conversion_target(self, target_repo_format):
270
283
        return target_repo_format.rich_root_data
 
284
 
 
285
    def get_foreign_tests_repository_factory(self):
 
286
        from bzrlib.plugins.git.tests.test_repository import (
 
287
            ForeignTestsRepositoryFactory,
 
288
            )
 
289
        return ForeignTestsRepositoryFactory()
 
290
 
 
291
    def network_name(self):
 
292
        return "git"