##// END OF EJS Templates
mq: use .invalidate to cancel dirty mq state when cancelling transaction...
Mads Kiilerich -
r15881:3862369c default
parent child Browse files
Show More
@@ -1,3298 +1,3299
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 = False
270 self.applieddirty = False
271 self.seriesdirty = False
271 self.seriesdirty = False
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 = False
330 self.applieddirty = False
331 self.seriesdirty = False
331 self.seriesdirty = False
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 = True
596 self.applieddirty = True
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 = True
617 self.applieddirty = True
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 self.invalidate()
657 raise
658 raise
658 finally:
659 finally:
659 release(tr, lock, wlock)
660 release(tr, lock, wlock)
660 self.removeundo(repo)
661 self.removeundo(repo)
661
662
662 def _apply(self, repo, series, list=False, update_status=True,
663 def _apply(self, repo, series, list=False, update_status=True,
663 strict=False, patchdir=None, merge=None, all_files=None):
664 strict=False, patchdir=None, merge=None, all_files=None):
664 '''returns (error, hash)
665 '''returns (error, hash)
665 error = 1 for unable to read, 2 for patch failed, 3 for patch fuzz'''
666 error = 1 for unable to read, 2 for patch failed, 3 for patch fuzz'''
666 # TODO unify with commands.py
667 # TODO unify with commands.py
667 if not patchdir:
668 if not patchdir:
668 patchdir = self.path
669 patchdir = self.path
669 err = 0
670 err = 0
670 n = None
671 n = None
671 for patchname in series:
672 for patchname in series:
672 pushable, reason = self.pushable(patchname)
673 pushable, reason = self.pushable(patchname)
673 if not pushable:
674 if not pushable:
674 self.explainpushable(patchname, all_patches=True)
675 self.explainpushable(patchname, all_patches=True)
675 continue
676 continue
676 self.ui.status(_("applying %s\n") % patchname)
677 self.ui.status(_("applying %s\n") % patchname)
677 pf = os.path.join(patchdir, patchname)
678 pf = os.path.join(patchdir, patchname)
678
679
679 try:
680 try:
680 ph = patchheader(self.join(patchname), self.plainmode)
681 ph = patchheader(self.join(patchname), self.plainmode)
681 except IOError:
682 except IOError:
682 self.ui.warn(_("unable to read %s\n") % patchname)
683 self.ui.warn(_("unable to read %s\n") % patchname)
683 err = 1
684 err = 1
684 break
685 break
685
686
686 message = ph.message
687 message = ph.message
687 if not message:
688 if not message:
688 # The commit message should not be translated
689 # The commit message should not be translated
689 message = "imported patch %s\n" % patchname
690 message = "imported patch %s\n" % patchname
690 else:
691 else:
691 if list:
692 if list:
692 # The commit message should not be translated
693 # The commit message should not be translated
693 message.append("\nimported patch %s" % patchname)
694 message.append("\nimported patch %s" % patchname)
694 message = '\n'.join(message)
695 message = '\n'.join(message)
695
696
696 if ph.haspatch:
697 if ph.haspatch:
697 (patcherr, files, fuzz) = self.patch(repo, pf)
698 (patcherr, files, fuzz) = self.patch(repo, pf)
698 if all_files is not None:
699 if all_files is not None:
699 all_files.update(files)
700 all_files.update(files)
700 patcherr = not patcherr
701 patcherr = not patcherr
701 else:
702 else:
702 self.ui.warn(_("patch %s is empty\n") % patchname)
703 self.ui.warn(_("patch %s is empty\n") % patchname)
703 patcherr, files, fuzz = 0, [], 0
704 patcherr, files, fuzz = 0, [], 0
704
705
705 if merge and files:
706 if merge and files:
706 # Mark as removed/merged and update dirstate parent info
707 # Mark as removed/merged and update dirstate parent info
707 removed = []
708 removed = []
708 merged = []
709 merged = []
709 for f in files:
710 for f in files:
710 if os.path.lexists(repo.wjoin(f)):
711 if os.path.lexists(repo.wjoin(f)):
711 merged.append(f)
712 merged.append(f)
712 else:
713 else:
713 removed.append(f)
714 removed.append(f)
714 for f in removed:
715 for f in removed:
715 repo.dirstate.remove(f)
716 repo.dirstate.remove(f)
716 for f in merged:
717 for f in merged:
717 repo.dirstate.merge(f)
718 repo.dirstate.merge(f)
718 p1, p2 = repo.dirstate.parents()
719 p1, p2 = repo.dirstate.parents()
719 repo.dirstate.setparents(p1, merge)
720 repo.dirstate.setparents(p1, merge)
720
721
721 match = scmutil.matchfiles(repo, files or [])
722 match = scmutil.matchfiles(repo, files or [])
722 n = repo.commit(message, ph.user, ph.date, match=match, force=True)
723 n = repo.commit(message, ph.user, ph.date, match=match, force=True)
723
724
724 if n is None:
725 if n is None:
725 raise util.Abort(_("repository commit failed"))
726 raise util.Abort(_("repository commit failed"))
726
727
727 if update_status:
728 if update_status:
728 self.applied.append(statusentry(n, patchname))
729 self.applied.append(statusentry(n, patchname))
729
730
730 if patcherr:
731 if patcherr:
731 self.ui.warn(_("patch failed, rejects left in working dir\n"))
732 self.ui.warn(_("patch failed, rejects left in working dir\n"))
732 err = 2
733 err = 2
733 break
734 break
734
735
735 if fuzz and strict:
736 if fuzz and strict:
736 self.ui.warn(_("fuzz found when applying patch, stopping\n"))
737 self.ui.warn(_("fuzz found when applying patch, stopping\n"))
737 err = 3
738 err = 3
738 break
739 break
739 return (err, n)
740 return (err, n)
740
741
741 def _cleanup(self, patches, numrevs, keep=False):
742 def _cleanup(self, patches, numrevs, keep=False):
742 if not keep:
743 if not keep:
743 r = self.qrepo()
744 r = self.qrepo()
744 if r:
745 if r:
745 r[None].forget(patches)
746 r[None].forget(patches)
746 for p in patches:
747 for p in patches:
747 os.unlink(self.join(p))
748 os.unlink(self.join(p))
748
749
749 if numrevs:
750 if numrevs:
750 qfinished = self.applied[:numrevs]
751 qfinished = self.applied[:numrevs]
751 del self.applied[:numrevs]
752 del self.applied[:numrevs]
752 self.applieddirty = True
753 self.applieddirty = True
753
754
754 unknown = []
755 unknown = []
755
756
756 for (i, p) in sorted([(self.findseries(p), p) for p in patches],
757 for (i, p) in sorted([(self.findseries(p), p) for p in patches],
757 reverse=True):
758 reverse=True):
758 if i is not None:
759 if i is not None:
759 del self.fullseries[i]
760 del self.fullseries[i]
760 else:
761 else:
761 unknown.append(p)
762 unknown.append(p)
762
763
763 if unknown:
764 if unknown:
764 if numrevs:
765 if numrevs:
765 rev = dict((entry.name, entry.node) for entry in qfinished)
766 rev = dict((entry.name, entry.node) for entry in qfinished)
766 for p in unknown:
767 for p in unknown:
767 msg = _('revision %s refers to unknown patches: %s\n')
768 msg = _('revision %s refers to unknown patches: %s\n')
768 self.ui.warn(msg % (short(rev[p]), p))
769 self.ui.warn(msg % (short(rev[p]), p))
769 else:
770 else:
770 msg = _('unknown patches: %s\n')
771 msg = _('unknown patches: %s\n')
771 raise util.Abort(''.join(msg % p for p in unknown))
772 raise util.Abort(''.join(msg % p for p in unknown))
772
773
773 self.parseseries()
774 self.parseseries()
774 self.seriesdirty = True
775 self.seriesdirty = True
775
776
776 def _revpatches(self, repo, revs):
777 def _revpatches(self, repo, revs):
777 firstrev = repo[self.applied[0].node].rev()
778 firstrev = repo[self.applied[0].node].rev()
778 patches = []
779 patches = []
779 for i, rev in enumerate(revs):
780 for i, rev in enumerate(revs):
780
781
781 if rev < firstrev:
782 if rev < firstrev:
782 raise util.Abort(_('revision %d is not managed') % rev)
783 raise util.Abort(_('revision %d is not managed') % rev)
783
784
784 ctx = repo[rev]
785 ctx = repo[rev]
785 base = self.applied[i].node
786 base = self.applied[i].node
786 if ctx.node() != base:
787 if ctx.node() != base:
787 msg = _('cannot delete revision %d above applied patches')
788 msg = _('cannot delete revision %d above applied patches')
788 raise util.Abort(msg % rev)
789 raise util.Abort(msg % rev)
789
790
790 patch = self.applied[i].name
791 patch = self.applied[i].name
791 for fmt in ('[mq]: %s', 'imported patch %s'):
792 for fmt in ('[mq]: %s', 'imported patch %s'):
792 if ctx.description() == fmt % patch:
793 if ctx.description() == fmt % patch:
793 msg = _('patch %s finalized without changeset message\n')
794 msg = _('patch %s finalized without changeset message\n')
794 repo.ui.status(msg % patch)
795 repo.ui.status(msg % patch)
795 break
796 break
796
797
797 patches.append(patch)
798 patches.append(patch)
798 return patches
799 return patches
799
800
800 def finish(self, repo, revs):
801 def finish(self, repo, revs):
801 patches = self._revpatches(repo, sorted(revs))
802 patches = self._revpatches(repo, sorted(revs))
802 self._cleanup(patches, len(patches))
803 self._cleanup(patches, len(patches))
803
804
804 def delete(self, repo, patches, opts):
805 def delete(self, repo, patches, opts):
805 if not patches and not opts.get('rev'):
806 if not patches and not opts.get('rev'):
806 raise util.Abort(_('qdelete requires at least one revision or '
807 raise util.Abort(_('qdelete requires at least one revision or '
807 'patch name'))
808 'patch name'))
808
809
809 realpatches = []
810 realpatches = []
810 for patch in patches:
811 for patch in patches:
811 patch = self.lookup(patch, strict=True)
812 patch = self.lookup(patch, strict=True)
812 info = self.isapplied(patch)
813 info = self.isapplied(patch)
813 if info:
814 if info:
814 raise util.Abort(_("cannot delete applied patch %s") % patch)
815 raise util.Abort(_("cannot delete applied patch %s") % patch)
815 if patch not in self.series:
816 if patch not in self.series:
816 raise util.Abort(_("patch %s not in series file") % patch)
817 raise util.Abort(_("patch %s not in series file") % patch)
817 if patch not in realpatches:
818 if patch not in realpatches:
818 realpatches.append(patch)
819 realpatches.append(patch)
819
820
820 numrevs = 0
821 numrevs = 0
821 if opts.get('rev'):
822 if opts.get('rev'):
822 if not self.applied:
823 if not self.applied:
823 raise util.Abort(_('no patches applied'))
824 raise util.Abort(_('no patches applied'))
824 revs = scmutil.revrange(repo, opts.get('rev'))
825 revs = scmutil.revrange(repo, opts.get('rev'))
825 if len(revs) > 1 and revs[0] > revs[1]:
826 if len(revs) > 1 and revs[0] > revs[1]:
826 revs.reverse()
827 revs.reverse()
827 revpatches = self._revpatches(repo, revs)
828 revpatches = self._revpatches(repo, revs)
828 realpatches += revpatches
829 realpatches += revpatches
829 numrevs = len(revpatches)
830 numrevs = len(revpatches)
830
831
831 self._cleanup(realpatches, numrevs, opts.get('keep'))
832 self._cleanup(realpatches, numrevs, opts.get('keep'))
832
833
833 def checktoppatch(self, repo):
834 def checktoppatch(self, repo):
834 if self.applied:
835 if self.applied:
835 top = self.applied[-1].node
836 top = self.applied[-1].node
836 patch = self.applied[-1].name
837 patch = self.applied[-1].name
837 pp = repo.dirstate.parents()
838 pp = repo.dirstate.parents()
838 if top not in pp:
839 if top not in pp:
839 raise util.Abort(_("working directory revision is not qtip"))
840 raise util.Abort(_("working directory revision is not qtip"))
840 return top, patch
841 return top, patch
841 return None, None
842 return None, None
842
843
843 def checksubstate(self, repo):
844 def checksubstate(self, repo):
844 '''return list of subrepos at a different revision than substate.
845 '''return list of subrepos at a different revision than substate.
845 Abort if any subrepos have uncommitted changes.'''
846 Abort if any subrepos have uncommitted changes.'''
846 inclsubs = []
847 inclsubs = []
847 wctx = repo[None]
848 wctx = repo[None]
848 for s in wctx.substate:
849 for s in wctx.substate:
849 if wctx.sub(s).dirty(True):
850 if wctx.sub(s).dirty(True):
850 raise util.Abort(
851 raise util.Abort(
851 _("uncommitted changes in subrepository %s") % s)
852 _("uncommitted changes in subrepository %s") % s)
852 elif wctx.sub(s).dirty():
853 elif wctx.sub(s).dirty():
853 inclsubs.append(s)
854 inclsubs.append(s)
854 return inclsubs
855 return inclsubs
855
856
856 def localchangesfound(self, refresh=True):
857 def localchangesfound(self, refresh=True):
857 if refresh:
858 if refresh:
858 raise util.Abort(_("local changes found, refresh first"))
859 raise util.Abort(_("local changes found, refresh first"))
859 else:
860 else:
860 raise util.Abort(_("local changes found"))
861 raise util.Abort(_("local changes found"))
861
862
862 def checklocalchanges(self, repo, force=False, refresh=True):
863 def checklocalchanges(self, repo, force=False, refresh=True):
863 m, a, r, d = repo.status()[:4]
864 m, a, r, d = repo.status()[:4]
864 if (m or a or r or d) and not force:
865 if (m or a or r or d) and not force:
865 self.localchangesfound(refresh)
866 self.localchangesfound(refresh)
866 return m, a, r, d
867 return m, a, r, d
867
868
868 _reserved = ('series', 'status', 'guards', '.', '..')
869 _reserved = ('series', 'status', 'guards', '.', '..')
869 def checkreservedname(self, name):
870 def checkreservedname(self, name):
870 if name in self._reserved:
871 if name in self._reserved:
871 raise util.Abort(_('"%s" cannot be used as the name of a patch')
872 raise util.Abort(_('"%s" cannot be used as the name of a patch')
872 % name)
873 % name)
873 for prefix in ('.hg', '.mq'):
874 for prefix in ('.hg', '.mq'):
874 if name.startswith(prefix):
875 if name.startswith(prefix):
875 raise util.Abort(_('patch name cannot begin with "%s"')
876 raise util.Abort(_('patch name cannot begin with "%s"')
876 % prefix)
877 % prefix)
877 for c in ('#', ':'):
878 for c in ('#', ':'):
878 if c in name:
879 if c in name:
879 raise util.Abort(_('"%s" cannot be used in the name of a patch')
880 raise util.Abort(_('"%s" cannot be used in the name of a patch')
880 % c)
881 % c)
881
882
882 def checkpatchname(self, name, force=False):
883 def checkpatchname(self, name, force=False):
883 self.checkreservedname(name)
884 self.checkreservedname(name)
884 if not force and os.path.exists(self.join(name)):
885 if not force and os.path.exists(self.join(name)):
885 if os.path.isdir(self.join(name)):
886 if os.path.isdir(self.join(name)):
886 raise util.Abort(_('"%s" already exists as a directory')
887 raise util.Abort(_('"%s" already exists as a directory')
887 % name)
888 % name)
888 else:
889 else:
889 raise util.Abort(_('patch "%s" already exists') % name)
890 raise util.Abort(_('patch "%s" already exists') % name)
890
891
891 def new(self, repo, patchfn, *pats, **opts):
892 def new(self, repo, patchfn, *pats, **opts):
892 """options:
893 """options:
893 msg: a string or a no-argument function returning a string
894 msg: a string or a no-argument function returning a string
894 """
895 """
895 msg = opts.get('msg')
896 msg = opts.get('msg')
896 user = opts.get('user')
897 user = opts.get('user')
897 date = opts.get('date')
898 date = opts.get('date')
898 if date:
899 if date:
899 date = util.parsedate(date)
900 date = util.parsedate(date)
900 diffopts = self.diffopts({'git': opts.get('git')})
901 diffopts = self.diffopts({'git': opts.get('git')})
901 if opts.get('checkname', True):
902 if opts.get('checkname', True):
902 self.checkpatchname(patchfn)
903 self.checkpatchname(patchfn)
903 inclsubs = self.checksubstate(repo)
904 inclsubs = self.checksubstate(repo)
904 if inclsubs:
905 if inclsubs:
905 inclsubs.append('.hgsubstate')
906 inclsubs.append('.hgsubstate')
906 if opts.get('include') or opts.get('exclude') or pats:
907 if opts.get('include') or opts.get('exclude') or pats:
907 if inclsubs:
908 if inclsubs:
908 pats = list(pats or []) + inclsubs
909 pats = list(pats or []) + inclsubs
909 match = scmutil.match(repo[None], pats, opts)
910 match = scmutil.match(repo[None], pats, opts)
910 # detect missing files in pats
911 # detect missing files in pats
911 def badfn(f, msg):
912 def badfn(f, msg):
912 if f != '.hgsubstate': # .hgsubstate is auto-created
913 if f != '.hgsubstate': # .hgsubstate is auto-created
913 raise util.Abort('%s: %s' % (f, msg))
914 raise util.Abort('%s: %s' % (f, msg))
914 match.bad = badfn
915 match.bad = badfn
915 m, a, r, d = repo.status(match=match)[:4]
916 m, a, r, d = repo.status(match=match)[:4]
916 else:
917 else:
917 m, a, r, d = self.checklocalchanges(repo, force=True)
918 m, a, r, d = self.checklocalchanges(repo, force=True)
918 match = scmutil.matchfiles(repo, m + a + r + inclsubs)
919 match = scmutil.matchfiles(repo, m + a + r + inclsubs)
919 if len(repo[None].parents()) > 1:
920 if len(repo[None].parents()) > 1:
920 raise util.Abort(_('cannot manage merge changesets'))
921 raise util.Abort(_('cannot manage merge changesets'))
921 commitfiles = m + a + r
922 commitfiles = m + a + r
922 self.checktoppatch(repo)
923 self.checktoppatch(repo)
923 insert = self.fullseriesend()
924 insert = self.fullseriesend()
924 wlock = repo.wlock()
925 wlock = repo.wlock()
925 try:
926 try:
926 try:
927 try:
927 # if patch file write fails, abort early
928 # if patch file write fails, abort early
928 p = self.opener(patchfn, "w")
929 p = self.opener(patchfn, "w")
929 except IOError, e:
930 except IOError, e:
930 raise util.Abort(_('cannot write patch "%s": %s')
931 raise util.Abort(_('cannot write patch "%s": %s')
931 % (patchfn, e.strerror))
932 % (patchfn, e.strerror))
932 try:
933 try:
933 if self.plainmode:
934 if self.plainmode:
934 if user:
935 if user:
935 p.write("From: " + user + "\n")
936 p.write("From: " + user + "\n")
936 if not date:
937 if not date:
937 p.write("\n")
938 p.write("\n")
938 if date:
939 if date:
939 p.write("Date: %d %d\n\n" % date)
940 p.write("Date: %d %d\n\n" % date)
940 else:
941 else:
941 p.write("# HG changeset patch\n")
942 p.write("# HG changeset patch\n")
942 p.write("# Parent "
943 p.write("# Parent "
943 + hex(repo[None].p1().node()) + "\n")
944 + hex(repo[None].p1().node()) + "\n")
944 if user:
945 if user:
945 p.write("# User " + user + "\n")
946 p.write("# User " + user + "\n")
946 if date:
947 if date:
947 p.write("# Date %s %s\n\n" % date)
948 p.write("# Date %s %s\n\n" % date)
948 if util.safehasattr(msg, '__call__'):
949 if util.safehasattr(msg, '__call__'):
949 msg = msg()
950 msg = msg()
950 commitmsg = msg and msg or ("[mq]: %s" % patchfn)
951 commitmsg = msg and msg or ("[mq]: %s" % patchfn)
951 n = repo.commit(commitmsg, user, date, match=match, force=True)
952 n = repo.commit(commitmsg, user, date, match=match, force=True)
952 if n is None:
953 if n is None:
953 raise util.Abort(_("repo commit failed"))
954 raise util.Abort(_("repo commit failed"))
954 try:
955 try:
955 self.fullseries[insert:insert] = [patchfn]
956 self.fullseries[insert:insert] = [patchfn]
956 self.applied.append(statusentry(n, patchfn))
957 self.applied.append(statusentry(n, patchfn))
957 self.parseseries()
958 self.parseseries()
958 self.seriesdirty = True
959 self.seriesdirty = True
959 self.applieddirty = True
960 self.applieddirty = True
960 if msg:
961 if msg:
961 msg = msg + "\n\n"
962 msg = msg + "\n\n"
962 p.write(msg)
963 p.write(msg)
963 if commitfiles:
964 if commitfiles:
964 parent = self.qparents(repo, n)
965 parent = self.qparents(repo, n)
965 chunks = patchmod.diff(repo, node1=parent, node2=n,
966 chunks = patchmod.diff(repo, node1=parent, node2=n,
966 match=match, opts=diffopts)
967 match=match, opts=diffopts)
967 for chunk in chunks:
968 for chunk in chunks:
968 p.write(chunk)
969 p.write(chunk)
969 p.close()
970 p.close()
970 wlock.release()
971 wlock.release()
971 wlock = None
972 wlock = None
972 r = self.qrepo()
973 r = self.qrepo()
973 if r:
974 if r:
974 r[None].add([patchfn])
975 r[None].add([patchfn])
975 except:
976 except:
976 repo.rollback()
977 repo.rollback()
977 raise
978 raise
978 except Exception:
979 except Exception:
979 patchpath = self.join(patchfn)
980 patchpath = self.join(patchfn)
980 try:
981 try:
981 os.unlink(patchpath)
982 os.unlink(patchpath)
982 except:
983 except:
983 self.ui.warn(_('error unlinking %s\n') % patchpath)
984 self.ui.warn(_('error unlinking %s\n') % patchpath)
984 raise
985 raise
985 self.removeundo(repo)
986 self.removeundo(repo)
986 finally:
987 finally:
987 release(wlock)
988 release(wlock)
988
989
989 def strip(self, repo, revs, update=True, backup="all", force=None):
990 def strip(self, repo, revs, update=True, backup="all", force=None):
990 wlock = lock = None
991 wlock = lock = None
991 try:
992 try:
992 wlock = repo.wlock()
993 wlock = repo.wlock()
993 lock = repo.lock()
994 lock = repo.lock()
994
995
995 if update:
996 if update:
996 self.checklocalchanges(repo, force=force, refresh=False)
997 self.checklocalchanges(repo, force=force, refresh=False)
997 urev = self.qparents(repo, revs[0])
998 urev = self.qparents(repo, revs[0])
998 hg.clean(repo, urev)
999 hg.clean(repo, urev)
999 repo.dirstate.write()
1000 repo.dirstate.write()
1000
1001
1001 self.removeundo(repo)
1002 self.removeundo(repo)
1002 for rev in revs:
1003 for rev in revs:
1003 repair.strip(self.ui, repo, rev, backup)
1004 repair.strip(self.ui, repo, rev, backup)
1004 # strip may have unbundled a set of backed up revisions after
1005 # strip may have unbundled a set of backed up revisions after
1005 # the actual strip
1006 # the actual strip
1006 self.removeundo(repo)
1007 self.removeundo(repo)
1007 finally:
1008 finally:
1008 release(lock, wlock)
1009 release(lock, wlock)
1009
1010
1010 def isapplied(self, patch):
1011 def isapplied(self, patch):
1011 """returns (index, rev, patch)"""
1012 """returns (index, rev, patch)"""
1012 for i, a in enumerate(self.applied):
1013 for i, a in enumerate(self.applied):
1013 if a.name == patch:
1014 if a.name == patch:
1014 return (i, a.node, a.name)
1015 return (i, a.node, a.name)
1015 return None
1016 return None
1016
1017
1017 # if the exact patch name does not exist, we try a few
1018 # if the exact patch name does not exist, we try a few
1018 # variations. If strict is passed, we try only #1
1019 # variations. If strict is passed, we try only #1
1019 #
1020 #
1020 # 1) a number (as string) to indicate an offset in the series file
1021 # 1) a number (as string) to indicate an offset in the series file
1021 # 2) a unique substring of the patch name was given
1022 # 2) a unique substring of the patch name was given
1022 # 3) patchname[-+]num to indicate an offset in the series file
1023 # 3) patchname[-+]num to indicate an offset in the series file
1023 def lookup(self, patch, strict=False):
1024 def lookup(self, patch, strict=False):
1024 def partialname(s):
1025 def partialname(s):
1025 if s in self.series:
1026 if s in self.series:
1026 return s
1027 return s
1027 matches = [x for x in self.series if s in x]
1028 matches = [x for x in self.series if s in x]
1028 if len(matches) > 1:
1029 if len(matches) > 1:
1029 self.ui.warn(_('patch name "%s" is ambiguous:\n') % s)
1030 self.ui.warn(_('patch name "%s" is ambiguous:\n') % s)
1030 for m in matches:
1031 for m in matches:
1031 self.ui.warn(' %s\n' % m)
1032 self.ui.warn(' %s\n' % m)
1032 return None
1033 return None
1033 if matches:
1034 if matches:
1034 return matches[0]
1035 return matches[0]
1035 if self.series and self.applied:
1036 if self.series and self.applied:
1036 if s == 'qtip':
1037 if s == 'qtip':
1037 return self.series[self.seriesend(True)-1]
1038 return self.series[self.seriesend(True)-1]
1038 if s == 'qbase':
1039 if s == 'qbase':
1039 return self.series[0]
1040 return self.series[0]
1040 return None
1041 return None
1041
1042
1042 if patch in self.series:
1043 if patch in self.series:
1043 return patch
1044 return patch
1044
1045
1045 if not os.path.isfile(self.join(patch)):
1046 if not os.path.isfile(self.join(patch)):
1046 try:
1047 try:
1047 sno = int(patch)
1048 sno = int(patch)
1048 except (ValueError, OverflowError):
1049 except (ValueError, OverflowError):
1049 pass
1050 pass
1050 else:
1051 else:
1051 if -len(self.series) <= sno < len(self.series):
1052 if -len(self.series) <= sno < len(self.series):
1052 return self.series[sno]
1053 return self.series[sno]
1053
1054
1054 if not strict:
1055 if not strict:
1055 res = partialname(patch)
1056 res = partialname(patch)
1056 if res:
1057 if res:
1057 return res
1058 return res
1058 minus = patch.rfind('-')
1059 minus = patch.rfind('-')
1059 if minus >= 0:
1060 if minus >= 0:
1060 res = partialname(patch[:minus])
1061 res = partialname(patch[:minus])
1061 if res:
1062 if res:
1062 i = self.series.index(res)
1063 i = self.series.index(res)
1063 try:
1064 try:
1064 off = int(patch[minus + 1:] or 1)
1065 off = int(patch[minus + 1:] or 1)
1065 except (ValueError, OverflowError):
1066 except (ValueError, OverflowError):
1066 pass
1067 pass
1067 else:
1068 else:
1068 if i - off >= 0:
1069 if i - off >= 0:
1069 return self.series[i - off]
1070 return self.series[i - off]
1070 plus = patch.rfind('+')
1071 plus = patch.rfind('+')
1071 if plus >= 0:
1072 if plus >= 0:
1072 res = partialname(patch[:plus])
1073 res = partialname(patch[:plus])
1073 if res:
1074 if res:
1074 i = self.series.index(res)
1075 i = self.series.index(res)
1075 try:
1076 try:
1076 off = int(patch[plus + 1:] or 1)
1077 off = int(patch[plus + 1:] or 1)
1077 except (ValueError, OverflowError):
1078 except (ValueError, OverflowError):
1078 pass
1079 pass
1079 else:
1080 else:
1080 if i + off < len(self.series):
1081 if i + off < len(self.series):
1081 return self.series[i + off]
1082 return self.series[i + off]
1082 raise util.Abort(_("patch %s not in series") % patch)
1083 raise util.Abort(_("patch %s not in series") % patch)
1083
1084
1084 def push(self, repo, patch=None, force=False, list=False,
1085 def push(self, repo, patch=None, force=False, list=False,
1085 mergeq=None, all=False, move=False, exact=False):
1086 mergeq=None, all=False, move=False, exact=False):
1086 diffopts = self.diffopts()
1087 diffopts = self.diffopts()
1087 wlock = repo.wlock()
1088 wlock = repo.wlock()
1088 try:
1089 try:
1089 heads = []
1090 heads = []
1090 for b, ls in repo.branchmap().iteritems():
1091 for b, ls in repo.branchmap().iteritems():
1091 heads += ls
1092 heads += ls
1092 if not heads:
1093 if not heads:
1093 heads = [nullid]
1094 heads = [nullid]
1094 if repo.dirstate.p1() not in heads and not exact:
1095 if repo.dirstate.p1() not in heads and not exact:
1095 self.ui.status(_("(working directory not at a head)\n"))
1096 self.ui.status(_("(working directory not at a head)\n"))
1096
1097
1097 if not self.series:
1098 if not self.series:
1098 self.ui.warn(_('no patches in series\n'))
1099 self.ui.warn(_('no patches in series\n'))
1099 return 0
1100 return 0
1100
1101
1101 # Suppose our series file is: A B C and the current 'top'
1102 # Suppose our series file is: A B C and the current 'top'
1102 # patch is B. qpush C should be performed (moving forward)
1103 # 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
1104 # qpush B is a NOP (no change) qpush A is an error (can't
1104 # go backwards with qpush)
1105 # go backwards with qpush)
1105 if patch:
1106 if patch:
1106 patch = self.lookup(patch)
1107 patch = self.lookup(patch)
1107 info = self.isapplied(patch)
1108 info = self.isapplied(patch)
1108 if info and info[0] >= len(self.applied) - 1:
1109 if info and info[0] >= len(self.applied) - 1:
1109 self.ui.warn(
1110 self.ui.warn(
1110 _('qpush: %s is already at the top\n') % patch)
1111 _('qpush: %s is already at the top\n') % patch)
1111 return 0
1112 return 0
1112
1113
1113 pushable, reason = self.pushable(patch)
1114 pushable, reason = self.pushable(patch)
1114 if pushable:
1115 if pushable:
1115 if self.series.index(patch) < self.seriesend():
1116 if self.series.index(patch) < self.seriesend():
1116 raise util.Abort(
1117 raise util.Abort(
1117 _("cannot push to a previous patch: %s") % patch)
1118 _("cannot push to a previous patch: %s") % patch)
1118 else:
1119 else:
1119 if reason:
1120 if reason:
1120 reason = _('guarded by %s') % reason
1121 reason = _('guarded by %s') % reason
1121 else:
1122 else:
1122 reason = _('no matching guards')
1123 reason = _('no matching guards')
1123 self.ui.warn(_("cannot push '%s' - %s\n") % (patch, reason))
1124 self.ui.warn(_("cannot push '%s' - %s\n") % (patch, reason))
1124 return 1
1125 return 1
1125 elif all:
1126 elif all:
1126 patch = self.series[-1]
1127 patch = self.series[-1]
1127 if self.isapplied(patch):
1128 if self.isapplied(patch):
1128 self.ui.warn(_('all patches are currently applied\n'))
1129 self.ui.warn(_('all patches are currently applied\n'))
1129 return 0
1130 return 0
1130
1131
1131 # Following the above example, starting at 'top' of B:
1132 # Following the above example, starting at 'top' of B:
1132 # qpush should be performed (pushes C), but a subsequent
1133 # qpush should be performed (pushes C), but a subsequent
1133 # qpush without an argument is an error (nothing to
1134 # qpush without an argument is an error (nothing to
1134 # apply). This allows a loop of "...while hg qpush..." to
1135 # apply). This allows a loop of "...while hg qpush..." to
1135 # work as it detects an error when done
1136 # work as it detects an error when done
1136 start = self.seriesend()
1137 start = self.seriesend()
1137 if start == len(self.series):
1138 if start == len(self.series):
1138 self.ui.warn(_('patch series already fully applied\n'))
1139 self.ui.warn(_('patch series already fully applied\n'))
1139 return 1
1140 return 1
1140 if not force:
1141 if not force:
1141 self.checklocalchanges(repo, refresh=self.applied)
1142 self.checklocalchanges(repo, refresh=self.applied)
1142
1143
1143 if exact:
1144 if exact:
1144 if move:
1145 if move:
1145 raise util.Abort(_("cannot use --exact and --move together"))
1146 raise util.Abort(_("cannot use --exact and --move together"))
1146 if self.applied:
1147 if self.applied:
1147 raise util.Abort(_("cannot push --exact with applied patches"))
1148 raise util.Abort(_("cannot push --exact with applied patches"))
1148 root = self.series[start]
1149 root = self.series[start]
1149 target = patchheader(self.join(root), self.plainmode).parent
1150 target = patchheader(self.join(root), self.plainmode).parent
1150 if not target:
1151 if not target:
1151 raise util.Abort(_("%s does not have a parent recorded" % root))
1152 raise util.Abort(_("%s does not have a parent recorded" % root))
1152 if not repo[target] == repo['.']:
1153 if not repo[target] == repo['.']:
1153 hg.update(repo, target)
1154 hg.update(repo, target)
1154
1155
1155 if move:
1156 if move:
1156 if not patch:
1157 if not patch:
1157 raise util.Abort(_("please specify the patch to move"))
1158 raise util.Abort(_("please specify the patch to move"))
1158 for i, rpn in enumerate(self.fullseries[start:]):
1159 for i, rpn in enumerate(self.fullseries[start:]):
1159 # strip markers for patch guards
1160 # strip markers for patch guards
1160 if self.guard_re.split(rpn, 1)[0] == patch:
1161 if self.guard_re.split(rpn, 1)[0] == patch:
1161 break
1162 break
1162 index = start + i
1163 index = start + i
1163 assert index < len(self.fullseries)
1164 assert index < len(self.fullseries)
1164 fullpatch = self.fullseries[index]
1165 fullpatch = self.fullseries[index]
1165 del self.fullseries[index]
1166 del self.fullseries[index]
1166 self.fullseries.insert(start, fullpatch)
1167 self.fullseries.insert(start, fullpatch)
1167 self.parseseries()
1168 self.parseseries()
1168 self.seriesdirty = True
1169 self.seriesdirty = True
1169
1170
1170 self.applieddirty = True
1171 self.applieddirty = True
1171 if start > 0:
1172 if start > 0:
1172 self.checktoppatch(repo)
1173 self.checktoppatch(repo)
1173 if not patch:
1174 if not patch:
1174 patch = self.series[start]
1175 patch = self.series[start]
1175 end = start + 1
1176 end = start + 1
1176 else:
1177 else:
1177 end = self.series.index(patch, start) + 1
1178 end = self.series.index(patch, start) + 1
1178
1179
1179 s = self.series[start:end]
1180 s = self.series[start:end]
1180 all_files = set()
1181 all_files = set()
1181 try:
1182 try:
1182 if mergeq:
1183 if mergeq:
1183 ret = self.mergepatch(repo, mergeq, s, diffopts)
1184 ret = self.mergepatch(repo, mergeq, s, diffopts)
1184 else:
1185 else:
1185 ret = self.apply(repo, s, list, all_files=all_files)
1186 ret = self.apply(repo, s, list, all_files=all_files)
1186 except:
1187 except:
1187 self.ui.warn(_('cleaning up working directory...'))
1188 self.ui.warn(_('cleaning up working directory...'))
1188 node = repo.dirstate.p1()
1189 node = repo.dirstate.p1()
1189 hg.revert(repo, node, None)
1190 hg.revert(repo, node, None)
1190 # only remove unknown files that we know we touched or
1191 # only remove unknown files that we know we touched or
1191 # created while patching
1192 # created while patching
1192 for f in all_files:
1193 for f in all_files:
1193 if f not in repo.dirstate:
1194 if f not in repo.dirstate:
1194 try:
1195 try:
1195 util.unlinkpath(repo.wjoin(f))
1196 util.unlinkpath(repo.wjoin(f))
1196 except OSError, inst:
1197 except OSError, inst:
1197 if inst.errno != errno.ENOENT:
1198 if inst.errno != errno.ENOENT:
1198 raise
1199 raise
1199 self.ui.warn(_('done\n'))
1200 self.ui.warn(_('done\n'))
1200 raise
1201 raise
1201
1202
1202 if not self.applied:
1203 if not self.applied:
1203 return ret[0]
1204 return ret[0]
1204 top = self.applied[-1].name
1205 top = self.applied[-1].name
1205 if ret[0] and ret[0] > 1:
1206 if ret[0] and ret[0] > 1:
1206 msg = _("errors during apply, please fix and refresh %s\n")
1207 msg = _("errors during apply, please fix and refresh %s\n")
1207 self.ui.write(msg % top)
1208 self.ui.write(msg % top)
1208 else:
1209 else:
1209 self.ui.write(_("now at: %s\n") % top)
1210 self.ui.write(_("now at: %s\n") % top)
1210 return ret[0]
1211 return ret[0]
1211
1212
1212 finally:
1213 finally:
1213 wlock.release()
1214 wlock.release()
1214
1215
1215 def pop(self, repo, patch=None, force=False, update=True, all=False):
1216 def pop(self, repo, patch=None, force=False, update=True, all=False):
1216 wlock = repo.wlock()
1217 wlock = repo.wlock()
1217 try:
1218 try:
1218 if patch:
1219 if patch:
1219 # index, rev, patch
1220 # index, rev, patch
1220 info = self.isapplied(patch)
1221 info = self.isapplied(patch)
1221 if not info:
1222 if not info:
1222 patch = self.lookup(patch)
1223 patch = self.lookup(patch)
1223 info = self.isapplied(patch)
1224 info = self.isapplied(patch)
1224 if not info:
1225 if not info:
1225 raise util.Abort(_("patch %s is not applied") % patch)
1226 raise util.Abort(_("patch %s is not applied") % patch)
1226
1227
1227 if not self.applied:
1228 if not self.applied:
1228 # Allow qpop -a to work repeatedly,
1229 # Allow qpop -a to work repeatedly,
1229 # but not qpop without an argument
1230 # but not qpop without an argument
1230 self.ui.warn(_("no patches applied\n"))
1231 self.ui.warn(_("no patches applied\n"))
1231 return not all
1232 return not all
1232
1233
1233 if all:
1234 if all:
1234 start = 0
1235 start = 0
1235 elif patch:
1236 elif patch:
1236 start = info[0] + 1
1237 start = info[0] + 1
1237 else:
1238 else:
1238 start = len(self.applied) - 1
1239 start = len(self.applied) - 1
1239
1240
1240 if start >= len(self.applied):
1241 if start >= len(self.applied):
1241 self.ui.warn(_("qpop: %s is already at the top\n") % patch)
1242 self.ui.warn(_("qpop: %s is already at the top\n") % patch)
1242 return
1243 return
1243
1244
1244 if not update:
1245 if not update:
1245 parents = repo.dirstate.parents()
1246 parents = repo.dirstate.parents()
1246 rr = [x.node for x in self.applied]
1247 rr = [x.node for x in self.applied]
1247 for p in parents:
1248 for p in parents:
1248 if p in rr:
1249 if p in rr:
1249 self.ui.warn(_("qpop: forcing dirstate update\n"))
1250 self.ui.warn(_("qpop: forcing dirstate update\n"))
1250 update = True
1251 update = True
1251 else:
1252 else:
1252 parents = [p.node() for p in repo[None].parents()]
1253 parents = [p.node() for p in repo[None].parents()]
1253 needupdate = False
1254 needupdate = False
1254 for entry in self.applied[start:]:
1255 for entry in self.applied[start:]:
1255 if entry.node in parents:
1256 if entry.node in parents:
1256 needupdate = True
1257 needupdate = True
1257 break
1258 break
1258 update = needupdate
1259 update = needupdate
1259
1260
1260 if not force and update:
1261 if not force and update:
1261 self.checklocalchanges(repo)
1262 self.checklocalchanges(repo)
1262
1263
1263 self.applieddirty = True
1264 self.applieddirty = True
1264 end = len(self.applied)
1265 end = len(self.applied)
1265 rev = self.applied[start].node
1266 rev = self.applied[start].node
1266 if update:
1267 if update:
1267 top = self.checktoppatch(repo)[0]
1268 top = self.checktoppatch(repo)[0]
1268
1269
1269 try:
1270 try:
1270 heads = repo.changelog.heads(rev)
1271 heads = repo.changelog.heads(rev)
1271 except error.LookupError:
1272 except error.LookupError:
1272 node = short(rev)
1273 node = short(rev)
1273 raise util.Abort(_('trying to pop unknown node %s') % node)
1274 raise util.Abort(_('trying to pop unknown node %s') % node)
1274
1275
1275 if heads != [self.applied[-1].node]:
1276 if heads != [self.applied[-1].node]:
1276 raise util.Abort(_("popping would remove a revision not "
1277 raise util.Abort(_("popping would remove a revision not "
1277 "managed by this patch queue"))
1278 "managed by this patch queue"))
1278
1279
1279 # we know there are no local changes, so we can make a simplified
1280 # we know there are no local changes, so we can make a simplified
1280 # form of hg.update.
1281 # form of hg.update.
1281 if update:
1282 if update:
1282 qp = self.qparents(repo, rev)
1283 qp = self.qparents(repo, rev)
1283 ctx = repo[qp]
1284 ctx = repo[qp]
1284 m, a, r, d = repo.status(qp, top)[:4]
1285 m, a, r, d = repo.status(qp, top)[:4]
1285 if d:
1286 if d:
1286 raise util.Abort(_("deletions found between repo revs"))
1287 raise util.Abort(_("deletions found between repo revs"))
1287 for f in a:
1288 for f in a:
1288 try:
1289 try:
1289 util.unlinkpath(repo.wjoin(f))
1290 util.unlinkpath(repo.wjoin(f))
1290 except OSError, e:
1291 except OSError, e:
1291 if e.errno != errno.ENOENT:
1292 if e.errno != errno.ENOENT:
1292 raise
1293 raise
1293 repo.dirstate.drop(f)
1294 repo.dirstate.drop(f)
1294 for f in m + r:
1295 for f in m + r:
1295 fctx = ctx[f]
1296 fctx = ctx[f]
1296 repo.wwrite(f, fctx.data(), fctx.flags())
1297 repo.wwrite(f, fctx.data(), fctx.flags())
1297 repo.dirstate.normal(f)
1298 repo.dirstate.normal(f)
1298 repo.dirstate.setparents(qp, nullid)
1299 repo.dirstate.setparents(qp, nullid)
1299 for patch in reversed(self.applied[start:end]):
1300 for patch in reversed(self.applied[start:end]):
1300 self.ui.status(_("popping %s\n") % patch.name)
1301 self.ui.status(_("popping %s\n") % patch.name)
1301 del self.applied[start:end]
1302 del self.applied[start:end]
1302 self.strip(repo, [rev], update=False, backup='strip')
1303 self.strip(repo, [rev], update=False, backup='strip')
1303 if self.applied:
1304 if self.applied:
1304 self.ui.write(_("now at: %s\n") % self.applied[-1].name)
1305 self.ui.write(_("now at: %s\n") % self.applied[-1].name)
1305 else:
1306 else:
1306 self.ui.write(_("patch queue now empty\n"))
1307 self.ui.write(_("patch queue now empty\n"))
1307 finally:
1308 finally:
1308 wlock.release()
1309 wlock.release()
1309
1310
1310 def diff(self, repo, pats, opts):
1311 def diff(self, repo, pats, opts):
1311 top, patch = self.checktoppatch(repo)
1312 top, patch = self.checktoppatch(repo)
1312 if not top:
1313 if not top:
1313 self.ui.write(_("no patches applied\n"))
1314 self.ui.write(_("no patches applied\n"))
1314 return
1315 return
1315 qp = self.qparents(repo, top)
1316 qp = self.qparents(repo, top)
1316 if opts.get('reverse'):
1317 if opts.get('reverse'):
1317 node1, node2 = None, qp
1318 node1, node2 = None, qp
1318 else:
1319 else:
1319 node1, node2 = qp, None
1320 node1, node2 = qp, None
1320 diffopts = self.diffopts(opts, patch)
1321 diffopts = self.diffopts(opts, patch)
1321 self.printdiff(repo, diffopts, node1, node2, files=pats, opts=opts)
1322 self.printdiff(repo, diffopts, node1, node2, files=pats, opts=opts)
1322
1323
1323 def refresh(self, repo, pats=None, **opts):
1324 def refresh(self, repo, pats=None, **opts):
1324 if not self.applied:
1325 if not self.applied:
1325 self.ui.write(_("no patches applied\n"))
1326 self.ui.write(_("no patches applied\n"))
1326 return 1
1327 return 1
1327 msg = opts.get('msg', '').rstrip()
1328 msg = opts.get('msg', '').rstrip()
1328 newuser = opts.get('user')
1329 newuser = opts.get('user')
1329 newdate = opts.get('date')
1330 newdate = opts.get('date')
1330 if newdate:
1331 if newdate:
1331 newdate = '%d %d' % util.parsedate(newdate)
1332 newdate = '%d %d' % util.parsedate(newdate)
1332 wlock = repo.wlock()
1333 wlock = repo.wlock()
1333
1334
1334 try:
1335 try:
1335 self.checktoppatch(repo)
1336 self.checktoppatch(repo)
1336 (top, patchfn) = (self.applied[-1].node, self.applied[-1].name)
1337 (top, patchfn) = (self.applied[-1].node, self.applied[-1].name)
1337 if repo.changelog.heads(top) != [top]:
1338 if repo.changelog.heads(top) != [top]:
1338 raise util.Abort(_("cannot refresh a revision with children"))
1339 raise util.Abort(_("cannot refresh a revision with children"))
1339
1340
1340 inclsubs = self.checksubstate(repo)
1341 inclsubs = self.checksubstate(repo)
1341
1342
1342 cparents = repo.changelog.parents(top)
1343 cparents = repo.changelog.parents(top)
1343 patchparent = self.qparents(repo, top)
1344 patchparent = self.qparents(repo, top)
1344 ph = patchheader(self.join(patchfn), self.plainmode)
1345 ph = patchheader(self.join(patchfn), self.plainmode)
1345 diffopts = self.diffopts({'git': opts.get('git')}, patchfn)
1346 diffopts = self.diffopts({'git': opts.get('git')}, patchfn)
1346 if msg:
1347 if msg:
1347 ph.setmessage(msg)
1348 ph.setmessage(msg)
1348 if newuser:
1349 if newuser:
1349 ph.setuser(newuser)
1350 ph.setuser(newuser)
1350 if newdate:
1351 if newdate:
1351 ph.setdate(newdate)
1352 ph.setdate(newdate)
1352 ph.setparent(hex(patchparent))
1353 ph.setparent(hex(patchparent))
1353
1354
1354 # only commit new patch when write is complete
1355 # only commit new patch when write is complete
1355 patchf = self.opener(patchfn, 'w', atomictemp=True)
1356 patchf = self.opener(patchfn, 'w', atomictemp=True)
1356
1357
1357 comments = str(ph)
1358 comments = str(ph)
1358 if comments:
1359 if comments:
1359 patchf.write(comments)
1360 patchf.write(comments)
1360
1361
1361 # update the dirstate in place, strip off the qtip commit
1362 # update the dirstate in place, strip off the qtip commit
1362 # and then commit.
1363 # and then commit.
1363 #
1364 #
1364 # this should really read:
1365 # this should really read:
1365 # mm, dd, aa = repo.status(top, patchparent)[:3]
1366 # mm, dd, aa = repo.status(top, patchparent)[:3]
1366 # but we do it backwards to take advantage of manifest/chlog
1367 # but we do it backwards to take advantage of manifest/chlog
1367 # caching against the next repo.status call
1368 # caching against the next repo.status call
1368 mm, aa, dd = repo.status(patchparent, top)[:3]
1369 mm, aa, dd = repo.status(patchparent, top)[:3]
1369 changes = repo.changelog.read(top)
1370 changes = repo.changelog.read(top)
1370 man = repo.manifest.read(changes[0])
1371 man = repo.manifest.read(changes[0])
1371 aaa = aa[:]
1372 aaa = aa[:]
1372 matchfn = scmutil.match(repo[None], pats, opts)
1373 matchfn = scmutil.match(repo[None], pats, opts)
1373 # in short mode, we only diff the files included in the
1374 # in short mode, we only diff the files included in the
1374 # patch already plus specified files
1375 # patch already plus specified files
1375 if opts.get('short'):
1376 if opts.get('short'):
1376 # if amending a patch, we start with existing
1377 # if amending a patch, we start with existing
1377 # files plus specified files - unfiltered
1378 # files plus specified files - unfiltered
1378 match = scmutil.matchfiles(repo, mm + aa + dd + matchfn.files())
1379 match = scmutil.matchfiles(repo, mm + aa + dd + matchfn.files())
1379 # filter with inc/exl options
1380 # filter with inc/exl options
1380 matchfn = scmutil.match(repo[None], opts=opts)
1381 matchfn = scmutil.match(repo[None], opts=opts)
1381 else:
1382 else:
1382 match = scmutil.matchall(repo)
1383 match = scmutil.matchall(repo)
1383 m, a, r, d = repo.status(match=match)[:4]
1384 m, a, r, d = repo.status(match=match)[:4]
1384 mm = set(mm)
1385 mm = set(mm)
1385 aa = set(aa)
1386 aa = set(aa)
1386 dd = set(dd)
1387 dd = set(dd)
1387
1388
1388 # we might end up with files that were added between
1389 # we might end up with files that were added between
1389 # qtip and the dirstate parent, but then changed in the
1390 # qtip and the dirstate parent, but then changed in the
1390 # local dirstate. in this case, we want them to only
1391 # local dirstate. in this case, we want them to only
1391 # show up in the added section
1392 # show up in the added section
1392 for x in m:
1393 for x in m:
1393 if x not in aa:
1394 if x not in aa:
1394 mm.add(x)
1395 mm.add(x)
1395 # we might end up with files added by the local dirstate that
1396 # we might end up with files added by the local dirstate that
1396 # were deleted by the patch. In this case, they should only
1397 # were deleted by the patch. In this case, they should only
1397 # show up in the changed section.
1398 # show up in the changed section.
1398 for x in a:
1399 for x in a:
1399 if x in dd:
1400 if x in dd:
1400 dd.remove(x)
1401 dd.remove(x)
1401 mm.add(x)
1402 mm.add(x)
1402 else:
1403 else:
1403 aa.add(x)
1404 aa.add(x)
1404 # make sure any files deleted in the local dirstate
1405 # make sure any files deleted in the local dirstate
1405 # are not in the add or change column of the patch
1406 # are not in the add or change column of the patch
1406 forget = []
1407 forget = []
1407 for x in d + r:
1408 for x in d + r:
1408 if x in aa:
1409 if x in aa:
1409 aa.remove(x)
1410 aa.remove(x)
1410 forget.append(x)
1411 forget.append(x)
1411 continue
1412 continue
1412 else:
1413 else:
1413 mm.discard(x)
1414 mm.discard(x)
1414 dd.add(x)
1415 dd.add(x)
1415
1416
1416 m = list(mm)
1417 m = list(mm)
1417 r = list(dd)
1418 r = list(dd)
1418 a = list(aa)
1419 a = list(aa)
1419 c = [filter(matchfn, l) for l in (m, a, r)]
1420 c = [filter(matchfn, l) for l in (m, a, r)]
1420 match = scmutil.matchfiles(repo, set(c[0] + c[1] + c[2] + inclsubs))
1421 match = scmutil.matchfiles(repo, set(c[0] + c[1] + c[2] + inclsubs))
1421 chunks = patchmod.diff(repo, patchparent, match=match,
1422 chunks = patchmod.diff(repo, patchparent, match=match,
1422 changes=c, opts=diffopts)
1423 changes=c, opts=diffopts)
1423 for chunk in chunks:
1424 for chunk in chunks:
1424 patchf.write(chunk)
1425 patchf.write(chunk)
1425
1426
1426 try:
1427 try:
1427 if diffopts.git or diffopts.upgrade:
1428 if diffopts.git or diffopts.upgrade:
1428 copies = {}
1429 copies = {}
1429 for dst in a:
1430 for dst in a:
1430 src = repo.dirstate.copied(dst)
1431 src = repo.dirstate.copied(dst)
1431 # during qfold, the source file for copies may
1432 # during qfold, the source file for copies may
1432 # be removed. Treat this as a simple add.
1433 # be removed. Treat this as a simple add.
1433 if src is not None and src in repo.dirstate:
1434 if src is not None and src in repo.dirstate:
1434 copies.setdefault(src, []).append(dst)
1435 copies.setdefault(src, []).append(dst)
1435 repo.dirstate.add(dst)
1436 repo.dirstate.add(dst)
1436 # remember the copies between patchparent and qtip
1437 # remember the copies between patchparent and qtip
1437 for dst in aaa:
1438 for dst in aaa:
1438 f = repo.file(dst)
1439 f = repo.file(dst)
1439 src = f.renamed(man[dst])
1440 src = f.renamed(man[dst])
1440 if src:
1441 if src:
1441 copies.setdefault(src[0], []).extend(
1442 copies.setdefault(src[0], []).extend(
1442 copies.get(dst, []))
1443 copies.get(dst, []))
1443 if dst in a:
1444 if dst in a:
1444 copies[src[0]].append(dst)
1445 copies[src[0]].append(dst)
1445 # we can't copy a file created by the patch itself
1446 # we can't copy a file created by the patch itself
1446 if dst in copies:
1447 if dst in copies:
1447 del copies[dst]
1448 del copies[dst]
1448 for src, dsts in copies.iteritems():
1449 for src, dsts in copies.iteritems():
1449 for dst in dsts:
1450 for dst in dsts:
1450 repo.dirstate.copy(src, dst)
1451 repo.dirstate.copy(src, dst)
1451 else:
1452 else:
1452 for dst in a:
1453 for dst in a:
1453 repo.dirstate.add(dst)
1454 repo.dirstate.add(dst)
1454 # Drop useless copy information
1455 # Drop useless copy information
1455 for f in list(repo.dirstate.copies()):
1456 for f in list(repo.dirstate.copies()):
1456 repo.dirstate.copy(None, f)
1457 repo.dirstate.copy(None, f)
1457 for f in r:
1458 for f in r:
1458 repo.dirstate.remove(f)
1459 repo.dirstate.remove(f)
1459 # if the patch excludes a modified file, mark that
1460 # if the patch excludes a modified file, mark that
1460 # file with mtime=0 so status can see it.
1461 # file with mtime=0 so status can see it.
1461 mm = []
1462 mm = []
1462 for i in xrange(len(m)-1, -1, -1):
1463 for i in xrange(len(m)-1, -1, -1):
1463 if not matchfn(m[i]):
1464 if not matchfn(m[i]):
1464 mm.append(m[i])
1465 mm.append(m[i])
1465 del m[i]
1466 del m[i]
1466 for f in m:
1467 for f in m:
1467 repo.dirstate.normal(f)
1468 repo.dirstate.normal(f)
1468 for f in mm:
1469 for f in mm:
1469 repo.dirstate.normallookup(f)
1470 repo.dirstate.normallookup(f)
1470 for f in forget:
1471 for f in forget:
1471 repo.dirstate.drop(f)
1472 repo.dirstate.drop(f)
1472
1473
1473 if not msg:
1474 if not msg:
1474 if not ph.message:
1475 if not ph.message:
1475 message = "[mq]: %s\n" % patchfn
1476 message = "[mq]: %s\n" % patchfn
1476 else:
1477 else:
1477 message = "\n".join(ph.message)
1478 message = "\n".join(ph.message)
1478 else:
1479 else:
1479 message = msg
1480 message = msg
1480
1481
1481 user = ph.user or changes[1]
1482 user = ph.user or changes[1]
1482
1483
1483 # assumes strip can roll itself back if interrupted
1484 # assumes strip can roll itself back if interrupted
1484 repo.dirstate.setparents(*cparents)
1485 repo.dirstate.setparents(*cparents)
1485 self.applied.pop()
1486 self.applied.pop()
1486 self.applieddirty = True
1487 self.applieddirty = True
1487 self.strip(repo, [top], update=False,
1488 self.strip(repo, [top], update=False,
1488 backup='strip')
1489 backup='strip')
1489 except:
1490 except:
1490 repo.dirstate.invalidate()
1491 repo.dirstate.invalidate()
1491 raise
1492 raise
1492
1493
1493 try:
1494 try:
1494 # might be nice to attempt to roll back strip after this
1495 # might be nice to attempt to roll back strip after this
1495 n = repo.commit(message, user, ph.date, match=match,
1496 n = repo.commit(message, user, ph.date, match=match,
1496 force=True)
1497 force=True)
1497 # only write patch after a successful commit
1498 # only write patch after a successful commit
1498 patchf.close()
1499 patchf.close()
1499 self.applied.append(statusentry(n, patchfn))
1500 self.applied.append(statusentry(n, patchfn))
1500 except:
1501 except:
1501 ctx = repo[cparents[0]]
1502 ctx = repo[cparents[0]]
1502 repo.dirstate.rebuild(ctx.node(), ctx.manifest())
1503 repo.dirstate.rebuild(ctx.node(), ctx.manifest())
1503 self.savedirty()
1504 self.savedirty()
1504 self.ui.warn(_('refresh interrupted while patch was popped! '
1505 self.ui.warn(_('refresh interrupted while patch was popped! '
1505 '(revert --all, qpush to recover)\n'))
1506 '(revert --all, qpush to recover)\n'))
1506 raise
1507 raise
1507 finally:
1508 finally:
1508 wlock.release()
1509 wlock.release()
1509 self.removeundo(repo)
1510 self.removeundo(repo)
1510
1511
1511 def init(self, repo, create=False):
1512 def init(self, repo, create=False):
1512 if not create and os.path.isdir(self.path):
1513 if not create and os.path.isdir(self.path):
1513 raise util.Abort(_("patch queue directory already exists"))
1514 raise util.Abort(_("patch queue directory already exists"))
1514 try:
1515 try:
1515 os.mkdir(self.path)
1516 os.mkdir(self.path)
1516 except OSError, inst:
1517 except OSError, inst:
1517 if inst.errno != errno.EEXIST or not create:
1518 if inst.errno != errno.EEXIST or not create:
1518 raise
1519 raise
1519 if create:
1520 if create:
1520 return self.qrepo(create=True)
1521 return self.qrepo(create=True)
1521
1522
1522 def unapplied(self, repo, patch=None):
1523 def unapplied(self, repo, patch=None):
1523 if patch and patch not in self.series:
1524 if patch and patch not in self.series:
1524 raise util.Abort(_("patch %s is not in series file") % patch)
1525 raise util.Abort(_("patch %s is not in series file") % patch)
1525 if not patch:
1526 if not patch:
1526 start = self.seriesend()
1527 start = self.seriesend()
1527 else:
1528 else:
1528 start = self.series.index(patch) + 1
1529 start = self.series.index(patch) + 1
1529 unapplied = []
1530 unapplied = []
1530 for i in xrange(start, len(self.series)):
1531 for i in xrange(start, len(self.series)):
1531 pushable, reason = self.pushable(i)
1532 pushable, reason = self.pushable(i)
1532 if pushable:
1533 if pushable:
1533 unapplied.append((i, self.series[i]))
1534 unapplied.append((i, self.series[i]))
1534 self.explainpushable(i)
1535 self.explainpushable(i)
1535 return unapplied
1536 return unapplied
1536
1537
1537 def qseries(self, repo, missing=None, start=0, length=None, status=None,
1538 def qseries(self, repo, missing=None, start=0, length=None, status=None,
1538 summary=False):
1539 summary=False):
1539 def displayname(pfx, patchname, state):
1540 def displayname(pfx, patchname, state):
1540 if pfx:
1541 if pfx:
1541 self.ui.write(pfx)
1542 self.ui.write(pfx)
1542 if summary:
1543 if summary:
1543 ph = patchheader(self.join(patchname), self.plainmode)
1544 ph = patchheader(self.join(patchname), self.plainmode)
1544 msg = ph.message and ph.message[0] or ''
1545 msg = ph.message and ph.message[0] or ''
1545 if self.ui.formatted():
1546 if self.ui.formatted():
1546 width = self.ui.termwidth() - len(pfx) - len(patchname) - 2
1547 width = self.ui.termwidth() - len(pfx) - len(patchname) - 2
1547 if width > 0:
1548 if width > 0:
1548 msg = util.ellipsis(msg, width)
1549 msg = util.ellipsis(msg, width)
1549 else:
1550 else:
1550 msg = ''
1551 msg = ''
1551 self.ui.write(patchname, label='qseries.' + state)
1552 self.ui.write(patchname, label='qseries.' + state)
1552 self.ui.write(': ')
1553 self.ui.write(': ')
1553 self.ui.write(msg, label='qseries.message.' + state)
1554 self.ui.write(msg, label='qseries.message.' + state)
1554 else:
1555 else:
1555 self.ui.write(patchname, label='qseries.' + state)
1556 self.ui.write(patchname, label='qseries.' + state)
1556 self.ui.write('\n')
1557 self.ui.write('\n')
1557
1558
1558 applied = set([p.name for p in self.applied])
1559 applied = set([p.name for p in self.applied])
1559 if length is None:
1560 if length is None:
1560 length = len(self.series) - start
1561 length = len(self.series) - start
1561 if not missing:
1562 if not missing:
1562 if self.ui.verbose:
1563 if self.ui.verbose:
1563 idxwidth = len(str(start + length - 1))
1564 idxwidth = len(str(start + length - 1))
1564 for i in xrange(start, start + length):
1565 for i in xrange(start, start + length):
1565 patch = self.series[i]
1566 patch = self.series[i]
1566 if patch in applied:
1567 if patch in applied:
1567 char, state = 'A', 'applied'
1568 char, state = 'A', 'applied'
1568 elif self.pushable(i)[0]:
1569 elif self.pushable(i)[0]:
1569 char, state = 'U', 'unapplied'
1570 char, state = 'U', 'unapplied'
1570 else:
1571 else:
1571 char, state = 'G', 'guarded'
1572 char, state = 'G', 'guarded'
1572 pfx = ''
1573 pfx = ''
1573 if self.ui.verbose:
1574 if self.ui.verbose:
1574 pfx = '%*d %s ' % (idxwidth, i, char)
1575 pfx = '%*d %s ' % (idxwidth, i, char)
1575 elif status and status != char:
1576 elif status and status != char:
1576 continue
1577 continue
1577 displayname(pfx, patch, state)
1578 displayname(pfx, patch, state)
1578 else:
1579 else:
1579 msng_list = []
1580 msng_list = []
1580 for root, dirs, files in os.walk(self.path):
1581 for root, dirs, files in os.walk(self.path):
1581 d = root[len(self.path) + 1:]
1582 d = root[len(self.path) + 1:]
1582 for f in files:
1583 for f in files:
1583 fl = os.path.join(d, f)
1584 fl = os.path.join(d, f)
1584 if (fl not in self.series and
1585 if (fl not in self.series and
1585 fl not in (self.statuspath, self.seriespath,
1586 fl not in (self.statuspath, self.seriespath,
1586 self.guardspath)
1587 self.guardspath)
1587 and not fl.startswith('.')):
1588 and not fl.startswith('.')):
1588 msng_list.append(fl)
1589 msng_list.append(fl)
1589 for x in sorted(msng_list):
1590 for x in sorted(msng_list):
1590 pfx = self.ui.verbose and ('D ') or ''
1591 pfx = self.ui.verbose and ('D ') or ''
1591 displayname(pfx, x, 'missing')
1592 displayname(pfx, x, 'missing')
1592
1593
1593 def issaveline(self, l):
1594 def issaveline(self, l):
1594 if l.name == '.hg.patches.save.line':
1595 if l.name == '.hg.patches.save.line':
1595 return True
1596 return True
1596
1597
1597 def qrepo(self, create=False):
1598 def qrepo(self, create=False):
1598 ui = self.ui.copy()
1599 ui = self.ui.copy()
1599 ui.setconfig('paths', 'default', '', overlay=False)
1600 ui.setconfig('paths', 'default', '', overlay=False)
1600 ui.setconfig('paths', 'default-push', '', overlay=False)
1601 ui.setconfig('paths', 'default-push', '', overlay=False)
1601 if create or os.path.isdir(self.join(".hg")):
1602 if create or os.path.isdir(self.join(".hg")):
1602 return hg.repository(ui, path=self.path, create=create)
1603 return hg.repository(ui, path=self.path, create=create)
1603
1604
1604 def restore(self, repo, rev, delete=None, qupdate=None):
1605 def restore(self, repo, rev, delete=None, qupdate=None):
1605 desc = repo[rev].description().strip()
1606 desc = repo[rev].description().strip()
1606 lines = desc.splitlines()
1607 lines = desc.splitlines()
1607 i = 0
1608 i = 0
1608 datastart = None
1609 datastart = None
1609 series = []
1610 series = []
1610 applied = []
1611 applied = []
1611 qpp = None
1612 qpp = None
1612 for i, line in enumerate(lines):
1613 for i, line in enumerate(lines):
1613 if line == 'Patch Data:':
1614 if line == 'Patch Data:':
1614 datastart = i + 1
1615 datastart = i + 1
1615 elif line.startswith('Dirstate:'):
1616 elif line.startswith('Dirstate:'):
1616 l = line.rstrip()
1617 l = line.rstrip()
1617 l = l[10:].split(' ')
1618 l = l[10:].split(' ')
1618 qpp = [bin(x) for x in l]
1619 qpp = [bin(x) for x in l]
1619 elif datastart is not None:
1620 elif datastart is not None:
1620 l = line.rstrip()
1621 l = line.rstrip()
1621 n, name = l.split(':', 1)
1622 n, name = l.split(':', 1)
1622 if n:
1623 if n:
1623 applied.append(statusentry(bin(n), name))
1624 applied.append(statusentry(bin(n), name))
1624 else:
1625 else:
1625 series.append(l)
1626 series.append(l)
1626 if datastart is None:
1627 if datastart is None:
1627 self.ui.warn(_("No saved patch data found\n"))
1628 self.ui.warn(_("No saved patch data found\n"))
1628 return 1
1629 return 1
1629 self.ui.warn(_("restoring status: %s\n") % lines[0])
1630 self.ui.warn(_("restoring status: %s\n") % lines[0])
1630 self.fullseries = series
1631 self.fullseries = series
1631 self.applied = applied
1632 self.applied = applied
1632 self.parseseries()
1633 self.parseseries()
1633 self.seriesdirty = True
1634 self.seriesdirty = True
1634 self.applieddirty = True
1635 self.applieddirty = True
1635 heads = repo.changelog.heads()
1636 heads = repo.changelog.heads()
1636 if delete:
1637 if delete:
1637 if rev not in heads:
1638 if rev not in heads:
1638 self.ui.warn(_("save entry has children, leaving it alone\n"))
1639 self.ui.warn(_("save entry has children, leaving it alone\n"))
1639 else:
1640 else:
1640 self.ui.warn(_("removing save entry %s\n") % short(rev))
1641 self.ui.warn(_("removing save entry %s\n") % short(rev))
1641 pp = repo.dirstate.parents()
1642 pp = repo.dirstate.parents()
1642 if rev in pp:
1643 if rev in pp:
1643 update = True
1644 update = True
1644 else:
1645 else:
1645 update = False
1646 update = False
1646 self.strip(repo, [rev], update=update, backup='strip')
1647 self.strip(repo, [rev], update=update, backup='strip')
1647 if qpp:
1648 if qpp:
1648 self.ui.warn(_("saved queue repository parents: %s %s\n") %
1649 self.ui.warn(_("saved queue repository parents: %s %s\n") %
1649 (short(qpp[0]), short(qpp[1])))
1650 (short(qpp[0]), short(qpp[1])))
1650 if qupdate:
1651 if qupdate:
1651 self.ui.status(_("updating queue directory\n"))
1652 self.ui.status(_("updating queue directory\n"))
1652 r = self.qrepo()
1653 r = self.qrepo()
1653 if not r:
1654 if not r:
1654 self.ui.warn(_("Unable to load queue repository\n"))
1655 self.ui.warn(_("Unable to load queue repository\n"))
1655 return 1
1656 return 1
1656 hg.clean(r, qpp[0])
1657 hg.clean(r, qpp[0])
1657
1658
1658 def save(self, repo, msg=None):
1659 def save(self, repo, msg=None):
1659 if not self.applied:
1660 if not self.applied:
1660 self.ui.warn(_("save: no patches applied, exiting\n"))
1661 self.ui.warn(_("save: no patches applied, exiting\n"))
1661 return 1
1662 return 1
1662 if self.issaveline(self.applied[-1]):
1663 if self.issaveline(self.applied[-1]):
1663 self.ui.warn(_("status is already saved\n"))
1664 self.ui.warn(_("status is already saved\n"))
1664 return 1
1665 return 1
1665
1666
1666 if not msg:
1667 if not msg:
1667 msg = _("hg patches saved state")
1668 msg = _("hg patches saved state")
1668 else:
1669 else:
1669 msg = "hg patches: " + msg.rstrip('\r\n')
1670 msg = "hg patches: " + msg.rstrip('\r\n')
1670 r = self.qrepo()
1671 r = self.qrepo()
1671 if r:
1672 if r:
1672 pp = r.dirstate.parents()
1673 pp = r.dirstate.parents()
1673 msg += "\nDirstate: %s %s" % (hex(pp[0]), hex(pp[1]))
1674 msg += "\nDirstate: %s %s" % (hex(pp[0]), hex(pp[1]))
1674 msg += "\n\nPatch Data:\n"
1675 msg += "\n\nPatch Data:\n"
1675 msg += ''.join('%s\n' % x for x in self.applied)
1676 msg += ''.join('%s\n' % x for x in self.applied)
1676 msg += ''.join(':%s\n' % x for x in self.fullseries)
1677 msg += ''.join(':%s\n' % x for x in self.fullseries)
1677 n = repo.commit(msg, force=True)
1678 n = repo.commit(msg, force=True)
1678 if not n:
1679 if not n:
1679 self.ui.warn(_("repo commit failed\n"))
1680 self.ui.warn(_("repo commit failed\n"))
1680 return 1
1681 return 1
1681 self.applied.append(statusentry(n, '.hg.patches.save.line'))
1682 self.applied.append(statusentry(n, '.hg.patches.save.line'))
1682 self.applieddirty = True
1683 self.applieddirty = True
1683 self.removeundo(repo)
1684 self.removeundo(repo)
1684
1685
1685 def fullseriesend(self):
1686 def fullseriesend(self):
1686 if self.applied:
1687 if self.applied:
1687 p = self.applied[-1].name
1688 p = self.applied[-1].name
1688 end = self.findseries(p)
1689 end = self.findseries(p)
1689 if end is None:
1690 if end is None:
1690 return len(self.fullseries)
1691 return len(self.fullseries)
1691 return end + 1
1692 return end + 1
1692 return 0
1693 return 0
1693
1694
1694 def seriesend(self, all_patches=False):
1695 def seriesend(self, all_patches=False):
1695 """If all_patches is False, return the index of the next pushable patch
1696 """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
1697 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.
1698 index of the first patch past the last applied one.
1698 """
1699 """
1699 end = 0
1700 end = 0
1700 def next(start):
1701 def next(start):
1701 if all_patches or start >= len(self.series):
1702 if all_patches or start >= len(self.series):
1702 return start
1703 return start
1703 for i in xrange(start, len(self.series)):
1704 for i in xrange(start, len(self.series)):
1704 p, reason = self.pushable(i)
1705 p, reason = self.pushable(i)
1705 if p:
1706 if p:
1706 break
1707 break
1707 self.explainpushable(i)
1708 self.explainpushable(i)
1708 return i
1709 return i
1709 if self.applied:
1710 if self.applied:
1710 p = self.applied[-1].name
1711 p = self.applied[-1].name
1711 try:
1712 try:
1712 end = self.series.index(p)
1713 end = self.series.index(p)
1713 except ValueError:
1714 except ValueError:
1714 return 0
1715 return 0
1715 return next(end + 1)
1716 return next(end + 1)
1716 return next(end)
1717 return next(end)
1717
1718
1718 def appliedname(self, index):
1719 def appliedname(self, index):
1719 pname = self.applied[index].name
1720 pname = self.applied[index].name
1720 if not self.ui.verbose:
1721 if not self.ui.verbose:
1721 p = pname
1722 p = pname
1722 else:
1723 else:
1723 p = str(self.series.index(pname)) + " " + pname
1724 p = str(self.series.index(pname)) + " " + pname
1724 return p
1725 return p
1725
1726
1726 def qimport(self, repo, files, patchname=None, rev=None, existing=None,
1727 def qimport(self, repo, files, patchname=None, rev=None, existing=None,
1727 force=None, git=False):
1728 force=None, git=False):
1728 def checkseries(patchname):
1729 def checkseries(patchname):
1729 if patchname in self.series:
1730 if patchname in self.series:
1730 raise util.Abort(_('patch %s is already in the series file')
1731 raise util.Abort(_('patch %s is already in the series file')
1731 % patchname)
1732 % patchname)
1732
1733
1733 if rev:
1734 if rev:
1734 if files:
1735 if files:
1735 raise util.Abort(_('option "-r" not valid when importing '
1736 raise util.Abort(_('option "-r" not valid when importing '
1736 'files'))
1737 'files'))
1737 rev = scmutil.revrange(repo, rev)
1738 rev = scmutil.revrange(repo, rev)
1738 rev.sort(reverse=True)
1739 rev.sort(reverse=True)
1739 if (len(files) > 1 or len(rev) > 1) and patchname:
1740 if (len(files) > 1 or len(rev) > 1) and patchname:
1740 raise util.Abort(_('option "-n" not valid when importing multiple '
1741 raise util.Abort(_('option "-n" not valid when importing multiple '
1741 'patches'))
1742 'patches'))
1742 if rev:
1743 if rev:
1743 # If mq patches are applied, we can only import revisions
1744 # If mq patches are applied, we can only import revisions
1744 # that form a linear path to qbase.
1745 # that form a linear path to qbase.
1745 # Otherwise, they should form a linear path to a head.
1746 # Otherwise, they should form a linear path to a head.
1746 heads = repo.changelog.heads(repo.changelog.node(rev[-1]))
1747 heads = repo.changelog.heads(repo.changelog.node(rev[-1]))
1747 if len(heads) > 1:
1748 if len(heads) > 1:
1748 raise util.Abort(_('revision %d is the root of more than one '
1749 raise util.Abort(_('revision %d is the root of more than one '
1749 'branch') % rev[-1])
1750 'branch') % rev[-1])
1750 if self.applied:
1751 if self.applied:
1751 base = repo.changelog.node(rev[0])
1752 base = repo.changelog.node(rev[0])
1752 if base in [n.node for n in self.applied]:
1753 if base in [n.node for n in self.applied]:
1753 raise util.Abort(_('revision %d is already managed')
1754 raise util.Abort(_('revision %d is already managed')
1754 % rev[0])
1755 % rev[0])
1755 if heads != [self.applied[-1].node]:
1756 if heads != [self.applied[-1].node]:
1756 raise util.Abort(_('revision %d is not the parent of '
1757 raise util.Abort(_('revision %d is not the parent of '
1757 'the queue') % rev[0])
1758 'the queue') % rev[0])
1758 base = repo.changelog.rev(self.applied[0].node)
1759 base = repo.changelog.rev(self.applied[0].node)
1759 lastparent = repo.changelog.parentrevs(base)[0]
1760 lastparent = repo.changelog.parentrevs(base)[0]
1760 else:
1761 else:
1761 if heads != [repo.changelog.node(rev[0])]:
1762 if heads != [repo.changelog.node(rev[0])]:
1762 raise util.Abort(_('revision %d has unmanaged children')
1763 raise util.Abort(_('revision %d has unmanaged children')
1763 % rev[0])
1764 % rev[0])
1764 lastparent = None
1765 lastparent = None
1765
1766
1766 diffopts = self.diffopts({'git': git})
1767 diffopts = self.diffopts({'git': git})
1767 for r in rev:
1768 for r in rev:
1768 if not repo[r].mutable():
1769 if not repo[r].mutable():
1769 raise util.Abort(_('revision %d is not mutable') % r,
1770 raise util.Abort(_('revision %d is not mutable') % r,
1770 hint=_('see "hg help phases" for details'))
1771 hint=_('see "hg help phases" for details'))
1771 p1, p2 = repo.changelog.parentrevs(r)
1772 p1, p2 = repo.changelog.parentrevs(r)
1772 n = repo.changelog.node(r)
1773 n = repo.changelog.node(r)
1773 if p2 != nullrev:
1774 if p2 != nullrev:
1774 raise util.Abort(_('cannot import merge revision %d') % r)
1775 raise util.Abort(_('cannot import merge revision %d') % r)
1775 if lastparent and lastparent != r:
1776 if lastparent and lastparent != r:
1776 raise util.Abort(_('revision %d is not the parent of %d')
1777 raise util.Abort(_('revision %d is not the parent of %d')
1777 % (r, lastparent))
1778 % (r, lastparent))
1778 lastparent = p1
1779 lastparent = p1
1779
1780
1780 if not patchname:
1781 if not patchname:
1781 patchname = normname('%d.diff' % r)
1782 patchname = normname('%d.diff' % r)
1782 checkseries(patchname)
1783 checkseries(patchname)
1783 self.checkpatchname(patchname, force)
1784 self.checkpatchname(patchname, force)
1784 self.fullseries.insert(0, patchname)
1785 self.fullseries.insert(0, patchname)
1785
1786
1786 patchf = self.opener(patchname, "w")
1787 patchf = self.opener(patchname, "w")
1787 cmdutil.export(repo, [n], fp=patchf, opts=diffopts)
1788 cmdutil.export(repo, [n], fp=patchf, opts=diffopts)
1788 patchf.close()
1789 patchf.close()
1789
1790
1790 se = statusentry(n, patchname)
1791 se = statusentry(n, patchname)
1791 self.applied.insert(0, se)
1792 self.applied.insert(0, se)
1792
1793
1793 self.added.append(patchname)
1794 self.added.append(patchname)
1794 patchname = None
1795 patchname = None
1795 self.parseseries()
1796 self.parseseries()
1796 self.applieddirty = True
1797 self.applieddirty = True
1797 self.seriesdirty = True
1798 self.seriesdirty = True
1798
1799
1799 for i, filename in enumerate(files):
1800 for i, filename in enumerate(files):
1800 if existing:
1801 if existing:
1801 if filename == '-':
1802 if filename == '-':
1802 raise util.Abort(_('-e is incompatible with import from -'))
1803 raise util.Abort(_('-e is incompatible with import from -'))
1803 filename = normname(filename)
1804 filename = normname(filename)
1804 self.checkreservedname(filename)
1805 self.checkreservedname(filename)
1805 originpath = self.join(filename)
1806 originpath = self.join(filename)
1806 if not os.path.isfile(originpath):
1807 if not os.path.isfile(originpath):
1807 raise util.Abort(_("patch %s does not exist") % filename)
1808 raise util.Abort(_("patch %s does not exist") % filename)
1808
1809
1809 if patchname:
1810 if patchname:
1810 self.checkpatchname(patchname, force)
1811 self.checkpatchname(patchname, force)
1811
1812
1812 self.ui.write(_('renaming %s to %s\n')
1813 self.ui.write(_('renaming %s to %s\n')
1813 % (filename, patchname))
1814 % (filename, patchname))
1814 util.rename(originpath, self.join(patchname))
1815 util.rename(originpath, self.join(patchname))
1815 else:
1816 else:
1816 patchname = filename
1817 patchname = filename
1817
1818
1818 else:
1819 else:
1819 if filename == '-' and not patchname:
1820 if filename == '-' and not patchname:
1820 raise util.Abort(_('need --name to import a patch from -'))
1821 raise util.Abort(_('need --name to import a patch from -'))
1821 elif not patchname:
1822 elif not patchname:
1822 patchname = normname(os.path.basename(filename.rstrip('/')))
1823 patchname = normname(os.path.basename(filename.rstrip('/')))
1823 self.checkpatchname(patchname, force)
1824 self.checkpatchname(patchname, force)
1824 try:
1825 try:
1825 if filename == '-':
1826 if filename == '-':
1826 text = self.ui.fin.read()
1827 text = self.ui.fin.read()
1827 else:
1828 else:
1828 fp = url.open(self.ui, filename)
1829 fp = url.open(self.ui, filename)
1829 text = fp.read()
1830 text = fp.read()
1830 fp.close()
1831 fp.close()
1831 except (OSError, IOError):
1832 except (OSError, IOError):
1832 raise util.Abort(_("unable to read file %s") % filename)
1833 raise util.Abort(_("unable to read file %s") % filename)
1833 patchf = self.opener(patchname, "w")
1834 patchf = self.opener(patchname, "w")
1834 patchf.write(text)
1835 patchf.write(text)
1835 patchf.close()
1836 patchf.close()
1836 if not force:
1837 if not force:
1837 checkseries(patchname)
1838 checkseries(patchname)
1838 if patchname not in self.series:
1839 if patchname not in self.series:
1839 index = self.fullseriesend() + i
1840 index = self.fullseriesend() + i
1840 self.fullseries[index:index] = [patchname]
1841 self.fullseries[index:index] = [patchname]
1841 self.parseseries()
1842 self.parseseries()
1842 self.seriesdirty = True
1843 self.seriesdirty = True
1843 self.ui.warn(_("adding %s to series file\n") % patchname)
1844 self.ui.warn(_("adding %s to series file\n") % patchname)
1844 self.added.append(patchname)
1845 self.added.append(patchname)
1845 patchname = None
1846 patchname = None
1846
1847
1847 self.removeundo(repo)
1848 self.removeundo(repo)
1848
1849
1849 @command("qdelete|qremove|qrm",
1850 @command("qdelete|qremove|qrm",
1850 [('k', 'keep', None, _('keep patch file')),
1851 [('k', 'keep', None, _('keep patch file')),
1851 ('r', 'rev', [],
1852 ('r', 'rev', [],
1852 _('stop managing a revision (DEPRECATED)'), _('REV'))],
1853 _('stop managing a revision (DEPRECATED)'), _('REV'))],
1853 _('hg qdelete [-k] [PATCH]...'))
1854 _('hg qdelete [-k] [PATCH]...'))
1854 def delete(ui, repo, *patches, **opts):
1855 def delete(ui, repo, *patches, **opts):
1855 """remove patches from queue
1856 """remove patches from queue
1856
1857
1857 The patches must not be applied, and at least one patch is required. Exact
1858 The patches must not be applied, and at least one patch is required. Exact
1858 patch identifiers must be given. With -k/--keep, the patch files are
1859 patch identifiers must be given. With -k/--keep, the patch files are
1859 preserved in the patch directory.
1860 preserved in the patch directory.
1860
1861
1861 To stop managing a patch and move it into permanent history,
1862 To stop managing a patch and move it into permanent history,
1862 use the :hg:`qfinish` command."""
1863 use the :hg:`qfinish` command."""
1863 q = repo.mq
1864 q = repo.mq
1864 q.delete(repo, patches, opts)
1865 q.delete(repo, patches, opts)
1865 q.savedirty()
1866 q.savedirty()
1866 return 0
1867 return 0
1867
1868
1868 @command("qapplied",
1869 @command("qapplied",
1869 [('1', 'last', None, _('show only the last patch'))
1870 [('1', 'last', None, _('show only the last patch'))
1870 ] + seriesopts,
1871 ] + seriesopts,
1871 _('hg qapplied [-1] [-s] [PATCH]'))
1872 _('hg qapplied [-1] [-s] [PATCH]'))
1872 def applied(ui, repo, patch=None, **opts):
1873 def applied(ui, repo, patch=None, **opts):
1873 """print the patches already applied
1874 """print the patches already applied
1874
1875
1875 Returns 0 on success."""
1876 Returns 0 on success."""
1876
1877
1877 q = repo.mq
1878 q = repo.mq
1878
1879
1879 if patch:
1880 if patch:
1880 if patch not in q.series:
1881 if patch not in q.series:
1881 raise util.Abort(_("patch %s is not in series file") % patch)
1882 raise util.Abort(_("patch %s is not in series file") % patch)
1882 end = q.series.index(patch) + 1
1883 end = q.series.index(patch) + 1
1883 else:
1884 else:
1884 end = q.seriesend(True)
1885 end = q.seriesend(True)
1885
1886
1886 if opts.get('last') and not end:
1887 if opts.get('last') and not end:
1887 ui.write(_("no patches applied\n"))
1888 ui.write(_("no patches applied\n"))
1888 return 1
1889 return 1
1889 elif opts.get('last') and end == 1:
1890 elif opts.get('last') and end == 1:
1890 ui.write(_("only one patch applied\n"))
1891 ui.write(_("only one patch applied\n"))
1891 return 1
1892 return 1
1892 elif opts.get('last'):
1893 elif opts.get('last'):
1893 start = end - 2
1894 start = end - 2
1894 end = 1
1895 end = 1
1895 else:
1896 else:
1896 start = 0
1897 start = 0
1897
1898
1898 q.qseries(repo, length=end, start=start, status='A',
1899 q.qseries(repo, length=end, start=start, status='A',
1899 summary=opts.get('summary'))
1900 summary=opts.get('summary'))
1900
1901
1901
1902
1902 @command("qunapplied",
1903 @command("qunapplied",
1903 [('1', 'first', None, _('show only the first patch'))] + seriesopts,
1904 [('1', 'first', None, _('show only the first patch'))] + seriesopts,
1904 _('hg qunapplied [-1] [-s] [PATCH]'))
1905 _('hg qunapplied [-1] [-s] [PATCH]'))
1905 def unapplied(ui, repo, patch=None, **opts):
1906 def unapplied(ui, repo, patch=None, **opts):
1906 """print the patches not yet applied
1907 """print the patches not yet applied
1907
1908
1908 Returns 0 on success."""
1909 Returns 0 on success."""
1909
1910
1910 q = repo.mq
1911 q = repo.mq
1911 if patch:
1912 if patch:
1912 if patch not in q.series:
1913 if patch not in q.series:
1913 raise util.Abort(_("patch %s is not in series file") % patch)
1914 raise util.Abort(_("patch %s is not in series file") % patch)
1914 start = q.series.index(patch) + 1
1915 start = q.series.index(patch) + 1
1915 else:
1916 else:
1916 start = q.seriesend(True)
1917 start = q.seriesend(True)
1917
1918
1918 if start == len(q.series) and opts.get('first'):
1919 if start == len(q.series) and opts.get('first'):
1919 ui.write(_("all patches applied\n"))
1920 ui.write(_("all patches applied\n"))
1920 return 1
1921 return 1
1921
1922
1922 length = opts.get('first') and 1 or None
1923 length = opts.get('first') and 1 or None
1923 q.qseries(repo, start=start, length=length, status='U',
1924 q.qseries(repo, start=start, length=length, status='U',
1924 summary=opts.get('summary'))
1925 summary=opts.get('summary'))
1925
1926
1926 @command("qimport",
1927 @command("qimport",
1927 [('e', 'existing', None, _('import file in patch directory')),
1928 [('e', 'existing', None, _('import file in patch directory')),
1928 ('n', 'name', '',
1929 ('n', 'name', '',
1929 _('name of patch file'), _('NAME')),
1930 _('name of patch file'), _('NAME')),
1930 ('f', 'force', None, _('overwrite existing files')),
1931 ('f', 'force', None, _('overwrite existing files')),
1931 ('r', 'rev', [],
1932 ('r', 'rev', [],
1932 _('place existing revisions under mq control'), _('REV')),
1933 _('place existing revisions under mq control'), _('REV')),
1933 ('g', 'git', None, _('use git extended diff format')),
1934 ('g', 'git', None, _('use git extended diff format')),
1934 ('P', 'push', None, _('qpush after importing'))],
1935 ('P', 'push', None, _('qpush after importing'))],
1935 _('hg qimport [-e] [-n NAME] [-f] [-g] [-P] [-r REV]... FILE...'))
1936 _('hg qimport [-e] [-n NAME] [-f] [-g] [-P] [-r REV]... FILE...'))
1936 def qimport(ui, repo, *filename, **opts):
1937 def qimport(ui, repo, *filename, **opts):
1937 """import a patch
1938 """import a patch
1938
1939
1939 The patch is inserted into the series after the last applied
1940 The patch is inserted into the series after the last applied
1940 patch. If no patches have been applied, qimport prepends the patch
1941 patch. If no patches have been applied, qimport prepends the patch
1941 to the series.
1942 to the series.
1942
1943
1943 The patch will have the same name as its source file unless you
1944 The patch will have the same name as its source file unless you
1944 give it a new one with -n/--name.
1945 give it a new one with -n/--name.
1945
1946
1946 You can register an existing patch inside the patch directory with
1947 You can register an existing patch inside the patch directory with
1947 the -e/--existing flag.
1948 the -e/--existing flag.
1948
1949
1949 With -f/--force, an existing patch of the same name will be
1950 With -f/--force, an existing patch of the same name will be
1950 overwritten.
1951 overwritten.
1951
1952
1952 An existing changeset may be placed under mq control with -r/--rev
1953 An existing changeset may be placed under mq control with -r/--rev
1953 (e.g. qimport --rev tip -n patch will place tip under mq control).
1954 (e.g. qimport --rev tip -n patch will place tip under mq control).
1954 With -g/--git, patches imported with --rev will use the git diff
1955 With -g/--git, patches imported with --rev will use the git diff
1955 format. See the diffs help topic for information on why this is
1956 format. See the diffs help topic for information on why this is
1956 important for preserving rename/copy information and permission
1957 important for preserving rename/copy information and permission
1957 changes. Use :hg:`qfinish` to remove changesets from mq control.
1958 changes. Use :hg:`qfinish` to remove changesets from mq control.
1958
1959
1959 To import a patch from standard input, pass - as the patch file.
1960 To import a patch from standard input, pass - as the patch file.
1960 When importing from standard input, a patch name must be specified
1961 When importing from standard input, a patch name must be specified
1961 using the --name flag.
1962 using the --name flag.
1962
1963
1963 To import an existing patch while renaming it::
1964 To import an existing patch while renaming it::
1964
1965
1965 hg qimport -e existing-patch -n new-name
1966 hg qimport -e existing-patch -n new-name
1966
1967
1967 Returns 0 if import succeeded.
1968 Returns 0 if import succeeded.
1968 """
1969 """
1969 q = repo.mq
1970 q = repo.mq
1970 try:
1971 try:
1971 q.qimport(repo, filename, patchname=opts.get('name'),
1972 q.qimport(repo, filename, patchname=opts.get('name'),
1972 existing=opts.get('existing'), force=opts.get('force'),
1973 existing=opts.get('existing'), force=opts.get('force'),
1973 rev=opts.get('rev'), git=opts.get('git'))
1974 rev=opts.get('rev'), git=opts.get('git'))
1974 finally:
1975 finally:
1975 q.savedirty()
1976 q.savedirty()
1976
1977
1977 if opts.get('push') and not opts.get('rev'):
1978 if opts.get('push') and not opts.get('rev'):
1978 return q.push(repo, None)
1979 return q.push(repo, None)
1979 return 0
1980 return 0
1980
1981
1981 def qinit(ui, repo, create):
1982 def qinit(ui, repo, create):
1982 """initialize a new queue repository
1983 """initialize a new queue repository
1983
1984
1984 This command also creates a series file for ordering patches, and
1985 This command also creates a series file for ordering patches, and
1985 an mq-specific .hgignore file in the queue repository, to exclude
1986 an mq-specific .hgignore file in the queue repository, to exclude
1986 the status and guards files (these contain mostly transient state).
1987 the status and guards files (these contain mostly transient state).
1987
1988
1988 Returns 0 if initialization succeeded."""
1989 Returns 0 if initialization succeeded."""
1989 q = repo.mq
1990 q = repo.mq
1990 r = q.init(repo, create)
1991 r = q.init(repo, create)
1991 q.savedirty()
1992 q.savedirty()
1992 if r:
1993 if r:
1993 if not os.path.exists(r.wjoin('.hgignore')):
1994 if not os.path.exists(r.wjoin('.hgignore')):
1994 fp = r.wopener('.hgignore', 'w')
1995 fp = r.wopener('.hgignore', 'w')
1995 fp.write('^\\.hg\n')
1996 fp.write('^\\.hg\n')
1996 fp.write('^\\.mq\n')
1997 fp.write('^\\.mq\n')
1997 fp.write('syntax: glob\n')
1998 fp.write('syntax: glob\n')
1998 fp.write('status\n')
1999 fp.write('status\n')
1999 fp.write('guards\n')
2000 fp.write('guards\n')
2000 fp.close()
2001 fp.close()
2001 if not os.path.exists(r.wjoin('series')):
2002 if not os.path.exists(r.wjoin('series')):
2002 r.wopener('series', 'w').close()
2003 r.wopener('series', 'w').close()
2003 r[None].add(['.hgignore', 'series'])
2004 r[None].add(['.hgignore', 'series'])
2004 commands.add(ui, r)
2005 commands.add(ui, r)
2005 return 0
2006 return 0
2006
2007
2007 @command("^qinit",
2008 @command("^qinit",
2008 [('c', 'create-repo', None, _('create queue repository'))],
2009 [('c', 'create-repo', None, _('create queue repository'))],
2009 _('hg qinit [-c]'))
2010 _('hg qinit [-c]'))
2010 def init(ui, repo, **opts):
2011 def init(ui, repo, **opts):
2011 """init a new queue repository (DEPRECATED)
2012 """init a new queue repository (DEPRECATED)
2012
2013
2013 The queue repository is unversioned by default. If
2014 The queue repository is unversioned by default. If
2014 -c/--create-repo is specified, qinit will create a separate nested
2015 -c/--create-repo is specified, qinit will create a separate nested
2015 repository for patches (qinit -c may also be run later to convert
2016 repository for patches (qinit -c may also be run later to convert
2016 an unversioned patch repository into a versioned one). You can use
2017 an unversioned patch repository into a versioned one). You can use
2017 qcommit to commit changes to this queue repository.
2018 qcommit to commit changes to this queue repository.
2018
2019
2019 This command is deprecated. Without -c, it's implied by other relevant
2020 This command is deprecated. Without -c, it's implied by other relevant
2020 commands. With -c, use :hg:`init --mq` instead."""
2021 commands. With -c, use :hg:`init --mq` instead."""
2021 return qinit(ui, repo, create=opts.get('create_repo'))
2022 return qinit(ui, repo, create=opts.get('create_repo'))
2022
2023
2023 @command("qclone",
2024 @command("qclone",
2024 [('', 'pull', None, _('use pull protocol to copy metadata')),
2025 [('', 'pull', None, _('use pull protocol to copy metadata')),
2025 ('U', 'noupdate', None, _('do not update the new working directories')),
2026 ('U', 'noupdate', None, _('do not update the new working directories')),
2026 ('', 'uncompressed', None,
2027 ('', 'uncompressed', None,
2027 _('use uncompressed transfer (fast over LAN)')),
2028 _('use uncompressed transfer (fast over LAN)')),
2028 ('p', 'patches', '',
2029 ('p', 'patches', '',
2029 _('location of source patch repository'), _('REPO')),
2030 _('location of source patch repository'), _('REPO')),
2030 ] + commands.remoteopts,
2031 ] + commands.remoteopts,
2031 _('hg qclone [OPTION]... SOURCE [DEST]'))
2032 _('hg qclone [OPTION]... SOURCE [DEST]'))
2032 def clone(ui, source, dest=None, **opts):
2033 def clone(ui, source, dest=None, **opts):
2033 '''clone main and patch repository at same time
2034 '''clone main and patch repository at same time
2034
2035
2035 If source is local, destination will have no patches applied. If
2036 If source is local, destination will have no patches applied. If
2036 source is remote, this command can not check if patches are
2037 source is remote, this command can not check if patches are
2037 applied in source, so cannot guarantee that patches are not
2038 applied in source, so cannot guarantee that patches are not
2038 applied in destination. If you clone remote repository, be sure
2039 applied in destination. If you clone remote repository, be sure
2039 before that it has no patches applied.
2040 before that it has no patches applied.
2040
2041
2041 Source patch repository is looked for in <src>/.hg/patches by
2042 Source patch repository is looked for in <src>/.hg/patches by
2042 default. Use -p <url> to change.
2043 default. Use -p <url> to change.
2043
2044
2044 The patch directory must be a nested Mercurial repository, as
2045 The patch directory must be a nested Mercurial repository, as
2045 would be created by :hg:`init --mq`.
2046 would be created by :hg:`init --mq`.
2046
2047
2047 Return 0 on success.
2048 Return 0 on success.
2048 '''
2049 '''
2049 def patchdir(repo):
2050 def patchdir(repo):
2050 url = repo.url()
2051 url = repo.url()
2051 if url.endswith('/'):
2052 if url.endswith('/'):
2052 url = url[:-1]
2053 url = url[:-1]
2053 return url + '/.hg/patches'
2054 return url + '/.hg/patches'
2054 if dest is None:
2055 if dest is None:
2055 dest = hg.defaultdest(source)
2056 dest = hg.defaultdest(source)
2056 sr = hg.repository(hg.remoteui(ui, opts), ui.expandpath(source))
2057 sr = hg.repository(hg.remoteui(ui, opts), ui.expandpath(source))
2057 if opts.get('patches'):
2058 if opts.get('patches'):
2058 patchespath = ui.expandpath(opts.get('patches'))
2059 patchespath = ui.expandpath(opts.get('patches'))
2059 else:
2060 else:
2060 patchespath = patchdir(sr)
2061 patchespath = patchdir(sr)
2061 try:
2062 try:
2062 hg.repository(ui, patchespath)
2063 hg.repository(ui, patchespath)
2063 except error.RepoError:
2064 except error.RepoError:
2064 raise util.Abort(_('versioned patch repository not found'
2065 raise util.Abort(_('versioned patch repository not found'
2065 ' (see init --mq)'))
2066 ' (see init --mq)'))
2066 qbase, destrev = None, None
2067 qbase, destrev = None, None
2067 if sr.local():
2068 if sr.local():
2068 if sr.mq.applied:
2069 if sr.mq.applied:
2069 qbase = sr.mq.applied[0].node
2070 qbase = sr.mq.applied[0].node
2070 if not hg.islocal(dest):
2071 if not hg.islocal(dest):
2071 heads = set(sr.heads())
2072 heads = set(sr.heads())
2072 destrev = list(heads.difference(sr.heads(qbase)))
2073 destrev = list(heads.difference(sr.heads(qbase)))
2073 destrev.append(sr.changelog.parents(qbase)[0])
2074 destrev.append(sr.changelog.parents(qbase)[0])
2074 elif sr.capable('lookup'):
2075 elif sr.capable('lookup'):
2075 try:
2076 try:
2076 qbase = sr.lookup('qbase')
2077 qbase = sr.lookup('qbase')
2077 except error.RepoError:
2078 except error.RepoError:
2078 pass
2079 pass
2079 ui.note(_('cloning main repository\n'))
2080 ui.note(_('cloning main repository\n'))
2080 sr, dr = hg.clone(ui, opts, sr.url(), dest,
2081 sr, dr = hg.clone(ui, opts, sr.url(), dest,
2081 pull=opts.get('pull'),
2082 pull=opts.get('pull'),
2082 rev=destrev,
2083 rev=destrev,
2083 update=False,
2084 update=False,
2084 stream=opts.get('uncompressed'))
2085 stream=opts.get('uncompressed'))
2085 ui.note(_('cloning patch repository\n'))
2086 ui.note(_('cloning patch repository\n'))
2086 hg.clone(ui, opts, opts.get('patches') or patchdir(sr), patchdir(dr),
2087 hg.clone(ui, opts, opts.get('patches') or patchdir(sr), patchdir(dr),
2087 pull=opts.get('pull'), update=not opts.get('noupdate'),
2088 pull=opts.get('pull'), update=not opts.get('noupdate'),
2088 stream=opts.get('uncompressed'))
2089 stream=opts.get('uncompressed'))
2089 if dr.local():
2090 if dr.local():
2090 if qbase:
2091 if qbase:
2091 ui.note(_('stripping applied patches from destination '
2092 ui.note(_('stripping applied patches from destination '
2092 'repository\n'))
2093 'repository\n'))
2093 dr.mq.strip(dr, [qbase], update=False, backup=None)
2094 dr.mq.strip(dr, [qbase], update=False, backup=None)
2094 if not opts.get('noupdate'):
2095 if not opts.get('noupdate'):
2095 ui.note(_('updating destination repository\n'))
2096 ui.note(_('updating destination repository\n'))
2096 hg.update(dr, dr.changelog.tip())
2097 hg.update(dr, dr.changelog.tip())
2097
2098
2098 @command("qcommit|qci",
2099 @command("qcommit|qci",
2099 commands.table["^commit|ci"][1],
2100 commands.table["^commit|ci"][1],
2100 _('hg qcommit [OPTION]... [FILE]...'))
2101 _('hg qcommit [OPTION]... [FILE]...'))
2101 def commit(ui, repo, *pats, **opts):
2102 def commit(ui, repo, *pats, **opts):
2102 """commit changes in the queue repository (DEPRECATED)
2103 """commit changes in the queue repository (DEPRECATED)
2103
2104
2104 This command is deprecated; use :hg:`commit --mq` instead."""
2105 This command is deprecated; use :hg:`commit --mq` instead."""
2105 q = repo.mq
2106 q = repo.mq
2106 r = q.qrepo()
2107 r = q.qrepo()
2107 if not r:
2108 if not r:
2108 raise util.Abort('no queue repository')
2109 raise util.Abort('no queue repository')
2109 commands.commit(r.ui, r, *pats, **opts)
2110 commands.commit(r.ui, r, *pats, **opts)
2110
2111
2111 @command("qseries",
2112 @command("qseries",
2112 [('m', 'missing', None, _('print patches not in series')),
2113 [('m', 'missing', None, _('print patches not in series')),
2113 ] + seriesopts,
2114 ] + seriesopts,
2114 _('hg qseries [-ms]'))
2115 _('hg qseries [-ms]'))
2115 def series(ui, repo, **opts):
2116 def series(ui, repo, **opts):
2116 """print the entire series file
2117 """print the entire series file
2117
2118
2118 Returns 0 on success."""
2119 Returns 0 on success."""
2119 repo.mq.qseries(repo, missing=opts.get('missing'), summary=opts.get('summary'))
2120 repo.mq.qseries(repo, missing=opts.get('missing'), summary=opts.get('summary'))
2120 return 0
2121 return 0
2121
2122
2122 @command("qtop", seriesopts, _('hg qtop [-s]'))
2123 @command("qtop", seriesopts, _('hg qtop [-s]'))
2123 def top(ui, repo, **opts):
2124 def top(ui, repo, **opts):
2124 """print the name of the current patch
2125 """print the name of the current patch
2125
2126
2126 Returns 0 on success."""
2127 Returns 0 on success."""
2127 q = repo.mq
2128 q = repo.mq
2128 t = q.applied and q.seriesend(True) or 0
2129 t = q.applied and q.seriesend(True) or 0
2129 if t:
2130 if t:
2130 q.qseries(repo, start=t - 1, length=1, status='A',
2131 q.qseries(repo, start=t - 1, length=1, status='A',
2131 summary=opts.get('summary'))
2132 summary=opts.get('summary'))
2132 else:
2133 else:
2133 ui.write(_("no patches applied\n"))
2134 ui.write(_("no patches applied\n"))
2134 return 1
2135 return 1
2135
2136
2136 @command("qnext", seriesopts, _('hg qnext [-s]'))
2137 @command("qnext", seriesopts, _('hg qnext [-s]'))
2137 def next(ui, repo, **opts):
2138 def next(ui, repo, **opts):
2138 """print the name of the next patch
2139 """print the name of the next patch
2139
2140
2140 Returns 0 on success."""
2141 Returns 0 on success."""
2141 q = repo.mq
2142 q = repo.mq
2142 end = q.seriesend()
2143 end = q.seriesend()
2143 if end == len(q.series):
2144 if end == len(q.series):
2144 ui.write(_("all patches applied\n"))
2145 ui.write(_("all patches applied\n"))
2145 return 1
2146 return 1
2146 q.qseries(repo, start=end, length=1, summary=opts.get('summary'))
2147 q.qseries(repo, start=end, length=1, summary=opts.get('summary'))
2147
2148
2148 @command("qprev", seriesopts, _('hg qprev [-s]'))
2149 @command("qprev", seriesopts, _('hg qprev [-s]'))
2149 def prev(ui, repo, **opts):
2150 def prev(ui, repo, **opts):
2150 """print the name of the previous patch
2151 """print the name of the previous patch
2151
2152
2152 Returns 0 on success."""
2153 Returns 0 on success."""
2153 q = repo.mq
2154 q = repo.mq
2154 l = len(q.applied)
2155 l = len(q.applied)
2155 if l == 1:
2156 if l == 1:
2156 ui.write(_("only one patch applied\n"))
2157 ui.write(_("only one patch applied\n"))
2157 return 1
2158 return 1
2158 if not l:
2159 if not l:
2159 ui.write(_("no patches applied\n"))
2160 ui.write(_("no patches applied\n"))
2160 return 1
2161 return 1
2161 q.qseries(repo, start=l - 2, length=1, status='A',
2162 q.qseries(repo, start=l - 2, length=1, status='A',
2162 summary=opts.get('summary'))
2163 summary=opts.get('summary'))
2163
2164
2164 def setupheaderopts(ui, opts):
2165 def setupheaderopts(ui, opts):
2165 if not opts.get('user') and opts.get('currentuser'):
2166 if not opts.get('user') and opts.get('currentuser'):
2166 opts['user'] = ui.username()
2167 opts['user'] = ui.username()
2167 if not opts.get('date') and opts.get('currentdate'):
2168 if not opts.get('date') and opts.get('currentdate'):
2168 opts['date'] = "%d %d" % util.makedate()
2169 opts['date'] = "%d %d" % util.makedate()
2169
2170
2170 @command("^qnew",
2171 @command("^qnew",
2171 [('e', 'edit', None, _('edit commit message')),
2172 [('e', 'edit', None, _('edit commit message')),
2172 ('f', 'force', None, _('import uncommitted changes (DEPRECATED)')),
2173 ('f', 'force', None, _('import uncommitted changes (DEPRECATED)')),
2173 ('g', 'git', None, _('use git extended diff format')),
2174 ('g', 'git', None, _('use git extended diff format')),
2174 ('U', 'currentuser', None, _('add "From: <current user>" to patch')),
2175 ('U', 'currentuser', None, _('add "From: <current user>" to patch')),
2175 ('u', 'user', '',
2176 ('u', 'user', '',
2176 _('add "From: <USER>" to patch'), _('USER')),
2177 _('add "From: <USER>" to patch'), _('USER')),
2177 ('D', 'currentdate', None, _('add "Date: <current date>" to patch')),
2178 ('D', 'currentdate', None, _('add "Date: <current date>" to patch')),
2178 ('d', 'date', '',
2179 ('d', 'date', '',
2179 _('add "Date: <DATE>" to patch'), _('DATE'))
2180 _('add "Date: <DATE>" to patch'), _('DATE'))
2180 ] + commands.walkopts + commands.commitopts,
2181 ] + commands.walkopts + commands.commitopts,
2181 _('hg qnew [-e] [-m TEXT] [-l FILE] PATCH [FILE]...'))
2182 _('hg qnew [-e] [-m TEXT] [-l FILE] PATCH [FILE]...'))
2182 def new(ui, repo, patch, *args, **opts):
2183 def new(ui, repo, patch, *args, **opts):
2183 """create a new patch
2184 """create a new patch
2184
2185
2185 qnew creates a new patch on top of the currently-applied patch (if
2186 qnew creates a new patch on top of the currently-applied patch (if
2186 any). The patch will be initialized with any outstanding changes
2187 any). The patch will be initialized with any outstanding changes
2187 in the working directory. You may also use -I/--include,
2188 in the working directory. You may also use -I/--include,
2188 -X/--exclude, and/or a list of files after the patch name to add
2189 -X/--exclude, and/or a list of files after the patch name to add
2189 only changes to matching files to the new patch, leaving the rest
2190 only changes to matching files to the new patch, leaving the rest
2190 as uncommitted modifications.
2191 as uncommitted modifications.
2191
2192
2192 -u/--user and -d/--date can be used to set the (given) user and
2193 -u/--user and -d/--date can be used to set the (given) user and
2193 date, respectively. -U/--currentuser and -D/--currentdate set user
2194 date, respectively. -U/--currentuser and -D/--currentdate set user
2194 to current user and date to current date.
2195 to current user and date to current date.
2195
2196
2196 -e/--edit, -m/--message or -l/--logfile set the patch header as
2197 -e/--edit, -m/--message or -l/--logfile set the patch header as
2197 well as the commit message. If none is specified, the header is
2198 well as the commit message. If none is specified, the header is
2198 empty and the commit message is '[mq]: PATCH'.
2199 empty and the commit message is '[mq]: PATCH'.
2199
2200
2200 Use the -g/--git option to keep the patch in the git extended diff
2201 Use the -g/--git option to keep the patch in the git extended diff
2201 format. Read the diffs help topic for more information on why this
2202 format. Read the diffs help topic for more information on why this
2202 is important for preserving permission changes and copy/rename
2203 is important for preserving permission changes and copy/rename
2203 information.
2204 information.
2204
2205
2205 Returns 0 on successful creation of a new patch.
2206 Returns 0 on successful creation of a new patch.
2206 """
2207 """
2207 msg = cmdutil.logmessage(ui, opts)
2208 msg = cmdutil.logmessage(ui, opts)
2208 def getmsg():
2209 def getmsg():
2209 return ui.edit(msg, opts.get('user') or ui.username())
2210 return ui.edit(msg, opts.get('user') or ui.username())
2210 q = repo.mq
2211 q = repo.mq
2211 opts['msg'] = msg
2212 opts['msg'] = msg
2212 if opts.get('edit'):
2213 if opts.get('edit'):
2213 opts['msg'] = getmsg
2214 opts['msg'] = getmsg
2214 else:
2215 else:
2215 opts['msg'] = msg
2216 opts['msg'] = msg
2216 setupheaderopts(ui, opts)
2217 setupheaderopts(ui, opts)
2217 q.new(repo, patch, *args, **opts)
2218 q.new(repo, patch, *args, **opts)
2218 q.savedirty()
2219 q.savedirty()
2219 return 0
2220 return 0
2220
2221
2221 @command("^qrefresh",
2222 @command("^qrefresh",
2222 [('e', 'edit', None, _('edit commit message')),
2223 [('e', 'edit', None, _('edit commit message')),
2223 ('g', 'git', None, _('use git extended diff format')),
2224 ('g', 'git', None, _('use git extended diff format')),
2224 ('s', 'short', None,
2225 ('s', 'short', None,
2225 _('refresh only files already in the patch and specified files')),
2226 _('refresh only files already in the patch and specified files')),
2226 ('U', 'currentuser', None,
2227 ('U', 'currentuser', None,
2227 _('add/update author field in patch with current user')),
2228 _('add/update author field in patch with current user')),
2228 ('u', 'user', '',
2229 ('u', 'user', '',
2229 _('add/update author field in patch with given user'), _('USER')),
2230 _('add/update author field in patch with given user'), _('USER')),
2230 ('D', 'currentdate', None,
2231 ('D', 'currentdate', None,
2231 _('add/update date field in patch with current date')),
2232 _('add/update date field in patch with current date')),
2232 ('d', 'date', '',
2233 ('d', 'date', '',
2233 _('add/update date field in patch with given date'), _('DATE'))
2234 _('add/update date field in patch with given date'), _('DATE'))
2234 ] + commands.walkopts + commands.commitopts,
2235 ] + commands.walkopts + commands.commitopts,
2235 _('hg qrefresh [-I] [-X] [-e] [-m TEXT] [-l FILE] [-s] [FILE]...'))
2236 _('hg qrefresh [-I] [-X] [-e] [-m TEXT] [-l FILE] [-s] [FILE]...'))
2236 def refresh(ui, repo, *pats, **opts):
2237 def refresh(ui, repo, *pats, **opts):
2237 """update the current patch
2238 """update the current patch
2238
2239
2239 If any file patterns are provided, the refreshed patch will
2240 If any file patterns are provided, the refreshed patch will
2240 contain only the modifications that match those patterns; the
2241 contain only the modifications that match those patterns; the
2241 remaining modifications will remain in the working directory.
2242 remaining modifications will remain in the working directory.
2242
2243
2243 If -s/--short is specified, files currently included in the patch
2244 If -s/--short is specified, files currently included in the patch
2244 will be refreshed just like matched files and remain in the patch.
2245 will be refreshed just like matched files and remain in the patch.
2245
2246
2246 If -e/--edit is specified, Mercurial will start your configured editor for
2247 If -e/--edit is specified, Mercurial will start your configured editor for
2247 you to enter a message. In case qrefresh fails, you will find a backup of
2248 you to enter a message. In case qrefresh fails, you will find a backup of
2248 your message in ``.hg/last-message.txt``.
2249 your message in ``.hg/last-message.txt``.
2249
2250
2250 hg add/remove/copy/rename work as usual, though you might want to
2251 hg add/remove/copy/rename work as usual, though you might want to
2251 use git-style patches (-g/--git or [diff] git=1) to track copies
2252 use git-style patches (-g/--git or [diff] git=1) to track copies
2252 and renames. See the diffs help topic for more information on the
2253 and renames. See the diffs help topic for more information on the
2253 git diff format.
2254 git diff format.
2254
2255
2255 Returns 0 on success.
2256 Returns 0 on success.
2256 """
2257 """
2257 q = repo.mq
2258 q = repo.mq
2258 message = cmdutil.logmessage(ui, opts)
2259 message = cmdutil.logmessage(ui, opts)
2259 if opts.get('edit'):
2260 if opts.get('edit'):
2260 if not q.applied:
2261 if not q.applied:
2261 ui.write(_("no patches applied\n"))
2262 ui.write(_("no patches applied\n"))
2262 return 1
2263 return 1
2263 if message:
2264 if message:
2264 raise util.Abort(_('option "-e" incompatible with "-m" or "-l"'))
2265 raise util.Abort(_('option "-e" incompatible with "-m" or "-l"'))
2265 patch = q.applied[-1].name
2266 patch = q.applied[-1].name
2266 ph = patchheader(q.join(patch), q.plainmode)
2267 ph = patchheader(q.join(patch), q.plainmode)
2267 message = ui.edit('\n'.join(ph.message), ph.user or ui.username())
2268 message = ui.edit('\n'.join(ph.message), ph.user or ui.username())
2268 # We don't want to lose the patch message if qrefresh fails (issue2062)
2269 # We don't want to lose the patch message if qrefresh fails (issue2062)
2269 repo.savecommitmessage(message)
2270 repo.savecommitmessage(message)
2270 setupheaderopts(ui, opts)
2271 setupheaderopts(ui, opts)
2271 wlock = repo.wlock()
2272 wlock = repo.wlock()
2272 try:
2273 try:
2273 ret = q.refresh(repo, pats, msg=message, **opts)
2274 ret = q.refresh(repo, pats, msg=message, **opts)
2274 q.savedirty()
2275 q.savedirty()
2275 return ret
2276 return ret
2276 finally:
2277 finally:
2277 wlock.release()
2278 wlock.release()
2278
2279
2279 @command("^qdiff",
2280 @command("^qdiff",
2280 commands.diffopts + commands.diffopts2 + commands.walkopts,
2281 commands.diffopts + commands.diffopts2 + commands.walkopts,
2281 _('hg qdiff [OPTION]... [FILE]...'))
2282 _('hg qdiff [OPTION]... [FILE]...'))
2282 def diff(ui, repo, *pats, **opts):
2283 def diff(ui, repo, *pats, **opts):
2283 """diff of the current patch and subsequent modifications
2284 """diff of the current patch and subsequent modifications
2284
2285
2285 Shows a diff which includes the current patch as well as any
2286 Shows a diff which includes the current patch as well as any
2286 changes which have been made in the working directory since the
2287 changes which have been made in the working directory since the
2287 last refresh (thus showing what the current patch would become
2288 last refresh (thus showing what the current patch would become
2288 after a qrefresh).
2289 after a qrefresh).
2289
2290
2290 Use :hg:`diff` if you only want to see the changes made since the
2291 Use :hg:`diff` if you only want to see the changes made since the
2291 last qrefresh, or :hg:`export qtip` if you want to see changes
2292 last qrefresh, or :hg:`export qtip` if you want to see changes
2292 made by the current patch without including changes made since the
2293 made by the current patch without including changes made since the
2293 qrefresh.
2294 qrefresh.
2294
2295
2295 Returns 0 on success.
2296 Returns 0 on success.
2296 """
2297 """
2297 repo.mq.diff(repo, pats, opts)
2298 repo.mq.diff(repo, pats, opts)
2298 return 0
2299 return 0
2299
2300
2300 @command('qfold',
2301 @command('qfold',
2301 [('e', 'edit', None, _('edit patch header')),
2302 [('e', 'edit', None, _('edit patch header')),
2302 ('k', 'keep', None, _('keep folded patch files')),
2303 ('k', 'keep', None, _('keep folded patch files')),
2303 ] + commands.commitopts,
2304 ] + commands.commitopts,
2304 _('hg qfold [-e] [-k] [-m TEXT] [-l FILE] PATCH...'))
2305 _('hg qfold [-e] [-k] [-m TEXT] [-l FILE] PATCH...'))
2305 def fold(ui, repo, *files, **opts):
2306 def fold(ui, repo, *files, **opts):
2306 """fold the named patches into the current patch
2307 """fold the named patches into the current patch
2307
2308
2308 Patches must not yet be applied. Each patch will be successively
2309 Patches must not yet be applied. Each patch will be successively
2309 applied to the current patch in the order given. If all the
2310 applied to the current patch in the order given. If all the
2310 patches apply successfully, the current patch will be refreshed
2311 patches apply successfully, the current patch will be refreshed
2311 with the new cumulative patch, and the folded patches will be
2312 with the new cumulative patch, and the folded patches will be
2312 deleted. With -k/--keep, the folded patch files will not be
2313 deleted. With -k/--keep, the folded patch files will not be
2313 removed afterwards.
2314 removed afterwards.
2314
2315
2315 The header for each folded patch will be concatenated with the
2316 The header for each folded patch will be concatenated with the
2316 current patch header, separated by a line of ``* * *``.
2317 current patch header, separated by a line of ``* * *``.
2317
2318
2318 Returns 0 on success."""
2319 Returns 0 on success."""
2319 q = repo.mq
2320 q = repo.mq
2320 if not files:
2321 if not files:
2321 raise util.Abort(_('qfold requires at least one patch name'))
2322 raise util.Abort(_('qfold requires at least one patch name'))
2322 if not q.checktoppatch(repo)[0]:
2323 if not q.checktoppatch(repo)[0]:
2323 raise util.Abort(_('no patches applied'))
2324 raise util.Abort(_('no patches applied'))
2324 q.checklocalchanges(repo)
2325 q.checklocalchanges(repo)
2325
2326
2326 message = cmdutil.logmessage(ui, opts)
2327 message = cmdutil.logmessage(ui, opts)
2327 if opts.get('edit'):
2328 if opts.get('edit'):
2328 if message:
2329 if message:
2329 raise util.Abort(_('option "-e" incompatible with "-m" or "-l"'))
2330 raise util.Abort(_('option "-e" incompatible with "-m" or "-l"'))
2330
2331
2331 parent = q.lookup('qtip')
2332 parent = q.lookup('qtip')
2332 patches = []
2333 patches = []
2333 messages = []
2334 messages = []
2334 for f in files:
2335 for f in files:
2335 p = q.lookup(f)
2336 p = q.lookup(f)
2336 if p in patches or p == parent:
2337 if p in patches or p == parent:
2337 ui.warn(_('Skipping already folded patch %s\n') % p)
2338 ui.warn(_('Skipping already folded patch %s\n') % p)
2338 if q.isapplied(p):
2339 if q.isapplied(p):
2339 raise util.Abort(_('qfold cannot fold already applied patch %s') % p)
2340 raise util.Abort(_('qfold cannot fold already applied patch %s') % p)
2340 patches.append(p)
2341 patches.append(p)
2341
2342
2342 for p in patches:
2343 for p in patches:
2343 if not message:
2344 if not message:
2344 ph = patchheader(q.join(p), q.plainmode)
2345 ph = patchheader(q.join(p), q.plainmode)
2345 if ph.message:
2346 if ph.message:
2346 messages.append(ph.message)
2347 messages.append(ph.message)
2347 pf = q.join(p)
2348 pf = q.join(p)
2348 (patchsuccess, files, fuzz) = q.patch(repo, pf)
2349 (patchsuccess, files, fuzz) = q.patch(repo, pf)
2349 if not patchsuccess:
2350 if not patchsuccess:
2350 raise util.Abort(_('error folding patch %s') % p)
2351 raise util.Abort(_('error folding patch %s') % p)
2351
2352
2352 if not message:
2353 if not message:
2353 ph = patchheader(q.join(parent), q.plainmode)
2354 ph = patchheader(q.join(parent), q.plainmode)
2354 message, user = ph.message, ph.user
2355 message, user = ph.message, ph.user
2355 for msg in messages:
2356 for msg in messages:
2356 message.append('* * *')
2357 message.append('* * *')
2357 message.extend(msg)
2358 message.extend(msg)
2358 message = '\n'.join(message)
2359 message = '\n'.join(message)
2359
2360
2360 if opts.get('edit'):
2361 if opts.get('edit'):
2361 message = ui.edit(message, user or ui.username())
2362 message = ui.edit(message, user or ui.username())
2362
2363
2363 diffopts = q.patchopts(q.diffopts(), *patches)
2364 diffopts = q.patchopts(q.diffopts(), *patches)
2364 wlock = repo.wlock()
2365 wlock = repo.wlock()
2365 try:
2366 try:
2366 q.refresh(repo, msg=message, git=diffopts.git)
2367 q.refresh(repo, msg=message, git=diffopts.git)
2367 q.delete(repo, patches, opts)
2368 q.delete(repo, patches, opts)
2368 q.savedirty()
2369 q.savedirty()
2369 finally:
2370 finally:
2370 wlock.release()
2371 wlock.release()
2371
2372
2372 @command("qgoto",
2373 @command("qgoto",
2373 [('f', 'force', None, _('overwrite any local changes'))],
2374 [('f', 'force', None, _('overwrite any local changes'))],
2374 _('hg qgoto [OPTION]... PATCH'))
2375 _('hg qgoto [OPTION]... PATCH'))
2375 def goto(ui, repo, patch, **opts):
2376 def goto(ui, repo, patch, **opts):
2376 '''push or pop patches until named patch is at top of stack
2377 '''push or pop patches until named patch is at top of stack
2377
2378
2378 Returns 0 on success.'''
2379 Returns 0 on success.'''
2379 q = repo.mq
2380 q = repo.mq
2380 patch = q.lookup(patch)
2381 patch = q.lookup(patch)
2381 if q.isapplied(patch):
2382 if q.isapplied(patch):
2382 ret = q.pop(repo, patch, force=opts.get('force'))
2383 ret = q.pop(repo, patch, force=opts.get('force'))
2383 else:
2384 else:
2384 ret = q.push(repo, patch, force=opts.get('force'))
2385 ret = q.push(repo, patch, force=opts.get('force'))
2385 q.savedirty()
2386 q.savedirty()
2386 return ret
2387 return ret
2387
2388
2388 @command("qguard",
2389 @command("qguard",
2389 [('l', 'list', None, _('list all patches and guards')),
2390 [('l', 'list', None, _('list all patches and guards')),
2390 ('n', 'none', None, _('drop all guards'))],
2391 ('n', 'none', None, _('drop all guards'))],
2391 _('hg qguard [-l] [-n] [PATCH] [-- [+GUARD]... [-GUARD]...]'))
2392 _('hg qguard [-l] [-n] [PATCH] [-- [+GUARD]... [-GUARD]...]'))
2392 def guard(ui, repo, *args, **opts):
2393 def guard(ui, repo, *args, **opts):
2393 '''set or print guards for a patch
2394 '''set or print guards for a patch
2394
2395
2395 Guards control whether a patch can be pushed. A patch with no
2396 Guards control whether a patch can be pushed. A patch with no
2396 guards is always pushed. A patch with a positive guard ("+foo") is
2397 guards is always pushed. A patch with a positive guard ("+foo") is
2397 pushed only if the :hg:`qselect` command has activated it. A patch with
2398 pushed only if the :hg:`qselect` command has activated it. A patch with
2398 a negative guard ("-foo") is never pushed if the :hg:`qselect` command
2399 a negative guard ("-foo") is never pushed if the :hg:`qselect` command
2399 has activated it.
2400 has activated it.
2400
2401
2401 With no arguments, print the currently active guards.
2402 With no arguments, print the currently active guards.
2402 With arguments, set guards for the named patch.
2403 With arguments, set guards for the named patch.
2403
2404
2404 .. note::
2405 .. note::
2405 Specifying negative guards now requires '--'.
2406 Specifying negative guards now requires '--'.
2406
2407
2407 To set guards on another patch::
2408 To set guards on another patch::
2408
2409
2409 hg qguard other.patch -- +2.6.17 -stable
2410 hg qguard other.patch -- +2.6.17 -stable
2410
2411
2411 Returns 0 on success.
2412 Returns 0 on success.
2412 '''
2413 '''
2413 def status(idx):
2414 def status(idx):
2414 guards = q.seriesguards[idx] or ['unguarded']
2415 guards = q.seriesguards[idx] or ['unguarded']
2415 if q.series[idx] in applied:
2416 if q.series[idx] in applied:
2416 state = 'applied'
2417 state = 'applied'
2417 elif q.pushable(idx)[0]:
2418 elif q.pushable(idx)[0]:
2418 state = 'unapplied'
2419 state = 'unapplied'
2419 else:
2420 else:
2420 state = 'guarded'
2421 state = 'guarded'
2421 label = 'qguard.patch qguard.%s qseries.%s' % (state, state)
2422 label = 'qguard.patch qguard.%s qseries.%s' % (state, state)
2422 ui.write('%s: ' % ui.label(q.series[idx], label))
2423 ui.write('%s: ' % ui.label(q.series[idx], label))
2423
2424
2424 for i, guard in enumerate(guards):
2425 for i, guard in enumerate(guards):
2425 if guard.startswith('+'):
2426 if guard.startswith('+'):
2426 ui.write(guard, label='qguard.positive')
2427 ui.write(guard, label='qguard.positive')
2427 elif guard.startswith('-'):
2428 elif guard.startswith('-'):
2428 ui.write(guard, label='qguard.negative')
2429 ui.write(guard, label='qguard.negative')
2429 else:
2430 else:
2430 ui.write(guard, label='qguard.unguarded')
2431 ui.write(guard, label='qguard.unguarded')
2431 if i != len(guards) - 1:
2432 if i != len(guards) - 1:
2432 ui.write(' ')
2433 ui.write(' ')
2433 ui.write('\n')
2434 ui.write('\n')
2434 q = repo.mq
2435 q = repo.mq
2435 applied = set(p.name for p in q.applied)
2436 applied = set(p.name for p in q.applied)
2436 patch = None
2437 patch = None
2437 args = list(args)
2438 args = list(args)
2438 if opts.get('list'):
2439 if opts.get('list'):
2439 if args or opts.get('none'):
2440 if args or opts.get('none'):
2440 raise util.Abort(_('cannot mix -l/--list with options or arguments'))
2441 raise util.Abort(_('cannot mix -l/--list with options or arguments'))
2441 for i in xrange(len(q.series)):
2442 for i in xrange(len(q.series)):
2442 status(i)
2443 status(i)
2443 return
2444 return
2444 if not args or args[0][0:1] in '-+':
2445 if not args or args[0][0:1] in '-+':
2445 if not q.applied:
2446 if not q.applied:
2446 raise util.Abort(_('no patches applied'))
2447 raise util.Abort(_('no patches applied'))
2447 patch = q.applied[-1].name
2448 patch = q.applied[-1].name
2448 if patch is None and args[0][0:1] not in '-+':
2449 if patch is None and args[0][0:1] not in '-+':
2449 patch = args.pop(0)
2450 patch = args.pop(0)
2450 if patch is None:
2451 if patch is None:
2451 raise util.Abort(_('no patch to work with'))
2452 raise util.Abort(_('no patch to work with'))
2452 if args or opts.get('none'):
2453 if args or opts.get('none'):
2453 idx = q.findseries(patch)
2454 idx = q.findseries(patch)
2454 if idx is None:
2455 if idx is None:
2455 raise util.Abort(_('no patch named %s') % patch)
2456 raise util.Abort(_('no patch named %s') % patch)
2456 q.setguards(idx, args)
2457 q.setguards(idx, args)
2457 q.savedirty()
2458 q.savedirty()
2458 else:
2459 else:
2459 status(q.series.index(q.lookup(patch)))
2460 status(q.series.index(q.lookup(patch)))
2460
2461
2461 @command("qheader", [], _('hg qheader [PATCH]'))
2462 @command("qheader", [], _('hg qheader [PATCH]'))
2462 def header(ui, repo, patch=None):
2463 def header(ui, repo, patch=None):
2463 """print the header of the topmost or specified patch
2464 """print the header of the topmost or specified patch
2464
2465
2465 Returns 0 on success."""
2466 Returns 0 on success."""
2466 q = repo.mq
2467 q = repo.mq
2467
2468
2468 if patch:
2469 if patch:
2469 patch = q.lookup(patch)
2470 patch = q.lookup(patch)
2470 else:
2471 else:
2471 if not q.applied:
2472 if not q.applied:
2472 ui.write(_('no patches applied\n'))
2473 ui.write(_('no patches applied\n'))
2473 return 1
2474 return 1
2474 patch = q.lookup('qtip')
2475 patch = q.lookup('qtip')
2475 ph = patchheader(q.join(patch), q.plainmode)
2476 ph = patchheader(q.join(patch), q.plainmode)
2476
2477
2477 ui.write('\n'.join(ph.message) + '\n')
2478 ui.write('\n'.join(ph.message) + '\n')
2478
2479
2479 def lastsavename(path):
2480 def lastsavename(path):
2480 (directory, base) = os.path.split(path)
2481 (directory, base) = os.path.split(path)
2481 names = os.listdir(directory)
2482 names = os.listdir(directory)
2482 namere = re.compile("%s.([0-9]+)" % base)
2483 namere = re.compile("%s.([0-9]+)" % base)
2483 maxindex = None
2484 maxindex = None
2484 maxname = None
2485 maxname = None
2485 for f in names:
2486 for f in names:
2486 m = namere.match(f)
2487 m = namere.match(f)
2487 if m:
2488 if m:
2488 index = int(m.group(1))
2489 index = int(m.group(1))
2489 if maxindex is None or index > maxindex:
2490 if maxindex is None or index > maxindex:
2490 maxindex = index
2491 maxindex = index
2491 maxname = f
2492 maxname = f
2492 if maxname:
2493 if maxname:
2493 return (os.path.join(directory, maxname), maxindex)
2494 return (os.path.join(directory, maxname), maxindex)
2494 return (None, None)
2495 return (None, None)
2495
2496
2496 def savename(path):
2497 def savename(path):
2497 (last, index) = lastsavename(path)
2498 (last, index) = lastsavename(path)
2498 if last is None:
2499 if last is None:
2499 index = 0
2500 index = 0
2500 newpath = path + ".%d" % (index + 1)
2501 newpath = path + ".%d" % (index + 1)
2501 return newpath
2502 return newpath
2502
2503
2503 @command("^qpush",
2504 @command("^qpush",
2504 [('f', 'force', None, _('apply on top of local changes')),
2505 [('f', 'force', None, _('apply on top of local changes')),
2505 ('e', 'exact', None, _('apply the target patch to its recorded parent')),
2506 ('e', 'exact', None, _('apply the target patch to its recorded parent')),
2506 ('l', 'list', None, _('list patch name in commit text')),
2507 ('l', 'list', None, _('list patch name in commit text')),
2507 ('a', 'all', None, _('apply all patches')),
2508 ('a', 'all', None, _('apply all patches')),
2508 ('m', 'merge', None, _('merge from another queue (DEPRECATED)')),
2509 ('m', 'merge', None, _('merge from another queue (DEPRECATED)')),
2509 ('n', 'name', '',
2510 ('n', 'name', '',
2510 _('merge queue name (DEPRECATED)'), _('NAME')),
2511 _('merge queue name (DEPRECATED)'), _('NAME')),
2511 ('', 'move', None, _('reorder patch series and apply only the patch'))],
2512 ('', 'move', None, _('reorder patch series and apply only the patch'))],
2512 _('hg qpush [-f] [-l] [-a] [--move] [PATCH | INDEX]'))
2513 _('hg qpush [-f] [-l] [-a] [--move] [PATCH | INDEX]'))
2513 def push(ui, repo, patch=None, **opts):
2514 def push(ui, repo, patch=None, **opts):
2514 """push the next patch onto the stack
2515 """push the next patch onto the stack
2515
2516
2516 When -f/--force is applied, all local changes in patched files
2517 When -f/--force is applied, all local changes in patched files
2517 will be lost.
2518 will be lost.
2518
2519
2519 Return 0 on success.
2520 Return 0 on success.
2520 """
2521 """
2521 q = repo.mq
2522 q = repo.mq
2522 mergeq = None
2523 mergeq = None
2523
2524
2524 if opts.get('merge'):
2525 if opts.get('merge'):
2525 if opts.get('name'):
2526 if opts.get('name'):
2526 newpath = repo.join(opts.get('name'))
2527 newpath = repo.join(opts.get('name'))
2527 else:
2528 else:
2528 newpath, i = lastsavename(q.path)
2529 newpath, i = lastsavename(q.path)
2529 if not newpath:
2530 if not newpath:
2530 ui.warn(_("no saved queues found, please use -n\n"))
2531 ui.warn(_("no saved queues found, please use -n\n"))
2531 return 1
2532 return 1
2532 mergeq = queue(ui, repo.path, newpath)
2533 mergeq = queue(ui, repo.path, newpath)
2533 ui.warn(_("merging with queue at: %s\n") % mergeq.path)
2534 ui.warn(_("merging with queue at: %s\n") % mergeq.path)
2534 ret = q.push(repo, patch, force=opts.get('force'), list=opts.get('list'),
2535 ret = q.push(repo, patch, force=opts.get('force'), list=opts.get('list'),
2535 mergeq=mergeq, all=opts.get('all'), move=opts.get('move'),
2536 mergeq=mergeq, all=opts.get('all'), move=opts.get('move'),
2536 exact=opts.get('exact'))
2537 exact=opts.get('exact'))
2537 return ret
2538 return ret
2538
2539
2539 @command("^qpop",
2540 @command("^qpop",
2540 [('a', 'all', None, _('pop all patches')),
2541 [('a', 'all', None, _('pop all patches')),
2541 ('n', 'name', '',
2542 ('n', 'name', '',
2542 _('queue name to pop (DEPRECATED)'), _('NAME')),
2543 _('queue name to pop (DEPRECATED)'), _('NAME')),
2543 ('f', 'force', None, _('forget any local changes to patched files'))],
2544 ('f', 'force', None, _('forget any local changes to patched files'))],
2544 _('hg qpop [-a] [-f] [PATCH | INDEX]'))
2545 _('hg qpop [-a] [-f] [PATCH | INDEX]'))
2545 def pop(ui, repo, patch=None, **opts):
2546 def pop(ui, repo, patch=None, **opts):
2546 """pop the current patch off the stack
2547 """pop the current patch off the stack
2547
2548
2548 By default, pops off the top of the patch stack. If given a patch
2549 By default, pops off the top of the patch stack. If given a patch
2549 name, keeps popping off patches until the named patch is at the
2550 name, keeps popping off patches until the named patch is at the
2550 top of the stack.
2551 top of the stack.
2551
2552
2552 Return 0 on success.
2553 Return 0 on success.
2553 """
2554 """
2554 localupdate = True
2555 localupdate = True
2555 if opts.get('name'):
2556 if opts.get('name'):
2556 q = queue(ui, repo.path, repo.join(opts.get('name')))
2557 q = queue(ui, repo.path, repo.join(opts.get('name')))
2557 ui.warn(_('using patch queue: %s\n') % q.path)
2558 ui.warn(_('using patch queue: %s\n') % q.path)
2558 localupdate = False
2559 localupdate = False
2559 else:
2560 else:
2560 q = repo.mq
2561 q = repo.mq
2561 ret = q.pop(repo, patch, force=opts.get('force'), update=localupdate,
2562 ret = q.pop(repo, patch, force=opts.get('force'), update=localupdate,
2562 all=opts.get('all'))
2563 all=opts.get('all'))
2563 q.savedirty()
2564 q.savedirty()
2564 return ret
2565 return ret
2565
2566
2566 @command("qrename|qmv", [], _('hg qrename PATCH1 [PATCH2]'))
2567 @command("qrename|qmv", [], _('hg qrename PATCH1 [PATCH2]'))
2567 def rename(ui, repo, patch, name=None, **opts):
2568 def rename(ui, repo, patch, name=None, **opts):
2568 """rename a patch
2569 """rename a patch
2569
2570
2570 With one argument, renames the current patch to PATCH1.
2571 With one argument, renames the current patch to PATCH1.
2571 With two arguments, renames PATCH1 to PATCH2.
2572 With two arguments, renames PATCH1 to PATCH2.
2572
2573
2573 Returns 0 on success."""
2574 Returns 0 on success."""
2574 q = repo.mq
2575 q = repo.mq
2575 if not name:
2576 if not name:
2576 name = patch
2577 name = patch
2577 patch = None
2578 patch = None
2578
2579
2579 if patch:
2580 if patch:
2580 patch = q.lookup(patch)
2581 patch = q.lookup(patch)
2581 else:
2582 else:
2582 if not q.applied:
2583 if not q.applied:
2583 ui.write(_('no patches applied\n'))
2584 ui.write(_('no patches applied\n'))
2584 return
2585 return
2585 patch = q.lookup('qtip')
2586 patch = q.lookup('qtip')
2586 absdest = q.join(name)
2587 absdest = q.join(name)
2587 if os.path.isdir(absdest):
2588 if os.path.isdir(absdest):
2588 name = normname(os.path.join(name, os.path.basename(patch)))
2589 name = normname(os.path.join(name, os.path.basename(patch)))
2589 absdest = q.join(name)
2590 absdest = q.join(name)
2590 q.checkpatchname(name)
2591 q.checkpatchname(name)
2591
2592
2592 ui.note(_('renaming %s to %s\n') % (patch, name))
2593 ui.note(_('renaming %s to %s\n') % (patch, name))
2593 i = q.findseries(patch)
2594 i = q.findseries(patch)
2594 guards = q.guard_re.findall(q.fullseries[i])
2595 guards = q.guard_re.findall(q.fullseries[i])
2595 q.fullseries[i] = name + ''.join([' #' + g for g in guards])
2596 q.fullseries[i] = name + ''.join([' #' + g for g in guards])
2596 q.parseseries()
2597 q.parseseries()
2597 q.seriesdirty = True
2598 q.seriesdirty = True
2598
2599
2599 info = q.isapplied(patch)
2600 info = q.isapplied(patch)
2600 if info:
2601 if info:
2601 q.applied[info[0]] = statusentry(info[1], name)
2602 q.applied[info[0]] = statusentry(info[1], name)
2602 q.applieddirty = True
2603 q.applieddirty = True
2603
2604
2604 destdir = os.path.dirname(absdest)
2605 destdir = os.path.dirname(absdest)
2605 if not os.path.isdir(destdir):
2606 if not os.path.isdir(destdir):
2606 os.makedirs(destdir)
2607 os.makedirs(destdir)
2607 util.rename(q.join(patch), absdest)
2608 util.rename(q.join(patch), absdest)
2608 r = q.qrepo()
2609 r = q.qrepo()
2609 if r and patch in r.dirstate:
2610 if r and patch in r.dirstate:
2610 wctx = r[None]
2611 wctx = r[None]
2611 wlock = r.wlock()
2612 wlock = r.wlock()
2612 try:
2613 try:
2613 if r.dirstate[patch] == 'a':
2614 if r.dirstate[patch] == 'a':
2614 r.dirstate.drop(patch)
2615 r.dirstate.drop(patch)
2615 r.dirstate.add(name)
2616 r.dirstate.add(name)
2616 else:
2617 else:
2617 wctx.copy(patch, name)
2618 wctx.copy(patch, name)
2618 wctx.forget([patch])
2619 wctx.forget([patch])
2619 finally:
2620 finally:
2620 wlock.release()
2621 wlock.release()
2621
2622
2622 q.savedirty()
2623 q.savedirty()
2623
2624
2624 @command("qrestore",
2625 @command("qrestore",
2625 [('d', 'delete', None, _('delete save entry')),
2626 [('d', 'delete', None, _('delete save entry')),
2626 ('u', 'update', None, _('update queue working directory'))],
2627 ('u', 'update', None, _('update queue working directory'))],
2627 _('hg qrestore [-d] [-u] REV'))
2628 _('hg qrestore [-d] [-u] REV'))
2628 def restore(ui, repo, rev, **opts):
2629 def restore(ui, repo, rev, **opts):
2629 """restore the queue state saved by a revision (DEPRECATED)
2630 """restore the queue state saved by a revision (DEPRECATED)
2630
2631
2631 This command is deprecated, use :hg:`rebase` instead."""
2632 This command is deprecated, use :hg:`rebase` instead."""
2632 rev = repo.lookup(rev)
2633 rev = repo.lookup(rev)
2633 q = repo.mq
2634 q = repo.mq
2634 q.restore(repo, rev, delete=opts.get('delete'),
2635 q.restore(repo, rev, delete=opts.get('delete'),
2635 qupdate=opts.get('update'))
2636 qupdate=opts.get('update'))
2636 q.savedirty()
2637 q.savedirty()
2637 return 0
2638 return 0
2638
2639
2639 @command("qsave",
2640 @command("qsave",
2640 [('c', 'copy', None, _('copy patch directory')),
2641 [('c', 'copy', None, _('copy patch directory')),
2641 ('n', 'name', '',
2642 ('n', 'name', '',
2642 _('copy directory name'), _('NAME')),
2643 _('copy directory name'), _('NAME')),
2643 ('e', 'empty', None, _('clear queue status file')),
2644 ('e', 'empty', None, _('clear queue status file')),
2644 ('f', 'force', None, _('force copy'))] + commands.commitopts,
2645 ('f', 'force', None, _('force copy'))] + commands.commitopts,
2645 _('hg qsave [-m TEXT] [-l FILE] [-c] [-n NAME] [-e] [-f]'))
2646 _('hg qsave [-m TEXT] [-l FILE] [-c] [-n NAME] [-e] [-f]'))
2646 def save(ui, repo, **opts):
2647 def save(ui, repo, **opts):
2647 """save current queue state (DEPRECATED)
2648 """save current queue state (DEPRECATED)
2648
2649
2649 This command is deprecated, use :hg:`rebase` instead."""
2650 This command is deprecated, use :hg:`rebase` instead."""
2650 q = repo.mq
2651 q = repo.mq
2651 message = cmdutil.logmessage(ui, opts)
2652 message = cmdutil.logmessage(ui, opts)
2652 ret = q.save(repo, msg=message)
2653 ret = q.save(repo, msg=message)
2653 if ret:
2654 if ret:
2654 return ret
2655 return ret
2655 q.savedirty() # save to .hg/patches before copying
2656 q.savedirty() # save to .hg/patches before copying
2656 if opts.get('copy'):
2657 if opts.get('copy'):
2657 path = q.path
2658 path = q.path
2658 if opts.get('name'):
2659 if opts.get('name'):
2659 newpath = os.path.join(q.basepath, opts.get('name'))
2660 newpath = os.path.join(q.basepath, opts.get('name'))
2660 if os.path.exists(newpath):
2661 if os.path.exists(newpath):
2661 if not os.path.isdir(newpath):
2662 if not os.path.isdir(newpath):
2662 raise util.Abort(_('destination %s exists and is not '
2663 raise util.Abort(_('destination %s exists and is not '
2663 'a directory') % newpath)
2664 'a directory') % newpath)
2664 if not opts.get('force'):
2665 if not opts.get('force'):
2665 raise util.Abort(_('destination %s exists, '
2666 raise util.Abort(_('destination %s exists, '
2666 'use -f to force') % newpath)
2667 'use -f to force') % newpath)
2667 else:
2668 else:
2668 newpath = savename(path)
2669 newpath = savename(path)
2669 ui.warn(_("copy %s to %s\n") % (path, newpath))
2670 ui.warn(_("copy %s to %s\n") % (path, newpath))
2670 util.copyfiles(path, newpath)
2671 util.copyfiles(path, newpath)
2671 if opts.get('empty'):
2672 if opts.get('empty'):
2672 del q.applied[:]
2673 del q.applied[:]
2673 q.applieddirty = True
2674 q.applieddirty = True
2674 q.savedirty()
2675 q.savedirty()
2675 return 0
2676 return 0
2676
2677
2677 @command("strip",
2678 @command("strip",
2678 [
2679 [
2679 ('r', 'rev', [], _('strip specified revision (optional, '
2680 ('r', 'rev', [], _('strip specified revision (optional, '
2680 'can specify revisions without this '
2681 'can specify revisions without this '
2681 'option)'), _('REV')),
2682 'option)'), _('REV')),
2682 ('f', 'force', None, _('force removal of changesets, discard '
2683 ('f', 'force', None, _('force removal of changesets, discard '
2683 'uncommitted changes (no backup)')),
2684 'uncommitted changes (no backup)')),
2684 ('b', 'backup', None, _('bundle only changesets with local revision'
2685 ('b', 'backup', None, _('bundle only changesets with local revision'
2685 ' number greater than REV which are not'
2686 ' number greater than REV which are not'
2686 ' descendants of REV (DEPRECATED)')),
2687 ' descendants of REV (DEPRECATED)')),
2687 ('n', 'no-backup', None, _('no backups')),
2688 ('n', 'no-backup', None, _('no backups')),
2688 ('', 'nobackup', None, _('no backups (DEPRECATED)')),
2689 ('', 'nobackup', None, _('no backups (DEPRECATED)')),
2689 ('k', 'keep', None, _("do not modify working copy during strip"))],
2690 ('k', 'keep', None, _("do not modify working copy during strip"))],
2690 _('hg strip [-k] [-f] [-n] REV...'))
2691 _('hg strip [-k] [-f] [-n] REV...'))
2691 def strip(ui, repo, *revs, **opts):
2692 def strip(ui, repo, *revs, **opts):
2692 """strip changesets and all their descendants from the repository
2693 """strip changesets and all their descendants from the repository
2693
2694
2694 The strip command removes the specified changesets and all their
2695 The strip command removes the specified changesets and all their
2695 descendants. If the working directory has uncommitted changes, the
2696 descendants. If the working directory has uncommitted changes, the
2696 operation is aborted unless the --force flag is supplied, in which
2697 operation is aborted unless the --force flag is supplied, in which
2697 case changes will be discarded.
2698 case changes will be discarded.
2698
2699
2699 If a parent of the working directory is stripped, then the working
2700 If a parent of the working directory is stripped, then the working
2700 directory will automatically be updated to the most recent
2701 directory will automatically be updated to the most recent
2701 available ancestor of the stripped parent after the operation
2702 available ancestor of the stripped parent after the operation
2702 completes.
2703 completes.
2703
2704
2704 Any stripped changesets are stored in ``.hg/strip-backup`` as a
2705 Any stripped changesets are stored in ``.hg/strip-backup`` as a
2705 bundle (see :hg:`help bundle` and :hg:`help unbundle`). They can
2706 bundle (see :hg:`help bundle` and :hg:`help unbundle`). They can
2706 be restored by running :hg:`unbundle .hg/strip-backup/BUNDLE`,
2707 be restored by running :hg:`unbundle .hg/strip-backup/BUNDLE`,
2707 where BUNDLE is the bundle file created by the strip. Note that
2708 where BUNDLE is the bundle file created by the strip. Note that
2708 the local revision numbers will in general be different after the
2709 the local revision numbers will in general be different after the
2709 restore.
2710 restore.
2710
2711
2711 Use the --no-backup option to discard the backup bundle once the
2712 Use the --no-backup option to discard the backup bundle once the
2712 operation completes.
2713 operation completes.
2713
2714
2714 Return 0 on success.
2715 Return 0 on success.
2715 """
2716 """
2716 backup = 'all'
2717 backup = 'all'
2717 if opts.get('backup'):
2718 if opts.get('backup'):
2718 backup = 'strip'
2719 backup = 'strip'
2719 elif opts.get('no_backup') or opts.get('nobackup'):
2720 elif opts.get('no_backup') or opts.get('nobackup'):
2720 backup = 'none'
2721 backup = 'none'
2721
2722
2722 cl = repo.changelog
2723 cl = repo.changelog
2723 revs = list(revs) + opts.get('rev')
2724 revs = list(revs) + opts.get('rev')
2724 revs = set(scmutil.revrange(repo, revs))
2725 revs = set(scmutil.revrange(repo, revs))
2725 if not revs:
2726 if not revs:
2726 raise util.Abort(_('empty revision set'))
2727 raise util.Abort(_('empty revision set'))
2727
2728
2728 descendants = set(cl.descendants(*revs))
2729 descendants = set(cl.descendants(*revs))
2729 strippedrevs = revs.union(descendants)
2730 strippedrevs = revs.union(descendants)
2730 roots = revs.difference(descendants)
2731 roots = revs.difference(descendants)
2731
2732
2732 update = False
2733 update = False
2733 # if one of the wdir parent is stripped we'll need
2734 # if one of the wdir parent is stripped we'll need
2734 # to update away to an earlier revision
2735 # to update away to an earlier revision
2735 for p in repo.dirstate.parents():
2736 for p in repo.dirstate.parents():
2736 if p != nullid and cl.rev(p) in strippedrevs:
2737 if p != nullid and cl.rev(p) in strippedrevs:
2737 update = True
2738 update = True
2738 break
2739 break
2739
2740
2740 rootnodes = set(cl.node(r) for r in roots)
2741 rootnodes = set(cl.node(r) for r in roots)
2741
2742
2742 q = repo.mq
2743 q = repo.mq
2743 if q.applied:
2744 if q.applied:
2744 # refresh queue state if we're about to strip
2745 # refresh queue state if we're about to strip
2745 # applied patches
2746 # applied patches
2746 if cl.rev(repo.lookup('qtip')) in strippedrevs:
2747 if cl.rev(repo.lookup('qtip')) in strippedrevs:
2747 q.applieddirty = True
2748 q.applieddirty = True
2748 start = 0
2749 start = 0
2749 end = len(q.applied)
2750 end = len(q.applied)
2750 for i, statusentry in enumerate(q.applied):
2751 for i, statusentry in enumerate(q.applied):
2751 if statusentry.node in rootnodes:
2752 if statusentry.node in rootnodes:
2752 # if one of the stripped roots is an applied
2753 # if one of the stripped roots is an applied
2753 # patch, only part of the queue is stripped
2754 # patch, only part of the queue is stripped
2754 start = i
2755 start = i
2755 break
2756 break
2756 del q.applied[start:end]
2757 del q.applied[start:end]
2757 q.savedirty()
2758 q.savedirty()
2758
2759
2759 revs = list(rootnodes)
2760 revs = list(rootnodes)
2760 if update and opts.get('keep'):
2761 if update and opts.get('keep'):
2761 wlock = repo.wlock()
2762 wlock = repo.wlock()
2762 try:
2763 try:
2763 urev = repo.mq.qparents(repo, revs[0])
2764 urev = repo.mq.qparents(repo, revs[0])
2764 repo.dirstate.rebuild(urev, repo[urev].manifest())
2765 repo.dirstate.rebuild(urev, repo[urev].manifest())
2765 repo.dirstate.write()
2766 repo.dirstate.write()
2766 update = False
2767 update = False
2767 finally:
2768 finally:
2768 wlock.release()
2769 wlock.release()
2769
2770
2770 repo.mq.strip(repo, revs, backup=backup, update=update,
2771 repo.mq.strip(repo, revs, backup=backup, update=update,
2771 force=opts.get('force'))
2772 force=opts.get('force'))
2772 return 0
2773 return 0
2773
2774
2774 @command("qselect",
2775 @command("qselect",
2775 [('n', 'none', None, _('disable all guards')),
2776 [('n', 'none', None, _('disable all guards')),
2776 ('s', 'series', None, _('list all guards in series file')),
2777 ('s', 'series', None, _('list all guards in series file')),
2777 ('', 'pop', None, _('pop to before first guarded applied patch')),
2778 ('', 'pop', None, _('pop to before first guarded applied patch')),
2778 ('', 'reapply', None, _('pop, then reapply patches'))],
2779 ('', 'reapply', None, _('pop, then reapply patches'))],
2779 _('hg qselect [OPTION]... [GUARD]...'))
2780 _('hg qselect [OPTION]... [GUARD]...'))
2780 def select(ui, repo, *args, **opts):
2781 def select(ui, repo, *args, **opts):
2781 '''set or print guarded patches to push
2782 '''set or print guarded patches to push
2782
2783
2783 Use the :hg:`qguard` command to set or print guards on patch, then use
2784 Use the :hg:`qguard` command to set or print guards on patch, then use
2784 qselect to tell mq which guards to use. A patch will be pushed if
2785 qselect to tell mq which guards to use. A patch will be pushed if
2785 it has no guards or any positive guards match the currently
2786 it has no guards or any positive guards match the currently
2786 selected guard, but will not be pushed if any negative guards
2787 selected guard, but will not be pushed if any negative guards
2787 match the current guard. For example::
2788 match the current guard. For example::
2788
2789
2789 qguard foo.patch -- -stable (negative guard)
2790 qguard foo.patch -- -stable (negative guard)
2790 qguard bar.patch +stable (positive guard)
2791 qguard bar.patch +stable (positive guard)
2791 qselect stable
2792 qselect stable
2792
2793
2793 This activates the "stable" guard. mq will skip foo.patch (because
2794 This activates the "stable" guard. mq will skip foo.patch (because
2794 it has a negative match) but push bar.patch (because it has a
2795 it has a negative match) but push bar.patch (because it has a
2795 positive match).
2796 positive match).
2796
2797
2797 With no arguments, prints the currently active guards.
2798 With no arguments, prints the currently active guards.
2798 With one argument, sets the active guard.
2799 With one argument, sets the active guard.
2799
2800
2800 Use -n/--none to deactivate guards (no other arguments needed).
2801 Use -n/--none to deactivate guards (no other arguments needed).
2801 When no guards are active, patches with positive guards are
2802 When no guards are active, patches with positive guards are
2802 skipped and patches with negative guards are pushed.
2803 skipped and patches with negative guards are pushed.
2803
2804
2804 qselect can change the guards on applied patches. It does not pop
2805 qselect can change the guards on applied patches. It does not pop
2805 guarded patches by default. Use --pop to pop back to the last
2806 guarded patches by default. Use --pop to pop back to the last
2806 applied patch that is not guarded. Use --reapply (which implies
2807 applied patch that is not guarded. Use --reapply (which implies
2807 --pop) to push back to the current patch afterwards, but skip
2808 --pop) to push back to the current patch afterwards, but skip
2808 guarded patches.
2809 guarded patches.
2809
2810
2810 Use -s/--series to print a list of all guards in the series file
2811 Use -s/--series to print a list of all guards in the series file
2811 (no other arguments needed). Use -v for more information.
2812 (no other arguments needed). Use -v for more information.
2812
2813
2813 Returns 0 on success.'''
2814 Returns 0 on success.'''
2814
2815
2815 q = repo.mq
2816 q = repo.mq
2816 guards = q.active()
2817 guards = q.active()
2817 if args or opts.get('none'):
2818 if args or opts.get('none'):
2818 old_unapplied = q.unapplied(repo)
2819 old_unapplied = q.unapplied(repo)
2819 old_guarded = [i for i in xrange(len(q.applied)) if
2820 old_guarded = [i for i in xrange(len(q.applied)) if
2820 not q.pushable(i)[0]]
2821 not q.pushable(i)[0]]
2821 q.setactive(args)
2822 q.setactive(args)
2822 q.savedirty()
2823 q.savedirty()
2823 if not args:
2824 if not args:
2824 ui.status(_('guards deactivated\n'))
2825 ui.status(_('guards deactivated\n'))
2825 if not opts.get('pop') and not opts.get('reapply'):
2826 if not opts.get('pop') and not opts.get('reapply'):
2826 unapplied = q.unapplied(repo)
2827 unapplied = q.unapplied(repo)
2827 guarded = [i for i in xrange(len(q.applied))
2828 guarded = [i for i in xrange(len(q.applied))
2828 if not q.pushable(i)[0]]
2829 if not q.pushable(i)[0]]
2829 if len(unapplied) != len(old_unapplied):
2830 if len(unapplied) != len(old_unapplied):
2830 ui.status(_('number of unguarded, unapplied patches has '
2831 ui.status(_('number of unguarded, unapplied patches has '
2831 'changed from %d to %d\n') %
2832 'changed from %d to %d\n') %
2832 (len(old_unapplied), len(unapplied)))
2833 (len(old_unapplied), len(unapplied)))
2833 if len(guarded) != len(old_guarded):
2834 if len(guarded) != len(old_guarded):
2834 ui.status(_('number of guarded, applied patches has changed '
2835 ui.status(_('number of guarded, applied patches has changed '
2835 'from %d to %d\n') %
2836 'from %d to %d\n') %
2836 (len(old_guarded), len(guarded)))
2837 (len(old_guarded), len(guarded)))
2837 elif opts.get('series'):
2838 elif opts.get('series'):
2838 guards = {}
2839 guards = {}
2839 noguards = 0
2840 noguards = 0
2840 for gs in q.seriesguards:
2841 for gs in q.seriesguards:
2841 if not gs:
2842 if not gs:
2842 noguards += 1
2843 noguards += 1
2843 for g in gs:
2844 for g in gs:
2844 guards.setdefault(g, 0)
2845 guards.setdefault(g, 0)
2845 guards[g] += 1
2846 guards[g] += 1
2846 if ui.verbose:
2847 if ui.verbose:
2847 guards['NONE'] = noguards
2848 guards['NONE'] = noguards
2848 guards = guards.items()
2849 guards = guards.items()
2849 guards.sort(key=lambda x: x[0][1:])
2850 guards.sort(key=lambda x: x[0][1:])
2850 if guards:
2851 if guards:
2851 ui.note(_('guards in series file:\n'))
2852 ui.note(_('guards in series file:\n'))
2852 for guard, count in guards:
2853 for guard, count in guards:
2853 ui.note('%2d ' % count)
2854 ui.note('%2d ' % count)
2854 ui.write(guard, '\n')
2855 ui.write(guard, '\n')
2855 else:
2856 else:
2856 ui.note(_('no guards in series file\n'))
2857 ui.note(_('no guards in series file\n'))
2857 else:
2858 else:
2858 if guards:
2859 if guards:
2859 ui.note(_('active guards:\n'))
2860 ui.note(_('active guards:\n'))
2860 for g in guards:
2861 for g in guards:
2861 ui.write(g, '\n')
2862 ui.write(g, '\n')
2862 else:
2863 else:
2863 ui.write(_('no active guards\n'))
2864 ui.write(_('no active guards\n'))
2864 reapply = opts.get('reapply') and q.applied and q.appliedname(-1)
2865 reapply = opts.get('reapply') and q.applied and q.appliedname(-1)
2865 popped = False
2866 popped = False
2866 if opts.get('pop') or opts.get('reapply'):
2867 if opts.get('pop') or opts.get('reapply'):
2867 for i in xrange(len(q.applied)):
2868 for i in xrange(len(q.applied)):
2868 pushable, reason = q.pushable(i)
2869 pushable, reason = q.pushable(i)
2869 if not pushable:
2870 if not pushable:
2870 ui.status(_('popping guarded patches\n'))
2871 ui.status(_('popping guarded patches\n'))
2871 popped = True
2872 popped = True
2872 if i == 0:
2873 if i == 0:
2873 q.pop(repo, all=True)
2874 q.pop(repo, all=True)
2874 else:
2875 else:
2875 q.pop(repo, str(i - 1))
2876 q.pop(repo, str(i - 1))
2876 break
2877 break
2877 if popped:
2878 if popped:
2878 try:
2879 try:
2879 if reapply:
2880 if reapply:
2880 ui.status(_('reapplying unguarded patches\n'))
2881 ui.status(_('reapplying unguarded patches\n'))
2881 q.push(repo, reapply)
2882 q.push(repo, reapply)
2882 finally:
2883 finally:
2883 q.savedirty()
2884 q.savedirty()
2884
2885
2885 @command("qfinish",
2886 @command("qfinish",
2886 [('a', 'applied', None, _('finish all applied changesets'))],
2887 [('a', 'applied', None, _('finish all applied changesets'))],
2887 _('hg qfinish [-a] [REV]...'))
2888 _('hg qfinish [-a] [REV]...'))
2888 def finish(ui, repo, *revrange, **opts):
2889 def finish(ui, repo, *revrange, **opts):
2889 """move applied patches into repository history
2890 """move applied patches into repository history
2890
2891
2891 Finishes the specified revisions (corresponding to applied
2892 Finishes the specified revisions (corresponding to applied
2892 patches) by moving them out of mq control into regular repository
2893 patches) by moving them out of mq control into regular repository
2893 history.
2894 history.
2894
2895
2895 Accepts a revision range or the -a/--applied option. If --applied
2896 Accepts a revision range or the -a/--applied option. If --applied
2896 is specified, all applied mq revisions are removed from mq
2897 is specified, all applied mq revisions are removed from mq
2897 control. Otherwise, the given revisions must be at the base of the
2898 control. Otherwise, the given revisions must be at the base of the
2898 stack of applied patches.
2899 stack of applied patches.
2899
2900
2900 This can be especially useful if your changes have been applied to
2901 This can be especially useful if your changes have been applied to
2901 an upstream repository, or if you are about to push your changes
2902 an upstream repository, or if you are about to push your changes
2902 to upstream.
2903 to upstream.
2903
2904
2904 Returns 0 on success.
2905 Returns 0 on success.
2905 """
2906 """
2906 if not opts.get('applied') and not revrange:
2907 if not opts.get('applied') and not revrange:
2907 raise util.Abort(_('no revisions specified'))
2908 raise util.Abort(_('no revisions specified'))
2908 elif opts.get('applied'):
2909 elif opts.get('applied'):
2909 revrange = ('qbase::qtip',) + revrange
2910 revrange = ('qbase::qtip',) + revrange
2910
2911
2911 q = repo.mq
2912 q = repo.mq
2912 if not q.applied:
2913 if not q.applied:
2913 ui.status(_('no patches applied\n'))
2914 ui.status(_('no patches applied\n'))
2914 return 0
2915 return 0
2915
2916
2916 revs = scmutil.revrange(repo, revrange)
2917 revs = scmutil.revrange(repo, revrange)
2917 if repo['.'].rev() in revs and repo[None].files():
2918 if repo['.'].rev() in revs and repo[None].files():
2918 ui.warn(_('warning: uncommitted changes in the working directory\n'))
2919 ui.warn(_('warning: uncommitted changes in the working directory\n'))
2919
2920
2920 q.finish(repo, revs)
2921 q.finish(repo, revs)
2921 q.savedirty()
2922 q.savedirty()
2922 return 0
2923 return 0
2923
2924
2924 @command("qqueue",
2925 @command("qqueue",
2925 [('l', 'list', False, _('list all available queues')),
2926 [('l', 'list', False, _('list all available queues')),
2926 ('', 'active', False, _('print name of active queue')),
2927 ('', 'active', False, _('print name of active queue')),
2927 ('c', 'create', False, _('create new queue')),
2928 ('c', 'create', False, _('create new queue')),
2928 ('', 'rename', False, _('rename active queue')),
2929 ('', 'rename', False, _('rename active queue')),
2929 ('', 'delete', False, _('delete reference to queue')),
2930 ('', 'delete', False, _('delete reference to queue')),
2930 ('', 'purge', False, _('delete queue, and remove patch dir')),
2931 ('', 'purge', False, _('delete queue, and remove patch dir')),
2931 ],
2932 ],
2932 _('[OPTION] [QUEUE]'))
2933 _('[OPTION] [QUEUE]'))
2933 def qqueue(ui, repo, name=None, **opts):
2934 def qqueue(ui, repo, name=None, **opts):
2934 '''manage multiple patch queues
2935 '''manage multiple patch queues
2935
2936
2936 Supports switching between different patch queues, as well as creating
2937 Supports switching between different patch queues, as well as creating
2937 new patch queues and deleting existing ones.
2938 new patch queues and deleting existing ones.
2938
2939
2939 Omitting a queue name or specifying -l/--list will show you the registered
2940 Omitting a queue name or specifying -l/--list will show you the registered
2940 queues - by default the "normal" patches queue is registered. The currently
2941 queues - by default the "normal" patches queue is registered. The currently
2941 active queue will be marked with "(active)". Specifying --active will print
2942 active queue will be marked with "(active)". Specifying --active will print
2942 only the name of the active queue.
2943 only the name of the active queue.
2943
2944
2944 To create a new queue, use -c/--create. The queue is automatically made
2945 To create a new queue, use -c/--create. The queue is automatically made
2945 active, except in the case where there are applied patches from the
2946 active, except in the case where there are applied patches from the
2946 currently active queue in the repository. Then the queue will only be
2947 currently active queue in the repository. Then the queue will only be
2947 created and switching will fail.
2948 created and switching will fail.
2948
2949
2949 To delete an existing queue, use --delete. You cannot delete the currently
2950 To delete an existing queue, use --delete. You cannot delete the currently
2950 active queue.
2951 active queue.
2951
2952
2952 Returns 0 on success.
2953 Returns 0 on success.
2953 '''
2954 '''
2954 q = repo.mq
2955 q = repo.mq
2955 _defaultqueue = 'patches'
2956 _defaultqueue = 'patches'
2956 _allqueues = 'patches.queues'
2957 _allqueues = 'patches.queues'
2957 _activequeue = 'patches.queue'
2958 _activequeue = 'patches.queue'
2958
2959
2959 def _getcurrent():
2960 def _getcurrent():
2960 cur = os.path.basename(q.path)
2961 cur = os.path.basename(q.path)
2961 if cur.startswith('patches-'):
2962 if cur.startswith('patches-'):
2962 cur = cur[8:]
2963 cur = cur[8:]
2963 return cur
2964 return cur
2964
2965
2965 def _noqueues():
2966 def _noqueues():
2966 try:
2967 try:
2967 fh = repo.opener(_allqueues, 'r')
2968 fh = repo.opener(_allqueues, 'r')
2968 fh.close()
2969 fh.close()
2969 except IOError:
2970 except IOError:
2970 return True
2971 return True
2971
2972
2972 return False
2973 return False
2973
2974
2974 def _getqueues():
2975 def _getqueues():
2975 current = _getcurrent()
2976 current = _getcurrent()
2976
2977
2977 try:
2978 try:
2978 fh = repo.opener(_allqueues, 'r')
2979 fh = repo.opener(_allqueues, 'r')
2979 queues = [queue.strip() for queue in fh if queue.strip()]
2980 queues = [queue.strip() for queue in fh if queue.strip()]
2980 fh.close()
2981 fh.close()
2981 if current not in queues:
2982 if current not in queues:
2982 queues.append(current)
2983 queues.append(current)
2983 except IOError:
2984 except IOError:
2984 queues = [_defaultqueue]
2985 queues = [_defaultqueue]
2985
2986
2986 return sorted(queues)
2987 return sorted(queues)
2987
2988
2988 def _setactive(name):
2989 def _setactive(name):
2989 if q.applied:
2990 if q.applied:
2990 raise util.Abort(_('patches applied - cannot set new queue active'))
2991 raise util.Abort(_('patches applied - cannot set new queue active'))
2991 _setactivenocheck(name)
2992 _setactivenocheck(name)
2992
2993
2993 def _setactivenocheck(name):
2994 def _setactivenocheck(name):
2994 fh = repo.opener(_activequeue, 'w')
2995 fh = repo.opener(_activequeue, 'w')
2995 if name != 'patches':
2996 if name != 'patches':
2996 fh.write(name)
2997 fh.write(name)
2997 fh.close()
2998 fh.close()
2998
2999
2999 def _addqueue(name):
3000 def _addqueue(name):
3000 fh = repo.opener(_allqueues, 'a')
3001 fh = repo.opener(_allqueues, 'a')
3001 fh.write('%s\n' % (name,))
3002 fh.write('%s\n' % (name,))
3002 fh.close()
3003 fh.close()
3003
3004
3004 def _queuedir(name):
3005 def _queuedir(name):
3005 if name == 'patches':
3006 if name == 'patches':
3006 return repo.join('patches')
3007 return repo.join('patches')
3007 else:
3008 else:
3008 return repo.join('patches-' + name)
3009 return repo.join('patches-' + name)
3009
3010
3010 def _validname(name):
3011 def _validname(name):
3011 for n in name:
3012 for n in name:
3012 if n in ':\\/.':
3013 if n in ':\\/.':
3013 return False
3014 return False
3014 return True
3015 return True
3015
3016
3016 def _delete(name):
3017 def _delete(name):
3017 if name not in existing:
3018 if name not in existing:
3018 raise util.Abort(_('cannot delete queue that does not exist'))
3019 raise util.Abort(_('cannot delete queue that does not exist'))
3019
3020
3020 current = _getcurrent()
3021 current = _getcurrent()
3021
3022
3022 if name == current:
3023 if name == current:
3023 raise util.Abort(_('cannot delete currently active queue'))
3024 raise util.Abort(_('cannot delete currently active queue'))
3024
3025
3025 fh = repo.opener('patches.queues.new', 'w')
3026 fh = repo.opener('patches.queues.new', 'w')
3026 for queue in existing:
3027 for queue in existing:
3027 if queue == name:
3028 if queue == name:
3028 continue
3029 continue
3029 fh.write('%s\n' % (queue,))
3030 fh.write('%s\n' % (queue,))
3030 fh.close()
3031 fh.close()
3031 util.rename(repo.join('patches.queues.new'), repo.join(_allqueues))
3032 util.rename(repo.join('patches.queues.new'), repo.join(_allqueues))
3032
3033
3033 if not name or opts.get('list') or opts.get('active'):
3034 if not name or opts.get('list') or opts.get('active'):
3034 current = _getcurrent()
3035 current = _getcurrent()
3035 if opts.get('active'):
3036 if opts.get('active'):
3036 ui.write('%s\n' % (current,))
3037 ui.write('%s\n' % (current,))
3037 return
3038 return
3038 for queue in _getqueues():
3039 for queue in _getqueues():
3039 ui.write('%s' % (queue,))
3040 ui.write('%s' % (queue,))
3040 if queue == current and not ui.quiet:
3041 if queue == current and not ui.quiet:
3041 ui.write(_(' (active)\n'))
3042 ui.write(_(' (active)\n'))
3042 else:
3043 else:
3043 ui.write('\n')
3044 ui.write('\n')
3044 return
3045 return
3045
3046
3046 if not _validname(name):
3047 if not _validname(name):
3047 raise util.Abort(
3048 raise util.Abort(
3048 _('invalid queue name, may not contain the characters ":\\/."'))
3049 _('invalid queue name, may not contain the characters ":\\/."'))
3049
3050
3050 existing = _getqueues()
3051 existing = _getqueues()
3051
3052
3052 if opts.get('create'):
3053 if opts.get('create'):
3053 if name in existing:
3054 if name in existing:
3054 raise util.Abort(_('queue "%s" already exists') % name)
3055 raise util.Abort(_('queue "%s" already exists') % name)
3055 if _noqueues():
3056 if _noqueues():
3056 _addqueue(_defaultqueue)
3057 _addqueue(_defaultqueue)
3057 _addqueue(name)
3058 _addqueue(name)
3058 _setactive(name)
3059 _setactive(name)
3059 elif opts.get('rename'):
3060 elif opts.get('rename'):
3060 current = _getcurrent()
3061 current = _getcurrent()
3061 if name == current:
3062 if name == current:
3062 raise util.Abort(_('can\'t rename "%s" to its current name') % name)
3063 raise util.Abort(_('can\'t rename "%s" to its current name') % name)
3063 if name in existing:
3064 if name in existing:
3064 raise util.Abort(_('queue "%s" already exists') % name)
3065 raise util.Abort(_('queue "%s" already exists') % name)
3065
3066
3066 olddir = _queuedir(current)
3067 olddir = _queuedir(current)
3067 newdir = _queuedir(name)
3068 newdir = _queuedir(name)
3068
3069
3069 if os.path.exists(newdir):
3070 if os.path.exists(newdir):
3070 raise util.Abort(_('non-queue directory "%s" already exists') %
3071 raise util.Abort(_('non-queue directory "%s" already exists') %
3071 newdir)
3072 newdir)
3072
3073
3073 fh = repo.opener('patches.queues.new', 'w')
3074 fh = repo.opener('patches.queues.new', 'w')
3074 for queue in existing:
3075 for queue in existing:
3075 if queue == current:
3076 if queue == current:
3076 fh.write('%s\n' % (name,))
3077 fh.write('%s\n' % (name,))
3077 if os.path.exists(olddir):
3078 if os.path.exists(olddir):
3078 util.rename(olddir, newdir)
3079 util.rename(olddir, newdir)
3079 else:
3080 else:
3080 fh.write('%s\n' % (queue,))
3081 fh.write('%s\n' % (queue,))
3081 fh.close()
3082 fh.close()
3082 util.rename(repo.join('patches.queues.new'), repo.join(_allqueues))
3083 util.rename(repo.join('patches.queues.new'), repo.join(_allqueues))
3083 _setactivenocheck(name)
3084 _setactivenocheck(name)
3084 elif opts.get('delete'):
3085 elif opts.get('delete'):
3085 _delete(name)
3086 _delete(name)
3086 elif opts.get('purge'):
3087 elif opts.get('purge'):
3087 if name in existing:
3088 if name in existing:
3088 _delete(name)
3089 _delete(name)
3089 qdir = _queuedir(name)
3090 qdir = _queuedir(name)
3090 if os.path.exists(qdir):
3091 if os.path.exists(qdir):
3091 shutil.rmtree(qdir)
3092 shutil.rmtree(qdir)
3092 else:
3093 else:
3093 if name not in existing:
3094 if name not in existing:
3094 raise util.Abort(_('use --create to create a new queue'))
3095 raise util.Abort(_('use --create to create a new queue'))
3095 _setactive(name)
3096 _setactive(name)
3096
3097
3097 def reposetup(ui, repo):
3098 def reposetup(ui, repo):
3098 class mqrepo(repo.__class__):
3099 class mqrepo(repo.__class__):
3099 @util.propertycache
3100 @util.propertycache
3100 def mq(self):
3101 def mq(self):
3101 return queue(self.ui, self.path)
3102 return queue(self.ui, self.path)
3102
3103
3103 def abortifwdirpatched(self, errmsg, force=False):
3104 def abortifwdirpatched(self, errmsg, force=False):
3104 if self.mq.applied and not force:
3105 if self.mq.applied and not force:
3105 parents = self.dirstate.parents()
3106 parents = self.dirstate.parents()
3106 patches = [s.node for s in self.mq.applied]
3107 patches = [s.node for s in self.mq.applied]
3107 if parents[0] in patches or parents[1] in patches:
3108 if parents[0] in patches or parents[1] in patches:
3108 raise util.Abort(errmsg)
3109 raise util.Abort(errmsg)
3109
3110
3110 def commit(self, text="", user=None, date=None, match=None,
3111 def commit(self, text="", user=None, date=None, match=None,
3111 force=False, editor=False, extra={}):
3112 force=False, editor=False, extra={}):
3112 self.abortifwdirpatched(
3113 self.abortifwdirpatched(
3113 _('cannot commit over an applied mq patch'),
3114 _('cannot commit over an applied mq patch'),
3114 force)
3115 force)
3115
3116
3116 return super(mqrepo, self).commit(text, user, date, match, force,
3117 return super(mqrepo, self).commit(text, user, date, match, force,
3117 editor, extra)
3118 editor, extra)
3118
3119
3119 def checkpush(self, force, revs):
3120 def checkpush(self, force, revs):
3120 if self.mq.applied and not force:
3121 if self.mq.applied and not force:
3121 haspatches = True
3122 haspatches = True
3122 if revs:
3123 if revs:
3123 # Assume applied patches have no non-patch descendants
3124 # Assume applied patches have no non-patch descendants
3124 # and are not on remote already. If they appear in the
3125 # and are not on remote already. If they appear in the
3125 # set of resolved 'revs', bail out.
3126 # set of resolved 'revs', bail out.
3126 applied = set(e.node for e in self.mq.applied)
3127 applied = set(e.node for e in self.mq.applied)
3127 haspatches = bool([n for n in revs if n in applied])
3128 haspatches = bool([n for n in revs if n in applied])
3128 if haspatches:
3129 if haspatches:
3129 raise util.Abort(_('source has mq patches applied'))
3130 raise util.Abort(_('source has mq patches applied'))
3130 super(mqrepo, self).checkpush(force, revs)
3131 super(mqrepo, self).checkpush(force, revs)
3131
3132
3132 def _findtags(self):
3133 def _findtags(self):
3133 '''augment tags from base class with patch tags'''
3134 '''augment tags from base class with patch tags'''
3134 result = super(mqrepo, self)._findtags()
3135 result = super(mqrepo, self)._findtags()
3135
3136
3136 q = self.mq
3137 q = self.mq
3137 if not q.applied:
3138 if not q.applied:
3138 return result
3139 return result
3139
3140
3140 mqtags = [(patch.node, patch.name) for patch in q.applied]
3141 mqtags = [(patch.node, patch.name) for patch in q.applied]
3141
3142
3142 try:
3143 try:
3143 self.changelog.rev(mqtags[-1][0])
3144 self.changelog.rev(mqtags[-1][0])
3144 except error.LookupError:
3145 except error.LookupError:
3145 self.ui.warn(_('mq status file refers to unknown node %s\n')
3146 self.ui.warn(_('mq status file refers to unknown node %s\n')
3146 % short(mqtags[-1][0]))
3147 % short(mqtags[-1][0]))
3147 return result
3148 return result
3148
3149
3149 mqtags.append((mqtags[-1][0], 'qtip'))
3150 mqtags.append((mqtags[-1][0], 'qtip'))
3150 mqtags.append((mqtags[0][0], 'qbase'))
3151 mqtags.append((mqtags[0][0], 'qbase'))
3151 mqtags.append((self.changelog.parents(mqtags[0][0])[0], 'qparent'))
3152 mqtags.append((self.changelog.parents(mqtags[0][0])[0], 'qparent'))
3152 tags = result[0]
3153 tags = result[0]
3153 for patch in mqtags:
3154 for patch in mqtags:
3154 if patch[1] in tags:
3155 if patch[1] in tags:
3155 self.ui.warn(_('Tag %s overrides mq patch of the same name\n')
3156 self.ui.warn(_('Tag %s overrides mq patch of the same name\n')
3156 % patch[1])
3157 % patch[1])
3157 else:
3158 else:
3158 tags[patch[1]] = patch[0]
3159 tags[patch[1]] = patch[0]
3159
3160
3160 return result
3161 return result
3161
3162
3162 def _branchtags(self, partial, lrev):
3163 def _branchtags(self, partial, lrev):
3163 q = self.mq
3164 q = self.mq
3164 if not q.applied:
3165 if not q.applied:
3165 return super(mqrepo, self)._branchtags(partial, lrev)
3166 return super(mqrepo, self)._branchtags(partial, lrev)
3166
3167
3167 cl = self.changelog
3168 cl = self.changelog
3168 qbasenode = q.applied[0].node
3169 qbasenode = q.applied[0].node
3169 try:
3170 try:
3170 qbase = cl.rev(qbasenode)
3171 qbase = cl.rev(qbasenode)
3171 except error.LookupError:
3172 except error.LookupError:
3172 self.ui.warn(_('mq status file refers to unknown node %s\n')
3173 self.ui.warn(_('mq status file refers to unknown node %s\n')
3173 % short(qbasenode))
3174 % short(qbasenode))
3174 return super(mqrepo, self)._branchtags(partial, lrev)
3175 return super(mqrepo, self)._branchtags(partial, lrev)
3175
3176
3176 start = lrev + 1
3177 start = lrev + 1
3177 if start < qbase:
3178 if start < qbase:
3178 # update the cache (excluding the patches) and save it
3179 # update the cache (excluding the patches) and save it
3179 ctxgen = (self[r] for r in xrange(lrev + 1, qbase))
3180 ctxgen = (self[r] for r in xrange(lrev + 1, qbase))
3180 self._updatebranchcache(partial, ctxgen)
3181 self._updatebranchcache(partial, ctxgen)
3181 self._writebranchcache(partial, cl.node(qbase - 1), qbase - 1)
3182 self._writebranchcache(partial, cl.node(qbase - 1), qbase - 1)
3182 start = qbase
3183 start = qbase
3183 # if start = qbase, the cache is as updated as it should be.
3184 # if start = qbase, the cache is as updated as it should be.
3184 # if start > qbase, the cache includes (part of) the patches.
3185 # if start > qbase, the cache includes (part of) the patches.
3185 # we might as well use it, but we won't save it.
3186 # we might as well use it, but we won't save it.
3186
3187
3187 # update the cache up to the tip
3188 # update the cache up to the tip
3188 ctxgen = (self[r] for r in xrange(start, len(cl)))
3189 ctxgen = (self[r] for r in xrange(start, len(cl)))
3189 self._updatebranchcache(partial, ctxgen)
3190 self._updatebranchcache(partial, ctxgen)
3190
3191
3191 return partial
3192 return partial
3192
3193
3193 if repo.local():
3194 if repo.local():
3194 repo.__class__ = mqrepo
3195 repo.__class__ = mqrepo
3195
3196
3196 def mqimport(orig, ui, repo, *args, **kwargs):
3197 def mqimport(orig, ui, repo, *args, **kwargs):
3197 if (hasattr(repo, 'abortifwdirpatched')
3198 if (hasattr(repo, 'abortifwdirpatched')
3198 and not kwargs.get('no_commit', False)):
3199 and not kwargs.get('no_commit', False)):
3199 repo.abortifwdirpatched(_('cannot import over an applied patch'),
3200 repo.abortifwdirpatched(_('cannot import over an applied patch'),
3200 kwargs.get('force'))
3201 kwargs.get('force'))
3201 return orig(ui, repo, *args, **kwargs)
3202 return orig(ui, repo, *args, **kwargs)
3202
3203
3203 def mqinit(orig, ui, *args, **kwargs):
3204 def mqinit(orig, ui, *args, **kwargs):
3204 mq = kwargs.pop('mq', None)
3205 mq = kwargs.pop('mq', None)
3205
3206
3206 if not mq:
3207 if not mq:
3207 return orig(ui, *args, **kwargs)
3208 return orig(ui, *args, **kwargs)
3208
3209
3209 if args:
3210 if args:
3210 repopath = args[0]
3211 repopath = args[0]
3211 if not hg.islocal(repopath):
3212 if not hg.islocal(repopath):
3212 raise util.Abort(_('only a local queue repository '
3213 raise util.Abort(_('only a local queue repository '
3213 'may be initialized'))
3214 'may be initialized'))
3214 else:
3215 else:
3215 repopath = cmdutil.findrepo(os.getcwd())
3216 repopath = cmdutil.findrepo(os.getcwd())
3216 if not repopath:
3217 if not repopath:
3217 raise util.Abort(_('there is no Mercurial repository here '
3218 raise util.Abort(_('there is no Mercurial repository here '
3218 '(.hg not found)'))
3219 '(.hg not found)'))
3219 repo = hg.repository(ui, repopath)
3220 repo = hg.repository(ui, repopath)
3220 return qinit(ui, repo, True)
3221 return qinit(ui, repo, True)
3221
3222
3222 def mqcommand(orig, ui, repo, *args, **kwargs):
3223 def mqcommand(orig, ui, repo, *args, **kwargs):
3223 """Add --mq option to operate on patch repository instead of main"""
3224 """Add --mq option to operate on patch repository instead of main"""
3224
3225
3225 # some commands do not like getting unknown options
3226 # some commands do not like getting unknown options
3226 mq = kwargs.pop('mq', None)
3227 mq = kwargs.pop('mq', None)
3227
3228
3228 if not mq:
3229 if not mq:
3229 return orig(ui, repo, *args, **kwargs)
3230 return orig(ui, repo, *args, **kwargs)
3230
3231
3231 q = repo.mq
3232 q = repo.mq
3232 r = q.qrepo()
3233 r = q.qrepo()
3233 if not r:
3234 if not r:
3234 raise util.Abort(_('no queue repository'))
3235 raise util.Abort(_('no queue repository'))
3235 return orig(r.ui, r, *args, **kwargs)
3236 return orig(r.ui, r, *args, **kwargs)
3236
3237
3237 def summary(orig, ui, repo, *args, **kwargs):
3238 def summary(orig, ui, repo, *args, **kwargs):
3238 r = orig(ui, repo, *args, **kwargs)
3239 r = orig(ui, repo, *args, **kwargs)
3239 q = repo.mq
3240 q = repo.mq
3240 m = []
3241 m = []
3241 a, u = len(q.applied), len(q.unapplied(repo))
3242 a, u = len(q.applied), len(q.unapplied(repo))
3242 if a:
3243 if a:
3243 m.append(ui.label(_("%d applied"), 'qseries.applied') % a)
3244 m.append(ui.label(_("%d applied"), 'qseries.applied') % a)
3244 if u:
3245 if u:
3245 m.append(ui.label(_("%d unapplied"), 'qseries.unapplied') % u)
3246 m.append(ui.label(_("%d unapplied"), 'qseries.unapplied') % u)
3246 if m:
3247 if m:
3247 ui.write("mq: %s\n" % ', '.join(m))
3248 ui.write("mq: %s\n" % ', '.join(m))
3248 else:
3249 else:
3249 ui.note(_("mq: (empty queue)\n"))
3250 ui.note(_("mq: (empty queue)\n"))
3250 return r
3251 return r
3251
3252
3252 def revsetmq(repo, subset, x):
3253 def revsetmq(repo, subset, x):
3253 """``mq()``
3254 """``mq()``
3254 Changesets managed by MQ.
3255 Changesets managed by MQ.
3255 """
3256 """
3256 revset.getargs(x, 0, 0, _("mq takes no arguments"))
3257 revset.getargs(x, 0, 0, _("mq takes no arguments"))
3257 applied = set([repo[r.node].rev() for r in repo.mq.applied])
3258 applied = set([repo[r.node].rev() for r in repo.mq.applied])
3258 return [r for r in subset if r in applied]
3259 return [r for r in subset if r in applied]
3259
3260
3260 def extsetup(ui):
3261 def extsetup(ui):
3261 revset.symbols['mq'] = revsetmq
3262 revset.symbols['mq'] = revsetmq
3262
3263
3263 # tell hggettext to extract docstrings from these functions:
3264 # tell hggettext to extract docstrings from these functions:
3264 i18nfunctions = [revsetmq]
3265 i18nfunctions = [revsetmq]
3265
3266
3266 def uisetup(ui):
3267 def uisetup(ui):
3267 mqopt = [('', 'mq', None, _("operate on patch repository"))]
3268 mqopt = [('', 'mq', None, _("operate on patch repository"))]
3268
3269
3269 extensions.wrapcommand(commands.table, 'import', mqimport)
3270 extensions.wrapcommand(commands.table, 'import', mqimport)
3270 extensions.wrapcommand(commands.table, 'summary', summary)
3271 extensions.wrapcommand(commands.table, 'summary', summary)
3271
3272
3272 entry = extensions.wrapcommand(commands.table, 'init', mqinit)
3273 entry = extensions.wrapcommand(commands.table, 'init', mqinit)
3273 entry[1].extend(mqopt)
3274 entry[1].extend(mqopt)
3274
3275
3275 nowrap = set(commands.norepo.split(" "))
3276 nowrap = set(commands.norepo.split(" "))
3276
3277
3277 def dotable(cmdtable):
3278 def dotable(cmdtable):
3278 for cmd in cmdtable.keys():
3279 for cmd in cmdtable.keys():
3279 cmd = cmdutil.parsealiases(cmd)[0]
3280 cmd = cmdutil.parsealiases(cmd)[0]
3280 if cmd in nowrap:
3281 if cmd in nowrap:
3281 continue
3282 continue
3282 entry = extensions.wrapcommand(cmdtable, cmd, mqcommand)
3283 entry = extensions.wrapcommand(cmdtable, cmd, mqcommand)
3283 entry[1].extend(mqopt)
3284 entry[1].extend(mqopt)
3284
3285
3285 dotable(commands.table)
3286 dotable(commands.table)
3286
3287
3287 for extname, extmodule in extensions.extensions():
3288 for extname, extmodule in extensions.extensions():
3288 if extmodule.__file__ != __file__:
3289 if extmodule.__file__ != __file__:
3289 dotable(getattr(extmodule, 'cmdtable', {}))
3290 dotable(getattr(extmodule, 'cmdtable', {}))
3290
3291
3291
3292
3292 colortable = {'qguard.negative': 'red',
3293 colortable = {'qguard.negative': 'red',
3293 'qguard.positive': 'yellow',
3294 'qguard.positive': 'yellow',
3294 'qguard.unguarded': 'green',
3295 'qguard.unguarded': 'green',
3295 'qseries.applied': 'blue bold underline',
3296 'qseries.applied': 'blue bold underline',
3296 'qseries.guarded': 'black bold',
3297 'qseries.guarded': 'black bold',
3297 'qseries.missing': 'red bold',
3298 'qseries.missing': 'red bold',
3298 'qseries.unapplied': 'black bold'}
3299 'qseries.unapplied': 'black bold'}
General Comments 0
You need to be logged in to leave comments. Login now