/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

Update docs.

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
20
21
from bzrlib import (
21
22
    errors,
 
23
    graph,
22
24
    inventory,
 
25
    osutils,
23
26
    repository,
24
27
    revision,
25
28
    revisiontree,
 
29
    ui,
 
30
    urlutils,
26
31
    )
27
32
from bzrlib.foreign import (
28
33
    ForeignRepository,
29
34
    )
 
35
from bzrlib.trace import (
 
36
    mutter,
 
37
    )
 
38
from bzrlib.transport import (
 
39
    get_transport,
 
40
    )
30
41
 
31
42
from bzrlib.plugins.git.commit import (
32
43
    GitCommitBuilder,
33
44
    )
 
45
from bzrlib.plugins.git.foreign import (
 
46
    versionedfiles,
 
47
    )
 
48
from bzrlib.plugins.git.inventory import (
 
49
    GitInventory,
 
50
    )
34
51
from bzrlib.plugins.git.mapping import (
35
52
    default_mapping,
36
53
    foreign_git,
37
54
    mapping_registry,
38
55
    )
39
 
from bzrlib.plugins.git.tree import (
40
 
    GitRevisionTree,
41
 
    )
42
56
from bzrlib.plugins.git.versionedfiles import (
43
 
    GitRevisions,
44
57
    GitTexts,
45
58
    )
46
59
 
47
60
 
48
 
from dulwich.objects import (
49
 
    Commit,
50
 
    )
 
61
class GitTags(object):
 
62
 
 
63
    def __init__(self, tags):
 
64
        self._tags = tags
 
65
 
 
66
    def __iter__(self):
 
67
        return iter(self._tags)
51
68
 
52
69
 
53
70
class GitRepository(ForeignRepository):
58
75
    vcs = foreign_git
59
76
 
60
77
    def __init__(self, gitdir, lockfiles):
61
 
        ForeignRepository.__init__(self, GitRepositoryFormat(), gitdir,
 
78
        ForeignRepository.__init__(self, GitRepositoryFormat(), gitdir, 
62
79
            lockfiles)
63
80
        from bzrlib.plugins.git import fetch, push
64
 
        for optimiser in [fetch.InterRemoteGitNonGitRepository,
 
81
        for optimiser in [fetch.InterRemoteGitNonGitRepository, 
65
82
                          fetch.InterLocalGitNonGitRepository,
66
83
                          fetch.InterGitGitRepository,
67
84
                          push.InterToLocalGitRepository,
69
86
            repository.InterRepository.register_optimiser(optimiser)
70
87
 
71
88
    def is_shared(self):
72
 
        return False
 
89
        return True
73
90
 
74
91
    def supports_rich_root(self):
75
92
        return True
76
93
 
77
 
    def _warn_if_deprecated(self, branch=None):
 
94
    def _warn_if_deprecated(self):
78
95
        # This class isn't deprecated
79
96
        pass
80
97
 
82
99
        return default_mapping
83
100
 
84
101
    def make_working_trees(self):
85
 
        return not self._git.bare
86
 
 
87
 
    def revision_graph_can_have_wrong_parents(self):
88
 
        return False
 
102
        return True
89
103
 
90
104
    def dfetch(self, source, stop_revision):
91
105
        interrepo = repository.InterRepository.get(source, self)
92
106
        return interrepo.dfetch(stop_revision)
93
107
 
 
108
    def dfetch_refs(self, source, stop_revision):
 
109
        interrepo = repository.InterRepository.get(source, self)
 
110
        return interrepo.dfetch_refs(stop_revision)
 
111
 
94
112
 
95
113
class LocalGitRepository(GitRepository):
96
114
    """Git repository on the file system."""
97
115
 
98
116
    def __init__(self, gitdir, lockfiles):
 
117
        # FIXME: This also caches negatives. Need to be more careful 
 
118
        # about this once we start writing to git
 
119
        self._parents_provider = graph.CachingParentsProvider(self)
99
120
        GitRepository.__init__(self, gitdir, lockfiles)
100
121
        self.base = gitdir.root_transport.base
101
122
        self._git = gitdir._git
102
 
        self.signatures = None
103
 
        self.revisions = GitRevisions(self, self._git.object_store)
104
 
        self.inventories = None
 
123
        self.texts = None
 
124
        self.signatures = versionedfiles.VirtualSignatureTexts(self)
 
125
        self.revisions = versionedfiles.VirtualRevisionTexts(self)
 
126
        self.inventories = versionedfiles.VirtualInventoryTexts(self)
105
127
        self.texts = GitTexts(self)
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
 
128
        self.tags = GitTags(self._git.get_tags())
116
129
 
117
130
    def all_revision_ids(self):
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)
 
131
        ret = set([revision.NULL_REVISION])
 
132
        heads = self._git.heads()
 
133
        if heads == {}:
 
134
            return ret
 
135
        bzr_heads = [self.get_mapping().revision_id_foreign_to_bzr(h) for h in heads.itervalues()]
 
136
        ret = set(bzr_heads)
 
137
        graph = self.get_graph()
 
138
        for rev, parents in graph.iter_ancestry(bzr_heads):
 
139
            ret.add(rev)
123
140
        return ret
124
141
 
 
142
    def _make_parents_provider(self):
 
143
        """See Repository._make_parents_provider()."""
 
144
        return self._parents_provider
 
145
 
125
146
    def get_parent_map(self, revids):
126
147
        parent_map = {}
127
148
        for revision_id in revids:
129
150
            if revision_id == revision.NULL_REVISION:
130
151
                parent_map[revision_id] = ()
131
152
                continue
132
 
            hexsha, mapping = self.lookup_bzr_revision_id(revision_id)
133
 
            try:
134
 
                commit = self._git[hexsha]
135
 
            except KeyError:
 
153
            hexsha, mapping = self.lookup_git_revid(revision_id)
 
154
            commit  = self._git.commit(hexsha)
 
155
            if commit is None:
136
156
                continue
137
 
            parent_map[revision_id] = [
138
 
                self.lookup_foreign_revision_id(p, mapping)
139
 
                for p in commit.parents]
 
157
            else:
 
158
                parent_map[revision_id] = [mapping.revision_id_foreign_to_bzr(p) for p in commit.parents]
140
159
        return parent_map
141
160
 
142
161
    def get_ancestry(self, revision_id, topo_sorted=True):
155
174
    def get_signature_text(self, revision_id):
156
175
        raise errors.NoSuchRevision(self, revision_id)
157
176
 
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):
 
177
    def lookup_revision_id(self, revid):
162
178
        """Lookup a revision id.
163
 
 
 
179
        
 
180
        :param revid: Bazaar revision id.
 
181
        :return: Tuple with git revisionid and mapping.
164
182
        """
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
 
183
        # Yes, this doesn't really work, but good enough as a stub
 
184
        return osutils.sha(rev_id).hexdigest(), self.get_mapping()
181
185
 
182
186
    def has_signature_for_revision_id(self, revision_id):
183
187
        return False
184
188
 
185
 
    def lookup_bzr_revision_id(self, bzr_revid, mapping=None):
 
189
    def lookup_git_revid(self, bzr_revid):
186
190
        try:
187
191
            return mapping_registry.revision_id_bzr_to_foreign(bzr_revid)
188
192
        except errors.InvalidRevisionId:
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)
 
193
            raise errors.NoSuchRevision(self, bzr_revid)
205
194
 
206
195
    def get_revision(self, revision_id):
207
 
        git_commit_id, mapping = self.lookup_bzr_revision_id(revision_id)
 
196
        git_commit_id, mapping = self.lookup_git_revid(revision_id)
208
197
        try:
209
 
            commit = self._git[git_commit_id]
 
198
            commit = self._git.commit(git_commit_id)
210
199
        except KeyError:
211
200
            raise errors.NoSuchRevision(self, revision_id)
212
 
        revision, roundtrip_revid, verifiers = mapping.import_commit(
213
 
            commit, self.lookup_foreign_revision_id)
 
201
        # print "fetched revision:", git_commit_id
 
202
        revision = mapping.import_commit(commit)
214
203
        assert revision is not None
215
 
        # FIXME: check verifiers ?
216
 
        if roundtrip_revid:
217
 
            revision.revision_id = roundtrip_revid
218
204
        return revision
219
205
 
220
206
    def has_revision(self, revision_id):
221
207
        try:
222
 
            git_commit_id, mapping = self.lookup_bzr_revision_id(revision_id)
 
208
            self.get_revision(revision_id)
223
209
        except errors.NoSuchRevision:
224
210
            return False
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))
 
211
        else:
 
212
            return True
229
213
 
230
214
    def get_revisions(self, revids):
231
215
        return [self.get_revision(r) for r in revids]
253
237
        progress=None):
254
238
        return self._git.fetch_objects(determine_wants, graph_walker, progress)
255
239
 
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 {}, []
 
240
 
 
241
class GitRevisionTree(revisiontree.RevisionTree):
 
242
 
 
243
    def __init__(self, repository, revision_id):
 
244
        self._repository = repository
 
245
        self._revision_id = revision_id
 
246
        assert isinstance(revision_id, str)
 
247
        git_id, self.mapping = repository.lookup_git_revid(revision_id)
 
248
        try:
 
249
            commit = repository._git.commit(git_id)
 
250
        except KeyError, r:
 
251
            raise errors.NoSuchRevision(repository, revision_id)
 
252
        self.tree = commit.tree
 
253
        self._inventory = GitInventory(self.tree, self.mapping, repository._git.object_store, revision_id)
 
254
 
 
255
    def get_revision_id(self):
 
256
        return self._revision_id
 
257
 
 
258
    def get_file_text(self, file_id):
 
259
        entry = self._inventory[file_id]
 
260
        if entry.kind == 'directory': return ""
 
261
        return entry.object.data
268
262
 
269
263
 
270
264
class GitRepositoryFormat(repository.RepositoryFormat):
277
271
        return "Git Repository"
278
272
 
279
273
    def initialize(self, url, shared=False, _internal=False):
280
 
        raise errors.UninitializableFormat(self)
 
274
        raise bzr_errors.UninitializableFormat(self)
281
275
 
282
276
    def check_conversion_target(self, target_repo_format):
283
277
        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"