bzr branch
http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
0.358.2
by Jelmer Vernooij
Refresh copyright headers, add my email. |
1 |
# Copyright (C) 2010-2018 Jelmer Vernooij <jelmer@jelmer.uk>
|
0.200.872
by Jelmer Vernooij
Move refs code to separate module. |
2 |
#
|
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.
|
|
7 |
#
|
|
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.
|
|
12 |
#
|
|
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
|
|
0.358.1
by Jelmer Vernooij
Fix FSF address. |
15 |
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
0.200.872
by Jelmer Vernooij
Move refs code to separate module. |
16 |
|
17 |
"""Conversion between refs and Bazaar revision pointers."""
|
|
18 |
||
0.404.3
by Jelmer Vernooij
use more constants. |
19 |
from dulwich.refs import ( |
20 |
ANNOTATED_TAG_SUFFIX, |
|
21 |
LOCAL_BRANCH_PREFIX, |
|
22 |
LOCAL_TAG_PREFIX, |
|
23 |
)
|
|
0.200.873
by Jelmer Vernooij
Add convenience command for accessing virtual git refs. |
24 |
from dulwich.repo import ( |
25 |
RefsContainer, |
|
26 |
)
|
|
27 |
||
6986.2.1
by Jelmer Vernooij
Move breezy.plugins.git to breezy.git. |
28 |
from .. import ( |
0.200.873
by Jelmer Vernooij
Add convenience command for accessing virtual git refs. |
29 |
errors, |
0.200.1370
by Jelmer Vernooij
Cope with utf8 tags. |
30 |
osutils, |
0.377.1
by Jelmer Vernooij
Fix some remote operations and add more tests. |
31 |
revision as _mod_revision, |
0.200.873
by Jelmer Vernooij
Add convenience command for accessing virtual git refs. |
32 |
)
|
33 |
||
7143.15.2
by Jelmer Vernooij
Run autopep8. |
34 |
|
7143.15.3
by Jelmer Vernooij
Fix pep8 issues in breezy.git. |
35 |
def is_tag(x): |
36 |
return x.startswith(LOCAL_TAG_PREFIX) |
|
37 |
||
38 |
||
39 |
def is_head(x): |
|
40 |
return x.startswith(LOCAL_BRANCH_PREFIX) |
|
41 |
||
42 |
||
43 |
def is_peeled(x): |
|
44 |
return x.endswith(ANNOTATED_TAG_SUFFIX) |
|
0.200.1061
by Jelmer Vernooij
Add support for using unpeel map. |
45 |
|
0.200.873
by Jelmer Vernooij
Add convenience command for accessing virtual git refs. |
46 |
|
0.200.1457
by Jelmer Vernooij
Factor out gather_peeled method. |
47 |
def gather_peeled(refs): |
0.200.872
by Jelmer Vernooij
Move refs code to separate module. |
48 |
ret = {} |
6964.2.1
by Jelmer Vernooij
Initial work to support brz-git on python3. |
49 |
for k, v in refs.items(): |
0.200.1480
by Jelmer Vernooij
Don't request unpeeled objects, newer versions of github refuse them. |
50 |
if is_peeled(k): |
51 |
continue
|
|
52 |
try: |
|
7143.15.2
by Jelmer Vernooij
Run autopep8. |
53 |
peeled = refs[k + ANNOTATED_TAG_SUFFIX] |
0.200.1480
by Jelmer Vernooij
Don't request unpeeled objects, newer versions of github refuse them. |
54 |
unpeeled = v |
55 |
except KeyError: |
|
56 |
peeled = v |
|
57 |
unpeeled = None |
|
58 |
ret[k] = (peeled, unpeeled) |
|
0.200.1457
by Jelmer Vernooij
Factor out gather_peeled method. |
59 |
return ret |
60 |
||
61 |
||
0.200.1559
by Jelmer Vernooij
Fix compatibility with bzr 2.5. |
62 |
def branch_name_to_ref(name): |
0.200.872
by Jelmer Vernooij
Move refs code to separate module. |
63 |
"""Map a branch name to a ref. |
64 |
||
65 |
:param name: Branch name
|
|
66 |
:return: ref string
|
|
67 |
"""
|
|
0.200.1558
by Jelmer Vernooij
Cope with empty branch name ''. |
68 |
if name == "": |
6964.2.1
by Jelmer Vernooij
Initial work to support brz-git on python3. |
69 |
return b"HEAD" |
0.200.872
by Jelmer Vernooij
Move refs code to separate module. |
70 |
if not name.startswith("refs/"): |
0.404.3
by Jelmer Vernooij
use more constants. |
71 |
return LOCAL_BRANCH_PREFIX + osutils.safe_utf8(name) |
0.200.872
by Jelmer Vernooij
Move refs code to separate module. |
72 |
else: |
0.200.1370
by Jelmer Vernooij
Cope with utf8 tags. |
73 |
return osutils.safe_utf8(name) |
0.200.872
by Jelmer Vernooij
Move refs code to separate module. |
74 |
|
75 |
||
0.200.874
by Jelmer Vernooij
Support tag refs. |
76 |
def tag_name_to_ref(name): |
77 |
"""Map a tag name to a ref. |
|
78 |
||
79 |
:param name: Tag name
|
|
80 |
:return: ref string
|
|
81 |
"""
|
|
0.404.3
by Jelmer Vernooij
use more constants. |
82 |
return LOCAL_TAG_PREFIX + osutils.safe_utf8(name) |
0.200.874
by Jelmer Vernooij
Support tag refs. |
83 |
|
84 |
||
0.200.872
by Jelmer Vernooij
Move refs code to separate module. |
85 |
def ref_to_branch_name(ref): |
86 |
"""Map a ref to a branch name |
|
87 |
||
88 |
:param ref: Ref
|
|
89 |
:return: A branch name
|
|
90 |
"""
|
|
6964.2.1
by Jelmer Vernooij
Initial work to support brz-git on python3. |
91 |
if ref == b"HEAD": |
0.200.1559
by Jelmer Vernooij
Fix compatibility with bzr 2.5. |
92 |
return u"" |
0.200.1558
by Jelmer Vernooij
Cope with empty branch name ''. |
93 |
if ref is None: |
0.200.915
by Jelmer Vernooij
Cope with the fact that the old format didn't export file ids. |
94 |
return ref |
0.404.3
by Jelmer Vernooij
use more constants. |
95 |
if ref.startswith(LOCAL_BRANCH_PREFIX): |
7018.3.2
by Jelmer Vernooij
Fix some git tests. |
96 |
return ref[len(LOCAL_BRANCH_PREFIX):].decode('utf-8') |
0.200.874
by Jelmer Vernooij
Support tag refs. |
97 |
raise ValueError("unable to map ref %s back to branch name" % ref) |
98 |
||
99 |
||
100 |
def ref_to_tag_name(ref): |
|
0.404.4
by Jelmer Vernooij
Fix typo. |
101 |
if ref.startswith(LOCAL_TAG_PREFIX): |
0.404.3
by Jelmer Vernooij
use more constants. |
102 |
return ref[len(LOCAL_TAG_PREFIX):].decode("utf-8") |
0.200.1051
by Jelmer Vernooij
Fix typo. |
103 |
raise ValueError("unable to map ref %s back to tag name" % ref) |
0.200.872
by Jelmer Vernooij
Move refs code to separate module. |
104 |
|
0.200.873
by Jelmer Vernooij
Add convenience command for accessing virtual git refs. |
105 |
|
106 |
class BazaarRefsContainer(RefsContainer): |
|
107 |
||
108 |
def __init__(self, dir, object_store): |
|
109 |
self.dir = dir |
|
110 |
self.object_store = object_store |
|
111 |
||
0.377.1
by Jelmer Vernooij
Fix some remote operations and add more tests. |
112 |
def get_packed_refs(self): |
113 |
return {} |
|
114 |
||
0.200.873
by Jelmer Vernooij
Add convenience command for accessing virtual git refs. |
115 |
def set_symbolic_ref(self, name, other): |
7027.3.3
by Jelmer Vernooij
Add some more bees; support writing both bytes and unicode strings in build_tree_contents. |
116 |
if name == b"HEAD": |
7143.15.2
by Jelmer Vernooij
Run autopep8. |
117 |
pass # FIXME: Switch default branch |
0.200.873
by Jelmer Vernooij
Add convenience command for accessing virtual git refs. |
118 |
else: |
119 |
raise NotImplementedError( |
|
120 |
"Symbolic references not supported for anything other than "
|
|
121 |
"HEAD") |
|
122 |
||
0.200.874
by Jelmer Vernooij
Support tag refs. |
123 |
def _get_revid_by_tag_name(self, tag_name): |
124 |
for branch in self.dir.list_branches(): |
|
125 |
try: |
|
126 |
# FIXME: This is ambiguous!
|
|
127 |
return branch.tags.lookup_tag(tag_name) |
|
128 |
except errors.NoSuchTag: |
|
129 |
pass
|
|
130 |
return None |
|
131 |
||
132 |
def _get_revid_by_branch_name(self, branch_name): |
|
0.200.873
by Jelmer Vernooij
Add convenience command for accessing virtual git refs. |
133 |
try: |
134 |
branch = self.dir.open_branch(branch_name) |
|
135 |
except errors.NoColocatedBranchSupport: |
|
0.252.47
by Jelmer Vernooij
Fix handling of HEAD refs. |
136 |
if branch_name in ("HEAD", "master"): |
0.252.45
by Jelmer Vernooij
Finish fetching roundtripped revisions back into bzr. |
137 |
branch = self.dir.open_branch() |
138 |
else: |
|
139 |
raise
|
|
0.200.874
by Jelmer Vernooij
Support tag refs. |
140 |
return branch.last_revision() |
141 |
||
142 |
def read_loose_ref(self, ref): |
|
143 |
try: |
|
144 |
branch_name = ref_to_branch_name(ref) |
|
145 |
except ValueError: |
|
146 |
tag_name = ref_to_tag_name(ref) |
|
147 |
revid = self._get_revid_by_tag_name(tag_name) |
|
148 |
else: |
|
149 |
revid = self._get_revid_by_branch_name(branch_name) |
|
0.377.1
by Jelmer Vernooij
Fix some remote operations and add more tests. |
150 |
if revid == _mod_revision.NULL_REVISION: |
151 |
return None |
|
0.200.1487
by Jelmer Vernooij
Use peeling. |
152 |
# FIXME: Unpeel if necessary
|
0.377.1
by Jelmer Vernooij
Fix some remote operations and add more tests. |
153 |
with self.object_store.lock_read(): |
154 |
return self.object_store._lookup_revision_sha1(revid) |
|
0.200.873
by Jelmer Vernooij
Add convenience command for accessing virtual git refs. |
155 |
|
0.200.1487
by Jelmer Vernooij
Use peeling. |
156 |
def get_peeled(self, ref): |
157 |
return self.read_loose_ref(ref) |
|
158 |
||
0.200.873
by Jelmer Vernooij
Add convenience command for accessing virtual git refs. |
159 |
def allkeys(self): |
160 |
keys = set() |
|
161 |
for branch in self.dir.list_branches(): |
|
0.200.876
by Jelmer Vernooij
Filter out objects that aren't actually present locally. |
162 |
repo = branch.repository |
163 |
if repo.has_revision(branch.last_revision()): |
|
0.200.1561
by Jelmer Vernooij
Some fixes for colocated branch handling. |
164 |
ref = branch_name_to_ref(getattr(branch, "name", "")) |
0.252.47
by Jelmer Vernooij
Fix handling of HEAD refs. |
165 |
keys.add(ref) |
0.200.1439
by Jelmer Vernooij
Support accessing bzr branches without tag support. |
166 |
try: |
6964.2.1
by Jelmer Vernooij
Initial work to support brz-git on python3. |
167 |
for tag_name, revid in branch.tags.get_tag_dict().items(): |
0.200.1439
by Jelmer Vernooij
Support accessing bzr branches without tag support. |
168 |
if repo.has_revision(revid): |
169 |
keys.add(tag_name_to_ref(tag_name)) |
|
170 |
except errors.TagsNotSupported: |
|
171 |
pass
|
|
0.200.873
by Jelmer Vernooij
Add convenience command for accessing virtual git refs. |
172 |
return keys |
173 |
||
174 |
def __delitem__(self, ref): |
|
175 |
try: |
|
176 |
branch_name = ref_to_branch_name(ref) |
|
177 |
except ValueError: |
|
7143.15.2
by Jelmer Vernooij
Run autopep8. |
178 |
return # FIXME: Cope with tags! |
0.200.873
by Jelmer Vernooij
Add convenience command for accessing virtual git refs. |
179 |
self.dir.destroy_branch(branch_name) |
180 |
||
181 |
def __setitem__(self, ref, sha): |
|
182 |
try: |
|
183 |
branch_name = ref_to_branch_name(ref) |
|
184 |
except ValueError: |
|
185 |
# FIXME: Cope with tags!
|
|
186 |
return
|
|
187 |
try: |
|
188 |
target_branch = self.repo_dir.open_branch(branch_name) |
|
189 |
except errors.NotBranchError: |
|
190 |
target_branch = self.repo.create_branch(branch_name) |
|
191 |
||
192 |
rev_id = self.mapping.revision_id_foreign_to_bzr(sha) |
|
0.200.1788
by Jelmer Vernooij
Use context managers. |
193 |
with target_branch.lock_write(): |
0.200.873
by Jelmer Vernooij
Add convenience command for accessing virtual git refs. |
194 |
target_branch.generate_revision_history(rev_id) |
0.200.1433
by Jelmer Vernooij
Fix fetching between git repositories. |
195 |
|
196 |
||
197 |
def get_refs_container(controldir, object_store): |
|
0.200.1498
by Jelmer Vernooij
Fix access to native git repositories. |
198 |
fn = getattr(controldir, "get_refs_container", None) |
0.200.1487
by Jelmer Vernooij
Use peeling. |
199 |
if fn is not None: |
200 |
return fn() |
|
0.200.1433
by Jelmer Vernooij
Fix fetching between git repositories. |
201 |
return BazaarRefsContainer(controldir, object_store) |
0.346.1
by Jelmer Vernooij
Fix tag caching. |
202 |
|
203 |
||
204 |
def remote_refs_dict_to_tag_refs(refs_dict): |
|
205 |
base = {} |
|
206 |
peeled = {} |
|
6964.2.1
by Jelmer Vernooij
Initial work to support brz-git on python3. |
207 |
for k, v in refs_dict.items(): |
0.346.1
by Jelmer Vernooij
Fix tag caching. |
208 |
if is_peeled(k): |
209 |
peeled[k[:-3]] = v |
|
210 |
else: |
|
211 |
base[k] = v |
|
212 |
peeled[k] = v |
|
7029.4.4
by Jelmer Vernooij
review comments. |
213 |
all_keys = set().union(base.keys(), peeled.keys()) |
7029.4.2
by Jelmer Vernooij
Fix more merge tests. |
214 |
for n in all_keys: |
0.346.1
by Jelmer Vernooij
Fix tag caching. |
215 |
try: |
216 |
tag_name = ref_to_tag_name(n) |
|
217 |
except ValueError: |
|
218 |
continue
|
|
219 |
yield (n, tag_name, peeled.get(n), base.get(n)) |