1
# Copyright (C) 2010-2018 Jelmer Vernooij <jelmer@jelmer.uk>
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 2 of the License, or
6
# (at your option) any later version.
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.
13
# You should have received a copy of the GNU General Public License
14
# along with this program; if not, write to the Free Software
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17
"""Conversion between refs and Bazaar revision pointers."""
19
from __future__ import absolute_import
21
from dulwich.refs import (
26
from dulwich.repo import (
33
revision as _mod_revision,
36
is_tag = lambda x: x.startswith(LOCAL_TAG_PREFIX)
37
is_head = lambda x: x.startswith(LOCAL_BRANCH_PREFIX)
38
is_peeled = lambda x: x.endswith(ANNOTATED_TAG_SUFFIX)
41
def gather_peeled(refs):
43
for k, v in refs.items():
47
peeled = refs[k+ANNOTATED_TAG_SUFFIX]
52
ret[k] = (peeled, unpeeled)
56
def branch_name_to_ref(name):
57
"""Map a branch name to a ref.
59
:param name: Branch name
64
if not name.startswith("refs/"):
65
return LOCAL_BRANCH_PREFIX + osutils.safe_utf8(name)
67
return osutils.safe_utf8(name)
70
def tag_name_to_ref(name):
71
"""Map a tag name to a ref.
76
return LOCAL_TAG_PREFIX + osutils.safe_utf8(name)
79
def ref_to_branch_name(ref):
80
"""Map a ref to a branch name
83
:return: A branch name
89
if ref.startswith(LOCAL_BRANCH_PREFIX):
90
return ref[len(LOCAL_BRANCH_PREFIX):].decode('utf-8')
91
raise ValueError("unable to map ref %s back to branch name" % ref)
94
def ref_to_tag_name(ref):
95
if ref.startswith(LOCAL_TAG_PREFIX):
96
return ref[len(LOCAL_TAG_PREFIX):].decode("utf-8")
97
raise ValueError("unable to map ref %s back to tag name" % ref)
100
class BazaarRefsContainer(RefsContainer):
102
def __init__(self, dir, object_store):
104
self.object_store = object_store
106
def get_packed_refs(self):
109
def set_symbolic_ref(self, name, other):
111
pass # FIXME: Switch default branch
113
raise NotImplementedError(
114
"Symbolic references not supported for anything other than "
117
def _get_revid_by_tag_name(self, tag_name):
118
for branch in self.dir.list_branches():
120
# FIXME: This is ambiguous!
121
return branch.tags.lookup_tag(tag_name)
122
except errors.NoSuchTag:
126
def _get_revid_by_branch_name(self, branch_name):
128
branch = self.dir.open_branch(branch_name)
129
except errors.NoColocatedBranchSupport:
130
if branch_name in ("HEAD", "master"):
131
branch = self.dir.open_branch()
134
return branch.last_revision()
136
def read_loose_ref(self, ref):
138
branch_name = ref_to_branch_name(ref)
140
tag_name = ref_to_tag_name(ref)
141
revid = self._get_revid_by_tag_name(tag_name)
143
revid = self._get_revid_by_branch_name(branch_name)
144
if revid == _mod_revision.NULL_REVISION:
146
# FIXME: Unpeel if necessary
147
with self.object_store.lock_read():
148
return self.object_store._lookup_revision_sha1(revid)
150
def get_peeled(self, ref):
151
return self.read_loose_ref(ref)
155
for branch in self.dir.list_branches():
156
repo = branch.repository
157
if repo.has_revision(branch.last_revision()):
158
ref = branch_name_to_ref(getattr(branch, "name", ""))
161
for tag_name, revid in branch.tags.get_tag_dict().items():
162
if repo.has_revision(revid):
163
keys.add(tag_name_to_ref(tag_name))
164
except errors.TagsNotSupported:
168
def __delitem__(self, ref):
170
branch_name = ref_to_branch_name(ref)
172
return # FIXME: Cope with tags!
173
self.dir.destroy_branch(branch_name)
175
def __setitem__(self, ref, sha):
177
branch_name = ref_to_branch_name(ref)
179
# FIXME: Cope with tags!
182
target_branch = self.repo_dir.open_branch(branch_name)
183
except errors.NotBranchError:
184
target_branch = self.repo.create_branch(branch_name)
186
rev_id = self.mapping.revision_id_foreign_to_bzr(sha)
187
with target_branch.lock_write():
188
target_branch.generate_revision_history(rev_id)
191
def get_refs_container(controldir, object_store):
192
fn = getattr(controldir, "get_refs_container", None)
195
return BazaarRefsContainer(controldir, object_store)
198
def remote_refs_dict_to_tag_refs(refs_dict):
201
for k, v in refs_dict.items():
207
all_keys = set().union(base.keys(), peeled.keys())
210
tag_name = ref_to_tag_name(n)
213
yield (n, tag_name, peeled.get(n), base.get(n))