bzr branch
http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
|
0.436.2
by Jelmer Vernooij
Add stubs for testsuite, rebase-continue and rebase-abort commands. |
1 |
# Copyright (C) 2006-2007 by Jelmer Vernooij
|
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
|
|
15 |
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
0.436.16
by Jelmer Vernooij
Some more work on maptree. |
16 |
"""Rebase."""
|
|
0.436.3
by Jelmer Vernooij
Fill in commands. |
17 |
|
|
0.436.5
by Jelmer Vernooij
Import change_revision_parent from bzr-svn. |
18 |
from bzrlib.config import Config |
|
0.436.52
by Jelmer Vernooij
Add docstrings, update NEWS. |
19 |
from bzrlib.errors import (BzrError, NoSuchFile, UnknownFormatError, |
|
0.436.57
by Jelmer Vernooij
Allow overridding whether merges of already merged revisions should be replayed. |
20 |
NoCommonAncestor, UnrelatedBranches) |
|
0.436.4
by Jelmer Vernooij
Add some tests. |
21 |
from bzrlib.generate_ids import gen_revision_id |
|
0.438.2
by Jelmer Vernooij
More work using proper merge bases. |
22 |
from bzrlib.merge import Merger |
|
0.436.10
by Jelmer Vernooij
Add more agressive version of revert. |
23 |
from bzrlib import osutils |
|
0.436.9
by Jelmer Vernooij
Add rebase-todo command, fix rebase-continue. |
24 |
from bzrlib.revision import NULL_REVISION |
|
0.436.4
by Jelmer Vernooij
Add some tests. |
25 |
from bzrlib.trace import mutter |
|
0.436.5
by Jelmer Vernooij
Import change_revision_parent from bzr-svn. |
26 |
import bzrlib.ui as ui |
|
0.436.4
by Jelmer Vernooij
Add some tests. |
27 |
|
|
0.436.17
by Jelmer Vernooij
Move maptree code to separate files. |
28 |
from maptree import MapTree, map_file_ids |
|
0.436.38
by Jelmer Vernooij
Handle directories in revert. |
29 |
import os |
|
0.436.17
by Jelmer Vernooij
Move maptree code to separate files. |
30 |
|
|
0.436.3
by Jelmer Vernooij
Fill in commands. |
31 |
REBASE_PLAN_FILENAME = 'rebase-plan' |
|
0.436.9
by Jelmer Vernooij
Add rebase-todo command, fix rebase-continue. |
32 |
REBASE_CURRENT_REVID_FILENAME = 'rebase-current' |
|
0.436.4
by Jelmer Vernooij
Add some tests. |
33 |
REBASE_PLAN_VERSION = 1 |
|
0.436.27
by Jelmer Vernooij
Note revision property 'rebase-of', add explanation of use of pregenerated revision ids. |
34 |
REVPROP_REBASE_OF = 'rebase-of' |
|
0.436.3
by Jelmer Vernooij
Fill in commands. |
35 |
|
36 |
def rebase_plan_exists(wt): |
|
37 |
"""Check whether there is a rebase plan present. |
|
38 |
||
39 |
:param wt: Working tree for which to check.
|
|
40 |
:return: boolean
|
|
41 |
"""
|
|
|
0.436.7
by Jelmer Vernooij
Add more test, make basic rebase work. |
42 |
try: |
43 |
return wt._control_files.get(REBASE_PLAN_FILENAME).read() != '' |
|
44 |
except NoSuchFile: |
|
45 |
return False |
|
|
0.436.3
by Jelmer Vernooij
Fill in commands. |
46 |
|
47 |
||
48 |
def read_rebase_plan(wt): |
|
49 |
"""Read a rebase plan file. |
|
50 |
||
51 |
:param wt: Working Tree for which to write the plan.
|
|
|
0.436.4
by Jelmer Vernooij
Add some tests. |
52 |
:return: Tuple with last revision info and replace map.
|
|
0.436.3
by Jelmer Vernooij
Fill in commands. |
53 |
"""
|
54 |
text = wt._control_files.get(REBASE_PLAN_FILENAME).read() |
|
55 |
if text == '': |
|
|
0.436.7
by Jelmer Vernooij
Add more test, make basic rebase work. |
56 |
raise NoSuchFile(REBASE_PLAN_FILENAME) |
|
0.436.4
by Jelmer Vernooij
Add some tests. |
57 |
return unmarshall_rebase_plan(text) |
58 |
||
59 |
||
60 |
def write_rebase_plan(wt, replace_map): |
|
|
0.436.3
by Jelmer Vernooij
Fill in commands. |
61 |
"""Write a rebase plan file. |
62 |
||
63 |
:param wt: Working Tree for which to write the plan.
|
|
|
0.436.4
by Jelmer Vernooij
Add some tests. |
64 |
:param replace_map: Replace map (old revid -> (new revid, new parents))
|
|
0.436.3
by Jelmer Vernooij
Fill in commands. |
65 |
"""
|
|
0.436.7
by Jelmer Vernooij
Add more test, make basic rebase work. |
66 |
wt._control_files.put_utf8(REBASE_PLAN_FILENAME, |
67 |
marshall_rebase_plan(wt.branch.last_revision_info(), replace_map)) |
|
|
0.436.3
by Jelmer Vernooij
Fill in commands. |
68 |
|
69 |
||
70 |
def remove_rebase_plan(wt): |
|
71 |
"""Remove a rebase plan file. |
|
72 |
||
73 |
:param wt: Working Tree for which to remove the plan.
|
|
74 |
"""
|
|
|
0.436.7
by Jelmer Vernooij
Add more test, make basic rebase work. |
75 |
wt._control_files.put_utf8(REBASE_PLAN_FILENAME, '') |
|
0.436.3
by Jelmer Vernooij
Fill in commands. |
76 |
|
77 |
||
|
0.436.4
by Jelmer Vernooij
Add some tests. |
78 |
def marshall_rebase_plan(last_rev_info, replace_map): |
|
0.436.3
by Jelmer Vernooij
Fill in commands. |
79 |
"""Marshall a rebase plan. |
80 |
||
81 |
:param last_rev_info: Last revision info tuple.
|
|
|
0.436.4
by Jelmer Vernooij
Add some tests. |
82 |
:param replace_map: Replace map (old revid -> (new revid, new parents))
|
|
0.436.3
by Jelmer Vernooij
Fill in commands. |
83 |
:return: string
|
84 |
"""
|
|
|
0.436.4
by Jelmer Vernooij
Add some tests. |
85 |
ret = "# Bazaar rebase plan %d\n" % REBASE_PLAN_VERSION |
86 |
ret += "%d %s\n" % last_rev_info |
|
87 |
for oldrev in replace_map: |
|
88 |
(newrev, newparents) = replace_map[oldrev] |
|
89 |
ret += "%s %s" % (oldrev, newrev) + \ |
|
90 |
"".join([" %s" % p for p in newparents]) + "\n" |
|
91 |
return ret |
|
92 |
||
93 |
||
94 |
def unmarshall_rebase_plan(text): |
|
|
0.436.3
by Jelmer Vernooij
Fill in commands. |
95 |
"""Unmarshall a rebase plan. |
96 |
||
97 |
:param text: Text to parse
|
|
|
0.436.4
by Jelmer Vernooij
Add some tests. |
98 |
:return: Tuple with last revision info, replace map.
|
|
0.436.3
by Jelmer Vernooij
Fill in commands. |
99 |
"""
|
|
0.436.4
by Jelmer Vernooij
Add some tests. |
100 |
lines = text.split('\n') |
101 |
# Make sure header is there
|
|
102 |
if lines[0] != "# Bazaar rebase plan %d" % REBASE_PLAN_VERSION: |
|
103 |
raise UnknownFormatError(lines[0]) |
|
104 |
||
105 |
pts = lines[1].split(" ", 1) |
|
106 |
last_revision_info = (int(pts[0]), pts[1]) |
|
107 |
replace_map = {} |
|
108 |
for l in lines[2:]: |
|
109 |
if l == "": |
|
110 |
# Skip empty lines
|
|
111 |
continue
|
|
112 |
pts = l.split(" ") |
|
113 |
replace_map[pts[0]] = (pts[1], pts[2:]) |
|
114 |
return (last_revision_info, replace_map) |
|
115 |
||
|
0.436.6
by Jelmer Vernooij
Add somewhat more complex plan generation function, rebase implementation. |
116 |
|
|
0.436.39
by Jelmer Vernooij
Some more refactoring, add test that demonstrates #126743. |
117 |
def regenerate_default_revid(repository, revid): |
|
0.436.52
by Jelmer Vernooij
Add docstrings, update NEWS. |
118 |
"""Generate a revision id for the rebase of an existing revision. |
119 |
|
|
120 |
:param repository: Repository in which the revision is present.
|
|
121 |
:param revid: Revision id of the revision that is being rebased.
|
|
122 |
:return: new revision id."""
|
|
|
0.436.39
by Jelmer Vernooij
Some more refactoring, add test that demonstrates #126743. |
123 |
rev = repository.get_revision(revid) |
|
0.436.6
by Jelmer Vernooij
Add somewhat more complex plan generation function, rebase implementation. |
124 |
return gen_revision_id(rev.committer, rev.timestamp) |
125 |
||
126 |
||
|
0.438.3
by Jelmer Vernooij
Add stop_revid argumen to generate_simple_plan. |
127 |
def generate_simple_plan(history, start_revid, stop_revid, onto_revid, |
|
0.436.55
by Jelmer Vernooij
Add functinality for skipping duplicate merges. |
128 |
onto_ancestry, get_parents, generate_revid, |
129 |
skip_full_merged=False): |
|
|
0.436.3
by Jelmer Vernooij
Fill in commands. |
130 |
"""Create a simple rebase plan that replays history based |
|
0.436.6
by Jelmer Vernooij
Add somewhat more complex plan generation function, rebase implementation. |
131 |
on one revision being replayed on top of another.
|
|
0.436.3
by Jelmer Vernooij
Fill in commands. |
132 |
|
|
0.436.6
by Jelmer Vernooij
Add somewhat more complex plan generation function, rebase implementation. |
133 |
:param history: Revision history
|
134 |
:param start_revid: Id of revision at which to start replaying
|
|
|
0.438.3
by Jelmer Vernooij
Add stop_revid argumen to generate_simple_plan. |
135 |
:param stop_revid: Id of revision until which to stop replaying
|
|
0.436.6
by Jelmer Vernooij
Add somewhat more complex plan generation function, rebase implementation. |
136 |
:param onto_revid: Id of revision on top of which to replay
|
|
0.438.1
by Jelmer Vernooij
Split out function for determining rebase base. |
137 |
:param onto_ancestry: Ancestry of onto_revid
|
|
0.436.39
by Jelmer Vernooij
Some more refactoring, add test that demonstrates #126743. |
138 |
:param get_parents: Function for obtaining the parents of a revision
|
|
0.436.6
by Jelmer Vernooij
Add somewhat more complex plan generation function, rebase implementation. |
139 |
:param generate_revid: Function for generating new revision ids
|
|
0.436.55
by Jelmer Vernooij
Add functinality for skipping duplicate merges. |
140 |
:param skip_full_merged: Skip revisions that merge already merged
|
141 |
revisions.
|
|
|
0.436.3
by Jelmer Vernooij
Fill in commands. |
142 |
|
|
0.436.4
by Jelmer Vernooij
Add some tests. |
143 |
:return: replace map
|
|
0.436.3
by Jelmer Vernooij
Fill in commands. |
144 |
"""
|
|
0.436.43
by Jelmer Vernooij
Factor out common revid code - maybe some of this can use aaron's common ancestor code instead? |
145 |
assert start_revid is None or start_revid in history |
146 |
assert stop_revid is None or stop_revid in history |
|
|
0.436.6
by Jelmer Vernooij
Add somewhat more complex plan generation function, rebase implementation. |
147 |
replace_map = {} |
|
0.438.3
by Jelmer Vernooij
Add stop_revid argumen to generate_simple_plan. |
148 |
if start_revid is not None: |
149 |
start_revno = history.index(start_revid) |
|
150 |
else: |
|
151 |
start_revno = None |
|
152 |
if stop_revid is not None: |
|
153 |
stop_revno = history.index(stop_revid)+1 |
|
154 |
else: |
|
155 |
stop_revno = None |
|
|
0.436.6
by Jelmer Vernooij
Add somewhat more complex plan generation function, rebase implementation. |
156 |
new_parent = onto_revid |
|
0.438.3
by Jelmer Vernooij
Add stop_revid argumen to generate_simple_plan. |
157 |
for oldrevid in history[start_revno:stop_revno]: |
|
0.436.62
by Jelmer Vernooij
Fix compatibility with packs. |
158 |
oldparents = list(get_parents(oldrevid)) |
159 |
assert isinstance(oldparents, list) |
|
|
0.436.55
by Jelmer Vernooij
Add functinality for skipping duplicate merges. |
160 |
assert oldparents == [] or \ |
161 |
oldparents[0] == history[history.index(oldrevid)-1] |
|
162 |
if len(oldparents) > 1: |
|
163 |
parents = [new_parent] + filter(lambda p: p not in onto_ancestry or p == onto_revid, oldparents[1:]) |
|
164 |
if len(parents) == 1 and skip_full_merged: |
|
165 |
continue
|
|
166 |
else: |
|
167 |
parents = [new_parent] |
|
|
0.436.39
by Jelmer Vernooij
Some more refactoring, add test that demonstrates #126743. |
168 |
newrevid = generate_revid(oldrevid) |
|
0.436.6
by Jelmer Vernooij
Add somewhat more complex plan generation function, rebase implementation. |
169 |
assert newrevid != oldrevid |
170 |
replace_map[oldrevid] = (newrevid, parents) |
|
171 |
new_parent = newrevid |
|
172 |
return replace_map |
|
173 |
||
174 |
||
|
0.436.31
by Jelmer Vernooij
Refactor generate_transpose_plan() to not take a repository object but |
175 |
def generate_transpose_plan(graph, renames, get_parents, generate_revid): |
176 |
"""Create a rebase plan that replaces a bunch of revisions |
|
177 |
in a revision graph.
|
|
|
0.436.6
by Jelmer Vernooij
Add somewhat more complex plan generation function, rebase implementation. |
178 |
|
179 |
:param graph: Revision graph in which to operate
|
|
180 |
:param renames: Renames of revision
|
|
|
0.436.31
by Jelmer Vernooij
Refactor generate_transpose_plan() to not take a repository object but |
181 |
:param get_parents: Function for determining parents
|
|
0.436.6
by Jelmer Vernooij
Add somewhat more complex plan generation function, rebase implementation. |
182 |
:param generate_revid: Function for creating new revision ids
|
183 |
"""
|
|
184 |
replace_map = {} |
|
185 |
todo = [] |
|
|
0.436.13
by Jelmer Vernooij
Add progress bar, some optimizations. Make merge type configurable. |
186 |
children = {} |
187 |
for r in graph: |
|
188 |
if not children.has_key(r): |
|
189 |
children[r] = [] |
|
190 |
for p in graph[r]: |
|
191 |
if not children.has_key(p): |
|
192 |
children[p] = [] |
|
193 |
children[p].append(r) |
|
194 |
||
|
0.436.31
by Jelmer Vernooij
Refactor generate_transpose_plan() to not take a repository object but |
195 |
# todo contains a list of revisions that need to
|
196 |
# be rewritten
|
|
197 |
for r in renames: |
|
198 |
replace_map[r] = (renames[r], get_parents(renames[r])) |
|
199 |
todo.append(r) |
|
200 |
||
|
0.436.13
by Jelmer Vernooij
Add progress bar, some optimizations. Make merge type configurable. |
201 |
total = len(todo) |
202 |
processed = set() |
|
203 |
i = 0 |
|
204 |
pb = ui.ui_factory.nested_progress_bar() |
|
205 |
try: |
|
206 |
while len(todo) > 0: |
|
207 |
r = todo.pop() |
|
208 |
i += 1 |
|
209 |
pb.update('determining dependencies', i, total) |
|
210 |
# Add entry for them in replace_map
|
|
211 |
for c in children[r]: |
|
212 |
if c in renames: |
|
213 |
continue
|
|
214 |
if replace_map.has_key(c): |
|
|
0.436.62
by Jelmer Vernooij
Fix compatibility with packs. |
215 |
parents = list(replace_map[c][1]) |
|
0.436.13
by Jelmer Vernooij
Add progress bar, some optimizations. Make merge type configurable. |
216 |
else: |
|
0.436.36
by Jelmer Vernooij
Fix compatibility with bzr 0.19. |
217 |
parents = list(graph[c]) |
218 |
assert isinstance(parents, list), \ |
|
219 |
"Expected list of parents, got: %r" % parents |
|
|
0.436.13
by Jelmer Vernooij
Add progress bar, some optimizations. Make merge type configurable. |
220 |
# replace r in parents with replace_map[r][0]
|
221 |
if not replace_map[r][0] in parents: |
|
222 |
parents[parents.index(r)] = replace_map[r][0] |
|
|
0.436.31
by Jelmer Vernooij
Refactor generate_transpose_plan() to not take a repository object but |
223 |
replace_map[c] = (generate_revid(c), parents) |
224 |
assert replace_map[c][0] != c |
|
|
0.436.13
by Jelmer Vernooij
Add progress bar, some optimizations. Make merge type configurable. |
225 |
processed.add(r) |
226 |
# Add them to todo[]
|
|
|
0.436.15
by Jelmer Vernooij
Fix inverse bug - needs tests. |
227 |
todo.extend(filter(lambda x: not x in processed, children[r])) |
|
0.436.13
by Jelmer Vernooij
Add progress bar, some optimizations. Make merge type configurable. |
228 |
finally: |
229 |
pb.finished() |
|
|
0.436.6
by Jelmer Vernooij
Add somewhat more complex plan generation function, rebase implementation. |
230 |
|
|
0.436.31
by Jelmer Vernooij
Refactor generate_transpose_plan() to not take a repository object but |
231 |
# Remove items from the map that already exist
|
232 |
for revid in renames: |
|
233 |
if replace_map.has_key(revid): |
|
234 |
del replace_map[revid] |
|
235 |
||
|
0.436.6
by Jelmer Vernooij
Add somewhat more complex plan generation function, rebase implementation. |
236 |
return replace_map |
237 |
||
238 |
||
|
0.436.9
by Jelmer Vernooij
Add rebase-todo command, fix rebase-continue. |
239 |
def rebase_todo(repository, replace_map): |
240 |
"""Figure out what revisions still need to be rebased. |
|
241 |
||
242 |
:param repository: Repository that contains the revisions
|
|
243 |
:param replace_map: Replace map
|
|
244 |
"""
|
|
245 |
for revid in replace_map: |
|
246 |
if not repository.has_revision(replace_map[revid][0]): |
|
247 |
yield revid |
|
248 |
||
249 |
||
|
0.436.6
by Jelmer Vernooij
Add somewhat more complex plan generation function, rebase implementation. |
250 |
def rebase(repository, replace_map, replay_fn): |
|
0.436.5
by Jelmer Vernooij
Import change_revision_parent from bzr-svn. |
251 |
"""Rebase a working tree according to the specified map. |
252 |
||
|
0.436.6
by Jelmer Vernooij
Add somewhat more complex plan generation function, rebase implementation. |
253 |
:param repository: Repository that contains the revisions
|
|
0.436.5
by Jelmer Vernooij
Import change_revision_parent from bzr-svn. |
254 |
:param replace_map: Dictionary with revisions to (optionally) rewrite
|
|
0.436.6
by Jelmer Vernooij
Add somewhat more complex plan generation function, rebase implementation. |
255 |
:param merge_fn: Function for replaying a revision
|
|
0.436.5
by Jelmer Vernooij
Import change_revision_parent from bzr-svn. |
256 |
"""
|
|
0.436.9
by Jelmer Vernooij
Add rebase-todo command, fix rebase-continue. |
257 |
todo = list(rebase_todo(repository, replace_map)) |
|
0.436.6
by Jelmer Vernooij
Add somewhat more complex plan generation function, rebase implementation. |
258 |
dependencies = {} |
259 |
||
260 |
# Figure out the dependencies
|
|
261 |
for revid in todo: |
|
262 |
for p in replace_map[revid][1]: |
|
263 |
if repository.has_revision(p): |
|
264 |
continue
|
|
265 |
if not dependencies.has_key(p): |
|
266 |
dependencies[p] = [] |
|
267 |
dependencies[p].append(revid) |
|
268 |
||
269 |
pb = ui.ui_factory.nested_progress_bar() |
|
|
0.436.22
by Jelmer Vernooij
Try to improve the progress bar a bit. |
270 |
total = len(todo) |
|
0.436.6
by Jelmer Vernooij
Add somewhat more complex plan generation function, rebase implementation. |
271 |
i = 0 |
272 |
try: |
|
273 |
while len(todo) > 0: |
|
|
0.436.22
by Jelmer Vernooij
Try to improve the progress bar a bit. |
274 |
pb.update('rebase revisions', i, total) |
|
0.436.6
by Jelmer Vernooij
Add somewhat more complex plan generation function, rebase implementation. |
275 |
i += 1 |
276 |
revid = todo.pop() |
|
277 |
(newrevid, newparents) = replace_map[revid] |
|
|
0.436.19
by Jelmer Vernooij
- Add blackbox tests |
278 |
if filter(repository.has_revision, newparents) != newparents: |
|
0.436.6
by Jelmer Vernooij
Add somewhat more complex plan generation function, rebase implementation. |
279 |
# Not all parents present yet, avoid for now
|
280 |
continue
|
|
281 |
if repository.has_revision(newrevid): |
|
282 |
# Was already converted, no need to worry about it again
|
|
283 |
continue
|
|
284 |
replay_fn(repository, revid, newrevid, newparents) |
|
285 |
assert repository.has_revision(newrevid) |
|
|
0.436.61
by Jelmer Vernooij
packs changes make revision_parents() return a tuple rather than a list. |
286 |
assert list(repository.revision_parents(newrevid)) == newparents, \ |
|
0.436.32
by Jelmer Vernooij
Properly detect invalid snapshot replays. |
287 |
"expected parents %r, got %r" % (newparents, |
288 |
repository.revision_parents(newrevid)) |
|
|
0.436.6
by Jelmer Vernooij
Add somewhat more complex plan generation function, rebase implementation. |
289 |
if dependencies.has_key(newrevid): |
290 |
todo.extend(dependencies[newrevid]) |
|
291 |
del dependencies[newrevid] |
|
292 |
finally: |
|
293 |
pb.finished() |
|
294 |
||
|
0.436.19
by Jelmer Vernooij
- Add blackbox tests |
295 |
#assert all(map(repository.has_revision,
|
296 |
# [replace_map[r][0] for r in replace_map]))
|
|
|
0.436.16
by Jelmer Vernooij
Some more work on maptree. |
297 |
|
|
0.436.32
by Jelmer Vernooij
Properly detect invalid snapshot replays. |
298 |
|
299 |
||
|
0.436.34
by Jelmer Vernooij
Some more tests. |
300 |
def replay_snapshot(repository, oldrevid, newrevid, new_parents, |
|
0.436.47
by Jelmer Vernooij
Add progress bar, fix compatibility with bzr.dev. |
301 |
revid_renames, fix_revid=None): |
|
0.436.32
by Jelmer Vernooij
Properly detect invalid snapshot replays. |
302 |
"""Replay a commit by simply commiting the same snapshot with different |
303 |
parents.
|
|
|
0.436.5
by Jelmer Vernooij
Import change_revision_parent from bzr-svn. |
304 |
|
305 |
:param repository: Repository in which the revision is present.
|
|
306 |
:param oldrevid: Revision id of the revision to copy.
|
|
307 |
:param newrevid: Revision id of the revision to create.
|
|
308 |
:param new_parents: Revision ids of the new parent revisions.
|
|
|
0.436.34
by Jelmer Vernooij
Some more tests. |
309 |
:param revid_renames: Revision id renames for texts.
|
|
0.436.5
by Jelmer Vernooij
Import change_revision_parent from bzr-svn. |
310 |
"""
|
311 |
assert isinstance(new_parents, list) |
|
|
0.436.16
by Jelmer Vernooij
Some more work on maptree. |
312 |
mutter('creating copy %r of %r with new parents %r' % |
313 |
(newrevid, oldrevid, new_parents)) |
|
|
0.436.5
by Jelmer Vernooij
Import change_revision_parent from bzr-svn. |
314 |
oldrev = repository.get_revision(oldrevid) |
315 |
||
|
0.436.7
by Jelmer Vernooij
Add more test, make basic rebase work. |
316 |
revprops = dict(oldrev.properties) |
|
0.436.27
by Jelmer Vernooij
Note revision property 'rebase-of', add explanation of use of pregenerated revision ids. |
317 |
revprops[REVPROP_REBASE_OF] = oldrevid |
|
0.436.7
by Jelmer Vernooij
Add more test, make basic rebase work. |
318 |
|
|
0.436.49
by Jelmer Vernooij
Fix locking. |
319 |
builder = repository.get_commit_builder(branch=None, |
320 |
parents=new_parents, |
|
321 |
config=Config(), |
|
322 |
committer=oldrev.committer, |
|
323 |
timestamp=oldrev.timestamp, |
|
324 |
timezone=oldrev.timezone, |
|
325 |
revprops=revprops, |
|
326 |
revision_id=newrevid) |
|
|
0.436.5
by Jelmer Vernooij
Import change_revision_parent from bzr-svn. |
327 |
try: |
|
0.436.47
by Jelmer Vernooij
Add progress bar, fix compatibility with bzr.dev. |
328 |
# Check what new_ie.file_id should be
|
329 |
# use old and new parent inventories to generate new_id map
|
|
330 |
fileid_map = map_file_ids(repository, oldrev.parent_ids, new_parents) |
|
331 |
oldtree = MapTree(repository.revision_tree(oldrevid), fileid_map) |
|
332 |
total = len(oldtree.inventory) |
|
333 |
pb = ui.ui_factory.nested_progress_bar() |
|
334 |
i = 0 |
|
335 |
try: |
|
336 |
parent_invs = map(repository.get_revision_inventory, new_parents) |
|
337 |
transact = repository.get_transaction() |
|
338 |
for path, ie in oldtree.inventory.iter_entries(): |
|
339 |
pb.update('upgrading file', i, total) |
|
340 |
ie = ie.copy() |
|
341 |
# Either this file was modified last in this revision,
|
|
342 |
# in which case it has to be rewritten
|
|
343 |
if fix_revid is not None: |
|
344 |
ie.revision = fix_revid(ie.revision) |
|
345 |
if ie.revision == oldrevid: |
|
|
0.436.54
by Jelmer Vernooij
Move determination of merge base to separate function. |
346 |
if repository.weave_store.get_weave_or_empty(ie.file_id, |
347 |
repository.get_transaction()).has_version(newrevid): |
|
|
0.436.47
by Jelmer Vernooij
Add progress bar, fix compatibility with bzr.dev. |
348 |
ie.revision = newrevid |
349 |
else: |
|
350 |
ie.revision = None |
|
351 |
else: |
|
352 |
# or it was already there before the commit, in
|
|
353 |
# which case the right revision should be used
|
|
354 |
if revid_renames.has_key(ie.revision): |
|
355 |
ie.revision = revid_renames[ie.revision] |
|
356 |
# make sure at least one of the new parents contains
|
|
357 |
# the ie.file_id, ie.revision combination
|
|
|
0.436.50
by Jelmer Vernooij
Fix inconsistent parent errors. |
358 |
if len(filter(lambda inv: ie.file_id in inv and inv[ie.file_id].revision == ie.revision, parent_invs)) == 0: |
359 |
raise ReplayParentsInconsistent(ie.file_id, ie.revision) |
|
|
0.436.47
by Jelmer Vernooij
Add progress bar, fix compatibility with bzr.dev. |
360 |
i += 1 |
361 |
builder.record_entry_contents(ie, parent_invs, path, oldtree, |
|
362 |
oldtree.path_content_summary(path)) |
|
363 |
finally: |
|
364 |
pb.finished() |
|
365 |
builder.finish_inventory() |
|
|
0.436.62
by Jelmer Vernooij
Fix compatibility with packs. |
366 |
return builder.commit(oldrev.message) |
|
0.436.47
by Jelmer Vernooij
Add progress bar, fix compatibility with bzr.dev. |
367 |
except: |
|
0.436.62
by Jelmer Vernooij
Fix compatibility with packs. |
368 |
builder.abort() |
|
0.436.47
by Jelmer Vernooij
Add progress bar, fix compatibility with bzr.dev. |
369 |
raise
|
|
0.436.5
by Jelmer Vernooij
Import change_revision_parent from bzr-svn. |
370 |
|
371 |
||
|
0.436.9
by Jelmer Vernooij
Add rebase-todo command, fix rebase-continue. |
372 |
def commit_rebase(wt, oldrev, newrevid): |
373 |
"""Commit a rebase. |
|
374 |
|
|
375 |
:param wt: Mutable tree with the changes.
|
|
376 |
:param oldrev: Revision info of new revision to commit.
|
|
377 |
:param newrevid: New revision id."""
|
|
378 |
assert oldrev.revision_id != newrevid |
|
379 |
revprops = dict(oldrev.properties) |
|
|
0.436.27
by Jelmer Vernooij
Note revision property 'rebase-of', add explanation of use of pregenerated revision ids. |
380 |
revprops[REVPROP_REBASE_OF] = oldrev.revision_id |
|
0.439.3
by Lukáš Lalinský
Copy author or committer name from the old revision to the author property in the new revision |
381 |
committer = wt.branch.get_config().username() |
382 |
author = oldrev.get_apparent_author() |
|
383 |
if author == committer or 'author' in revprops: |
|
384 |
author = None |
|
|
0.436.37
by Jelmer Vernooij
Store parents correctly. |
385 |
wt.commit(message=oldrev.message, timestamp=oldrev.timestamp, |
|
0.439.3
by Lukáš Lalinský
Copy author or committer name from the old revision to the author property in the new revision |
386 |
timezone=oldrev.timezone, revprops=revprops, rev_id=newrevid, |
387 |
committer=committer, author=author) |
|
|
0.436.9
by Jelmer Vernooij
Add rebase-todo command, fix rebase-continue. |
388 |
write_active_rebase_revid(wt, None) |
389 |
||
390 |
||
|
0.436.54
by Jelmer Vernooij
Move determination of merge base to separate function. |
391 |
def replay_determine_base(graph, oldrevid, oldparents, newrevid, newparents): |
|
0.436.74
by Jelmer Vernooij
Add pydoctor file, more docstrings. |
392 |
"""Determine the base for replaying a revision using merge. |
393 |
||
394 |
:param graph: Revision graph.
|
|
395 |
:param oldrevid: Revid of old revision.
|
|
396 |
:param oldparents: List of old parents revids.
|
|
397 |
:param newrevid: Revid of new revision.
|
|
398 |
:param newparents: List of new parents revids.
|
|
399 |
:return: Revision id of the new new revision.
|
|
400 |
"""
|
|
|
0.436.54
by Jelmer Vernooij
Move determination of merge base to separate function. |
401 |
# If this was the first commit, no base is needed
|
402 |
if len(oldparents) == 0: |
|
403 |
return NULL_REVISION |
|
404 |
||
405 |
# In the case of a "simple" revision with just one parent,
|
|
406 |
# that parent should be the base
|
|
407 |
if len(oldparents) == 1: |
|
408 |
return oldparents[0] |
|
409 |
||
|
0.436.55
by Jelmer Vernooij
Add functinality for skipping duplicate merges. |
410 |
# In case the rhs parent(s) of the origin revision has already been merged
|
411 |
# in the new branch, use diff between rhs parent and diff from
|
|
412 |
# original revision
|
|
413 |
if len(newparents) == 1: |
|
414 |
# FIXME: Find oldparents entry that matches newparents[0]
|
|
415 |
# and return it
|
|
416 |
return oldparents[1] |
|
417 |
||
|
0.436.57
by Jelmer Vernooij
Allow overridding whether merges of already merged revisions should be replayed. |
418 |
try: |
419 |
return graph.find_unique_lca(*[oldparents[0],newparents[1]]) |
|
420 |
except NoCommonAncestor: |
|
421 |
return oldparents[0] |
|
|
0.436.54
by Jelmer Vernooij
Move determination of merge base to separate function. |
422 |
|
423 |
||
|
0.438.1
by Jelmer Vernooij
Split out function for determining rebase base. |
424 |
def replay_delta_workingtree(wt, oldrevid, newrevid, newparents, |
|
0.438.2
by Jelmer Vernooij
More work using proper merge bases. |
425 |
merge_type=None): |
|
0.436.7
by Jelmer Vernooij
Add more test, make basic rebase work. |
426 |
"""Replay a commit in a working tree, with a different base. |
427 |
||
428 |
:param wt: Working tree in which to do the replays.
|
|
429 |
:param oldrevid: Old revision id
|
|
430 |
:param newrevid: New revision id
|
|
431 |
:param newparents: New parent revision ids
|
|
432 |
"""
|
|
433 |
repository = wt.branch.repository |
|
434 |
if merge_type is None: |
|
435 |
from bzrlib.merge import Merge3Merger |
|
436 |
merge_type = Merge3Merger |
|
437 |
oldrev = wt.branch.repository.get_revision(oldrevid) |
|
438 |
# Make sure there are no conflicts or pending merges/changes
|
|
439 |
# in the working tree
|
|
440 |
if wt.changes_from(wt.basis_tree()).has_changed(): |
|
441 |
raise BzrError("Working tree has uncommitted changes.") |
|
|
0.438.2
by Jelmer Vernooij
More work using proper merge bases. |
442 |
complete_revert(wt, [newparents[0]]) |
|
0.436.8
by Jelmer Vernooij
Couple more minor fixes. |
443 |
assert not wt.changes_from(wt.basis_tree()).has_changed() |
|
0.436.7
by Jelmer Vernooij
Add more test, make basic rebase work. |
444 |
|
445 |
oldtree = repository.revision_tree(oldrevid) |
|
|
0.436.9
by Jelmer Vernooij
Add rebase-todo command, fix rebase-continue. |
446 |
write_active_rebase_revid(wt, oldrevid) |
|
0.438.2
by Jelmer Vernooij
More work using proper merge bases. |
447 |
merger = Merger(wt.branch, this_tree=wt) |
448 |
merger.set_other_revision(oldrevid, wt.branch) |
|
|
0.436.54
by Jelmer Vernooij
Move determination of merge base to separate function. |
449 |
base_revid = replay_determine_base(repository.get_graph(), |
450 |
oldrevid, oldrev.parent_ids, |
|
451 |
newrevid, newparents) |
|
|
0.436.55
by Jelmer Vernooij
Add functinality for skipping duplicate merges. |
452 |
mutter('replaying %r as %r with base %r and new parents %r' % |
453 |
(oldrevid, newrevid, base_revid, newparents)) |
|
|
0.436.54
by Jelmer Vernooij
Move determination of merge base to separate function. |
454 |
merger.set_base_revision(base_revid, wt.branch) |
|
0.438.2
by Jelmer Vernooij
More work using proper merge bases. |
455 |
merger.merge_type = merge_type |
456 |
merger.do_merge() |
|
457 |
for newparent in newparents[1:]: |
|
458 |
wt.add_pending_merge(newparent) |
|
|
0.436.9
by Jelmer Vernooij
Add rebase-todo command, fix rebase-continue. |
459 |
commit_rebase(wt, oldrev, newrevid) |
|
0.436.8
by Jelmer Vernooij
Couple more minor fixes. |
460 |
|
|
0.436.10
by Jelmer Vernooij
Add more agressive version of revert. |
461 |
|
|
0.436.13
by Jelmer Vernooij
Add progress bar, some optimizations. Make merge type configurable. |
462 |
def workingtree_replay(wt, map_ids=False, merge_type=None): |
|
0.436.6
by Jelmer Vernooij
Add somewhat more complex plan generation function, rebase implementation. |
463 |
"""Returns a function that can replay revisions in wt. |
464 |
||
465 |
:param wt: Working tree in which to do the replays.
|
|
|
0.436.7
by Jelmer Vernooij
Add more test, make basic rebase work. |
466 |
:param map_ids: Whether to try to map between file ids (False for path-based merge)
|
|
0.436.6
by Jelmer Vernooij
Add somewhat more complex plan generation function, rebase implementation. |
467 |
"""
|
468 |
def replay(repository, oldrevid, newrevid, newparents): |
|
|
0.436.7
by Jelmer Vernooij
Add more test, make basic rebase work. |
469 |
assert wt.branch.repository == repository |
|
0.436.16
by Jelmer Vernooij
Some more work on maptree. |
470 |
return replay_delta_workingtree(wt, oldrevid, newrevid, newparents, |
471 |
merge_type=merge_type) |
|
|
0.436.6
by Jelmer Vernooij
Add somewhat more complex plan generation function, rebase implementation. |
472 |
return replay |
|
0.436.7
by Jelmer Vernooij
Add more test, make basic rebase work. |
473 |
|
|
0.436.9
by Jelmer Vernooij
Add rebase-todo command, fix rebase-continue. |
474 |
|
475 |
def write_active_rebase_revid(wt, revid): |
|
|
0.436.16
by Jelmer Vernooij
Some more work on maptree. |
476 |
"""Write the id of the revision that is currently being rebased. |
477 |
||
478 |
:param wt: Working Tree that is being used for the rebase.
|
|
479 |
:param revid: Revision id to write
|
|
480 |
"""
|
|
|
0.436.9
by Jelmer Vernooij
Add rebase-todo command, fix rebase-continue. |
481 |
if revid is None: |
482 |
revid = NULL_REVISION |
|
483 |
wt._control_files.put_utf8(REBASE_CURRENT_REVID_FILENAME, revid) |
|
484 |
||
|
0.436.10
by Jelmer Vernooij
Add more agressive version of revert. |
485 |
|
|
0.436.9
by Jelmer Vernooij
Add rebase-todo command, fix rebase-continue. |
486 |
def read_active_rebase_revid(wt): |
|
0.436.16
by Jelmer Vernooij
Some more work on maptree. |
487 |
"""Read the id of the revision that is currently being rebased. |
488 |
||
489 |
:param wt: Working Tree that is being used for the rebase.
|
|
490 |
:return: Id of the revision that is being rebased.
|
|
491 |
"""
|
|
|
0.436.9
by Jelmer Vernooij
Add rebase-todo command, fix rebase-continue. |
492 |
try: |
493 |
text = wt._control_files.get(REBASE_CURRENT_REVID_FILENAME).read().rstrip("\n") |
|
494 |
if text == NULL_REVISION: |
|
495 |
return None |
|
496 |
return text |
|
497 |
except NoSuchFile: |
|
498 |
return None |
|
|
0.436.10
by Jelmer Vernooij
Add more agressive version of revert. |
499 |
|
500 |
||
501 |
def complete_revert(wt, newparents): |
|
|
0.436.16
by Jelmer Vernooij
Some more work on maptree. |
502 |
"""Simple helper that reverts to specified new parents and makes sure none |
503 |
of the extra files are left around.
|
|
504 |
||
505 |
:param wt: Working tree to use for rebase
|
|
506 |
:param newparents: New parents of the working tree
|
|
|
0.436.10
by Jelmer Vernooij
Add more agressive version of revert. |
507 |
"""
|
508 |
newtree = wt.branch.repository.revision_tree(newparents[0]) |
|
509 |
delta = wt.changes_from(newtree) |
|
510 |
wt.branch.generate_revision_history(newparents[0]) |
|
|
0.436.38
by Jelmer Vernooij
Handle directories in revert. |
511 |
wt.set_parent_ids(newparents[:1]) |
|
0.436.10
by Jelmer Vernooij
Add more agressive version of revert. |
512 |
for (f, _, _) in delta.added: |
513 |
abs_path = wt.abspath(f) |
|
514 |
if osutils.lexists(abs_path): |
|
|
0.436.38
by Jelmer Vernooij
Handle directories in revert. |
515 |
if osutils.isdir(abs_path): |
516 |
osutils.rmtree(abs_path) |
|
517 |
else: |
|
518 |
os.unlink(abs_path) |
|
|
0.436.48
by Jelmer Vernooij
Add replay command. |
519 |
wt.revert(None, old_tree=newtree, backups=False) |
|
0.436.38
by Jelmer Vernooij
Handle directories in revert. |
520 |
assert not wt.changes_from(wt.basis_tree()).has_changed() |
|
0.436.37
by Jelmer Vernooij
Store parents correctly. |
521 |
wt.set_parent_ids(newparents) |
|
0.436.32
by Jelmer Vernooij
Properly detect invalid snapshot replays. |
522 |
|
523 |
||
|
0.436.34
by Jelmer Vernooij
Some more tests. |
524 |
class ReplaySnapshotError(BzrError): |
|
0.436.74
by Jelmer Vernooij
Add pydoctor file, more docstrings. |
525 |
"""Raised when replaying a snapshot failed.""" |
|
0.436.32
by Jelmer Vernooij
Properly detect invalid snapshot replays. |
526 |
_fmt = """Replaying the snapshot failed: %(message)s.""" |
527 |
||
528 |
def __init__(self, message): |
|
529 |
BzrError.__init__(self) |
|
530 |
self.message = message |
|
|
0.436.34
by Jelmer Vernooij
Some more tests. |
531 |
|
532 |
||
533 |
class ReplayParentsInconsistent(BzrError): |
|
|
0.436.74
by Jelmer Vernooij
Add pydoctor file, more docstrings. |
534 |
"""Raised when parents were inconsistent.""" |
|
0.436.34
by Jelmer Vernooij
Some more tests. |
535 |
_fmt = """Parents were inconsistent while replaying commit for file id %(fileid)s, revision %(revid)s.""" |
536 |
||
537 |
def __init__(self, fileid, revid): |
|
538 |
BzrError.__init__(self) |
|
539 |
self.fileid = fileid |
|
540 |
self.revid = revid |