Show More
@@ -1,284 +1,293 b'' | |||
|
1 | 1 | # destutil.py - Mercurial utility function for command destination |
|
2 | 2 | # |
|
3 | 3 | # Copyright Matt Mackall <mpm@selenic.com> and other |
|
4 | 4 | # |
|
5 | 5 | # This software may be used and distributed according to the terms of the |
|
6 | 6 | # GNU General Public License version 2 or any later version. |
|
7 | 7 | |
|
8 | 8 | from __future__ import absolute_import |
|
9 | 9 | |
|
10 | 10 | from .i18n import _ |
|
11 | 11 | from . import ( |
|
12 | 12 | bookmarks, |
|
13 | 13 | error, |
|
14 | 14 | obsolete, |
|
15 | 15 | ) |
|
16 | 16 | |
|
17 | 17 | def _destupdatevalidate(repo, rev, clean, check): |
|
18 | 18 | """validate that the destination comply to various rules |
|
19 | 19 | |
|
20 | 20 | This exists as its own function to help wrapping from extensions.""" |
|
21 | 21 | wc = repo[None] |
|
22 | 22 | p1 = wc.p1() |
|
23 | 23 | if not clean: |
|
24 | 24 | # Check that the update is linear. |
|
25 | 25 | # |
|
26 | 26 | # Mercurial do not allow update-merge for non linear pattern |
|
27 | 27 | # (that would be technically possible but was considered too confusing |
|
28 | 28 | # for user a long time ago) |
|
29 | 29 | # |
|
30 | 30 | # See mercurial.merge.update for details |
|
31 | 31 | if p1.rev() not in repo.changelog.ancestors([rev], inclusive=True): |
|
32 | 32 | dirty = wc.dirty(missing=True) |
|
33 | 33 | foreground = obsolete.foreground(repo, [p1.node()]) |
|
34 | 34 | if not repo[rev].node() in foreground: |
|
35 | 35 | if dirty: |
|
36 | 36 | msg = _("uncommitted changes") |
|
37 | 37 | hint = _("commit and merge, or update --clean to" |
|
38 | 38 | " discard changes") |
|
39 | 39 | raise error.UpdateAbort(msg, hint=hint) |
|
40 | 40 | elif not check: # destination is not a descendant. |
|
41 | 41 | msg = _("not a linear update") |
|
42 | 42 | hint = _("merge or update --check to force update") |
|
43 | 43 | raise error.UpdateAbort(msg, hint=hint) |
|
44 | 44 | |
|
45 | 45 | def _destupdateobs(repo, clean, check): |
|
46 | 46 | """decide of an update destination from obsolescence markers""" |
|
47 | 47 | node = None |
|
48 | 48 | wc = repo[None] |
|
49 | 49 | p1 = wc.p1() |
|
50 | 50 | movemark = None |
|
51 | 51 | |
|
52 | 52 | if p1.obsolete() and not p1.children(): |
|
53 | 53 | # allow updating to successors |
|
54 | 54 | successors = obsolete.successorssets(repo, p1.node()) |
|
55 | 55 | |
|
56 | 56 | # behavior of certain cases is as follows, |
|
57 | 57 | # |
|
58 | 58 | # divergent changesets: update to highest rev, similar to what |
|
59 | 59 | # is currently done when there are more than one head |
|
60 | 60 | # (i.e. 'tip') |
|
61 | 61 | # |
|
62 | 62 | # replaced changesets: same as divergent except we know there |
|
63 | 63 | # is no conflict |
|
64 | 64 | # |
|
65 | 65 | # pruned changeset: no update is done; though, we could |
|
66 | 66 | # consider updating to the first non-obsolete parent, |
|
67 | 67 | # similar to what is current done for 'hg prune' |
|
68 | 68 | |
|
69 | 69 | if successors: |
|
70 | 70 | # flatten the list here handles both divergent (len > 1) |
|
71 | 71 | # and the usual case (len = 1) |
|
72 | 72 | successors = [n for sub in successors for n in sub] |
|
73 | 73 | |
|
74 | 74 | # get the max revision for the given successors set, |
|
75 | 75 | # i.e. the 'tip' of a set |
|
76 | 76 | node = repo.revs('max(%ln)', successors).first() |
|
77 | 77 | if bookmarks.isactivewdirparent(repo): |
|
78 | 78 | movemark = repo['.'].node() |
|
79 | 79 | return node, movemark, None |
|
80 | 80 | |
|
81 | 81 | def _destupdatebook(repo, clean, check): |
|
82 | 82 | """decide on an update destination from active bookmark""" |
|
83 | 83 | # we also move the active bookmark, if any |
|
84 | 84 | activemark = None |
|
85 | 85 | node, movemark = bookmarks.calculateupdate(repo.ui, repo, None) |
|
86 | 86 | if node is not None: |
|
87 | 87 | activemark = node |
|
88 | 88 | return node, movemark, activemark |
|
89 | 89 | |
|
90 | 90 | def _destupdatebranch(repo, clean, check): |
|
91 | 91 | """decide on an update destination from current branch""" |
|
92 | 92 | wc = repo[None] |
|
93 | 93 | movemark = node = None |
|
94 | 94 | try: |
|
95 | 95 | node = repo.revs('max(.::(head() and branch(%s)))' |
|
96 | 96 | , wc.branch()).first() |
|
97 | 97 | if bookmarks.isactivewdirparent(repo): |
|
98 | 98 | movemark = repo['.'].node() |
|
99 | 99 | except error.RepoLookupError: |
|
100 | 100 | if wc.branch() == 'default': # no default branch! |
|
101 | 101 | node = repo.lookup('tip') # update to tip |
|
102 | 102 | else: |
|
103 | 103 | raise error.Abort(_("branch %s not found") % wc.branch()) |
|
104 | 104 | return node, movemark, None |
|
105 | 105 | |
|
106 | 106 | # order in which each step should be evalutated |
|
107 | 107 | # steps are run until one finds a destination |
|
108 | 108 | destupdatesteps = ['evolution', 'bookmark', 'branch'] |
|
109 | 109 | # mapping to ease extension overriding steps. |
|
110 | 110 | destupdatestepmap = {'evolution': _destupdateobs, |
|
111 | 111 | 'bookmark': _destupdatebook, |
|
112 | 112 | 'branch': _destupdatebranch, |
|
113 | 113 | } |
|
114 | 114 | |
|
115 | 115 | def destupdate(repo, clean=False, check=False): |
|
116 | 116 | """destination for bare update operation |
|
117 | 117 | |
|
118 | 118 | return (rev, movemark, activemark) |
|
119 | 119 | |
|
120 | 120 | - rev: the revision to update to, |
|
121 | 121 | - movemark: node to move the active bookmark from |
|
122 | 122 | (cf bookmark.calculate update), |
|
123 | 123 | - activemark: a bookmark to activate at the end of the update. |
|
124 | 124 | """ |
|
125 | 125 | node = movemark = activemark = None |
|
126 | 126 | |
|
127 | 127 | for step in destupdatesteps: |
|
128 | 128 | node, movemark, activemark = destupdatestepmap[step](repo, clean, check) |
|
129 | 129 | if node is not None: |
|
130 | 130 | break |
|
131 | 131 | rev = repo[node].rev() |
|
132 | 132 | |
|
133 | 133 | _destupdatevalidate(repo, rev, clean, check) |
|
134 | 134 | |
|
135 | 135 | return rev, movemark, activemark |
|
136 | 136 | |
|
137 | 137 | msgdestmerge = { |
|
138 | 138 | # too many matching divergent bookmark |
|
139 | 139 | 'toomanybookmarks': |
|
140 | 140 | (_("multiple matching bookmarks to merge -" |
|
141 | 141 | " please merge with an explicit rev or bookmark"), |
|
142 | 142 | _("run 'hg heads' to see all heads")), |
|
143 | 143 | # no other matching divergent bookmark |
|
144 | 144 | 'nootherbookmarks': |
|
145 | 145 | (_("no matching bookmark to merge - " |
|
146 | 146 | "please merge with an explicit rev or bookmark"), |
|
147 | 147 | _("run 'hg heads' to see all heads")), |
|
148 | 148 | # branch have too many unbookmarked heads, no obvious destination |
|
149 | 149 | 'toomanyheads': |
|
150 | 150 | (_("branch '%s' has %d heads - please merge with an explicit rev"), |
|
151 | 151 | _("run 'hg heads .' to see heads")), |
|
152 | 152 | # branch have no other unbookmarked heads |
|
153 | 153 | 'bookmarkedheads': |
|
154 | 154 | (_("heads are bookmarked - please merge with an explicit rev"), |
|
155 | 155 | _("run 'hg heads' to see all heads")), |
|
156 | 156 | # branch have just a single heads, but there is other branches |
|
157 | 157 | 'nootherbranchheads': |
|
158 | 158 | (_("branch '%s' has one head - please merge with an explicit rev"), |
|
159 | 159 | _("run 'hg heads' to see all heads")), |
|
160 | 160 | # repository have a single head |
|
161 | 161 | 'nootherheads': |
|
162 | 162 | (_('nothing to merge'), |
|
163 | 163 | None), |
|
164 | 164 | # repository have a single head and we are not on it |
|
165 | 165 | 'nootherheadsbehind': |
|
166 | 166 | (_('nothing to merge'), |
|
167 | 167 | _("use 'hg update' instead")), |
|
168 | 168 | # We are not on a head |
|
169 | 169 | 'notatheads': |
|
170 | 170 | (_('working directory not at a head revision'), |
|
171 | 171 | _("use 'hg update' or merge with an explicit revision")) |
|
172 | 172 | } |
|
173 | 173 | |
|
174 | 174 | def _destmergebook(repo): |
|
175 | 175 | """find merge destination in the active bookmark case""" |
|
176 | 176 | node = None |
|
177 | 177 | bmheads = repo.bookmarkheads(repo._activebookmark) |
|
178 | 178 | curhead = repo[repo._activebookmark].node() |
|
179 | 179 | if len(bmheads) == 2: |
|
180 | 180 | if curhead == bmheads[0]: |
|
181 | 181 | node = bmheads[1] |
|
182 | 182 | else: |
|
183 | 183 | node = bmheads[0] |
|
184 | 184 | elif len(bmheads) > 2: |
|
185 | 185 | msg, hint = msgdestmerge['toomanybookmarks'] |
|
186 | 186 | raise error.Abort(msg, hint=hint) |
|
187 | 187 | elif len(bmheads) <= 1: |
|
188 | 188 | msg, hint = msgdestmerge['nootherbookmarks'] |
|
189 | 189 | raise error.Abort(msg, hint=hint) |
|
190 | 190 | assert node is not None |
|
191 | 191 | return node |
|
192 | 192 | |
|
193 | 193 | def _destmergebranch(repo): |
|
194 | 194 | """find merge destination based on branch heads""" |
|
195 | 195 | node = None |
|
196 | 196 | parent = repo.dirstate.p1() |
|
197 | 197 | branch = repo.dirstate.branch() |
|
198 | 198 | bheads = repo.branchheads(branch) |
|
199 | 199 | nbhs = [bh for bh in bheads if not repo[bh].bookmarks()] |
|
200 | 200 | |
|
201 | 201 | if parent not in bheads: |
|
202 | # Case A: working copy if not on a head. | |
|
203 | # | |
|
204 | # This is probably a user mistake We bailout pointing at 'hg update' | |
|
202 | 205 | if len(repo.heads()) <= 1: |
|
203 | 206 | msg, hint = msgdestmerge['nootherheadsbehind'] |
|
204 | 207 | else: |
|
205 | 208 | msg, hint = msgdestmerge['notatheads'] |
|
206 | 209 | raise error.Abort(msg, hint=hint) |
|
207 | ||
|
208 | if len(nbhs) > 2: | |
|
210 | elif len(nbhs) > 2: | |
|
211 | # Case B: There is more than 2 anonymous heads | |
|
212 | # | |
|
213 | # This means that there will be more than 1 candidate. This is | |
|
214 | # ambiguous. We abort asking the user to pick as explicit destination | |
|
215 | # instead. | |
|
209 | 216 | msg, hint = msgdestmerge['toomanyheads'] |
|
210 | 217 | msg %= (branch, len(bheads)) |
|
211 | 218 | raise error.Abort(msg, hint=hint) |
|
212 | ||
|
213 | if len(nbhs) <= 1: | |
|
219 | elif len(nbhs) <= 1: | |
|
220 | # Case B: There is no other anonymous head that the one we are one | |
|
221 | # | |
|
222 | # This means that there is no natural candidate to merge with. | |
|
223 | # We abort, with various messages for various cases. | |
|
214 | 224 | if len(bheads) > 1: |
|
215 | 225 | msg, hint = msgdestmerge['bookmarkedheads'] |
|
216 | 226 | elif len(repo.heads()) > 1: |
|
217 | 227 | msg, hint = msgdestmerge['nootherbranchheads'] |
|
218 | 228 | msg %= branch |
|
219 | 229 | else: |
|
220 | 230 | msg, hint = msgdestmerge['nootherheads'] |
|
221 | 231 | raise error.Abort(msg, hint=hint) |
|
222 | ||
|
223 | if parent == nbhs[0]: | |
|
232 | elif parent == nbhs[0]: | |
|
224 | 233 | node = nbhs[-1] |
|
225 | 234 | else: |
|
226 | 235 | node = nbhs[0] |
|
227 | 236 | assert node is not None |
|
228 | 237 | return node |
|
229 | 238 | |
|
230 | 239 | def destmerge(repo): |
|
231 | 240 | if repo._activebookmark: |
|
232 | 241 | node = _destmergebook(repo) |
|
233 | 242 | else: |
|
234 | 243 | node = _destmergebranch(repo) |
|
235 | 244 | return repo[node].rev() |
|
236 | 245 | |
|
237 | 246 | histeditdefaultrevset = 'reverse(only(.) and not public() and not ::merge())' |
|
238 | 247 | |
|
239 | 248 | def desthistedit(ui, repo): |
|
240 | 249 | """Default base revision to edit for `hg histedit`.""" |
|
241 | 250 | # Avoid cycle: scmutil -> revset -> destutil |
|
242 | 251 | from . import scmutil |
|
243 | 252 | |
|
244 | 253 | default = ui.config('histedit', 'defaultrev', histeditdefaultrevset) |
|
245 | 254 | if default: |
|
246 | 255 | revs = scmutil.revrange(repo, [default]) |
|
247 | 256 | if revs: |
|
248 | 257 | # The revset supplied by the user may not be in ascending order nor |
|
249 | 258 | # take the first revision. So do this manually. |
|
250 | 259 | revs.sort() |
|
251 | 260 | return revs.first() |
|
252 | 261 | |
|
253 | 262 | return None |
|
254 | 263 | |
|
255 | 264 | def _statusotherbook(ui, repo): |
|
256 | 265 | bmheads = repo.bookmarkheads(repo._activebookmark) |
|
257 | 266 | curhead = repo[repo._activebookmark].node() |
|
258 | 267 | if repo.revs('%n and parents()', curhead): |
|
259 | 268 | # we are on the active bookmark |
|
260 | 269 | bmheads = [b for b in bmheads if curhead != b] |
|
261 | 270 | if bmheads: |
|
262 | 271 | msg = _('%i other divergent bookmarks for "%s"\n') |
|
263 | 272 | ui.status(msg % (len(bmheads), repo._activebookmark)) |
|
264 | 273 | |
|
265 | 274 | def _statusotherbranchheads(ui, repo): |
|
266 | 275 | currentbranch = repo.dirstate.branch() |
|
267 | 276 | heads = repo.branchheads(currentbranch) |
|
268 | 277 | l = len(heads) |
|
269 | 278 | if repo.revs('%ln and parents()', heads): |
|
270 | 279 | # we are on a head |
|
271 | 280 | heads = repo.revs('%ln - parents()', heads) |
|
272 | 281 | if heads and l != len(heads): |
|
273 | 282 | ui.status(_('%i other heads for branch "%s"\n') % |
|
274 | 283 | (len(heads), currentbranch)) |
|
275 | 284 | |
|
276 | 285 | def statusotherdests(ui, repo): |
|
277 | 286 | """Print message about other head""" |
|
278 | 287 | # XXX we should probably include a hint: |
|
279 | 288 | # - about what to do |
|
280 | 289 | # - how to see such heads |
|
281 | 290 | if repo._activebookmark: |
|
282 | 291 | _statusotherbook(ui, repo) |
|
283 | 292 | else: |
|
284 | 293 | _statusotherbranchheads(ui, repo) |
General Comments 0
You need to be logged in to leave comments.
Login now