##// END OF EJS Templates
merge with stable
Matt Mackall -
r15801:bfd3ce75 merge default
parent child Browse files
Show More
@@ -1,3304 +1,3305 b''
1 # mq.py - patch queues for mercurial
1 # mq.py - patch queues for mercurial
2 #
2 #
3 # Copyright 2005, 2006 Chris Mason <mason@suse.com>
3 # Copyright 2005, 2006 Chris Mason <mason@suse.com>
4 #
4 #
5 # This software may be used and distributed according to the terms of the
5 # This software may be used and distributed according to the terms of the
6 # GNU General Public License version 2 or any later version.
6 # GNU General Public License version 2 or any later version.
7
7
8 '''manage a stack of patches
8 '''manage a stack of patches
9
9
10 This extension lets you work with a stack of patches in a Mercurial
10 This extension lets you work with a stack of patches in a Mercurial
11 repository. It manages two stacks of patches - all known patches, and
11 repository. It manages two stacks of patches - all known patches, and
12 applied patches (subset of known patches).
12 applied patches (subset of known patches).
13
13
14 Known patches are represented as patch files in the .hg/patches
14 Known patches are represented as patch files in the .hg/patches
15 directory. Applied patches are both patch files and changesets.
15 directory. Applied patches are both patch files and changesets.
16
16
17 Common tasks (use :hg:`help command` for more details)::
17 Common tasks (use :hg:`help command` for more details)::
18
18
19 create new patch qnew
19 create new patch qnew
20 import existing patch qimport
20 import existing patch qimport
21
21
22 print patch series qseries
22 print patch series qseries
23 print applied patches qapplied
23 print applied patches qapplied
24
24
25 add known patch to applied stack qpush
25 add known patch to applied stack qpush
26 remove patch from applied stack qpop
26 remove patch from applied stack qpop
27 refresh contents of top applied patch qrefresh
27 refresh contents of top applied patch qrefresh
28
28
29 By default, mq will automatically use git patches when required to
29 By default, mq will automatically use git patches when required to
30 avoid losing file mode changes, copy records, binary files or empty
30 avoid losing file mode changes, copy records, binary files or empty
31 files creations or deletions. This behaviour can be configured with::
31 files creations or deletions. This behaviour can be configured with::
32
32
33 [mq]
33 [mq]
34 git = auto/keep/yes/no
34 git = auto/keep/yes/no
35
35
36 If set to 'keep', mq will obey the [diff] section configuration while
36 If set to 'keep', mq will obey the [diff] section configuration while
37 preserving existing git patches upon qrefresh. If set to 'yes' or
37 preserving existing git patches upon qrefresh. If set to 'yes' or
38 'no', mq will override the [diff] section and always generate git or
38 'no', mq will override the [diff] section and always generate git or
39 regular patches, possibly losing data in the second case.
39 regular patches, possibly losing data in the second case.
40
40
41 You will by default be managing a patch queue named "patches". You can
41 You will by default be managing a patch queue named "patches". You can
42 create other, independent patch queues with the :hg:`qqueue` command.
42 create other, independent patch queues with the :hg:`qqueue` command.
43 '''
43 '''
44
44
45 from mercurial.i18n import _
45 from mercurial.i18n import _
46 from mercurial.node import bin, hex, short, nullid, nullrev
46 from mercurial.node import bin, hex, short, nullid, nullrev
47 from mercurial.lock import release
47 from mercurial.lock import release
48 from mercurial import commands, cmdutil, hg, scmutil, util, revset
48 from mercurial import commands, cmdutil, hg, scmutil, util, revset
49 from mercurial import repair, extensions, url, error
49 from mercurial import repair, extensions, url, error
50 from mercurial import patch as patchmod
50 from mercurial import patch as patchmod
51 import os, re, errno, shutil
51 import os, re, errno, shutil
52
52
53 commands.norepo += " qclone"
53 commands.norepo += " qclone"
54
54
55 seriesopts = [('s', 'summary', None, _('print first line of patch header'))]
55 seriesopts = [('s', 'summary', None, _('print first line of patch header'))]
56
56
57 cmdtable = {}
57 cmdtable = {}
58 command = cmdutil.command(cmdtable)
58 command = cmdutil.command(cmdtable)
59
59
60 # Patch names looks like unix-file names.
60 # Patch names looks like unix-file names.
61 # They must be joinable with queue directory and result in the patch path.
61 # They must be joinable with queue directory and result in the patch path.
62 normname = util.normpath
62 normname = util.normpath
63
63
64 class statusentry(object):
64 class statusentry(object):
65 def __init__(self, node, name):
65 def __init__(self, node, name):
66 self.node, self.name = node, name
66 self.node, self.name = node, name
67 def __repr__(self):
67 def __repr__(self):
68 return hex(self.node) + ':' + self.name
68 return hex(self.node) + ':' + self.name
69
69
70 class patchheader(object):
70 class patchheader(object):
71 def __init__(self, pf, plainmode=False):
71 def __init__(self, pf, plainmode=False):
72 def eatdiff(lines):
72 def eatdiff(lines):
73 while lines:
73 while lines:
74 l = lines[-1]
74 l = lines[-1]
75 if (l.startswith("diff -") or
75 if (l.startswith("diff -") or
76 l.startswith("Index:") or
76 l.startswith("Index:") or
77 l.startswith("===========")):
77 l.startswith("===========")):
78 del lines[-1]
78 del lines[-1]
79 else:
79 else:
80 break
80 break
81 def eatempty(lines):
81 def eatempty(lines):
82 while lines:
82 while lines:
83 if not lines[-1].strip():
83 if not lines[-1].strip():
84 del lines[-1]
84 del lines[-1]
85 else:
85 else:
86 break
86 break
87
87
88 message = []
88 message = []
89 comments = []
89 comments = []
90 user = None
90 user = None
91 date = None
91 date = None
92 parent = None
92 parent = None
93 format = None
93 format = None
94 subject = None
94 subject = None
95 branch = None
95 branch = None
96 nodeid = None
96 nodeid = None
97 diffstart = 0
97 diffstart = 0
98
98
99 for line in file(pf):
99 for line in file(pf):
100 line = line.rstrip()
100 line = line.rstrip()
101 if (line.startswith('diff --git')
101 if (line.startswith('diff --git')
102 or (diffstart and line.startswith('+++ '))):
102 or (diffstart and line.startswith('+++ '))):
103 diffstart = 2
103 diffstart = 2
104 break
104 break
105 diffstart = 0 # reset
105 diffstart = 0 # reset
106 if line.startswith("--- "):
106 if line.startswith("--- "):
107 diffstart = 1
107 diffstart = 1
108 continue
108 continue
109 elif format == "hgpatch":
109 elif format == "hgpatch":
110 # parse values when importing the result of an hg export
110 # parse values when importing the result of an hg export
111 if line.startswith("# User "):
111 if line.startswith("# User "):
112 user = line[7:]
112 user = line[7:]
113 elif line.startswith("# Date "):
113 elif line.startswith("# Date "):
114 date = line[7:]
114 date = line[7:]
115 elif line.startswith("# Parent "):
115 elif line.startswith("# Parent "):
116 parent = line[9:].lstrip()
116 parent = line[9:].lstrip()
117 elif line.startswith("# Branch "):
117 elif line.startswith("# Branch "):
118 branch = line[9:]
118 branch = line[9:]
119 elif line.startswith("# Node ID "):
119 elif line.startswith("# Node ID "):
120 nodeid = line[10:]
120 nodeid = line[10:]
121 elif not line.startswith("# ") and line:
121 elif not line.startswith("# ") and line:
122 message.append(line)
122 message.append(line)
123 format = None
123 format = None
124 elif line == '# HG changeset patch':
124 elif line == '# HG changeset patch':
125 message = []
125 message = []
126 format = "hgpatch"
126 format = "hgpatch"
127 elif (format != "tagdone" and (line.startswith("Subject: ") or
127 elif (format != "tagdone" and (line.startswith("Subject: ") or
128 line.startswith("subject: "))):
128 line.startswith("subject: "))):
129 subject = line[9:]
129 subject = line[9:]
130 format = "tag"
130 format = "tag"
131 elif (format != "tagdone" and (line.startswith("From: ") or
131 elif (format != "tagdone" and (line.startswith("From: ") or
132 line.startswith("from: "))):
132 line.startswith("from: "))):
133 user = line[6:]
133 user = line[6:]
134 format = "tag"
134 format = "tag"
135 elif (format != "tagdone" and (line.startswith("Date: ") or
135 elif (format != "tagdone" and (line.startswith("Date: ") or
136 line.startswith("date: "))):
136 line.startswith("date: "))):
137 date = line[6:]
137 date = line[6:]
138 format = "tag"
138 format = "tag"
139 elif format == "tag" and line == "":
139 elif format == "tag" and line == "":
140 # when looking for tags (subject: from: etc) they
140 # when looking for tags (subject: from: etc) they
141 # end once you find a blank line in the source
141 # end once you find a blank line in the source
142 format = "tagdone"
142 format = "tagdone"
143 elif message or line:
143 elif message or line:
144 message.append(line)
144 message.append(line)
145 comments.append(line)
145 comments.append(line)
146
146
147 eatdiff(message)
147 eatdiff(message)
148 eatdiff(comments)
148 eatdiff(comments)
149 # Remember the exact starting line of the patch diffs before consuming
149 # Remember the exact starting line of the patch diffs before consuming
150 # empty lines, for external use by TortoiseHg and others
150 # empty lines, for external use by TortoiseHg and others
151 self.diffstartline = len(comments)
151 self.diffstartline = len(comments)
152 eatempty(message)
152 eatempty(message)
153 eatempty(comments)
153 eatempty(comments)
154
154
155 # make sure message isn't empty
155 # make sure message isn't empty
156 if format and format.startswith("tag") and subject:
156 if format and format.startswith("tag") and subject:
157 message.insert(0, "")
157 message.insert(0, "")
158 message.insert(0, subject)
158 message.insert(0, subject)
159
159
160 self.message = message
160 self.message = message
161 self.comments = comments
161 self.comments = comments
162 self.user = user
162 self.user = user
163 self.date = date
163 self.date = date
164 self.parent = parent
164 self.parent = parent
165 # nodeid and branch are for external use by TortoiseHg and others
165 # nodeid and branch are for external use by TortoiseHg and others
166 self.nodeid = nodeid
166 self.nodeid = nodeid
167 self.branch = branch
167 self.branch = branch
168 self.haspatch = diffstart > 1
168 self.haspatch = diffstart > 1
169 self.plainmode = plainmode
169 self.plainmode = plainmode
170
170
171 def setuser(self, user):
171 def setuser(self, user):
172 if not self.updateheader(['From: ', '# User '], user):
172 if not self.updateheader(['From: ', '# User '], user):
173 try:
173 try:
174 patchheaderat = self.comments.index('# HG changeset patch')
174 patchheaderat = self.comments.index('# HG changeset patch')
175 self.comments.insert(patchheaderat + 1, '# User ' + user)
175 self.comments.insert(patchheaderat + 1, '# User ' + user)
176 except ValueError:
176 except ValueError:
177 if self.plainmode or self._hasheader(['Date: ']):
177 if self.plainmode or self._hasheader(['Date: ']):
178 self.comments = ['From: ' + user] + self.comments
178 self.comments = ['From: ' + user] + self.comments
179 else:
179 else:
180 tmp = ['# HG changeset patch', '# User ' + user, '']
180 tmp = ['# HG changeset patch', '# User ' + user, '']
181 self.comments = tmp + self.comments
181 self.comments = tmp + self.comments
182 self.user = user
182 self.user = user
183
183
184 def setdate(self, date):
184 def setdate(self, date):
185 if not self.updateheader(['Date: ', '# Date '], date):
185 if not self.updateheader(['Date: ', '# Date '], date):
186 try:
186 try:
187 patchheaderat = self.comments.index('# HG changeset patch')
187 patchheaderat = self.comments.index('# HG changeset patch')
188 self.comments.insert(patchheaderat + 1, '# Date ' + date)
188 self.comments.insert(patchheaderat + 1, '# Date ' + date)
189 except ValueError:
189 except ValueError:
190 if self.plainmode or self._hasheader(['From: ']):
190 if self.plainmode or self._hasheader(['From: ']):
191 self.comments = ['Date: ' + date] + self.comments
191 self.comments = ['Date: ' + date] + self.comments
192 else:
192 else:
193 tmp = ['# HG changeset patch', '# Date ' + date, '']
193 tmp = ['# HG changeset patch', '# Date ' + date, '']
194 self.comments = tmp + self.comments
194 self.comments = tmp + self.comments
195 self.date = date
195 self.date = date
196
196
197 def setparent(self, parent):
197 def setparent(self, parent):
198 if not self.updateheader(['# Parent '], parent):
198 if not self.updateheader(['# Parent '], parent):
199 try:
199 try:
200 patchheaderat = self.comments.index('# HG changeset patch')
200 patchheaderat = self.comments.index('# HG changeset patch')
201 self.comments.insert(patchheaderat + 1, '# Parent ' + parent)
201 self.comments.insert(patchheaderat + 1, '# Parent ' + parent)
202 except ValueError:
202 except ValueError:
203 pass
203 pass
204 self.parent = parent
204 self.parent = parent
205
205
206 def setmessage(self, message):
206 def setmessage(self, message):
207 if self.comments:
207 if self.comments:
208 self._delmsg()
208 self._delmsg()
209 self.message = [message]
209 self.message = [message]
210 self.comments += self.message
210 self.comments += self.message
211
211
212 def updateheader(self, prefixes, new):
212 def updateheader(self, prefixes, new):
213 '''Update all references to a field in the patch header.
213 '''Update all references to a field in the patch header.
214 Return whether the field is present.'''
214 Return whether the field is present.'''
215 res = False
215 res = False
216 for prefix in prefixes:
216 for prefix in prefixes:
217 for i in xrange(len(self.comments)):
217 for i in xrange(len(self.comments)):
218 if self.comments[i].startswith(prefix):
218 if self.comments[i].startswith(prefix):
219 self.comments[i] = prefix + new
219 self.comments[i] = prefix + new
220 res = True
220 res = True
221 break
221 break
222 return res
222 return res
223
223
224 def _hasheader(self, prefixes):
224 def _hasheader(self, prefixes):
225 '''Check if a header starts with any of the given prefixes.'''
225 '''Check if a header starts with any of the given prefixes.'''
226 for prefix in prefixes:
226 for prefix in prefixes:
227 for comment in self.comments:
227 for comment in self.comments:
228 if comment.startswith(prefix):
228 if comment.startswith(prefix):
229 return True
229 return True
230 return False
230 return False
231
231
232 def __str__(self):
232 def __str__(self):
233 if not self.comments:
233 if not self.comments:
234 return ''
234 return ''
235 return '\n'.join(self.comments) + '\n\n'
235 return '\n'.join(self.comments) + '\n\n'
236
236
237 def _delmsg(self):
237 def _delmsg(self):
238 '''Remove existing message, keeping the rest of the comments fields.
238 '''Remove existing message, keeping the rest of the comments fields.
239 If comments contains 'subject: ', message will prepend
239 If comments contains 'subject: ', message will prepend
240 the field and a blank line.'''
240 the field and a blank line.'''
241 if self.message:
241 if self.message:
242 subj = 'subject: ' + self.message[0].lower()
242 subj = 'subject: ' + self.message[0].lower()
243 for i in xrange(len(self.comments)):
243 for i in xrange(len(self.comments)):
244 if subj == self.comments[i].lower():
244 if subj == self.comments[i].lower():
245 del self.comments[i]
245 del self.comments[i]
246 self.message = self.message[2:]
246 self.message = self.message[2:]
247 break
247 break
248 ci = 0
248 ci = 0
249 for mi in self.message:
249 for mi in self.message:
250 while mi != self.comments[ci]:
250 while mi != self.comments[ci]:
251 ci += 1
251 ci += 1
252 del self.comments[ci]
252 del self.comments[ci]
253
253
254 class queue(object):
254 class queue(object):
255 def __init__(self, ui, path, patchdir=None):
255 def __init__(self, ui, path, patchdir=None):
256 self.basepath = path
256 self.basepath = path
257 try:
257 try:
258 fh = open(os.path.join(path, 'patches.queue'))
258 fh = open(os.path.join(path, 'patches.queue'))
259 cur = fh.read().rstrip()
259 cur = fh.read().rstrip()
260 fh.close()
260 fh.close()
261 if not cur:
261 if not cur:
262 curpath = os.path.join(path, 'patches')
262 curpath = os.path.join(path, 'patches')
263 else:
263 else:
264 curpath = os.path.join(path, 'patches-' + cur)
264 curpath = os.path.join(path, 'patches-' + cur)
265 except IOError:
265 except IOError:
266 curpath = os.path.join(path, 'patches')
266 curpath = os.path.join(path, 'patches')
267 self.path = patchdir or curpath
267 self.path = patchdir or curpath
268 self.opener = scmutil.opener(self.path)
268 self.opener = scmutil.opener(self.path)
269 self.ui = ui
269 self.ui = ui
270 self.applieddirty = 0
270 self.applieddirty = 0
271 self.seriesdirty = 0
271 self.seriesdirty = 0
272 self.added = []
272 self.added = []
273 self.seriespath = "series"
273 self.seriespath = "series"
274 self.statuspath = "status"
274 self.statuspath = "status"
275 self.guardspath = "guards"
275 self.guardspath = "guards"
276 self.activeguards = None
276 self.activeguards = None
277 self.guardsdirty = False
277 self.guardsdirty = False
278 # Handle mq.git as a bool with extended values
278 # Handle mq.git as a bool with extended values
279 try:
279 try:
280 gitmode = ui.configbool('mq', 'git', None)
280 gitmode = ui.configbool('mq', 'git', None)
281 if gitmode is None:
281 if gitmode is None:
282 raise error.ConfigError()
282 raise error.ConfigError()
283 self.gitmode = gitmode and 'yes' or 'no'
283 self.gitmode = gitmode and 'yes' or 'no'
284 except error.ConfigError:
284 except error.ConfigError:
285 self.gitmode = ui.config('mq', 'git', 'auto').lower()
285 self.gitmode = ui.config('mq', 'git', 'auto').lower()
286 self.plainmode = ui.configbool('mq', 'plain', False)
286 self.plainmode = ui.configbool('mq', 'plain', False)
287
287
288 @util.propertycache
288 @util.propertycache
289 def applied(self):
289 def applied(self):
290 def parselines(lines):
290 def parselines(lines):
291 for l in lines:
291 for l in lines:
292 entry = l.split(':', 1)
292 entry = l.split(':', 1)
293 if len(entry) > 1:
293 if len(entry) > 1:
294 n, name = entry
294 n, name = entry
295 yield statusentry(bin(n), name)
295 yield statusentry(bin(n), name)
296 elif l.strip():
296 elif l.strip():
297 self.ui.warn(_('malformated mq status line: %s\n') % entry)
297 self.ui.warn(_('malformated mq status line: %s\n') % entry)
298 # else we ignore empty lines
298 # else we ignore empty lines
299 try:
299 try:
300 lines = self.opener.read(self.statuspath).splitlines()
300 lines = self.opener.read(self.statuspath).splitlines()
301 return list(parselines(lines))
301 return list(parselines(lines))
302 except IOError, e:
302 except IOError, e:
303 if e.errno == errno.ENOENT:
303 if e.errno == errno.ENOENT:
304 return []
304 return []
305 raise
305 raise
306
306
307 @util.propertycache
307 @util.propertycache
308 def fullseries(self):
308 def fullseries(self):
309 try:
309 try:
310 return self.opener.read(self.seriespath).splitlines()
310 return self.opener.read(self.seriespath).splitlines()
311 except IOError, e:
311 except IOError, e:
312 if e.errno == errno.ENOENT:
312 if e.errno == errno.ENOENT:
313 return []
313 return []
314 raise
314 raise
315
315
316 @util.propertycache
316 @util.propertycache
317 def series(self):
317 def series(self):
318 self.parseseries()
318 self.parseseries()
319 return self.series
319 return self.series
320
320
321 @util.propertycache
321 @util.propertycache
322 def seriesguards(self):
322 def seriesguards(self):
323 self.parseseries()
323 self.parseseries()
324 return self.seriesguards
324 return self.seriesguards
325
325
326 def invalidate(self):
326 def invalidate(self):
327 for a in 'applied fullseries series seriesguards'.split():
327 for a in 'applied fullseries series seriesguards'.split():
328 if a in self.__dict__:
328 if a in self.__dict__:
329 delattr(self, a)
329 delattr(self, a)
330 self.applieddirty = 0
330 self.applieddirty = 0
331 self.seriesdirty = 0
331 self.seriesdirty = 0
332 self.guardsdirty = False
332 self.guardsdirty = False
333 self.activeguards = None
333 self.activeguards = None
334
334
335 def diffopts(self, opts={}, patchfn=None):
335 def diffopts(self, opts={}, patchfn=None):
336 diffopts = patchmod.diffopts(self.ui, opts)
336 diffopts = patchmod.diffopts(self.ui, opts)
337 if self.gitmode == 'auto':
337 if self.gitmode == 'auto':
338 diffopts.upgrade = True
338 diffopts.upgrade = True
339 elif self.gitmode == 'keep':
339 elif self.gitmode == 'keep':
340 pass
340 pass
341 elif self.gitmode in ('yes', 'no'):
341 elif self.gitmode in ('yes', 'no'):
342 diffopts.git = self.gitmode == 'yes'
342 diffopts.git = self.gitmode == 'yes'
343 else:
343 else:
344 raise util.Abort(_('mq.git option can be auto/keep/yes/no'
344 raise util.Abort(_('mq.git option can be auto/keep/yes/no'
345 ' got %s') % self.gitmode)
345 ' got %s') % self.gitmode)
346 if patchfn:
346 if patchfn:
347 diffopts = self.patchopts(diffopts, patchfn)
347 diffopts = self.patchopts(diffopts, patchfn)
348 return diffopts
348 return diffopts
349
349
350 def patchopts(self, diffopts, *patches):
350 def patchopts(self, diffopts, *patches):
351 """Return a copy of input diff options with git set to true if
351 """Return a copy of input diff options with git set to true if
352 referenced patch is a git patch and should be preserved as such.
352 referenced patch is a git patch and should be preserved as such.
353 """
353 """
354 diffopts = diffopts.copy()
354 diffopts = diffopts.copy()
355 if not diffopts.git and self.gitmode == 'keep':
355 if not diffopts.git and self.gitmode == 'keep':
356 for patchfn in patches:
356 for patchfn in patches:
357 patchf = self.opener(patchfn, 'r')
357 patchf = self.opener(patchfn, 'r')
358 # if the patch was a git patch, refresh it as a git patch
358 # if the patch was a git patch, refresh it as a git patch
359 for line in patchf:
359 for line in patchf:
360 if line.startswith('diff --git'):
360 if line.startswith('diff --git'):
361 diffopts.git = True
361 diffopts.git = True
362 break
362 break
363 patchf.close()
363 patchf.close()
364 return diffopts
364 return diffopts
365
365
366 def join(self, *p):
366 def join(self, *p):
367 return os.path.join(self.path, *p)
367 return os.path.join(self.path, *p)
368
368
369 def findseries(self, patch):
369 def findseries(self, patch):
370 def matchpatch(l):
370 def matchpatch(l):
371 l = l.split('#', 1)[0]
371 l = l.split('#', 1)[0]
372 return l.strip() == patch
372 return l.strip() == patch
373 for index, l in enumerate(self.fullseries):
373 for index, l in enumerate(self.fullseries):
374 if matchpatch(l):
374 if matchpatch(l):
375 return index
375 return index
376 return None
376 return None
377
377
378 guard_re = re.compile(r'\s?#([-+][^-+# \t\r\n\f][^# \t\r\n\f]*)')
378 guard_re = re.compile(r'\s?#([-+][^-+# \t\r\n\f][^# \t\r\n\f]*)')
379
379
380 def parseseries(self):
380 def parseseries(self):
381 self.series = []
381 self.series = []
382 self.seriesguards = []
382 self.seriesguards = []
383 for l in self.fullseries:
383 for l in self.fullseries:
384 h = l.find('#')
384 h = l.find('#')
385 if h == -1:
385 if h == -1:
386 patch = l
386 patch = l
387 comment = ''
387 comment = ''
388 elif h == 0:
388 elif h == 0:
389 continue
389 continue
390 else:
390 else:
391 patch = l[:h]
391 patch = l[:h]
392 comment = l[h:]
392 comment = l[h:]
393 patch = patch.strip()
393 patch = patch.strip()
394 if patch:
394 if patch:
395 if patch in self.series:
395 if patch in self.series:
396 raise util.Abort(_('%s appears more than once in %s') %
396 raise util.Abort(_('%s appears more than once in %s') %
397 (patch, self.join(self.seriespath)))
397 (patch, self.join(self.seriespath)))
398 self.series.append(patch)
398 self.series.append(patch)
399 self.seriesguards.append(self.guard_re.findall(comment))
399 self.seriesguards.append(self.guard_re.findall(comment))
400
400
401 def checkguard(self, guard):
401 def checkguard(self, guard):
402 if not guard:
402 if not guard:
403 return _('guard cannot be an empty string')
403 return _('guard cannot be an empty string')
404 bad_chars = '# \t\r\n\f'
404 bad_chars = '# \t\r\n\f'
405 first = guard[0]
405 first = guard[0]
406 if first in '-+':
406 if first in '-+':
407 return (_('guard %r starts with invalid character: %r') %
407 return (_('guard %r starts with invalid character: %r') %
408 (guard, first))
408 (guard, first))
409 for c in bad_chars:
409 for c in bad_chars:
410 if c in guard:
410 if c in guard:
411 return _('invalid character in guard %r: %r') % (guard, c)
411 return _('invalid character in guard %r: %r') % (guard, c)
412
412
413 def setactive(self, guards):
413 def setactive(self, guards):
414 for guard in guards:
414 for guard in guards:
415 bad = self.checkguard(guard)
415 bad = self.checkguard(guard)
416 if bad:
416 if bad:
417 raise util.Abort(bad)
417 raise util.Abort(bad)
418 guards = sorted(set(guards))
418 guards = sorted(set(guards))
419 self.ui.debug('active guards: %s\n' % ' '.join(guards))
419 self.ui.debug('active guards: %s\n' % ' '.join(guards))
420 self.activeguards = guards
420 self.activeguards = guards
421 self.guardsdirty = True
421 self.guardsdirty = True
422
422
423 def active(self):
423 def active(self):
424 if self.activeguards is None:
424 if self.activeguards is None:
425 self.activeguards = []
425 self.activeguards = []
426 try:
426 try:
427 guards = self.opener.read(self.guardspath).split()
427 guards = self.opener.read(self.guardspath).split()
428 except IOError, err:
428 except IOError, err:
429 if err.errno != errno.ENOENT:
429 if err.errno != errno.ENOENT:
430 raise
430 raise
431 guards = []
431 guards = []
432 for i, guard in enumerate(guards):
432 for i, guard in enumerate(guards):
433 bad = self.checkguard(guard)
433 bad = self.checkguard(guard)
434 if bad:
434 if bad:
435 self.ui.warn('%s:%d: %s\n' %
435 self.ui.warn('%s:%d: %s\n' %
436 (self.join(self.guardspath), i + 1, bad))
436 (self.join(self.guardspath), i + 1, bad))
437 else:
437 else:
438 self.activeguards.append(guard)
438 self.activeguards.append(guard)
439 return self.activeguards
439 return self.activeguards
440
440
441 def setguards(self, idx, guards):
441 def setguards(self, idx, guards):
442 for g in guards:
442 for g in guards:
443 if len(g) < 2:
443 if len(g) < 2:
444 raise util.Abort(_('guard %r too short') % g)
444 raise util.Abort(_('guard %r too short') % g)
445 if g[0] not in '-+':
445 if g[0] not in '-+':
446 raise util.Abort(_('guard %r starts with invalid char') % g)
446 raise util.Abort(_('guard %r starts with invalid char') % g)
447 bad = self.checkguard(g[1:])
447 bad = self.checkguard(g[1:])
448 if bad:
448 if bad:
449 raise util.Abort(bad)
449 raise util.Abort(bad)
450 drop = self.guard_re.sub('', self.fullseries[idx])
450 drop = self.guard_re.sub('', self.fullseries[idx])
451 self.fullseries[idx] = drop + ''.join([' #' + g for g in guards])
451 self.fullseries[idx] = drop + ''.join([' #' + g for g in guards])
452 self.parseseries()
452 self.parseseries()
453 self.seriesdirty = True
453 self.seriesdirty = True
454
454
455 def pushable(self, idx):
455 def pushable(self, idx):
456 if isinstance(idx, str):
456 if isinstance(idx, str):
457 idx = self.series.index(idx)
457 idx = self.series.index(idx)
458 patchguards = self.seriesguards[idx]
458 patchguards = self.seriesguards[idx]
459 if not patchguards:
459 if not patchguards:
460 return True, None
460 return True, None
461 guards = self.active()
461 guards = self.active()
462 exactneg = [g for g in patchguards if g[0] == '-' and g[1:] in guards]
462 exactneg = [g for g in patchguards if g[0] == '-' and g[1:] in guards]
463 if exactneg:
463 if exactneg:
464 return False, repr(exactneg[0])
464 return False, repr(exactneg[0])
465 pos = [g for g in patchguards if g[0] == '+']
465 pos = [g for g in patchguards if g[0] == '+']
466 exactpos = [g for g in pos if g[1:] in guards]
466 exactpos = [g for g in pos if g[1:] in guards]
467 if pos:
467 if pos:
468 if exactpos:
468 if exactpos:
469 return True, repr(exactpos[0])
469 return True, repr(exactpos[0])
470 return False, ' '.join(map(repr, pos))
470 return False, ' '.join(map(repr, pos))
471 return True, ''
471 return True, ''
472
472
473 def explainpushable(self, idx, all_patches=False):
473 def explainpushable(self, idx, all_patches=False):
474 write = all_patches and self.ui.write or self.ui.warn
474 write = all_patches and self.ui.write or self.ui.warn
475 if all_patches or self.ui.verbose:
475 if all_patches or self.ui.verbose:
476 if isinstance(idx, str):
476 if isinstance(idx, str):
477 idx = self.series.index(idx)
477 idx = self.series.index(idx)
478 pushable, why = self.pushable(idx)
478 pushable, why = self.pushable(idx)
479 if all_patches and pushable:
479 if all_patches and pushable:
480 if why is None:
480 if why is None:
481 write(_('allowing %s - no guards in effect\n') %
481 write(_('allowing %s - no guards in effect\n') %
482 self.series[idx])
482 self.series[idx])
483 else:
483 else:
484 if not why:
484 if not why:
485 write(_('allowing %s - no matching negative guards\n') %
485 write(_('allowing %s - no matching negative guards\n') %
486 self.series[idx])
486 self.series[idx])
487 else:
487 else:
488 write(_('allowing %s - guarded by %s\n') %
488 write(_('allowing %s - guarded by %s\n') %
489 (self.series[idx], why))
489 (self.series[idx], why))
490 if not pushable:
490 if not pushable:
491 if why:
491 if why:
492 write(_('skipping %s - guarded by %s\n') %
492 write(_('skipping %s - guarded by %s\n') %
493 (self.series[idx], why))
493 (self.series[idx], why))
494 else:
494 else:
495 write(_('skipping %s - no matching guards\n') %
495 write(_('skipping %s - no matching guards\n') %
496 self.series[idx])
496 self.series[idx])
497
497
498 def savedirty(self):
498 def savedirty(self):
499 def writelist(items, path):
499 def writelist(items, path):
500 fp = self.opener(path, 'w')
500 fp = self.opener(path, 'w')
501 for i in items:
501 for i in items:
502 fp.write("%s\n" % i)
502 fp.write("%s\n" % i)
503 fp.close()
503 fp.close()
504 if self.applieddirty:
504 if self.applieddirty:
505 writelist(map(str, self.applied), self.statuspath)
505 writelist(map(str, self.applied), self.statuspath)
506 if self.seriesdirty:
506 if self.seriesdirty:
507 writelist(self.fullseries, self.seriespath)
507 writelist(self.fullseries, self.seriespath)
508 if self.guardsdirty:
508 if self.guardsdirty:
509 writelist(self.activeguards, self.guardspath)
509 writelist(self.activeguards, self.guardspath)
510 if self.added:
510 if self.added:
511 qrepo = self.qrepo()
511 qrepo = self.qrepo()
512 if qrepo:
512 if qrepo:
513 qrepo[None].add(f for f in self.added if f not in qrepo[None])
513 qrepo[None].add(f for f in self.added if f not in qrepo[None])
514 self.added = []
514 self.added = []
515
515
516 def removeundo(self, repo):
516 def removeundo(self, repo):
517 undo = repo.sjoin('undo')
517 undo = repo.sjoin('undo')
518 if not os.path.exists(undo):
518 if not os.path.exists(undo):
519 return
519 return
520 try:
520 try:
521 os.unlink(undo)
521 os.unlink(undo)
522 except OSError, inst:
522 except OSError, inst:
523 self.ui.warn(_('error removing undo: %s\n') % str(inst))
523 self.ui.warn(_('error removing undo: %s\n') % str(inst))
524
524
525 def printdiff(self, repo, diffopts, node1, node2=None, files=None,
525 def printdiff(self, repo, diffopts, node1, node2=None, files=None,
526 fp=None, changes=None, opts={}):
526 fp=None, changes=None, opts={}):
527 stat = opts.get('stat')
527 stat = opts.get('stat')
528 m = scmutil.match(repo[node1], files, opts)
528 m = scmutil.match(repo[node1], files, opts)
529 cmdutil.diffordiffstat(self.ui, repo, diffopts, node1, node2, m,
529 cmdutil.diffordiffstat(self.ui, repo, diffopts, node1, node2, m,
530 changes, stat, fp)
530 changes, stat, fp)
531
531
532 def mergeone(self, repo, mergeq, head, patch, rev, diffopts):
532 def mergeone(self, repo, mergeq, head, patch, rev, diffopts):
533 # first try just applying the patch
533 # first try just applying the patch
534 (err, n) = self.apply(repo, [patch], update_status=False,
534 (err, n) = self.apply(repo, [patch], update_status=False,
535 strict=True, merge=rev)
535 strict=True, merge=rev)
536
536
537 if err == 0:
537 if err == 0:
538 return (err, n)
538 return (err, n)
539
539
540 if n is None:
540 if n is None:
541 raise util.Abort(_("apply failed for patch %s") % patch)
541 raise util.Abort(_("apply failed for patch %s") % patch)
542
542
543 self.ui.warn(_("patch didn't work out, merging %s\n") % patch)
543 self.ui.warn(_("patch didn't work out, merging %s\n") % patch)
544
544
545 # apply failed, strip away that rev and merge.
545 # apply failed, strip away that rev and merge.
546 hg.clean(repo, head)
546 hg.clean(repo, head)
547 self.strip(repo, [n], update=False, backup='strip')
547 self.strip(repo, [n], update=False, backup='strip')
548
548
549 ctx = repo[rev]
549 ctx = repo[rev]
550 ret = hg.merge(repo, rev)
550 ret = hg.merge(repo, rev)
551 if ret:
551 if ret:
552 raise util.Abort(_("update returned %d") % ret)
552 raise util.Abort(_("update returned %d") % ret)
553 n = repo.commit(ctx.description(), ctx.user(), force=True)
553 n = repo.commit(ctx.description(), ctx.user(), force=True)
554 if n is None:
554 if n is None:
555 raise util.Abort(_("repo commit failed"))
555 raise util.Abort(_("repo commit failed"))
556 try:
556 try:
557 ph = patchheader(mergeq.join(patch), self.plainmode)
557 ph = patchheader(mergeq.join(patch), self.plainmode)
558 except:
558 except:
559 raise util.Abort(_("unable to read %s") % patch)
559 raise util.Abort(_("unable to read %s") % patch)
560
560
561 diffopts = self.patchopts(diffopts, patch)
561 diffopts = self.patchopts(diffopts, patch)
562 patchf = self.opener(patch, "w")
562 patchf = self.opener(patch, "w")
563 comments = str(ph)
563 comments = str(ph)
564 if comments:
564 if comments:
565 patchf.write(comments)
565 patchf.write(comments)
566 self.printdiff(repo, diffopts, head, n, fp=patchf)
566 self.printdiff(repo, diffopts, head, n, fp=patchf)
567 patchf.close()
567 patchf.close()
568 self.removeundo(repo)
568 self.removeundo(repo)
569 return (0, n)
569 return (0, n)
570
570
571 def qparents(self, repo, rev=None):
571 def qparents(self, repo, rev=None):
572 if rev is None:
572 if rev is None:
573 (p1, p2) = repo.dirstate.parents()
573 (p1, p2) = repo.dirstate.parents()
574 if p2 == nullid:
574 if p2 == nullid:
575 return p1
575 return p1
576 if not self.applied:
576 if not self.applied:
577 return None
577 return None
578 return self.applied[-1].node
578 return self.applied[-1].node
579 p1, p2 = repo.changelog.parents(rev)
579 p1, p2 = repo.changelog.parents(rev)
580 if p2 != nullid and p2 in [x.node for x in self.applied]:
580 if p2 != nullid and p2 in [x.node for x in self.applied]:
581 return p2
581 return p2
582 return p1
582 return p1
583
583
584 def mergepatch(self, repo, mergeq, series, diffopts):
584 def mergepatch(self, repo, mergeq, series, diffopts):
585 if not self.applied:
585 if not self.applied:
586 # each of the patches merged in will have two parents. This
586 # each of the patches merged in will have two parents. This
587 # can confuse the qrefresh, qdiff, and strip code because it
587 # can confuse the qrefresh, qdiff, and strip code because it
588 # needs to know which parent is actually in the patch queue.
588 # needs to know which parent is actually in the patch queue.
589 # so, we insert a merge marker with only one parent. This way
589 # so, we insert a merge marker with only one parent. This way
590 # the first patch in the queue is never a merge patch
590 # the first patch in the queue is never a merge patch
591 #
591 #
592 pname = ".hg.patches.merge.marker"
592 pname = ".hg.patches.merge.marker"
593 n = repo.commit('[mq]: merge marker', force=True)
593 n = repo.commit('[mq]: merge marker', force=True)
594 self.removeundo(repo)
594 self.removeundo(repo)
595 self.applied.append(statusentry(n, pname))
595 self.applied.append(statusentry(n, pname))
596 self.applieddirty = 1
596 self.applieddirty = 1
597
597
598 head = self.qparents(repo)
598 head = self.qparents(repo)
599
599
600 for patch in series:
600 for patch in series:
601 patch = mergeq.lookup(patch, strict=True)
601 patch = mergeq.lookup(patch, strict=True)
602 if not patch:
602 if not patch:
603 self.ui.warn(_("patch %s does not exist\n") % patch)
603 self.ui.warn(_("patch %s does not exist\n") % patch)
604 return (1, None)
604 return (1, None)
605 pushable, reason = self.pushable(patch)
605 pushable, reason = self.pushable(patch)
606 if not pushable:
606 if not pushable:
607 self.explainpushable(patch, all_patches=True)
607 self.explainpushable(patch, all_patches=True)
608 continue
608 continue
609 info = mergeq.isapplied(patch)
609 info = mergeq.isapplied(patch)
610 if not info:
610 if not info:
611 self.ui.warn(_("patch %s is not applied\n") % patch)
611 self.ui.warn(_("patch %s is not applied\n") % patch)
612 return (1, None)
612 return (1, None)
613 rev = info[1]
613 rev = info[1]
614 err, head = self.mergeone(repo, mergeq, head, patch, rev, diffopts)
614 err, head = self.mergeone(repo, mergeq, head, patch, rev, diffopts)
615 if head:
615 if head:
616 self.applied.append(statusentry(head, patch))
616 self.applied.append(statusentry(head, patch))
617 self.applieddirty = 1
617 self.applieddirty = 1
618 if err:
618 if err:
619 return (err, head)
619 return (err, head)
620 self.savedirty()
620 self.savedirty()
621 return (0, head)
621 return (0, head)
622
622
623 def patch(self, repo, patchfile):
623 def patch(self, repo, patchfile):
624 '''Apply patchfile to the working directory.
624 '''Apply patchfile to the working directory.
625 patchfile: name of patch file'''
625 patchfile: name of patch file'''
626 files = set()
626 files = set()
627 try:
627 try:
628 fuzz = patchmod.patch(self.ui, repo, patchfile, strip=1,
628 fuzz = patchmod.patch(self.ui, repo, patchfile, strip=1,
629 files=files, eolmode=None)
629 files=files, eolmode=None)
630 return (True, list(files), fuzz)
630 return (True, list(files), fuzz)
631 except Exception, inst:
631 except Exception, inst:
632 self.ui.note(str(inst) + '\n')
632 self.ui.note(str(inst) + '\n')
633 if not self.ui.verbose:
633 if not self.ui.verbose:
634 self.ui.warn(_("patch failed, unable to continue (try -v)\n"))
634 self.ui.warn(_("patch failed, unable to continue (try -v)\n"))
635 self.ui.traceback()
635 self.ui.traceback()
636 return (False, list(files), False)
636 return (False, list(files), False)
637
637
638 def apply(self, repo, series, list=False, update_status=True,
638 def apply(self, repo, series, list=False, update_status=True,
639 strict=False, patchdir=None, merge=None, all_files=None):
639 strict=False, patchdir=None, merge=None, all_files=None):
640 wlock = lock = tr = None
640 wlock = lock = tr = None
641 try:
641 try:
642 wlock = repo.wlock()
642 wlock = repo.wlock()
643 lock = repo.lock()
643 lock = repo.lock()
644 tr = repo.transaction("qpush")
644 tr = repo.transaction("qpush")
645 try:
645 try:
646 ret = self._apply(repo, series, list, update_status,
646 ret = self._apply(repo, series, list, update_status,
647 strict, patchdir, merge, all_files=all_files)
647 strict, patchdir, merge, all_files=all_files)
648 tr.close()
648 tr.close()
649 self.savedirty()
649 self.savedirty()
650 return ret
650 return ret
651 except:
651 except:
652 try:
652 try:
653 tr.abort()
653 tr.abort()
654 finally:
654 finally:
655 repo.invalidate()
655 repo.invalidate()
656 repo.dirstate.invalidate()
656 repo.dirstate.invalidate()
657 raise
657 raise
658 finally:
658 finally:
659 release(tr, lock, wlock)
659 release(tr, lock, wlock)
660 self.removeundo(repo)
660 self.removeundo(repo)
661
661
662 def _apply(self, repo, series, list=False, update_status=True,
662 def _apply(self, repo, series, list=False, update_status=True,
663 strict=False, patchdir=None, merge=None, all_files=None):
663 strict=False, patchdir=None, merge=None, all_files=None):
664 '''returns (error, hash)
664 '''returns (error, hash)
665 error = 1 for unable to read, 2 for patch failed, 3 for patch fuzz'''
665 error = 1 for unable to read, 2 for patch failed, 3 for patch fuzz'''
666 # TODO unify with commands.py
666 # TODO unify with commands.py
667 if not patchdir:
667 if not patchdir:
668 patchdir = self.path
668 patchdir = self.path
669 err = 0
669 err = 0
670 n = None
670 n = None
671 for patchname in series:
671 for patchname in series:
672 pushable, reason = self.pushable(patchname)
672 pushable, reason = self.pushable(patchname)
673 if not pushable:
673 if not pushable:
674 self.explainpushable(patchname, all_patches=True)
674 self.explainpushable(patchname, all_patches=True)
675 continue
675 continue
676 self.ui.status(_("applying %s\n") % patchname)
676 self.ui.status(_("applying %s\n") % patchname)
677 pf = os.path.join(patchdir, patchname)
677 pf = os.path.join(patchdir, patchname)
678
678
679 try:
679 try:
680 ph = patchheader(self.join(patchname), self.plainmode)
680 ph = patchheader(self.join(patchname), self.plainmode)
681 except IOError:
681 except IOError:
682 self.ui.warn(_("unable to read %s\n") % patchname)
682 self.ui.warn(_("unable to read %s\n") % patchname)
683 err = 1
683 err = 1
684 break
684 break
685
685
686 message = ph.message
686 message = ph.message
687 if not message:
687 if not message:
688 # The commit message should not be translated
688 # The commit message should not be translated
689 message = "imported patch %s\n" % patchname
689 message = "imported patch %s\n" % patchname
690 else:
690 else:
691 if list:
691 if list:
692 # The commit message should not be translated
692 # The commit message should not be translated
693 message.append("\nimported patch %s" % patchname)
693 message.append("\nimported patch %s" % patchname)
694 message = '\n'.join(message)
694 message = '\n'.join(message)
695
695
696 if ph.haspatch:
696 if ph.haspatch:
697 (patcherr, files, fuzz) = self.patch(repo, pf)
697 (patcherr, files, fuzz) = self.patch(repo, pf)
698 if all_files is not None:
698 if all_files is not None:
699 all_files.update(files)
699 all_files.update(files)
700 patcherr = not patcherr
700 patcherr = not patcherr
701 else:
701 else:
702 self.ui.warn(_("patch %s is empty\n") % patchname)
702 self.ui.warn(_("patch %s is empty\n") % patchname)
703 patcherr, files, fuzz = 0, [], 0
703 patcherr, files, fuzz = 0, [], 0
704
704
705 if merge and files:
705 if merge and files:
706 # Mark as removed/merged and update dirstate parent info
706 # Mark as removed/merged and update dirstate parent info
707 removed = []
707 removed = []
708 merged = []
708 merged = []
709 for f in files:
709 for f in files:
710 if os.path.lexists(repo.wjoin(f)):
710 if os.path.lexists(repo.wjoin(f)):
711 merged.append(f)
711 merged.append(f)
712 else:
712 else:
713 removed.append(f)
713 removed.append(f)
714 for f in removed:
714 for f in removed:
715 repo.dirstate.remove(f)
715 repo.dirstate.remove(f)
716 for f in merged:
716 for f in merged:
717 repo.dirstate.merge(f)
717 repo.dirstate.merge(f)
718 p1, p2 = repo.dirstate.parents()
718 p1, p2 = repo.dirstate.parents()
719 repo.dirstate.setparents(p1, merge)
719 repo.dirstate.setparents(p1, merge)
720
720
721 match = scmutil.matchfiles(repo, files or [])
721 match = scmutil.matchfiles(repo, files or [])
722 n = repo.commit(message, ph.user, ph.date, match=match, force=True)
722 n = repo.commit(message, ph.user, ph.date, match=match, force=True)
723
723
724 if n is None:
724 if n is None:
725 raise util.Abort(_("repository commit failed"))
725 raise util.Abort(_("repository commit failed"))
726
726
727 if update_status:
727 if update_status:
728 self.applied.append(statusentry(n, patchname))
728 self.applied.append(statusentry(n, patchname))
729
729
730 if patcherr:
730 if patcherr:
731 self.ui.warn(_("patch failed, rejects left in working dir\n"))
731 self.ui.warn(_("patch failed, rejects left in working dir\n"))
732 err = 2
732 err = 2
733 break
733 break
734
734
735 if fuzz and strict:
735 if fuzz and strict:
736 self.ui.warn(_("fuzz found when applying patch, stopping\n"))
736 self.ui.warn(_("fuzz found when applying patch, stopping\n"))
737 err = 3
737 err = 3
738 break
738 break
739 return (err, n)
739 return (err, n)
740
740
741 def _cleanup(self, patches, numrevs, keep=False):
741 def _cleanup(self, patches, numrevs, keep=False):
742 if not keep:
742 if not keep:
743 r = self.qrepo()
743 r = self.qrepo()
744 if r:
744 if r:
745 r[None].forget(patches)
745 r[None].forget(patches)
746 for p in patches:
746 for p in patches:
747 os.unlink(self.join(p))
747 os.unlink(self.join(p))
748
748
749 if numrevs:
749 if numrevs:
750 qfinished = self.applied[:numrevs]
750 qfinished = self.applied[:numrevs]
751 del self.applied[:numrevs]
751 del self.applied[:numrevs]
752 self.applieddirty = 1
752 self.applieddirty = 1
753
753
754 unknown = []
754 unknown = []
755
755
756 for (i, p) in sorted([(self.findseries(p), p) for p in patches],
756 for (i, p) in sorted([(self.findseries(p), p) for p in patches],
757 reverse=True):
757 reverse=True):
758 if i is not None:
758 if i is not None:
759 del self.fullseries[i]
759 del self.fullseries[i]
760 else:
760 else:
761 unknown.append(p)
761 unknown.append(p)
762
762
763 if unknown:
763 if unknown:
764 if numrevs:
764 if numrevs:
765 rev = dict((entry.name, entry.node) for entry in qfinished)
765 rev = dict((entry.name, entry.node) for entry in qfinished)
766 for p in unknown:
766 for p in unknown:
767 msg = _('revision %s refers to unknown patches: %s\n')
767 msg = _('revision %s refers to unknown patches: %s\n')
768 self.ui.warn(msg % (short(rev[p]), p))
768 self.ui.warn(msg % (short(rev[p]), p))
769 else:
769 else:
770 msg = _('unknown patches: %s\n')
770 msg = _('unknown patches: %s\n')
771 raise util.Abort(''.join(msg % p for p in unknown))
771 raise util.Abort(''.join(msg % p for p in unknown))
772
772
773 self.parseseries()
773 self.parseseries()
774 self.seriesdirty = 1
774 self.seriesdirty = 1
775
775
776 def _revpatches(self, repo, revs):
776 def _revpatches(self, repo, revs):
777 firstrev = repo[self.applied[0].node].rev()
777 firstrev = repo[self.applied[0].node].rev()
778 patches = []
778 patches = []
779 for i, rev in enumerate(revs):
779 for i, rev in enumerate(revs):
780
780
781 if rev < firstrev:
781 if rev < firstrev:
782 raise util.Abort(_('revision %d is not managed') % rev)
782 raise util.Abort(_('revision %d is not managed') % rev)
783
783
784 ctx = repo[rev]
784 ctx = repo[rev]
785 base = self.applied[i].node
785 base = self.applied[i].node
786 if ctx.node() != base:
786 if ctx.node() != base:
787 msg = _('cannot delete revision %d above applied patches')
787 msg = _('cannot delete revision %d above applied patches')
788 raise util.Abort(msg % rev)
788 raise util.Abort(msg % rev)
789
789
790 patch = self.applied[i].name
790 patch = self.applied[i].name
791 for fmt in ('[mq]: %s', 'imported patch %s'):
791 for fmt in ('[mq]: %s', 'imported patch %s'):
792 if ctx.description() == fmt % patch:
792 if ctx.description() == fmt % patch:
793 msg = _('patch %s finalized without changeset message\n')
793 msg = _('patch %s finalized without changeset message\n')
794 repo.ui.status(msg % patch)
794 repo.ui.status(msg % patch)
795 break
795 break
796
796
797 patches.append(patch)
797 patches.append(patch)
798 return patches
798 return patches
799
799
800 def finish(self, repo, revs):
800 def finish(self, repo, revs):
801 patches = self._revpatches(repo, sorted(revs))
801 patches = self._revpatches(repo, sorted(revs))
802 self._cleanup(patches, len(patches))
802 self._cleanup(patches, len(patches))
803
803
804 def delete(self, repo, patches, opts):
804 def delete(self, repo, patches, opts):
805 if not patches and not opts.get('rev'):
805 if not patches and not opts.get('rev'):
806 raise util.Abort(_('qdelete requires at least one revision or '
806 raise util.Abort(_('qdelete requires at least one revision or '
807 'patch name'))
807 'patch name'))
808
808
809 realpatches = []
809 realpatches = []
810 for patch in patches:
810 for patch in patches:
811 patch = self.lookup(patch, strict=True)
811 patch = self.lookup(patch, strict=True)
812 info = self.isapplied(patch)
812 info = self.isapplied(patch)
813 if info:
813 if info:
814 raise util.Abort(_("cannot delete applied patch %s") % patch)
814 raise util.Abort(_("cannot delete applied patch %s") % patch)
815 if patch not in self.series:
815 if patch not in self.series:
816 raise util.Abort(_("patch %s not in series file") % patch)
816 raise util.Abort(_("patch %s not in series file") % patch)
817 if patch not in realpatches:
817 if patch not in realpatches:
818 realpatches.append(patch)
818 realpatches.append(patch)
819
819
820 numrevs = 0
820 numrevs = 0
821 if opts.get('rev'):
821 if opts.get('rev'):
822 if not self.applied:
822 if not self.applied:
823 raise util.Abort(_('no patches applied'))
823 raise util.Abort(_('no patches applied'))
824 revs = scmutil.revrange(repo, opts.get('rev'))
824 revs = scmutil.revrange(repo, opts.get('rev'))
825 if len(revs) > 1 and revs[0] > revs[1]:
825 if len(revs) > 1 and revs[0] > revs[1]:
826 revs.reverse()
826 revs.reverse()
827 revpatches = self._revpatches(repo, revs)
827 revpatches = self._revpatches(repo, revs)
828 realpatches += revpatches
828 realpatches += revpatches
829 numrevs = len(revpatches)
829 numrevs = len(revpatches)
830
830
831 self._cleanup(realpatches, numrevs, opts.get('keep'))
831 self._cleanup(realpatches, numrevs, opts.get('keep'))
832
832
833 def checktoppatch(self, repo):
833 def checktoppatch(self, repo):
834 if self.applied:
834 if self.applied:
835 top = self.applied[-1].node
835 top = self.applied[-1].node
836 patch = self.applied[-1].name
836 patch = self.applied[-1].name
837 pp = repo.dirstate.parents()
837 pp = repo.dirstate.parents()
838 if top not in pp:
838 if top not in pp:
839 raise util.Abort(_("working directory revision is not qtip"))
839 raise util.Abort(_("working directory revision is not qtip"))
840 return top, patch
840 return top, patch
841 return None, None
841 return None, None
842
842
843 def checksubstate(self, repo):
843 def checksubstate(self, repo):
844 '''return list of subrepos at a different revision than substate.
844 '''return list of subrepos at a different revision than substate.
845 Abort if any subrepos have uncommitted changes.'''
845 Abort if any subrepos have uncommitted changes.'''
846 inclsubs = []
846 inclsubs = []
847 wctx = repo[None]
847 wctx = repo[None]
848 for s in wctx.substate:
848 for s in wctx.substate:
849 if wctx.sub(s).dirty(True):
849 if wctx.sub(s).dirty(True):
850 raise util.Abort(
850 raise util.Abort(
851 _("uncommitted changes in subrepository %s") % s)
851 _("uncommitted changes in subrepository %s") % s)
852 elif wctx.sub(s).dirty():
852 elif wctx.sub(s).dirty():
853 inclsubs.append(s)
853 inclsubs.append(s)
854 return inclsubs
854 return inclsubs
855
855
856 def localchangesfound(self, refresh=True):
856 def localchangesfound(self, refresh=True):
857 if refresh:
857 if refresh:
858 raise util.Abort(_("local changes found, refresh first"))
858 raise util.Abort(_("local changes found, refresh first"))
859 else:
859 else:
860 raise util.Abort(_("local changes found"))
860 raise util.Abort(_("local changes found"))
861
861
862 def checklocalchanges(self, repo, force=False, refresh=True):
862 def checklocalchanges(self, repo, force=False, refresh=True):
863 m, a, r, d = repo.status()[:4]
863 m, a, r, d = repo.status()[:4]
864 if (m or a or r or d) and not force:
864 if (m or a or r or d) and not force:
865 self.localchangesfound(refresh)
865 self.localchangesfound(refresh)
866 return m, a, r, d
866 return m, a, r, d
867
867
868 _reserved = ('series', 'status', 'guards', '.', '..')
868 _reserved = ('series', 'status', 'guards', '.', '..')
869 def checkreservedname(self, name):
869 def checkreservedname(self, name):
870 if name in self._reserved:
870 if name in self._reserved:
871 raise util.Abort(_('"%s" cannot be used as the name of a patch')
871 raise util.Abort(_('"%s" cannot be used as the name of a patch')
872 % name)
872 % name)
873 for prefix in ('.hg', '.mq'):
873 for prefix in ('.hg', '.mq'):
874 if name.startswith(prefix):
874 if name.startswith(prefix):
875 raise util.Abort(_('patch name cannot begin with "%s"')
875 raise util.Abort(_('patch name cannot begin with "%s"')
876 % prefix)
876 % prefix)
877 for c in ('#', ':'):
877 for c in ('#', ':'):
878 if c in name:
878 if c in name:
879 raise util.Abort(_('"%s" cannot be used in the name of a patch')
879 raise util.Abort(_('"%s" cannot be used in the name of a patch')
880 % c)
880 % c)
881
881
882 def checkpatchname(self, name, force=False):
882 def checkpatchname(self, name, force=False):
883 self.checkreservedname(name)
883 self.checkreservedname(name)
884 if not force and os.path.exists(self.join(name)):
884 if not force and os.path.exists(self.join(name)):
885 if os.path.isdir(self.join(name)):
885 if os.path.isdir(self.join(name)):
886 raise util.Abort(_('"%s" already exists as a directory')
886 raise util.Abort(_('"%s" already exists as a directory')
887 % name)
887 % name)
888 else:
888 else:
889 raise util.Abort(_('patch "%s" already exists') % name)
889 raise util.Abort(_('patch "%s" already exists') % name)
890
890
891 def new(self, repo, patchfn, *pats, **opts):
891 def new(self, repo, patchfn, *pats, **opts):
892 """options:
892 """options:
893 msg: a string or a no-argument function returning a string
893 msg: a string or a no-argument function returning a string
894 """
894 """
895 msg = opts.get('msg')
895 msg = opts.get('msg')
896 user = opts.get('user')
896 user = opts.get('user')
897 date = opts.get('date')
897 date = opts.get('date')
898 if date:
898 if date:
899 date = util.parsedate(date)
899 date = util.parsedate(date)
900 diffopts = self.diffopts({'git': opts.get('git')})
900 diffopts = self.diffopts({'git': opts.get('git')})
901 if opts.get('checkname', True):
901 if opts.get('checkname', True):
902 self.checkpatchname(patchfn)
902 self.checkpatchname(patchfn)
903 inclsubs = self.checksubstate(repo)
903 inclsubs = self.checksubstate(repo)
904 if inclsubs:
904 if inclsubs:
905 inclsubs.append('.hgsubstate')
905 inclsubs.append('.hgsubstate')
906 if opts.get('include') or opts.get('exclude') or pats:
906 if opts.get('include') or opts.get('exclude') or pats:
907 if inclsubs:
907 if inclsubs:
908 pats = list(pats or []) + inclsubs
908 pats = list(pats or []) + inclsubs
909 match = scmutil.match(repo[None], pats, opts)
909 match = scmutil.match(repo[None], pats, opts)
910 # detect missing files in pats
910 # detect missing files in pats
911 def badfn(f, msg):
911 def badfn(f, msg):
912 if f != '.hgsubstate': # .hgsubstate is auto-created
912 if f != '.hgsubstate': # .hgsubstate is auto-created
913 raise util.Abort('%s: %s' % (f, msg))
913 raise util.Abort('%s: %s' % (f, msg))
914 match.bad = badfn
914 match.bad = badfn
915 m, a, r, d = repo.status(match=match)[:4]
915 m, a, r, d = repo.status(match=match)[:4]
916 else:
916 else:
917 m, a, r, d = self.checklocalchanges(repo, force=True)
917 m, a, r, d = self.checklocalchanges(repo, force=True)
918 match = scmutil.matchfiles(repo, m + a + r + inclsubs)
918 match = scmutil.matchfiles(repo, m + a + r + inclsubs)
919 if len(repo[None].parents()) > 1:
919 if len(repo[None].parents()) > 1:
920 raise util.Abort(_('cannot manage merge changesets'))
920 raise util.Abort(_('cannot manage merge changesets'))
921 commitfiles = m + a + r
921 commitfiles = m + a + r
922 self.checktoppatch(repo)
922 self.checktoppatch(repo)
923 insert = self.fullseriesend()
923 insert = self.fullseriesend()
924 wlock = repo.wlock()
924 wlock = repo.wlock()
925 try:
925 try:
926 try:
926 try:
927 # if patch file write fails, abort early
927 # if patch file write fails, abort early
928 p = self.opener(patchfn, "w")
928 p = self.opener(patchfn, "w")
929 except IOError, e:
929 except IOError, e:
930 raise util.Abort(_('cannot write patch "%s": %s')
930 raise util.Abort(_('cannot write patch "%s": %s')
931 % (patchfn, e.strerror))
931 % (patchfn, e.strerror))
932 try:
932 try:
933 if self.plainmode:
933 if self.plainmode:
934 if user:
934 if user:
935 p.write("From: " + user + "\n")
935 p.write("From: " + user + "\n")
936 if not date:
936 if not date:
937 p.write("\n")
937 p.write("\n")
938 if date:
938 if date:
939 p.write("Date: %d %d\n\n" % date)
939 p.write("Date: %d %d\n\n" % date)
940 else:
940 else:
941 p.write("# HG changeset patch\n")
941 p.write("# HG changeset patch\n")
942 p.write("# Parent "
942 p.write("# Parent "
943 + hex(repo[None].p1().node()) + "\n")
943 + hex(repo[None].p1().node()) + "\n")
944 if user:
944 if user:
945 p.write("# User " + user + "\n")
945 p.write("# User " + user + "\n")
946 if date:
946 if date:
947 p.write("# Date %s %s\n\n" % date)
947 p.write("# Date %s %s\n\n" % date)
948 if util.safehasattr(msg, '__call__'):
948 if util.safehasattr(msg, '__call__'):
949 msg = msg()
949 msg = msg()
950 commitmsg = msg and msg or ("[mq]: %s" % patchfn)
950 commitmsg = msg and msg or ("[mq]: %s" % patchfn)
951 n = repo.commit(commitmsg, user, date, match=match, force=True)
951 n = repo.commit(commitmsg, user, date, match=match, force=True)
952 if n is None:
952 if n is None:
953 raise util.Abort(_("repo commit failed"))
953 raise util.Abort(_("repo commit failed"))
954 try:
954 try:
955 self.fullseries[insert:insert] = [patchfn]
955 self.fullseries[insert:insert] = [patchfn]
956 self.applied.append(statusentry(n, patchfn))
956 self.applied.append(statusentry(n, patchfn))
957 self.parseseries()
957 self.parseseries()
958 self.seriesdirty = 1
958 self.seriesdirty = 1
959 self.applieddirty = 1
959 self.applieddirty = 1
960 if msg:
960 if msg:
961 msg = msg + "\n\n"
961 msg = msg + "\n\n"
962 p.write(msg)
962 p.write(msg)
963 if commitfiles:
963 if commitfiles:
964 parent = self.qparents(repo, n)
964 parent = self.qparents(repo, n)
965 chunks = patchmod.diff(repo, node1=parent, node2=n,
965 chunks = patchmod.diff(repo, node1=parent, node2=n,
966 match=match, opts=diffopts)
966 match=match, opts=diffopts)
967 for chunk in chunks:
967 for chunk in chunks:
968 p.write(chunk)
968 p.write(chunk)
969 p.close()
969 p.close()
970 wlock.release()
970 wlock.release()
971 wlock = None
971 wlock = None
972 r = self.qrepo()
972 r = self.qrepo()
973 if r:
973 if r:
974 r[None].add([patchfn])
974 r[None].add([patchfn])
975 except:
975 except:
976 repo.rollback()
976 repo.rollback()
977 raise
977 raise
978 except Exception:
978 except Exception:
979 patchpath = self.join(patchfn)
979 patchpath = self.join(patchfn)
980 try:
980 try:
981 os.unlink(patchpath)
981 os.unlink(patchpath)
982 except:
982 except:
983 self.ui.warn(_('error unlinking %s\n') % patchpath)
983 self.ui.warn(_('error unlinking %s\n') % patchpath)
984 raise
984 raise
985 self.removeundo(repo)
985 self.removeundo(repo)
986 finally:
986 finally:
987 release(wlock)
987 release(wlock)
988
988
989 def strip(self, repo, revs, update=True, backup="all", force=None):
989 def strip(self, repo, revs, update=True, backup="all", force=None):
990 wlock = lock = None
990 wlock = lock = None
991 try:
991 try:
992 wlock = repo.wlock()
992 wlock = repo.wlock()
993 lock = repo.lock()
993 lock = repo.lock()
994
994
995 if update:
995 if update:
996 self.checklocalchanges(repo, force=force, refresh=False)
996 self.checklocalchanges(repo, force=force, refresh=False)
997 urev = self.qparents(repo, revs[0])
997 urev = self.qparents(repo, revs[0])
998 hg.clean(repo, urev)
998 hg.clean(repo, urev)
999 repo.dirstate.write()
999 repo.dirstate.write()
1000
1000
1001 self.removeundo(repo)
1001 self.removeundo(repo)
1002 for rev in revs:
1002 for rev in revs:
1003 repair.strip(self.ui, repo, rev, backup)
1003 repair.strip(self.ui, repo, rev, backup)
1004 # strip may have unbundled a set of backed up revisions after
1004 # strip may have unbundled a set of backed up revisions after
1005 # the actual strip
1005 # the actual strip
1006 self.removeundo(repo)
1006 self.removeundo(repo)
1007 finally:
1007 finally:
1008 release(lock, wlock)
1008 release(lock, wlock)
1009
1009
1010 def isapplied(self, patch):
1010 def isapplied(self, patch):
1011 """returns (index, rev, patch)"""
1011 """returns (index, rev, patch)"""
1012 for i, a in enumerate(self.applied):
1012 for i, a in enumerate(self.applied):
1013 if a.name == patch:
1013 if a.name == patch:
1014 return (i, a.node, a.name)
1014 return (i, a.node, a.name)
1015 return None
1015 return None
1016
1016
1017 # if the exact patch name does not exist, we try a few
1017 # if the exact patch name does not exist, we try a few
1018 # variations. If strict is passed, we try only #1
1018 # variations. If strict is passed, we try only #1
1019 #
1019 #
1020 # 1) a number (as string) to indicate an offset in the series file
1020 # 1) a number (as string) to indicate an offset in the series file
1021 # 2) a unique substring of the patch name was given
1021 # 2) a unique substring of the patch name was given
1022 # 3) patchname[-+]num to indicate an offset in the series file
1022 # 3) patchname[-+]num to indicate an offset in the series file
1023 def lookup(self, patch, strict=False):
1023 def lookup(self, patch, strict=False):
1024 def partialname(s):
1024 def partialname(s):
1025 if s in self.series:
1025 if s in self.series:
1026 return s
1026 return s
1027 matches = [x for x in self.series if s in x]
1027 matches = [x for x in self.series if s in x]
1028 if len(matches) > 1:
1028 if len(matches) > 1:
1029 self.ui.warn(_('patch name "%s" is ambiguous:\n') % s)
1029 self.ui.warn(_('patch name "%s" is ambiguous:\n') % s)
1030 for m in matches:
1030 for m in matches:
1031 self.ui.warn(' %s\n' % m)
1031 self.ui.warn(' %s\n' % m)
1032 return None
1032 return None
1033 if matches:
1033 if matches:
1034 return matches[0]
1034 return matches[0]
1035 if self.series and self.applied:
1035 if self.series and self.applied:
1036 if s == 'qtip':
1036 if s == 'qtip':
1037 return self.series[self.seriesend(True)-1]
1037 return self.series[self.seriesend(True)-1]
1038 if s == 'qbase':
1038 if s == 'qbase':
1039 return self.series[0]
1039 return self.series[0]
1040 return None
1040 return None
1041
1041
1042 if patch in self.series:
1042 if patch in self.series:
1043 return patch
1043 return patch
1044
1044
1045 if not os.path.isfile(self.join(patch)):
1045 if not os.path.isfile(self.join(patch)):
1046 try:
1046 try:
1047 sno = int(patch)
1047 sno = int(patch)
1048 except (ValueError, OverflowError):
1048 except (ValueError, OverflowError):
1049 pass
1049 pass
1050 else:
1050 else:
1051 if -len(self.series) <= sno < len(self.series):
1051 if -len(self.series) <= sno < len(self.series):
1052 return self.series[sno]
1052 return self.series[sno]
1053
1053
1054 if not strict:
1054 if not strict:
1055 res = partialname(patch)
1055 res = partialname(patch)
1056 if res:
1056 if res:
1057 return res
1057 return res
1058 minus = patch.rfind('-')
1058 minus = patch.rfind('-')
1059 if minus >= 0:
1059 if minus >= 0:
1060 res = partialname(patch[:minus])
1060 res = partialname(patch[:minus])
1061 if res:
1061 if res:
1062 i = self.series.index(res)
1062 i = self.series.index(res)
1063 try:
1063 try:
1064 off = int(patch[minus + 1:] or 1)
1064 off = int(patch[minus + 1:] or 1)
1065 except (ValueError, OverflowError):
1065 except (ValueError, OverflowError):
1066 pass
1066 pass
1067 else:
1067 else:
1068 if i - off >= 0:
1068 if i - off >= 0:
1069 return self.series[i - off]
1069 return self.series[i - off]
1070 plus = patch.rfind('+')
1070 plus = patch.rfind('+')
1071 if plus >= 0:
1071 if plus >= 0:
1072 res = partialname(patch[:plus])
1072 res = partialname(patch[:plus])
1073 if res:
1073 if res:
1074 i = self.series.index(res)
1074 i = self.series.index(res)
1075 try:
1075 try:
1076 off = int(patch[plus + 1:] or 1)
1076 off = int(patch[plus + 1:] or 1)
1077 except (ValueError, OverflowError):
1077 except (ValueError, OverflowError):
1078 pass
1078 pass
1079 else:
1079 else:
1080 if i + off < len(self.series):
1080 if i + off < len(self.series):
1081 return self.series[i + off]
1081 return self.series[i + off]
1082 raise util.Abort(_("patch %s not in series") % patch)
1082 raise util.Abort(_("patch %s not in series") % patch)
1083
1083
1084 def push(self, repo, patch=None, force=False, list=False,
1084 def push(self, repo, patch=None, force=False, list=False,
1085 mergeq=None, all=False, move=False, exact=False):
1085 mergeq=None, all=False, move=False, exact=False):
1086 diffopts = self.diffopts()
1086 diffopts = self.diffopts()
1087 wlock = repo.wlock()
1087 wlock = repo.wlock()
1088 try:
1088 try:
1089 heads = []
1089 heads = []
1090 for b, ls in repo.branchmap().iteritems():
1090 for b, ls in repo.branchmap().iteritems():
1091 heads += ls
1091 heads += ls
1092 if not heads:
1092 if not heads:
1093 heads = [nullid]
1093 heads = [nullid]
1094 if repo.dirstate.p1() not in heads and not exact:
1094 if repo.dirstate.p1() not in heads and not exact:
1095 self.ui.status(_("(working directory not at a head)\n"))
1095 self.ui.status(_("(working directory not at a head)\n"))
1096
1096
1097 if not self.series:
1097 if not self.series:
1098 self.ui.warn(_('no patches in series\n'))
1098 self.ui.warn(_('no patches in series\n'))
1099 return 0
1099 return 0
1100
1100
1101 # Suppose our series file is: A B C and the current 'top'
1101 # Suppose our series file is: A B C and the current 'top'
1102 # patch is B. qpush C should be performed (moving forward)
1102 # patch is B. qpush C should be performed (moving forward)
1103 # qpush B is a NOP (no change) qpush A is an error (can't
1103 # qpush B is a NOP (no change) qpush A is an error (can't
1104 # go backwards with qpush)
1104 # go backwards with qpush)
1105 if patch:
1105 if patch:
1106 patch = self.lookup(patch)
1106 patch = self.lookup(patch)
1107 info = self.isapplied(patch)
1107 info = self.isapplied(patch)
1108 if info and info[0] >= len(self.applied) - 1:
1108 if info and info[0] >= len(self.applied) - 1:
1109 self.ui.warn(
1109 self.ui.warn(
1110 _('qpush: %s is already at the top\n') % patch)
1110 _('qpush: %s is already at the top\n') % patch)
1111 return 0
1111 return 0
1112
1112
1113 pushable, reason = self.pushable(patch)
1113 pushable, reason = self.pushable(patch)
1114 if pushable:
1114 if pushable:
1115 if self.series.index(patch) < self.seriesend():
1115 if self.series.index(patch) < self.seriesend():
1116 raise util.Abort(
1116 raise util.Abort(
1117 _("cannot push to a previous patch: %s") % patch)
1117 _("cannot push to a previous patch: %s") % patch)
1118 else:
1118 else:
1119 if reason:
1119 if reason:
1120 reason = _('guarded by %s') % reason
1120 reason = _('guarded by %s') % reason
1121 else:
1121 else:
1122 reason = _('no matching guards')
1122 reason = _('no matching guards')
1123 self.ui.warn(_("cannot push '%s' - %s\n") % (patch, reason))
1123 self.ui.warn(_("cannot push '%s' - %s\n") % (patch, reason))
1124 return 1
1124 return 1
1125 elif all:
1125 elif all:
1126 patch = self.series[-1]
1126 patch = self.series[-1]
1127 if self.isapplied(patch):
1127 if self.isapplied(patch):
1128 self.ui.warn(_('all patches are currently applied\n'))
1128 self.ui.warn(_('all patches are currently applied\n'))
1129 return 0
1129 return 0
1130
1130
1131 # Following the above example, starting at 'top' of B:
1131 # Following the above example, starting at 'top' of B:
1132 # qpush should be performed (pushes C), but a subsequent
1132 # qpush should be performed (pushes C), but a subsequent
1133 # qpush without an argument is an error (nothing to
1133 # qpush without an argument is an error (nothing to
1134 # apply). This allows a loop of "...while hg qpush..." to
1134 # apply). This allows a loop of "...while hg qpush..." to
1135 # work as it detects an error when done
1135 # work as it detects an error when done
1136 start = self.seriesend()
1136 start = self.seriesend()
1137 if start == len(self.series):
1137 if start == len(self.series):
1138 self.ui.warn(_('patch series already fully applied\n'))
1138 self.ui.warn(_('patch series already fully applied\n'))
1139 return 1
1139 return 1
1140 if not force:
1140 if not force:
1141 self.checklocalchanges(repo, refresh=self.applied)
1141 self.checklocalchanges(repo, refresh=self.applied)
1142
1142
1143 if exact:
1143 if exact:
1144 if move:
1144 if move:
1145 raise util.Abort(_("cannot use --exact and --move together"))
1145 raise util.Abort(_("cannot use --exact and --move together"))
1146 if self.applied:
1146 if self.applied:
1147 raise util.Abort(_("cannot push --exact with applied patches"))
1147 raise util.Abort(_("cannot push --exact with applied patches"))
1148 root = self.series[start]
1148 root = self.series[start]
1149 target = patchheader(self.join(root), self.plainmode).parent
1149 target = patchheader(self.join(root), self.plainmode).parent
1150 if not target:
1150 if not target:
1151 raise util.Abort(_("%s does not have a parent recorded" % root))
1151 raise util.Abort(_("%s does not have a parent recorded" % root))
1152 if not repo[target] == repo['.']:
1152 if not repo[target] == repo['.']:
1153 hg.update(repo, target)
1153 hg.update(repo, target)
1154
1154
1155 if move:
1155 if move:
1156 if not patch:
1156 if not patch:
1157 raise util.Abort(_("please specify the patch to move"))
1157 raise util.Abort(_("please specify the patch to move"))
1158 for i, rpn in enumerate(self.fullseries[start:]):
1158 for i, rpn in enumerate(self.fullseries[start:]):
1159 # strip markers for patch guards
1159 # strip markers for patch guards
1160 if self.guard_re.split(rpn, 1)[0] == patch:
1160 if self.guard_re.split(rpn, 1)[0] == patch:
1161 break
1161 break
1162 index = start + i
1162 index = start + i
1163 assert index < len(self.fullseries)
1163 assert index < len(self.fullseries)
1164 fullpatch = self.fullseries[index]
1164 fullpatch = self.fullseries[index]
1165 del self.fullseries[index]
1165 del self.fullseries[index]
1166 self.fullseries.insert(start, fullpatch)
1166 self.fullseries.insert(start, fullpatch)
1167 self.parseseries()
1167 self.parseseries()
1168 self.seriesdirty = 1
1168 self.seriesdirty = 1
1169
1169
1170 self.applieddirty = 1
1170 self.applieddirty = 1
1171 if start > 0:
1171 if start > 0:
1172 self.checktoppatch(repo)
1172 self.checktoppatch(repo)
1173 if not patch:
1173 if not patch:
1174 patch = self.series[start]
1174 patch = self.series[start]
1175 end = start + 1
1175 end = start + 1
1176 else:
1176 else:
1177 end = self.series.index(patch, start) + 1
1177 end = self.series.index(patch, start) + 1
1178
1178
1179 s = self.series[start:end]
1179 s = self.series[start:end]
1180 all_files = set()
1180 all_files = set()
1181 try:
1181 try:
1182 if mergeq:
1182 if mergeq:
1183 ret = self.mergepatch(repo, mergeq, s, diffopts)
1183 ret = self.mergepatch(repo, mergeq, s, diffopts)
1184 else:
1184 else:
1185 ret = self.apply(repo, s, list, all_files=all_files)
1185 ret = self.apply(repo, s, list, all_files=all_files)
1186 except:
1186 except:
1187 self.ui.warn(_('cleaning up working directory...'))
1187 self.ui.warn(_('cleaning up working directory...'))
1188 node = repo.dirstate.p1()
1188 node = repo.dirstate.p1()
1189 hg.revert(repo, node, None)
1189 hg.revert(repo, node, None)
1190 # only remove unknown files that we know we touched or
1190 # only remove unknown files that we know we touched or
1191 # created while patching
1191 # created while patching
1192 for f in all_files:
1192 for f in all_files:
1193 if f not in repo.dirstate:
1193 if f not in repo.dirstate:
1194 try:
1194 try:
1195 util.unlinkpath(repo.wjoin(f))
1195 util.unlinkpath(repo.wjoin(f))
1196 except OSError, inst:
1196 except OSError, inst:
1197 if inst.errno != errno.ENOENT:
1197 if inst.errno != errno.ENOENT:
1198 raise
1198 raise
1199 self.ui.warn(_('done\n'))
1199 self.ui.warn(_('done\n'))
1200 raise
1200 raise
1201
1201
1202 if not self.applied:
1202 if not self.applied:
1203 return ret[0]
1203 return ret[0]
1204 top = self.applied[-1].name
1204 top = self.applied[-1].name
1205 if ret[0] and ret[0] > 1:
1205 if ret[0] and ret[0] > 1:
1206 msg = _("errors during apply, please fix and refresh %s\n")
1206 msg = _("errors during apply, please fix and refresh %s\n")
1207 self.ui.write(msg % top)
1207 self.ui.write(msg % top)
1208 else:
1208 else:
1209 self.ui.write(_("now at: %s\n") % top)
1209 self.ui.write(_("now at: %s\n") % top)
1210 return ret[0]
1210 return ret[0]
1211
1211
1212 finally:
1212 finally:
1213 wlock.release()
1213 wlock.release()
1214
1214
1215 def pop(self, repo, patch=None, force=False, update=True, all=False):
1215 def pop(self, repo, patch=None, force=False, update=True, all=False):
1216 wlock = repo.wlock()
1216 wlock = repo.wlock()
1217 try:
1217 try:
1218 if patch:
1218 if patch:
1219 # index, rev, patch
1219 # index, rev, patch
1220 info = self.isapplied(patch)
1220 info = self.isapplied(patch)
1221 if not info:
1221 if not info:
1222 patch = self.lookup(patch)
1222 patch = self.lookup(patch)
1223 info = self.isapplied(patch)
1223 info = self.isapplied(patch)
1224 if not info:
1224 if not info:
1225 raise util.Abort(_("patch %s is not applied") % patch)
1225 raise util.Abort(_("patch %s is not applied") % patch)
1226
1226
1227 if not self.applied:
1227 if not self.applied:
1228 # Allow qpop -a to work repeatedly,
1228 # Allow qpop -a to work repeatedly,
1229 # but not qpop without an argument
1229 # but not qpop without an argument
1230 self.ui.warn(_("no patches applied\n"))
1230 self.ui.warn(_("no patches applied\n"))
1231 return not all
1231 return not all
1232
1232
1233 if all:
1233 if all:
1234 start = 0
1234 start = 0
1235 elif patch:
1235 elif patch:
1236 start = info[0] + 1
1236 start = info[0] + 1
1237 else:
1237 else:
1238 start = len(self.applied) - 1
1238 start = len(self.applied) - 1
1239
1239
1240 if start >= len(self.applied):
1240 if start >= len(self.applied):
1241 self.ui.warn(_("qpop: %s is already at the top\n") % patch)
1241 self.ui.warn(_("qpop: %s is already at the top\n") % patch)
1242 return
1242 return
1243
1243
1244 if not update:
1244 if not update:
1245 parents = repo.dirstate.parents()
1245 parents = repo.dirstate.parents()
1246 rr = [x.node for x in self.applied]
1246 rr = [x.node for x in self.applied]
1247 for p in parents:
1247 for p in parents:
1248 if p in rr:
1248 if p in rr:
1249 self.ui.warn(_("qpop: forcing dirstate update\n"))
1249 self.ui.warn(_("qpop: forcing dirstate update\n"))
1250 update = True
1250 update = True
1251 else:
1251 else:
1252 parents = [p.node() for p in repo[None].parents()]
1252 parents = [p.node() for p in repo[None].parents()]
1253 needupdate = False
1253 needupdate = False
1254 for entry in self.applied[start:]:
1254 for entry in self.applied[start:]:
1255 if entry.node in parents:
1255 if entry.node in parents:
1256 needupdate = True
1256 needupdate = True
1257 break
1257 break
1258 update = needupdate
1258 update = needupdate
1259
1259
1260 if not force and update:
1260 if not force and update:
1261 self.checklocalchanges(repo)
1261 self.checklocalchanges(repo)
1262
1262
1263 self.applieddirty = 1
1263 self.applieddirty = 1
1264 end = len(self.applied)
1264 end = len(self.applied)
1265 rev = self.applied[start].node
1265 rev = self.applied[start].node
1266 if update:
1266 if update:
1267 top = self.checktoppatch(repo)[0]
1267 top = self.checktoppatch(repo)[0]
1268
1268
1269 try:
1269 try:
1270 heads = repo.changelog.heads(rev)
1270 heads = repo.changelog.heads(rev)
1271 except error.LookupError:
1271 except error.LookupError:
1272 node = short(rev)
1272 node = short(rev)
1273 raise util.Abort(_('trying to pop unknown node %s') % node)
1273 raise util.Abort(_('trying to pop unknown node %s') % node)
1274
1274
1275 if heads != [self.applied[-1].node]:
1275 if heads != [self.applied[-1].node]:
1276 raise util.Abort(_("popping would remove a revision not "
1276 raise util.Abort(_("popping would remove a revision not "
1277 "managed by this patch queue"))
1277 "managed by this patch queue"))
1278
1278
1279 # we know there are no local changes, so we can make a simplified
1279 # we know there are no local changes, so we can make a simplified
1280 # form of hg.update.
1280 # form of hg.update.
1281 if update:
1281 if update:
1282 qp = self.qparents(repo, rev)
1282 qp = self.qparents(repo, rev)
1283 ctx = repo[qp]
1283 ctx = repo[qp]
1284 m, a, r, d = repo.status(qp, top)[:4]
1284 m, a, r, d = repo.status(qp, top)[:4]
1285 if d:
1285 if d:
1286 raise util.Abort(_("deletions found between repo revs"))
1286 raise util.Abort(_("deletions found between repo revs"))
1287 for f in a:
1287 for f in a:
1288 try:
1288 try:
1289 util.unlinkpath(repo.wjoin(f))
1289 util.unlinkpath(repo.wjoin(f))
1290 except OSError, e:
1290 except OSError, e:
1291 if e.errno != errno.ENOENT:
1291 if e.errno != errno.ENOENT:
1292 raise
1292 raise
1293 repo.dirstate.drop(f)
1293 repo.dirstate.drop(f)
1294 for f in m + r:
1294 for f in m + r:
1295 fctx = ctx[f]
1295 fctx = ctx[f]
1296 repo.wwrite(f, fctx.data(), fctx.flags())
1296 repo.wwrite(f, fctx.data(), fctx.flags())
1297 repo.dirstate.normal(f)
1297 repo.dirstate.normal(f)
1298 repo.dirstate.setparents(qp, nullid)
1298 repo.dirstate.setparents(qp, nullid)
1299 for patch in reversed(self.applied[start:end]):
1299 for patch in reversed(self.applied[start:end]):
1300 self.ui.status(_("popping %s\n") % patch.name)
1300 self.ui.status(_("popping %s\n") % patch.name)
1301 del self.applied[start:end]
1301 del self.applied[start:end]
1302 self.strip(repo, [rev], update=False, backup='strip')
1302 self.strip(repo, [rev], update=False, backup='strip')
1303 if self.applied:
1303 if self.applied:
1304 self.ui.write(_("now at: %s\n") % self.applied[-1].name)
1304 self.ui.write(_("now at: %s\n") % self.applied[-1].name)
1305 else:
1305 else:
1306 self.ui.write(_("patch queue now empty\n"))
1306 self.ui.write(_("patch queue now empty\n"))
1307 finally:
1307 finally:
1308 wlock.release()
1308 wlock.release()
1309
1309
1310 def diff(self, repo, pats, opts):
1310 def diff(self, repo, pats, opts):
1311 top, patch = self.checktoppatch(repo)
1311 top, patch = self.checktoppatch(repo)
1312 if not top:
1312 if not top:
1313 self.ui.write(_("no patches applied\n"))
1313 self.ui.write(_("no patches applied\n"))
1314 return
1314 return
1315 qp = self.qparents(repo, top)
1315 qp = self.qparents(repo, top)
1316 if opts.get('reverse'):
1316 if opts.get('reverse'):
1317 node1, node2 = None, qp
1317 node1, node2 = None, qp
1318 else:
1318 else:
1319 node1, node2 = qp, None
1319 node1, node2 = qp, None
1320 diffopts = self.diffopts(opts, patch)
1320 diffopts = self.diffopts(opts, patch)
1321 self.printdiff(repo, diffopts, node1, node2, files=pats, opts=opts)
1321 self.printdiff(repo, diffopts, node1, node2, files=pats, opts=opts)
1322
1322
1323 def refresh(self, repo, pats=None, **opts):
1323 def refresh(self, repo, pats=None, **opts):
1324 if not self.applied:
1324 if not self.applied:
1325 self.ui.write(_("no patches applied\n"))
1325 self.ui.write(_("no patches applied\n"))
1326 return 1
1326 return 1
1327 msg = opts.get('msg', '').rstrip()
1327 msg = opts.get('msg', '').rstrip()
1328 newuser = opts.get('user')
1328 newuser = opts.get('user')
1329 newdate = opts.get('date')
1329 newdate = opts.get('date')
1330 if newdate:
1330 if newdate:
1331 newdate = '%d %d' % util.parsedate(newdate)
1331 newdate = '%d %d' % util.parsedate(newdate)
1332 wlock = repo.wlock()
1332 wlock = repo.wlock()
1333
1333
1334 try:
1334 try:
1335 self.checktoppatch(repo)
1335 self.checktoppatch(repo)
1336 (top, patchfn) = (self.applied[-1].node, self.applied[-1].name)
1336 (top, patchfn) = (self.applied[-1].node, self.applied[-1].name)
1337 if repo.changelog.heads(top) != [top]:
1337 if repo.changelog.heads(top) != [top]:
1338 raise util.Abort(_("cannot refresh a revision with children"))
1338 raise util.Abort(_("cannot refresh a revision with children"))
1339
1339
1340 inclsubs = self.checksubstate(repo)
1340 inclsubs = self.checksubstate(repo)
1341
1341
1342 cparents = repo.changelog.parents(top)
1342 cparents = repo.changelog.parents(top)
1343 patchparent = self.qparents(repo, top)
1343 patchparent = self.qparents(repo, top)
1344 ph = patchheader(self.join(patchfn), self.plainmode)
1344 ph = patchheader(self.join(patchfn), self.plainmode)
1345 diffopts = self.diffopts({'git': opts.get('git')}, patchfn)
1345 diffopts = self.diffopts({'git': opts.get('git')}, patchfn)
1346 if msg:
1346 if msg:
1347 ph.setmessage(msg)
1347 ph.setmessage(msg)
1348 if newuser:
1348 if newuser:
1349 ph.setuser(newuser)
1349 ph.setuser(newuser)
1350 if newdate:
1350 if newdate:
1351 ph.setdate(newdate)
1351 ph.setdate(newdate)
1352 ph.setparent(hex(patchparent))
1352 ph.setparent(hex(patchparent))
1353
1353
1354 # only commit new patch when write is complete
1354 # only commit new patch when write is complete
1355 patchf = self.opener(patchfn, 'w', atomictemp=True)
1355 patchf = self.opener(patchfn, 'w', atomictemp=True)
1356
1356
1357 comments = str(ph)
1357 comments = str(ph)
1358 if comments:
1358 if comments:
1359 patchf.write(comments)
1359 patchf.write(comments)
1360
1360
1361 # update the dirstate in place, strip off the qtip commit
1361 # update the dirstate in place, strip off the qtip commit
1362 # and then commit.
1362 # and then commit.
1363 #
1363 #
1364 # this should really read:
1364 # this should really read:
1365 # mm, dd, aa = repo.status(top, patchparent)[:3]
1365 # mm, dd, aa = repo.status(top, patchparent)[:3]
1366 # but we do it backwards to take advantage of manifest/chlog
1366 # but we do it backwards to take advantage of manifest/chlog
1367 # caching against the next repo.status call
1367 # caching against the next repo.status call
1368 mm, aa, dd = repo.status(patchparent, top)[:3]
1368 mm, aa, dd = repo.status(patchparent, top)[:3]
1369 changes = repo.changelog.read(top)
1369 changes = repo.changelog.read(top)
1370 man = repo.manifest.read(changes[0])
1370 man = repo.manifest.read(changes[0])
1371 aaa = aa[:]
1371 aaa = aa[:]
1372 matchfn = scmutil.match(repo[None], pats, opts)
1372 matchfn = scmutil.match(repo[None], pats, opts)
1373 # in short mode, we only diff the files included in the
1373 # in short mode, we only diff the files included in the
1374 # patch already plus specified files
1374 # patch already plus specified files
1375 if opts.get('short'):
1375 if opts.get('short'):
1376 # if amending a patch, we start with existing
1376 # if amending a patch, we start with existing
1377 # files plus specified files - unfiltered
1377 # files plus specified files - unfiltered
1378 match = scmutil.matchfiles(repo, mm + aa + dd + matchfn.files())
1378 match = scmutil.matchfiles(repo, mm + aa + dd + matchfn.files())
1379 # filter with inc/exl options
1379 # filter with inc/exl options
1380 matchfn = scmutil.match(repo[None], opts=opts)
1380 matchfn = scmutil.match(repo[None], opts=opts)
1381 else:
1381 else:
1382 match = scmutil.matchall(repo)
1382 match = scmutil.matchall(repo)
1383 m, a, r, d = repo.status(match=match)[:4]
1383 m, a, r, d = repo.status(match=match)[:4]
1384 mm = set(mm)
1384 mm = set(mm)
1385 aa = set(aa)
1385 aa = set(aa)
1386 dd = set(dd)
1386 dd = set(dd)
1387
1387
1388 # we might end up with files that were added between
1388 # we might end up with files that were added between
1389 # qtip and the dirstate parent, but then changed in the
1389 # qtip and the dirstate parent, but then changed in the
1390 # local dirstate. in this case, we want them to only
1390 # local dirstate. in this case, we want them to only
1391 # show up in the added section
1391 # show up in the added section
1392 for x in m:
1392 for x in m:
1393 if x not in aa:
1393 if x not in aa:
1394 mm.add(x)
1394 mm.add(x)
1395 # we might end up with files added by the local dirstate that
1395 # we might end up with files added by the local dirstate that
1396 # were deleted by the patch. In this case, they should only
1396 # were deleted by the patch. In this case, they should only
1397 # show up in the changed section.
1397 # show up in the changed section.
1398 for x in a:
1398 for x in a:
1399 if x in dd:
1399 if x in dd:
1400 dd.remove(x)
1400 dd.remove(x)
1401 mm.add(x)
1401 mm.add(x)
1402 else:
1402 else:
1403 aa.add(x)
1403 aa.add(x)
1404 # make sure any files deleted in the local dirstate
1404 # make sure any files deleted in the local dirstate
1405 # are not in the add or change column of the patch
1405 # are not in the add or change column of the patch
1406 forget = []
1406 forget = []
1407 for x in d + r:
1407 for x in d + r:
1408 if x in aa:
1408 if x in aa:
1409 aa.remove(x)
1409 aa.remove(x)
1410 forget.append(x)
1410 forget.append(x)
1411 continue
1411 continue
1412 else:
1412 else:
1413 mm.discard(x)
1413 mm.discard(x)
1414 dd.add(x)
1414 dd.add(x)
1415
1415
1416 m = list(mm)
1416 m = list(mm)
1417 r = list(dd)
1417 r = list(dd)
1418 a = list(aa)
1418 a = list(aa)
1419 c = [filter(matchfn, l) for l in (m, a, r)]
1419 c = [filter(matchfn, l) for l in (m, a, r)]
1420 match = scmutil.matchfiles(repo, set(c[0] + c[1] + c[2] + inclsubs))
1420 match = scmutil.matchfiles(repo, set(c[0] + c[1] + c[2] + inclsubs))
1421 chunks = patchmod.diff(repo, patchparent, match=match,
1421 chunks = patchmod.diff(repo, patchparent, match=match,
1422 changes=c, opts=diffopts)
1422 changes=c, opts=diffopts)
1423 for chunk in chunks:
1423 for chunk in chunks:
1424 patchf.write(chunk)
1424 patchf.write(chunk)
1425
1425
1426 try:
1426 try:
1427 if diffopts.git or diffopts.upgrade:
1427 if diffopts.git or diffopts.upgrade:
1428 copies = {}
1428 copies = {}
1429 for dst in a:
1429 for dst in a:
1430 src = repo.dirstate.copied(dst)
1430 src = repo.dirstate.copied(dst)
1431 # during qfold, the source file for copies may
1431 # during qfold, the source file for copies may
1432 # be removed. Treat this as a simple add.
1432 # be removed. Treat this as a simple add.
1433 if src is not None and src in repo.dirstate:
1433 if src is not None and src in repo.dirstate:
1434 copies.setdefault(src, []).append(dst)
1434 copies.setdefault(src, []).append(dst)
1435 repo.dirstate.add(dst)
1435 repo.dirstate.add(dst)
1436 # remember the copies between patchparent and qtip
1436 # remember the copies between patchparent and qtip
1437 for dst in aaa:
1437 for dst in aaa:
1438 f = repo.file(dst)
1438 f = repo.file(dst)
1439 src = f.renamed(man[dst])
1439 src = f.renamed(man[dst])
1440 if src:
1440 if src:
1441 copies.setdefault(src[0], []).extend(
1441 copies.setdefault(src[0], []).extend(
1442 copies.get(dst, []))
1442 copies.get(dst, []))
1443 if dst in a:
1443 if dst in a:
1444 copies[src[0]].append(dst)
1444 copies[src[0]].append(dst)
1445 # we can't copy a file created by the patch itself
1445 # we can't copy a file created by the patch itself
1446 if dst in copies:
1446 if dst in copies:
1447 del copies[dst]
1447 del copies[dst]
1448 for src, dsts in copies.iteritems():
1448 for src, dsts in copies.iteritems():
1449 for dst in dsts:
1449 for dst in dsts:
1450 repo.dirstate.copy(src, dst)
1450 repo.dirstate.copy(src, dst)
1451 else:
1451 else:
1452 for dst in a:
1452 for dst in a:
1453 repo.dirstate.add(dst)
1453 repo.dirstate.add(dst)
1454 # Drop useless copy information
1454 # Drop useless copy information
1455 for f in list(repo.dirstate.copies()):
1455 for f in list(repo.dirstate.copies()):
1456 repo.dirstate.copy(None, f)
1456 repo.dirstate.copy(None, f)
1457 for f in r:
1457 for f in r:
1458 repo.dirstate.remove(f)
1458 repo.dirstate.remove(f)
1459 # if the patch excludes a modified file, mark that
1459 # if the patch excludes a modified file, mark that
1460 # file with mtime=0 so status can see it.
1460 # file with mtime=0 so status can see it.
1461 mm = []
1461 mm = []
1462 for i in xrange(len(m)-1, -1, -1):
1462 for i in xrange(len(m)-1, -1, -1):
1463 if not matchfn(m[i]):
1463 if not matchfn(m[i]):
1464 mm.append(m[i])
1464 mm.append(m[i])
1465 del m[i]
1465 del m[i]
1466 for f in m:
1466 for f in m:
1467 repo.dirstate.normal(f)
1467 repo.dirstate.normal(f)
1468 for f in mm:
1468 for f in mm:
1469 repo.dirstate.normallookup(f)
1469 repo.dirstate.normallookup(f)
1470 for f in forget:
1470 for f in forget:
1471 repo.dirstate.drop(f)
1471 repo.dirstate.drop(f)
1472
1472
1473 if not msg:
1473 if not msg:
1474 if not ph.message:
1474 if not ph.message:
1475 message = "[mq]: %s\n" % patchfn
1475 message = "[mq]: %s\n" % patchfn
1476 else:
1476 else:
1477 message = "\n".join(ph.message)
1477 message = "\n".join(ph.message)
1478 else:
1478 else:
1479 message = msg
1479 message = msg
1480
1480
1481 user = ph.user or changes[1]
1481 user = ph.user or changes[1]
1482
1482
1483 # assumes strip can roll itself back if interrupted
1483 # assumes strip can roll itself back if interrupted
1484 repo.dirstate.setparents(*cparents)
1484 repo.dirstate.setparents(*cparents)
1485 self.applied.pop()
1485 self.applied.pop()
1486 self.applieddirty = 1
1486 self.applieddirty = 1
1487 self.strip(repo, [top], update=False,
1487 self.strip(repo, [top], update=False,
1488 backup='strip')
1488 backup='strip')
1489 except:
1489 except:
1490 repo.dirstate.invalidate()
1490 repo.dirstate.invalidate()
1491 raise
1491 raise
1492
1492
1493 try:
1493 try:
1494 # might be nice to attempt to roll back strip after this
1494 # might be nice to attempt to roll back strip after this
1495 n = repo.commit(message, user, ph.date, match=match,
1495 n = repo.commit(message, user, ph.date, match=match,
1496 force=True)
1496 force=True)
1497 # only write patch after a successful commit
1497 # only write patch after a successful commit
1498 patchf.close()
1498 patchf.close()
1499 self.applied.append(statusentry(n, patchfn))
1499 self.applied.append(statusentry(n, patchfn))
1500 except:
1500 except:
1501 ctx = repo[cparents[0]]
1501 ctx = repo[cparents[0]]
1502 repo.dirstate.rebuild(ctx.node(), ctx.manifest())
1502 repo.dirstate.rebuild(ctx.node(), ctx.manifest())
1503 self.savedirty()
1503 self.savedirty()
1504 self.ui.warn(_('refresh interrupted while patch was popped! '
1504 self.ui.warn(_('refresh interrupted while patch was popped! '
1505 '(revert --all, qpush to recover)\n'))
1505 '(revert --all, qpush to recover)\n'))
1506 raise
1506 raise
1507 finally:
1507 finally:
1508 wlock.release()
1508 wlock.release()
1509 self.removeundo(repo)
1509 self.removeundo(repo)
1510
1510
1511 def init(self, repo, create=False):
1511 def init(self, repo, create=False):
1512 if not create and os.path.isdir(self.path):
1512 if not create and os.path.isdir(self.path):
1513 raise util.Abort(_("patch queue directory already exists"))
1513 raise util.Abort(_("patch queue directory already exists"))
1514 try:
1514 try:
1515 os.mkdir(self.path)
1515 os.mkdir(self.path)
1516 except OSError, inst:
1516 except OSError, inst:
1517 if inst.errno != errno.EEXIST or not create:
1517 if inst.errno != errno.EEXIST or not create:
1518 raise
1518 raise
1519 if create:
1519 if create:
1520 return self.qrepo(create=True)
1520 return self.qrepo(create=True)
1521
1521
1522 def unapplied(self, repo, patch=None):
1522 def unapplied(self, repo, patch=None):
1523 if patch and patch not in self.series:
1523 if patch and patch not in self.series:
1524 raise util.Abort(_("patch %s is not in series file") % patch)
1524 raise util.Abort(_("patch %s is not in series file") % patch)
1525 if not patch:
1525 if not patch:
1526 start = self.seriesend()
1526 start = self.seriesend()
1527 else:
1527 else:
1528 start = self.series.index(patch) + 1
1528 start = self.series.index(patch) + 1
1529 unapplied = []
1529 unapplied = []
1530 for i in xrange(start, len(self.series)):
1530 for i in xrange(start, len(self.series)):
1531 pushable, reason = self.pushable(i)
1531 pushable, reason = self.pushable(i)
1532 if pushable:
1532 if pushable:
1533 unapplied.append((i, self.series[i]))
1533 unapplied.append((i, self.series[i]))
1534 self.explainpushable(i)
1534 self.explainpushable(i)
1535 return unapplied
1535 return unapplied
1536
1536
1537 def qseries(self, repo, missing=None, start=0, length=None, status=None,
1537 def qseries(self, repo, missing=None, start=0, length=None, status=None,
1538 summary=False):
1538 summary=False):
1539 def displayname(pfx, patchname, state):
1539 def displayname(pfx, patchname, state):
1540 if pfx:
1540 if pfx:
1541 self.ui.write(pfx)
1541 self.ui.write(pfx)
1542 if summary:
1542 if summary:
1543 ph = patchheader(self.join(patchname), self.plainmode)
1543 ph = patchheader(self.join(patchname), self.plainmode)
1544 msg = ph.message and ph.message[0] or ''
1544 msg = ph.message and ph.message[0] or ''
1545 if self.ui.formatted():
1545 if self.ui.formatted():
1546 width = self.ui.termwidth() - len(pfx) - len(patchname) - 2
1546 width = self.ui.termwidth() - len(pfx) - len(patchname) - 2
1547 if width > 0:
1547 if width > 0:
1548 msg = util.ellipsis(msg, width)
1548 msg = util.ellipsis(msg, width)
1549 else:
1549 else:
1550 msg = ''
1550 msg = ''
1551 self.ui.write(patchname, label='qseries.' + state)
1551 self.ui.write(patchname, label='qseries.' + state)
1552 self.ui.write(': ')
1552 self.ui.write(': ')
1553 self.ui.write(msg, label='qseries.message.' + state)
1553 self.ui.write(msg, label='qseries.message.' + state)
1554 else:
1554 else:
1555 self.ui.write(patchname, label='qseries.' + state)
1555 self.ui.write(patchname, label='qseries.' + state)
1556 self.ui.write('\n')
1556 self.ui.write('\n')
1557
1557
1558 applied = set([p.name for p in self.applied])
1558 applied = set([p.name for p in self.applied])
1559 if length is None:
1559 if length is None:
1560 length = len(self.series) - start
1560 length = len(self.series) - start
1561 if not missing:
1561 if not missing:
1562 if self.ui.verbose:
1562 if self.ui.verbose:
1563 idxwidth = len(str(start + length - 1))
1563 idxwidth = len(str(start + length - 1))
1564 for i in xrange(start, start + length):
1564 for i in xrange(start, start + length):
1565 patch = self.series[i]
1565 patch = self.series[i]
1566 if patch in applied:
1566 if patch in applied:
1567 char, state = 'A', 'applied'
1567 char, state = 'A', 'applied'
1568 elif self.pushable(i)[0]:
1568 elif self.pushable(i)[0]:
1569 char, state = 'U', 'unapplied'
1569 char, state = 'U', 'unapplied'
1570 else:
1570 else:
1571 char, state = 'G', 'guarded'
1571 char, state = 'G', 'guarded'
1572 pfx = ''
1572 pfx = ''
1573 if self.ui.verbose:
1573 if self.ui.verbose:
1574 pfx = '%*d %s ' % (idxwidth, i, char)
1574 pfx = '%*d %s ' % (idxwidth, i, char)
1575 elif status and status != char:
1575 elif status and status != char:
1576 continue
1576 continue
1577 displayname(pfx, patch, state)
1577 displayname(pfx, patch, state)
1578 else:
1578 else:
1579 msng_list = []
1579 msng_list = []
1580 for root, dirs, files in os.walk(self.path):
1580 for root, dirs, files in os.walk(self.path):
1581 d = root[len(self.path) + 1:]
1581 d = root[len(self.path) + 1:]
1582 for f in files:
1582 for f in files:
1583 fl = os.path.join(d, f)
1583 fl = os.path.join(d, f)
1584 if (fl not in self.series and
1584 if (fl not in self.series and
1585 fl not in (self.statuspath, self.seriespath,
1585 fl not in (self.statuspath, self.seriespath,
1586 self.guardspath)
1586 self.guardspath)
1587 and not fl.startswith('.')):
1587 and not fl.startswith('.')):
1588 msng_list.append(fl)
1588 msng_list.append(fl)
1589 for x in sorted(msng_list):
1589 for x in sorted(msng_list):
1590 pfx = self.ui.verbose and ('D ') or ''
1590 pfx = self.ui.verbose and ('D ') or ''
1591 displayname(pfx, x, 'missing')
1591 displayname(pfx, x, 'missing')
1592
1592
1593 def issaveline(self, l):
1593 def issaveline(self, l):
1594 if l.name == '.hg.patches.save.line':
1594 if l.name == '.hg.patches.save.line':
1595 return True
1595 return True
1596
1596
1597 def qrepo(self, create=False):
1597 def qrepo(self, create=False):
1598 ui = self.ui.copy()
1598 ui = self.ui.copy()
1599 ui.setconfig('paths', 'default', '', overlay=False)
1599 ui.setconfig('paths', 'default', '', overlay=False)
1600 ui.setconfig('paths', 'default-push', '', overlay=False)
1600 ui.setconfig('paths', 'default-push', '', overlay=False)
1601 if create or os.path.isdir(self.join(".hg")):
1601 if create or os.path.isdir(self.join(".hg")):
1602 return hg.repository(ui, path=self.path, create=create)
1602 return hg.repository(ui, path=self.path, create=create)
1603
1603
1604 def restore(self, repo, rev, delete=None, qupdate=None):
1604 def restore(self, repo, rev, delete=None, qupdate=None):
1605 desc = repo[rev].description().strip()
1605 desc = repo[rev].description().strip()
1606 lines = desc.splitlines()
1606 lines = desc.splitlines()
1607 i = 0
1607 i = 0
1608 datastart = None
1608 datastart = None
1609 series = []
1609 series = []
1610 applied = []
1610 applied = []
1611 qpp = None
1611 qpp = None
1612 for i, line in enumerate(lines):
1612 for i, line in enumerate(lines):
1613 if line == 'Patch Data:':
1613 if line == 'Patch Data:':
1614 datastart = i + 1
1614 datastart = i + 1
1615 elif line.startswith('Dirstate:'):
1615 elif line.startswith('Dirstate:'):
1616 l = line.rstrip()
1616 l = line.rstrip()
1617 l = l[10:].split(' ')
1617 l = l[10:].split(' ')
1618 qpp = [bin(x) for x in l]
1618 qpp = [bin(x) for x in l]
1619 elif datastart is not None:
1619 elif datastart is not None:
1620 l = line.rstrip()
1620 l = line.rstrip()
1621 n, name = l.split(':', 1)
1621 n, name = l.split(':', 1)
1622 if n:
1622 if n:
1623 applied.append(statusentry(bin(n), name))
1623 applied.append(statusentry(bin(n), name))
1624 else:
1624 else:
1625 series.append(l)
1625 series.append(l)
1626 if datastart is None:
1626 if datastart is None:
1627 self.ui.warn(_("No saved patch data found\n"))
1627 self.ui.warn(_("No saved patch data found\n"))
1628 return 1
1628 return 1
1629 self.ui.warn(_("restoring status: %s\n") % lines[0])
1629 self.ui.warn(_("restoring status: %s\n") % lines[0])
1630 self.fullseries = series
1630 self.fullseries = series
1631 self.applied = applied
1631 self.applied = applied
1632 self.parseseries()
1632 self.parseseries()
1633 self.seriesdirty = 1
1633 self.seriesdirty = 1
1634 self.applieddirty = 1
1634 self.applieddirty = 1
1635 heads = repo.changelog.heads()
1635 heads = repo.changelog.heads()
1636 if delete:
1636 if delete:
1637 if rev not in heads:
1637 if rev not in heads:
1638 self.ui.warn(_("save entry has children, leaving it alone\n"))
1638 self.ui.warn(_("save entry has children, leaving it alone\n"))
1639 else:
1639 else:
1640 self.ui.warn(_("removing save entry %s\n") % short(rev))
1640 self.ui.warn(_("removing save entry %s\n") % short(rev))
1641 pp = repo.dirstate.parents()
1641 pp = repo.dirstate.parents()
1642 if rev in pp:
1642 if rev in pp:
1643 update = True
1643 update = True
1644 else:
1644 else:
1645 update = False
1645 update = False
1646 self.strip(repo, [rev], update=update, backup='strip')
1646 self.strip(repo, [rev], update=update, backup='strip')
1647 if qpp:
1647 if qpp:
1648 self.ui.warn(_("saved queue repository parents: %s %s\n") %
1648 self.ui.warn(_("saved queue repository parents: %s %s\n") %
1649 (short(qpp[0]), short(qpp[1])))
1649 (short(qpp[0]), short(qpp[1])))
1650 if qupdate:
1650 if qupdate:
1651 self.ui.status(_("updating queue directory\n"))
1651 self.ui.status(_("updating queue directory\n"))
1652 r = self.qrepo()
1652 r = self.qrepo()
1653 if not r:
1653 if not r:
1654 self.ui.warn(_("Unable to load queue repository\n"))
1654 self.ui.warn(_("Unable to load queue repository\n"))
1655 return 1
1655 return 1
1656 hg.clean(r, qpp[0])
1656 hg.clean(r, qpp[0])
1657
1657
1658 def save(self, repo, msg=None):
1658 def save(self, repo, msg=None):
1659 if not self.applied:
1659 if not self.applied:
1660 self.ui.warn(_("save: no patches applied, exiting\n"))
1660 self.ui.warn(_("save: no patches applied, exiting\n"))
1661 return 1
1661 return 1
1662 if self.issaveline(self.applied[-1]):
1662 if self.issaveline(self.applied[-1]):
1663 self.ui.warn(_("status is already saved\n"))
1663 self.ui.warn(_("status is already saved\n"))
1664 return 1
1664 return 1
1665
1665
1666 if not msg:
1666 if not msg:
1667 msg = _("hg patches saved state")
1667 msg = _("hg patches saved state")
1668 else:
1668 else:
1669 msg = "hg patches: " + msg.rstrip('\r\n')
1669 msg = "hg patches: " + msg.rstrip('\r\n')
1670 r = self.qrepo()
1670 r = self.qrepo()
1671 if r:
1671 if r:
1672 pp = r.dirstate.parents()
1672 pp = r.dirstate.parents()
1673 msg += "\nDirstate: %s %s" % (hex(pp[0]), hex(pp[1]))
1673 msg += "\nDirstate: %s %s" % (hex(pp[0]), hex(pp[1]))
1674 msg += "\n\nPatch Data:\n"
1674 msg += "\n\nPatch Data:\n"
1675 msg += ''.join('%s\n' % x for x in self.applied)
1675 msg += ''.join('%s\n' % x for x in self.applied)
1676 msg += ''.join(':%s\n' % x for x in self.fullseries)
1676 msg += ''.join(':%s\n' % x for x in self.fullseries)
1677 n = repo.commit(msg, force=True)
1677 n = repo.commit(msg, force=True)
1678 if not n:
1678 if not n:
1679 self.ui.warn(_("repo commit failed\n"))
1679 self.ui.warn(_("repo commit failed\n"))
1680 return 1
1680 return 1
1681 self.applied.append(statusentry(n, '.hg.patches.save.line'))
1681 self.applied.append(statusentry(n, '.hg.patches.save.line'))
1682 self.applieddirty = 1
1682 self.applieddirty = 1
1683 self.removeundo(repo)
1683 self.removeundo(repo)
1684
1684
1685 def fullseriesend(self):
1685 def fullseriesend(self):
1686 if self.applied:
1686 if self.applied:
1687 p = self.applied[-1].name
1687 p = self.applied[-1].name
1688 end = self.findseries(p)
1688 end = self.findseries(p)
1689 if end is None:
1689 if end is None:
1690 return len(self.fullseries)
1690 return len(self.fullseries)
1691 return end + 1
1691 return end + 1
1692 return 0
1692 return 0
1693
1693
1694 def seriesend(self, all_patches=False):
1694 def seriesend(self, all_patches=False):
1695 """If all_patches is False, return the index of the next pushable patch
1695 """If all_patches is False, return the index of the next pushable patch
1696 in the series, or the series length. If all_patches is True, return the
1696 in the series, or the series length. If all_patches is True, return the
1697 index of the first patch past the last applied one.
1697 index of the first patch past the last applied one.
1698 """
1698 """
1699 end = 0
1699 end = 0
1700 def next(start):
1700 def next(start):
1701 if all_patches or start >= len(self.series):
1701 if all_patches or start >= len(self.series):
1702 return start
1702 return start
1703 for i in xrange(start, len(self.series)):
1703 for i in xrange(start, len(self.series)):
1704 p, reason = self.pushable(i)
1704 p, reason = self.pushable(i)
1705 if p:
1705 if p:
1706 break
1706 break
1707 self.explainpushable(i)
1707 self.explainpushable(i)
1708 return i
1708 return i
1709 if self.applied:
1709 if self.applied:
1710 p = self.applied[-1].name
1710 p = self.applied[-1].name
1711 try:
1711 try:
1712 end = self.series.index(p)
1712 end = self.series.index(p)
1713 except ValueError:
1713 except ValueError:
1714 return 0
1714 return 0
1715 return next(end + 1)
1715 return next(end + 1)
1716 return next(end)
1716 return next(end)
1717
1717
1718 def appliedname(self, index):
1718 def appliedname(self, index):
1719 pname = self.applied[index].name
1719 pname = self.applied[index].name
1720 if not self.ui.verbose:
1720 if not self.ui.verbose:
1721 p = pname
1721 p = pname
1722 else:
1722 else:
1723 p = str(self.series.index(pname)) + " " + pname
1723 p = str(self.series.index(pname)) + " " + pname
1724 return p
1724 return p
1725
1725
1726 def qimport(self, repo, files, patchname=None, rev=None, existing=None,
1726 def qimport(self, repo, files, patchname=None, rev=None, existing=None,
1727 force=None, git=False):
1727 force=None, git=False):
1728 def checkseries(patchname):
1728 def checkseries(patchname):
1729 if patchname in self.series:
1729 if patchname in self.series:
1730 raise util.Abort(_('patch %s is already in the series file')
1730 raise util.Abort(_('patch %s is already in the series file')
1731 % patchname)
1731 % patchname)
1732
1732
1733 if rev:
1733 if rev:
1734 if files:
1734 if files:
1735 raise util.Abort(_('option "-r" not valid when importing '
1735 raise util.Abort(_('option "-r" not valid when importing '
1736 'files'))
1736 'files'))
1737 rev = scmutil.revrange(repo, rev)
1737 rev = scmutil.revrange(repo, rev)
1738 rev.sort(reverse=True)
1738 rev.sort(reverse=True)
1739 if (len(files) > 1 or len(rev) > 1) and patchname:
1739 if (len(files) > 1 or len(rev) > 1) and patchname:
1740 raise util.Abort(_('option "-n" not valid when importing multiple '
1740 raise util.Abort(_('option "-n" not valid when importing multiple '
1741 'patches'))
1741 'patches'))
1742 if rev:
1742 if rev:
1743 # If mq patches are applied, we can only import revisions
1743 # If mq patches are applied, we can only import revisions
1744 # that form a linear path to qbase.
1744 # that form a linear path to qbase.
1745 # Otherwise, they should form a linear path to a head.
1745 # Otherwise, they should form a linear path to a head.
1746 heads = repo.changelog.heads(repo.changelog.node(rev[-1]))
1746 heads = repo.changelog.heads(repo.changelog.node(rev[-1]))
1747 if len(heads) > 1:
1747 if len(heads) > 1:
1748 raise util.Abort(_('revision %d is the root of more than one '
1748 raise util.Abort(_('revision %d is the root of more than one '
1749 'branch') % rev[-1])
1749 'branch') % rev[-1])
1750 if self.applied:
1750 if self.applied:
1751 base = repo.changelog.node(rev[0])
1751 base = repo.changelog.node(rev[0])
1752 if base in [n.node for n in self.applied]:
1752 if base in [n.node for n in self.applied]:
1753 raise util.Abort(_('revision %d is already managed')
1753 raise util.Abort(_('revision %d is already managed')
1754 % rev[0])
1754 % rev[0])
1755 if heads != [self.applied[-1].node]:
1755 if heads != [self.applied[-1].node]:
1756 raise util.Abort(_('revision %d is not the parent of '
1756 raise util.Abort(_('revision %d is not the parent of '
1757 'the queue') % rev[0])
1757 'the queue') % rev[0])
1758 base = repo.changelog.rev(self.applied[0].node)
1758 base = repo.changelog.rev(self.applied[0].node)
1759 lastparent = repo.changelog.parentrevs(base)[0]
1759 lastparent = repo.changelog.parentrevs(base)[0]
1760 else:
1760 else:
1761 if heads != [repo.changelog.node(rev[0])]:
1761 if heads != [repo.changelog.node(rev[0])]:
1762 raise util.Abort(_('revision %d has unmanaged children')
1762 raise util.Abort(_('revision %d has unmanaged children')
1763 % rev[0])
1763 % rev[0])
1764 lastparent = None
1764 lastparent = None
1765
1765
1766 diffopts = self.diffopts({'git': git})
1766 diffopts = self.diffopts({'git': git})
1767 for r in rev:
1767 for r in rev:
1768 if not repo[r].mutable():
1768 if not repo[r].mutable():
1769 raise util.Abort(_('revision %d is not mutable') % r,
1769 raise util.Abort(_('revision %d is not mutable') % r,
1770 hint=_('see "hg help phases" for details'))
1770 hint=_('see "hg help phases" for details'))
1771 p1, p2 = repo.changelog.parentrevs(r)
1771 p1, p2 = repo.changelog.parentrevs(r)
1772 n = repo.changelog.node(r)
1772 n = repo.changelog.node(r)
1773 if p2 != nullrev:
1773 if p2 != nullrev:
1774 raise util.Abort(_('cannot import merge revision %d') % r)
1774 raise util.Abort(_('cannot import merge revision %d') % r)
1775 if lastparent and lastparent != r:
1775 if lastparent and lastparent != r:
1776 raise util.Abort(_('revision %d is not the parent of %d')
1776 raise util.Abort(_('revision %d is not the parent of %d')
1777 % (r, lastparent))
1777 % (r, lastparent))
1778 lastparent = p1
1778 lastparent = p1
1779
1779
1780 if not patchname:
1780 if not patchname:
1781 patchname = normname('%d.diff' % r)
1781 patchname = normname('%d.diff' % r)
1782 checkseries(patchname)
1782 checkseries(patchname)
1783 self.checkpatchname(patchname, force)
1783 self.checkpatchname(patchname, force)
1784 self.fullseries.insert(0, patchname)
1784 self.fullseries.insert(0, patchname)
1785
1785
1786 patchf = self.opener(patchname, "w")
1786 patchf = self.opener(patchname, "w")
1787 cmdutil.export(repo, [n], fp=patchf, opts=diffopts)
1787 cmdutil.export(repo, [n], fp=patchf, opts=diffopts)
1788 patchf.close()
1788 patchf.close()
1789
1789
1790 se = statusentry(n, patchname)
1790 se = statusentry(n, patchname)
1791 self.applied.insert(0, se)
1791 self.applied.insert(0, se)
1792
1792
1793 self.added.append(patchname)
1793 self.added.append(patchname)
1794 patchname = None
1794 patchname = None
1795 self.parseseries()
1795 self.parseseries()
1796 self.applieddirty = 1
1796 self.applieddirty = 1
1797 self.seriesdirty = True
1797 self.seriesdirty = True
1798
1798
1799 for i, filename in enumerate(files):
1799 for i, filename in enumerate(files):
1800 if existing:
1800 if existing:
1801 if filename == '-':
1801 if filename == '-':
1802 raise util.Abort(_('-e is incompatible with import from -'))
1802 raise util.Abort(_('-e is incompatible with import from -'))
1803 filename = normname(filename)
1803 filename = normname(filename)
1804 self.checkreservedname(filename)
1804 self.checkreservedname(filename)
1805 originpath = self.join(filename)
1805 originpath = self.join(filename)
1806 if not os.path.isfile(originpath):
1806 if not os.path.isfile(originpath):
1807 raise util.Abort(_("patch %s does not exist") % filename)
1807 raise util.Abort(_("patch %s does not exist") % filename)
1808
1808
1809 if patchname:
1809 if patchname:
1810 self.checkpatchname(patchname, force)
1810 self.checkpatchname(patchname, force)
1811
1811
1812 self.ui.write(_('renaming %s to %s\n')
1812 self.ui.write(_('renaming %s to %s\n')
1813 % (filename, patchname))
1813 % (filename, patchname))
1814 util.rename(originpath, self.join(patchname))
1814 util.rename(originpath, self.join(patchname))
1815 else:
1815 else:
1816 patchname = filename
1816 patchname = filename
1817
1817
1818 else:
1818 else:
1819 if filename == '-' and not patchname:
1819 if filename == '-' and not patchname:
1820 raise util.Abort(_('need --name to import a patch from -'))
1820 raise util.Abort(_('need --name to import a patch from -'))
1821 elif not patchname:
1821 elif not patchname:
1822 patchname = normname(os.path.basename(filename.rstrip('/')))
1822 patchname = normname(os.path.basename(filename.rstrip('/')))
1823 self.checkpatchname(patchname, force)
1823 self.checkpatchname(patchname, force)
1824 try:
1824 try:
1825 if filename == '-':
1825 if filename == '-':
1826 text = self.ui.fin.read()
1826 text = self.ui.fin.read()
1827 else:
1827 else:
1828 fp = url.open(self.ui, filename)
1828 fp = url.open(self.ui, filename)
1829 text = fp.read()
1829 text = fp.read()
1830 fp.close()
1830 fp.close()
1831 except (OSError, IOError):
1831 except (OSError, IOError):
1832 raise util.Abort(_("unable to read file %s") % filename)
1832 raise util.Abort(_("unable to read file %s") % filename)
1833 patchf = self.opener(patchname, "w")
1833 patchf = self.opener(patchname, "w")
1834 patchf.write(text)
1834 patchf.write(text)
1835 patchf.close()
1835 patchf.close()
1836 if not force:
1836 if not force:
1837 checkseries(patchname)
1837 checkseries(patchname)
1838 if patchname not in self.series:
1838 if patchname not in self.series:
1839 index = self.fullseriesend() + i
1839 index = self.fullseriesend() + i
1840 self.fullseries[index:index] = [patchname]
1840 self.fullseries[index:index] = [patchname]
1841 self.parseseries()
1841 self.parseseries()
1842 self.seriesdirty = True
1842 self.seriesdirty = True
1843 self.ui.warn(_("adding %s to series file\n") % patchname)
1843 self.ui.warn(_("adding %s to series file\n") % patchname)
1844 self.added.append(patchname)
1844 self.added.append(patchname)
1845 patchname = None
1845 patchname = None
1846
1846
1847 self.removeundo(repo)
1847 self.removeundo(repo)
1848
1848
1849 @command("qdelete|qremove|qrm",
1849 @command("qdelete|qremove|qrm",
1850 [('k', 'keep', None, _('keep patch file')),
1850 [('k', 'keep', None, _('keep patch file')),
1851 ('r', 'rev', [],
1851 ('r', 'rev', [],
1852 _('stop managing a revision (DEPRECATED)'), _('REV'))],
1852 _('stop managing a revision (DEPRECATED)'), _('REV'))],
1853 _('hg qdelete [-k] [PATCH]...'))
1853 _('hg qdelete [-k] [PATCH]...'))
1854 def delete(ui, repo, *patches, **opts):
1854 def delete(ui, repo, *patches, **opts):
1855 """remove patches from queue
1855 """remove patches from queue
1856
1856
1857 The patches must not be applied, and at least one patch is required. With
1857 The patches must not be applied, and at least one patch is required. Exact
1858 -k/--keep, the patch files are preserved in the patch directory.
1858 patch identifiers must be given. With -k/--keep, the patch files are
1859 preserved in the patch directory.
1859
1860
1860 To stop managing a patch and move it into permanent history,
1861 To stop managing a patch and move it into permanent history,
1861 use the :hg:`qfinish` command."""
1862 use the :hg:`qfinish` command."""
1862 q = repo.mq
1863 q = repo.mq
1863 q.delete(repo, patches, opts)
1864 q.delete(repo, patches, opts)
1864 q.savedirty()
1865 q.savedirty()
1865 return 0
1866 return 0
1866
1867
1867 @command("qapplied",
1868 @command("qapplied",
1868 [('1', 'last', None, _('show only the last patch'))
1869 [('1', 'last', None, _('show only the last patch'))
1869 ] + seriesopts,
1870 ] + seriesopts,
1870 _('hg qapplied [-1] [-s] [PATCH]'))
1871 _('hg qapplied [-1] [-s] [PATCH]'))
1871 def applied(ui, repo, patch=None, **opts):
1872 def applied(ui, repo, patch=None, **opts):
1872 """print the patches already applied
1873 """print the patches already applied
1873
1874
1874 Returns 0 on success."""
1875 Returns 0 on success."""
1875
1876
1876 q = repo.mq
1877 q = repo.mq
1877
1878
1878 if patch:
1879 if patch:
1879 if patch not in q.series:
1880 if patch not in q.series:
1880 raise util.Abort(_("patch %s is not in series file") % patch)
1881 raise util.Abort(_("patch %s is not in series file") % patch)
1881 end = q.series.index(patch) + 1
1882 end = q.series.index(patch) + 1
1882 else:
1883 else:
1883 end = q.seriesend(True)
1884 end = q.seriesend(True)
1884
1885
1885 if opts.get('last') and not end:
1886 if opts.get('last') and not end:
1886 ui.write(_("no patches applied\n"))
1887 ui.write(_("no patches applied\n"))
1887 return 1
1888 return 1
1888 elif opts.get('last') and end == 1:
1889 elif opts.get('last') and end == 1:
1889 ui.write(_("only one patch applied\n"))
1890 ui.write(_("only one patch applied\n"))
1890 return 1
1891 return 1
1891 elif opts.get('last'):
1892 elif opts.get('last'):
1892 start = end - 2
1893 start = end - 2
1893 end = 1
1894 end = 1
1894 else:
1895 else:
1895 start = 0
1896 start = 0
1896
1897
1897 q.qseries(repo, length=end, start=start, status='A',
1898 q.qseries(repo, length=end, start=start, status='A',
1898 summary=opts.get('summary'))
1899 summary=opts.get('summary'))
1899
1900
1900
1901
1901 @command("qunapplied",
1902 @command("qunapplied",
1902 [('1', 'first', None, _('show only the first patch'))] + seriesopts,
1903 [('1', 'first', None, _('show only the first patch'))] + seriesopts,
1903 _('hg qunapplied [-1] [-s] [PATCH]'))
1904 _('hg qunapplied [-1] [-s] [PATCH]'))
1904 def unapplied(ui, repo, patch=None, **opts):
1905 def unapplied(ui, repo, patch=None, **opts):
1905 """print the patches not yet applied
1906 """print the patches not yet applied
1906
1907
1907 Returns 0 on success."""
1908 Returns 0 on success."""
1908
1909
1909 q = repo.mq
1910 q = repo.mq
1910 if patch:
1911 if patch:
1911 if patch not in q.series:
1912 if patch not in q.series:
1912 raise util.Abort(_("patch %s is not in series file") % patch)
1913 raise util.Abort(_("patch %s is not in series file") % patch)
1913 start = q.series.index(patch) + 1
1914 start = q.series.index(patch) + 1
1914 else:
1915 else:
1915 start = q.seriesend(True)
1916 start = q.seriesend(True)
1916
1917
1917 if start == len(q.series) and opts.get('first'):
1918 if start == len(q.series) and opts.get('first'):
1918 ui.write(_("all patches applied\n"))
1919 ui.write(_("all patches applied\n"))
1919 return 1
1920 return 1
1920
1921
1921 length = opts.get('first') and 1 or None
1922 length = opts.get('first') and 1 or None
1922 q.qseries(repo, start=start, length=length, status='U',
1923 q.qseries(repo, start=start, length=length, status='U',
1923 summary=opts.get('summary'))
1924 summary=opts.get('summary'))
1924
1925
1925 @command("qimport",
1926 @command("qimport",
1926 [('e', 'existing', None, _('import file in patch directory')),
1927 [('e', 'existing', None, _('import file in patch directory')),
1927 ('n', 'name', '',
1928 ('n', 'name', '',
1928 _('name of patch file'), _('NAME')),
1929 _('name of patch file'), _('NAME')),
1929 ('f', 'force', None, _('overwrite existing files')),
1930 ('f', 'force', None, _('overwrite existing files')),
1930 ('r', 'rev', [],
1931 ('r', 'rev', [],
1931 _('place existing revisions under mq control'), _('REV')),
1932 _('place existing revisions under mq control'), _('REV')),
1932 ('g', 'git', None, _('use git extended diff format')),
1933 ('g', 'git', None, _('use git extended diff format')),
1933 ('P', 'push', None, _('qpush after importing'))],
1934 ('P', 'push', None, _('qpush after importing'))],
1934 _('hg qimport [-e] [-n NAME] [-f] [-g] [-P] [-r REV]... FILE...'))
1935 _('hg qimport [-e] [-n NAME] [-f] [-g] [-P] [-r REV]... FILE...'))
1935 def qimport(ui, repo, *filename, **opts):
1936 def qimport(ui, repo, *filename, **opts):
1936 """import a patch
1937 """import a patch
1937
1938
1938 The patch is inserted into the series after the last applied
1939 The patch is inserted into the series after the last applied
1939 patch. If no patches have been applied, qimport prepends the patch
1940 patch. If no patches have been applied, qimport prepends the patch
1940 to the series.
1941 to the series.
1941
1942
1942 The patch will have the same name as its source file unless you
1943 The patch will have the same name as its source file unless you
1943 give it a new one with -n/--name.
1944 give it a new one with -n/--name.
1944
1945
1945 You can register an existing patch inside the patch directory with
1946 You can register an existing patch inside the patch directory with
1946 the -e/--existing flag.
1947 the -e/--existing flag.
1947
1948
1948 With -f/--force, an existing patch of the same name will be
1949 With -f/--force, an existing patch of the same name will be
1949 overwritten.
1950 overwritten.
1950
1951
1951 An existing changeset may be placed under mq control with -r/--rev
1952 An existing changeset may be placed under mq control with -r/--rev
1952 (e.g. qimport --rev tip -n patch will place tip under mq control).
1953 (e.g. qimport --rev tip -n patch will place tip under mq control).
1953 With -g/--git, patches imported with --rev will use the git diff
1954 With -g/--git, patches imported with --rev will use the git diff
1954 format. See the diffs help topic for information on why this is
1955 format. See the diffs help topic for information on why this is
1955 important for preserving rename/copy information and permission
1956 important for preserving rename/copy information and permission
1956 changes. Use :hg:`qfinish` to remove changesets from mq control.
1957 changes. Use :hg:`qfinish` to remove changesets from mq control.
1957
1958
1958 To import a patch from standard input, pass - as the patch file.
1959 To import a patch from standard input, pass - as the patch file.
1959 When importing from standard input, a patch name must be specified
1960 When importing from standard input, a patch name must be specified
1960 using the --name flag.
1961 using the --name flag.
1961
1962
1962 To import an existing patch while renaming it::
1963 To import an existing patch while renaming it::
1963
1964
1964 hg qimport -e existing-patch -n new-name
1965 hg qimport -e existing-patch -n new-name
1965
1966
1966 Returns 0 if import succeeded.
1967 Returns 0 if import succeeded.
1967 """
1968 """
1968 q = repo.mq
1969 q = repo.mq
1969 try:
1970 try:
1970 q.qimport(repo, filename, patchname=opts.get('name'),
1971 q.qimport(repo, filename, patchname=opts.get('name'),
1971 existing=opts.get('existing'), force=opts.get('force'),
1972 existing=opts.get('existing'), force=opts.get('force'),
1972 rev=opts.get('rev'), git=opts.get('git'))
1973 rev=opts.get('rev'), git=opts.get('git'))
1973 finally:
1974 finally:
1974 q.savedirty()
1975 q.savedirty()
1975
1976
1976 if opts.get('push') and not opts.get('rev'):
1977 if opts.get('push') and not opts.get('rev'):
1977 return q.push(repo, None)
1978 return q.push(repo, None)
1978 return 0
1979 return 0
1979
1980
1980 def qinit(ui, repo, create):
1981 def qinit(ui, repo, create):
1981 """initialize a new queue repository
1982 """initialize a new queue repository
1982
1983
1983 This command also creates a series file for ordering patches, and
1984 This command also creates a series file for ordering patches, and
1984 an mq-specific .hgignore file in the queue repository, to exclude
1985 an mq-specific .hgignore file in the queue repository, to exclude
1985 the status and guards files (these contain mostly transient state).
1986 the status and guards files (these contain mostly transient state).
1986
1987
1987 Returns 0 if initialization succeeded."""
1988 Returns 0 if initialization succeeded."""
1988 q = repo.mq
1989 q = repo.mq
1989 r = q.init(repo, create)
1990 r = q.init(repo, create)
1990 q.savedirty()
1991 q.savedirty()
1991 if r:
1992 if r:
1992 if not os.path.exists(r.wjoin('.hgignore')):
1993 if not os.path.exists(r.wjoin('.hgignore')):
1993 fp = r.wopener('.hgignore', 'w')
1994 fp = r.wopener('.hgignore', 'w')
1994 fp.write('^\\.hg\n')
1995 fp.write('^\\.hg\n')
1995 fp.write('^\\.mq\n')
1996 fp.write('^\\.mq\n')
1996 fp.write('syntax: glob\n')
1997 fp.write('syntax: glob\n')
1997 fp.write('status\n')
1998 fp.write('status\n')
1998 fp.write('guards\n')
1999 fp.write('guards\n')
1999 fp.close()
2000 fp.close()
2000 if not os.path.exists(r.wjoin('series')):
2001 if not os.path.exists(r.wjoin('series')):
2001 r.wopener('series', 'w').close()
2002 r.wopener('series', 'w').close()
2002 r[None].add(['.hgignore', 'series'])
2003 r[None].add(['.hgignore', 'series'])
2003 commands.add(ui, r)
2004 commands.add(ui, r)
2004 return 0
2005 return 0
2005
2006
2006 @command("^qinit",
2007 @command("^qinit",
2007 [('c', 'create-repo', None, _('create queue repository'))],
2008 [('c', 'create-repo', None, _('create queue repository'))],
2008 _('hg qinit [-c]'))
2009 _('hg qinit [-c]'))
2009 def init(ui, repo, **opts):
2010 def init(ui, repo, **opts):
2010 """init a new queue repository (DEPRECATED)
2011 """init a new queue repository (DEPRECATED)
2011
2012
2012 The queue repository is unversioned by default. If
2013 The queue repository is unversioned by default. If
2013 -c/--create-repo is specified, qinit will create a separate nested
2014 -c/--create-repo is specified, qinit will create a separate nested
2014 repository for patches (qinit -c may also be run later to convert
2015 repository for patches (qinit -c may also be run later to convert
2015 an unversioned patch repository into a versioned one). You can use
2016 an unversioned patch repository into a versioned one). You can use
2016 qcommit to commit changes to this queue repository.
2017 qcommit to commit changes to this queue repository.
2017
2018
2018 This command is deprecated. Without -c, it's implied by other relevant
2019 This command is deprecated. Without -c, it's implied by other relevant
2019 commands. With -c, use :hg:`init --mq` instead."""
2020 commands. With -c, use :hg:`init --mq` instead."""
2020 return qinit(ui, repo, create=opts.get('create_repo'))
2021 return qinit(ui, repo, create=opts.get('create_repo'))
2021
2022
2022 @command("qclone",
2023 @command("qclone",
2023 [('', 'pull', None, _('use pull protocol to copy metadata')),
2024 [('', 'pull', None, _('use pull protocol to copy metadata')),
2024 ('U', 'noupdate', None, _('do not update the new working directories')),
2025 ('U', 'noupdate', None, _('do not update the new working directories')),
2025 ('', 'uncompressed', None,
2026 ('', 'uncompressed', None,
2026 _('use uncompressed transfer (fast over LAN)')),
2027 _('use uncompressed transfer (fast over LAN)')),
2027 ('p', 'patches', '',
2028 ('p', 'patches', '',
2028 _('location of source patch repository'), _('REPO')),
2029 _('location of source patch repository'), _('REPO')),
2029 ] + commands.remoteopts,
2030 ] + commands.remoteopts,
2030 _('hg qclone [OPTION]... SOURCE [DEST]'))
2031 _('hg qclone [OPTION]... SOURCE [DEST]'))
2031 def clone(ui, source, dest=None, **opts):
2032 def clone(ui, source, dest=None, **opts):
2032 '''clone main and patch repository at same time
2033 '''clone main and patch repository at same time
2033
2034
2034 If source is local, destination will have no patches applied. If
2035 If source is local, destination will have no patches applied. If
2035 source is remote, this command can not check if patches are
2036 source is remote, this command can not check if patches are
2036 applied in source, so cannot guarantee that patches are not
2037 applied in source, so cannot guarantee that patches are not
2037 applied in destination. If you clone remote repository, be sure
2038 applied in destination. If you clone remote repository, be sure
2038 before that it has no patches applied.
2039 before that it has no patches applied.
2039
2040
2040 Source patch repository is looked for in <src>/.hg/patches by
2041 Source patch repository is looked for in <src>/.hg/patches by
2041 default. Use -p <url> to change.
2042 default. Use -p <url> to change.
2042
2043
2043 The patch directory must be a nested Mercurial repository, as
2044 The patch directory must be a nested Mercurial repository, as
2044 would be created by :hg:`init --mq`.
2045 would be created by :hg:`init --mq`.
2045
2046
2046 Return 0 on success.
2047 Return 0 on success.
2047 '''
2048 '''
2048 def patchdir(repo):
2049 def patchdir(repo):
2049 url = repo.url()
2050 url = repo.url()
2050 if url.endswith('/'):
2051 if url.endswith('/'):
2051 url = url[:-1]
2052 url = url[:-1]
2052 return url + '/.hg/patches'
2053 return url + '/.hg/patches'
2053 if dest is None:
2054 if dest is None:
2054 dest = hg.defaultdest(source)
2055 dest = hg.defaultdest(source)
2055 sr = hg.repository(hg.remoteui(ui, opts), ui.expandpath(source))
2056 sr = hg.repository(hg.remoteui(ui, opts), ui.expandpath(source))
2056 if opts.get('patches'):
2057 if opts.get('patches'):
2057 patchespath = ui.expandpath(opts.get('patches'))
2058 patchespath = ui.expandpath(opts.get('patches'))
2058 else:
2059 else:
2059 patchespath = patchdir(sr)
2060 patchespath = patchdir(sr)
2060 try:
2061 try:
2061 hg.repository(ui, patchespath)
2062 hg.repository(ui, patchespath)
2062 except error.RepoError:
2063 except error.RepoError:
2063 raise util.Abort(_('versioned patch repository not found'
2064 raise util.Abort(_('versioned patch repository not found'
2064 ' (see init --mq)'))
2065 ' (see init --mq)'))
2065 qbase, destrev = None, None
2066 qbase, destrev = None, None
2066 if sr.local():
2067 if sr.local():
2067 if sr.mq.applied:
2068 if sr.mq.applied:
2068 qbase = sr.mq.applied[0].node
2069 qbase = sr.mq.applied[0].node
2069 if not hg.islocal(dest):
2070 if not hg.islocal(dest):
2070 heads = set(sr.heads())
2071 heads = set(sr.heads())
2071 destrev = list(heads.difference(sr.heads(qbase)))
2072 destrev = list(heads.difference(sr.heads(qbase)))
2072 destrev.append(sr.changelog.parents(qbase)[0])
2073 destrev.append(sr.changelog.parents(qbase)[0])
2073 elif sr.capable('lookup'):
2074 elif sr.capable('lookup'):
2074 try:
2075 try:
2075 qbase = sr.lookup('qbase')
2076 qbase = sr.lookup('qbase')
2076 except error.RepoError:
2077 except error.RepoError:
2077 pass
2078 pass
2078 ui.note(_('cloning main repository\n'))
2079 ui.note(_('cloning main repository\n'))
2079 sr, dr = hg.clone(ui, opts, sr.url(), dest,
2080 sr, dr = hg.clone(ui, opts, sr.url(), dest,
2080 pull=opts.get('pull'),
2081 pull=opts.get('pull'),
2081 rev=destrev,
2082 rev=destrev,
2082 update=False,
2083 update=False,
2083 stream=opts.get('uncompressed'))
2084 stream=opts.get('uncompressed'))
2084 ui.note(_('cloning patch repository\n'))
2085 ui.note(_('cloning patch repository\n'))
2085 hg.clone(ui, opts, opts.get('patches') or patchdir(sr), patchdir(dr),
2086 hg.clone(ui, opts, opts.get('patches') or patchdir(sr), patchdir(dr),
2086 pull=opts.get('pull'), update=not opts.get('noupdate'),
2087 pull=opts.get('pull'), update=not opts.get('noupdate'),
2087 stream=opts.get('uncompressed'))
2088 stream=opts.get('uncompressed'))
2088 if dr.local():
2089 if dr.local():
2089 if qbase:
2090 if qbase:
2090 ui.note(_('stripping applied patches from destination '
2091 ui.note(_('stripping applied patches from destination '
2091 'repository\n'))
2092 'repository\n'))
2092 dr.mq.strip(dr, [qbase], update=False, backup=None)
2093 dr.mq.strip(dr, [qbase], update=False, backup=None)
2093 if not opts.get('noupdate'):
2094 if not opts.get('noupdate'):
2094 ui.note(_('updating destination repository\n'))
2095 ui.note(_('updating destination repository\n'))
2095 hg.update(dr, dr.changelog.tip())
2096 hg.update(dr, dr.changelog.tip())
2096
2097
2097 @command("qcommit|qci",
2098 @command("qcommit|qci",
2098 commands.table["^commit|ci"][1],
2099 commands.table["^commit|ci"][1],
2099 _('hg qcommit [OPTION]... [FILE]...'))
2100 _('hg qcommit [OPTION]... [FILE]...'))
2100 def commit(ui, repo, *pats, **opts):
2101 def commit(ui, repo, *pats, **opts):
2101 """commit changes in the queue repository (DEPRECATED)
2102 """commit changes in the queue repository (DEPRECATED)
2102
2103
2103 This command is deprecated; use :hg:`commit --mq` instead."""
2104 This command is deprecated; use :hg:`commit --mq` instead."""
2104 q = repo.mq
2105 q = repo.mq
2105 r = q.qrepo()
2106 r = q.qrepo()
2106 if not r:
2107 if not r:
2107 raise util.Abort('no queue repository')
2108 raise util.Abort('no queue repository')
2108 commands.commit(r.ui, r, *pats, **opts)
2109 commands.commit(r.ui, r, *pats, **opts)
2109
2110
2110 @command("qseries",
2111 @command("qseries",
2111 [('m', 'missing', None, _('print patches not in series')),
2112 [('m', 'missing', None, _('print patches not in series')),
2112 ] + seriesopts,
2113 ] + seriesopts,
2113 _('hg qseries [-ms]'))
2114 _('hg qseries [-ms]'))
2114 def series(ui, repo, **opts):
2115 def series(ui, repo, **opts):
2115 """print the entire series file
2116 """print the entire series file
2116
2117
2117 Returns 0 on success."""
2118 Returns 0 on success."""
2118 repo.mq.qseries(repo, missing=opts.get('missing'), summary=opts.get('summary'))
2119 repo.mq.qseries(repo, missing=opts.get('missing'), summary=opts.get('summary'))
2119 return 0
2120 return 0
2120
2121
2121 @command("qtop", seriesopts, _('hg qtop [-s]'))
2122 @command("qtop", seriesopts, _('hg qtop [-s]'))
2122 def top(ui, repo, **opts):
2123 def top(ui, repo, **opts):
2123 """print the name of the current patch
2124 """print the name of the current patch
2124
2125
2125 Returns 0 on success."""
2126 Returns 0 on success."""
2126 q = repo.mq
2127 q = repo.mq
2127 t = q.applied and q.seriesend(True) or 0
2128 t = q.applied and q.seriesend(True) or 0
2128 if t:
2129 if t:
2129 q.qseries(repo, start=t - 1, length=1, status='A',
2130 q.qseries(repo, start=t - 1, length=1, status='A',
2130 summary=opts.get('summary'))
2131 summary=opts.get('summary'))
2131 else:
2132 else:
2132 ui.write(_("no patches applied\n"))
2133 ui.write(_("no patches applied\n"))
2133 return 1
2134 return 1
2134
2135
2135 @command("qnext", seriesopts, _('hg qnext [-s]'))
2136 @command("qnext", seriesopts, _('hg qnext [-s]'))
2136 def next(ui, repo, **opts):
2137 def next(ui, repo, **opts):
2137 """print the name of the next patch
2138 """print the name of the next patch
2138
2139
2139 Returns 0 on success."""
2140 Returns 0 on success."""
2140 q = repo.mq
2141 q = repo.mq
2141 end = q.seriesend()
2142 end = q.seriesend()
2142 if end == len(q.series):
2143 if end == len(q.series):
2143 ui.write(_("all patches applied\n"))
2144 ui.write(_("all patches applied\n"))
2144 return 1
2145 return 1
2145 q.qseries(repo, start=end, length=1, summary=opts.get('summary'))
2146 q.qseries(repo, start=end, length=1, summary=opts.get('summary'))
2146
2147
2147 @command("qprev", seriesopts, _('hg qprev [-s]'))
2148 @command("qprev", seriesopts, _('hg qprev [-s]'))
2148 def prev(ui, repo, **opts):
2149 def prev(ui, repo, **opts):
2149 """print the name of the previous patch
2150 """print the name of the previous patch
2150
2151
2151 Returns 0 on success."""
2152 Returns 0 on success."""
2152 q = repo.mq
2153 q = repo.mq
2153 l = len(q.applied)
2154 l = len(q.applied)
2154 if l == 1:
2155 if l == 1:
2155 ui.write(_("only one patch applied\n"))
2156 ui.write(_("only one patch applied\n"))
2156 return 1
2157 return 1
2157 if not l:
2158 if not l:
2158 ui.write(_("no patches applied\n"))
2159 ui.write(_("no patches applied\n"))
2159 return 1
2160 return 1
2160 q.qseries(repo, start=l - 2, length=1, status='A',
2161 q.qseries(repo, start=l - 2, length=1, status='A',
2161 summary=opts.get('summary'))
2162 summary=opts.get('summary'))
2162
2163
2163 def setupheaderopts(ui, opts):
2164 def setupheaderopts(ui, opts):
2164 if not opts.get('user') and opts.get('currentuser'):
2165 if not opts.get('user') and opts.get('currentuser'):
2165 opts['user'] = ui.username()
2166 opts['user'] = ui.username()
2166 if not opts.get('date') and opts.get('currentdate'):
2167 if not opts.get('date') and opts.get('currentdate'):
2167 opts['date'] = "%d %d" % util.makedate()
2168 opts['date'] = "%d %d" % util.makedate()
2168
2169
2169 @command("^qnew",
2170 @command("^qnew",
2170 [('e', 'edit', None, _('edit commit message')),
2171 [('e', 'edit', None, _('edit commit message')),
2171 ('f', 'force', None, _('import uncommitted changes (DEPRECATED)')),
2172 ('f', 'force', None, _('import uncommitted changes (DEPRECATED)')),
2172 ('g', 'git', None, _('use git extended diff format')),
2173 ('g', 'git', None, _('use git extended diff format')),
2173 ('U', 'currentuser', None, _('add "From: <current user>" to patch')),
2174 ('U', 'currentuser', None, _('add "From: <current user>" to patch')),
2174 ('u', 'user', '',
2175 ('u', 'user', '',
2175 _('add "From: <USER>" to patch'), _('USER')),
2176 _('add "From: <USER>" to patch'), _('USER')),
2176 ('D', 'currentdate', None, _('add "Date: <current date>" to patch')),
2177 ('D', 'currentdate', None, _('add "Date: <current date>" to patch')),
2177 ('d', 'date', '',
2178 ('d', 'date', '',
2178 _('add "Date: <DATE>" to patch'), _('DATE'))
2179 _('add "Date: <DATE>" to patch'), _('DATE'))
2179 ] + commands.walkopts + commands.commitopts,
2180 ] + commands.walkopts + commands.commitopts,
2180 _('hg qnew [-e] [-m TEXT] [-l FILE] PATCH [FILE]...'))
2181 _('hg qnew [-e] [-m TEXT] [-l FILE] PATCH [FILE]...'))
2181 def new(ui, repo, patch, *args, **opts):
2182 def new(ui, repo, patch, *args, **opts):
2182 """create a new patch
2183 """create a new patch
2183
2184
2184 qnew creates a new patch on top of the currently-applied patch (if
2185 qnew creates a new patch on top of the currently-applied patch (if
2185 any). The patch will be initialized with any outstanding changes
2186 any). The patch will be initialized with any outstanding changes
2186 in the working directory. You may also use -I/--include,
2187 in the working directory. You may also use -I/--include,
2187 -X/--exclude, and/or a list of files after the patch name to add
2188 -X/--exclude, and/or a list of files after the patch name to add
2188 only changes to matching files to the new patch, leaving the rest
2189 only changes to matching files to the new patch, leaving the rest
2189 as uncommitted modifications.
2190 as uncommitted modifications.
2190
2191
2191 -u/--user and -d/--date can be used to set the (given) user and
2192 -u/--user and -d/--date can be used to set the (given) user and
2192 date, respectively. -U/--currentuser and -D/--currentdate set user
2193 date, respectively. -U/--currentuser and -D/--currentdate set user
2193 to current user and date to current date.
2194 to current user and date to current date.
2194
2195
2195 -e/--edit, -m/--message or -l/--logfile set the patch header as
2196 -e/--edit, -m/--message or -l/--logfile set the patch header as
2196 well as the commit message. If none is specified, the header is
2197 well as the commit message. If none is specified, the header is
2197 empty and the commit message is '[mq]: PATCH'.
2198 empty and the commit message is '[mq]: PATCH'.
2198
2199
2199 Use the -g/--git option to keep the patch in the git extended diff
2200 Use the -g/--git option to keep the patch in the git extended diff
2200 format. Read the diffs help topic for more information on why this
2201 format. Read the diffs help topic for more information on why this
2201 is important for preserving permission changes and copy/rename
2202 is important for preserving permission changes and copy/rename
2202 information.
2203 information.
2203
2204
2204 Returns 0 on successful creation of a new patch.
2205 Returns 0 on successful creation of a new patch.
2205 """
2206 """
2206 msg = cmdutil.logmessage(ui, opts)
2207 msg = cmdutil.logmessage(ui, opts)
2207 def getmsg():
2208 def getmsg():
2208 return ui.edit(msg, opts.get('user') or ui.username())
2209 return ui.edit(msg, opts.get('user') or ui.username())
2209 q = repo.mq
2210 q = repo.mq
2210 opts['msg'] = msg
2211 opts['msg'] = msg
2211 if opts.get('edit'):
2212 if opts.get('edit'):
2212 opts['msg'] = getmsg
2213 opts['msg'] = getmsg
2213 else:
2214 else:
2214 opts['msg'] = msg
2215 opts['msg'] = msg
2215 setupheaderopts(ui, opts)
2216 setupheaderopts(ui, opts)
2216 q.new(repo, patch, *args, **opts)
2217 q.new(repo, patch, *args, **opts)
2217 q.savedirty()
2218 q.savedirty()
2218 return 0
2219 return 0
2219
2220
2220 @command("^qrefresh",
2221 @command("^qrefresh",
2221 [('e', 'edit', None, _('edit commit message')),
2222 [('e', 'edit', None, _('edit commit message')),
2222 ('g', 'git', None, _('use git extended diff format')),
2223 ('g', 'git', None, _('use git extended diff format')),
2223 ('s', 'short', None,
2224 ('s', 'short', None,
2224 _('refresh only files already in the patch and specified files')),
2225 _('refresh only files already in the patch and specified files')),
2225 ('U', 'currentuser', None,
2226 ('U', 'currentuser', None,
2226 _('add/update author field in patch with current user')),
2227 _('add/update author field in patch with current user')),
2227 ('u', 'user', '',
2228 ('u', 'user', '',
2228 _('add/update author field in patch with given user'), _('USER')),
2229 _('add/update author field in patch with given user'), _('USER')),
2229 ('D', 'currentdate', None,
2230 ('D', 'currentdate', None,
2230 _('add/update date field in patch with current date')),
2231 _('add/update date field in patch with current date')),
2231 ('d', 'date', '',
2232 ('d', 'date', '',
2232 _('add/update date field in patch with given date'), _('DATE'))
2233 _('add/update date field in patch with given date'), _('DATE'))
2233 ] + commands.walkopts + commands.commitopts,
2234 ] + commands.walkopts + commands.commitopts,
2234 _('hg qrefresh [-I] [-X] [-e] [-m TEXT] [-l FILE] [-s] [FILE]...'))
2235 _('hg qrefresh [-I] [-X] [-e] [-m TEXT] [-l FILE] [-s] [FILE]...'))
2235 def refresh(ui, repo, *pats, **opts):
2236 def refresh(ui, repo, *pats, **opts):
2236 """update the current patch
2237 """update the current patch
2237
2238
2238 If any file patterns are provided, the refreshed patch will
2239 If any file patterns are provided, the refreshed patch will
2239 contain only the modifications that match those patterns; the
2240 contain only the modifications that match those patterns; the
2240 remaining modifications will remain in the working directory.
2241 remaining modifications will remain in the working directory.
2241
2242
2242 If -s/--short is specified, files currently included in the patch
2243 If -s/--short is specified, files currently included in the patch
2243 will be refreshed just like matched files and remain in the patch.
2244 will be refreshed just like matched files and remain in the patch.
2244
2245
2245 If -e/--edit is specified, Mercurial will start your configured editor for
2246 If -e/--edit is specified, Mercurial will start your configured editor for
2246 you to enter a message. In case qrefresh fails, you will find a backup of
2247 you to enter a message. In case qrefresh fails, you will find a backup of
2247 your message in ``.hg/last-message.txt``.
2248 your message in ``.hg/last-message.txt``.
2248
2249
2249 hg add/remove/copy/rename work as usual, though you might want to
2250 hg add/remove/copy/rename work as usual, though you might want to
2250 use git-style patches (-g/--git or [diff] git=1) to track copies
2251 use git-style patches (-g/--git or [diff] git=1) to track copies
2251 and renames. See the diffs help topic for more information on the
2252 and renames. See the diffs help topic for more information on the
2252 git diff format.
2253 git diff format.
2253
2254
2254 Returns 0 on success.
2255 Returns 0 on success.
2255 """
2256 """
2256 q = repo.mq
2257 q = repo.mq
2257 message = cmdutil.logmessage(ui, opts)
2258 message = cmdutil.logmessage(ui, opts)
2258 if opts.get('edit'):
2259 if opts.get('edit'):
2259 if not q.applied:
2260 if not q.applied:
2260 ui.write(_("no patches applied\n"))
2261 ui.write(_("no patches applied\n"))
2261 return 1
2262 return 1
2262 if message:
2263 if message:
2263 raise util.Abort(_('option "-e" incompatible with "-m" or "-l"'))
2264 raise util.Abort(_('option "-e" incompatible with "-m" or "-l"'))
2264 patch = q.applied[-1].name
2265 patch = q.applied[-1].name
2265 ph = patchheader(q.join(patch), q.plainmode)
2266 ph = patchheader(q.join(patch), q.plainmode)
2266 message = ui.edit('\n'.join(ph.message), ph.user or ui.username())
2267 message = ui.edit('\n'.join(ph.message), ph.user or ui.username())
2267 # We don't want to lose the patch message if qrefresh fails (issue2062)
2268 # We don't want to lose the patch message if qrefresh fails (issue2062)
2268 repo.savecommitmessage(message)
2269 repo.savecommitmessage(message)
2269 setupheaderopts(ui, opts)
2270 setupheaderopts(ui, opts)
2270 wlock = repo.wlock()
2271 wlock = repo.wlock()
2271 try:
2272 try:
2272 ret = q.refresh(repo, pats, msg=message, **opts)
2273 ret = q.refresh(repo, pats, msg=message, **opts)
2273 q.savedirty()
2274 q.savedirty()
2274 return ret
2275 return ret
2275 finally:
2276 finally:
2276 wlock.release()
2277 wlock.release()
2277
2278
2278 @command("^qdiff",
2279 @command("^qdiff",
2279 commands.diffopts + commands.diffopts2 + commands.walkopts,
2280 commands.diffopts + commands.diffopts2 + commands.walkopts,
2280 _('hg qdiff [OPTION]... [FILE]...'))
2281 _('hg qdiff [OPTION]... [FILE]...'))
2281 def diff(ui, repo, *pats, **opts):
2282 def diff(ui, repo, *pats, **opts):
2282 """diff of the current patch and subsequent modifications
2283 """diff of the current patch and subsequent modifications
2283
2284
2284 Shows a diff which includes the current patch as well as any
2285 Shows a diff which includes the current patch as well as any
2285 changes which have been made in the working directory since the
2286 changes which have been made in the working directory since the
2286 last refresh (thus showing what the current patch would become
2287 last refresh (thus showing what the current patch would become
2287 after a qrefresh).
2288 after a qrefresh).
2288
2289
2289 Use :hg:`diff` if you only want to see the changes made since the
2290 Use :hg:`diff` if you only want to see the changes made since the
2290 last qrefresh, or :hg:`export qtip` if you want to see changes
2291 last qrefresh, or :hg:`export qtip` if you want to see changes
2291 made by the current patch without including changes made since the
2292 made by the current patch without including changes made since the
2292 qrefresh.
2293 qrefresh.
2293
2294
2294 Returns 0 on success.
2295 Returns 0 on success.
2295 """
2296 """
2296 repo.mq.diff(repo, pats, opts)
2297 repo.mq.diff(repo, pats, opts)
2297 return 0
2298 return 0
2298
2299
2299 @command('qfold',
2300 @command('qfold',
2300 [('e', 'edit', None, _('edit patch header')),
2301 [('e', 'edit', None, _('edit patch header')),
2301 ('k', 'keep', None, _('keep folded patch files')),
2302 ('k', 'keep', None, _('keep folded patch files')),
2302 ] + commands.commitopts,
2303 ] + commands.commitopts,
2303 _('hg qfold [-e] [-k] [-m TEXT] [-l FILE] PATCH...'))
2304 _('hg qfold [-e] [-k] [-m TEXT] [-l FILE] PATCH...'))
2304 def fold(ui, repo, *files, **opts):
2305 def fold(ui, repo, *files, **opts):
2305 """fold the named patches into the current patch
2306 """fold the named patches into the current patch
2306
2307
2307 Patches must not yet be applied. Each patch will be successively
2308 Patches must not yet be applied. Each patch will be successively
2308 applied to the current patch in the order given. If all the
2309 applied to the current patch in the order given. If all the
2309 patches apply successfully, the current patch will be refreshed
2310 patches apply successfully, the current patch will be refreshed
2310 with the new cumulative patch, and the folded patches will be
2311 with the new cumulative patch, and the folded patches will be
2311 deleted. With -k/--keep, the folded patch files will not be
2312 deleted. With -k/--keep, the folded patch files will not be
2312 removed afterwards.
2313 removed afterwards.
2313
2314
2314 The header for each folded patch will be concatenated with the
2315 The header for each folded patch will be concatenated with the
2315 current patch header, separated by a line of ``* * *``.
2316 current patch header, separated by a line of ``* * *``.
2316
2317
2317 Returns 0 on success."""
2318 Returns 0 on success."""
2318
2319
2319 q = repo.mq
2320 q = repo.mq
2320
2321
2321 if not files:
2322 if not files:
2322 raise util.Abort(_('qfold requires at least one patch name'))
2323 raise util.Abort(_('qfold requires at least one patch name'))
2323 if not q.checktoppatch(repo)[0]:
2324 if not q.checktoppatch(repo)[0]:
2324 raise util.Abort(_('no patches applied'))
2325 raise util.Abort(_('no patches applied'))
2325 q.checklocalchanges(repo)
2326 q.checklocalchanges(repo)
2326
2327
2327 message = cmdutil.logmessage(ui, opts)
2328 message = cmdutil.logmessage(ui, opts)
2328 if opts.get('edit'):
2329 if opts.get('edit'):
2329 if message:
2330 if message:
2330 raise util.Abort(_('option "-e" incompatible with "-m" or "-l"'))
2331 raise util.Abort(_('option "-e" incompatible with "-m" or "-l"'))
2331
2332
2332 parent = q.lookup('qtip')
2333 parent = q.lookup('qtip')
2333 patches = []
2334 patches = []
2334 messages = []
2335 messages = []
2335 for f in files:
2336 for f in files:
2336 p = q.lookup(f)
2337 p = q.lookup(f)
2337 if p in patches or p == parent:
2338 if p in patches or p == parent:
2338 ui.warn(_('Skipping already folded patch %s\n') % p)
2339 ui.warn(_('Skipping already folded patch %s\n') % p)
2339 if q.isapplied(p):
2340 if q.isapplied(p):
2340 raise util.Abort(_('qfold cannot fold already applied patch %s') % p)
2341 raise util.Abort(_('qfold cannot fold already applied patch %s') % p)
2341 patches.append(p)
2342 patches.append(p)
2342
2343
2343 for p in patches:
2344 for p in patches:
2344 if not message:
2345 if not message:
2345 ph = patchheader(q.join(p), q.plainmode)
2346 ph = patchheader(q.join(p), q.plainmode)
2346 if ph.message:
2347 if ph.message:
2347 messages.append(ph.message)
2348 messages.append(ph.message)
2348 pf = q.join(p)
2349 pf = q.join(p)
2349 (patchsuccess, files, fuzz) = q.patch(repo, pf)
2350 (patchsuccess, files, fuzz) = q.patch(repo, pf)
2350 if not patchsuccess:
2351 if not patchsuccess:
2351 raise util.Abort(_('error folding patch %s') % p)
2352 raise util.Abort(_('error folding patch %s') % p)
2352
2353
2353 if not message:
2354 if not message:
2354 ph = patchheader(q.join(parent), q.plainmode)
2355 ph = patchheader(q.join(parent), q.plainmode)
2355 message, user = ph.message, ph.user
2356 message, user = ph.message, ph.user
2356 for msg in messages:
2357 for msg in messages:
2357 message.append('* * *')
2358 message.append('* * *')
2358 message.extend(msg)
2359 message.extend(msg)
2359 message = '\n'.join(message)
2360 message = '\n'.join(message)
2360
2361
2361 if opts.get('edit'):
2362 if opts.get('edit'):
2362 message = ui.edit(message, user or ui.username())
2363 message = ui.edit(message, user or ui.username())
2363
2364
2364 diffopts = q.patchopts(q.diffopts(), *patches)
2365 diffopts = q.patchopts(q.diffopts(), *patches)
2365 wlock = repo.wlock()
2366 wlock = repo.wlock()
2366 try:
2367 try:
2367 q.refresh(repo, msg=message, git=diffopts.git)
2368 q.refresh(repo, msg=message, git=diffopts.git)
2368 q.delete(repo, patches, opts)
2369 q.delete(repo, patches, opts)
2369 q.savedirty()
2370 q.savedirty()
2370 finally:
2371 finally:
2371 wlock.release()
2372 wlock.release()
2372
2373
2373 @command("qgoto",
2374 @command("qgoto",
2374 [('f', 'force', None, _('overwrite any local changes'))],
2375 [('f', 'force', None, _('overwrite any local changes'))],
2375 _('hg qgoto [OPTION]... PATCH'))
2376 _('hg qgoto [OPTION]... PATCH'))
2376 def goto(ui, repo, patch, **opts):
2377 def goto(ui, repo, patch, **opts):
2377 '''push or pop patches until named patch is at top of stack
2378 '''push or pop patches until named patch is at top of stack
2378
2379
2379 Returns 0 on success.'''
2380 Returns 0 on success.'''
2380 q = repo.mq
2381 q = repo.mq
2381 patch = q.lookup(patch)
2382 patch = q.lookup(patch)
2382 if q.isapplied(patch):
2383 if q.isapplied(patch):
2383 ret = q.pop(repo, patch, force=opts.get('force'))
2384 ret = q.pop(repo, patch, force=opts.get('force'))
2384 else:
2385 else:
2385 ret = q.push(repo, patch, force=opts.get('force'))
2386 ret = q.push(repo, patch, force=opts.get('force'))
2386 q.savedirty()
2387 q.savedirty()
2387 return ret
2388 return ret
2388
2389
2389 @command("qguard",
2390 @command("qguard",
2390 [('l', 'list', None, _('list all patches and guards')),
2391 [('l', 'list', None, _('list all patches and guards')),
2391 ('n', 'none', None, _('drop all guards'))],
2392 ('n', 'none', None, _('drop all guards'))],
2392 _('hg qguard [-l] [-n] [PATCH] [-- [+GUARD]... [-GUARD]...]'))
2393 _('hg qguard [-l] [-n] [PATCH] [-- [+GUARD]... [-GUARD]...]'))
2393 def guard(ui, repo, *args, **opts):
2394 def guard(ui, repo, *args, **opts):
2394 '''set or print guards for a patch
2395 '''set or print guards for a patch
2395
2396
2396 Guards control whether a patch can be pushed. A patch with no
2397 Guards control whether a patch can be pushed. A patch with no
2397 guards is always pushed. A patch with a positive guard ("+foo") is
2398 guards is always pushed. A patch with a positive guard ("+foo") is
2398 pushed only if the :hg:`qselect` command has activated it. A patch with
2399 pushed only if the :hg:`qselect` command has activated it. A patch with
2399 a negative guard ("-foo") is never pushed if the :hg:`qselect` command
2400 a negative guard ("-foo") is never pushed if the :hg:`qselect` command
2400 has activated it.
2401 has activated it.
2401
2402
2402 With no arguments, print the currently active guards.
2403 With no arguments, print the currently active guards.
2403 With arguments, set guards for the named patch.
2404 With arguments, set guards for the named patch.
2404
2405
2405 .. note::
2406 .. note::
2406 Specifying negative guards now requires '--'.
2407 Specifying negative guards now requires '--'.
2407
2408
2408 To set guards on another patch::
2409 To set guards on another patch::
2409
2410
2410 hg qguard other.patch -- +2.6.17 -stable
2411 hg qguard other.patch -- +2.6.17 -stable
2411
2412
2412 Returns 0 on success.
2413 Returns 0 on success.
2413 '''
2414 '''
2414 def status(idx):
2415 def status(idx):
2415 guards = q.seriesguards[idx] or ['unguarded']
2416 guards = q.seriesguards[idx] or ['unguarded']
2416 if q.series[idx] in applied:
2417 if q.series[idx] in applied:
2417 state = 'applied'
2418 state = 'applied'
2418 elif q.pushable(idx)[0]:
2419 elif q.pushable(idx)[0]:
2419 state = 'unapplied'
2420 state = 'unapplied'
2420 else:
2421 else:
2421 state = 'guarded'
2422 state = 'guarded'
2422 label = 'qguard.patch qguard.%s qseries.%s' % (state, state)
2423 label = 'qguard.patch qguard.%s qseries.%s' % (state, state)
2423 ui.write('%s: ' % ui.label(q.series[idx], label))
2424 ui.write('%s: ' % ui.label(q.series[idx], label))
2424
2425
2425 for i, guard in enumerate(guards):
2426 for i, guard in enumerate(guards):
2426 if guard.startswith('+'):
2427 if guard.startswith('+'):
2427 ui.write(guard, label='qguard.positive')
2428 ui.write(guard, label='qguard.positive')
2428 elif guard.startswith('-'):
2429 elif guard.startswith('-'):
2429 ui.write(guard, label='qguard.negative')
2430 ui.write(guard, label='qguard.negative')
2430 else:
2431 else:
2431 ui.write(guard, label='qguard.unguarded')
2432 ui.write(guard, label='qguard.unguarded')
2432 if i != len(guards) - 1:
2433 if i != len(guards) - 1:
2433 ui.write(' ')
2434 ui.write(' ')
2434 ui.write('\n')
2435 ui.write('\n')
2435 q = repo.mq
2436 q = repo.mq
2436 applied = set(p.name for p in q.applied)
2437 applied = set(p.name for p in q.applied)
2437 patch = None
2438 patch = None
2438 args = list(args)
2439 args = list(args)
2439 if opts.get('list'):
2440 if opts.get('list'):
2440 if args or opts.get('none'):
2441 if args or opts.get('none'):
2441 raise util.Abort(_('cannot mix -l/--list with options or arguments'))
2442 raise util.Abort(_('cannot mix -l/--list with options or arguments'))
2442 for i in xrange(len(q.series)):
2443 for i in xrange(len(q.series)):
2443 status(i)
2444 status(i)
2444 return
2445 return
2445 if not args or args[0][0:1] in '-+':
2446 if not args or args[0][0:1] in '-+':
2446 if not q.applied:
2447 if not q.applied:
2447 raise util.Abort(_('no patches applied'))
2448 raise util.Abort(_('no patches applied'))
2448 patch = q.applied[-1].name
2449 patch = q.applied[-1].name
2449 if patch is None and args[0][0:1] not in '-+':
2450 if patch is None and args[0][0:1] not in '-+':
2450 patch = args.pop(0)
2451 patch = args.pop(0)
2451 if patch is None:
2452 if patch is None:
2452 raise util.Abort(_('no patch to work with'))
2453 raise util.Abort(_('no patch to work with'))
2453 if args or opts.get('none'):
2454 if args or opts.get('none'):
2454 idx = q.findseries(patch)
2455 idx = q.findseries(patch)
2455 if idx is None:
2456 if idx is None:
2456 raise util.Abort(_('no patch named %s') % patch)
2457 raise util.Abort(_('no patch named %s') % patch)
2457 q.setguards(idx, args)
2458 q.setguards(idx, args)
2458 q.savedirty()
2459 q.savedirty()
2459 else:
2460 else:
2460 status(q.series.index(q.lookup(patch)))
2461 status(q.series.index(q.lookup(patch)))
2461
2462
2462 @command("qheader", [], _('hg qheader [PATCH]'))
2463 @command("qheader", [], _('hg qheader [PATCH]'))
2463 def header(ui, repo, patch=None):
2464 def header(ui, repo, patch=None):
2464 """print the header of the topmost or specified patch
2465 """print the header of the topmost or specified patch
2465
2466
2466 Returns 0 on success."""
2467 Returns 0 on success."""
2467 q = repo.mq
2468 q = repo.mq
2468
2469
2469 if patch:
2470 if patch:
2470 patch = q.lookup(patch)
2471 patch = q.lookup(patch)
2471 else:
2472 else:
2472 if not q.applied:
2473 if not q.applied:
2473 ui.write(_('no patches applied\n'))
2474 ui.write(_('no patches applied\n'))
2474 return 1
2475 return 1
2475 patch = q.lookup('qtip')
2476 patch = q.lookup('qtip')
2476 ph = patchheader(q.join(patch), q.plainmode)
2477 ph = patchheader(q.join(patch), q.plainmode)
2477
2478
2478 ui.write('\n'.join(ph.message) + '\n')
2479 ui.write('\n'.join(ph.message) + '\n')
2479
2480
2480 def lastsavename(path):
2481 def lastsavename(path):
2481 (directory, base) = os.path.split(path)
2482 (directory, base) = os.path.split(path)
2482 names = os.listdir(directory)
2483 names = os.listdir(directory)
2483 namere = re.compile("%s.([0-9]+)" % base)
2484 namere = re.compile("%s.([0-9]+)" % base)
2484 maxindex = None
2485 maxindex = None
2485 maxname = None
2486 maxname = None
2486 for f in names:
2487 for f in names:
2487 m = namere.match(f)
2488 m = namere.match(f)
2488 if m:
2489 if m:
2489 index = int(m.group(1))
2490 index = int(m.group(1))
2490 if maxindex is None or index > maxindex:
2491 if maxindex is None or index > maxindex:
2491 maxindex = index
2492 maxindex = index
2492 maxname = f
2493 maxname = f
2493 if maxname:
2494 if maxname:
2494 return (os.path.join(directory, maxname), maxindex)
2495 return (os.path.join(directory, maxname), maxindex)
2495 return (None, None)
2496 return (None, None)
2496
2497
2497 def savename(path):
2498 def savename(path):
2498 (last, index) = lastsavename(path)
2499 (last, index) = lastsavename(path)
2499 if last is None:
2500 if last is None:
2500 index = 0
2501 index = 0
2501 newpath = path + ".%d" % (index + 1)
2502 newpath = path + ".%d" % (index + 1)
2502 return newpath
2503 return newpath
2503
2504
2504 @command("^qpush",
2505 @command("^qpush",
2505 [('f', 'force', None, _('apply on top of local changes')),
2506 [('f', 'force', None, _('apply on top of local changes')),
2506 ('e', 'exact', None, _('apply the target patch to its recorded parent')),
2507 ('e', 'exact', None, _('apply the target patch to its recorded parent')),
2507 ('l', 'list', None, _('list patch name in commit text')),
2508 ('l', 'list', None, _('list patch name in commit text')),
2508 ('a', 'all', None, _('apply all patches')),
2509 ('a', 'all', None, _('apply all patches')),
2509 ('m', 'merge', None, _('merge from another queue (DEPRECATED)')),
2510 ('m', 'merge', None, _('merge from another queue (DEPRECATED)')),
2510 ('n', 'name', '',
2511 ('n', 'name', '',
2511 _('merge queue name (DEPRECATED)'), _('NAME')),
2512 _('merge queue name (DEPRECATED)'), _('NAME')),
2512 ('', 'move', None, _('reorder patch series and apply only the patch'))],
2513 ('', 'move', None, _('reorder patch series and apply only the patch'))],
2513 _('hg qpush [-f] [-l] [-a] [--move] [PATCH | INDEX]'))
2514 _('hg qpush [-f] [-l] [-a] [--move] [PATCH | INDEX]'))
2514 def push(ui, repo, patch=None, **opts):
2515 def push(ui, repo, patch=None, **opts):
2515 """push the next patch onto the stack
2516 """push the next patch onto the stack
2516
2517
2517 When -f/--force is applied, all local changes in patched files
2518 When -f/--force is applied, all local changes in patched files
2518 will be lost.
2519 will be lost.
2519
2520
2520 Return 0 on success.
2521 Return 0 on success.
2521 """
2522 """
2522 q = repo.mq
2523 q = repo.mq
2523 mergeq = None
2524 mergeq = None
2524
2525
2525 if opts.get('merge'):
2526 if opts.get('merge'):
2526 if opts.get('name'):
2527 if opts.get('name'):
2527 newpath = repo.join(opts.get('name'))
2528 newpath = repo.join(opts.get('name'))
2528 else:
2529 else:
2529 newpath, i = lastsavename(q.path)
2530 newpath, i = lastsavename(q.path)
2530 if not newpath:
2531 if not newpath:
2531 ui.warn(_("no saved queues found, please use -n\n"))
2532 ui.warn(_("no saved queues found, please use -n\n"))
2532 return 1
2533 return 1
2533 mergeq = queue(ui, repo.join(""), newpath)
2534 mergeq = queue(ui, repo.join(""), newpath)
2534 ui.warn(_("merging with queue at: %s\n") % mergeq.path)
2535 ui.warn(_("merging with queue at: %s\n") % mergeq.path)
2535 ret = q.push(repo, patch, force=opts.get('force'), list=opts.get('list'),
2536 ret = q.push(repo, patch, force=opts.get('force'), list=opts.get('list'),
2536 mergeq=mergeq, all=opts.get('all'), move=opts.get('move'),
2537 mergeq=mergeq, all=opts.get('all'), move=opts.get('move'),
2537 exact=opts.get('exact'))
2538 exact=opts.get('exact'))
2538 return ret
2539 return ret
2539
2540
2540 @command("^qpop",
2541 @command("^qpop",
2541 [('a', 'all', None, _('pop all patches')),
2542 [('a', 'all', None, _('pop all patches')),
2542 ('n', 'name', '',
2543 ('n', 'name', '',
2543 _('queue name to pop (DEPRECATED)'), _('NAME')),
2544 _('queue name to pop (DEPRECATED)'), _('NAME')),
2544 ('f', 'force', None, _('forget any local changes to patched files'))],
2545 ('f', 'force', None, _('forget any local changes to patched files'))],
2545 _('hg qpop [-a] [-f] [PATCH | INDEX]'))
2546 _('hg qpop [-a] [-f] [PATCH | INDEX]'))
2546 def pop(ui, repo, patch=None, **opts):
2547 def pop(ui, repo, patch=None, **opts):
2547 """pop the current patch off the stack
2548 """pop the current patch off the stack
2548
2549
2549 By default, pops off the top of the patch stack. If given a patch
2550 By default, pops off the top of the patch stack. If given a patch
2550 name, keeps popping off patches until the named patch is at the
2551 name, keeps popping off patches until the named patch is at the
2551 top of the stack.
2552 top of the stack.
2552
2553
2553 Return 0 on success.
2554 Return 0 on success.
2554 """
2555 """
2555 localupdate = True
2556 localupdate = True
2556 if opts.get('name'):
2557 if opts.get('name'):
2557 q = queue(ui, repo.join(""), repo.join(opts.get('name')))
2558 q = queue(ui, repo.join(""), repo.join(opts.get('name')))
2558 ui.warn(_('using patch queue: %s\n') % q.path)
2559 ui.warn(_('using patch queue: %s\n') % q.path)
2559 localupdate = False
2560 localupdate = False
2560 else:
2561 else:
2561 q = repo.mq
2562 q = repo.mq
2562 ret = q.pop(repo, patch, force=opts.get('force'), update=localupdate,
2563 ret = q.pop(repo, patch, force=opts.get('force'), update=localupdate,
2563 all=opts.get('all'))
2564 all=opts.get('all'))
2564 q.savedirty()
2565 q.savedirty()
2565 return ret
2566 return ret
2566
2567
2567 @command("qrename|qmv", [], _('hg qrename PATCH1 [PATCH2]'))
2568 @command("qrename|qmv", [], _('hg qrename PATCH1 [PATCH2]'))
2568 def rename(ui, repo, patch, name=None, **opts):
2569 def rename(ui, repo, patch, name=None, **opts):
2569 """rename a patch
2570 """rename a patch
2570
2571
2571 With one argument, renames the current patch to PATCH1.
2572 With one argument, renames the current patch to PATCH1.
2572 With two arguments, renames PATCH1 to PATCH2.
2573 With two arguments, renames PATCH1 to PATCH2.
2573
2574
2574 Returns 0 on success."""
2575 Returns 0 on success."""
2575
2576
2576 q = repo.mq
2577 q = repo.mq
2577
2578
2578 if not name:
2579 if not name:
2579 name = patch
2580 name = patch
2580 patch = None
2581 patch = None
2581
2582
2582 if patch:
2583 if patch:
2583 patch = q.lookup(patch)
2584 patch = q.lookup(patch)
2584 else:
2585 else:
2585 if not q.applied:
2586 if not q.applied:
2586 ui.write(_('no patches applied\n'))
2587 ui.write(_('no patches applied\n'))
2587 return
2588 return
2588 patch = q.lookup('qtip')
2589 patch = q.lookup('qtip')
2589 absdest = q.join(name)
2590 absdest = q.join(name)
2590 if os.path.isdir(absdest):
2591 if os.path.isdir(absdest):
2591 name = normname(os.path.join(name, os.path.basename(patch)))
2592 name = normname(os.path.join(name, os.path.basename(patch)))
2592 absdest = q.join(name)
2593 absdest = q.join(name)
2593 q.checkpatchname(name)
2594 q.checkpatchname(name)
2594
2595
2595 ui.note(_('renaming %s to %s\n') % (patch, name))
2596 ui.note(_('renaming %s to %s\n') % (patch, name))
2596 i = q.findseries(patch)
2597 i = q.findseries(patch)
2597 guards = q.guard_re.findall(q.fullseries[i])
2598 guards = q.guard_re.findall(q.fullseries[i])
2598 q.fullseries[i] = name + ''.join([' #' + g for g in guards])
2599 q.fullseries[i] = name + ''.join([' #' + g for g in guards])
2599 q.parseseries()
2600 q.parseseries()
2600 q.seriesdirty = 1
2601 q.seriesdirty = 1
2601
2602
2602 info = q.isapplied(patch)
2603 info = q.isapplied(patch)
2603 if info:
2604 if info:
2604 q.applied[info[0]] = statusentry(info[1], name)
2605 q.applied[info[0]] = statusentry(info[1], name)
2605 q.applieddirty = 1
2606 q.applieddirty = 1
2606
2607
2607 destdir = os.path.dirname(absdest)
2608 destdir = os.path.dirname(absdest)
2608 if not os.path.isdir(destdir):
2609 if not os.path.isdir(destdir):
2609 os.makedirs(destdir)
2610 os.makedirs(destdir)
2610 util.rename(q.join(patch), absdest)
2611 util.rename(q.join(patch), absdest)
2611 r = q.qrepo()
2612 r = q.qrepo()
2612 if r and patch in r.dirstate:
2613 if r and patch in r.dirstate:
2613 wctx = r[None]
2614 wctx = r[None]
2614 wlock = r.wlock()
2615 wlock = r.wlock()
2615 try:
2616 try:
2616 if r.dirstate[patch] == 'a':
2617 if r.dirstate[patch] == 'a':
2617 r.dirstate.drop(patch)
2618 r.dirstate.drop(patch)
2618 r.dirstate.add(name)
2619 r.dirstate.add(name)
2619 else:
2620 else:
2620 wctx.copy(patch, name)
2621 wctx.copy(patch, name)
2621 wctx.forget([patch])
2622 wctx.forget([patch])
2622 finally:
2623 finally:
2623 wlock.release()
2624 wlock.release()
2624
2625
2625 q.savedirty()
2626 q.savedirty()
2626
2627
2627 @command("qrestore",
2628 @command("qrestore",
2628 [('d', 'delete', None, _('delete save entry')),
2629 [('d', 'delete', None, _('delete save entry')),
2629 ('u', 'update', None, _('update queue working directory'))],
2630 ('u', 'update', None, _('update queue working directory'))],
2630 _('hg qrestore [-d] [-u] REV'))
2631 _('hg qrestore [-d] [-u] REV'))
2631 def restore(ui, repo, rev, **opts):
2632 def restore(ui, repo, rev, **opts):
2632 """restore the queue state saved by a revision (DEPRECATED)
2633 """restore the queue state saved by a revision (DEPRECATED)
2633
2634
2634 This command is deprecated, use :hg:`rebase` instead."""
2635 This command is deprecated, use :hg:`rebase` instead."""
2635 rev = repo.lookup(rev)
2636 rev = repo.lookup(rev)
2636 q = repo.mq
2637 q = repo.mq
2637 q.restore(repo, rev, delete=opts.get('delete'),
2638 q.restore(repo, rev, delete=opts.get('delete'),
2638 qupdate=opts.get('update'))
2639 qupdate=opts.get('update'))
2639 q.savedirty()
2640 q.savedirty()
2640 return 0
2641 return 0
2641
2642
2642 @command("qsave",
2643 @command("qsave",
2643 [('c', 'copy', None, _('copy patch directory')),
2644 [('c', 'copy', None, _('copy patch directory')),
2644 ('n', 'name', '',
2645 ('n', 'name', '',
2645 _('copy directory name'), _('NAME')),
2646 _('copy directory name'), _('NAME')),
2646 ('e', 'empty', None, _('clear queue status file')),
2647 ('e', 'empty', None, _('clear queue status file')),
2647 ('f', 'force', None, _('force copy'))] + commands.commitopts,
2648 ('f', 'force', None, _('force copy'))] + commands.commitopts,
2648 _('hg qsave [-m TEXT] [-l FILE] [-c] [-n NAME] [-e] [-f]'))
2649 _('hg qsave [-m TEXT] [-l FILE] [-c] [-n NAME] [-e] [-f]'))
2649 def save(ui, repo, **opts):
2650 def save(ui, repo, **opts):
2650 """save current queue state (DEPRECATED)
2651 """save current queue state (DEPRECATED)
2651
2652
2652 This command is deprecated, use :hg:`rebase` instead."""
2653 This command is deprecated, use :hg:`rebase` instead."""
2653 q = repo.mq
2654 q = repo.mq
2654 message = cmdutil.logmessage(ui, opts)
2655 message = cmdutil.logmessage(ui, opts)
2655 ret = q.save(repo, msg=message)
2656 ret = q.save(repo, msg=message)
2656 if ret:
2657 if ret:
2657 return ret
2658 return ret
2658 q.savedirty()
2659 q.savedirty()
2659 if opts.get('copy'):
2660 if opts.get('copy'):
2660 path = q.path
2661 path = q.path
2661 if opts.get('name'):
2662 if opts.get('name'):
2662 newpath = os.path.join(q.basepath, opts.get('name'))
2663 newpath = os.path.join(q.basepath, opts.get('name'))
2663 if os.path.exists(newpath):
2664 if os.path.exists(newpath):
2664 if not os.path.isdir(newpath):
2665 if not os.path.isdir(newpath):
2665 raise util.Abort(_('destination %s exists and is not '
2666 raise util.Abort(_('destination %s exists and is not '
2666 'a directory') % newpath)
2667 'a directory') % newpath)
2667 if not opts.get('force'):
2668 if not opts.get('force'):
2668 raise util.Abort(_('destination %s exists, '
2669 raise util.Abort(_('destination %s exists, '
2669 'use -f to force') % newpath)
2670 'use -f to force') % newpath)
2670 else:
2671 else:
2671 newpath = savename(path)
2672 newpath = savename(path)
2672 ui.warn(_("copy %s to %s\n") % (path, newpath))
2673 ui.warn(_("copy %s to %s\n") % (path, newpath))
2673 util.copyfiles(path, newpath)
2674 util.copyfiles(path, newpath)
2674 if opts.get('empty'):
2675 if opts.get('empty'):
2675 try:
2676 try:
2676 os.unlink(q.join(q.statuspath))
2677 os.unlink(q.join(q.statuspath))
2677 except:
2678 except:
2678 pass
2679 pass
2679 return 0
2680 return 0
2680
2681
2681 @command("strip",
2682 @command("strip",
2682 [
2683 [
2683 ('r', 'rev', [], _('strip specified revision (optional, '
2684 ('r', 'rev', [], _('strip specified revision (optional, '
2684 'can specify revisions without this '
2685 'can specify revisions without this '
2685 'option)'), _('REV')),
2686 'option)'), _('REV')),
2686 ('f', 'force', None, _('force removal of changesets, discard '
2687 ('f', 'force', None, _('force removal of changesets, discard '
2687 'uncommitted changes (no backup)')),
2688 'uncommitted changes (no backup)')),
2688 ('b', 'backup', None, _('bundle only changesets with local revision'
2689 ('b', 'backup', None, _('bundle only changesets with local revision'
2689 ' number greater than REV which are not'
2690 ' number greater than REV which are not'
2690 ' descendants of REV (DEPRECATED)')),
2691 ' descendants of REV (DEPRECATED)')),
2691 ('n', 'no-backup', None, _('no backups')),
2692 ('n', 'no-backup', None, _('no backups')),
2692 ('', 'nobackup', None, _('no backups (DEPRECATED)')),
2693 ('', 'nobackup', None, _('no backups (DEPRECATED)')),
2693 ('k', 'keep', None, _("do not modify working copy during strip"))],
2694 ('k', 'keep', None, _("do not modify working copy during strip"))],
2694 _('hg strip [-k] [-f] [-n] REV...'))
2695 _('hg strip [-k] [-f] [-n] REV...'))
2695 def strip(ui, repo, *revs, **opts):
2696 def strip(ui, repo, *revs, **opts):
2696 """strip changesets and all their descendants from the repository
2697 """strip changesets and all their descendants from the repository
2697
2698
2698 The strip command removes the specified changesets and all their
2699 The strip command removes the specified changesets and all their
2699 descendants. If the working directory has uncommitted changes, the
2700 descendants. If the working directory has uncommitted changes, the
2700 operation is aborted unless the --force flag is supplied, in which
2701 operation is aborted unless the --force flag is supplied, in which
2701 case changes will be discarded.
2702 case changes will be discarded.
2702
2703
2703 If a parent of the working directory is stripped, then the working
2704 If a parent of the working directory is stripped, then the working
2704 directory will automatically be updated to the most recent
2705 directory will automatically be updated to the most recent
2705 available ancestor of the stripped parent after the operation
2706 available ancestor of the stripped parent after the operation
2706 completes.
2707 completes.
2707
2708
2708 Any stripped changesets are stored in ``.hg/strip-backup`` as a
2709 Any stripped changesets are stored in ``.hg/strip-backup`` as a
2709 bundle (see :hg:`help bundle` and :hg:`help unbundle`). They can
2710 bundle (see :hg:`help bundle` and :hg:`help unbundle`). They can
2710 be restored by running :hg:`unbundle .hg/strip-backup/BUNDLE`,
2711 be restored by running :hg:`unbundle .hg/strip-backup/BUNDLE`,
2711 where BUNDLE is the bundle file created by the strip. Note that
2712 where BUNDLE is the bundle file created by the strip. Note that
2712 the local revision numbers will in general be different after the
2713 the local revision numbers will in general be different after the
2713 restore.
2714 restore.
2714
2715
2715 Use the --no-backup option to discard the backup bundle once the
2716 Use the --no-backup option to discard the backup bundle once the
2716 operation completes.
2717 operation completes.
2717
2718
2718 Return 0 on success.
2719 Return 0 on success.
2719 """
2720 """
2720 backup = 'all'
2721 backup = 'all'
2721 if opts.get('backup'):
2722 if opts.get('backup'):
2722 backup = 'strip'
2723 backup = 'strip'
2723 elif opts.get('no_backup') or opts.get('nobackup'):
2724 elif opts.get('no_backup') or opts.get('nobackup'):
2724 backup = 'none'
2725 backup = 'none'
2725
2726
2726 cl = repo.changelog
2727 cl = repo.changelog
2727 revs = list(revs) + opts.get('rev')
2728 revs = list(revs) + opts.get('rev')
2728 revs = set(scmutil.revrange(repo, revs))
2729 revs = set(scmutil.revrange(repo, revs))
2729 if not revs:
2730 if not revs:
2730 raise util.Abort(_('empty revision set'))
2731 raise util.Abort(_('empty revision set'))
2731
2732
2732 descendants = set(cl.descendants(*revs))
2733 descendants = set(cl.descendants(*revs))
2733 strippedrevs = revs.union(descendants)
2734 strippedrevs = revs.union(descendants)
2734 roots = revs.difference(descendants)
2735 roots = revs.difference(descendants)
2735
2736
2736 update = False
2737 update = False
2737 # if one of the wdir parent is stripped we'll need
2738 # if one of the wdir parent is stripped we'll need
2738 # to update away to an earlier revision
2739 # to update away to an earlier revision
2739 for p in repo.dirstate.parents():
2740 for p in repo.dirstate.parents():
2740 if p != nullid and cl.rev(p) in strippedrevs:
2741 if p != nullid and cl.rev(p) in strippedrevs:
2741 update = True
2742 update = True
2742 break
2743 break
2743
2744
2744 rootnodes = set(cl.node(r) for r in roots)
2745 rootnodes = set(cl.node(r) for r in roots)
2745
2746
2746 q = repo.mq
2747 q = repo.mq
2747 if q.applied:
2748 if q.applied:
2748 # refresh queue state if we're about to strip
2749 # refresh queue state if we're about to strip
2749 # applied patches
2750 # applied patches
2750 if cl.rev(repo.lookup('qtip')) in strippedrevs:
2751 if cl.rev(repo.lookup('qtip')) in strippedrevs:
2751 q.applieddirty = True
2752 q.applieddirty = True
2752 start = 0
2753 start = 0
2753 end = len(q.applied)
2754 end = len(q.applied)
2754 for i, statusentry in enumerate(q.applied):
2755 for i, statusentry in enumerate(q.applied):
2755 if statusentry.node in rootnodes:
2756 if statusentry.node in rootnodes:
2756 # if one of the stripped roots is an applied
2757 # if one of the stripped roots is an applied
2757 # patch, only part of the queue is stripped
2758 # patch, only part of the queue is stripped
2758 start = i
2759 start = i
2759 break
2760 break
2760 del q.applied[start:end]
2761 del q.applied[start:end]
2761 q.savedirty()
2762 q.savedirty()
2762
2763
2763 revs = list(rootnodes)
2764 revs = list(rootnodes)
2764 if update and opts.get('keep'):
2765 if update and opts.get('keep'):
2765 wlock = repo.wlock()
2766 wlock = repo.wlock()
2766 try:
2767 try:
2767 urev = repo.mq.qparents(repo, revs[0])
2768 urev = repo.mq.qparents(repo, revs[0])
2768 repo.dirstate.rebuild(urev, repo[urev].manifest())
2769 repo.dirstate.rebuild(urev, repo[urev].manifest())
2769 repo.dirstate.write()
2770 repo.dirstate.write()
2770 update = False
2771 update = False
2771 finally:
2772 finally:
2772 wlock.release()
2773 wlock.release()
2773
2774
2774 repo.mq.strip(repo, revs, backup=backup, update=update,
2775 repo.mq.strip(repo, revs, backup=backup, update=update,
2775 force=opts.get('force'))
2776 force=opts.get('force'))
2776 return 0
2777 return 0
2777
2778
2778 @command("qselect",
2779 @command("qselect",
2779 [('n', 'none', None, _('disable all guards')),
2780 [('n', 'none', None, _('disable all guards')),
2780 ('s', 'series', None, _('list all guards in series file')),
2781 ('s', 'series', None, _('list all guards in series file')),
2781 ('', 'pop', None, _('pop to before first guarded applied patch')),
2782 ('', 'pop', None, _('pop to before first guarded applied patch')),
2782 ('', 'reapply', None, _('pop, then reapply patches'))],
2783 ('', 'reapply', None, _('pop, then reapply patches'))],
2783 _('hg qselect [OPTION]... [GUARD]...'))
2784 _('hg qselect [OPTION]... [GUARD]...'))
2784 def select(ui, repo, *args, **opts):
2785 def select(ui, repo, *args, **opts):
2785 '''set or print guarded patches to push
2786 '''set or print guarded patches to push
2786
2787
2787 Use the :hg:`qguard` command to set or print guards on patch, then use
2788 Use the :hg:`qguard` command to set or print guards on patch, then use
2788 qselect to tell mq which guards to use. A patch will be pushed if
2789 qselect to tell mq which guards to use. A patch will be pushed if
2789 it has no guards or any positive guards match the currently
2790 it has no guards or any positive guards match the currently
2790 selected guard, but will not be pushed if any negative guards
2791 selected guard, but will not be pushed if any negative guards
2791 match the current guard. For example::
2792 match the current guard. For example::
2792
2793
2793 qguard foo.patch -- -stable (negative guard)
2794 qguard foo.patch -- -stable (negative guard)
2794 qguard bar.patch +stable (positive guard)
2795 qguard bar.patch +stable (positive guard)
2795 qselect stable
2796 qselect stable
2796
2797
2797 This activates the "stable" guard. mq will skip foo.patch (because
2798 This activates the "stable" guard. mq will skip foo.patch (because
2798 it has a negative match) but push bar.patch (because it has a
2799 it has a negative match) but push bar.patch (because it has a
2799 positive match).
2800 positive match).
2800
2801
2801 With no arguments, prints the currently active guards.
2802 With no arguments, prints the currently active guards.
2802 With one argument, sets the active guard.
2803 With one argument, sets the active guard.
2803
2804
2804 Use -n/--none to deactivate guards (no other arguments needed).
2805 Use -n/--none to deactivate guards (no other arguments needed).
2805 When no guards are active, patches with positive guards are
2806 When no guards are active, patches with positive guards are
2806 skipped and patches with negative guards are pushed.
2807 skipped and patches with negative guards are pushed.
2807
2808
2808 qselect can change the guards on applied patches. It does not pop
2809 qselect can change the guards on applied patches. It does not pop
2809 guarded patches by default. Use --pop to pop back to the last
2810 guarded patches by default. Use --pop to pop back to the last
2810 applied patch that is not guarded. Use --reapply (which implies
2811 applied patch that is not guarded. Use --reapply (which implies
2811 --pop) to push back to the current patch afterwards, but skip
2812 --pop) to push back to the current patch afterwards, but skip
2812 guarded patches.
2813 guarded patches.
2813
2814
2814 Use -s/--series to print a list of all guards in the series file
2815 Use -s/--series to print a list of all guards in the series file
2815 (no other arguments needed). Use -v for more information.
2816 (no other arguments needed). Use -v for more information.
2816
2817
2817 Returns 0 on success.'''
2818 Returns 0 on success.'''
2818
2819
2819 q = repo.mq
2820 q = repo.mq
2820 guards = q.active()
2821 guards = q.active()
2821 if args or opts.get('none'):
2822 if args or opts.get('none'):
2822 old_unapplied = q.unapplied(repo)
2823 old_unapplied = q.unapplied(repo)
2823 old_guarded = [i for i in xrange(len(q.applied)) if
2824 old_guarded = [i for i in xrange(len(q.applied)) if
2824 not q.pushable(i)[0]]
2825 not q.pushable(i)[0]]
2825 q.setactive(args)
2826 q.setactive(args)
2826 q.savedirty()
2827 q.savedirty()
2827 if not args:
2828 if not args:
2828 ui.status(_('guards deactivated\n'))
2829 ui.status(_('guards deactivated\n'))
2829 if not opts.get('pop') and not opts.get('reapply'):
2830 if not opts.get('pop') and not opts.get('reapply'):
2830 unapplied = q.unapplied(repo)
2831 unapplied = q.unapplied(repo)
2831 guarded = [i for i in xrange(len(q.applied))
2832 guarded = [i for i in xrange(len(q.applied))
2832 if not q.pushable(i)[0]]
2833 if not q.pushable(i)[0]]
2833 if len(unapplied) != len(old_unapplied):
2834 if len(unapplied) != len(old_unapplied):
2834 ui.status(_('number of unguarded, unapplied patches has '
2835 ui.status(_('number of unguarded, unapplied patches has '
2835 'changed from %d to %d\n') %
2836 'changed from %d to %d\n') %
2836 (len(old_unapplied), len(unapplied)))
2837 (len(old_unapplied), len(unapplied)))
2837 if len(guarded) != len(old_guarded):
2838 if len(guarded) != len(old_guarded):
2838 ui.status(_('number of guarded, applied patches has changed '
2839 ui.status(_('number of guarded, applied patches has changed '
2839 'from %d to %d\n') %
2840 'from %d to %d\n') %
2840 (len(old_guarded), len(guarded)))
2841 (len(old_guarded), len(guarded)))
2841 elif opts.get('series'):
2842 elif opts.get('series'):
2842 guards = {}
2843 guards = {}
2843 noguards = 0
2844 noguards = 0
2844 for gs in q.seriesguards:
2845 for gs in q.seriesguards:
2845 if not gs:
2846 if not gs:
2846 noguards += 1
2847 noguards += 1
2847 for g in gs:
2848 for g in gs:
2848 guards.setdefault(g, 0)
2849 guards.setdefault(g, 0)
2849 guards[g] += 1
2850 guards[g] += 1
2850 if ui.verbose:
2851 if ui.verbose:
2851 guards['NONE'] = noguards
2852 guards['NONE'] = noguards
2852 guards = guards.items()
2853 guards = guards.items()
2853 guards.sort(key=lambda x: x[0][1:])
2854 guards.sort(key=lambda x: x[0][1:])
2854 if guards:
2855 if guards:
2855 ui.note(_('guards in series file:\n'))
2856 ui.note(_('guards in series file:\n'))
2856 for guard, count in guards:
2857 for guard, count in guards:
2857 ui.note('%2d ' % count)
2858 ui.note('%2d ' % count)
2858 ui.write(guard, '\n')
2859 ui.write(guard, '\n')
2859 else:
2860 else:
2860 ui.note(_('no guards in series file\n'))
2861 ui.note(_('no guards in series file\n'))
2861 else:
2862 else:
2862 if guards:
2863 if guards:
2863 ui.note(_('active guards:\n'))
2864 ui.note(_('active guards:\n'))
2864 for g in guards:
2865 for g in guards:
2865 ui.write(g, '\n')
2866 ui.write(g, '\n')
2866 else:
2867 else:
2867 ui.write(_('no active guards\n'))
2868 ui.write(_('no active guards\n'))
2868 reapply = opts.get('reapply') and q.applied and q.appliedname(-1)
2869 reapply = opts.get('reapply') and q.applied and q.appliedname(-1)
2869 popped = False
2870 popped = False
2870 if opts.get('pop') or opts.get('reapply'):
2871 if opts.get('pop') or opts.get('reapply'):
2871 for i in xrange(len(q.applied)):
2872 for i in xrange(len(q.applied)):
2872 pushable, reason = q.pushable(i)
2873 pushable, reason = q.pushable(i)
2873 if not pushable:
2874 if not pushable:
2874 ui.status(_('popping guarded patches\n'))
2875 ui.status(_('popping guarded patches\n'))
2875 popped = True
2876 popped = True
2876 if i == 0:
2877 if i == 0:
2877 q.pop(repo, all=True)
2878 q.pop(repo, all=True)
2878 else:
2879 else:
2879 q.pop(repo, str(i - 1))
2880 q.pop(repo, str(i - 1))
2880 break
2881 break
2881 if popped:
2882 if popped:
2882 try:
2883 try:
2883 if reapply:
2884 if reapply:
2884 ui.status(_('reapplying unguarded patches\n'))
2885 ui.status(_('reapplying unguarded patches\n'))
2885 q.push(repo, reapply)
2886 q.push(repo, reapply)
2886 finally:
2887 finally:
2887 q.savedirty()
2888 q.savedirty()
2888
2889
2889 @command("qfinish",
2890 @command("qfinish",
2890 [('a', 'applied', None, _('finish all applied changesets'))],
2891 [('a', 'applied', None, _('finish all applied changesets'))],
2891 _('hg qfinish [-a] [REV]...'))
2892 _('hg qfinish [-a] [REV]...'))
2892 def finish(ui, repo, *revrange, **opts):
2893 def finish(ui, repo, *revrange, **opts):
2893 """move applied patches into repository history
2894 """move applied patches into repository history
2894
2895
2895 Finishes the specified revisions (corresponding to applied
2896 Finishes the specified revisions (corresponding to applied
2896 patches) by moving them out of mq control into regular repository
2897 patches) by moving them out of mq control into regular repository
2897 history.
2898 history.
2898
2899
2899 Accepts a revision range or the -a/--applied option. If --applied
2900 Accepts a revision range or the -a/--applied option. If --applied
2900 is specified, all applied mq revisions are removed from mq
2901 is specified, all applied mq revisions are removed from mq
2901 control. Otherwise, the given revisions must be at the base of the
2902 control. Otherwise, the given revisions must be at the base of the
2902 stack of applied patches.
2903 stack of applied patches.
2903
2904
2904 This can be especially useful if your changes have been applied to
2905 This can be especially useful if your changes have been applied to
2905 an upstream repository, or if you are about to push your changes
2906 an upstream repository, or if you are about to push your changes
2906 to upstream.
2907 to upstream.
2907
2908
2908 Returns 0 on success.
2909 Returns 0 on success.
2909 """
2910 """
2910 if not opts.get('applied') and not revrange:
2911 if not opts.get('applied') and not revrange:
2911 raise util.Abort(_('no revisions specified'))
2912 raise util.Abort(_('no revisions specified'))
2912 elif opts.get('applied'):
2913 elif opts.get('applied'):
2913 revrange = ('qbase::qtip',) + revrange
2914 revrange = ('qbase::qtip',) + revrange
2914
2915
2915 q = repo.mq
2916 q = repo.mq
2916 if not q.applied:
2917 if not q.applied:
2917 ui.status(_('no patches applied\n'))
2918 ui.status(_('no patches applied\n'))
2918 return 0
2919 return 0
2919
2920
2920 revs = scmutil.revrange(repo, revrange)
2921 revs = scmutil.revrange(repo, revrange)
2921 if repo['.'].rev() in revs and repo[None].files():
2922 if repo['.'].rev() in revs and repo[None].files():
2922 ui.warn(_('warning: uncommitted changes in the working directory\n'))
2923 ui.warn(_('warning: uncommitted changes in the working directory\n'))
2923
2924
2924 q.finish(repo, revs)
2925 q.finish(repo, revs)
2925 q.savedirty()
2926 q.savedirty()
2926 return 0
2927 return 0
2927
2928
2928 @command("qqueue",
2929 @command("qqueue",
2929 [('l', 'list', False, _('list all available queues')),
2930 [('l', 'list', False, _('list all available queues')),
2930 ('', 'active', False, _('print name of active queue')),
2931 ('', 'active', False, _('print name of active queue')),
2931 ('c', 'create', False, _('create new queue')),
2932 ('c', 'create', False, _('create new queue')),
2932 ('', 'rename', False, _('rename active queue')),
2933 ('', 'rename', False, _('rename active queue')),
2933 ('', 'delete', False, _('delete reference to queue')),
2934 ('', 'delete', False, _('delete reference to queue')),
2934 ('', 'purge', False, _('delete queue, and remove patch dir')),
2935 ('', 'purge', False, _('delete queue, and remove patch dir')),
2935 ],
2936 ],
2936 _('[OPTION] [QUEUE]'))
2937 _('[OPTION] [QUEUE]'))
2937 def qqueue(ui, repo, name=None, **opts):
2938 def qqueue(ui, repo, name=None, **opts):
2938 '''manage multiple patch queues
2939 '''manage multiple patch queues
2939
2940
2940 Supports switching between different patch queues, as well as creating
2941 Supports switching between different patch queues, as well as creating
2941 new patch queues and deleting existing ones.
2942 new patch queues and deleting existing ones.
2942
2943
2943 Omitting a queue name or specifying -l/--list will show you the registered
2944 Omitting a queue name or specifying -l/--list will show you the registered
2944 queues - by default the "normal" patches queue is registered. The currently
2945 queues - by default the "normal" patches queue is registered. The currently
2945 active queue will be marked with "(active)". Specifying --active will print
2946 active queue will be marked with "(active)". Specifying --active will print
2946 only the name of the active queue.
2947 only the name of the active queue.
2947
2948
2948 To create a new queue, use -c/--create. The queue is automatically made
2949 To create a new queue, use -c/--create. The queue is automatically made
2949 active, except in the case where there are applied patches from the
2950 active, except in the case where there are applied patches from the
2950 currently active queue in the repository. Then the queue will only be
2951 currently active queue in the repository. Then the queue will only be
2951 created and switching will fail.
2952 created and switching will fail.
2952
2953
2953 To delete an existing queue, use --delete. You cannot delete the currently
2954 To delete an existing queue, use --delete. You cannot delete the currently
2954 active queue.
2955 active queue.
2955
2956
2956 Returns 0 on success.
2957 Returns 0 on success.
2957 '''
2958 '''
2958
2959
2959 q = repo.mq
2960 q = repo.mq
2960
2961
2961 _defaultqueue = 'patches'
2962 _defaultqueue = 'patches'
2962 _allqueues = 'patches.queues'
2963 _allqueues = 'patches.queues'
2963 _activequeue = 'patches.queue'
2964 _activequeue = 'patches.queue'
2964
2965
2965 def _getcurrent():
2966 def _getcurrent():
2966 cur = os.path.basename(q.path)
2967 cur = os.path.basename(q.path)
2967 if cur.startswith('patches-'):
2968 if cur.startswith('patches-'):
2968 cur = cur[8:]
2969 cur = cur[8:]
2969 return cur
2970 return cur
2970
2971
2971 def _noqueues():
2972 def _noqueues():
2972 try:
2973 try:
2973 fh = repo.opener(_allqueues, 'r')
2974 fh = repo.opener(_allqueues, 'r')
2974 fh.close()
2975 fh.close()
2975 except IOError:
2976 except IOError:
2976 return True
2977 return True
2977
2978
2978 return False
2979 return False
2979
2980
2980 def _getqueues():
2981 def _getqueues():
2981 current = _getcurrent()
2982 current = _getcurrent()
2982
2983
2983 try:
2984 try:
2984 fh = repo.opener(_allqueues, 'r')
2985 fh = repo.opener(_allqueues, 'r')
2985 queues = [queue.strip() for queue in fh if queue.strip()]
2986 queues = [queue.strip() for queue in fh if queue.strip()]
2986 fh.close()
2987 fh.close()
2987 if current not in queues:
2988 if current not in queues:
2988 queues.append(current)
2989 queues.append(current)
2989 except IOError:
2990 except IOError:
2990 queues = [_defaultqueue]
2991 queues = [_defaultqueue]
2991
2992
2992 return sorted(queues)
2993 return sorted(queues)
2993
2994
2994 def _setactive(name):
2995 def _setactive(name):
2995 if q.applied:
2996 if q.applied:
2996 raise util.Abort(_('patches applied - cannot set new queue active'))
2997 raise util.Abort(_('patches applied - cannot set new queue active'))
2997 _setactivenocheck(name)
2998 _setactivenocheck(name)
2998
2999
2999 def _setactivenocheck(name):
3000 def _setactivenocheck(name):
3000 fh = repo.opener(_activequeue, 'w')
3001 fh = repo.opener(_activequeue, 'w')
3001 if name != 'patches':
3002 if name != 'patches':
3002 fh.write(name)
3003 fh.write(name)
3003 fh.close()
3004 fh.close()
3004
3005
3005 def _addqueue(name):
3006 def _addqueue(name):
3006 fh = repo.opener(_allqueues, 'a')
3007 fh = repo.opener(_allqueues, 'a')
3007 fh.write('%s\n' % (name,))
3008 fh.write('%s\n' % (name,))
3008 fh.close()
3009 fh.close()
3009
3010
3010 def _queuedir(name):
3011 def _queuedir(name):
3011 if name == 'patches':
3012 if name == 'patches':
3012 return repo.join('patches')
3013 return repo.join('patches')
3013 else:
3014 else:
3014 return repo.join('patches-' + name)
3015 return repo.join('patches-' + name)
3015
3016
3016 def _validname(name):
3017 def _validname(name):
3017 for n in name:
3018 for n in name:
3018 if n in ':\\/.':
3019 if n in ':\\/.':
3019 return False
3020 return False
3020 return True
3021 return True
3021
3022
3022 def _delete(name):
3023 def _delete(name):
3023 if name not in existing:
3024 if name not in existing:
3024 raise util.Abort(_('cannot delete queue that does not exist'))
3025 raise util.Abort(_('cannot delete queue that does not exist'))
3025
3026
3026 current = _getcurrent()
3027 current = _getcurrent()
3027
3028
3028 if name == current:
3029 if name == current:
3029 raise util.Abort(_('cannot delete currently active queue'))
3030 raise util.Abort(_('cannot delete currently active queue'))
3030
3031
3031 fh = repo.opener('patches.queues.new', 'w')
3032 fh = repo.opener('patches.queues.new', 'w')
3032 for queue in existing:
3033 for queue in existing:
3033 if queue == name:
3034 if queue == name:
3034 continue
3035 continue
3035 fh.write('%s\n' % (queue,))
3036 fh.write('%s\n' % (queue,))
3036 fh.close()
3037 fh.close()
3037 util.rename(repo.join('patches.queues.new'), repo.join(_allqueues))
3038 util.rename(repo.join('patches.queues.new'), repo.join(_allqueues))
3038
3039
3039 if not name or opts.get('list') or opts.get('active'):
3040 if not name or opts.get('list') or opts.get('active'):
3040 current = _getcurrent()
3041 current = _getcurrent()
3041 if opts.get('active'):
3042 if opts.get('active'):
3042 ui.write('%s\n' % (current,))
3043 ui.write('%s\n' % (current,))
3043 return
3044 return
3044 for queue in _getqueues():
3045 for queue in _getqueues():
3045 ui.write('%s' % (queue,))
3046 ui.write('%s' % (queue,))
3046 if queue == current and not ui.quiet:
3047 if queue == current and not ui.quiet:
3047 ui.write(_(' (active)\n'))
3048 ui.write(_(' (active)\n'))
3048 else:
3049 else:
3049 ui.write('\n')
3050 ui.write('\n')
3050 return
3051 return
3051
3052
3052 if not _validname(name):
3053 if not _validname(name):
3053 raise util.Abort(
3054 raise util.Abort(
3054 _('invalid queue name, may not contain the characters ":\\/."'))
3055 _('invalid queue name, may not contain the characters ":\\/."'))
3055
3056
3056 existing = _getqueues()
3057 existing = _getqueues()
3057
3058
3058 if opts.get('create'):
3059 if opts.get('create'):
3059 if name in existing:
3060 if name in existing:
3060 raise util.Abort(_('queue "%s" already exists') % name)
3061 raise util.Abort(_('queue "%s" already exists') % name)
3061 if _noqueues():
3062 if _noqueues():
3062 _addqueue(_defaultqueue)
3063 _addqueue(_defaultqueue)
3063 _addqueue(name)
3064 _addqueue(name)
3064 _setactive(name)
3065 _setactive(name)
3065 elif opts.get('rename'):
3066 elif opts.get('rename'):
3066 current = _getcurrent()
3067 current = _getcurrent()
3067 if name == current:
3068 if name == current:
3068 raise util.Abort(_('can\'t rename "%s" to its current name') % name)
3069 raise util.Abort(_('can\'t rename "%s" to its current name') % name)
3069 if name in existing:
3070 if name in existing:
3070 raise util.Abort(_('queue "%s" already exists') % name)
3071 raise util.Abort(_('queue "%s" already exists') % name)
3071
3072
3072 olddir = _queuedir(current)
3073 olddir = _queuedir(current)
3073 newdir = _queuedir(name)
3074 newdir = _queuedir(name)
3074
3075
3075 if os.path.exists(newdir):
3076 if os.path.exists(newdir):
3076 raise util.Abort(_('non-queue directory "%s" already exists') %
3077 raise util.Abort(_('non-queue directory "%s" already exists') %
3077 newdir)
3078 newdir)
3078
3079
3079 fh = repo.opener('patches.queues.new', 'w')
3080 fh = repo.opener('patches.queues.new', 'w')
3080 for queue in existing:
3081 for queue in existing:
3081 if queue == current:
3082 if queue == current:
3082 fh.write('%s\n' % (name,))
3083 fh.write('%s\n' % (name,))
3083 if os.path.exists(olddir):
3084 if os.path.exists(olddir):
3084 util.rename(olddir, newdir)
3085 util.rename(olddir, newdir)
3085 else:
3086 else:
3086 fh.write('%s\n' % (queue,))
3087 fh.write('%s\n' % (queue,))
3087 fh.close()
3088 fh.close()
3088 util.rename(repo.join('patches.queues.new'), repo.join(_allqueues))
3089 util.rename(repo.join('patches.queues.new'), repo.join(_allqueues))
3089 _setactivenocheck(name)
3090 _setactivenocheck(name)
3090 elif opts.get('delete'):
3091 elif opts.get('delete'):
3091 _delete(name)
3092 _delete(name)
3092 elif opts.get('purge'):
3093 elif opts.get('purge'):
3093 if name in existing:
3094 if name in existing:
3094 _delete(name)
3095 _delete(name)
3095 qdir = _queuedir(name)
3096 qdir = _queuedir(name)
3096 if os.path.exists(qdir):
3097 if os.path.exists(qdir):
3097 shutil.rmtree(qdir)
3098 shutil.rmtree(qdir)
3098 else:
3099 else:
3099 if name not in existing:
3100 if name not in existing:
3100 raise util.Abort(_('use --create to create a new queue'))
3101 raise util.Abort(_('use --create to create a new queue'))
3101 _setactive(name)
3102 _setactive(name)
3102
3103
3103 def reposetup(ui, repo):
3104 def reposetup(ui, repo):
3104 class mqrepo(repo.__class__):
3105 class mqrepo(repo.__class__):
3105 @util.propertycache
3106 @util.propertycache
3106 def mq(self):
3107 def mq(self):
3107 return queue(self.ui, self.join(""))
3108 return queue(self.ui, self.join(""))
3108
3109
3109 def abortifwdirpatched(self, errmsg, force=False):
3110 def abortifwdirpatched(self, errmsg, force=False):
3110 if self.mq.applied and not force:
3111 if self.mq.applied and not force:
3111 parents = self.dirstate.parents()
3112 parents = self.dirstate.parents()
3112 patches = [s.node for s in self.mq.applied]
3113 patches = [s.node for s in self.mq.applied]
3113 if parents[0] in patches or parents[1] in patches:
3114 if parents[0] in patches or parents[1] in patches:
3114 raise util.Abort(errmsg)
3115 raise util.Abort(errmsg)
3115
3116
3116 def commit(self, text="", user=None, date=None, match=None,
3117 def commit(self, text="", user=None, date=None, match=None,
3117 force=False, editor=False, extra={}):
3118 force=False, editor=False, extra={}):
3118 self.abortifwdirpatched(
3119 self.abortifwdirpatched(
3119 _('cannot commit over an applied mq patch'),
3120 _('cannot commit over an applied mq patch'),
3120 force)
3121 force)
3121
3122
3122 return super(mqrepo, self).commit(text, user, date, match, force,
3123 return super(mqrepo, self).commit(text, user, date, match, force,
3123 editor, extra)
3124 editor, extra)
3124
3125
3125 def checkpush(self, force, revs):
3126 def checkpush(self, force, revs):
3126 if self.mq.applied and not force:
3127 if self.mq.applied and not force:
3127 haspatches = True
3128 haspatches = True
3128 if revs:
3129 if revs:
3129 # Assume applied patches have no non-patch descendants
3130 # Assume applied patches have no non-patch descendants
3130 # and are not on remote already. If they appear in the
3131 # and are not on remote already. If they appear in the
3131 # set of resolved 'revs', bail out.
3132 # set of resolved 'revs', bail out.
3132 applied = set(e.node for e in self.mq.applied)
3133 applied = set(e.node for e in self.mq.applied)
3133 haspatches = bool([n for n in revs if n in applied])
3134 haspatches = bool([n for n in revs if n in applied])
3134 if haspatches:
3135 if haspatches:
3135 raise util.Abort(_('source has mq patches applied'))
3136 raise util.Abort(_('source has mq patches applied'))
3136 super(mqrepo, self).checkpush(force, revs)
3137 super(mqrepo, self).checkpush(force, revs)
3137
3138
3138 def _findtags(self):
3139 def _findtags(self):
3139 '''augment tags from base class with patch tags'''
3140 '''augment tags from base class with patch tags'''
3140 result = super(mqrepo, self)._findtags()
3141 result = super(mqrepo, self)._findtags()
3141
3142
3142 q = self.mq
3143 q = self.mq
3143 if not q.applied:
3144 if not q.applied:
3144 return result
3145 return result
3145
3146
3146 mqtags = [(patch.node, patch.name) for patch in q.applied]
3147 mqtags = [(patch.node, patch.name) for patch in q.applied]
3147
3148
3148 try:
3149 try:
3149 self.changelog.rev(mqtags[-1][0])
3150 self.changelog.rev(mqtags[-1][0])
3150 except error.LookupError:
3151 except error.LookupError:
3151 self.ui.warn(_('mq status file refers to unknown node %s\n')
3152 self.ui.warn(_('mq status file refers to unknown node %s\n')
3152 % short(mqtags[-1][0]))
3153 % short(mqtags[-1][0]))
3153 return result
3154 return result
3154
3155
3155 mqtags.append((mqtags[-1][0], 'qtip'))
3156 mqtags.append((mqtags[-1][0], 'qtip'))
3156 mqtags.append((mqtags[0][0], 'qbase'))
3157 mqtags.append((mqtags[0][0], 'qbase'))
3157 mqtags.append((self.changelog.parents(mqtags[0][0])[0], 'qparent'))
3158 mqtags.append((self.changelog.parents(mqtags[0][0])[0], 'qparent'))
3158 tags = result[0]
3159 tags = result[0]
3159 for patch in mqtags:
3160 for patch in mqtags:
3160 if patch[1] in tags:
3161 if patch[1] in tags:
3161 self.ui.warn(_('Tag %s overrides mq patch of the same name\n')
3162 self.ui.warn(_('Tag %s overrides mq patch of the same name\n')
3162 % patch[1])
3163 % patch[1])
3163 else:
3164 else:
3164 tags[patch[1]] = patch[0]
3165 tags[patch[1]] = patch[0]
3165
3166
3166 return result
3167 return result
3167
3168
3168 def _branchtags(self, partial, lrev):
3169 def _branchtags(self, partial, lrev):
3169 q = self.mq
3170 q = self.mq
3170 if not q.applied:
3171 if not q.applied:
3171 return super(mqrepo, self)._branchtags(partial, lrev)
3172 return super(mqrepo, self)._branchtags(partial, lrev)
3172
3173
3173 cl = self.changelog
3174 cl = self.changelog
3174 qbasenode = q.applied[0].node
3175 qbasenode = q.applied[0].node
3175 try:
3176 try:
3176 qbase = cl.rev(qbasenode)
3177 qbase = cl.rev(qbasenode)
3177 except error.LookupError:
3178 except error.LookupError:
3178 self.ui.warn(_('mq status file refers to unknown node %s\n')
3179 self.ui.warn(_('mq status file refers to unknown node %s\n')
3179 % short(qbasenode))
3180 % short(qbasenode))
3180 return super(mqrepo, self)._branchtags(partial, lrev)
3181 return super(mqrepo, self)._branchtags(partial, lrev)
3181
3182
3182 start = lrev + 1
3183 start = lrev + 1
3183 if start < qbase:
3184 if start < qbase:
3184 # update the cache (excluding the patches) and save it
3185 # update the cache (excluding the patches) and save it
3185 ctxgen = (self[r] for r in xrange(lrev + 1, qbase))
3186 ctxgen = (self[r] for r in xrange(lrev + 1, qbase))
3186 self._updatebranchcache(partial, ctxgen)
3187 self._updatebranchcache(partial, ctxgen)
3187 self._writebranchcache(partial, cl.node(qbase - 1), qbase - 1)
3188 self._writebranchcache(partial, cl.node(qbase - 1), qbase - 1)
3188 start = qbase
3189 start = qbase
3189 # if start = qbase, the cache is as updated as it should be.
3190 # if start = qbase, the cache is as updated as it should be.
3190 # if start > qbase, the cache includes (part of) the patches.
3191 # if start > qbase, the cache includes (part of) the patches.
3191 # we might as well use it, but we won't save it.
3192 # we might as well use it, but we won't save it.
3192
3193
3193 # update the cache up to the tip
3194 # update the cache up to the tip
3194 ctxgen = (self[r] for r in xrange(start, len(cl)))
3195 ctxgen = (self[r] for r in xrange(start, len(cl)))
3195 self._updatebranchcache(partial, ctxgen)
3196 self._updatebranchcache(partial, ctxgen)
3196
3197
3197 return partial
3198 return partial
3198
3199
3199 if repo.local():
3200 if repo.local():
3200 repo.__class__ = mqrepo
3201 repo.__class__ = mqrepo
3201
3202
3202 def mqimport(orig, ui, repo, *args, **kwargs):
3203 def mqimport(orig, ui, repo, *args, **kwargs):
3203 if (hasattr(repo, 'abortifwdirpatched')
3204 if (hasattr(repo, 'abortifwdirpatched')
3204 and not kwargs.get('no_commit', False)):
3205 and not kwargs.get('no_commit', False)):
3205 repo.abortifwdirpatched(_('cannot import over an applied patch'),
3206 repo.abortifwdirpatched(_('cannot import over an applied patch'),
3206 kwargs.get('force'))
3207 kwargs.get('force'))
3207 return orig(ui, repo, *args, **kwargs)
3208 return orig(ui, repo, *args, **kwargs)
3208
3209
3209 def mqinit(orig, ui, *args, **kwargs):
3210 def mqinit(orig, ui, *args, **kwargs):
3210 mq = kwargs.pop('mq', None)
3211 mq = kwargs.pop('mq', None)
3211
3212
3212 if not mq:
3213 if not mq:
3213 return orig(ui, *args, **kwargs)
3214 return orig(ui, *args, **kwargs)
3214
3215
3215 if args:
3216 if args:
3216 repopath = args[0]
3217 repopath = args[0]
3217 if not hg.islocal(repopath):
3218 if not hg.islocal(repopath):
3218 raise util.Abort(_('only a local queue repository '
3219 raise util.Abort(_('only a local queue repository '
3219 'may be initialized'))
3220 'may be initialized'))
3220 else:
3221 else:
3221 repopath = cmdutil.findrepo(os.getcwd())
3222 repopath = cmdutil.findrepo(os.getcwd())
3222 if not repopath:
3223 if not repopath:
3223 raise util.Abort(_('there is no Mercurial repository here '
3224 raise util.Abort(_('there is no Mercurial repository here '
3224 '(.hg not found)'))
3225 '(.hg not found)'))
3225 repo = hg.repository(ui, repopath)
3226 repo = hg.repository(ui, repopath)
3226 return qinit(ui, repo, True)
3227 return qinit(ui, repo, True)
3227
3228
3228 def mqcommand(orig, ui, repo, *args, **kwargs):
3229 def mqcommand(orig, ui, repo, *args, **kwargs):
3229 """Add --mq option to operate on patch repository instead of main"""
3230 """Add --mq option to operate on patch repository instead of main"""
3230
3231
3231 # some commands do not like getting unknown options
3232 # some commands do not like getting unknown options
3232 mq = kwargs.pop('mq', None)
3233 mq = kwargs.pop('mq', None)
3233
3234
3234 if not mq:
3235 if not mq:
3235 return orig(ui, repo, *args, **kwargs)
3236 return orig(ui, repo, *args, **kwargs)
3236
3237
3237 q = repo.mq
3238 q = repo.mq
3238 r = q.qrepo()
3239 r = q.qrepo()
3239 if not r:
3240 if not r:
3240 raise util.Abort(_('no queue repository'))
3241 raise util.Abort(_('no queue repository'))
3241 return orig(r.ui, r, *args, **kwargs)
3242 return orig(r.ui, r, *args, **kwargs)
3242
3243
3243 def summary(orig, ui, repo, *args, **kwargs):
3244 def summary(orig, ui, repo, *args, **kwargs):
3244 r = orig(ui, repo, *args, **kwargs)
3245 r = orig(ui, repo, *args, **kwargs)
3245 q = repo.mq
3246 q = repo.mq
3246 m = []
3247 m = []
3247 a, u = len(q.applied), len(q.unapplied(repo))
3248 a, u = len(q.applied), len(q.unapplied(repo))
3248 if a:
3249 if a:
3249 m.append(ui.label(_("%d applied"), 'qseries.applied') % a)
3250 m.append(ui.label(_("%d applied"), 'qseries.applied') % a)
3250 if u:
3251 if u:
3251 m.append(ui.label(_("%d unapplied"), 'qseries.unapplied') % u)
3252 m.append(ui.label(_("%d unapplied"), 'qseries.unapplied') % u)
3252 if m:
3253 if m:
3253 ui.write("mq: %s\n" % ', '.join(m))
3254 ui.write("mq: %s\n" % ', '.join(m))
3254 else:
3255 else:
3255 ui.note(_("mq: (empty queue)\n"))
3256 ui.note(_("mq: (empty queue)\n"))
3256 return r
3257 return r
3257
3258
3258 def revsetmq(repo, subset, x):
3259 def revsetmq(repo, subset, x):
3259 """``mq()``
3260 """``mq()``
3260 Changesets managed by MQ.
3261 Changesets managed by MQ.
3261 """
3262 """
3262 revset.getargs(x, 0, 0, _("mq takes no arguments"))
3263 revset.getargs(x, 0, 0, _("mq takes no arguments"))
3263 applied = set([repo[r.node].rev() for r in repo.mq.applied])
3264 applied = set([repo[r.node].rev() for r in repo.mq.applied])
3264 return [r for r in subset if r in applied]
3265 return [r for r in subset if r in applied]
3265
3266
3266 def extsetup(ui):
3267 def extsetup(ui):
3267 revset.symbols['mq'] = revsetmq
3268 revset.symbols['mq'] = revsetmq
3268
3269
3269 # tell hggettext to extract docstrings from these functions:
3270 # tell hggettext to extract docstrings from these functions:
3270 i18nfunctions = [revsetmq]
3271 i18nfunctions = [revsetmq]
3271
3272
3272 def uisetup(ui):
3273 def uisetup(ui):
3273 mqopt = [('', 'mq', None, _("operate on patch repository"))]
3274 mqopt = [('', 'mq', None, _("operate on patch repository"))]
3274
3275
3275 extensions.wrapcommand(commands.table, 'import', mqimport)
3276 extensions.wrapcommand(commands.table, 'import', mqimport)
3276 extensions.wrapcommand(commands.table, 'summary', summary)
3277 extensions.wrapcommand(commands.table, 'summary', summary)
3277
3278
3278 entry = extensions.wrapcommand(commands.table, 'init', mqinit)
3279 entry = extensions.wrapcommand(commands.table, 'init', mqinit)
3279 entry[1].extend(mqopt)
3280 entry[1].extend(mqopt)
3280
3281
3281 nowrap = set(commands.norepo.split(" "))
3282 nowrap = set(commands.norepo.split(" "))
3282
3283
3283 def dotable(cmdtable):
3284 def dotable(cmdtable):
3284 for cmd in cmdtable.keys():
3285 for cmd in cmdtable.keys():
3285 cmd = cmdutil.parsealiases(cmd)[0]
3286 cmd = cmdutil.parsealiases(cmd)[0]
3286 if cmd in nowrap:
3287 if cmd in nowrap:
3287 continue
3288 continue
3288 entry = extensions.wrapcommand(cmdtable, cmd, mqcommand)
3289 entry = extensions.wrapcommand(cmdtable, cmd, mqcommand)
3289 entry[1].extend(mqopt)
3290 entry[1].extend(mqopt)
3290
3291
3291 dotable(commands.table)
3292 dotable(commands.table)
3292
3293
3293 for extname, extmodule in extensions.extensions():
3294 for extname, extmodule in extensions.extensions():
3294 if extmodule.__file__ != __file__:
3295 if extmodule.__file__ != __file__:
3295 dotable(getattr(extmodule, 'cmdtable', {}))
3296 dotable(getattr(extmodule, 'cmdtable', {}))
3296
3297
3297
3298
3298 colortable = {'qguard.negative': 'red',
3299 colortable = {'qguard.negative': 'red',
3299 'qguard.positive': 'yellow',
3300 'qguard.positive': 'yellow',
3300 'qguard.unguarded': 'green',
3301 'qguard.unguarded': 'green',
3301 'qseries.applied': 'blue bold underline',
3302 'qseries.applied': 'blue bold underline',
3302 'qseries.guarded': 'black bold',
3303 'qseries.guarded': 'black bold',
3303 'qseries.missing': 'red bold',
3304 'qseries.missing': 'red bold',
3304 'qseries.unapplied': 'black bold'}
3305 'qseries.unapplied': 'black bold'}
@@ -1,643 +1,645 b''
1 # rebase.py - rebasing feature for mercurial
1 # rebase.py - rebasing feature for mercurial
2 #
2 #
3 # Copyright 2008 Stefano Tortarolo <stefano.tortarolo at gmail dot com>
3 # Copyright 2008 Stefano Tortarolo <stefano.tortarolo at gmail dot com>
4 #
4 #
5 # This software may be used and distributed according to the terms of the
5 # This software may be used and distributed according to the terms of the
6 # GNU General Public License version 2 or any later version.
6 # GNU General Public License version 2 or any later version.
7
7
8 '''command to move sets of revisions to a different ancestor
8 '''command to move sets of revisions to a different ancestor
9
9
10 This extension lets you rebase changesets in an existing Mercurial
10 This extension lets you rebase changesets in an existing Mercurial
11 repository.
11 repository.
12
12
13 For more information:
13 For more information:
14 http://mercurial.selenic.com/wiki/RebaseExtension
14 http://mercurial.selenic.com/wiki/RebaseExtension
15 '''
15 '''
16
16
17 from mercurial import hg, util, repair, merge, cmdutil, commands, bookmarks
17 from mercurial import hg, util, repair, merge, cmdutil, commands, bookmarks
18 from mercurial import extensions, patch
18 from mercurial import extensions, patch, scmutil
19 from mercurial.commands import templateopts
19 from mercurial.commands import templateopts
20 from mercurial.node import nullrev
20 from mercurial.node import nullrev
21 from mercurial.lock import release
21 from mercurial.lock import release
22 from mercurial.i18n import _
22 from mercurial.i18n import _
23 import os, errno
23 import os, errno
24
24
25 nullmerge = -2
25 nullmerge = -2
26
26
27 cmdtable = {}
27 cmdtable = {}
28 command = cmdutil.command(cmdtable)
28 command = cmdutil.command(cmdtable)
29
29
30 @command('rebase',
30 @command('rebase',
31 [('s', 'source', '',
31 [('s', 'source', '',
32 _('rebase from the specified changeset'), _('REV')),
32 _('rebase from the specified changeset'), _('REV')),
33 ('b', 'base', '',
33 ('b', 'base', '',
34 _('rebase from the base of the specified changeset '
34 _('rebase from the base of the specified changeset '
35 '(up to greatest common ancestor of base and dest)'),
35 '(up to greatest common ancestor of base and dest)'),
36 _('REV')),
36 _('REV')),
37 ('r', 'rev', [],
37 ('r', 'rev', [],
38 _('rebase these revisions'),
38 _('rebase these revisions'),
39 _('REV')),
39 _('REV')),
40 ('d', 'dest', '',
40 ('d', 'dest', '',
41 _('rebase onto the specified changeset'), _('REV')),
41 _('rebase onto the specified changeset'), _('REV')),
42 ('', 'collapse', False, _('collapse the rebased changesets')),
42 ('', 'collapse', False, _('collapse the rebased changesets')),
43 ('m', 'message', '',
43 ('m', 'message', '',
44 _('use text as collapse commit message'), _('TEXT')),
44 _('use text as collapse commit message'), _('TEXT')),
45 ('e', 'edit', False, _('invoke editor on commit messages')),
45 ('e', 'edit', False, _('invoke editor on commit messages')),
46 ('l', 'logfile', '',
46 ('l', 'logfile', '',
47 _('read collapse commit message from file'), _('FILE')),
47 _('read collapse commit message from file'), _('FILE')),
48 ('', 'keep', False, _('keep original changesets')),
48 ('', 'keep', False, _('keep original changesets')),
49 ('', 'keepbranches', False, _('keep original branch names')),
49 ('', 'keepbranches', False, _('keep original branch names')),
50 ('D', 'detach', False, _('force detaching of source from its original '
50 ('D', 'detach', False, _('force detaching of source from its original '
51 'branch')),
51 'branch')),
52 ('t', 'tool', '', _('specify merge tool')),
52 ('t', 'tool', '', _('specify merge tool')),
53 ('c', 'continue', False, _('continue an interrupted rebase')),
53 ('c', 'continue', False, _('continue an interrupted rebase')),
54 ('a', 'abort', False, _('abort an interrupted rebase'))] +
54 ('a', 'abort', False, _('abort an interrupted rebase'))] +
55 templateopts,
55 templateopts,
56 _('hg rebase [-s REV | -b REV] [-d REV] [options]\n'
56 _('hg rebase [-s REV | -b REV] [-d REV] [options]\n'
57 'hg rebase {-a|-c}'))
57 'hg rebase {-a|-c}'))
58 def rebase(ui, repo, **opts):
58 def rebase(ui, repo, **opts):
59 """move changeset (and descendants) to a different branch
59 """move changeset (and descendants) to a different branch
60
60
61 Rebase uses repeated merging to graft changesets from one part of
61 Rebase uses repeated merging to graft changesets from one part of
62 history (the source) onto another (the destination). This can be
62 history (the source) onto another (the destination). This can be
63 useful for linearizing *local* changes relative to a master
63 useful for linearizing *local* changes relative to a master
64 development tree.
64 development tree.
65
65
66 You should not rebase changesets that have already been shared
66 You should not rebase changesets that have already been shared
67 with others. Doing so will force everybody else to perform the
67 with others. Doing so will force everybody else to perform the
68 same rebase or they will end up with duplicated changesets after
68 same rebase or they will end up with duplicated changesets after
69 pulling in your rebased changesets.
69 pulling in your rebased changesets.
70
70
71 If you don't specify a destination changeset (``-d/--dest``),
71 If you don't specify a destination changeset (``-d/--dest``),
72 rebase uses the tipmost head of the current named branch as the
72 rebase uses the tipmost head of the current named branch as the
73 destination. (The destination changeset is not modified by
73 destination. (The destination changeset is not modified by
74 rebasing, but new changesets are added as its descendants.)
74 rebasing, but new changesets are added as its descendants.)
75
75
76 You can specify which changesets to rebase in two ways: as a
76 You can specify which changesets to rebase in two ways: as a
77 "source" changeset or as a "base" changeset. Both are shorthand
77 "source" changeset or as a "base" changeset. Both are shorthand
78 for a topologically related set of changesets (the "source
78 for a topologically related set of changesets (the "source
79 branch"). If you specify source (``-s/--source``), rebase will
79 branch"). If you specify source (``-s/--source``), rebase will
80 rebase that changeset and all of its descendants onto dest. If you
80 rebase that changeset and all of its descendants onto dest. If you
81 specify base (``-b/--base``), rebase will select ancestors of base
81 specify base (``-b/--base``), rebase will select ancestors of base
82 back to but not including the common ancestor with dest. Thus,
82 back to but not including the common ancestor with dest. Thus,
83 ``-b`` is less precise but more convenient than ``-s``: you can
83 ``-b`` is less precise but more convenient than ``-s``: you can
84 specify any changeset in the source branch, and rebase will select
84 specify any changeset in the source branch, and rebase will select
85 the whole branch. If you specify neither ``-s`` nor ``-b``, rebase
85 the whole branch. If you specify neither ``-s`` nor ``-b``, rebase
86 uses the parent of the working directory as the base.
86 uses the parent of the working directory as the base.
87
87
88 By default, rebase recreates the changesets in the source branch
88 By default, rebase recreates the changesets in the source branch
89 as descendants of dest and then destroys the originals. Use
89 as descendants of dest and then destroys the originals. Use
90 ``--keep`` to preserve the original source changesets. Some
90 ``--keep`` to preserve the original source changesets. Some
91 changesets in the source branch (e.g. merges from the destination
91 changesets in the source branch (e.g. merges from the destination
92 branch) may be dropped if they no longer contribute any change.
92 branch) may be dropped if they no longer contribute any change.
93
93
94 One result of the rules for selecting the destination changeset
94 One result of the rules for selecting the destination changeset
95 and source branch is that, unlike ``merge``, rebase will do
95 and source branch is that, unlike ``merge``, rebase will do
96 nothing if you are at the latest (tipmost) head of a named branch
96 nothing if you are at the latest (tipmost) head of a named branch
97 with two heads. You need to explicitly specify source and/or
97 with two heads. You need to explicitly specify source and/or
98 destination (or ``update`` to the other head, if it's the head of
98 destination (or ``update`` to the other head, if it's the head of
99 the intended source branch).
99 the intended source branch).
100
100
101 If a rebase is interrupted to manually resolve a merge, it can be
101 If a rebase is interrupted to manually resolve a merge, it can be
102 continued with --continue/-c or aborted with --abort/-a.
102 continued with --continue/-c or aborted with --abort/-a.
103
103
104 Returns 0 on success, 1 if nothing to rebase.
104 Returns 0 on success, 1 if nothing to rebase.
105 """
105 """
106 originalwd = target = None
106 originalwd = target = None
107 external = nullrev
107 external = nullrev
108 state = {}
108 state = {}
109 skipped = set()
109 skipped = set()
110 targetancestors = set()
110 targetancestors = set()
111
111
112 editor = None
112 editor = None
113 if opts.get('edit'):
113 if opts.get('edit'):
114 editor = cmdutil.commitforceeditor
114 editor = cmdutil.commitforceeditor
115
115
116 lock = wlock = None
116 lock = wlock = None
117 try:
117 try:
118 lock = repo.lock()
118 lock = repo.lock()
119 wlock = repo.wlock()
119 wlock = repo.wlock()
120
120
121 # Validate input and define rebasing points
121 # Validate input and define rebasing points
122 destf = opts.get('dest', None)
122 destf = opts.get('dest', None)
123 srcf = opts.get('source', None)
123 srcf = opts.get('source', None)
124 basef = opts.get('base', None)
124 basef = opts.get('base', None)
125 revf = opts.get('rev', [])
125 revf = opts.get('rev', [])
126 contf = opts.get('continue')
126 contf = opts.get('continue')
127 abortf = opts.get('abort')
127 abortf = opts.get('abort')
128 collapsef = opts.get('collapse', False)
128 collapsef = opts.get('collapse', False)
129 collapsemsg = cmdutil.logmessage(ui, opts)
129 collapsemsg = cmdutil.logmessage(ui, opts)
130 extrafn = opts.get('extrafn') # internal, used by e.g. hgsubversion
130 extrafn = opts.get('extrafn') # internal, used by e.g. hgsubversion
131 keepf = opts.get('keep', False)
131 keepf = opts.get('keep', False)
132 keepbranchesf = opts.get('keepbranches', False)
132 keepbranchesf = opts.get('keepbranches', False)
133 detachf = opts.get('detach', False)
133 detachf = opts.get('detach', False)
134 # keepopen is not meant for use on the command line, but by
134 # keepopen is not meant for use on the command line, but by
135 # other extensions
135 # other extensions
136 keepopen = opts.get('keepopen', False)
136 keepopen = opts.get('keepopen', False)
137
137
138 if collapsemsg and not collapsef:
138 if collapsemsg and not collapsef:
139 raise util.Abort(
139 raise util.Abort(
140 _('message can only be specified with collapse'))
140 _('message can only be specified with collapse'))
141
141
142 if contf or abortf:
142 if contf or abortf:
143 if contf and abortf:
143 if contf and abortf:
144 raise util.Abort(_('cannot use both abort and continue'))
144 raise util.Abort(_('cannot use both abort and continue'))
145 if collapsef:
145 if collapsef:
146 raise util.Abort(
146 raise util.Abort(
147 _('cannot use collapse with continue or abort'))
147 _('cannot use collapse with continue or abort'))
148 if detachf:
148 if detachf:
149 raise util.Abort(_('cannot use detach with continue or abort'))
149 raise util.Abort(_('cannot use detach with continue or abort'))
150 if srcf or basef or destf:
150 if srcf or basef or destf:
151 raise util.Abort(
151 raise util.Abort(
152 _('abort and continue do not allow specifying revisions'))
152 _('abort and continue do not allow specifying revisions'))
153 if opts.get('tool', False):
153 if opts.get('tool', False):
154 ui.warn(_('tool option will be ignored\n'))
154 ui.warn(_('tool option will be ignored\n'))
155
155
156 (originalwd, target, state, skipped, collapsef, keepf,
156 (originalwd, target, state, skipped, collapsef, keepf,
157 keepbranchesf, external) = restorestatus(repo)
157 keepbranchesf, external) = restorestatus(repo)
158 if abortf:
158 if abortf:
159 return abort(repo, originalwd, target, state)
159 return abort(repo, originalwd, target, state)
160 else:
160 else:
161 if srcf and basef:
161 if srcf and basef:
162 raise util.Abort(_('cannot specify both a '
162 raise util.Abort(_('cannot specify both a '
163 'source and a base'))
163 'source and a base'))
164 if revf and basef:
164 if revf and basef:
165 raise util.Abort(_('cannot specify both a '
165 raise util.Abort(_('cannot specify both a '
166 'revision and a base'))
166 'revision and a base'))
167 if revf and srcf:
167 if revf and srcf:
168 raise util.Abort(_('cannot specify both a '
168 raise util.Abort(_('cannot specify both a '
169 'revision and a source'))
169 'revision and a source'))
170 if detachf:
170 if detachf:
171 if not (srcf or revf):
171 if not (srcf or revf):
172 raise util.Abort(
172 raise util.Abort(
173 _('detach requires a revision to be specified'))
173 _('detach requires a revision to be specified'))
174 if basef:
174 if basef:
175 raise util.Abort(_('cannot specify a base with detach'))
175 raise util.Abort(_('cannot specify a base with detach'))
176
176
177 cmdutil.bailifchanged(repo)
177 cmdutil.bailifchanged(repo)
178
178
179 if not destf:
179 if not destf:
180 # Destination defaults to the latest revision in the
180 # Destination defaults to the latest revision in the
181 # current branch
181 # current branch
182 branch = repo[None].branch()
182 branch = repo[None].branch()
183 dest = repo[branch]
183 dest = repo[branch]
184 else:
184 else:
185 dest = repo[destf]
185 dest = repo[destf]
186
186
187 if revf:
187 if revf:
188 rebaseset = repo.revs('%lr', revf)
188 rebaseset = repo.revs('%lr', revf)
189 elif srcf:
189 elif srcf:
190 rebaseset = repo.revs('(%r)::', srcf)
190 src = scmutil.revrange(repo, [srcf])
191 rebaseset = repo.revs('(%ld)::', src)
191 else:
192 else:
192 base = basef or '.'
193 base = scmutil.revrange(repo, [basef or '.'])
193 rebaseset = repo.revs('(children(ancestor(%r, %d)) & ::%r)::',
194 rebaseset = repo.revs(
195 '(children(ancestor(%ld, %d)) and ::(%ld))::',
194 base, dest, base)
196 base, dest, base)
195
197
196 if rebaseset:
198 if rebaseset:
197 root = min(rebaseset)
199 root = min(rebaseset)
198 else:
200 else:
199 root = None
201 root = None
200
202
201 if not rebaseset:
203 if not rebaseset:
202 repo.ui.debug('base is ancestor of destination')
204 repo.ui.debug('base is ancestor of destination')
203 result = None
205 result = None
204 elif not keepf and list(repo.revs('first(children(%ld) - %ld)',
206 elif not keepf and list(repo.revs('first(children(%ld) - %ld)',
205 rebaseset, rebaseset)):
207 rebaseset, rebaseset)):
206 raise util.Abort(
208 raise util.Abort(
207 _("can't remove original changesets with"
209 _("can't remove original changesets with"
208 " unrebased descendants"),
210 " unrebased descendants"),
209 hint=_('use --keep to keep original changesets'))
211 hint=_('use --keep to keep original changesets'))
210 elif not keepf and not repo[root].mutable():
212 elif not keepf and not repo[root].mutable():
211 raise util.Abort(_("Can't rebase immutable changeset %s")
213 raise util.Abort(_("Can't rebase immutable changeset %s")
212 % repo[root],
214 % repo[root],
213 hint=_('see hg help phases for details'))
215 hint=_('see hg help phases for details'))
214 else:
216 else:
215 result = buildstate(repo, dest, rebaseset, detachf)
217 result = buildstate(repo, dest, rebaseset, detachf)
216
218
217 if not result:
219 if not result:
218 # Empty state built, nothing to rebase
220 # Empty state built, nothing to rebase
219 ui.status(_('nothing to rebase\n'))
221 ui.status(_('nothing to rebase\n'))
220 return 1
222 return 1
221 else:
223 else:
222 originalwd, target, state = result
224 originalwd, target, state = result
223 if collapsef:
225 if collapsef:
224 targetancestors = set(repo.changelog.ancestors(target))
226 targetancestors = set(repo.changelog.ancestors(target))
225 targetancestors.add(target)
227 targetancestors.add(target)
226 external = checkexternal(repo, state, targetancestors)
228 external = checkexternal(repo, state, targetancestors)
227
229
228 if keepbranchesf:
230 if keepbranchesf:
229 assert not extrafn, 'cannot use both keepbranches and extrafn'
231 assert not extrafn, 'cannot use both keepbranches and extrafn'
230 def extrafn(ctx, extra):
232 def extrafn(ctx, extra):
231 extra['branch'] = ctx.branch()
233 extra['branch'] = ctx.branch()
232 if collapsef:
234 if collapsef:
233 branches = set()
235 branches = set()
234 for rev in state:
236 for rev in state:
235 branches.add(repo[rev].branch())
237 branches.add(repo[rev].branch())
236 if len(branches) > 1:
238 if len(branches) > 1:
237 raise util.Abort(_('cannot collapse multiple named '
239 raise util.Abort(_('cannot collapse multiple named '
238 'branches'))
240 'branches'))
239
241
240
242
241 # Rebase
243 # Rebase
242 if not targetancestors:
244 if not targetancestors:
243 targetancestors = set(repo.changelog.ancestors(target))
245 targetancestors = set(repo.changelog.ancestors(target))
244 targetancestors.add(target)
246 targetancestors.add(target)
245
247
246 # Keep track of the current bookmarks in order to reset them later
248 # Keep track of the current bookmarks in order to reset them later
247 currentbookmarks = repo._bookmarks.copy()
249 currentbookmarks = repo._bookmarks.copy()
248
250
249 sortedstate = sorted(state)
251 sortedstate = sorted(state)
250 total = len(sortedstate)
252 total = len(sortedstate)
251 pos = 0
253 pos = 0
252 for rev in sortedstate:
254 for rev in sortedstate:
253 pos += 1
255 pos += 1
254 if state[rev] == -1:
256 if state[rev] == -1:
255 ui.progress(_("rebasing"), pos, ("%d:%s" % (rev, repo[rev])),
257 ui.progress(_("rebasing"), pos, ("%d:%s" % (rev, repo[rev])),
256 _('changesets'), total)
258 _('changesets'), total)
257 storestatus(repo, originalwd, target, state, collapsef, keepf,
259 storestatus(repo, originalwd, target, state, collapsef, keepf,
258 keepbranchesf, external)
260 keepbranchesf, external)
259 p1, p2 = defineparents(repo, rev, target, state,
261 p1, p2 = defineparents(repo, rev, target, state,
260 targetancestors)
262 targetancestors)
261 if len(repo.parents()) == 2:
263 if len(repo.parents()) == 2:
262 repo.ui.debug('resuming interrupted rebase\n')
264 repo.ui.debug('resuming interrupted rebase\n')
263 else:
265 else:
264 try:
266 try:
265 ui.setconfig('ui', 'forcemerge', opts.get('tool', ''))
267 ui.setconfig('ui', 'forcemerge', opts.get('tool', ''))
266 stats = rebasenode(repo, rev, p1, state)
268 stats = rebasenode(repo, rev, p1, state)
267 if stats and stats[3] > 0:
269 if stats and stats[3] > 0:
268 raise util.Abort(_('unresolved conflicts (see hg '
270 raise util.Abort(_('unresolved conflicts (see hg '
269 'resolve, then hg rebase --continue)'))
271 'resolve, then hg rebase --continue)'))
270 finally:
272 finally:
271 ui.setconfig('ui', 'forcemerge', '')
273 ui.setconfig('ui', 'forcemerge', '')
272 cmdutil.duplicatecopies(repo, rev, target)
274 cmdutil.duplicatecopies(repo, rev, target)
273 if not collapsef:
275 if not collapsef:
274 newrev = concludenode(repo, rev, p1, p2, extrafn=extrafn,
276 newrev = concludenode(repo, rev, p1, p2, extrafn=extrafn,
275 editor=editor)
277 editor=editor)
276 else:
278 else:
277 # Skip commit if we are collapsing
279 # Skip commit if we are collapsing
278 repo.dirstate.setparents(repo[p1].node())
280 repo.dirstate.setparents(repo[p1].node())
279 newrev = None
281 newrev = None
280 # Update the state
282 # Update the state
281 if newrev is not None:
283 if newrev is not None:
282 state[rev] = repo[newrev].rev()
284 state[rev] = repo[newrev].rev()
283 else:
285 else:
284 if not collapsef:
286 if not collapsef:
285 ui.note(_('no changes, revision %d skipped\n') % rev)
287 ui.note(_('no changes, revision %d skipped\n') % rev)
286 ui.debug('next revision set to %s\n' % p1)
288 ui.debug('next revision set to %s\n' % p1)
287 skipped.add(rev)
289 skipped.add(rev)
288 state[rev] = p1
290 state[rev] = p1
289
291
290 ui.progress(_('rebasing'), None)
292 ui.progress(_('rebasing'), None)
291 ui.note(_('rebase merging completed\n'))
293 ui.note(_('rebase merging completed\n'))
292
294
293 if collapsef and not keepopen:
295 if collapsef and not keepopen:
294 p1, p2 = defineparents(repo, min(state), target,
296 p1, p2 = defineparents(repo, min(state), target,
295 state, targetancestors)
297 state, targetancestors)
296 if collapsemsg:
298 if collapsemsg:
297 commitmsg = collapsemsg
299 commitmsg = collapsemsg
298 else:
300 else:
299 commitmsg = 'Collapsed revision'
301 commitmsg = 'Collapsed revision'
300 for rebased in state:
302 for rebased in state:
301 if rebased not in skipped and state[rebased] != nullmerge:
303 if rebased not in skipped and state[rebased] != nullmerge:
302 commitmsg += '\n* %s' % repo[rebased].description()
304 commitmsg += '\n* %s' % repo[rebased].description()
303 commitmsg = ui.edit(commitmsg, repo.ui.username())
305 commitmsg = ui.edit(commitmsg, repo.ui.username())
304 newrev = concludenode(repo, rev, p1, external, commitmsg=commitmsg,
306 newrev = concludenode(repo, rev, p1, external, commitmsg=commitmsg,
305 extrafn=extrafn, editor=editor)
307 extrafn=extrafn, editor=editor)
306
308
307 if 'qtip' in repo.tags():
309 if 'qtip' in repo.tags():
308 updatemq(repo, state, skipped, **opts)
310 updatemq(repo, state, skipped, **opts)
309
311
310 if currentbookmarks:
312 if currentbookmarks:
311 # Nodeids are needed to reset bookmarks
313 # Nodeids are needed to reset bookmarks
312 nstate = {}
314 nstate = {}
313 for k, v in state.iteritems():
315 for k, v in state.iteritems():
314 if v != nullmerge:
316 if v != nullmerge:
315 nstate[repo[k].node()] = repo[v].node()
317 nstate[repo[k].node()] = repo[v].node()
316
318
317 if not keepf:
319 if not keepf:
318 # Remove no more useful revisions
320 # Remove no more useful revisions
319 rebased = [rev for rev in state if state[rev] != nullmerge]
321 rebased = [rev for rev in state if state[rev] != nullmerge]
320 if rebased:
322 if rebased:
321 if set(repo.changelog.descendants(min(rebased))) - set(state):
323 if set(repo.changelog.descendants(min(rebased))) - set(state):
322 ui.warn(_("warning: new changesets detected "
324 ui.warn(_("warning: new changesets detected "
323 "on source branch, not stripping\n"))
325 "on source branch, not stripping\n"))
324 else:
326 else:
325 # backup the old csets by default
327 # backup the old csets by default
326 repair.strip(ui, repo, repo[min(rebased)].node(), "all")
328 repair.strip(ui, repo, repo[min(rebased)].node(), "all")
327
329
328 if currentbookmarks:
330 if currentbookmarks:
329 updatebookmarks(repo, nstate, currentbookmarks, **opts)
331 updatebookmarks(repo, nstate, currentbookmarks, **opts)
330
332
331 clearstatus(repo)
333 clearstatus(repo)
332 ui.note(_("rebase completed\n"))
334 ui.note(_("rebase completed\n"))
333 if os.path.exists(repo.sjoin('undo')):
335 if os.path.exists(repo.sjoin('undo')):
334 util.unlinkpath(repo.sjoin('undo'))
336 util.unlinkpath(repo.sjoin('undo'))
335 if skipped:
337 if skipped:
336 ui.note(_("%d revisions have been skipped\n") % len(skipped))
338 ui.note(_("%d revisions have been skipped\n") % len(skipped))
337 finally:
339 finally:
338 release(lock, wlock)
340 release(lock, wlock)
339
341
340 def checkexternal(repo, state, targetancestors):
342 def checkexternal(repo, state, targetancestors):
341 """Check whether one or more external revisions need to be taken in
343 """Check whether one or more external revisions need to be taken in
342 consideration. In the latter case, abort.
344 consideration. In the latter case, abort.
343 """
345 """
344 external = nullrev
346 external = nullrev
345 source = min(state)
347 source = min(state)
346 for rev in state:
348 for rev in state:
347 if rev == source:
349 if rev == source:
348 continue
350 continue
349 # Check externals and fail if there are more than one
351 # Check externals and fail if there are more than one
350 for p in repo[rev].parents():
352 for p in repo[rev].parents():
351 if (p.rev() not in state
353 if (p.rev() not in state
352 and p.rev() not in targetancestors):
354 and p.rev() not in targetancestors):
353 if external != nullrev:
355 if external != nullrev:
354 raise util.Abort(_('unable to collapse, there is more '
356 raise util.Abort(_('unable to collapse, there is more '
355 'than one external parent'))
357 'than one external parent'))
356 external = p.rev()
358 external = p.rev()
357 return external
359 return external
358
360
359 def concludenode(repo, rev, p1, p2, commitmsg=None, editor=None, extrafn=None):
361 def concludenode(repo, rev, p1, p2, commitmsg=None, editor=None, extrafn=None):
360 'Commit the changes and store useful information in extra'
362 'Commit the changes and store useful information in extra'
361 try:
363 try:
362 repo.dirstate.setparents(repo[p1].node(), repo[p2].node())
364 repo.dirstate.setparents(repo[p1].node(), repo[p2].node())
363 ctx = repo[rev]
365 ctx = repo[rev]
364 if commitmsg is None:
366 if commitmsg is None:
365 commitmsg = ctx.description()
367 commitmsg = ctx.description()
366 extra = {'rebase_source': ctx.hex()}
368 extra = {'rebase_source': ctx.hex()}
367 if extrafn:
369 if extrafn:
368 extrafn(ctx, extra)
370 extrafn(ctx, extra)
369 # Commit might fail if unresolved files exist
371 # Commit might fail if unresolved files exist
370 newrev = repo.commit(text=commitmsg, user=ctx.user(),
372 newrev = repo.commit(text=commitmsg, user=ctx.user(),
371 date=ctx.date(), extra=extra, editor=editor)
373 date=ctx.date(), extra=extra, editor=editor)
372 repo.dirstate.setbranch(repo[newrev].branch())
374 repo.dirstate.setbranch(repo[newrev].branch())
373 return newrev
375 return newrev
374 except util.Abort:
376 except util.Abort:
375 # Invalidate the previous setparents
377 # Invalidate the previous setparents
376 repo.dirstate.invalidate()
378 repo.dirstate.invalidate()
377 raise
379 raise
378
380
379 def rebasenode(repo, rev, p1, state):
381 def rebasenode(repo, rev, p1, state):
380 'Rebase a single revision'
382 'Rebase a single revision'
381 # Merge phase
383 # Merge phase
382 # Update to target and merge it with local
384 # Update to target and merge it with local
383 if repo['.'].rev() != repo[p1].rev():
385 if repo['.'].rev() != repo[p1].rev():
384 repo.ui.debug(" update to %d:%s\n" % (repo[p1].rev(), repo[p1]))
386 repo.ui.debug(" update to %d:%s\n" % (repo[p1].rev(), repo[p1]))
385 merge.update(repo, p1, False, True, False)
387 merge.update(repo, p1, False, True, False)
386 else:
388 else:
387 repo.ui.debug(" already in target\n")
389 repo.ui.debug(" already in target\n")
388 repo.dirstate.write()
390 repo.dirstate.write()
389 repo.ui.debug(" merge against %d:%s\n" % (repo[rev].rev(), repo[rev]))
391 repo.ui.debug(" merge against %d:%s\n" % (repo[rev].rev(), repo[rev]))
390 base = None
392 base = None
391 if repo[rev].rev() != repo[min(state)].rev():
393 if repo[rev].rev() != repo[min(state)].rev():
392 base = repo[rev].p1().node()
394 base = repo[rev].p1().node()
393 return merge.update(repo, rev, True, True, False, base)
395 return merge.update(repo, rev, True, True, False, base)
394
396
395 def defineparents(repo, rev, target, state, targetancestors):
397 def defineparents(repo, rev, target, state, targetancestors):
396 'Return the new parent relationship of the revision that will be rebased'
398 'Return the new parent relationship of the revision that will be rebased'
397 parents = repo[rev].parents()
399 parents = repo[rev].parents()
398 p1 = p2 = nullrev
400 p1 = p2 = nullrev
399
401
400 P1n = parents[0].rev()
402 P1n = parents[0].rev()
401 if P1n in targetancestors:
403 if P1n in targetancestors:
402 p1 = target
404 p1 = target
403 elif P1n in state:
405 elif P1n in state:
404 if state[P1n] == nullmerge:
406 if state[P1n] == nullmerge:
405 p1 = target
407 p1 = target
406 else:
408 else:
407 p1 = state[P1n]
409 p1 = state[P1n]
408 else: # P1n external
410 else: # P1n external
409 p1 = target
411 p1 = target
410 p2 = P1n
412 p2 = P1n
411
413
412 if len(parents) == 2 and parents[1].rev() not in targetancestors:
414 if len(parents) == 2 and parents[1].rev() not in targetancestors:
413 P2n = parents[1].rev()
415 P2n = parents[1].rev()
414 # interesting second parent
416 # interesting second parent
415 if P2n in state:
417 if P2n in state:
416 if p1 == target: # P1n in targetancestors or external
418 if p1 == target: # P1n in targetancestors or external
417 p1 = state[P2n]
419 p1 = state[P2n]
418 else:
420 else:
419 p2 = state[P2n]
421 p2 = state[P2n]
420 else: # P2n external
422 else: # P2n external
421 if p2 != nullrev: # P1n external too => rev is a merged revision
423 if p2 != nullrev: # P1n external too => rev is a merged revision
422 raise util.Abort(_('cannot use revision %d as base, result '
424 raise util.Abort(_('cannot use revision %d as base, result '
423 'would have 3 parents') % rev)
425 'would have 3 parents') % rev)
424 p2 = P2n
426 p2 = P2n
425 repo.ui.debug(" future parents are %d and %d\n" %
427 repo.ui.debug(" future parents are %d and %d\n" %
426 (repo[p1].rev(), repo[p2].rev()))
428 (repo[p1].rev(), repo[p2].rev()))
427 return p1, p2
429 return p1, p2
428
430
429 def isagitpatch(repo, patchname):
431 def isagitpatch(repo, patchname):
430 'Return true if the given patch is in git format'
432 'Return true if the given patch is in git format'
431 mqpatch = os.path.join(repo.mq.path, patchname)
433 mqpatch = os.path.join(repo.mq.path, patchname)
432 for line in patch.linereader(file(mqpatch, 'rb')):
434 for line in patch.linereader(file(mqpatch, 'rb')):
433 if line.startswith('diff --git'):
435 if line.startswith('diff --git'):
434 return True
436 return True
435 return False
437 return False
436
438
437 def updatemq(repo, state, skipped, **opts):
439 def updatemq(repo, state, skipped, **opts):
438 'Update rebased mq patches - finalize and then import them'
440 'Update rebased mq patches - finalize and then import them'
439 mqrebase = {}
441 mqrebase = {}
440 mq = repo.mq
442 mq = repo.mq
441 original_series = mq.fullseries[:]
443 original_series = mq.fullseries[:]
442
444
443 for p in mq.applied:
445 for p in mq.applied:
444 rev = repo[p.node].rev()
446 rev = repo[p.node].rev()
445 if rev in state:
447 if rev in state:
446 repo.ui.debug('revision %d is an mq patch (%s), finalize it.\n' %
448 repo.ui.debug('revision %d is an mq patch (%s), finalize it.\n' %
447 (rev, p.name))
449 (rev, p.name))
448 mqrebase[rev] = (p.name, isagitpatch(repo, p.name))
450 mqrebase[rev] = (p.name, isagitpatch(repo, p.name))
449
451
450 if mqrebase:
452 if mqrebase:
451 mq.finish(repo, mqrebase.keys())
453 mq.finish(repo, mqrebase.keys())
452
454
453 # We must start import from the newest revision
455 # We must start import from the newest revision
454 for rev in sorted(mqrebase, reverse=True):
456 for rev in sorted(mqrebase, reverse=True):
455 if rev not in skipped:
457 if rev not in skipped:
456 name, isgit = mqrebase[rev]
458 name, isgit = mqrebase[rev]
457 repo.ui.debug('import mq patch %d (%s)\n' % (state[rev], name))
459 repo.ui.debug('import mq patch %d (%s)\n' % (state[rev], name))
458 mq.qimport(repo, (), patchname=name, git=isgit,
460 mq.qimport(repo, (), patchname=name, git=isgit,
459 rev=[str(state[rev])])
461 rev=[str(state[rev])])
460
462
461 # restore old series to preserve guards
463 # restore old series to preserve guards
462 mq.fullseries = original_series
464 mq.fullseries = original_series
463 mq.series_dirty = True
465 mq.series_dirty = True
464 mq.savedirty()
466 mq.savedirty()
465
467
466 def updatebookmarks(repo, nstate, originalbookmarks, **opts):
468 def updatebookmarks(repo, nstate, originalbookmarks, **opts):
467 'Move bookmarks to their correct changesets'
469 'Move bookmarks to their correct changesets'
468 current = repo._bookmarkcurrent
470 current = repo._bookmarkcurrent
469 for k, v in originalbookmarks.iteritems():
471 for k, v in originalbookmarks.iteritems():
470 if v in nstate:
472 if v in nstate:
471 if nstate[v] != nullmerge:
473 if nstate[v] != nullmerge:
472 # reset the pointer if the bookmark was moved incorrectly
474 # reset the pointer if the bookmark was moved incorrectly
473 if k != current:
475 if k != current:
474 repo._bookmarks[k] = nstate[v]
476 repo._bookmarks[k] = nstate[v]
475
477
476 bookmarks.write(repo)
478 bookmarks.write(repo)
477
479
478 def storestatus(repo, originalwd, target, state, collapse, keep, keepbranches,
480 def storestatus(repo, originalwd, target, state, collapse, keep, keepbranches,
479 external):
481 external):
480 'Store the current status to allow recovery'
482 'Store the current status to allow recovery'
481 f = repo.opener("rebasestate", "w")
483 f = repo.opener("rebasestate", "w")
482 f.write(repo[originalwd].hex() + '\n')
484 f.write(repo[originalwd].hex() + '\n')
483 f.write(repo[target].hex() + '\n')
485 f.write(repo[target].hex() + '\n')
484 f.write(repo[external].hex() + '\n')
486 f.write(repo[external].hex() + '\n')
485 f.write('%d\n' % int(collapse))
487 f.write('%d\n' % int(collapse))
486 f.write('%d\n' % int(keep))
488 f.write('%d\n' % int(keep))
487 f.write('%d\n' % int(keepbranches))
489 f.write('%d\n' % int(keepbranches))
488 for d, v in state.iteritems():
490 for d, v in state.iteritems():
489 oldrev = repo[d].hex()
491 oldrev = repo[d].hex()
490 if v != nullmerge:
492 if v != nullmerge:
491 newrev = repo[v].hex()
493 newrev = repo[v].hex()
492 else:
494 else:
493 newrev = v
495 newrev = v
494 f.write("%s:%s\n" % (oldrev, newrev))
496 f.write("%s:%s\n" % (oldrev, newrev))
495 f.close()
497 f.close()
496 repo.ui.debug('rebase status stored\n')
498 repo.ui.debug('rebase status stored\n')
497
499
498 def clearstatus(repo):
500 def clearstatus(repo):
499 'Remove the status files'
501 'Remove the status files'
500 if os.path.exists(repo.join("rebasestate")):
502 if os.path.exists(repo.join("rebasestate")):
501 util.unlinkpath(repo.join("rebasestate"))
503 util.unlinkpath(repo.join("rebasestate"))
502
504
503 def restorestatus(repo):
505 def restorestatus(repo):
504 'Restore a previously stored status'
506 'Restore a previously stored status'
505 try:
507 try:
506 target = None
508 target = None
507 collapse = False
509 collapse = False
508 external = nullrev
510 external = nullrev
509 state = {}
511 state = {}
510 f = repo.opener("rebasestate")
512 f = repo.opener("rebasestate")
511 for i, l in enumerate(f.read().splitlines()):
513 for i, l in enumerate(f.read().splitlines()):
512 if i == 0:
514 if i == 0:
513 originalwd = repo[l].rev()
515 originalwd = repo[l].rev()
514 elif i == 1:
516 elif i == 1:
515 target = repo[l].rev()
517 target = repo[l].rev()
516 elif i == 2:
518 elif i == 2:
517 external = repo[l].rev()
519 external = repo[l].rev()
518 elif i == 3:
520 elif i == 3:
519 collapse = bool(int(l))
521 collapse = bool(int(l))
520 elif i == 4:
522 elif i == 4:
521 keep = bool(int(l))
523 keep = bool(int(l))
522 elif i == 5:
524 elif i == 5:
523 keepbranches = bool(int(l))
525 keepbranches = bool(int(l))
524 else:
526 else:
525 oldrev, newrev = l.split(':')
527 oldrev, newrev = l.split(':')
526 if newrev != str(nullmerge):
528 if newrev != str(nullmerge):
527 state[repo[oldrev].rev()] = repo[newrev].rev()
529 state[repo[oldrev].rev()] = repo[newrev].rev()
528 else:
530 else:
529 state[repo[oldrev].rev()] = int(newrev)
531 state[repo[oldrev].rev()] = int(newrev)
530 skipped = set()
532 skipped = set()
531 # recompute the set of skipped revs
533 # recompute the set of skipped revs
532 if not collapse:
534 if not collapse:
533 seen = set([target])
535 seen = set([target])
534 for old, new in sorted(state.items()):
536 for old, new in sorted(state.items()):
535 if new != nullrev and new in seen:
537 if new != nullrev and new in seen:
536 skipped.add(old)
538 skipped.add(old)
537 seen.add(new)
539 seen.add(new)
538 repo.ui.debug('computed skipped revs: %s\n' % skipped)
540 repo.ui.debug('computed skipped revs: %s\n' % skipped)
539 repo.ui.debug('rebase status resumed\n')
541 repo.ui.debug('rebase status resumed\n')
540 return (originalwd, target, state, skipped,
542 return (originalwd, target, state, skipped,
541 collapse, keep, keepbranches, external)
543 collapse, keep, keepbranches, external)
542 except IOError, err:
544 except IOError, err:
543 if err.errno != errno.ENOENT:
545 if err.errno != errno.ENOENT:
544 raise
546 raise
545 raise util.Abort(_('no rebase in progress'))
547 raise util.Abort(_('no rebase in progress'))
546
548
547 def abort(repo, originalwd, target, state):
549 def abort(repo, originalwd, target, state):
548 'Restore the repository to its original state'
550 'Restore the repository to its original state'
549 if set(repo.changelog.descendants(target)) - set(state.values()):
551 if set(repo.changelog.descendants(target)) - set(state.values()):
550 repo.ui.warn(_("warning: new changesets detected on target branch, "
552 repo.ui.warn(_("warning: new changesets detected on target branch, "
551 "can't abort\n"))
553 "can't abort\n"))
552 return -1
554 return -1
553 else:
555 else:
554 # Strip from the first rebased revision
556 # Strip from the first rebased revision
555 merge.update(repo, repo[originalwd].rev(), False, True, False)
557 merge.update(repo, repo[originalwd].rev(), False, True, False)
556 rebased = filter(lambda x: x > -1 and x != target, state.values())
558 rebased = filter(lambda x: x > -1 and x != target, state.values())
557 if rebased:
559 if rebased:
558 strippoint = min(rebased)
560 strippoint = min(rebased)
559 # no backup of rebased cset versions needed
561 # no backup of rebased cset versions needed
560 repair.strip(repo.ui, repo, repo[strippoint].node())
562 repair.strip(repo.ui, repo, repo[strippoint].node())
561 clearstatus(repo)
563 clearstatus(repo)
562 repo.ui.warn(_('rebase aborted\n'))
564 repo.ui.warn(_('rebase aborted\n'))
563 return 0
565 return 0
564
566
565 def buildstate(repo, dest, rebaseset, detach):
567 def buildstate(repo, dest, rebaseset, detach):
566 '''Define which revisions are going to be rebased and where
568 '''Define which revisions are going to be rebased and where
567
569
568 repo: repo
570 repo: repo
569 dest: context
571 dest: context
570 rebaseset: set of rev
572 rebaseset: set of rev
571 detach: boolean'''
573 detach: boolean'''
572
574
573 # This check isn't strictly necessary, since mq detects commits over an
575 # This check isn't strictly necessary, since mq detects commits over an
574 # applied patch. But it prevents messing up the working directory when
576 # applied patch. But it prevents messing up the working directory when
575 # a partially completed rebase is blocked by mq.
577 # a partially completed rebase is blocked by mq.
576 if 'qtip' in repo.tags() and (dest.node() in
578 if 'qtip' in repo.tags() and (dest.node() in
577 [s.node for s in repo.mq.applied]):
579 [s.node for s in repo.mq.applied]):
578 raise util.Abort(_('cannot rebase onto an applied mq patch'))
580 raise util.Abort(_('cannot rebase onto an applied mq patch'))
579
581
580 detachset = set()
582 detachset = set()
581 roots = list(repo.set('roots(%ld)', rebaseset))
583 roots = list(repo.set('roots(%ld)', rebaseset))
582 if not roots:
584 if not roots:
583 raise util.Abort(_('no matching revisions'))
585 raise util.Abort(_('no matching revisions'))
584 if len(roots) > 1:
586 if len(roots) > 1:
585 raise util.Abort(_("can't rebase multiple roots"))
587 raise util.Abort(_("can't rebase multiple roots"))
586 root = roots[0]
588 root = roots[0]
587
589
588 commonbase = root.ancestor(dest)
590 commonbase = root.ancestor(dest)
589 if commonbase == root:
591 if commonbase == root:
590 raise util.Abort(_('source is ancestor of destination'))
592 raise util.Abort(_('source is ancestor of destination'))
591 if commonbase == dest:
593 if commonbase == dest:
592 samebranch = root.branch() == dest.branch()
594 samebranch = root.branch() == dest.branch()
593 if samebranch and root in dest.children():
595 if samebranch and root in dest.children():
594 repo.ui.debug('source is a child of destination')
596 repo.ui.debug('source is a child of destination')
595 return None
597 return None
596 # rebase on ancestor, force detach
598 # rebase on ancestor, force detach
597 detach = True
599 detach = True
598 if detach:
600 if detach:
599 detachset = repo.revs('::%d - ::%d - %d', root, commonbase, root)
601 detachset = repo.revs('::%d - ::%d - %d', root, commonbase, root)
600
602
601 repo.ui.debug('rebase onto %d starting from %d\n' % (dest, root))
603 repo.ui.debug('rebase onto %d starting from %d\n' % (dest, root))
602 state = dict.fromkeys(rebaseset, nullrev)
604 state = dict.fromkeys(rebaseset, nullrev)
603 state.update(dict.fromkeys(detachset, nullmerge))
605 state.update(dict.fromkeys(detachset, nullmerge))
604 return repo['.'].rev(), dest.rev(), state
606 return repo['.'].rev(), dest.rev(), state
605
607
606 def pullrebase(orig, ui, repo, *args, **opts):
608 def pullrebase(orig, ui, repo, *args, **opts):
607 'Call rebase after pull if the latter has been invoked with --rebase'
609 'Call rebase after pull if the latter has been invoked with --rebase'
608 if opts.get('rebase'):
610 if opts.get('rebase'):
609 if opts.get('update'):
611 if opts.get('update'):
610 del opts['update']
612 del opts['update']
611 ui.debug('--update and --rebase are not compatible, ignoring '
613 ui.debug('--update and --rebase are not compatible, ignoring '
612 'the update flag\n')
614 'the update flag\n')
613
615
614 cmdutil.bailifchanged(repo)
616 cmdutil.bailifchanged(repo)
615 revsprepull = len(repo)
617 revsprepull = len(repo)
616 origpostincoming = commands.postincoming
618 origpostincoming = commands.postincoming
617 def _dummy(*args, **kwargs):
619 def _dummy(*args, **kwargs):
618 pass
620 pass
619 commands.postincoming = _dummy
621 commands.postincoming = _dummy
620 try:
622 try:
621 orig(ui, repo, *args, **opts)
623 orig(ui, repo, *args, **opts)
622 finally:
624 finally:
623 commands.postincoming = origpostincoming
625 commands.postincoming = origpostincoming
624 revspostpull = len(repo)
626 revspostpull = len(repo)
625 if revspostpull > revsprepull:
627 if revspostpull > revsprepull:
626 rebase(ui, repo, **opts)
628 rebase(ui, repo, **opts)
627 branch = repo[None].branch()
629 branch = repo[None].branch()
628 dest = repo[branch].rev()
630 dest = repo[branch].rev()
629 if dest != repo['.'].rev():
631 if dest != repo['.'].rev():
630 # there was nothing to rebase we force an update
632 # there was nothing to rebase we force an update
631 hg.update(repo, dest)
633 hg.update(repo, dest)
632 else:
634 else:
633 if opts.get('tool'):
635 if opts.get('tool'):
634 raise util.Abort(_('--tool can only be used with --rebase'))
636 raise util.Abort(_('--tool can only be used with --rebase'))
635 orig(ui, repo, *args, **opts)
637 orig(ui, repo, *args, **opts)
636
638
637 def uisetup(ui):
639 def uisetup(ui):
638 'Replace pull with a decorator to provide --rebase option'
640 'Replace pull with a decorator to provide --rebase option'
639 entry = extensions.wrapcommand(commands.table, 'pull', pullrebase)
641 entry = extensions.wrapcommand(commands.table, 'pull', pullrebase)
640 entry[1].append(('', 'rebase', None,
642 entry[1].append(('', 'rebase', None,
641 _("rebase working directory to branch head")))
643 _("rebase working directory to branch head")))
642 entry[1].append(('t', 'tool', '',
644 entry[1].append(('t', 'tool', '',
643 _("specify merge tool for rebase")))
645 _("specify merge tool for rebase")))
@@ -1,730 +1,733 b''
1 # dirstate.py - working directory tracking for mercurial
1 # dirstate.py - working directory tracking for mercurial
2 #
2 #
3 # Copyright 2005-2007 Matt Mackall <mpm@selenic.com>
3 # Copyright 2005-2007 Matt Mackall <mpm@selenic.com>
4 #
4 #
5 # This software may be used and distributed according to the terms of the
5 # This software may be used and distributed according to the terms of the
6 # GNU General Public License version 2 or any later version.
6 # GNU General Public License version 2 or any later version.
7 import errno
7
8
8 from node import nullid
9 from node import nullid
9 from i18n import _
10 from i18n import _
10 import scmutil, util, ignore, osutil, parsers, encoding
11 import scmutil, util, ignore, osutil, parsers, encoding
11 import struct, os, stat, errno
12 import struct, os, stat, errno
12 import cStringIO
13 import cStringIO
13
14
14 _format = ">cllll"
15 _format = ">cllll"
15 propertycache = util.propertycache
16 propertycache = util.propertycache
16
17
17 def _finddirs(path):
18 def _finddirs(path):
18 pos = path.rfind('/')
19 pos = path.rfind('/')
19 while pos != -1:
20 while pos != -1:
20 yield path[:pos]
21 yield path[:pos]
21 pos = path.rfind('/', 0, pos)
22 pos = path.rfind('/', 0, pos)
22
23
23 def _incdirs(dirs, path):
24 def _incdirs(dirs, path):
24 for base in _finddirs(path):
25 for base in _finddirs(path):
25 if base in dirs:
26 if base in dirs:
26 dirs[base] += 1
27 dirs[base] += 1
27 return
28 return
28 dirs[base] = 1
29 dirs[base] = 1
29
30
30 def _decdirs(dirs, path):
31 def _decdirs(dirs, path):
31 for base in _finddirs(path):
32 for base in _finddirs(path):
32 if dirs[base] > 1:
33 if dirs[base] > 1:
33 dirs[base] -= 1
34 dirs[base] -= 1
34 return
35 return
35 del dirs[base]
36 del dirs[base]
36
37
37 class dirstate(object):
38 class dirstate(object):
38
39
39 def __init__(self, opener, ui, root, validate):
40 def __init__(self, opener, ui, root, validate):
40 '''Create a new dirstate object.
41 '''Create a new dirstate object.
41
42
42 opener is an open()-like callable that can be used to open the
43 opener is an open()-like callable that can be used to open the
43 dirstate file; root is the root of the directory tracked by
44 dirstate file; root is the root of the directory tracked by
44 the dirstate.
45 the dirstate.
45 '''
46 '''
46 self._opener = opener
47 self._opener = opener
47 self._validate = validate
48 self._validate = validate
48 self._root = root
49 self._root = root
49 self._rootdir = os.path.join(root, '')
50 self._rootdir = os.path.join(root, '')
50 self._dirty = False
51 self._dirty = False
51 self._dirtypl = False
52 self._dirtypl = False
52 self._lastnormaltime = 0
53 self._lastnormaltime = 0
53 self._ui = ui
54 self._ui = ui
54
55
55 @propertycache
56 @propertycache
56 def _map(self):
57 def _map(self):
57 '''Return the dirstate contents as a map from filename to
58 '''Return the dirstate contents as a map from filename to
58 (state, mode, size, time).'''
59 (state, mode, size, time).'''
59 self._read()
60 self._read()
60 return self._map
61 return self._map
61
62
62 @propertycache
63 @propertycache
63 def _copymap(self):
64 def _copymap(self):
64 self._read()
65 self._read()
65 return self._copymap
66 return self._copymap
66
67
67 @propertycache
68 @propertycache
68 def _normroot(self):
69 def _normroot(self):
69 return util.normcase(self._root)
70 return util.normcase(self._root)
70
71
71 @propertycache
72 @propertycache
72 def _foldmap(self):
73 def _foldmap(self):
73 f = {}
74 f = {}
74 for name in self._map:
75 for name in self._map:
75 f[util.normcase(name)] = name
76 f[util.normcase(name)] = name
76 f['.'] = '.' # prevents useless util.fspath() invocation
77 f['.'] = '.' # prevents useless util.fspath() invocation
77 return f
78 return f
78
79
79 @propertycache
80 @propertycache
80 def _branch(self):
81 def _branch(self):
81 try:
82 try:
82 return self._opener.read("branch").strip() or "default"
83 return self._opener.read("branch").strip() or "default"
83 except IOError:
84 except IOError, inst:
85 if inst.errno != errno.ENOENT:
86 raise
84 return "default"
87 return "default"
85
88
86 @propertycache
89 @propertycache
87 def _pl(self):
90 def _pl(self):
88 try:
91 try:
89 fp = self._opener("dirstate")
92 fp = self._opener("dirstate")
90 st = fp.read(40)
93 st = fp.read(40)
91 fp.close()
94 fp.close()
92 l = len(st)
95 l = len(st)
93 if l == 40:
96 if l == 40:
94 return st[:20], st[20:40]
97 return st[:20], st[20:40]
95 elif l > 0 and l < 40:
98 elif l > 0 and l < 40:
96 raise util.Abort(_('working directory state appears damaged!'))
99 raise util.Abort(_('working directory state appears damaged!'))
97 except IOError, err:
100 except IOError, err:
98 if err.errno != errno.ENOENT:
101 if err.errno != errno.ENOENT:
99 raise
102 raise
100 return [nullid, nullid]
103 return [nullid, nullid]
101
104
102 @propertycache
105 @propertycache
103 def _dirs(self):
106 def _dirs(self):
104 dirs = {}
107 dirs = {}
105 for f, s in self._map.iteritems():
108 for f, s in self._map.iteritems():
106 if s[0] != 'r':
109 if s[0] != 'r':
107 _incdirs(dirs, f)
110 _incdirs(dirs, f)
108 return dirs
111 return dirs
109
112
110 @propertycache
113 @propertycache
111 def _ignore(self):
114 def _ignore(self):
112 files = [self._join('.hgignore')]
115 files = [self._join('.hgignore')]
113 for name, path in self._ui.configitems("ui"):
116 for name, path in self._ui.configitems("ui"):
114 if name == 'ignore' or name.startswith('ignore.'):
117 if name == 'ignore' or name.startswith('ignore.'):
115 files.append(util.expandpath(path))
118 files.append(util.expandpath(path))
116 return ignore.ignore(self._root, files, self._ui.warn)
119 return ignore.ignore(self._root, files, self._ui.warn)
117
120
118 @propertycache
121 @propertycache
119 def _slash(self):
122 def _slash(self):
120 return self._ui.configbool('ui', 'slash') and os.sep != '/'
123 return self._ui.configbool('ui', 'slash') and os.sep != '/'
121
124
122 @propertycache
125 @propertycache
123 def _checklink(self):
126 def _checklink(self):
124 return util.checklink(self._root)
127 return util.checklink(self._root)
125
128
126 @propertycache
129 @propertycache
127 def _checkexec(self):
130 def _checkexec(self):
128 return util.checkexec(self._root)
131 return util.checkexec(self._root)
129
132
130 @propertycache
133 @propertycache
131 def _checkcase(self):
134 def _checkcase(self):
132 return not util.checkcase(self._join('.hg'))
135 return not util.checkcase(self._join('.hg'))
133
136
134 def _join(self, f):
137 def _join(self, f):
135 # much faster than os.path.join()
138 # much faster than os.path.join()
136 # it's safe because f is always a relative path
139 # it's safe because f is always a relative path
137 return self._rootdir + f
140 return self._rootdir + f
138
141
139 def flagfunc(self, buildfallback):
142 def flagfunc(self, buildfallback):
140 if self._checklink and self._checkexec:
143 if self._checklink and self._checkexec:
141 def f(x):
144 def f(x):
142 p = self._join(x)
145 p = self._join(x)
143 if os.path.islink(p):
146 if os.path.islink(p):
144 return 'l'
147 return 'l'
145 if util.isexec(p):
148 if util.isexec(p):
146 return 'x'
149 return 'x'
147 return ''
150 return ''
148 return f
151 return f
149
152
150 fallback = buildfallback()
153 fallback = buildfallback()
151 if self._checklink:
154 if self._checklink:
152 def f(x):
155 def f(x):
153 if os.path.islink(self._join(x)):
156 if os.path.islink(self._join(x)):
154 return 'l'
157 return 'l'
155 if 'x' in fallback(x):
158 if 'x' in fallback(x):
156 return 'x'
159 return 'x'
157 return ''
160 return ''
158 return f
161 return f
159 if self._checkexec:
162 if self._checkexec:
160 def f(x):
163 def f(x):
161 if 'l' in fallback(x):
164 if 'l' in fallback(x):
162 return 'l'
165 return 'l'
163 if util.isexec(self._join(x)):
166 if util.isexec(self._join(x)):
164 return 'x'
167 return 'x'
165 return ''
168 return ''
166 return f
169 return f
167 else:
170 else:
168 return fallback
171 return fallback
169
172
170 def getcwd(self):
173 def getcwd(self):
171 cwd = os.getcwd()
174 cwd = os.getcwd()
172 if cwd == self._root:
175 if cwd == self._root:
173 return ''
176 return ''
174 # self._root ends with a path separator if self._root is '/' or 'C:\'
177 # self._root ends with a path separator if self._root is '/' or 'C:\'
175 rootsep = self._root
178 rootsep = self._root
176 if not util.endswithsep(rootsep):
179 if not util.endswithsep(rootsep):
177 rootsep += os.sep
180 rootsep += os.sep
178 if cwd.startswith(rootsep):
181 if cwd.startswith(rootsep):
179 return cwd[len(rootsep):]
182 return cwd[len(rootsep):]
180 else:
183 else:
181 # we're outside the repo. return an absolute path.
184 # we're outside the repo. return an absolute path.
182 return cwd
185 return cwd
183
186
184 def pathto(self, f, cwd=None):
187 def pathto(self, f, cwd=None):
185 if cwd is None:
188 if cwd is None:
186 cwd = self.getcwd()
189 cwd = self.getcwd()
187 path = util.pathto(self._root, cwd, f)
190 path = util.pathto(self._root, cwd, f)
188 if self._slash:
191 if self._slash:
189 return util.normpath(path)
192 return util.normpath(path)
190 return path
193 return path
191
194
192 def __getitem__(self, key):
195 def __getitem__(self, key):
193 '''Return the current state of key (a filename) in the dirstate.
196 '''Return the current state of key (a filename) in the dirstate.
194
197
195 States are:
198 States are:
196 n normal
199 n normal
197 m needs merging
200 m needs merging
198 r marked for removal
201 r marked for removal
199 a marked for addition
202 a marked for addition
200 ? not tracked
203 ? not tracked
201 '''
204 '''
202 return self._map.get(key, ("?",))[0]
205 return self._map.get(key, ("?",))[0]
203
206
204 def __contains__(self, key):
207 def __contains__(self, key):
205 return key in self._map
208 return key in self._map
206
209
207 def __iter__(self):
210 def __iter__(self):
208 for x in sorted(self._map):
211 for x in sorted(self._map):
209 yield x
212 yield x
210
213
211 def parents(self):
214 def parents(self):
212 return [self._validate(p) for p in self._pl]
215 return [self._validate(p) for p in self._pl]
213
216
214 def p1(self):
217 def p1(self):
215 return self._validate(self._pl[0])
218 return self._validate(self._pl[0])
216
219
217 def p2(self):
220 def p2(self):
218 return self._validate(self._pl[1])
221 return self._validate(self._pl[1])
219
222
220 def branch(self):
223 def branch(self):
221 return encoding.tolocal(self._branch)
224 return encoding.tolocal(self._branch)
222
225
223 def setparents(self, p1, p2=nullid):
226 def setparents(self, p1, p2=nullid):
224 self._dirty = self._dirtypl = True
227 self._dirty = self._dirtypl = True
225 self._pl = p1, p2
228 self._pl = p1, p2
226
229
227 def setbranch(self, branch):
230 def setbranch(self, branch):
228 if branch in ['tip', '.', 'null']:
231 if branch in ['tip', '.', 'null']:
229 raise util.Abort(_('the name \'%s\' is reserved') % branch)
232 raise util.Abort(_('the name \'%s\' is reserved') % branch)
230 self._branch = encoding.fromlocal(branch)
233 self._branch = encoding.fromlocal(branch)
231 self._opener.write("branch", self._branch + '\n')
234 self._opener.write("branch", self._branch + '\n')
232
235
233 def _read(self):
236 def _read(self):
234 self._map = {}
237 self._map = {}
235 self._copymap = {}
238 self._copymap = {}
236 try:
239 try:
237 st = self._opener.read("dirstate")
240 st = self._opener.read("dirstate")
238 except IOError, err:
241 except IOError, err:
239 if err.errno != errno.ENOENT:
242 if err.errno != errno.ENOENT:
240 raise
243 raise
241 return
244 return
242 if not st:
245 if not st:
243 return
246 return
244
247
245 p = parsers.parse_dirstate(self._map, self._copymap, st)
248 p = parsers.parse_dirstate(self._map, self._copymap, st)
246 if not self._dirtypl:
249 if not self._dirtypl:
247 self._pl = p
250 self._pl = p
248
251
249 def invalidate(self):
252 def invalidate(self):
250 for a in ("_map", "_copymap", "_foldmap", "_branch", "_pl", "_dirs",
253 for a in ("_map", "_copymap", "_foldmap", "_branch", "_pl", "_dirs",
251 "_ignore"):
254 "_ignore"):
252 if a in self.__dict__:
255 if a in self.__dict__:
253 delattr(self, a)
256 delattr(self, a)
254 self._lastnormaltime = 0
257 self._lastnormaltime = 0
255 self._dirty = False
258 self._dirty = False
256
259
257 def copy(self, source, dest):
260 def copy(self, source, dest):
258 """Mark dest as a copy of source. Unmark dest if source is None."""
261 """Mark dest as a copy of source. Unmark dest if source is None."""
259 if source == dest:
262 if source == dest:
260 return
263 return
261 self._dirty = True
264 self._dirty = True
262 if source is not None:
265 if source is not None:
263 self._copymap[dest] = source
266 self._copymap[dest] = source
264 elif dest in self._copymap:
267 elif dest in self._copymap:
265 del self._copymap[dest]
268 del self._copymap[dest]
266
269
267 def copied(self, file):
270 def copied(self, file):
268 return self._copymap.get(file, None)
271 return self._copymap.get(file, None)
269
272
270 def copies(self):
273 def copies(self):
271 return self._copymap
274 return self._copymap
272
275
273 def _droppath(self, f):
276 def _droppath(self, f):
274 if self[f] not in "?r" and "_dirs" in self.__dict__:
277 if self[f] not in "?r" and "_dirs" in self.__dict__:
275 _decdirs(self._dirs, f)
278 _decdirs(self._dirs, f)
276
279
277 def _addpath(self, f, check=False):
280 def _addpath(self, f, check=False):
278 oldstate = self[f]
281 oldstate = self[f]
279 if check or oldstate == "r":
282 if check or oldstate == "r":
280 scmutil.checkfilename(f)
283 scmutil.checkfilename(f)
281 if f in self._dirs:
284 if f in self._dirs:
282 raise util.Abort(_('directory %r already in dirstate') % f)
285 raise util.Abort(_('directory %r already in dirstate') % f)
283 # shadows
286 # shadows
284 for d in _finddirs(f):
287 for d in _finddirs(f):
285 if d in self._dirs:
288 if d in self._dirs:
286 break
289 break
287 if d in self._map and self[d] != 'r':
290 if d in self._map and self[d] != 'r':
288 raise util.Abort(
291 raise util.Abort(
289 _('file %r in dirstate clashes with %r') % (d, f))
292 _('file %r in dirstate clashes with %r') % (d, f))
290 if oldstate in "?r" and "_dirs" in self.__dict__:
293 if oldstate in "?r" and "_dirs" in self.__dict__:
291 _incdirs(self._dirs, f)
294 _incdirs(self._dirs, f)
292
295
293 def normal(self, f):
296 def normal(self, f):
294 '''Mark a file normal and clean.'''
297 '''Mark a file normal and clean.'''
295 self._dirty = True
298 self._dirty = True
296 self._addpath(f)
299 self._addpath(f)
297 s = os.lstat(self._join(f))
300 s = os.lstat(self._join(f))
298 mtime = int(s.st_mtime)
301 mtime = int(s.st_mtime)
299 self._map[f] = ('n', s.st_mode, s.st_size, mtime)
302 self._map[f] = ('n', s.st_mode, s.st_size, mtime)
300 if f in self._copymap:
303 if f in self._copymap:
301 del self._copymap[f]
304 del self._copymap[f]
302 if mtime > self._lastnormaltime:
305 if mtime > self._lastnormaltime:
303 # Remember the most recent modification timeslot for status(),
306 # Remember the most recent modification timeslot for status(),
304 # to make sure we won't miss future size-preserving file content
307 # to make sure we won't miss future size-preserving file content
305 # modifications that happen within the same timeslot.
308 # modifications that happen within the same timeslot.
306 self._lastnormaltime = mtime
309 self._lastnormaltime = mtime
307
310
308 def normallookup(self, f):
311 def normallookup(self, f):
309 '''Mark a file normal, but possibly dirty.'''
312 '''Mark a file normal, but possibly dirty.'''
310 if self._pl[1] != nullid and f in self._map:
313 if self._pl[1] != nullid and f in self._map:
311 # if there is a merge going on and the file was either
314 # if there is a merge going on and the file was either
312 # in state 'm' (-1) or coming from other parent (-2) before
315 # in state 'm' (-1) or coming from other parent (-2) before
313 # being removed, restore that state.
316 # being removed, restore that state.
314 entry = self._map[f]
317 entry = self._map[f]
315 if entry[0] == 'r' and entry[2] in (-1, -2):
318 if entry[0] == 'r' and entry[2] in (-1, -2):
316 source = self._copymap.get(f)
319 source = self._copymap.get(f)
317 if entry[2] == -1:
320 if entry[2] == -1:
318 self.merge(f)
321 self.merge(f)
319 elif entry[2] == -2:
322 elif entry[2] == -2:
320 self.otherparent(f)
323 self.otherparent(f)
321 if source:
324 if source:
322 self.copy(source, f)
325 self.copy(source, f)
323 return
326 return
324 if entry[0] == 'm' or entry[0] == 'n' and entry[2] == -2:
327 if entry[0] == 'm' or entry[0] == 'n' and entry[2] == -2:
325 return
328 return
326 self._dirty = True
329 self._dirty = True
327 self._addpath(f)
330 self._addpath(f)
328 self._map[f] = ('n', 0, -1, -1)
331 self._map[f] = ('n', 0, -1, -1)
329 if f in self._copymap:
332 if f in self._copymap:
330 del self._copymap[f]
333 del self._copymap[f]
331
334
332 def otherparent(self, f):
335 def otherparent(self, f):
333 '''Mark as coming from the other parent, always dirty.'''
336 '''Mark as coming from the other parent, always dirty.'''
334 if self._pl[1] == nullid:
337 if self._pl[1] == nullid:
335 raise util.Abort(_("setting %r to other parent "
338 raise util.Abort(_("setting %r to other parent "
336 "only allowed in merges") % f)
339 "only allowed in merges") % f)
337 self._dirty = True
340 self._dirty = True
338 self._addpath(f)
341 self._addpath(f)
339 self._map[f] = ('n', 0, -2, -1)
342 self._map[f] = ('n', 0, -2, -1)
340 if f in self._copymap:
343 if f in self._copymap:
341 del self._copymap[f]
344 del self._copymap[f]
342
345
343 def add(self, f):
346 def add(self, f):
344 '''Mark a file added.'''
347 '''Mark a file added.'''
345 self._dirty = True
348 self._dirty = True
346 self._addpath(f, True)
349 self._addpath(f, True)
347 self._map[f] = ('a', 0, -1, -1)
350 self._map[f] = ('a', 0, -1, -1)
348 if f in self._copymap:
351 if f in self._copymap:
349 del self._copymap[f]
352 del self._copymap[f]
350
353
351 def remove(self, f):
354 def remove(self, f):
352 '''Mark a file removed.'''
355 '''Mark a file removed.'''
353 self._dirty = True
356 self._dirty = True
354 self._droppath(f)
357 self._droppath(f)
355 size = 0
358 size = 0
356 if self._pl[1] != nullid and f in self._map:
359 if self._pl[1] != nullid and f in self._map:
357 # backup the previous state
360 # backup the previous state
358 entry = self._map[f]
361 entry = self._map[f]
359 if entry[0] == 'm': # merge
362 if entry[0] == 'm': # merge
360 size = -1
363 size = -1
361 elif entry[0] == 'n' and entry[2] == -2: # other parent
364 elif entry[0] == 'n' and entry[2] == -2: # other parent
362 size = -2
365 size = -2
363 self._map[f] = ('r', 0, size, 0)
366 self._map[f] = ('r', 0, size, 0)
364 if size == 0 and f in self._copymap:
367 if size == 0 and f in self._copymap:
365 del self._copymap[f]
368 del self._copymap[f]
366
369
367 def merge(self, f):
370 def merge(self, f):
368 '''Mark a file merged.'''
371 '''Mark a file merged.'''
369 self._dirty = True
372 self._dirty = True
370 s = os.lstat(self._join(f))
373 s = os.lstat(self._join(f))
371 self._addpath(f)
374 self._addpath(f)
372 self._map[f] = ('m', s.st_mode, s.st_size, int(s.st_mtime))
375 self._map[f] = ('m', s.st_mode, s.st_size, int(s.st_mtime))
373 if f in self._copymap:
376 if f in self._copymap:
374 del self._copymap[f]
377 del self._copymap[f]
375
378
376 def drop(self, f):
379 def drop(self, f):
377 '''Drop a file from the dirstate'''
380 '''Drop a file from the dirstate'''
378 if f in self._map:
381 if f in self._map:
379 self._dirty = True
382 self._dirty = True
380 self._droppath(f)
383 self._droppath(f)
381 del self._map[f]
384 del self._map[f]
382
385
383 def _normalize(self, path, isknown):
386 def _normalize(self, path, isknown):
384 normed = util.normcase(path)
387 normed = util.normcase(path)
385 folded = self._foldmap.get(normed, None)
388 folded = self._foldmap.get(normed, None)
386 if folded is None:
389 if folded is None:
387 if isknown or not os.path.lexists(os.path.join(self._root, path)):
390 if isknown or not os.path.lexists(os.path.join(self._root, path)):
388 folded = path
391 folded = path
389 else:
392 else:
390 folded = self._foldmap.setdefault(normed,
393 folded = self._foldmap.setdefault(normed,
391 util.fspath(normed, self._normroot))
394 util.fspath(normed, self._normroot))
392 return folded
395 return folded
393
396
394 def normalize(self, path, isknown=False):
397 def normalize(self, path, isknown=False):
395 '''
398 '''
396 normalize the case of a pathname when on a casefolding filesystem
399 normalize the case of a pathname when on a casefolding filesystem
397
400
398 isknown specifies whether the filename came from walking the
401 isknown specifies whether the filename came from walking the
399 disk, to avoid extra filesystem access
402 disk, to avoid extra filesystem access
400
403
401 The normalized case is determined based on the following precedence:
404 The normalized case is determined based on the following precedence:
402
405
403 - version of name already stored in the dirstate
406 - version of name already stored in the dirstate
404 - version of name stored on disk
407 - version of name stored on disk
405 - version provided via command arguments
408 - version provided via command arguments
406 '''
409 '''
407
410
408 if self._checkcase:
411 if self._checkcase:
409 return self._normalize(path, isknown)
412 return self._normalize(path, isknown)
410 return path
413 return path
411
414
412 def clear(self):
415 def clear(self):
413 self._map = {}
416 self._map = {}
414 if "_dirs" in self.__dict__:
417 if "_dirs" in self.__dict__:
415 delattr(self, "_dirs")
418 delattr(self, "_dirs")
416 self._copymap = {}
419 self._copymap = {}
417 self._pl = [nullid, nullid]
420 self._pl = [nullid, nullid]
418 self._lastnormaltime = 0
421 self._lastnormaltime = 0
419 self._dirty = True
422 self._dirty = True
420
423
421 def rebuild(self, parent, files):
424 def rebuild(self, parent, files):
422 self.clear()
425 self.clear()
423 for f in files:
426 for f in files:
424 if 'x' in files.flags(f):
427 if 'x' in files.flags(f):
425 self._map[f] = ('n', 0777, -1, 0)
428 self._map[f] = ('n', 0777, -1, 0)
426 else:
429 else:
427 self._map[f] = ('n', 0666, -1, 0)
430 self._map[f] = ('n', 0666, -1, 0)
428 self._pl = (parent, nullid)
431 self._pl = (parent, nullid)
429 self._dirty = True
432 self._dirty = True
430
433
431 def write(self):
434 def write(self):
432 if not self._dirty:
435 if not self._dirty:
433 return
436 return
434 st = self._opener("dirstate", "w", atomictemp=True)
437 st = self._opener("dirstate", "w", atomictemp=True)
435
438
436 # use the modification time of the newly created temporary file as the
439 # use the modification time of the newly created temporary file as the
437 # filesystem's notion of 'now'
440 # filesystem's notion of 'now'
438 now = int(util.fstat(st).st_mtime)
441 now = int(util.fstat(st).st_mtime)
439
442
440 cs = cStringIO.StringIO()
443 cs = cStringIO.StringIO()
441 copymap = self._copymap
444 copymap = self._copymap
442 pack = struct.pack
445 pack = struct.pack
443 write = cs.write
446 write = cs.write
444 write("".join(self._pl))
447 write("".join(self._pl))
445 for f, e in self._map.iteritems():
448 for f, e in self._map.iteritems():
446 if e[0] == 'n' and e[3] == now:
449 if e[0] == 'n' and e[3] == now:
447 # The file was last modified "simultaneously" with the current
450 # The file was last modified "simultaneously" with the current
448 # write to dirstate (i.e. within the same second for file-
451 # write to dirstate (i.e. within the same second for file-
449 # systems with a granularity of 1 sec). This commonly happens
452 # systems with a granularity of 1 sec). This commonly happens
450 # for at least a couple of files on 'update'.
453 # for at least a couple of files on 'update'.
451 # The user could change the file without changing its size
454 # The user could change the file without changing its size
452 # within the same second. Invalidate the file's stat data in
455 # within the same second. Invalidate the file's stat data in
453 # dirstate, forcing future 'status' calls to compare the
456 # dirstate, forcing future 'status' calls to compare the
454 # contents of the file. This prevents mistakenly treating such
457 # contents of the file. This prevents mistakenly treating such
455 # files as clean.
458 # files as clean.
456 e = (e[0], 0, -1, -1) # mark entry as 'unset'
459 e = (e[0], 0, -1, -1) # mark entry as 'unset'
457 self._map[f] = e
460 self._map[f] = e
458
461
459 if f in copymap:
462 if f in copymap:
460 f = "%s\0%s" % (f, copymap[f])
463 f = "%s\0%s" % (f, copymap[f])
461 e = pack(_format, e[0], e[1], e[2], e[3], len(f))
464 e = pack(_format, e[0], e[1], e[2], e[3], len(f))
462 write(e)
465 write(e)
463 write(f)
466 write(f)
464 st.write(cs.getvalue())
467 st.write(cs.getvalue())
465 st.close()
468 st.close()
466 self._lastnormaltime = 0
469 self._lastnormaltime = 0
467 self._dirty = self._dirtypl = False
470 self._dirty = self._dirtypl = False
468
471
469 def _dirignore(self, f):
472 def _dirignore(self, f):
470 if f == '.':
473 if f == '.':
471 return False
474 return False
472 if self._ignore(f):
475 if self._ignore(f):
473 return True
476 return True
474 for p in _finddirs(f):
477 for p in _finddirs(f):
475 if self._ignore(p):
478 if self._ignore(p):
476 return True
479 return True
477 return False
480 return False
478
481
479 def walk(self, match, subrepos, unknown, ignored):
482 def walk(self, match, subrepos, unknown, ignored):
480 '''
483 '''
481 Walk recursively through the directory tree, finding all files
484 Walk recursively through the directory tree, finding all files
482 matched by match.
485 matched by match.
483
486
484 Return a dict mapping filename to stat-like object (either
487 Return a dict mapping filename to stat-like object (either
485 mercurial.osutil.stat instance or return value of os.stat()).
488 mercurial.osutil.stat instance or return value of os.stat()).
486 '''
489 '''
487
490
488 def fwarn(f, msg):
491 def fwarn(f, msg):
489 self._ui.warn('%s: %s\n' % (self.pathto(f), msg))
492 self._ui.warn('%s: %s\n' % (self.pathto(f), msg))
490 return False
493 return False
491
494
492 def badtype(mode):
495 def badtype(mode):
493 kind = _('unknown')
496 kind = _('unknown')
494 if stat.S_ISCHR(mode):
497 if stat.S_ISCHR(mode):
495 kind = _('character device')
498 kind = _('character device')
496 elif stat.S_ISBLK(mode):
499 elif stat.S_ISBLK(mode):
497 kind = _('block device')
500 kind = _('block device')
498 elif stat.S_ISFIFO(mode):
501 elif stat.S_ISFIFO(mode):
499 kind = _('fifo')
502 kind = _('fifo')
500 elif stat.S_ISSOCK(mode):
503 elif stat.S_ISSOCK(mode):
501 kind = _('socket')
504 kind = _('socket')
502 elif stat.S_ISDIR(mode):
505 elif stat.S_ISDIR(mode):
503 kind = _('directory')
506 kind = _('directory')
504 return _('unsupported file type (type is %s)') % kind
507 return _('unsupported file type (type is %s)') % kind
505
508
506 ignore = self._ignore
509 ignore = self._ignore
507 dirignore = self._dirignore
510 dirignore = self._dirignore
508 if ignored:
511 if ignored:
509 ignore = util.never
512 ignore = util.never
510 dirignore = util.never
513 dirignore = util.never
511 elif not unknown:
514 elif not unknown:
512 # if unknown and ignored are False, skip step 2
515 # if unknown and ignored are False, skip step 2
513 ignore = util.always
516 ignore = util.always
514 dirignore = util.always
517 dirignore = util.always
515
518
516 matchfn = match.matchfn
519 matchfn = match.matchfn
517 badfn = match.bad
520 badfn = match.bad
518 dmap = self._map
521 dmap = self._map
519 normpath = util.normpath
522 normpath = util.normpath
520 listdir = osutil.listdir
523 listdir = osutil.listdir
521 lstat = os.lstat
524 lstat = os.lstat
522 getkind = stat.S_IFMT
525 getkind = stat.S_IFMT
523 dirkind = stat.S_IFDIR
526 dirkind = stat.S_IFDIR
524 regkind = stat.S_IFREG
527 regkind = stat.S_IFREG
525 lnkkind = stat.S_IFLNK
528 lnkkind = stat.S_IFLNK
526 join = self._join
529 join = self._join
527 work = []
530 work = []
528 wadd = work.append
531 wadd = work.append
529
532
530 exact = skipstep3 = False
533 exact = skipstep3 = False
531 if matchfn == match.exact: # match.exact
534 if matchfn == match.exact: # match.exact
532 exact = True
535 exact = True
533 dirignore = util.always # skip step 2
536 dirignore = util.always # skip step 2
534 elif match.files() and not match.anypats(): # match.match, no patterns
537 elif match.files() and not match.anypats(): # match.match, no patterns
535 skipstep3 = True
538 skipstep3 = True
536
539
537 if self._checkcase:
540 if self._checkcase:
538 normalize = self._normalize
541 normalize = self._normalize
539 skipstep3 = False
542 skipstep3 = False
540 else:
543 else:
541 normalize = lambda x, y: x
544 normalize = lambda x, y: x
542
545
543 files = sorted(match.files())
546 files = sorted(match.files())
544 subrepos.sort()
547 subrepos.sort()
545 i, j = 0, 0
548 i, j = 0, 0
546 while i < len(files) and j < len(subrepos):
549 while i < len(files) and j < len(subrepos):
547 subpath = subrepos[j] + "/"
550 subpath = subrepos[j] + "/"
548 if files[i] < subpath:
551 if files[i] < subpath:
549 i += 1
552 i += 1
550 continue
553 continue
551 while i < len(files) and files[i].startswith(subpath):
554 while i < len(files) and files[i].startswith(subpath):
552 del files[i]
555 del files[i]
553 j += 1
556 j += 1
554
557
555 if not files or '.' in files:
558 if not files or '.' in files:
556 files = ['']
559 files = ['']
557 results = dict.fromkeys(subrepos)
560 results = dict.fromkeys(subrepos)
558 results['.hg'] = None
561 results['.hg'] = None
559
562
560 # step 1: find all explicit files
563 # step 1: find all explicit files
561 for ff in files:
564 for ff in files:
562 nf = normalize(normpath(ff), False)
565 nf = normalize(normpath(ff), False)
563 if nf in results:
566 if nf in results:
564 continue
567 continue
565
568
566 try:
569 try:
567 st = lstat(join(nf))
570 st = lstat(join(nf))
568 kind = getkind(st.st_mode)
571 kind = getkind(st.st_mode)
569 if kind == dirkind:
572 if kind == dirkind:
570 skipstep3 = False
573 skipstep3 = False
571 if nf in dmap:
574 if nf in dmap:
572 #file deleted on disk but still in dirstate
575 #file deleted on disk but still in dirstate
573 results[nf] = None
576 results[nf] = None
574 match.dir(nf)
577 match.dir(nf)
575 if not dirignore(nf):
578 if not dirignore(nf):
576 wadd(nf)
579 wadd(nf)
577 elif kind == regkind or kind == lnkkind:
580 elif kind == regkind or kind == lnkkind:
578 results[nf] = st
581 results[nf] = st
579 else:
582 else:
580 badfn(ff, badtype(kind))
583 badfn(ff, badtype(kind))
581 if nf in dmap:
584 if nf in dmap:
582 results[nf] = None
585 results[nf] = None
583 except OSError, inst:
586 except OSError, inst:
584 if nf in dmap: # does it exactly match a file?
587 if nf in dmap: # does it exactly match a file?
585 results[nf] = None
588 results[nf] = None
586 else: # does it match a directory?
589 else: # does it match a directory?
587 prefix = nf + "/"
590 prefix = nf + "/"
588 for fn in dmap:
591 for fn in dmap:
589 if fn.startswith(prefix):
592 if fn.startswith(prefix):
590 match.dir(nf)
593 match.dir(nf)
591 skipstep3 = False
594 skipstep3 = False
592 break
595 break
593 else:
596 else:
594 badfn(ff, inst.strerror)
597 badfn(ff, inst.strerror)
595
598
596 # step 2: visit subdirectories
599 # step 2: visit subdirectories
597 while work:
600 while work:
598 nd = work.pop()
601 nd = work.pop()
599 skip = None
602 skip = None
600 if nd == '.':
603 if nd == '.':
601 nd = ''
604 nd = ''
602 else:
605 else:
603 skip = '.hg'
606 skip = '.hg'
604 try:
607 try:
605 entries = listdir(join(nd), stat=True, skip=skip)
608 entries = listdir(join(nd), stat=True, skip=skip)
606 except OSError, inst:
609 except OSError, inst:
607 if inst.errno == errno.EACCES:
610 if inst.errno == errno.EACCES:
608 fwarn(nd, inst.strerror)
611 fwarn(nd, inst.strerror)
609 continue
612 continue
610 raise
613 raise
611 for f, kind, st in entries:
614 for f, kind, st in entries:
612 nf = normalize(nd and (nd + "/" + f) or f, True)
615 nf = normalize(nd and (nd + "/" + f) or f, True)
613 if nf not in results:
616 if nf not in results:
614 if kind == dirkind:
617 if kind == dirkind:
615 if not ignore(nf):
618 if not ignore(nf):
616 match.dir(nf)
619 match.dir(nf)
617 wadd(nf)
620 wadd(nf)
618 if nf in dmap and matchfn(nf):
621 if nf in dmap and matchfn(nf):
619 results[nf] = None
622 results[nf] = None
620 elif kind == regkind or kind == lnkkind:
623 elif kind == regkind or kind == lnkkind:
621 if nf in dmap:
624 if nf in dmap:
622 if matchfn(nf):
625 if matchfn(nf):
623 results[nf] = st
626 results[nf] = st
624 elif matchfn(nf) and not ignore(nf):
627 elif matchfn(nf) and not ignore(nf):
625 results[nf] = st
628 results[nf] = st
626 elif nf in dmap and matchfn(nf):
629 elif nf in dmap and matchfn(nf):
627 results[nf] = None
630 results[nf] = None
628
631
629 # step 3: report unseen items in the dmap hash
632 # step 3: report unseen items in the dmap hash
630 if not skipstep3 and not exact:
633 if not skipstep3 and not exact:
631 visit = sorted([f for f in dmap if f not in results and matchfn(f)])
634 visit = sorted([f for f in dmap if f not in results and matchfn(f)])
632 for nf, st in zip(visit, util.statfiles([join(i) for i in visit])):
635 for nf, st in zip(visit, util.statfiles([join(i) for i in visit])):
633 if not st is None and not getkind(st.st_mode) in (regkind, lnkkind):
636 if not st is None and not getkind(st.st_mode) in (regkind, lnkkind):
634 st = None
637 st = None
635 results[nf] = st
638 results[nf] = st
636 for s in subrepos:
639 for s in subrepos:
637 del results[s]
640 del results[s]
638 del results['.hg']
641 del results['.hg']
639 return results
642 return results
640
643
641 def status(self, match, subrepos, ignored, clean, unknown):
644 def status(self, match, subrepos, ignored, clean, unknown):
642 '''Determine the status of the working copy relative to the
645 '''Determine the status of the working copy relative to the
643 dirstate and return a tuple of lists (unsure, modified, added,
646 dirstate and return a tuple of lists (unsure, modified, added,
644 removed, deleted, unknown, ignored, clean), where:
647 removed, deleted, unknown, ignored, clean), where:
645
648
646 unsure:
649 unsure:
647 files that might have been modified since the dirstate was
650 files that might have been modified since the dirstate was
648 written, but need to be read to be sure (size is the same
651 written, but need to be read to be sure (size is the same
649 but mtime differs)
652 but mtime differs)
650 modified:
653 modified:
651 files that have definitely been modified since the dirstate
654 files that have definitely been modified since the dirstate
652 was written (different size or mode)
655 was written (different size or mode)
653 added:
656 added:
654 files that have been explicitly added with hg add
657 files that have been explicitly added with hg add
655 removed:
658 removed:
656 files that have been explicitly removed with hg remove
659 files that have been explicitly removed with hg remove
657 deleted:
660 deleted:
658 files that have been deleted through other means ("missing")
661 files that have been deleted through other means ("missing")
659 unknown:
662 unknown:
660 files not in the dirstate that are not ignored
663 files not in the dirstate that are not ignored
661 ignored:
664 ignored:
662 files not in the dirstate that are ignored
665 files not in the dirstate that are ignored
663 (by _dirignore())
666 (by _dirignore())
664 clean:
667 clean:
665 files that have definitely not been modified since the
668 files that have definitely not been modified since the
666 dirstate was written
669 dirstate was written
667 '''
670 '''
668 listignored, listclean, listunknown = ignored, clean, unknown
671 listignored, listclean, listunknown = ignored, clean, unknown
669 lookup, modified, added, unknown, ignored = [], [], [], [], []
672 lookup, modified, added, unknown, ignored = [], [], [], [], []
670 removed, deleted, clean = [], [], []
673 removed, deleted, clean = [], [], []
671
674
672 dmap = self._map
675 dmap = self._map
673 ladd = lookup.append # aka "unsure"
676 ladd = lookup.append # aka "unsure"
674 madd = modified.append
677 madd = modified.append
675 aadd = added.append
678 aadd = added.append
676 uadd = unknown.append
679 uadd = unknown.append
677 iadd = ignored.append
680 iadd = ignored.append
678 radd = removed.append
681 radd = removed.append
679 dadd = deleted.append
682 dadd = deleted.append
680 cadd = clean.append
683 cadd = clean.append
681
684
682 lnkkind = stat.S_IFLNK
685 lnkkind = stat.S_IFLNK
683
686
684 for fn, st in self.walk(match, subrepos, listunknown,
687 for fn, st in self.walk(match, subrepos, listunknown,
685 listignored).iteritems():
688 listignored).iteritems():
686 if fn not in dmap:
689 if fn not in dmap:
687 if (listignored or match.exact(fn)) and self._dirignore(fn):
690 if (listignored or match.exact(fn)) and self._dirignore(fn):
688 if listignored:
691 if listignored:
689 iadd(fn)
692 iadd(fn)
690 elif listunknown:
693 elif listunknown:
691 uadd(fn)
694 uadd(fn)
692 continue
695 continue
693
696
694 state, mode, size, time = dmap[fn]
697 state, mode, size, time = dmap[fn]
695
698
696 if not st and state in "nma":
699 if not st and state in "nma":
697 dadd(fn)
700 dadd(fn)
698 elif state == 'n':
701 elif state == 'n':
699 # The "mode & lnkkind != lnkkind or self._checklink"
702 # The "mode & lnkkind != lnkkind or self._checklink"
700 # lines are an expansion of "islink => checklink"
703 # lines are an expansion of "islink => checklink"
701 # where islink means "is this a link?" and checklink
704 # where islink means "is this a link?" and checklink
702 # means "can we check links?".
705 # means "can we check links?".
703 mtime = int(st.st_mtime)
706 mtime = int(st.st_mtime)
704 if (size >= 0 and
707 if (size >= 0 and
705 (size != st.st_size
708 (size != st.st_size
706 or ((mode ^ st.st_mode) & 0100 and self._checkexec))
709 or ((mode ^ st.st_mode) & 0100 and self._checkexec))
707 and (mode & lnkkind != lnkkind or self._checklink)
710 and (mode & lnkkind != lnkkind or self._checklink)
708 or size == -2 # other parent
711 or size == -2 # other parent
709 or fn in self._copymap):
712 or fn in self._copymap):
710 madd(fn)
713 madd(fn)
711 elif (mtime != time
714 elif (mtime != time
712 and (mode & lnkkind != lnkkind or self._checklink)):
715 and (mode & lnkkind != lnkkind or self._checklink)):
713 ladd(fn)
716 ladd(fn)
714 elif mtime == self._lastnormaltime:
717 elif mtime == self._lastnormaltime:
715 # fn may have been changed in the same timeslot without
718 # fn may have been changed in the same timeslot without
716 # changing its size. This can happen if we quickly do
719 # changing its size. This can happen if we quickly do
717 # multiple commits in a single transaction.
720 # multiple commits in a single transaction.
718 # Force lookup, so we don't miss such a racy file change.
721 # Force lookup, so we don't miss such a racy file change.
719 ladd(fn)
722 ladd(fn)
720 elif listclean:
723 elif listclean:
721 cadd(fn)
724 cadd(fn)
722 elif state == 'm':
725 elif state == 'm':
723 madd(fn)
726 madd(fn)
724 elif state == 'a':
727 elif state == 'a':
725 aadd(fn)
728 aadd(fn)
726 elif state == 'r':
729 elif state == 'r':
727 radd(fn)
730 radd(fn)
728
731
729 return (lookup, modified, added, removed, deleted, unknown, ignored,
732 return (lookup, modified, added, removed, deleted, unknown, ignored,
730 clean)
733 clean)
@@ -1,111 +1,243 b''
1 $ cat >> $HGRCPATH <<EOF
1 $ cat >> $HGRCPATH <<EOF
2 > [extensions]
2 > [extensions]
3 > graphlog=
3 > graphlog=
4 > rebase=
4 > rebase=
5 >
5 >
6 > [phases]
6 > [phases]
7 > publish=False
7 > publish=False
8 >
8 >
9 > [alias]
9 > [alias]
10 > tglog = log -G --template "{rev}: '{desc}' {branches}\n"
10 > tglog = log -G --template "{rev}: '{desc}' {branches}\n"
11 > EOF
11 > EOF
12
12
13 $ hg init a
13 $ hg init a
14 $ cd a
14 $ cd a
15 $ hg unbundle $TESTDIR/bundles/rebase.hg
15 $ hg unbundle $TESTDIR/bundles/rebase.hg
16 adding changesets
16 adding changesets
17 adding manifests
17 adding manifests
18 adding file changes
18 adding file changes
19 added 8 changesets with 7 changes to 7 files (+2 heads)
19 added 8 changesets with 7 changes to 7 files (+2 heads)
20 (run 'hg heads' to see heads, 'hg merge' to merge)
20 (run 'hg heads' to see heads, 'hg merge' to merge)
21 $ hg up tip
21 $ hg up tip
22 3 files updated, 0 files merged, 0 files removed, 0 files unresolved
22 3 files updated, 0 files merged, 0 files removed, 0 files unresolved
23 $ cd ..
23 $ cd ..
24
24
25
26 Rebasing descendant onto ancestor across different named branches
27
28 $ hg clone -q -u . a a1
25 $ hg clone -q -u . a a1
29
26
30 $ cd a1
27 $ cd a1
31
28
32 $ hg branch dev
29 $ hg update 3
33 marked working directory as branch dev
30 3 files updated, 0 files merged, 2 files removed, 0 files unresolved
31 $ hg branch dev-one
32 marked working directory as branch dev-one
33 (branches are permanent and global, did you want a bookmark?)
34 $ hg ci -m 'dev-one named branch'
35
36 $ hg update 7
37 2 files updated, 0 files merged, 3 files removed, 0 files unresolved
38 $ hg branch dev-two
39 marked working directory as branch dev-two
34 (branches are permanent and global, did you want a bookmark?)
40 (branches are permanent and global, did you want a bookmark?)
35
41
36 $ echo x > x
42 $ echo x > x
37
43
38 $ hg add x
44 $ hg add x
39
45
40 $ hg ci -m 'extra named branch'
46 $ hg ci -m 'dev-two named branch'
47
48 $ hg tglog
49 @ 9: 'dev-two named branch' dev-two
50 |
51 | o 8: 'dev-one named branch' dev-one
52 | |
53 o | 7: 'H'
54 | |
55 +---o 6: 'G'
56 | | |
57 o | | 5: 'F'
58 | | |
59 +---o 4: 'E'
60 | |
61 | o 3: 'D'
62 | |
63 | o 2: 'C'
64 | |
65 | o 1: 'B'
66 |/
67 o 0: 'A'
68
69
70 Branch name containing a dash (issue3181)
71
72 $ hg rebase -b dev-two -d dev-one --keepbranches
73 saved backup bundle to $TESTTMP/a1/.hg/strip-backup/*-backup.hg (glob)
74
75 $ hg tglog
76 @ 9: 'dev-two named branch' dev-two
77 |
78 o 8: 'H'
79 |
80 | o 7: 'G'
81 |/|
82 o | 6: 'F'
83 | |
84 o | 5: 'dev-one named branch' dev-one
85 | |
86 | o 4: 'E'
87 | |
88 o | 3: 'D'
89 | |
90 o | 2: 'C'
91 | |
92 o | 1: 'B'
93 |/
94 o 0: 'A'
95
96 $ hg rebase -s dev-one -d 0 --keepbranches
97 saved backup bundle to $TESTTMP/a1/.hg/strip-backup/*-backup.hg (glob)
41
98
42 $ hg tglog
99 $ hg tglog
43 @ 8: 'extra named branch' dev
100 @ 8: 'dev-two named branch' dev-two
101 |
102 o 7: 'H'
103 |
104 | o 6: 'G'
105 |/|
106 o | 5: 'F'
107 | |
108 | o 4: 'E'
109 |/
110 | o 3: 'D'
111 | |
112 | o 2: 'C'
113 | |
114 | o 1: 'B'
115 |/
116 o 0: 'A'
117
118 $ hg update 3
119 3 files updated, 0 files merged, 3 files removed, 0 files unresolved
120 $ hg branch dev-one
121 marked working directory as branch dev-one
122 (branches are permanent and global, did you want a bookmark?)
123 $ hg ci -m 'dev-one named branch'
124
125 $ hg tglog
126 @ 9: 'dev-one named branch' dev-one
127 |
128 | o 8: 'dev-two named branch' dev-two
129 | |
130 | o 7: 'H'
131 | |
132 | | o 6: 'G'
133 | |/|
134 | o | 5: 'F'
135 | | |
136 | | o 4: 'E'
137 | |/
138 o | 3: 'D'
139 | |
140 o | 2: 'C'
141 | |
142 o | 1: 'B'
143 |/
144 o 0: 'A'
145
146 $ hg rebase -b 'max(branch("dev-two"))' -d dev-one --keepbranches
147 saved backup bundle to $TESTTMP/a1/.hg/strip-backup/*-backup.hg (glob)
148
149 $ hg tglog
150 @ 9: 'dev-two named branch' dev-two
151 |
152 o 8: 'H'
153 |
154 | o 7: 'G'
155 |/|
156 o | 6: 'F'
157 | |
158 o | 5: 'dev-one named branch' dev-one
159 | |
160 | o 4: 'E'
161 | |
162 o | 3: 'D'
163 | |
164 o | 2: 'C'
165 | |
166 o | 1: 'B'
167 |/
168 o 0: 'A'
169
170 $ hg rebase -s 'max(branch("dev-one"))' -d 0 --keepbranches
171 saved backup bundle to $TESTTMP/a1/.hg/strip-backup/*-backup.hg (glob)
172
173 $ hg tglog
174 @ 8: 'dev-two named branch' dev-two
44 |
175 |
45 o 7: 'H'
176 o 7: 'H'
46 |
177 |
47 | o 6: 'G'
178 | o 6: 'G'
48 |/|
179 |/|
49 o | 5: 'F'
180 o | 5: 'F'
50 | |
181 | |
51 | o 4: 'E'
182 | o 4: 'E'
52 |/
183 |/
53 | o 3: 'D'
184 | o 3: 'D'
54 | |
185 | |
55 | o 2: 'C'
186 | o 2: 'C'
56 | |
187 | |
57 | o 1: 'B'
188 | o 1: 'B'
58 |/
189 |/
59 o 0: 'A'
190 o 0: 'A'
60
191
61
192
193 Rebasing descendant onto ancestor across different named branches
62
194
63 $ hg rebase -s 1 -d 8 --keepbranches
195 $ hg rebase -s 1 -d 8 --keepbranches
64 saved backup bundle to $TESTTMP/a1/.hg/strip-backup/*-backup.hg (glob)
196 saved backup bundle to $TESTTMP/a1/.hg/strip-backup/*-backup.hg (glob)
65
197
66 $ hg tglog
198 $ hg tglog
67 @ 8: 'D'
199 @ 8: 'D'
68 |
200 |
69 o 7: 'C'
201 o 7: 'C'
70 |
202 |
71 o 6: 'B'
203 o 6: 'B'
72 |
204 |
73 o 5: 'extra named branch' dev
205 o 5: 'dev-two named branch' dev-two
74 |
206 |
75 o 4: 'H'
207 o 4: 'H'
76 |
208 |
77 | o 3: 'G'
209 | o 3: 'G'
78 |/|
210 |/|
79 o | 2: 'F'
211 o | 2: 'F'
80 | |
212 | |
81 | o 1: 'E'
213 | o 1: 'E'
82 |/
214 |/
83 o 0: 'A'
215 o 0: 'A'
84
216
85 $ hg rebase -s 4 -d 5
217 $ hg rebase -s 4 -d 5
86 abort: source is ancestor of destination
218 abort: source is ancestor of destination
87 [255]
219 [255]
88
220
89 $ hg rebase -s 5 -d 4
221 $ hg rebase -s 5 -d 4
90 saved backup bundle to $TESTTMP/a1/.hg/strip-backup/*-backup.hg (glob)
222 saved backup bundle to $TESTTMP/a1/.hg/strip-backup/*-backup.hg (glob)
91
223
92 $ hg tglog
224 $ hg tglog
93 @ 8: 'D'
225 @ 8: 'D'
94 |
226 |
95 o 7: 'C'
227 o 7: 'C'
96 |
228 |
97 o 6: 'B'
229 o 6: 'B'
98 |
230 |
99 o 5: 'extra named branch'
231 o 5: 'dev-two named branch'
100 |
232 |
101 o 4: 'H'
233 o 4: 'H'
102 |
234 |
103 | o 3: 'G'
235 | o 3: 'G'
104 |/|
236 |/|
105 o | 2: 'F'
237 o | 2: 'F'
106 | |
238 | |
107 | o 1: 'E'
239 | o 1: 'E'
108 |/
240 |/
109 o 0: 'A'
241 o 0: 'A'
110
242
111 $ cd ..
243 $ cd ..
General Comments 0
You need to be logged in to leave comments. Login now