Show More
@@ -0,0 +1,342 b'' | |||||
|
1 | $ echo "[extensions]" >> $HGRCPATH | |||
|
2 | $ echo "mq=" >> $HGRCPATH | |||
|
3 | $ echo "record=" >> $HGRCPATH | |||
|
4 | $ echo "[diff]" >> $HGRCPATH | |||
|
5 | $ echo "nodates=1" >> $HGRCPATH | |||
|
6 | ||||
|
7 | fn to create new repository w/dirty subrepo, and cd into it | |||
|
8 | $ mkrepo() { | |||
|
9 | > hg init $1 | |||
|
10 | > cd $1 | |||
|
11 | > hg qinit | |||
|
12 | > } | |||
|
13 | ||||
|
14 | fn to create dirty subrepo | |||
|
15 | $ mksubrepo() { | |||
|
16 | > hg init $1 | |||
|
17 | > cd $1 | |||
|
18 | > echo a > a | |||
|
19 | > hg add | |||
|
20 | > cd .. | |||
|
21 | > } | |||
|
22 | ||||
|
23 | $ testadd() { | |||
|
24 | > local stdin=`cat` | |||
|
25 | > mksubrepo sub | |||
|
26 | > echo sub = sub >> .hgsub | |||
|
27 | > hg add .hgsub | |||
|
28 | > echo % abort when adding .hgsub w/dirty subrepo | |||
|
29 | > hg status -S | |||
|
30 | > echo '%' $* | |||
|
31 | > echo "$stdin" | hg $* | |||
|
32 | > echo [$?] | |||
|
33 | > hg -R sub ci -m0sub | |||
|
34 | > echo % update substate when adding .hgsub w/clean updated subrepo | |||
|
35 | > hg status -S | |||
|
36 | > echo '%' $* | |||
|
37 | > echo "$stdin" | hg $* | |||
|
38 | > hg debugsub | |||
|
39 | > } | |||
|
40 | ||||
|
41 | $ testmod() { | |||
|
42 | > local stdin=`cat` | |||
|
43 | > mksubrepo sub2 | |||
|
44 | > echo sub2 = sub2 >> .hgsub | |||
|
45 | > echo % abort when modifying .hgsub w/dirty subrepo | |||
|
46 | > hg status -S | |||
|
47 | > echo '%' $* | |||
|
48 | > echo "$stdin" | hg $* | |||
|
49 | > echo [$?] | |||
|
50 | > hg -R sub2 ci -m0sub2 | |||
|
51 | > echo % update substate when modifying .hgsub w/clean updated subrepo | |||
|
52 | > hg status -S | |||
|
53 | > echo '%' $* | |||
|
54 | > echo "$stdin" | hg $* | |||
|
55 | > hg debugsub | |||
|
56 | > } | |||
|
57 | ||||
|
58 | $ testrm1() { | |||
|
59 | > mksubrepo sub3 | |||
|
60 | > echo sub3 = sub3 >> .hgsub | |||
|
61 | > hg ci -Aqmsub3 | |||
|
62 | > $EXTRA | |||
|
63 | > echo b >> sub3/a | |||
|
64 | > hg rm .hgsub | |||
|
65 | > echo % update substate when removing .hgsub w/dirty subrepo | |||
|
66 | > hg status -S | |||
|
67 | > echo '%' $* | |||
|
68 | > echo "$stdin" | hg $* | |||
|
69 | > echo % debugsub should be empty | |||
|
70 | > hg debugsub | |||
|
71 | > } | |||
|
72 | $ testrm2() { | |||
|
73 | > mksubrepo sub4 | |||
|
74 | > echo sub4 = sub4 >> .hgsub | |||
|
75 | > hg ci -Aqmsub4 | |||
|
76 | > $EXTRA | |||
|
77 | > hg rm .hgsub | |||
|
78 | > echo % update substate when removing .hgsub w/clean updated subrepo | |||
|
79 | > hg status -S | |||
|
80 | > echo '%' $* | |||
|
81 | > echo "$stdin" | hg $* | |||
|
82 | > echo % debugsub should be empty | |||
|
83 | > hg debugsub | |||
|
84 | > } | |||
|
85 | ||||
|
86 | ||||
|
87 | handle subrepos safely on qnew | |||
|
88 | ||||
|
89 | $ mkrepo repo-2499-qnew | |||
|
90 | $ testadd qnew -m0 0.diff | |||
|
91 | adding a | |||
|
92 | % abort when adding .hgsub w/dirty subrepo | |||
|
93 | A .hgsub | |||
|
94 | A sub/a | |||
|
95 | % qnew -m0 0.diff | |||
|
96 | abort: uncommitted changes in subrepository sub | |||
|
97 | [255] | |||
|
98 | % update substate when adding .hgsub w/clean updated subrepo | |||
|
99 | A .hgsub | |||
|
100 | % qnew -m0 0.diff | |||
|
101 | committing subrepository sub | |||
|
102 | path sub | |||
|
103 | source sub | |||
|
104 | revision b2fdb12cd82b021c3b7053d67802e77b6eeaee31 | |||
|
105 | ||||
|
106 | $ testmod qnew -m1 1.diff | |||
|
107 | adding a | |||
|
108 | % abort when modifying .hgsub w/dirty subrepo | |||
|
109 | M .hgsub | |||
|
110 | A sub2/a | |||
|
111 | % qnew -m1 1.diff | |||
|
112 | abort: uncommitted changes in subrepository sub2 | |||
|
113 | [255] | |||
|
114 | % update substate when modifying .hgsub w/clean updated subrepo | |||
|
115 | M .hgsub | |||
|
116 | % qnew -m1 1.diff | |||
|
117 | committing subrepository sub2 | |||
|
118 | path sub | |||
|
119 | source sub | |||
|
120 | revision b2fdb12cd82b021c3b7053d67802e77b6eeaee31 | |||
|
121 | path sub2 | |||
|
122 | source sub2 | |||
|
123 | revision 1f94c7611cc6b74f5a17b16121a1170d44776845 | |||
|
124 | ||||
|
125 | $ hg qpop -qa | |||
|
126 | patch queue now empty | |||
|
127 | $ testrm1 qnew -m2 2.diff | |||
|
128 | adding a | |||
|
129 | % update substate when removing .hgsub w/dirty subrepo | |||
|
130 | M sub3/a | |||
|
131 | R .hgsub | |||
|
132 | % qnew -m2 2.diff | |||
|
133 | % debugsub should be empty | |||
|
134 | ||||
|
135 | $ hg qpop -qa | |||
|
136 | patch queue now empty | |||
|
137 | $ testrm2 qnew -m3 3.diff | |||
|
138 | adding a | |||
|
139 | % update substate when removing .hgsub w/clean updated subrepo | |||
|
140 | R .hgsub | |||
|
141 | % qnew -m3 3.diff | |||
|
142 | % debugsub should be empty | |||
|
143 | ||||
|
144 | $ cd .. | |||
|
145 | ||||
|
146 | ||||
|
147 | handle subrepos safely on qrefresh | |||
|
148 | ||||
|
149 | $ mkrepo repo-2499-qrefresh | |||
|
150 | $ hg qnew -m0 0.diff | |||
|
151 | $ testadd qrefresh | |||
|
152 | adding a | |||
|
153 | % abort when adding .hgsub w/dirty subrepo | |||
|
154 | A .hgsub | |||
|
155 | A sub/a | |||
|
156 | % qrefresh | |||
|
157 | abort: uncommitted changes in subrepository sub | |||
|
158 | [255] | |||
|
159 | % update substate when adding .hgsub w/clean updated subrepo | |||
|
160 | A .hgsub | |||
|
161 | % qrefresh | |||
|
162 | committing subrepository sub | |||
|
163 | path sub | |||
|
164 | source sub | |||
|
165 | revision b2fdb12cd82b021c3b7053d67802e77b6eeaee31 | |||
|
166 | ||||
|
167 | $ hg qnew -m1 1.diff | |||
|
168 | $ testmod qrefresh | |||
|
169 | adding a | |||
|
170 | % abort when modifying .hgsub w/dirty subrepo | |||
|
171 | M .hgsub | |||
|
172 | A sub2/a | |||
|
173 | % qrefresh | |||
|
174 | abort: uncommitted changes in subrepository sub2 | |||
|
175 | [255] | |||
|
176 | % update substate when modifying .hgsub w/clean updated subrepo | |||
|
177 | M .hgsub | |||
|
178 | % qrefresh | |||
|
179 | committing subrepository sub2 | |||
|
180 | path sub | |||
|
181 | source sub | |||
|
182 | revision b2fdb12cd82b021c3b7053d67802e77b6eeaee31 | |||
|
183 | path sub2 | |||
|
184 | source sub2 | |||
|
185 | revision 1f94c7611cc6b74f5a17b16121a1170d44776845 | |||
|
186 | ||||
|
187 | $ hg qpop -qa | |||
|
188 | patch queue now empty | |||
|
189 | $ EXTRA='hg qnew -m2 2.diff' testrm1 qrefresh | |||
|
190 | adding a | |||
|
191 | % update substate when removing .hgsub w/dirty subrepo | |||
|
192 | M sub3/a | |||
|
193 | R .hgsub | |||
|
194 | % qrefresh | |||
|
195 | % debugsub should be empty | |||
|
196 | ||||
|
197 | $ hg qpop -qa | |||
|
198 | patch queue now empty | |||
|
199 | $ EXTRA='hg qnew -m3 3.diff' testrm2 qrefresh | |||
|
200 | adding a | |||
|
201 | % update substate when removing .hgsub w/clean updated subrepo | |||
|
202 | R .hgsub | |||
|
203 | % qrefresh | |||
|
204 | % debugsub should be empty | |||
|
205 | ||||
|
206 | $ cd .. | |||
|
207 | ||||
|
208 | ||||
|
209 | handle subrepos safely on qpush/qpop | |||
|
210 | ||||
|
211 | $ mkrepo repo-2499-qpush | |||
|
212 | $ mksubrepo sub | |||
|
213 | adding a | |||
|
214 | $ hg -R sub ci -m0sub | |||
|
215 | $ echo sub = sub > .hgsub | |||
|
216 | $ hg add .hgsub | |||
|
217 | $ hg qnew -m0 0.diff | |||
|
218 | committing subrepository sub | |||
|
219 | $ hg debugsub | |||
|
220 | path sub | |||
|
221 | source sub | |||
|
222 | revision b2fdb12cd82b021c3b7053d67802e77b6eeaee31 | |||
|
223 | ||||
|
224 | qpop | |||
|
225 | $ hg qpop | |||
|
226 | popping 0.diff | |||
|
227 | patch queue now empty | |||
|
228 | $ hg status -AS | |||
|
229 | $ hg debugsub | |||
|
230 | ||||
|
231 | qpush | |||
|
232 | $ hg qpush | |||
|
233 | applying 0.diff | |||
|
234 | now at: 0.diff | |||
|
235 | $ hg status -AS | |||
|
236 | C .hgsub | |||
|
237 | C .hgsubstate | |||
|
238 | C sub/a | |||
|
239 | $ hg debugsub | |||
|
240 | path sub | |||
|
241 | source sub | |||
|
242 | revision b2fdb12cd82b021c3b7053d67802e77b6eeaee31 | |||
|
243 | ||||
|
244 | $ cd .. | |||
|
245 | ||||
|
246 | ||||
|
247 | handle subrepos safely on qrecord | |||
|
248 | ||||
|
249 | $ mkrepo repo-2499-qrecord | |||
|
250 | $ testadd qrecord --config ui.interactive=1 -m0 0.diff <<EOF | |||
|
251 | > y | |||
|
252 | > y | |||
|
253 | > EOF | |||
|
254 | adding a | |||
|
255 | % abort when adding .hgsub w/dirty subrepo | |||
|
256 | A .hgsub | |||
|
257 | A sub/a | |||
|
258 | % qrecord --config ui.interactive=1 -m0 0.diff | |||
|
259 | diff --git a/.hgsub b/.hgsub | |||
|
260 | new file mode 100644 | |||
|
261 | examine changes to '.hgsub'? [Ynsfdaq?] | |||
|
262 | abort: uncommitted changes in subrepository sub | |||
|
263 | [255] | |||
|
264 | % update substate when adding .hgsub w/clean updated subrepo | |||
|
265 | A .hgsub | |||
|
266 | % qrecord --config ui.interactive=1 -m0 0.diff | |||
|
267 | diff --git a/.hgsub b/.hgsub | |||
|
268 | new file mode 100644 | |||
|
269 | examine changes to '.hgsub'? [Ynsfdaq?] | |||
|
270 | committing subrepository sub | |||
|
271 | path sub | |||
|
272 | source sub | |||
|
273 | revision b2fdb12cd82b021c3b7053d67802e77b6eeaee31 | |||
|
274 | ||||
|
275 | $ testmod qrecord --config ui.interactive=1 -m1 1.diff <<EOF | |||
|
276 | > y | |||
|
277 | > y | |||
|
278 | > EOF | |||
|
279 | adding a | |||
|
280 | % abort when modifying .hgsub w/dirty subrepo | |||
|
281 | M .hgsub | |||
|
282 | A sub2/a | |||
|
283 | % qrecord --config ui.interactive=1 -m1 1.diff | |||
|
284 | diff --git a/.hgsub b/.hgsub | |||
|
285 | 1 hunks, 1 lines changed | |||
|
286 | examine changes to '.hgsub'? [Ynsfdaq?] | |||
|
287 | @@ -1,1 +1,2 @@ | |||
|
288 | sub = sub | |||
|
289 | +sub2 = sub2 | |||
|
290 | record this change to '.hgsub'? [Ynsfdaq?] | |||
|
291 | abort: uncommitted changes in subrepository sub2 | |||
|
292 | [255] | |||
|
293 | % update substate when modifying .hgsub w/clean updated subrepo | |||
|
294 | M .hgsub | |||
|
295 | % qrecord --config ui.interactive=1 -m1 1.diff | |||
|
296 | diff --git a/.hgsub b/.hgsub | |||
|
297 | 1 hunks, 1 lines changed | |||
|
298 | examine changes to '.hgsub'? [Ynsfdaq?] | |||
|
299 | @@ -1,1 +1,2 @@ | |||
|
300 | sub = sub | |||
|
301 | +sub2 = sub2 | |||
|
302 | record this change to '.hgsub'? [Ynsfdaq?] | |||
|
303 | committing subrepository sub2 | |||
|
304 | path sub | |||
|
305 | source sub | |||
|
306 | revision b2fdb12cd82b021c3b7053d67802e77b6eeaee31 | |||
|
307 | path sub2 | |||
|
308 | source sub2 | |||
|
309 | revision 1f94c7611cc6b74f5a17b16121a1170d44776845 | |||
|
310 | ||||
|
311 | $ hg qpop -qa | |||
|
312 | patch queue now empty | |||
|
313 | $ EXTRA= testrm1 qrecord --config ui.interactive=1 -m2 2.diff <<EOF | |||
|
314 | > y | |||
|
315 | > y | |||
|
316 | > EOF | |||
|
317 | adding a | |||
|
318 | % update substate when removing .hgsub w/dirty subrepo | |||
|
319 | M sub3/a | |||
|
320 | R .hgsub | |||
|
321 | % qrecord --config ui.interactive=1 -m2 2.diff | |||
|
322 | diff --git a/.hgsub b/.hgsub | |||
|
323 | deleted file mode 100644 | |||
|
324 | examine changes to '.hgsub'? [Ynsfdaq?] | |||
|
325 | % debugsub should be empty | |||
|
326 | ||||
|
327 | $ hg qpop -qa | |||
|
328 | patch queue now empty | |||
|
329 | $ EXTRA= testrm2 qrecord --config ui.interactive=1 -m3 3.diff <<EOF | |||
|
330 | > y | |||
|
331 | > y | |||
|
332 | > EOF | |||
|
333 | adding a | |||
|
334 | % update substate when removing .hgsub w/clean updated subrepo | |||
|
335 | R .hgsub | |||
|
336 | % qrecord --config ui.interactive=1 -m3 3.diff | |||
|
337 | diff --git a/.hgsub b/.hgsub | |||
|
338 | deleted file mode 100644 | |||
|
339 | examine changes to '.hgsub'? [Ynsfdaq?] | |||
|
340 | % debugsub should be empty | |||
|
341 | ||||
|
342 | $ cd .. |
@@ -1,3219 +1,3241 b'' | |||||
1 | # mq.py - patch queues for mercurial |
|
1 | # mq.py - patch queues for mercurial | |
2 | # |
|
2 | # | |
3 | # Copyright 2005, 2006 Chris Mason <mason@suse.com> |
|
3 | # Copyright 2005, 2006 Chris Mason <mason@suse.com> | |
4 | # |
|
4 | # | |
5 | # This software may be used and distributed according to the terms of the |
|
5 | # This software may be used and distributed according to the terms of the | |
6 | # GNU General Public License version 2 or any later version. |
|
6 | # GNU General Public License version 2 or any later version. | |
7 |
|
7 | |||
8 | '''manage a stack of patches |
|
8 | '''manage a stack of patches | |
9 |
|
9 | |||
10 | This extension lets you work with a stack of patches in a Mercurial |
|
10 | This extension lets you work with a stack of patches in a Mercurial | |
11 | repository. It manages two stacks of patches - all known patches, and |
|
11 | repository. It manages two stacks of patches - all known patches, and | |
12 | applied patches (subset of known patches). |
|
12 | applied patches (subset of known patches). | |
13 |
|
13 | |||
14 | Known patches are represented as patch files in the .hg/patches |
|
14 | Known patches are represented as patch files in the .hg/patches | |
15 | directory. Applied patches are both patch files and changesets. |
|
15 | directory. Applied patches are both patch files and changesets. | |
16 |
|
16 | |||
17 | Common tasks (use :hg:`help command` for more details):: |
|
17 | Common tasks (use :hg:`help command` for more details):: | |
18 |
|
18 | |||
19 | create new patch qnew |
|
19 | create new patch qnew | |
20 | import existing patch qimport |
|
20 | import existing patch qimport | |
21 |
|
21 | |||
22 | print patch series qseries |
|
22 | print patch series qseries | |
23 | print applied patches qapplied |
|
23 | print applied patches qapplied | |
24 |
|
24 | |||
25 | add known patch to applied stack qpush |
|
25 | add known patch to applied stack qpush | |
26 | remove patch from applied stack qpop |
|
26 | remove patch from applied stack qpop | |
27 | refresh contents of top applied patch qrefresh |
|
27 | refresh contents of top applied patch qrefresh | |
28 |
|
28 | |||
29 | By default, mq will automatically use git patches when required to |
|
29 | By default, mq will automatically use git patches when required to | |
30 | avoid losing file mode changes, copy records, binary files or empty |
|
30 | avoid losing file mode changes, copy records, binary files or empty | |
31 | files creations or deletions. This behaviour can be configured with:: |
|
31 | files creations or deletions. This behaviour can be configured with:: | |
32 |
|
32 | |||
33 | [mq] |
|
33 | [mq] | |
34 | git = auto/keep/yes/no |
|
34 | git = auto/keep/yes/no | |
35 |
|
35 | |||
36 | If set to 'keep', mq will obey the [diff] section configuration while |
|
36 | If set to 'keep', mq will obey the [diff] section configuration while | |
37 | preserving existing git patches upon qrefresh. If set to 'yes' or |
|
37 | preserving existing git patches upon qrefresh. If set to 'yes' or | |
38 | 'no', mq will override the [diff] section and always generate git or |
|
38 | 'no', mq will override the [diff] section and always generate git or | |
39 | regular patches, possibly losing data in the second case. |
|
39 | regular patches, possibly losing data in the second case. | |
40 |
|
40 | |||
41 | You will by default be managing a patch queue named "patches". You can |
|
41 | You will by default be managing a patch queue named "patches". You can | |
42 | create other, independent patch queues with the :hg:`qqueue` command. |
|
42 | create other, independent patch queues with the :hg:`qqueue` command. | |
43 | ''' |
|
43 | ''' | |
44 |
|
44 | |||
45 | from mercurial.i18n import _ |
|
45 | from mercurial.i18n import _ | |
46 | from mercurial.node import bin, hex, short, nullid, nullrev |
|
46 | from mercurial.node import bin, hex, short, nullid, nullrev | |
47 | from mercurial.lock import release |
|
47 | from mercurial.lock import release | |
48 | from mercurial import commands, cmdutil, hg, patch, util |
|
48 | from mercurial import commands, cmdutil, hg, patch, util | |
49 | from mercurial import repair, extensions, url, error |
|
49 | from mercurial import repair, extensions, url, error | |
50 | import os, sys, re, errno, shutil |
|
50 | import os, sys, re, errno, shutil | |
51 |
|
51 | |||
52 | commands.norepo += " qclone" |
|
52 | commands.norepo += " qclone" | |
53 |
|
53 | |||
54 | # Patch names looks like unix-file names. |
|
54 | # Patch names looks like unix-file names. | |
55 | # They must be joinable with queue directory and result in the patch path. |
|
55 | # They must be joinable with queue directory and result in the patch path. | |
56 | normname = util.normpath |
|
56 | normname = util.normpath | |
57 |
|
57 | |||
58 | class statusentry(object): |
|
58 | class statusentry(object): | |
59 | def __init__(self, node, name): |
|
59 | def __init__(self, node, name): | |
60 | self.node, self.name = node, name |
|
60 | self.node, self.name = node, name | |
61 | def __repr__(self): |
|
61 | def __repr__(self): | |
62 | return hex(self.node) + ':' + self.name |
|
62 | return hex(self.node) + ':' + self.name | |
63 |
|
63 | |||
64 | class patchheader(object): |
|
64 | class patchheader(object): | |
65 | def __init__(self, pf, plainmode=False): |
|
65 | def __init__(self, pf, plainmode=False): | |
66 | def eatdiff(lines): |
|
66 | def eatdiff(lines): | |
67 | while lines: |
|
67 | while lines: | |
68 | l = lines[-1] |
|
68 | l = lines[-1] | |
69 | if (l.startswith("diff -") or |
|
69 | if (l.startswith("diff -") or | |
70 | l.startswith("Index:") or |
|
70 | l.startswith("Index:") or | |
71 | l.startswith("===========")): |
|
71 | l.startswith("===========")): | |
72 | del lines[-1] |
|
72 | del lines[-1] | |
73 | else: |
|
73 | else: | |
74 | break |
|
74 | break | |
75 | def eatempty(lines): |
|
75 | def eatempty(lines): | |
76 | while lines: |
|
76 | while lines: | |
77 | if not lines[-1].strip(): |
|
77 | if not lines[-1].strip(): | |
78 | del lines[-1] |
|
78 | del lines[-1] | |
79 | else: |
|
79 | else: | |
80 | break |
|
80 | break | |
81 |
|
81 | |||
82 | message = [] |
|
82 | message = [] | |
83 | comments = [] |
|
83 | comments = [] | |
84 | user = None |
|
84 | user = None | |
85 | date = None |
|
85 | date = None | |
86 | parent = None |
|
86 | parent = None | |
87 | format = None |
|
87 | format = None | |
88 | subject = None |
|
88 | subject = None | |
89 | diffstart = 0 |
|
89 | diffstart = 0 | |
90 |
|
90 | |||
91 | for line in file(pf): |
|
91 | for line in file(pf): | |
92 | line = line.rstrip() |
|
92 | line = line.rstrip() | |
93 | if (line.startswith('diff --git') |
|
93 | if (line.startswith('diff --git') | |
94 | or (diffstart and line.startswith('+++ '))): |
|
94 | or (diffstart and line.startswith('+++ '))): | |
95 | diffstart = 2 |
|
95 | diffstart = 2 | |
96 | break |
|
96 | break | |
97 | diffstart = 0 # reset |
|
97 | diffstart = 0 # reset | |
98 | if line.startswith("--- "): |
|
98 | if line.startswith("--- "): | |
99 | diffstart = 1 |
|
99 | diffstart = 1 | |
100 | continue |
|
100 | continue | |
101 | elif format == "hgpatch": |
|
101 | elif format == "hgpatch": | |
102 | # parse values when importing the result of an hg export |
|
102 | # parse values when importing the result of an hg export | |
103 | if line.startswith("# User "): |
|
103 | if line.startswith("# User "): | |
104 | user = line[7:] |
|
104 | user = line[7:] | |
105 | elif line.startswith("# Date "): |
|
105 | elif line.startswith("# Date "): | |
106 | date = line[7:] |
|
106 | date = line[7:] | |
107 | elif line.startswith("# Parent "): |
|
107 | elif line.startswith("# Parent "): | |
108 | parent = line[9:] |
|
108 | parent = line[9:] | |
109 | elif not line.startswith("# ") and line: |
|
109 | elif not line.startswith("# ") and line: | |
110 | message.append(line) |
|
110 | message.append(line) | |
111 | format = None |
|
111 | format = None | |
112 | elif line == '# HG changeset patch': |
|
112 | elif line == '# HG changeset patch': | |
113 | message = [] |
|
113 | message = [] | |
114 | format = "hgpatch" |
|
114 | format = "hgpatch" | |
115 | elif (format != "tagdone" and (line.startswith("Subject: ") or |
|
115 | elif (format != "tagdone" and (line.startswith("Subject: ") or | |
116 | line.startswith("subject: "))): |
|
116 | line.startswith("subject: "))): | |
117 | subject = line[9:] |
|
117 | subject = line[9:] | |
118 | format = "tag" |
|
118 | format = "tag" | |
119 | elif (format != "tagdone" and (line.startswith("From: ") or |
|
119 | elif (format != "tagdone" and (line.startswith("From: ") or | |
120 | line.startswith("from: "))): |
|
120 | line.startswith("from: "))): | |
121 | user = line[6:] |
|
121 | user = line[6:] | |
122 | format = "tag" |
|
122 | format = "tag" | |
123 | elif (format != "tagdone" and (line.startswith("Date: ") or |
|
123 | elif (format != "tagdone" and (line.startswith("Date: ") or | |
124 | line.startswith("date: "))): |
|
124 | line.startswith("date: "))): | |
125 | date = line[6:] |
|
125 | date = line[6:] | |
126 | format = "tag" |
|
126 | format = "tag" | |
127 | elif format == "tag" and line == "": |
|
127 | elif format == "tag" and line == "": | |
128 | # when looking for tags (subject: from: etc) they |
|
128 | # when looking for tags (subject: from: etc) they | |
129 | # end once you find a blank line in the source |
|
129 | # end once you find a blank line in the source | |
130 | format = "tagdone" |
|
130 | format = "tagdone" | |
131 | elif message or line: |
|
131 | elif message or line: | |
132 | message.append(line) |
|
132 | message.append(line) | |
133 | comments.append(line) |
|
133 | comments.append(line) | |
134 |
|
134 | |||
135 | eatdiff(message) |
|
135 | eatdiff(message) | |
136 | eatdiff(comments) |
|
136 | eatdiff(comments) | |
137 | eatempty(message) |
|
137 | eatempty(message) | |
138 | eatempty(comments) |
|
138 | eatempty(comments) | |
139 |
|
139 | |||
140 | # make sure message isn't empty |
|
140 | # make sure message isn't empty | |
141 | if format and format.startswith("tag") and subject: |
|
141 | if format and format.startswith("tag") and subject: | |
142 | message.insert(0, "") |
|
142 | message.insert(0, "") | |
143 | message.insert(0, subject) |
|
143 | message.insert(0, subject) | |
144 |
|
144 | |||
145 | self.message = message |
|
145 | self.message = message | |
146 | self.comments = comments |
|
146 | self.comments = comments | |
147 | self.user = user |
|
147 | self.user = user | |
148 | self.date = date |
|
148 | self.date = date | |
149 | self.parent = parent |
|
149 | self.parent = parent | |
150 | self.haspatch = diffstart > 1 |
|
150 | self.haspatch = diffstart > 1 | |
151 | self.plainmode = plainmode |
|
151 | self.plainmode = plainmode | |
152 |
|
152 | |||
153 | def setuser(self, user): |
|
153 | def setuser(self, user): | |
154 | if not self.updateheader(['From: ', '# User '], user): |
|
154 | if not self.updateheader(['From: ', '# User '], user): | |
155 | try: |
|
155 | try: | |
156 | patchheaderat = self.comments.index('# HG changeset patch') |
|
156 | patchheaderat = self.comments.index('# HG changeset patch') | |
157 | self.comments.insert(patchheaderat + 1, '# User ' + user) |
|
157 | self.comments.insert(patchheaderat + 1, '# User ' + user) | |
158 | except ValueError: |
|
158 | except ValueError: | |
159 | if self.plainmode or self._hasheader(['Date: ']): |
|
159 | if self.plainmode or self._hasheader(['Date: ']): | |
160 | self.comments = ['From: ' + user] + self.comments |
|
160 | self.comments = ['From: ' + user] + self.comments | |
161 | else: |
|
161 | else: | |
162 | tmp = ['# HG changeset patch', '# User ' + user, ''] |
|
162 | tmp = ['# HG changeset patch', '# User ' + user, ''] | |
163 | self.comments = tmp + self.comments |
|
163 | self.comments = tmp + self.comments | |
164 | self.user = user |
|
164 | self.user = user | |
165 |
|
165 | |||
166 | def setdate(self, date): |
|
166 | def setdate(self, date): | |
167 | if not self.updateheader(['Date: ', '# Date '], date): |
|
167 | if not self.updateheader(['Date: ', '# Date '], date): | |
168 | try: |
|
168 | try: | |
169 | patchheaderat = self.comments.index('# HG changeset patch') |
|
169 | patchheaderat = self.comments.index('# HG changeset patch') | |
170 | self.comments.insert(patchheaderat + 1, '# Date ' + date) |
|
170 | self.comments.insert(patchheaderat + 1, '# Date ' + date) | |
171 | except ValueError: |
|
171 | except ValueError: | |
172 | if self.plainmode or self._hasheader(['From: ']): |
|
172 | if self.plainmode or self._hasheader(['From: ']): | |
173 | self.comments = ['Date: ' + date] + self.comments |
|
173 | self.comments = ['Date: ' + date] + self.comments | |
174 | else: |
|
174 | else: | |
175 | tmp = ['# HG changeset patch', '# Date ' + date, ''] |
|
175 | tmp = ['# HG changeset patch', '# Date ' + date, ''] | |
176 | self.comments = tmp + self.comments |
|
176 | self.comments = tmp + self.comments | |
177 | self.date = date |
|
177 | self.date = date | |
178 |
|
178 | |||
179 | def setparent(self, parent): |
|
179 | def setparent(self, parent): | |
180 | if not self.updateheader(['# Parent '], parent): |
|
180 | if not self.updateheader(['# Parent '], parent): | |
181 | try: |
|
181 | try: | |
182 | patchheaderat = self.comments.index('# HG changeset patch') |
|
182 | patchheaderat = self.comments.index('# HG changeset patch') | |
183 | self.comments.insert(patchheaderat + 1, '# Parent ' + parent) |
|
183 | self.comments.insert(patchheaderat + 1, '# Parent ' + parent) | |
184 | except ValueError: |
|
184 | except ValueError: | |
185 | pass |
|
185 | pass | |
186 | self.parent = parent |
|
186 | self.parent = parent | |
187 |
|
187 | |||
188 | def setmessage(self, message): |
|
188 | def setmessage(self, message): | |
189 | if self.comments: |
|
189 | if self.comments: | |
190 | self._delmsg() |
|
190 | self._delmsg() | |
191 | self.message = [message] |
|
191 | self.message = [message] | |
192 | self.comments += self.message |
|
192 | self.comments += self.message | |
193 |
|
193 | |||
194 | def updateheader(self, prefixes, new): |
|
194 | def updateheader(self, prefixes, new): | |
195 | '''Update all references to a field in the patch header. |
|
195 | '''Update all references to a field in the patch header. | |
196 | Return whether the field is present.''' |
|
196 | Return whether the field is present.''' | |
197 | res = False |
|
197 | res = False | |
198 | for prefix in prefixes: |
|
198 | for prefix in prefixes: | |
199 | for i in xrange(len(self.comments)): |
|
199 | for i in xrange(len(self.comments)): | |
200 | if self.comments[i].startswith(prefix): |
|
200 | if self.comments[i].startswith(prefix): | |
201 | self.comments[i] = prefix + new |
|
201 | self.comments[i] = prefix + new | |
202 | res = True |
|
202 | res = True | |
203 | break |
|
203 | break | |
204 | return res |
|
204 | return res | |
205 |
|
205 | |||
206 | def _hasheader(self, prefixes): |
|
206 | def _hasheader(self, prefixes): | |
207 | '''Check if a header starts with any of the given prefixes.''' |
|
207 | '''Check if a header starts with any of the given prefixes.''' | |
208 | for prefix in prefixes: |
|
208 | for prefix in prefixes: | |
209 | for comment in self.comments: |
|
209 | for comment in self.comments: | |
210 | if comment.startswith(prefix): |
|
210 | if comment.startswith(prefix): | |
211 | return True |
|
211 | return True | |
212 | return False |
|
212 | return False | |
213 |
|
213 | |||
214 | def __str__(self): |
|
214 | def __str__(self): | |
215 | if not self.comments: |
|
215 | if not self.comments: | |
216 | return '' |
|
216 | return '' | |
217 | return '\n'.join(self.comments) + '\n\n' |
|
217 | return '\n'.join(self.comments) + '\n\n' | |
218 |
|
218 | |||
219 | def _delmsg(self): |
|
219 | def _delmsg(self): | |
220 | '''Remove existing message, keeping the rest of the comments fields. |
|
220 | '''Remove existing message, keeping the rest of the comments fields. | |
221 | If comments contains 'subject: ', message will prepend |
|
221 | If comments contains 'subject: ', message will prepend | |
222 | the field and a blank line.''' |
|
222 | the field and a blank line.''' | |
223 | if self.message: |
|
223 | if self.message: | |
224 | subj = 'subject: ' + self.message[0].lower() |
|
224 | subj = 'subject: ' + self.message[0].lower() | |
225 | for i in xrange(len(self.comments)): |
|
225 | for i in xrange(len(self.comments)): | |
226 | if subj == self.comments[i].lower(): |
|
226 | if subj == self.comments[i].lower(): | |
227 | del self.comments[i] |
|
227 | del self.comments[i] | |
228 | self.message = self.message[2:] |
|
228 | self.message = self.message[2:] | |
229 | break |
|
229 | break | |
230 | ci = 0 |
|
230 | ci = 0 | |
231 | for mi in self.message: |
|
231 | for mi in self.message: | |
232 | while mi != self.comments[ci]: |
|
232 | while mi != self.comments[ci]: | |
233 | ci += 1 |
|
233 | ci += 1 | |
234 | del self.comments[ci] |
|
234 | del self.comments[ci] | |
235 |
|
235 | |||
236 | class queue(object): |
|
236 | class queue(object): | |
237 | def __init__(self, ui, path, patchdir=None): |
|
237 | def __init__(self, ui, path, patchdir=None): | |
238 | self.basepath = path |
|
238 | self.basepath = path | |
239 | try: |
|
239 | try: | |
240 | fh = open(os.path.join(path, 'patches.queue')) |
|
240 | fh = open(os.path.join(path, 'patches.queue')) | |
241 | cur = fh.read().rstrip() |
|
241 | cur = fh.read().rstrip() | |
242 | if not cur: |
|
242 | if not cur: | |
243 | curpath = os.path.join(path, 'patches') |
|
243 | curpath = os.path.join(path, 'patches') | |
244 | else: |
|
244 | else: | |
245 | curpath = os.path.join(path, 'patches-' + cur) |
|
245 | curpath = os.path.join(path, 'patches-' + cur) | |
246 | except IOError: |
|
246 | except IOError: | |
247 | curpath = os.path.join(path, 'patches') |
|
247 | curpath = os.path.join(path, 'patches') | |
248 | self.path = patchdir or curpath |
|
248 | self.path = patchdir or curpath | |
249 | self.opener = util.opener(self.path) |
|
249 | self.opener = util.opener(self.path) | |
250 | self.ui = ui |
|
250 | self.ui = ui | |
251 | self.applied_dirty = 0 |
|
251 | self.applied_dirty = 0 | |
252 | self.series_dirty = 0 |
|
252 | self.series_dirty = 0 | |
253 | self.added = [] |
|
253 | self.added = [] | |
254 | self.series_path = "series" |
|
254 | self.series_path = "series" | |
255 | self.status_path = "status" |
|
255 | self.status_path = "status" | |
256 | self.guards_path = "guards" |
|
256 | self.guards_path = "guards" | |
257 | self.active_guards = None |
|
257 | self.active_guards = None | |
258 | self.guards_dirty = False |
|
258 | self.guards_dirty = False | |
259 | # Handle mq.git as a bool with extended values |
|
259 | # Handle mq.git as a bool with extended values | |
260 | try: |
|
260 | try: | |
261 | gitmode = ui.configbool('mq', 'git', None) |
|
261 | gitmode = ui.configbool('mq', 'git', None) | |
262 | if gitmode is None: |
|
262 | if gitmode is None: | |
263 | raise error.ConfigError() |
|
263 | raise error.ConfigError() | |
264 | self.gitmode = gitmode and 'yes' or 'no' |
|
264 | self.gitmode = gitmode and 'yes' or 'no' | |
265 | except error.ConfigError: |
|
265 | except error.ConfigError: | |
266 | self.gitmode = ui.config('mq', 'git', 'auto').lower() |
|
266 | self.gitmode = ui.config('mq', 'git', 'auto').lower() | |
267 | self.plainmode = ui.configbool('mq', 'plain', False) |
|
267 | self.plainmode = ui.configbool('mq', 'plain', False) | |
268 |
|
268 | |||
269 | @util.propertycache |
|
269 | @util.propertycache | |
270 | def applied(self): |
|
270 | def applied(self): | |
271 | if os.path.exists(self.join(self.status_path)): |
|
271 | if os.path.exists(self.join(self.status_path)): | |
272 | def parse(l): |
|
272 | def parse(l): | |
273 | n, name = l.split(':', 1) |
|
273 | n, name = l.split(':', 1) | |
274 | return statusentry(bin(n), name) |
|
274 | return statusentry(bin(n), name) | |
275 | lines = self.opener(self.status_path).read().splitlines() |
|
275 | lines = self.opener(self.status_path).read().splitlines() | |
276 | return [parse(l) for l in lines] |
|
276 | return [parse(l) for l in lines] | |
277 | return [] |
|
277 | return [] | |
278 |
|
278 | |||
279 | @util.propertycache |
|
279 | @util.propertycache | |
280 | def full_series(self): |
|
280 | def full_series(self): | |
281 | if os.path.exists(self.join(self.series_path)): |
|
281 | if os.path.exists(self.join(self.series_path)): | |
282 | return self.opener(self.series_path).read().splitlines() |
|
282 | return self.opener(self.series_path).read().splitlines() | |
283 | return [] |
|
283 | return [] | |
284 |
|
284 | |||
285 | @util.propertycache |
|
285 | @util.propertycache | |
286 | def series(self): |
|
286 | def series(self): | |
287 | self.parse_series() |
|
287 | self.parse_series() | |
288 | return self.series |
|
288 | return self.series | |
289 |
|
289 | |||
290 | @util.propertycache |
|
290 | @util.propertycache | |
291 | def series_guards(self): |
|
291 | def series_guards(self): | |
292 | self.parse_series() |
|
292 | self.parse_series() | |
293 | return self.series_guards |
|
293 | return self.series_guards | |
294 |
|
294 | |||
295 | def invalidate(self): |
|
295 | def invalidate(self): | |
296 | for a in 'applied full_series series series_guards'.split(): |
|
296 | for a in 'applied full_series series series_guards'.split(): | |
297 | if a in self.__dict__: |
|
297 | if a in self.__dict__: | |
298 | delattr(self, a) |
|
298 | delattr(self, a) | |
299 | self.applied_dirty = 0 |
|
299 | self.applied_dirty = 0 | |
300 | self.series_dirty = 0 |
|
300 | self.series_dirty = 0 | |
301 | self.guards_dirty = False |
|
301 | self.guards_dirty = False | |
302 | self.active_guards = None |
|
302 | self.active_guards = None | |
303 |
|
303 | |||
304 | def diffopts(self, opts={}, patchfn=None): |
|
304 | def diffopts(self, opts={}, patchfn=None): | |
305 | diffopts = patch.diffopts(self.ui, opts) |
|
305 | diffopts = patch.diffopts(self.ui, opts) | |
306 | if self.gitmode == 'auto': |
|
306 | if self.gitmode == 'auto': | |
307 | diffopts.upgrade = True |
|
307 | diffopts.upgrade = True | |
308 | elif self.gitmode == 'keep': |
|
308 | elif self.gitmode == 'keep': | |
309 | pass |
|
309 | pass | |
310 | elif self.gitmode in ('yes', 'no'): |
|
310 | elif self.gitmode in ('yes', 'no'): | |
311 | diffopts.git = self.gitmode == 'yes' |
|
311 | diffopts.git = self.gitmode == 'yes' | |
312 | else: |
|
312 | else: | |
313 | raise util.Abort(_('mq.git option can be auto/keep/yes/no' |
|
313 | raise util.Abort(_('mq.git option can be auto/keep/yes/no' | |
314 | ' got %s') % self.gitmode) |
|
314 | ' got %s') % self.gitmode) | |
315 | if patchfn: |
|
315 | if patchfn: | |
316 | diffopts = self.patchopts(diffopts, patchfn) |
|
316 | diffopts = self.patchopts(diffopts, patchfn) | |
317 | return diffopts |
|
317 | return diffopts | |
318 |
|
318 | |||
319 | def patchopts(self, diffopts, *patches): |
|
319 | def patchopts(self, diffopts, *patches): | |
320 | """Return a copy of input diff options with git set to true if |
|
320 | """Return a copy of input diff options with git set to true if | |
321 | referenced patch is a git patch and should be preserved as such. |
|
321 | referenced patch is a git patch and should be preserved as such. | |
322 | """ |
|
322 | """ | |
323 | diffopts = diffopts.copy() |
|
323 | diffopts = diffopts.copy() | |
324 | if not diffopts.git and self.gitmode == 'keep': |
|
324 | if not diffopts.git and self.gitmode == 'keep': | |
325 | for patchfn in patches: |
|
325 | for patchfn in patches: | |
326 | patchf = self.opener(patchfn, 'r') |
|
326 | patchf = self.opener(patchfn, 'r') | |
327 | # if the patch was a git patch, refresh it as a git patch |
|
327 | # if the patch was a git patch, refresh it as a git patch | |
328 | for line in patchf: |
|
328 | for line in patchf: | |
329 | if line.startswith('diff --git'): |
|
329 | if line.startswith('diff --git'): | |
330 | diffopts.git = True |
|
330 | diffopts.git = True | |
331 | break |
|
331 | break | |
332 | patchf.close() |
|
332 | patchf.close() | |
333 | return diffopts |
|
333 | return diffopts | |
334 |
|
334 | |||
335 | def join(self, *p): |
|
335 | def join(self, *p): | |
336 | return os.path.join(self.path, *p) |
|
336 | return os.path.join(self.path, *p) | |
337 |
|
337 | |||
338 | def find_series(self, patch): |
|
338 | def find_series(self, patch): | |
339 | def matchpatch(l): |
|
339 | def matchpatch(l): | |
340 | l = l.split('#', 1)[0] |
|
340 | l = l.split('#', 1)[0] | |
341 | return l.strip() == patch |
|
341 | return l.strip() == patch | |
342 | for index, l in enumerate(self.full_series): |
|
342 | for index, l in enumerate(self.full_series): | |
343 | if matchpatch(l): |
|
343 | if matchpatch(l): | |
344 | return index |
|
344 | return index | |
345 | return None |
|
345 | return None | |
346 |
|
346 | |||
347 | guard_re = re.compile(r'\s?#([-+][^-+# \t\r\n\f][^# \t\r\n\f]*)') |
|
347 | guard_re = re.compile(r'\s?#([-+][^-+# \t\r\n\f][^# \t\r\n\f]*)') | |
348 |
|
348 | |||
349 | def parse_series(self): |
|
349 | def parse_series(self): | |
350 | self.series = [] |
|
350 | self.series = [] | |
351 | self.series_guards = [] |
|
351 | self.series_guards = [] | |
352 | for l in self.full_series: |
|
352 | for l in self.full_series: | |
353 | h = l.find('#') |
|
353 | h = l.find('#') | |
354 | if h == -1: |
|
354 | if h == -1: | |
355 | patch = l |
|
355 | patch = l | |
356 | comment = '' |
|
356 | comment = '' | |
357 | elif h == 0: |
|
357 | elif h == 0: | |
358 | continue |
|
358 | continue | |
359 | else: |
|
359 | else: | |
360 | patch = l[:h] |
|
360 | patch = l[:h] | |
361 | comment = l[h:] |
|
361 | comment = l[h:] | |
362 | patch = patch.strip() |
|
362 | patch = patch.strip() | |
363 | if patch: |
|
363 | if patch: | |
364 | if patch in self.series: |
|
364 | if patch in self.series: | |
365 | raise util.Abort(_('%s appears more than once in %s') % |
|
365 | raise util.Abort(_('%s appears more than once in %s') % | |
366 | (patch, self.join(self.series_path))) |
|
366 | (patch, self.join(self.series_path))) | |
367 | self.series.append(patch) |
|
367 | self.series.append(patch) | |
368 | self.series_guards.append(self.guard_re.findall(comment)) |
|
368 | self.series_guards.append(self.guard_re.findall(comment)) | |
369 |
|
369 | |||
370 | def check_guard(self, guard): |
|
370 | def check_guard(self, guard): | |
371 | if not guard: |
|
371 | if not guard: | |
372 | return _('guard cannot be an empty string') |
|
372 | return _('guard cannot be an empty string') | |
373 | bad_chars = '# \t\r\n\f' |
|
373 | bad_chars = '# \t\r\n\f' | |
374 | first = guard[0] |
|
374 | first = guard[0] | |
375 | if first in '-+': |
|
375 | if first in '-+': | |
376 | return (_('guard %r starts with invalid character: %r') % |
|
376 | return (_('guard %r starts with invalid character: %r') % | |
377 | (guard, first)) |
|
377 | (guard, first)) | |
378 | for c in bad_chars: |
|
378 | for c in bad_chars: | |
379 | if c in guard: |
|
379 | if c in guard: | |
380 | return _('invalid character in guard %r: %r') % (guard, c) |
|
380 | return _('invalid character in guard %r: %r') % (guard, c) | |
381 |
|
381 | |||
382 | def set_active(self, guards): |
|
382 | def set_active(self, guards): | |
383 | for guard in guards: |
|
383 | for guard in guards: | |
384 | bad = self.check_guard(guard) |
|
384 | bad = self.check_guard(guard) | |
385 | if bad: |
|
385 | if bad: | |
386 | raise util.Abort(bad) |
|
386 | raise util.Abort(bad) | |
387 | guards = sorted(set(guards)) |
|
387 | guards = sorted(set(guards)) | |
388 | self.ui.debug('active guards: %s\n' % ' '.join(guards)) |
|
388 | self.ui.debug('active guards: %s\n' % ' '.join(guards)) | |
389 | self.active_guards = guards |
|
389 | self.active_guards = guards | |
390 | self.guards_dirty = True |
|
390 | self.guards_dirty = True | |
391 |
|
391 | |||
392 | def active(self): |
|
392 | def active(self): | |
393 | if self.active_guards is None: |
|
393 | if self.active_guards is None: | |
394 | self.active_guards = [] |
|
394 | self.active_guards = [] | |
395 | try: |
|
395 | try: | |
396 | guards = self.opener(self.guards_path).read().split() |
|
396 | guards = self.opener(self.guards_path).read().split() | |
397 | except IOError, err: |
|
397 | except IOError, err: | |
398 | if err.errno != errno.ENOENT: |
|
398 | if err.errno != errno.ENOENT: | |
399 | raise |
|
399 | raise | |
400 | guards = [] |
|
400 | guards = [] | |
401 | for i, guard in enumerate(guards): |
|
401 | for i, guard in enumerate(guards): | |
402 | bad = self.check_guard(guard) |
|
402 | bad = self.check_guard(guard) | |
403 | if bad: |
|
403 | if bad: | |
404 | self.ui.warn('%s:%d: %s\n' % |
|
404 | self.ui.warn('%s:%d: %s\n' % | |
405 | (self.join(self.guards_path), i + 1, bad)) |
|
405 | (self.join(self.guards_path), i + 1, bad)) | |
406 | else: |
|
406 | else: | |
407 | self.active_guards.append(guard) |
|
407 | self.active_guards.append(guard) | |
408 | return self.active_guards |
|
408 | return self.active_guards | |
409 |
|
409 | |||
410 | def set_guards(self, idx, guards): |
|
410 | def set_guards(self, idx, guards): | |
411 | for g in guards: |
|
411 | for g in guards: | |
412 | if len(g) < 2: |
|
412 | if len(g) < 2: | |
413 | raise util.Abort(_('guard %r too short') % g) |
|
413 | raise util.Abort(_('guard %r too short') % g) | |
414 | if g[0] not in '-+': |
|
414 | if g[0] not in '-+': | |
415 | raise util.Abort(_('guard %r starts with invalid char') % g) |
|
415 | raise util.Abort(_('guard %r starts with invalid char') % g) | |
416 | bad = self.check_guard(g[1:]) |
|
416 | bad = self.check_guard(g[1:]) | |
417 | if bad: |
|
417 | if bad: | |
418 | raise util.Abort(bad) |
|
418 | raise util.Abort(bad) | |
419 | drop = self.guard_re.sub('', self.full_series[idx]) |
|
419 | drop = self.guard_re.sub('', self.full_series[idx]) | |
420 | self.full_series[idx] = drop + ''.join([' #' + g for g in guards]) |
|
420 | self.full_series[idx] = drop + ''.join([' #' + g for g in guards]) | |
421 | self.parse_series() |
|
421 | self.parse_series() | |
422 | self.series_dirty = True |
|
422 | self.series_dirty = True | |
423 |
|
423 | |||
424 | def pushable(self, idx): |
|
424 | def pushable(self, idx): | |
425 | if isinstance(idx, str): |
|
425 | if isinstance(idx, str): | |
426 | idx = self.series.index(idx) |
|
426 | idx = self.series.index(idx) | |
427 | patchguards = self.series_guards[idx] |
|
427 | patchguards = self.series_guards[idx] | |
428 | if not patchguards: |
|
428 | if not patchguards: | |
429 | return True, None |
|
429 | return True, None | |
430 | guards = self.active() |
|
430 | guards = self.active() | |
431 | exactneg = [g for g in patchguards if g[0] == '-' and g[1:] in guards] |
|
431 | exactneg = [g for g in patchguards if g[0] == '-' and g[1:] in guards] | |
432 | if exactneg: |
|
432 | if exactneg: | |
433 | return False, exactneg[0] |
|
433 | return False, exactneg[0] | |
434 | pos = [g for g in patchguards if g[0] == '+'] |
|
434 | pos = [g for g in patchguards if g[0] == '+'] | |
435 | exactpos = [g for g in pos if g[1:] in guards] |
|
435 | exactpos = [g for g in pos if g[1:] in guards] | |
436 | if pos: |
|
436 | if pos: | |
437 | if exactpos: |
|
437 | if exactpos: | |
438 | return True, exactpos[0] |
|
438 | return True, exactpos[0] | |
439 | return False, pos |
|
439 | return False, pos | |
440 | return True, '' |
|
440 | return True, '' | |
441 |
|
441 | |||
442 | def explain_pushable(self, idx, all_patches=False): |
|
442 | def explain_pushable(self, idx, all_patches=False): | |
443 | write = all_patches and self.ui.write or self.ui.warn |
|
443 | write = all_patches and self.ui.write or self.ui.warn | |
444 | if all_patches or self.ui.verbose: |
|
444 | if all_patches or self.ui.verbose: | |
445 | if isinstance(idx, str): |
|
445 | if isinstance(idx, str): | |
446 | idx = self.series.index(idx) |
|
446 | idx = self.series.index(idx) | |
447 | pushable, why = self.pushable(idx) |
|
447 | pushable, why = self.pushable(idx) | |
448 | if all_patches and pushable: |
|
448 | if all_patches and pushable: | |
449 | if why is None: |
|
449 | if why is None: | |
450 | write(_('allowing %s - no guards in effect\n') % |
|
450 | write(_('allowing %s - no guards in effect\n') % | |
451 | self.series[idx]) |
|
451 | self.series[idx]) | |
452 | else: |
|
452 | else: | |
453 | if not why: |
|
453 | if not why: | |
454 | write(_('allowing %s - no matching negative guards\n') % |
|
454 | write(_('allowing %s - no matching negative guards\n') % | |
455 | self.series[idx]) |
|
455 | self.series[idx]) | |
456 | else: |
|
456 | else: | |
457 | write(_('allowing %s - guarded by %r\n') % |
|
457 | write(_('allowing %s - guarded by %r\n') % | |
458 | (self.series[idx], why)) |
|
458 | (self.series[idx], why)) | |
459 | if not pushable: |
|
459 | if not pushable: | |
460 | if why: |
|
460 | if why: | |
461 | write(_('skipping %s - guarded by %r\n') % |
|
461 | write(_('skipping %s - guarded by %r\n') % | |
462 | (self.series[idx], why)) |
|
462 | (self.series[idx], why)) | |
463 | else: |
|
463 | else: | |
464 | write(_('skipping %s - no matching guards\n') % |
|
464 | write(_('skipping %s - no matching guards\n') % | |
465 | self.series[idx]) |
|
465 | self.series[idx]) | |
466 |
|
466 | |||
467 | def save_dirty(self): |
|
467 | def save_dirty(self): | |
468 | def write_list(items, path): |
|
468 | def write_list(items, path): | |
469 | fp = self.opener(path, 'w') |
|
469 | fp = self.opener(path, 'w') | |
470 | for i in items: |
|
470 | for i in items: | |
471 | fp.write("%s\n" % i) |
|
471 | fp.write("%s\n" % i) | |
472 | fp.close() |
|
472 | fp.close() | |
473 | if self.applied_dirty: |
|
473 | if self.applied_dirty: | |
474 | write_list(map(str, self.applied), self.status_path) |
|
474 | write_list(map(str, self.applied), self.status_path) | |
475 | if self.series_dirty: |
|
475 | if self.series_dirty: | |
476 | write_list(self.full_series, self.series_path) |
|
476 | write_list(self.full_series, self.series_path) | |
477 | if self.guards_dirty: |
|
477 | if self.guards_dirty: | |
478 | write_list(self.active_guards, self.guards_path) |
|
478 | write_list(self.active_guards, self.guards_path) | |
479 | if self.added: |
|
479 | if self.added: | |
480 | qrepo = self.qrepo() |
|
480 | qrepo = self.qrepo() | |
481 | if qrepo: |
|
481 | if qrepo: | |
482 | qrepo[None].add(f for f in self.added if f not in qrepo[None]) |
|
482 | qrepo[None].add(f for f in self.added if f not in qrepo[None]) | |
483 | self.added = [] |
|
483 | self.added = [] | |
484 |
|
484 | |||
485 | def removeundo(self, repo): |
|
485 | def removeundo(self, repo): | |
486 | undo = repo.sjoin('undo') |
|
486 | undo = repo.sjoin('undo') | |
487 | if not os.path.exists(undo): |
|
487 | if not os.path.exists(undo): | |
488 | return |
|
488 | return | |
489 | try: |
|
489 | try: | |
490 | os.unlink(undo) |
|
490 | os.unlink(undo) | |
491 | except OSError, inst: |
|
491 | except OSError, inst: | |
492 | self.ui.warn(_('error removing undo: %s\n') % str(inst)) |
|
492 | self.ui.warn(_('error removing undo: %s\n') % str(inst)) | |
493 |
|
493 | |||
494 | def printdiff(self, repo, diffopts, node1, node2=None, files=None, |
|
494 | def printdiff(self, repo, diffopts, node1, node2=None, files=None, | |
495 | fp=None, changes=None, opts={}): |
|
495 | fp=None, changes=None, opts={}): | |
496 | stat = opts.get('stat') |
|
496 | stat = opts.get('stat') | |
497 | m = cmdutil.match(repo, files, opts) |
|
497 | m = cmdutil.match(repo, files, opts) | |
498 | cmdutil.diffordiffstat(self.ui, repo, diffopts, node1, node2, m, |
|
498 | cmdutil.diffordiffstat(self.ui, repo, diffopts, node1, node2, m, | |
499 | changes, stat, fp) |
|
499 | changes, stat, fp) | |
500 |
|
500 | |||
501 | def mergeone(self, repo, mergeq, head, patch, rev, diffopts): |
|
501 | def mergeone(self, repo, mergeq, head, patch, rev, diffopts): | |
502 | # first try just applying the patch |
|
502 | # first try just applying the patch | |
503 | (err, n) = self.apply(repo, [patch], update_status=False, |
|
503 | (err, n) = self.apply(repo, [patch], update_status=False, | |
504 | strict=True, merge=rev) |
|
504 | strict=True, merge=rev) | |
505 |
|
505 | |||
506 | if err == 0: |
|
506 | if err == 0: | |
507 | return (err, n) |
|
507 | return (err, n) | |
508 |
|
508 | |||
509 | if n is None: |
|
509 | if n is None: | |
510 | raise util.Abort(_("apply failed for patch %s") % patch) |
|
510 | raise util.Abort(_("apply failed for patch %s") % patch) | |
511 |
|
511 | |||
512 | self.ui.warn(_("patch didn't work out, merging %s\n") % patch) |
|
512 | self.ui.warn(_("patch didn't work out, merging %s\n") % patch) | |
513 |
|
513 | |||
514 | # apply failed, strip away that rev and merge. |
|
514 | # apply failed, strip away that rev and merge. | |
515 | hg.clean(repo, head) |
|
515 | hg.clean(repo, head) | |
516 | self.strip(repo, [n], update=False, backup='strip') |
|
516 | self.strip(repo, [n], update=False, backup='strip') | |
517 |
|
517 | |||
518 | ctx = repo[rev] |
|
518 | ctx = repo[rev] | |
519 | ret = hg.merge(repo, rev) |
|
519 | ret = hg.merge(repo, rev) | |
520 | if ret: |
|
520 | if ret: | |
521 | raise util.Abort(_("update returned %d") % ret) |
|
521 | raise util.Abort(_("update returned %d") % ret) | |
522 | n = repo.commit(ctx.description(), ctx.user(), force=True) |
|
522 | n = repo.commit(ctx.description(), ctx.user(), force=True) | |
523 | if n is None: |
|
523 | if n is None: | |
524 | raise util.Abort(_("repo commit failed")) |
|
524 | raise util.Abort(_("repo commit failed")) | |
525 | try: |
|
525 | try: | |
526 | ph = patchheader(mergeq.join(patch), self.plainmode) |
|
526 | ph = patchheader(mergeq.join(patch), self.plainmode) | |
527 | except: |
|
527 | except: | |
528 | raise util.Abort(_("unable to read %s") % patch) |
|
528 | raise util.Abort(_("unable to read %s") % patch) | |
529 |
|
529 | |||
530 | diffopts = self.patchopts(diffopts, patch) |
|
530 | diffopts = self.patchopts(diffopts, patch) | |
531 | patchf = self.opener(patch, "w") |
|
531 | patchf = self.opener(patch, "w") | |
532 | comments = str(ph) |
|
532 | comments = str(ph) | |
533 | if comments: |
|
533 | if comments: | |
534 | patchf.write(comments) |
|
534 | patchf.write(comments) | |
535 | self.printdiff(repo, diffopts, head, n, fp=patchf) |
|
535 | self.printdiff(repo, diffopts, head, n, fp=patchf) | |
536 | patchf.close() |
|
536 | patchf.close() | |
537 | self.removeundo(repo) |
|
537 | self.removeundo(repo) | |
538 | return (0, n) |
|
538 | return (0, n) | |
539 |
|
539 | |||
540 | def qparents(self, repo, rev=None): |
|
540 | def qparents(self, repo, rev=None): | |
541 | if rev is None: |
|
541 | if rev is None: | |
542 | (p1, p2) = repo.dirstate.parents() |
|
542 | (p1, p2) = repo.dirstate.parents() | |
543 | if p2 == nullid: |
|
543 | if p2 == nullid: | |
544 | return p1 |
|
544 | return p1 | |
545 | if not self.applied: |
|
545 | if not self.applied: | |
546 | return None |
|
546 | return None | |
547 | return self.applied[-1].node |
|
547 | return self.applied[-1].node | |
548 | p1, p2 = repo.changelog.parents(rev) |
|
548 | p1, p2 = repo.changelog.parents(rev) | |
549 | if p2 != nullid and p2 in [x.node for x in self.applied]: |
|
549 | if p2 != nullid and p2 in [x.node for x in self.applied]: | |
550 | return p2 |
|
550 | return p2 | |
551 | return p1 |
|
551 | return p1 | |
552 |
|
552 | |||
553 | def mergepatch(self, repo, mergeq, series, diffopts): |
|
553 | def mergepatch(self, repo, mergeq, series, diffopts): | |
554 | if not self.applied: |
|
554 | if not self.applied: | |
555 | # each of the patches merged in will have two parents. This |
|
555 | # each of the patches merged in will have two parents. This | |
556 | # can confuse the qrefresh, qdiff, and strip code because it |
|
556 | # can confuse the qrefresh, qdiff, and strip code because it | |
557 | # needs to know which parent is actually in the patch queue. |
|
557 | # needs to know which parent is actually in the patch queue. | |
558 | # so, we insert a merge marker with only one parent. This way |
|
558 | # so, we insert a merge marker with only one parent. This way | |
559 | # the first patch in the queue is never a merge patch |
|
559 | # the first patch in the queue is never a merge patch | |
560 | # |
|
560 | # | |
561 | pname = ".hg.patches.merge.marker" |
|
561 | pname = ".hg.patches.merge.marker" | |
562 | n = repo.commit('[mq]: merge marker', force=True) |
|
562 | n = repo.commit('[mq]: merge marker', force=True) | |
563 | self.removeundo(repo) |
|
563 | self.removeundo(repo) | |
564 | self.applied.append(statusentry(n, pname)) |
|
564 | self.applied.append(statusentry(n, pname)) | |
565 | self.applied_dirty = 1 |
|
565 | self.applied_dirty = 1 | |
566 |
|
566 | |||
567 | head = self.qparents(repo) |
|
567 | head = self.qparents(repo) | |
568 |
|
568 | |||
569 | for patch in series: |
|
569 | for patch in series: | |
570 | patch = mergeq.lookup(patch, strict=True) |
|
570 | patch = mergeq.lookup(patch, strict=True) | |
571 | if not patch: |
|
571 | if not patch: | |
572 | self.ui.warn(_("patch %s does not exist\n") % patch) |
|
572 | self.ui.warn(_("patch %s does not exist\n") % patch) | |
573 | return (1, None) |
|
573 | return (1, None) | |
574 | pushable, reason = self.pushable(patch) |
|
574 | pushable, reason = self.pushable(patch) | |
575 | if not pushable: |
|
575 | if not pushable: | |
576 | self.explain_pushable(patch, all_patches=True) |
|
576 | self.explain_pushable(patch, all_patches=True) | |
577 | continue |
|
577 | continue | |
578 | info = mergeq.isapplied(patch) |
|
578 | info = mergeq.isapplied(patch) | |
579 | if not info: |
|
579 | if not info: | |
580 | self.ui.warn(_("patch %s is not applied\n") % patch) |
|
580 | self.ui.warn(_("patch %s is not applied\n") % patch) | |
581 | return (1, None) |
|
581 | return (1, None) | |
582 | rev = info[1] |
|
582 | rev = info[1] | |
583 | err, head = self.mergeone(repo, mergeq, head, patch, rev, diffopts) |
|
583 | err, head = self.mergeone(repo, mergeq, head, patch, rev, diffopts) | |
584 | if head: |
|
584 | if head: | |
585 | self.applied.append(statusentry(head, patch)) |
|
585 | self.applied.append(statusentry(head, patch)) | |
586 | self.applied_dirty = 1 |
|
586 | self.applied_dirty = 1 | |
587 | if err: |
|
587 | if err: | |
588 | return (err, head) |
|
588 | return (err, head) | |
589 | self.save_dirty() |
|
589 | self.save_dirty() | |
590 | return (0, head) |
|
590 | return (0, head) | |
591 |
|
591 | |||
592 | def patch(self, repo, patchfile): |
|
592 | def patch(self, repo, patchfile): | |
593 | '''Apply patchfile to the working directory. |
|
593 | '''Apply patchfile to the working directory. | |
594 | patchfile: name of patch file''' |
|
594 | patchfile: name of patch file''' | |
595 | files = {} |
|
595 | files = {} | |
596 | try: |
|
596 | try: | |
597 | fuzz = patch.patch(patchfile, self.ui, strip=1, cwd=repo.root, |
|
597 | fuzz = patch.patch(patchfile, self.ui, strip=1, cwd=repo.root, | |
598 | files=files, eolmode=None) |
|
598 | files=files, eolmode=None) | |
599 | except Exception, inst: |
|
599 | except Exception, inst: | |
600 | self.ui.note(str(inst) + '\n') |
|
600 | self.ui.note(str(inst) + '\n') | |
601 | if not self.ui.verbose: |
|
601 | if not self.ui.verbose: | |
602 | self.ui.warn(_("patch failed, unable to continue (try -v)\n")) |
|
602 | self.ui.warn(_("patch failed, unable to continue (try -v)\n")) | |
603 | return (False, files, False) |
|
603 | return (False, files, False) | |
604 |
|
604 | |||
605 | return (True, files, fuzz) |
|
605 | return (True, files, fuzz) | |
606 |
|
606 | |||
607 | def apply(self, repo, series, list=False, update_status=True, |
|
607 | def apply(self, repo, series, list=False, update_status=True, | |
608 | strict=False, patchdir=None, merge=None, all_files=None): |
|
608 | strict=False, patchdir=None, merge=None, all_files=None): | |
609 | wlock = lock = tr = None |
|
609 | wlock = lock = tr = None | |
610 | try: |
|
610 | try: | |
611 | wlock = repo.wlock() |
|
611 | wlock = repo.wlock() | |
612 | lock = repo.lock() |
|
612 | lock = repo.lock() | |
613 | tr = repo.transaction("qpush") |
|
613 | tr = repo.transaction("qpush") | |
614 | try: |
|
614 | try: | |
615 | ret = self._apply(repo, series, list, update_status, |
|
615 | ret = self._apply(repo, series, list, update_status, | |
616 | strict, patchdir, merge, all_files=all_files) |
|
616 | strict, patchdir, merge, all_files=all_files) | |
617 | tr.close() |
|
617 | tr.close() | |
618 | self.save_dirty() |
|
618 | self.save_dirty() | |
619 | return ret |
|
619 | return ret | |
620 | except: |
|
620 | except: | |
621 | try: |
|
621 | try: | |
622 | tr.abort() |
|
622 | tr.abort() | |
623 | finally: |
|
623 | finally: | |
624 | repo.invalidate() |
|
624 | repo.invalidate() | |
625 | repo.dirstate.invalidate() |
|
625 | repo.dirstate.invalidate() | |
626 | raise |
|
626 | raise | |
627 | finally: |
|
627 | finally: | |
628 | release(tr, lock, wlock) |
|
628 | release(tr, lock, wlock) | |
629 | self.removeundo(repo) |
|
629 | self.removeundo(repo) | |
630 |
|
630 | |||
631 | def _apply(self, repo, series, list=False, update_status=True, |
|
631 | def _apply(self, repo, series, list=False, update_status=True, | |
632 | strict=False, patchdir=None, merge=None, all_files=None): |
|
632 | strict=False, patchdir=None, merge=None, all_files=None): | |
633 | '''returns (error, hash) |
|
633 | '''returns (error, hash) | |
634 | error = 1 for unable to read, 2 for patch failed, 3 for patch fuzz''' |
|
634 | error = 1 for unable to read, 2 for patch failed, 3 for patch fuzz''' | |
635 | # TODO unify with commands.py |
|
635 | # TODO unify with commands.py | |
636 | if not patchdir: |
|
636 | if not patchdir: | |
637 | patchdir = self.path |
|
637 | patchdir = self.path | |
638 | err = 0 |
|
638 | err = 0 | |
639 | n = None |
|
639 | n = None | |
640 | for patchname in series: |
|
640 | for patchname in series: | |
641 | pushable, reason = self.pushable(patchname) |
|
641 | pushable, reason = self.pushable(patchname) | |
642 | if not pushable: |
|
642 | if not pushable: | |
643 | self.explain_pushable(patchname, all_patches=True) |
|
643 | self.explain_pushable(patchname, all_patches=True) | |
644 | continue |
|
644 | continue | |
645 | self.ui.status(_("applying %s\n") % patchname) |
|
645 | self.ui.status(_("applying %s\n") % patchname) | |
646 | pf = os.path.join(patchdir, patchname) |
|
646 | pf = os.path.join(patchdir, patchname) | |
647 |
|
647 | |||
648 | try: |
|
648 | try: | |
649 | ph = patchheader(self.join(patchname), self.plainmode) |
|
649 | ph = patchheader(self.join(patchname), self.plainmode) | |
650 | except: |
|
650 | except: | |
651 | self.ui.warn(_("unable to read %s\n") % patchname) |
|
651 | self.ui.warn(_("unable to read %s\n") % patchname) | |
652 | err = 1 |
|
652 | err = 1 | |
653 | break |
|
653 | break | |
654 |
|
654 | |||
655 | message = ph.message |
|
655 | message = ph.message | |
656 | if not message: |
|
656 | if not message: | |
657 | # The commit message should not be translated |
|
657 | # The commit message should not be translated | |
658 | message = "imported patch %s\n" % patchname |
|
658 | message = "imported patch %s\n" % patchname | |
659 | else: |
|
659 | else: | |
660 | if list: |
|
660 | if list: | |
661 | # The commit message should not be translated |
|
661 | # The commit message should not be translated | |
662 | message.append("\nimported patch %s" % patchname) |
|
662 | message.append("\nimported patch %s" % patchname) | |
663 | message = '\n'.join(message) |
|
663 | message = '\n'.join(message) | |
664 |
|
664 | |||
665 | if ph.haspatch: |
|
665 | if ph.haspatch: | |
666 | (patcherr, files, fuzz) = self.patch(repo, pf) |
|
666 | (patcherr, files, fuzz) = self.patch(repo, pf) | |
667 | if all_files is not None: |
|
667 | if all_files is not None: | |
668 | all_files.update(files) |
|
668 | all_files.update(files) | |
669 | patcherr = not patcherr |
|
669 | patcherr = not patcherr | |
670 | else: |
|
670 | else: | |
671 | self.ui.warn(_("patch %s is empty\n") % patchname) |
|
671 | self.ui.warn(_("patch %s is empty\n") % patchname) | |
672 | patcherr, files, fuzz = 0, [], 0 |
|
672 | patcherr, files, fuzz = 0, [], 0 | |
673 |
|
673 | |||
674 | if merge and files: |
|
674 | if merge and files: | |
675 | # Mark as removed/merged and update dirstate parent info |
|
675 | # Mark as removed/merged and update dirstate parent info | |
676 | removed = [] |
|
676 | removed = [] | |
677 | merged = [] |
|
677 | merged = [] | |
678 | for f in files: |
|
678 | for f in files: | |
679 | if os.path.lexists(repo.wjoin(f)): |
|
679 | if os.path.lexists(repo.wjoin(f)): | |
680 | merged.append(f) |
|
680 | merged.append(f) | |
681 | else: |
|
681 | else: | |
682 | removed.append(f) |
|
682 | removed.append(f) | |
683 | for f in removed: |
|
683 | for f in removed: | |
684 | repo.dirstate.remove(f) |
|
684 | repo.dirstate.remove(f) | |
685 | for f in merged: |
|
685 | for f in merged: | |
686 | repo.dirstate.merge(f) |
|
686 | repo.dirstate.merge(f) | |
687 | p1, p2 = repo.dirstate.parents() |
|
687 | p1, p2 = repo.dirstate.parents() | |
688 | repo.dirstate.setparents(p1, merge) |
|
688 | repo.dirstate.setparents(p1, merge) | |
689 |
|
689 | |||
690 | files = cmdutil.updatedir(self.ui, repo, files) |
|
690 | files = cmdutil.updatedir(self.ui, repo, files) | |
691 | match = cmdutil.matchfiles(repo, files or []) |
|
691 | match = cmdutil.matchfiles(repo, files or []) | |
692 | n = repo.commit(message, ph.user, ph.date, match=match, force=True) |
|
692 | n = repo.commit(message, ph.user, ph.date, match=match, force=True) | |
693 |
|
693 | |||
694 | if n is None: |
|
694 | if n is None: | |
695 | raise util.Abort(_("repository commit failed")) |
|
695 | raise util.Abort(_("repository commit failed")) | |
696 |
|
696 | |||
697 | if update_status: |
|
697 | if update_status: | |
698 | self.applied.append(statusentry(n, patchname)) |
|
698 | self.applied.append(statusentry(n, patchname)) | |
699 |
|
699 | |||
700 | if patcherr: |
|
700 | if patcherr: | |
701 | self.ui.warn(_("patch failed, rejects left in working dir\n")) |
|
701 | self.ui.warn(_("patch failed, rejects left in working dir\n")) | |
702 | err = 2 |
|
702 | err = 2 | |
703 | break |
|
703 | break | |
704 |
|
704 | |||
705 | if fuzz and strict: |
|
705 | if fuzz and strict: | |
706 | self.ui.warn(_("fuzz found when applying patch, stopping\n")) |
|
706 | self.ui.warn(_("fuzz found when applying patch, stopping\n")) | |
707 | err = 3 |
|
707 | err = 3 | |
708 | break |
|
708 | break | |
709 | return (err, n) |
|
709 | return (err, n) | |
710 |
|
710 | |||
711 | def _cleanup(self, patches, numrevs, keep=False): |
|
711 | def _cleanup(self, patches, numrevs, keep=False): | |
712 | if not keep: |
|
712 | if not keep: | |
713 | r = self.qrepo() |
|
713 | r = self.qrepo() | |
714 | if r: |
|
714 | if r: | |
715 | r[None].remove(patches, True) |
|
715 | r[None].remove(patches, True) | |
716 | else: |
|
716 | else: | |
717 | for p in patches: |
|
717 | for p in patches: | |
718 | os.unlink(self.join(p)) |
|
718 | os.unlink(self.join(p)) | |
719 |
|
719 | |||
720 | if numrevs: |
|
720 | if numrevs: | |
721 | del self.applied[:numrevs] |
|
721 | del self.applied[:numrevs] | |
722 | self.applied_dirty = 1 |
|
722 | self.applied_dirty = 1 | |
723 |
|
723 | |||
724 | for i in sorted([self.find_series(p) for p in patches], reverse=True): |
|
724 | for i in sorted([self.find_series(p) for p in patches], reverse=True): | |
725 | del self.full_series[i] |
|
725 | del self.full_series[i] | |
726 | self.parse_series() |
|
726 | self.parse_series() | |
727 | self.series_dirty = 1 |
|
727 | self.series_dirty = 1 | |
728 |
|
728 | |||
729 | def _revpatches(self, repo, revs): |
|
729 | def _revpatches(self, repo, revs): | |
730 | firstrev = repo[self.applied[0].node].rev() |
|
730 | firstrev = repo[self.applied[0].node].rev() | |
731 | patches = [] |
|
731 | patches = [] | |
732 | for i, rev in enumerate(revs): |
|
732 | for i, rev in enumerate(revs): | |
733 |
|
733 | |||
734 | if rev < firstrev: |
|
734 | if rev < firstrev: | |
735 | raise util.Abort(_('revision %d is not managed') % rev) |
|
735 | raise util.Abort(_('revision %d is not managed') % rev) | |
736 |
|
736 | |||
737 | ctx = repo[rev] |
|
737 | ctx = repo[rev] | |
738 | base = self.applied[i].node |
|
738 | base = self.applied[i].node | |
739 | if ctx.node() != base: |
|
739 | if ctx.node() != base: | |
740 | msg = _('cannot delete revision %d above applied patches') |
|
740 | msg = _('cannot delete revision %d above applied patches') | |
741 | raise util.Abort(msg % rev) |
|
741 | raise util.Abort(msg % rev) | |
742 |
|
742 | |||
743 | patch = self.applied[i].name |
|
743 | patch = self.applied[i].name | |
744 | for fmt in ('[mq]: %s', 'imported patch %s'): |
|
744 | for fmt in ('[mq]: %s', 'imported patch %s'): | |
745 | if ctx.description() == fmt % patch: |
|
745 | if ctx.description() == fmt % patch: | |
746 | msg = _('patch %s finalized without changeset message\n') |
|
746 | msg = _('patch %s finalized without changeset message\n') | |
747 | repo.ui.status(msg % patch) |
|
747 | repo.ui.status(msg % patch) | |
748 | break |
|
748 | break | |
749 |
|
749 | |||
750 | patches.append(patch) |
|
750 | patches.append(patch) | |
751 | return patches |
|
751 | return patches | |
752 |
|
752 | |||
753 | def finish(self, repo, revs): |
|
753 | def finish(self, repo, revs): | |
754 | patches = self._revpatches(repo, sorted(revs)) |
|
754 | patches = self._revpatches(repo, sorted(revs)) | |
755 | self._cleanup(patches, len(patches)) |
|
755 | self._cleanup(patches, len(patches)) | |
756 |
|
756 | |||
757 | def delete(self, repo, patches, opts): |
|
757 | def delete(self, repo, patches, opts): | |
758 | if not patches and not opts.get('rev'): |
|
758 | if not patches and not opts.get('rev'): | |
759 | raise util.Abort(_('qdelete requires at least one revision or ' |
|
759 | raise util.Abort(_('qdelete requires at least one revision or ' | |
760 | 'patch name')) |
|
760 | 'patch name')) | |
761 |
|
761 | |||
762 | realpatches = [] |
|
762 | realpatches = [] | |
763 | for patch in patches: |
|
763 | for patch in patches: | |
764 | patch = self.lookup(patch, strict=True) |
|
764 | patch = self.lookup(patch, strict=True) | |
765 | info = self.isapplied(patch) |
|
765 | info = self.isapplied(patch) | |
766 | if info: |
|
766 | if info: | |
767 | raise util.Abort(_("cannot delete applied patch %s") % patch) |
|
767 | raise util.Abort(_("cannot delete applied patch %s") % patch) | |
768 | if patch not in self.series: |
|
768 | if patch not in self.series: | |
769 | raise util.Abort(_("patch %s not in series file") % patch) |
|
769 | raise util.Abort(_("patch %s not in series file") % patch) | |
770 | if patch not in realpatches: |
|
770 | if patch not in realpatches: | |
771 | realpatches.append(patch) |
|
771 | realpatches.append(patch) | |
772 |
|
772 | |||
773 | numrevs = 0 |
|
773 | numrevs = 0 | |
774 | if opts.get('rev'): |
|
774 | if opts.get('rev'): | |
775 | if not self.applied: |
|
775 | if not self.applied: | |
776 | raise util.Abort(_('no patches applied')) |
|
776 | raise util.Abort(_('no patches applied')) | |
777 | revs = cmdutil.revrange(repo, opts.get('rev')) |
|
777 | revs = cmdutil.revrange(repo, opts.get('rev')) | |
778 | if len(revs) > 1 and revs[0] > revs[1]: |
|
778 | if len(revs) > 1 and revs[0] > revs[1]: | |
779 | revs.reverse() |
|
779 | revs.reverse() | |
780 | revpatches = self._revpatches(repo, revs) |
|
780 | revpatches = self._revpatches(repo, revs) | |
781 | realpatches += revpatches |
|
781 | realpatches += revpatches | |
782 | numrevs = len(revpatches) |
|
782 | numrevs = len(revpatches) | |
783 |
|
783 | |||
784 | self._cleanup(realpatches, numrevs, opts.get('keep')) |
|
784 | self._cleanup(realpatches, numrevs, opts.get('keep')) | |
785 |
|
785 | |||
786 | def check_toppatch(self, repo): |
|
786 | def check_toppatch(self, repo): | |
787 | if self.applied: |
|
787 | if self.applied: | |
788 | top = self.applied[-1].node |
|
788 | top = self.applied[-1].node | |
789 | patch = self.applied[-1].name |
|
789 | patch = self.applied[-1].name | |
790 | pp = repo.dirstate.parents() |
|
790 | pp = repo.dirstate.parents() | |
791 | if top not in pp: |
|
791 | if top not in pp: | |
792 | raise util.Abort(_("working directory revision is not qtip")) |
|
792 | raise util.Abort(_("working directory revision is not qtip")) | |
793 | return top, patch |
|
793 | return top, patch | |
794 | return None, None |
|
794 | return None, None | |
795 |
|
795 | |||
|
796 | def check_substate(self, repo): | |||
|
797 | '''return list of subrepos at a different revision than substate. | |||
|
798 | Abort if any subrepos have uncommitted changes.''' | |||
|
799 | inclsubs = [] | |||
|
800 | wctx = repo[None] | |||
|
801 | for s in wctx.substate: | |||
|
802 | if wctx.sub(s).dirty(True): | |||
|
803 | raise util.Abort( | |||
|
804 | _("uncommitted changes in subrepository %s") % s) | |||
|
805 | elif wctx.sub(s).dirty(): | |||
|
806 | inclsubs.append(s) | |||
|
807 | return inclsubs | |||
|
808 | ||||
796 | def check_localchanges(self, repo, force=False, refresh=True): |
|
809 | def check_localchanges(self, repo, force=False, refresh=True): | |
797 | m, a, r, d = repo.status()[:4] |
|
810 | m, a, r, d = repo.status()[:4] | |
798 | if (m or a or r or d) and not force: |
|
811 | if (m or a or r or d) and not force: | |
799 | if refresh: |
|
812 | if refresh: | |
800 | raise util.Abort(_("local changes found, refresh first")) |
|
813 | raise util.Abort(_("local changes found, refresh first")) | |
801 | else: |
|
814 | else: | |
802 | raise util.Abort(_("local changes found")) |
|
815 | raise util.Abort(_("local changes found")) | |
803 | return m, a, r, d |
|
816 | return m, a, r, d | |
804 |
|
817 | |||
805 | _reserved = ('series', 'status', 'guards') |
|
818 | _reserved = ('series', 'status', 'guards') | |
806 | def check_reserved_name(self, name): |
|
819 | def check_reserved_name(self, name): | |
807 | if (name in self._reserved or name.startswith('.hg') |
|
820 | if (name in self._reserved or name.startswith('.hg') | |
808 | or name.startswith('.mq') or '#' in name or ':' in name): |
|
821 | or name.startswith('.mq') or '#' in name or ':' in name): | |
809 | raise util.Abort(_('"%s" cannot be used as the name of a patch') |
|
822 | raise util.Abort(_('"%s" cannot be used as the name of a patch') | |
810 | % name) |
|
823 | % name) | |
811 |
|
824 | |||
812 | def new(self, repo, patchfn, *pats, **opts): |
|
825 | def new(self, repo, patchfn, *pats, **opts): | |
813 | """options: |
|
826 | """options: | |
814 | msg: a string or a no-argument function returning a string |
|
827 | msg: a string or a no-argument function returning a string | |
815 | """ |
|
828 | """ | |
816 | msg = opts.get('msg') |
|
829 | msg = opts.get('msg') | |
817 | user = opts.get('user') |
|
830 | user = opts.get('user') | |
818 | date = opts.get('date') |
|
831 | date = opts.get('date') | |
819 | if date: |
|
832 | if date: | |
820 | date = util.parsedate(date) |
|
833 | date = util.parsedate(date) | |
821 | diffopts = self.diffopts({'git': opts.get('git')}) |
|
834 | diffopts = self.diffopts({'git': opts.get('git')}) | |
822 | self.check_reserved_name(patchfn) |
|
835 | self.check_reserved_name(patchfn) | |
823 | if os.path.exists(self.join(patchfn)): |
|
836 | if os.path.exists(self.join(patchfn)): | |
824 | if os.path.isdir(self.join(patchfn)): |
|
837 | if os.path.isdir(self.join(patchfn)): | |
825 | raise util.Abort(_('"%s" already exists as a directory') |
|
838 | raise util.Abort(_('"%s" already exists as a directory') | |
826 | % patchfn) |
|
839 | % patchfn) | |
827 | else: |
|
840 | else: | |
828 | raise util.Abort(_('patch "%s" already exists') % patchfn) |
|
841 | raise util.Abort(_('patch "%s" already exists') % patchfn) | |
|
842 | ||||
|
843 | inclsubs = self.check_substate(repo) | |||
|
844 | if inclsubs: | |||
|
845 | inclsubs.append('.hgsubstate') | |||
829 | if opts.get('include') or opts.get('exclude') or pats: |
|
846 | if opts.get('include') or opts.get('exclude') or pats: | |
|
847 | if inclsubs: | |||
|
848 | pats = list(pats or []) + inclsubs | |||
830 | match = cmdutil.match(repo, pats, opts) |
|
849 | match = cmdutil.match(repo, pats, opts) | |
831 | # detect missing files in pats |
|
850 | # detect missing files in pats | |
832 | def badfn(f, msg): |
|
851 | def badfn(f, msg): | |
833 | raise util.Abort('%s: %s' % (f, msg)) |
|
852 | if f != '.hgsubstate': # .hgsubstate is auto-created | |
|
853 | raise util.Abort('%s: %s' % (f, msg)) | |||
834 | match.bad = badfn |
|
854 | match.bad = badfn | |
835 | m, a, r, d = repo.status(match=match)[:4] |
|
855 | m, a, r, d = repo.status(match=match)[:4] | |
836 | else: |
|
856 | else: | |
837 | m, a, r, d = self.check_localchanges(repo, force=True) |
|
857 | m, a, r, d = self.check_localchanges(repo, force=True) | |
838 | match = cmdutil.matchfiles(repo, m + a + r) |
|
858 | match = cmdutil.matchfiles(repo, m + a + r + inclsubs) | |
839 | if len(repo[None].parents()) > 1: |
|
859 | if len(repo[None].parents()) > 1: | |
840 | raise util.Abort(_('cannot manage merge changesets')) |
|
860 | raise util.Abort(_('cannot manage merge changesets')) | |
841 | commitfiles = m + a + r |
|
861 | commitfiles = m + a + r | |
842 | self.check_toppatch(repo) |
|
862 | self.check_toppatch(repo) | |
843 | insert = self.full_series_end() |
|
863 | insert = self.full_series_end() | |
844 | wlock = repo.wlock() |
|
864 | wlock = repo.wlock() | |
845 | try: |
|
865 | try: | |
846 | try: |
|
866 | try: | |
847 | # if patch file write fails, abort early |
|
867 | # if patch file write fails, abort early | |
848 | p = self.opener(patchfn, "w") |
|
868 | p = self.opener(patchfn, "w") | |
849 | except IOError, e: |
|
869 | except IOError, e: | |
850 | raise util.Abort(_('cannot write patch "%s": %s') |
|
870 | raise util.Abort(_('cannot write patch "%s": %s') | |
851 | % (patchfn, e.strerror)) |
|
871 | % (patchfn, e.strerror)) | |
852 | try: |
|
872 | try: | |
853 | if self.plainmode: |
|
873 | if self.plainmode: | |
854 | if user: |
|
874 | if user: | |
855 | p.write("From: " + user + "\n") |
|
875 | p.write("From: " + user + "\n") | |
856 | if not date: |
|
876 | if not date: | |
857 | p.write("\n") |
|
877 | p.write("\n") | |
858 | if date: |
|
878 | if date: | |
859 | p.write("Date: %d %d\n\n" % date) |
|
879 | p.write("Date: %d %d\n\n" % date) | |
860 | else: |
|
880 | else: | |
861 | p.write("# HG changeset patch\n") |
|
881 | p.write("# HG changeset patch\n") | |
862 | p.write("# Parent " |
|
882 | p.write("# Parent " | |
863 | + hex(repo[None].parents()[0].node()) + "\n") |
|
883 | + hex(repo[None].parents()[0].node()) + "\n") | |
864 | if user: |
|
884 | if user: | |
865 | p.write("# User " + user + "\n") |
|
885 | p.write("# User " + user + "\n") | |
866 | if date: |
|
886 | if date: | |
867 | p.write("# Date %s %s\n\n" % date) |
|
887 | p.write("# Date %s %s\n\n" % date) | |
868 | if hasattr(msg, '__call__'): |
|
888 | if hasattr(msg, '__call__'): | |
869 | msg = msg() |
|
889 | msg = msg() | |
870 | commitmsg = msg and msg or ("[mq]: %s" % patchfn) |
|
890 | commitmsg = msg and msg or ("[mq]: %s" % patchfn) | |
871 | n = repo.commit(commitmsg, user, date, match=match, force=True) |
|
891 | n = repo.commit(commitmsg, user, date, match=match, force=True) | |
872 | if n is None: |
|
892 | if n is None: | |
873 | raise util.Abort(_("repo commit failed")) |
|
893 | raise util.Abort(_("repo commit failed")) | |
874 | try: |
|
894 | try: | |
875 | self.full_series[insert:insert] = [patchfn] |
|
895 | self.full_series[insert:insert] = [patchfn] | |
876 | self.applied.append(statusentry(n, patchfn)) |
|
896 | self.applied.append(statusentry(n, patchfn)) | |
877 | self.parse_series() |
|
897 | self.parse_series() | |
878 | self.series_dirty = 1 |
|
898 | self.series_dirty = 1 | |
879 | self.applied_dirty = 1 |
|
899 | self.applied_dirty = 1 | |
880 | if msg: |
|
900 | if msg: | |
881 | msg = msg + "\n\n" |
|
901 | msg = msg + "\n\n" | |
882 | p.write(msg) |
|
902 | p.write(msg) | |
883 | if commitfiles: |
|
903 | if commitfiles: | |
884 | parent = self.qparents(repo, n) |
|
904 | parent = self.qparents(repo, n) | |
885 | chunks = patch.diff(repo, node1=parent, node2=n, |
|
905 | chunks = patch.diff(repo, node1=parent, node2=n, | |
886 | match=match, opts=diffopts) |
|
906 | match=match, opts=diffopts) | |
887 | for chunk in chunks: |
|
907 | for chunk in chunks: | |
888 | p.write(chunk) |
|
908 | p.write(chunk) | |
889 | p.close() |
|
909 | p.close() | |
890 | wlock.release() |
|
910 | wlock.release() | |
891 | wlock = None |
|
911 | wlock = None | |
892 | r = self.qrepo() |
|
912 | r = self.qrepo() | |
893 | if r: |
|
913 | if r: | |
894 | r[None].add([patchfn]) |
|
914 | r[None].add([patchfn]) | |
895 | except: |
|
915 | except: | |
896 | repo.rollback() |
|
916 | repo.rollback() | |
897 | raise |
|
917 | raise | |
898 | except Exception: |
|
918 | except Exception: | |
899 | patchpath = self.join(patchfn) |
|
919 | patchpath = self.join(patchfn) | |
900 | try: |
|
920 | try: | |
901 | os.unlink(patchpath) |
|
921 | os.unlink(patchpath) | |
902 | except: |
|
922 | except: | |
903 | self.ui.warn(_('error unlinking %s\n') % patchpath) |
|
923 | self.ui.warn(_('error unlinking %s\n') % patchpath) | |
904 | raise |
|
924 | raise | |
905 | self.removeundo(repo) |
|
925 | self.removeundo(repo) | |
906 | finally: |
|
926 | finally: | |
907 | release(wlock) |
|
927 | release(wlock) | |
908 |
|
928 | |||
909 | def strip(self, repo, revs, update=True, backup="all", force=None): |
|
929 | def strip(self, repo, revs, update=True, backup="all", force=None): | |
910 | wlock = lock = None |
|
930 | wlock = lock = None | |
911 | try: |
|
931 | try: | |
912 | wlock = repo.wlock() |
|
932 | wlock = repo.wlock() | |
913 | lock = repo.lock() |
|
933 | lock = repo.lock() | |
914 |
|
934 | |||
915 | if update: |
|
935 | if update: | |
916 | self.check_localchanges(repo, force=force, refresh=False) |
|
936 | self.check_localchanges(repo, force=force, refresh=False) | |
917 | urev = self.qparents(repo, revs[0]) |
|
937 | urev = self.qparents(repo, revs[0]) | |
918 | hg.clean(repo, urev) |
|
938 | hg.clean(repo, urev) | |
919 | repo.dirstate.write() |
|
939 | repo.dirstate.write() | |
920 |
|
940 | |||
921 | self.removeundo(repo) |
|
941 | self.removeundo(repo) | |
922 | for rev in revs: |
|
942 | for rev in revs: | |
923 | repair.strip(self.ui, repo, rev, backup) |
|
943 | repair.strip(self.ui, repo, rev, backup) | |
924 | # strip may have unbundled a set of backed up revisions after |
|
944 | # strip may have unbundled a set of backed up revisions after | |
925 | # the actual strip |
|
945 | # the actual strip | |
926 | self.removeundo(repo) |
|
946 | self.removeundo(repo) | |
927 | finally: |
|
947 | finally: | |
928 | release(lock, wlock) |
|
948 | release(lock, wlock) | |
929 |
|
949 | |||
930 | def isapplied(self, patch): |
|
950 | def isapplied(self, patch): | |
931 | """returns (index, rev, patch)""" |
|
951 | """returns (index, rev, patch)""" | |
932 | for i, a in enumerate(self.applied): |
|
952 | for i, a in enumerate(self.applied): | |
933 | if a.name == patch: |
|
953 | if a.name == patch: | |
934 | return (i, a.node, a.name) |
|
954 | return (i, a.node, a.name) | |
935 | return None |
|
955 | return None | |
936 |
|
956 | |||
937 | # if the exact patch name does not exist, we try a few |
|
957 | # if the exact patch name does not exist, we try a few | |
938 | # variations. If strict is passed, we try only #1 |
|
958 | # variations. If strict is passed, we try only #1 | |
939 | # |
|
959 | # | |
940 | # 1) a number to indicate an offset in the series file |
|
960 | # 1) a number to indicate an offset in the series file | |
941 | # 2) a unique substring of the patch name was given |
|
961 | # 2) a unique substring of the patch name was given | |
942 | # 3) patchname[-+]num to indicate an offset in the series file |
|
962 | # 3) patchname[-+]num to indicate an offset in the series file | |
943 | def lookup(self, patch, strict=False): |
|
963 | def lookup(self, patch, strict=False): | |
944 | patch = patch and str(patch) |
|
964 | patch = patch and str(patch) | |
945 |
|
965 | |||
946 | def partial_name(s): |
|
966 | def partial_name(s): | |
947 | if s in self.series: |
|
967 | if s in self.series: | |
948 | return s |
|
968 | return s | |
949 | matches = [x for x in self.series if s in x] |
|
969 | matches = [x for x in self.series if s in x] | |
950 | if len(matches) > 1: |
|
970 | if len(matches) > 1: | |
951 | self.ui.warn(_('patch name "%s" is ambiguous:\n') % s) |
|
971 | self.ui.warn(_('patch name "%s" is ambiguous:\n') % s) | |
952 | for m in matches: |
|
972 | for m in matches: | |
953 | self.ui.warn(' %s\n' % m) |
|
973 | self.ui.warn(' %s\n' % m) | |
954 | return None |
|
974 | return None | |
955 | if matches: |
|
975 | if matches: | |
956 | return matches[0] |
|
976 | return matches[0] | |
957 | if self.series and self.applied: |
|
977 | if self.series and self.applied: | |
958 | if s == 'qtip': |
|
978 | if s == 'qtip': | |
959 | return self.series[self.series_end(True)-1] |
|
979 | return self.series[self.series_end(True)-1] | |
960 | if s == 'qbase': |
|
980 | if s == 'qbase': | |
961 | return self.series[0] |
|
981 | return self.series[0] | |
962 | return None |
|
982 | return None | |
963 |
|
983 | |||
964 | if patch is None: |
|
984 | if patch is None: | |
965 | return None |
|
985 | return None | |
966 | if patch in self.series: |
|
986 | if patch in self.series: | |
967 | return patch |
|
987 | return patch | |
968 |
|
988 | |||
969 | if not os.path.isfile(self.join(patch)): |
|
989 | if not os.path.isfile(self.join(patch)): | |
970 | try: |
|
990 | try: | |
971 | sno = int(patch) |
|
991 | sno = int(patch) | |
972 | except (ValueError, OverflowError): |
|
992 | except (ValueError, OverflowError): | |
973 | pass |
|
993 | pass | |
974 | else: |
|
994 | else: | |
975 | if -len(self.series) <= sno < len(self.series): |
|
995 | if -len(self.series) <= sno < len(self.series): | |
976 | return self.series[sno] |
|
996 | return self.series[sno] | |
977 |
|
997 | |||
978 | if not strict: |
|
998 | if not strict: | |
979 | res = partial_name(patch) |
|
999 | res = partial_name(patch) | |
980 | if res: |
|
1000 | if res: | |
981 | return res |
|
1001 | return res | |
982 | minus = patch.rfind('-') |
|
1002 | minus = patch.rfind('-') | |
983 | if minus >= 0: |
|
1003 | if minus >= 0: | |
984 | res = partial_name(patch[:minus]) |
|
1004 | res = partial_name(patch[:minus]) | |
985 | if res: |
|
1005 | if res: | |
986 | i = self.series.index(res) |
|
1006 | i = self.series.index(res) | |
987 | try: |
|
1007 | try: | |
988 | off = int(patch[minus + 1:] or 1) |
|
1008 | off = int(patch[minus + 1:] or 1) | |
989 | except (ValueError, OverflowError): |
|
1009 | except (ValueError, OverflowError): | |
990 | pass |
|
1010 | pass | |
991 | else: |
|
1011 | else: | |
992 | if i - off >= 0: |
|
1012 | if i - off >= 0: | |
993 | return self.series[i - off] |
|
1013 | return self.series[i - off] | |
994 | plus = patch.rfind('+') |
|
1014 | plus = patch.rfind('+') | |
995 | if plus >= 0: |
|
1015 | if plus >= 0: | |
996 | res = partial_name(patch[:plus]) |
|
1016 | res = partial_name(patch[:plus]) | |
997 | if res: |
|
1017 | if res: | |
998 | i = self.series.index(res) |
|
1018 | i = self.series.index(res) | |
999 | try: |
|
1019 | try: | |
1000 | off = int(patch[plus + 1:] or 1) |
|
1020 | off = int(patch[plus + 1:] or 1) | |
1001 | except (ValueError, OverflowError): |
|
1021 | except (ValueError, OverflowError): | |
1002 | pass |
|
1022 | pass | |
1003 | else: |
|
1023 | else: | |
1004 | if i + off < len(self.series): |
|
1024 | if i + off < len(self.series): | |
1005 | return self.series[i + off] |
|
1025 | return self.series[i + off] | |
1006 | raise util.Abort(_("patch %s not in series") % patch) |
|
1026 | raise util.Abort(_("patch %s not in series") % patch) | |
1007 |
|
1027 | |||
1008 | def push(self, repo, patch=None, force=False, list=False, |
|
1028 | def push(self, repo, patch=None, force=False, list=False, | |
1009 | mergeq=None, all=False, move=False, exact=False): |
|
1029 | mergeq=None, all=False, move=False, exact=False): | |
1010 | diffopts = self.diffopts() |
|
1030 | diffopts = self.diffopts() | |
1011 | wlock = repo.wlock() |
|
1031 | wlock = repo.wlock() | |
1012 | try: |
|
1032 | try: | |
1013 | heads = [] |
|
1033 | heads = [] | |
1014 | for b, ls in repo.branchmap().iteritems(): |
|
1034 | for b, ls in repo.branchmap().iteritems(): | |
1015 | heads += ls |
|
1035 | heads += ls | |
1016 | if not heads: |
|
1036 | if not heads: | |
1017 | heads = [nullid] |
|
1037 | heads = [nullid] | |
1018 | if repo.dirstate.parents()[0] not in heads and not exact: |
|
1038 | if repo.dirstate.parents()[0] not in heads and not exact: | |
1019 | self.ui.status(_("(working directory not at a head)\n")) |
|
1039 | self.ui.status(_("(working directory not at a head)\n")) | |
1020 |
|
1040 | |||
1021 | if not self.series: |
|
1041 | if not self.series: | |
1022 | self.ui.warn(_('no patches in series\n')) |
|
1042 | self.ui.warn(_('no patches in series\n')) | |
1023 | return 0 |
|
1043 | return 0 | |
1024 |
|
1044 | |||
1025 | patch = self.lookup(patch) |
|
1045 | patch = self.lookup(patch) | |
1026 | # Suppose our series file is: A B C and the current 'top' |
|
1046 | # Suppose our series file is: A B C and the current 'top' | |
1027 | # patch is B. qpush C should be performed (moving forward) |
|
1047 | # patch is B. qpush C should be performed (moving forward) | |
1028 | # qpush B is a NOP (no change) qpush A is an error (can't |
|
1048 | # qpush B is a NOP (no change) qpush A is an error (can't | |
1029 | # go backwards with qpush) |
|
1049 | # go backwards with qpush) | |
1030 | if patch: |
|
1050 | if patch: | |
1031 | info = self.isapplied(patch) |
|
1051 | info = self.isapplied(patch) | |
1032 | if info: |
|
1052 | if info: | |
1033 | if info[0] < len(self.applied) - 1: |
|
1053 | if info[0] < len(self.applied) - 1: | |
1034 | raise util.Abort( |
|
1054 | raise util.Abort( | |
1035 | _("cannot push to a previous patch: %s") % patch) |
|
1055 | _("cannot push to a previous patch: %s") % patch) | |
1036 | self.ui.warn( |
|
1056 | self.ui.warn( | |
1037 | _('qpush: %s is already at the top\n') % patch) |
|
1057 | _('qpush: %s is already at the top\n') % patch) | |
1038 | return 0 |
|
1058 | return 0 | |
1039 | pushable, reason = self.pushable(patch) |
|
1059 | pushable, reason = self.pushable(patch) | |
1040 | if not pushable: |
|
1060 | if not pushable: | |
1041 | if reason: |
|
1061 | if reason: | |
1042 | reason = _('guarded by %r') % reason |
|
1062 | reason = _('guarded by %r') % reason | |
1043 | else: |
|
1063 | else: | |
1044 | reason = _('no matching guards') |
|
1064 | reason = _('no matching guards') | |
1045 | self.ui.warn(_("cannot push '%s' - %s\n") % (patch, reason)) |
|
1065 | self.ui.warn(_("cannot push '%s' - %s\n") % (patch, reason)) | |
1046 | return 1 |
|
1066 | return 1 | |
1047 | elif all: |
|
1067 | elif all: | |
1048 | patch = self.series[-1] |
|
1068 | patch = self.series[-1] | |
1049 | if self.isapplied(patch): |
|
1069 | if self.isapplied(patch): | |
1050 | self.ui.warn(_('all patches are currently applied\n')) |
|
1070 | self.ui.warn(_('all patches are currently applied\n')) | |
1051 | return 0 |
|
1071 | return 0 | |
1052 |
|
1072 | |||
1053 | # Following the above example, starting at 'top' of B: |
|
1073 | # Following the above example, starting at 'top' of B: | |
1054 | # qpush should be performed (pushes C), but a subsequent |
|
1074 | # qpush should be performed (pushes C), but a subsequent | |
1055 | # qpush without an argument is an error (nothing to |
|
1075 | # qpush without an argument is an error (nothing to | |
1056 | # apply). This allows a loop of "...while hg qpush..." to |
|
1076 | # apply). This allows a loop of "...while hg qpush..." to | |
1057 | # work as it detects an error when done |
|
1077 | # work as it detects an error when done | |
1058 | start = self.series_end() |
|
1078 | start = self.series_end() | |
1059 | if start == len(self.series): |
|
1079 | if start == len(self.series): | |
1060 | self.ui.warn(_('patch series already fully applied\n')) |
|
1080 | self.ui.warn(_('patch series already fully applied\n')) | |
1061 | return 1 |
|
1081 | return 1 | |
1062 | if not force: |
|
1082 | if not force: | |
1063 | self.check_localchanges(repo) |
|
1083 | self.check_localchanges(repo) | |
1064 |
|
1084 | |||
1065 | if exact: |
|
1085 | if exact: | |
1066 | if move: |
|
1086 | if move: | |
1067 | raise util.Abort(_("cannot use --exact and --move together")) |
|
1087 | raise util.Abort(_("cannot use --exact and --move together")) | |
1068 | if self.applied: |
|
1088 | if self.applied: | |
1069 | raise util.Abort(_("cannot push --exact with applied patches")) |
|
1089 | raise util.Abort(_("cannot push --exact with applied patches")) | |
1070 | root = self.series[start] |
|
1090 | root = self.series[start] | |
1071 | target = patchheader(self.join(root), self.plainmode).parent |
|
1091 | target = patchheader(self.join(root), self.plainmode).parent | |
1072 | if not target: |
|
1092 | if not target: | |
1073 | raise util.Abort(_("%s does not have a parent recorded" % root)) |
|
1093 | raise util.Abort(_("%s does not have a parent recorded" % root)) | |
1074 | if not repo[target] == repo['.']: |
|
1094 | if not repo[target] == repo['.']: | |
1075 | hg.update(repo, target) |
|
1095 | hg.update(repo, target) | |
1076 |
|
1096 | |||
1077 | if move: |
|
1097 | if move: | |
1078 | if not patch: |
|
1098 | if not patch: | |
1079 | raise util.Abort(_("please specify the patch to move")) |
|
1099 | raise util.Abort(_("please specify the patch to move")) | |
1080 | for i, rpn in enumerate(self.full_series[start:]): |
|
1100 | for i, rpn in enumerate(self.full_series[start:]): | |
1081 | # strip markers for patch guards |
|
1101 | # strip markers for patch guards | |
1082 | if self.guard_re.split(rpn, 1)[0] == patch: |
|
1102 | if self.guard_re.split(rpn, 1)[0] == patch: | |
1083 | break |
|
1103 | break | |
1084 | index = start + i |
|
1104 | index = start + i | |
1085 | assert index < len(self.full_series) |
|
1105 | assert index < len(self.full_series) | |
1086 | fullpatch = self.full_series[index] |
|
1106 | fullpatch = self.full_series[index] | |
1087 | del self.full_series[index] |
|
1107 | del self.full_series[index] | |
1088 | self.full_series.insert(start, fullpatch) |
|
1108 | self.full_series.insert(start, fullpatch) | |
1089 | self.parse_series() |
|
1109 | self.parse_series() | |
1090 | self.series_dirty = 1 |
|
1110 | self.series_dirty = 1 | |
1091 |
|
1111 | |||
1092 | self.applied_dirty = 1 |
|
1112 | self.applied_dirty = 1 | |
1093 | if start > 0: |
|
1113 | if start > 0: | |
1094 | self.check_toppatch(repo) |
|
1114 | self.check_toppatch(repo) | |
1095 | if not patch: |
|
1115 | if not patch: | |
1096 | patch = self.series[start] |
|
1116 | patch = self.series[start] | |
1097 | end = start + 1 |
|
1117 | end = start + 1 | |
1098 | else: |
|
1118 | else: | |
1099 | end = self.series.index(patch, start) + 1 |
|
1119 | end = self.series.index(patch, start) + 1 | |
1100 |
|
1120 | |||
1101 | s = self.series[start:end] |
|
1121 | s = self.series[start:end] | |
1102 | all_files = set() |
|
1122 | all_files = set() | |
1103 | try: |
|
1123 | try: | |
1104 | if mergeq: |
|
1124 | if mergeq: | |
1105 | ret = self.mergepatch(repo, mergeq, s, diffopts) |
|
1125 | ret = self.mergepatch(repo, mergeq, s, diffopts) | |
1106 | else: |
|
1126 | else: | |
1107 | ret = self.apply(repo, s, list, all_files=all_files) |
|
1127 | ret = self.apply(repo, s, list, all_files=all_files) | |
1108 | except: |
|
1128 | except: | |
1109 | self.ui.warn(_('cleaning up working directory...')) |
|
1129 | self.ui.warn(_('cleaning up working directory...')) | |
1110 | node = repo.dirstate.parents()[0] |
|
1130 | node = repo.dirstate.parents()[0] | |
1111 | hg.revert(repo, node, None) |
|
1131 | hg.revert(repo, node, None) | |
1112 | # only remove unknown files that we know we touched or |
|
1132 | # only remove unknown files that we know we touched or | |
1113 | # created while patching |
|
1133 | # created while patching | |
1114 | for f in all_files: |
|
1134 | for f in all_files: | |
1115 | if f not in repo.dirstate: |
|
1135 | if f not in repo.dirstate: | |
1116 | try: |
|
1136 | try: | |
1117 | util.unlink(repo.wjoin(f)) |
|
1137 | util.unlink(repo.wjoin(f)) | |
1118 | except OSError, inst: |
|
1138 | except OSError, inst: | |
1119 | if inst.errno != errno.ENOENT: |
|
1139 | if inst.errno != errno.ENOENT: | |
1120 | raise |
|
1140 | raise | |
1121 | self.ui.warn(_('done\n')) |
|
1141 | self.ui.warn(_('done\n')) | |
1122 | raise |
|
1142 | raise | |
1123 |
|
1143 | |||
1124 | if not self.applied: |
|
1144 | if not self.applied: | |
1125 | return ret[0] |
|
1145 | return ret[0] | |
1126 | top = self.applied[-1].name |
|
1146 | top = self.applied[-1].name | |
1127 | if ret[0] and ret[0] > 1: |
|
1147 | if ret[0] and ret[0] > 1: | |
1128 | msg = _("errors during apply, please fix and refresh %s\n") |
|
1148 | msg = _("errors during apply, please fix and refresh %s\n") | |
1129 | self.ui.write(msg % top) |
|
1149 | self.ui.write(msg % top) | |
1130 | else: |
|
1150 | else: | |
1131 | self.ui.write(_("now at: %s\n") % top) |
|
1151 | self.ui.write(_("now at: %s\n") % top) | |
1132 | return ret[0] |
|
1152 | return ret[0] | |
1133 |
|
1153 | |||
1134 | finally: |
|
1154 | finally: | |
1135 | wlock.release() |
|
1155 | wlock.release() | |
1136 |
|
1156 | |||
1137 | def pop(self, repo, patch=None, force=False, update=True, all=False): |
|
1157 | def pop(self, repo, patch=None, force=False, update=True, all=False): | |
1138 | wlock = repo.wlock() |
|
1158 | wlock = repo.wlock() | |
1139 | try: |
|
1159 | try: | |
1140 | if patch: |
|
1160 | if patch: | |
1141 | # index, rev, patch |
|
1161 | # index, rev, patch | |
1142 | info = self.isapplied(patch) |
|
1162 | info = self.isapplied(patch) | |
1143 | if not info: |
|
1163 | if not info: | |
1144 | patch = self.lookup(patch) |
|
1164 | patch = self.lookup(patch) | |
1145 | info = self.isapplied(patch) |
|
1165 | info = self.isapplied(patch) | |
1146 | if not info: |
|
1166 | if not info: | |
1147 | raise util.Abort(_("patch %s is not applied") % patch) |
|
1167 | raise util.Abort(_("patch %s is not applied") % patch) | |
1148 |
|
1168 | |||
1149 | if not self.applied: |
|
1169 | if not self.applied: | |
1150 | # Allow qpop -a to work repeatedly, |
|
1170 | # Allow qpop -a to work repeatedly, | |
1151 | # but not qpop without an argument |
|
1171 | # but not qpop without an argument | |
1152 | self.ui.warn(_("no patches applied\n")) |
|
1172 | self.ui.warn(_("no patches applied\n")) | |
1153 | return not all |
|
1173 | return not all | |
1154 |
|
1174 | |||
1155 | if all: |
|
1175 | if all: | |
1156 | start = 0 |
|
1176 | start = 0 | |
1157 | elif patch: |
|
1177 | elif patch: | |
1158 | start = info[0] + 1 |
|
1178 | start = info[0] + 1 | |
1159 | else: |
|
1179 | else: | |
1160 | start = len(self.applied) - 1 |
|
1180 | start = len(self.applied) - 1 | |
1161 |
|
1181 | |||
1162 | if start >= len(self.applied): |
|
1182 | if start >= len(self.applied): | |
1163 | self.ui.warn(_("qpop: %s is already at the top\n") % patch) |
|
1183 | self.ui.warn(_("qpop: %s is already at the top\n") % patch) | |
1164 | return |
|
1184 | return | |
1165 |
|
1185 | |||
1166 | if not update: |
|
1186 | if not update: | |
1167 | parents = repo.dirstate.parents() |
|
1187 | parents = repo.dirstate.parents() | |
1168 | rr = [x.node for x in self.applied] |
|
1188 | rr = [x.node for x in self.applied] | |
1169 | for p in parents: |
|
1189 | for p in parents: | |
1170 | if p in rr: |
|
1190 | if p in rr: | |
1171 | self.ui.warn(_("qpop: forcing dirstate update\n")) |
|
1191 | self.ui.warn(_("qpop: forcing dirstate update\n")) | |
1172 | update = True |
|
1192 | update = True | |
1173 | else: |
|
1193 | else: | |
1174 | parents = [p.node() for p in repo[None].parents()] |
|
1194 | parents = [p.node() for p in repo[None].parents()] | |
1175 | needupdate = False |
|
1195 | needupdate = False | |
1176 | for entry in self.applied[start:]: |
|
1196 | for entry in self.applied[start:]: | |
1177 | if entry.node in parents: |
|
1197 | if entry.node in parents: | |
1178 | needupdate = True |
|
1198 | needupdate = True | |
1179 | break |
|
1199 | break | |
1180 | update = needupdate |
|
1200 | update = needupdate | |
1181 |
|
1201 | |||
1182 | if not force and update: |
|
1202 | if not force and update: | |
1183 | self.check_localchanges(repo) |
|
1203 | self.check_localchanges(repo) | |
1184 |
|
1204 | |||
1185 | self.applied_dirty = 1 |
|
1205 | self.applied_dirty = 1 | |
1186 | end = len(self.applied) |
|
1206 | end = len(self.applied) | |
1187 | rev = self.applied[start].node |
|
1207 | rev = self.applied[start].node | |
1188 | if update: |
|
1208 | if update: | |
1189 | top = self.check_toppatch(repo)[0] |
|
1209 | top = self.check_toppatch(repo)[0] | |
1190 |
|
1210 | |||
1191 | try: |
|
1211 | try: | |
1192 | heads = repo.changelog.heads(rev) |
|
1212 | heads = repo.changelog.heads(rev) | |
1193 | except error.LookupError: |
|
1213 | except error.LookupError: | |
1194 | node = short(rev) |
|
1214 | node = short(rev) | |
1195 | raise util.Abort(_('trying to pop unknown node %s') % node) |
|
1215 | raise util.Abort(_('trying to pop unknown node %s') % node) | |
1196 |
|
1216 | |||
1197 | if heads != [self.applied[-1].node]: |
|
1217 | if heads != [self.applied[-1].node]: | |
1198 | raise util.Abort(_("popping would remove a revision not " |
|
1218 | raise util.Abort(_("popping would remove a revision not " | |
1199 | "managed by this patch queue")) |
|
1219 | "managed by this patch queue")) | |
1200 |
|
1220 | |||
1201 | # we know there are no local changes, so we can make a simplified |
|
1221 | # we know there are no local changes, so we can make a simplified | |
1202 | # form of hg.update. |
|
1222 | # form of hg.update. | |
1203 | if update: |
|
1223 | if update: | |
1204 | qp = self.qparents(repo, rev) |
|
1224 | qp = self.qparents(repo, rev) | |
1205 | ctx = repo[qp] |
|
1225 | ctx = repo[qp] | |
1206 | m, a, r, d = repo.status(qp, top)[:4] |
|
1226 | m, a, r, d = repo.status(qp, top)[:4] | |
1207 | if d: |
|
1227 | if d: | |
1208 | raise util.Abort(_("deletions found between repo revs")) |
|
1228 | raise util.Abort(_("deletions found between repo revs")) | |
1209 | for f in a: |
|
1229 | for f in a: | |
1210 | try: |
|
1230 | try: | |
1211 | util.unlink(repo.wjoin(f)) |
|
1231 | util.unlink(repo.wjoin(f)) | |
1212 | except OSError, e: |
|
1232 | except OSError, e: | |
1213 | if e.errno != errno.ENOENT: |
|
1233 | if e.errno != errno.ENOENT: | |
1214 | raise |
|
1234 | raise | |
1215 | repo.dirstate.forget(f) |
|
1235 | repo.dirstate.forget(f) | |
1216 | for f in m + r: |
|
1236 | for f in m + r: | |
1217 | fctx = ctx[f] |
|
1237 | fctx = ctx[f] | |
1218 | repo.wwrite(f, fctx.data(), fctx.flags()) |
|
1238 | repo.wwrite(f, fctx.data(), fctx.flags()) | |
1219 | repo.dirstate.normal(f) |
|
1239 | repo.dirstate.normal(f) | |
1220 | repo.dirstate.setparents(qp, nullid) |
|
1240 | repo.dirstate.setparents(qp, nullid) | |
1221 | for patch in reversed(self.applied[start:end]): |
|
1241 | for patch in reversed(self.applied[start:end]): | |
1222 | self.ui.status(_("popping %s\n") % patch.name) |
|
1242 | self.ui.status(_("popping %s\n") % patch.name) | |
1223 | del self.applied[start:end] |
|
1243 | del self.applied[start:end] | |
1224 | self.strip(repo, [rev], update=False, backup='strip') |
|
1244 | self.strip(repo, [rev], update=False, backup='strip') | |
1225 | if self.applied: |
|
1245 | if self.applied: | |
1226 | self.ui.write(_("now at: %s\n") % self.applied[-1].name) |
|
1246 | self.ui.write(_("now at: %s\n") % self.applied[-1].name) | |
1227 | else: |
|
1247 | else: | |
1228 | self.ui.write(_("patch queue now empty\n")) |
|
1248 | self.ui.write(_("patch queue now empty\n")) | |
1229 | finally: |
|
1249 | finally: | |
1230 | wlock.release() |
|
1250 | wlock.release() | |
1231 |
|
1251 | |||
1232 | def diff(self, repo, pats, opts): |
|
1252 | def diff(self, repo, pats, opts): | |
1233 | top, patch = self.check_toppatch(repo) |
|
1253 | top, patch = self.check_toppatch(repo) | |
1234 | if not top: |
|
1254 | if not top: | |
1235 | self.ui.write(_("no patches applied\n")) |
|
1255 | self.ui.write(_("no patches applied\n")) | |
1236 | return |
|
1256 | return | |
1237 | qp = self.qparents(repo, top) |
|
1257 | qp = self.qparents(repo, top) | |
1238 | if opts.get('reverse'): |
|
1258 | if opts.get('reverse'): | |
1239 | node1, node2 = None, qp |
|
1259 | node1, node2 = None, qp | |
1240 | else: |
|
1260 | else: | |
1241 | node1, node2 = qp, None |
|
1261 | node1, node2 = qp, None | |
1242 | diffopts = self.diffopts(opts, patch) |
|
1262 | diffopts = self.diffopts(opts, patch) | |
1243 | self.printdiff(repo, diffopts, node1, node2, files=pats, opts=opts) |
|
1263 | self.printdiff(repo, diffopts, node1, node2, files=pats, opts=opts) | |
1244 |
|
1264 | |||
1245 | def refresh(self, repo, pats=None, **opts): |
|
1265 | def refresh(self, repo, pats=None, **opts): | |
1246 | if not self.applied: |
|
1266 | if not self.applied: | |
1247 | self.ui.write(_("no patches applied\n")) |
|
1267 | self.ui.write(_("no patches applied\n")) | |
1248 | return 1 |
|
1268 | return 1 | |
1249 | msg = opts.get('msg', '').rstrip() |
|
1269 | msg = opts.get('msg', '').rstrip() | |
1250 | newuser = opts.get('user') |
|
1270 | newuser = opts.get('user') | |
1251 | newdate = opts.get('date') |
|
1271 | newdate = opts.get('date') | |
1252 | if newdate: |
|
1272 | if newdate: | |
1253 | newdate = '%d %d' % util.parsedate(newdate) |
|
1273 | newdate = '%d %d' % util.parsedate(newdate) | |
1254 | wlock = repo.wlock() |
|
1274 | wlock = repo.wlock() | |
1255 |
|
1275 | |||
1256 | try: |
|
1276 | try: | |
1257 | self.check_toppatch(repo) |
|
1277 | self.check_toppatch(repo) | |
1258 | (top, patchfn) = (self.applied[-1].node, self.applied[-1].name) |
|
1278 | (top, patchfn) = (self.applied[-1].node, self.applied[-1].name) | |
1259 | if repo.changelog.heads(top) != [top]: |
|
1279 | if repo.changelog.heads(top) != [top]: | |
1260 | raise util.Abort(_("cannot refresh a revision with children")) |
|
1280 | raise util.Abort(_("cannot refresh a revision with children")) | |
1261 |
|
1281 | |||
|
1282 | inclsubs = self.check_substate(repo) | |||
|
1283 | ||||
1262 | cparents = repo.changelog.parents(top) |
|
1284 | cparents = repo.changelog.parents(top) | |
1263 | patchparent = self.qparents(repo, top) |
|
1285 | patchparent = self.qparents(repo, top) | |
1264 | ph = patchheader(self.join(patchfn), self.plainmode) |
|
1286 | ph = patchheader(self.join(patchfn), self.plainmode) | |
1265 | diffopts = self.diffopts({'git': opts.get('git')}, patchfn) |
|
1287 | diffopts = self.diffopts({'git': opts.get('git')}, patchfn) | |
1266 | if msg: |
|
1288 | if msg: | |
1267 | ph.setmessage(msg) |
|
1289 | ph.setmessage(msg) | |
1268 | if newuser: |
|
1290 | if newuser: | |
1269 | ph.setuser(newuser) |
|
1291 | ph.setuser(newuser) | |
1270 | if newdate: |
|
1292 | if newdate: | |
1271 | ph.setdate(newdate) |
|
1293 | ph.setdate(newdate) | |
1272 | ph.setparent(hex(patchparent)) |
|
1294 | ph.setparent(hex(patchparent)) | |
1273 |
|
1295 | |||
1274 | # only commit new patch when write is complete |
|
1296 | # only commit new patch when write is complete | |
1275 | patchf = self.opener(patchfn, 'w', atomictemp=True) |
|
1297 | patchf = self.opener(patchfn, 'w', atomictemp=True) | |
1276 |
|
1298 | |||
1277 | comments = str(ph) |
|
1299 | comments = str(ph) | |
1278 | if comments: |
|
1300 | if comments: | |
1279 | patchf.write(comments) |
|
1301 | patchf.write(comments) | |
1280 |
|
1302 | |||
1281 | # update the dirstate in place, strip off the qtip commit |
|
1303 | # update the dirstate in place, strip off the qtip commit | |
1282 | # and then commit. |
|
1304 | # and then commit. | |
1283 | # |
|
1305 | # | |
1284 | # this should really read: |
|
1306 | # this should really read: | |
1285 | # mm, dd, aa = repo.status(top, patchparent)[:3] |
|
1307 | # mm, dd, aa = repo.status(top, patchparent)[:3] | |
1286 | # but we do it backwards to take advantage of manifest/chlog |
|
1308 | # but we do it backwards to take advantage of manifest/chlog | |
1287 | # caching against the next repo.status call |
|
1309 | # caching against the next repo.status call | |
1288 | mm, aa, dd = repo.status(patchparent, top)[:3] |
|
1310 | mm, aa, dd = repo.status(patchparent, top)[:3] | |
1289 | changes = repo.changelog.read(top) |
|
1311 | changes = repo.changelog.read(top) | |
1290 | man = repo.manifest.read(changes[0]) |
|
1312 | man = repo.manifest.read(changes[0]) | |
1291 | aaa = aa[:] |
|
1313 | aaa = aa[:] | |
1292 | matchfn = cmdutil.match(repo, pats, opts) |
|
1314 | matchfn = cmdutil.match(repo, pats, opts) | |
1293 | # in short mode, we only diff the files included in the |
|
1315 | # in short mode, we only diff the files included in the | |
1294 | # patch already plus specified files |
|
1316 | # patch already plus specified files | |
1295 | if opts.get('short'): |
|
1317 | if opts.get('short'): | |
1296 | # if amending a patch, we start with existing |
|
1318 | # if amending a patch, we start with existing | |
1297 | # files plus specified files - unfiltered |
|
1319 | # files plus specified files - unfiltered | |
1298 | match = cmdutil.matchfiles(repo, mm + aa + dd + matchfn.files()) |
|
1320 | match = cmdutil.matchfiles(repo, mm + aa + dd + matchfn.files()) | |
1299 | # filter with inc/exl options |
|
1321 | # filter with inc/exl options | |
1300 | matchfn = cmdutil.match(repo, opts=opts) |
|
1322 | matchfn = cmdutil.match(repo, opts=opts) | |
1301 | else: |
|
1323 | else: | |
1302 | match = cmdutil.matchall(repo) |
|
1324 | match = cmdutil.matchall(repo) | |
1303 | m, a, r, d = repo.status(match=match)[:4] |
|
1325 | m, a, r, d = repo.status(match=match)[:4] | |
1304 | mm = set(mm) |
|
1326 | mm = set(mm) | |
1305 | aa = set(aa) |
|
1327 | aa = set(aa) | |
1306 | dd = set(dd) |
|
1328 | dd = set(dd) | |
1307 |
|
1329 | |||
1308 | # we might end up with files that were added between |
|
1330 | # we might end up with files that were added between | |
1309 | # qtip and the dirstate parent, but then changed in the |
|
1331 | # qtip and the dirstate parent, but then changed in the | |
1310 | # local dirstate. in this case, we want them to only |
|
1332 | # local dirstate. in this case, we want them to only | |
1311 | # show up in the added section |
|
1333 | # show up in the added section | |
1312 | for x in m: |
|
1334 | for x in m: | |
1313 | if x not in aa: |
|
1335 | if x not in aa: | |
1314 | mm.add(x) |
|
1336 | mm.add(x) | |
1315 | # we might end up with files added by the local dirstate that |
|
1337 | # we might end up with files added by the local dirstate that | |
1316 | # were deleted by the patch. In this case, they should only |
|
1338 | # were deleted by the patch. In this case, they should only | |
1317 | # show up in the changed section. |
|
1339 | # show up in the changed section. | |
1318 | for x in a: |
|
1340 | for x in a: | |
1319 | if x in dd: |
|
1341 | if x in dd: | |
1320 | dd.remove(x) |
|
1342 | dd.remove(x) | |
1321 | mm.add(x) |
|
1343 | mm.add(x) | |
1322 | else: |
|
1344 | else: | |
1323 | aa.add(x) |
|
1345 | aa.add(x) | |
1324 | # make sure any files deleted in the local dirstate |
|
1346 | # make sure any files deleted in the local dirstate | |
1325 | # are not in the add or change column of the patch |
|
1347 | # are not in the add or change column of the patch | |
1326 | forget = [] |
|
1348 | forget = [] | |
1327 | for x in d + r: |
|
1349 | for x in d + r: | |
1328 | if x in aa: |
|
1350 | if x in aa: | |
1329 | aa.remove(x) |
|
1351 | aa.remove(x) | |
1330 | forget.append(x) |
|
1352 | forget.append(x) | |
1331 | continue |
|
1353 | continue | |
1332 | else: |
|
1354 | else: | |
1333 | mm.discard(x) |
|
1355 | mm.discard(x) | |
1334 | dd.add(x) |
|
1356 | dd.add(x) | |
1335 |
|
1357 | |||
1336 | m = list(mm) |
|
1358 | m = list(mm) | |
1337 | r = list(dd) |
|
1359 | r = list(dd) | |
1338 | a = list(aa) |
|
1360 | a = list(aa) | |
1339 | c = [filter(matchfn, l) for l in (m, a, r)] |
|
1361 | c = [filter(matchfn, l) for l in (m, a, r)] | |
1340 | match = cmdutil.matchfiles(repo, set(c[0] + c[1] + c[2])) |
|
1362 | match = cmdutil.matchfiles(repo, set(c[0] + c[1] + c[2] + inclsubs)) | |
1341 | chunks = patch.diff(repo, patchparent, match=match, |
|
1363 | chunks = patch.diff(repo, patchparent, match=match, | |
1342 | changes=c, opts=diffopts) |
|
1364 | changes=c, opts=diffopts) | |
1343 | for chunk in chunks: |
|
1365 | for chunk in chunks: | |
1344 | patchf.write(chunk) |
|
1366 | patchf.write(chunk) | |
1345 |
|
1367 | |||
1346 | try: |
|
1368 | try: | |
1347 | if diffopts.git or diffopts.upgrade: |
|
1369 | if diffopts.git or diffopts.upgrade: | |
1348 | copies = {} |
|
1370 | copies = {} | |
1349 | for dst in a: |
|
1371 | for dst in a: | |
1350 | src = repo.dirstate.copied(dst) |
|
1372 | src = repo.dirstate.copied(dst) | |
1351 | # during qfold, the source file for copies may |
|
1373 | # during qfold, the source file for copies may | |
1352 | # be removed. Treat this as a simple add. |
|
1374 | # be removed. Treat this as a simple add. | |
1353 | if src is not None and src in repo.dirstate: |
|
1375 | if src is not None and src in repo.dirstate: | |
1354 | copies.setdefault(src, []).append(dst) |
|
1376 | copies.setdefault(src, []).append(dst) | |
1355 | repo.dirstate.add(dst) |
|
1377 | repo.dirstate.add(dst) | |
1356 | # remember the copies between patchparent and qtip |
|
1378 | # remember the copies between patchparent and qtip | |
1357 | for dst in aaa: |
|
1379 | for dst in aaa: | |
1358 | f = repo.file(dst) |
|
1380 | f = repo.file(dst) | |
1359 | src = f.renamed(man[dst]) |
|
1381 | src = f.renamed(man[dst]) | |
1360 | if src: |
|
1382 | if src: | |
1361 | copies.setdefault(src[0], []).extend( |
|
1383 | copies.setdefault(src[0], []).extend( | |
1362 | copies.get(dst, [])) |
|
1384 | copies.get(dst, [])) | |
1363 | if dst in a: |
|
1385 | if dst in a: | |
1364 | copies[src[0]].append(dst) |
|
1386 | copies[src[0]].append(dst) | |
1365 | # we can't copy a file created by the patch itself |
|
1387 | # we can't copy a file created by the patch itself | |
1366 | if dst in copies: |
|
1388 | if dst in copies: | |
1367 | del copies[dst] |
|
1389 | del copies[dst] | |
1368 | for src, dsts in copies.iteritems(): |
|
1390 | for src, dsts in copies.iteritems(): | |
1369 | for dst in dsts: |
|
1391 | for dst in dsts: | |
1370 | repo.dirstate.copy(src, dst) |
|
1392 | repo.dirstate.copy(src, dst) | |
1371 | else: |
|
1393 | else: | |
1372 | for dst in a: |
|
1394 | for dst in a: | |
1373 | repo.dirstate.add(dst) |
|
1395 | repo.dirstate.add(dst) | |
1374 | # Drop useless copy information |
|
1396 | # Drop useless copy information | |
1375 | for f in list(repo.dirstate.copies()): |
|
1397 | for f in list(repo.dirstate.copies()): | |
1376 | repo.dirstate.copy(None, f) |
|
1398 | repo.dirstate.copy(None, f) | |
1377 | for f in r: |
|
1399 | for f in r: | |
1378 | repo.dirstate.remove(f) |
|
1400 | repo.dirstate.remove(f) | |
1379 | # if the patch excludes a modified file, mark that |
|
1401 | # if the patch excludes a modified file, mark that | |
1380 | # file with mtime=0 so status can see it. |
|
1402 | # file with mtime=0 so status can see it. | |
1381 | mm = [] |
|
1403 | mm = [] | |
1382 | for i in xrange(len(m)-1, -1, -1): |
|
1404 | for i in xrange(len(m)-1, -1, -1): | |
1383 | if not matchfn(m[i]): |
|
1405 | if not matchfn(m[i]): | |
1384 | mm.append(m[i]) |
|
1406 | mm.append(m[i]) | |
1385 | del m[i] |
|
1407 | del m[i] | |
1386 | for f in m: |
|
1408 | for f in m: | |
1387 | repo.dirstate.normal(f) |
|
1409 | repo.dirstate.normal(f) | |
1388 | for f in mm: |
|
1410 | for f in mm: | |
1389 | repo.dirstate.normallookup(f) |
|
1411 | repo.dirstate.normallookup(f) | |
1390 | for f in forget: |
|
1412 | for f in forget: | |
1391 | repo.dirstate.forget(f) |
|
1413 | repo.dirstate.forget(f) | |
1392 |
|
1414 | |||
1393 | if not msg: |
|
1415 | if not msg: | |
1394 | if not ph.message: |
|
1416 | if not ph.message: | |
1395 | message = "[mq]: %s\n" % patchfn |
|
1417 | message = "[mq]: %s\n" % patchfn | |
1396 | else: |
|
1418 | else: | |
1397 | message = "\n".join(ph.message) |
|
1419 | message = "\n".join(ph.message) | |
1398 | else: |
|
1420 | else: | |
1399 | message = msg |
|
1421 | message = msg | |
1400 |
|
1422 | |||
1401 | user = ph.user or changes[1] |
|
1423 | user = ph.user or changes[1] | |
1402 |
|
1424 | |||
1403 | # assumes strip can roll itself back if interrupted |
|
1425 | # assumes strip can roll itself back if interrupted | |
1404 | repo.dirstate.setparents(*cparents) |
|
1426 | repo.dirstate.setparents(*cparents) | |
1405 | self.applied.pop() |
|
1427 | self.applied.pop() | |
1406 | self.applied_dirty = 1 |
|
1428 | self.applied_dirty = 1 | |
1407 | self.strip(repo, [top], update=False, |
|
1429 | self.strip(repo, [top], update=False, | |
1408 | backup='strip') |
|
1430 | backup='strip') | |
1409 | except: |
|
1431 | except: | |
1410 | repo.dirstate.invalidate() |
|
1432 | repo.dirstate.invalidate() | |
1411 | raise |
|
1433 | raise | |
1412 |
|
1434 | |||
1413 | try: |
|
1435 | try: | |
1414 | # might be nice to attempt to roll back strip after this |
|
1436 | # might be nice to attempt to roll back strip after this | |
1415 | patchf.rename() |
|
1437 | patchf.rename() | |
1416 | n = repo.commit(message, user, ph.date, match=match, |
|
1438 | n = repo.commit(message, user, ph.date, match=match, | |
1417 | force=True) |
|
1439 | force=True) | |
1418 | self.applied.append(statusentry(n, patchfn)) |
|
1440 | self.applied.append(statusentry(n, patchfn)) | |
1419 | except: |
|
1441 | except: | |
1420 | ctx = repo[cparents[0]] |
|
1442 | ctx = repo[cparents[0]] | |
1421 | repo.dirstate.rebuild(ctx.node(), ctx.manifest()) |
|
1443 | repo.dirstate.rebuild(ctx.node(), ctx.manifest()) | |
1422 | self.save_dirty() |
|
1444 | self.save_dirty() | |
1423 | self.ui.warn(_('refresh interrupted while patch was popped! ' |
|
1445 | self.ui.warn(_('refresh interrupted while patch was popped! ' | |
1424 | '(revert --all, qpush to recover)\n')) |
|
1446 | '(revert --all, qpush to recover)\n')) | |
1425 | raise |
|
1447 | raise | |
1426 | finally: |
|
1448 | finally: | |
1427 | wlock.release() |
|
1449 | wlock.release() | |
1428 | self.removeundo(repo) |
|
1450 | self.removeundo(repo) | |
1429 |
|
1451 | |||
1430 | def init(self, repo, create=False): |
|
1452 | def init(self, repo, create=False): | |
1431 | if not create and os.path.isdir(self.path): |
|
1453 | if not create and os.path.isdir(self.path): | |
1432 | raise util.Abort(_("patch queue directory already exists")) |
|
1454 | raise util.Abort(_("patch queue directory already exists")) | |
1433 | try: |
|
1455 | try: | |
1434 | os.mkdir(self.path) |
|
1456 | os.mkdir(self.path) | |
1435 | except OSError, inst: |
|
1457 | except OSError, inst: | |
1436 | if inst.errno != errno.EEXIST or not create: |
|
1458 | if inst.errno != errno.EEXIST or not create: | |
1437 | raise |
|
1459 | raise | |
1438 | if create: |
|
1460 | if create: | |
1439 | return self.qrepo(create=True) |
|
1461 | return self.qrepo(create=True) | |
1440 |
|
1462 | |||
1441 | def unapplied(self, repo, patch=None): |
|
1463 | def unapplied(self, repo, patch=None): | |
1442 | if patch and patch not in self.series: |
|
1464 | if patch and patch not in self.series: | |
1443 | raise util.Abort(_("patch %s is not in series file") % patch) |
|
1465 | raise util.Abort(_("patch %s is not in series file") % patch) | |
1444 | if not patch: |
|
1466 | if not patch: | |
1445 | start = self.series_end() |
|
1467 | start = self.series_end() | |
1446 | else: |
|
1468 | else: | |
1447 | start = self.series.index(patch) + 1 |
|
1469 | start = self.series.index(patch) + 1 | |
1448 | unapplied = [] |
|
1470 | unapplied = [] | |
1449 | for i in xrange(start, len(self.series)): |
|
1471 | for i in xrange(start, len(self.series)): | |
1450 | pushable, reason = self.pushable(i) |
|
1472 | pushable, reason = self.pushable(i) | |
1451 | if pushable: |
|
1473 | if pushable: | |
1452 | unapplied.append((i, self.series[i])) |
|
1474 | unapplied.append((i, self.series[i])) | |
1453 | self.explain_pushable(i) |
|
1475 | self.explain_pushable(i) | |
1454 | return unapplied |
|
1476 | return unapplied | |
1455 |
|
1477 | |||
1456 | def qseries(self, repo, missing=None, start=0, length=None, status=None, |
|
1478 | def qseries(self, repo, missing=None, start=0, length=None, status=None, | |
1457 | summary=False): |
|
1479 | summary=False): | |
1458 | def displayname(pfx, patchname, state): |
|
1480 | def displayname(pfx, patchname, state): | |
1459 | if pfx: |
|
1481 | if pfx: | |
1460 | self.ui.write(pfx) |
|
1482 | self.ui.write(pfx) | |
1461 | if summary: |
|
1483 | if summary: | |
1462 | ph = patchheader(self.join(patchname), self.plainmode) |
|
1484 | ph = patchheader(self.join(patchname), self.plainmode) | |
1463 | msg = ph.message and ph.message[0] or '' |
|
1485 | msg = ph.message and ph.message[0] or '' | |
1464 | if self.ui.formatted(): |
|
1486 | if self.ui.formatted(): | |
1465 | width = self.ui.termwidth() - len(pfx) - len(patchname) - 2 |
|
1487 | width = self.ui.termwidth() - len(pfx) - len(patchname) - 2 | |
1466 | if width > 0: |
|
1488 | if width > 0: | |
1467 | msg = util.ellipsis(msg, width) |
|
1489 | msg = util.ellipsis(msg, width) | |
1468 | else: |
|
1490 | else: | |
1469 | msg = '' |
|
1491 | msg = '' | |
1470 | self.ui.write(patchname, label='qseries.' + state) |
|
1492 | self.ui.write(patchname, label='qseries.' + state) | |
1471 | self.ui.write(': ') |
|
1493 | self.ui.write(': ') | |
1472 | self.ui.write(msg, label='qseries.message.' + state) |
|
1494 | self.ui.write(msg, label='qseries.message.' + state) | |
1473 | else: |
|
1495 | else: | |
1474 | self.ui.write(patchname, label='qseries.' + state) |
|
1496 | self.ui.write(patchname, label='qseries.' + state) | |
1475 | self.ui.write('\n') |
|
1497 | self.ui.write('\n') | |
1476 |
|
1498 | |||
1477 | applied = set([p.name for p in self.applied]) |
|
1499 | applied = set([p.name for p in self.applied]) | |
1478 | if length is None: |
|
1500 | if length is None: | |
1479 | length = len(self.series) - start |
|
1501 | length = len(self.series) - start | |
1480 | if not missing: |
|
1502 | if not missing: | |
1481 | if self.ui.verbose: |
|
1503 | if self.ui.verbose: | |
1482 | idxwidth = len(str(start + length - 1)) |
|
1504 | idxwidth = len(str(start + length - 1)) | |
1483 | for i in xrange(start, start + length): |
|
1505 | for i in xrange(start, start + length): | |
1484 | patch = self.series[i] |
|
1506 | patch = self.series[i] | |
1485 | if patch in applied: |
|
1507 | if patch in applied: | |
1486 | char, state = 'A', 'applied' |
|
1508 | char, state = 'A', 'applied' | |
1487 | elif self.pushable(i)[0]: |
|
1509 | elif self.pushable(i)[0]: | |
1488 | char, state = 'U', 'unapplied' |
|
1510 | char, state = 'U', 'unapplied' | |
1489 | else: |
|
1511 | else: | |
1490 | char, state = 'G', 'guarded' |
|
1512 | char, state = 'G', 'guarded' | |
1491 | pfx = '' |
|
1513 | pfx = '' | |
1492 | if self.ui.verbose: |
|
1514 | if self.ui.verbose: | |
1493 | pfx = '%*d %s ' % (idxwidth, i, char) |
|
1515 | pfx = '%*d %s ' % (idxwidth, i, char) | |
1494 | elif status and status != char: |
|
1516 | elif status and status != char: | |
1495 | continue |
|
1517 | continue | |
1496 | displayname(pfx, patch, state) |
|
1518 | displayname(pfx, patch, state) | |
1497 | else: |
|
1519 | else: | |
1498 | msng_list = [] |
|
1520 | msng_list = [] | |
1499 | for root, dirs, files in os.walk(self.path): |
|
1521 | for root, dirs, files in os.walk(self.path): | |
1500 | d = root[len(self.path) + 1:] |
|
1522 | d = root[len(self.path) + 1:] | |
1501 | for f in files: |
|
1523 | for f in files: | |
1502 | fl = os.path.join(d, f) |
|
1524 | fl = os.path.join(d, f) | |
1503 | if (fl not in self.series and |
|
1525 | if (fl not in self.series and | |
1504 | fl not in (self.status_path, self.series_path, |
|
1526 | fl not in (self.status_path, self.series_path, | |
1505 | self.guards_path) |
|
1527 | self.guards_path) | |
1506 | and not fl.startswith('.')): |
|
1528 | and not fl.startswith('.')): | |
1507 | msng_list.append(fl) |
|
1529 | msng_list.append(fl) | |
1508 | for x in sorted(msng_list): |
|
1530 | for x in sorted(msng_list): | |
1509 | pfx = self.ui.verbose and ('D ') or '' |
|
1531 | pfx = self.ui.verbose and ('D ') or '' | |
1510 | displayname(pfx, x, 'missing') |
|
1532 | displayname(pfx, x, 'missing') | |
1511 |
|
1533 | |||
1512 | def issaveline(self, l): |
|
1534 | def issaveline(self, l): | |
1513 | if l.name == '.hg.patches.save.line': |
|
1535 | if l.name == '.hg.patches.save.line': | |
1514 | return True |
|
1536 | return True | |
1515 |
|
1537 | |||
1516 | def qrepo(self, create=False): |
|
1538 | def qrepo(self, create=False): | |
1517 | ui = self.ui.copy() |
|
1539 | ui = self.ui.copy() | |
1518 | ui.setconfig('paths', 'default', '', overlay=False) |
|
1540 | ui.setconfig('paths', 'default', '', overlay=False) | |
1519 | ui.setconfig('paths', 'default-push', '', overlay=False) |
|
1541 | ui.setconfig('paths', 'default-push', '', overlay=False) | |
1520 | if create or os.path.isdir(self.join(".hg")): |
|
1542 | if create or os.path.isdir(self.join(".hg")): | |
1521 | return hg.repository(ui, path=self.path, create=create) |
|
1543 | return hg.repository(ui, path=self.path, create=create) | |
1522 |
|
1544 | |||
1523 | def restore(self, repo, rev, delete=None, qupdate=None): |
|
1545 | def restore(self, repo, rev, delete=None, qupdate=None): | |
1524 | desc = repo[rev].description().strip() |
|
1546 | desc = repo[rev].description().strip() | |
1525 | lines = desc.splitlines() |
|
1547 | lines = desc.splitlines() | |
1526 | i = 0 |
|
1548 | i = 0 | |
1527 | datastart = None |
|
1549 | datastart = None | |
1528 | series = [] |
|
1550 | series = [] | |
1529 | applied = [] |
|
1551 | applied = [] | |
1530 | qpp = None |
|
1552 | qpp = None | |
1531 | for i, line in enumerate(lines): |
|
1553 | for i, line in enumerate(lines): | |
1532 | if line == 'Patch Data:': |
|
1554 | if line == 'Patch Data:': | |
1533 | datastart = i + 1 |
|
1555 | datastart = i + 1 | |
1534 | elif line.startswith('Dirstate:'): |
|
1556 | elif line.startswith('Dirstate:'): | |
1535 | l = line.rstrip() |
|
1557 | l = line.rstrip() | |
1536 | l = l[10:].split(' ') |
|
1558 | l = l[10:].split(' ') | |
1537 | qpp = [bin(x) for x in l] |
|
1559 | qpp = [bin(x) for x in l] | |
1538 | elif datastart is not None: |
|
1560 | elif datastart is not None: | |
1539 | l = line.rstrip() |
|
1561 | l = line.rstrip() | |
1540 | n, name = l.split(':', 1) |
|
1562 | n, name = l.split(':', 1) | |
1541 | if n: |
|
1563 | if n: | |
1542 | applied.append(statusentry(bin(n), name)) |
|
1564 | applied.append(statusentry(bin(n), name)) | |
1543 | else: |
|
1565 | else: | |
1544 | series.append(l) |
|
1566 | series.append(l) | |
1545 | if datastart is None: |
|
1567 | if datastart is None: | |
1546 | self.ui.warn(_("No saved patch data found\n")) |
|
1568 | self.ui.warn(_("No saved patch data found\n")) | |
1547 | return 1 |
|
1569 | return 1 | |
1548 | self.ui.warn(_("restoring status: %s\n") % lines[0]) |
|
1570 | self.ui.warn(_("restoring status: %s\n") % lines[0]) | |
1549 | self.full_series = series |
|
1571 | self.full_series = series | |
1550 | self.applied = applied |
|
1572 | self.applied = applied | |
1551 | self.parse_series() |
|
1573 | self.parse_series() | |
1552 | self.series_dirty = 1 |
|
1574 | self.series_dirty = 1 | |
1553 | self.applied_dirty = 1 |
|
1575 | self.applied_dirty = 1 | |
1554 | heads = repo.changelog.heads() |
|
1576 | heads = repo.changelog.heads() | |
1555 | if delete: |
|
1577 | if delete: | |
1556 | if rev not in heads: |
|
1578 | if rev not in heads: | |
1557 | self.ui.warn(_("save entry has children, leaving it alone\n")) |
|
1579 | self.ui.warn(_("save entry has children, leaving it alone\n")) | |
1558 | else: |
|
1580 | else: | |
1559 | self.ui.warn(_("removing save entry %s\n") % short(rev)) |
|
1581 | self.ui.warn(_("removing save entry %s\n") % short(rev)) | |
1560 | pp = repo.dirstate.parents() |
|
1582 | pp = repo.dirstate.parents() | |
1561 | if rev in pp: |
|
1583 | if rev in pp: | |
1562 | update = True |
|
1584 | update = True | |
1563 | else: |
|
1585 | else: | |
1564 | update = False |
|
1586 | update = False | |
1565 | self.strip(repo, [rev], update=update, backup='strip') |
|
1587 | self.strip(repo, [rev], update=update, backup='strip') | |
1566 | if qpp: |
|
1588 | if qpp: | |
1567 | self.ui.warn(_("saved queue repository parents: %s %s\n") % |
|
1589 | self.ui.warn(_("saved queue repository parents: %s %s\n") % | |
1568 | (short(qpp[0]), short(qpp[1]))) |
|
1590 | (short(qpp[0]), short(qpp[1]))) | |
1569 | if qupdate: |
|
1591 | if qupdate: | |
1570 | self.ui.status(_("updating queue directory\n")) |
|
1592 | self.ui.status(_("updating queue directory\n")) | |
1571 | r = self.qrepo() |
|
1593 | r = self.qrepo() | |
1572 | if not r: |
|
1594 | if not r: | |
1573 | self.ui.warn(_("Unable to load queue repository\n")) |
|
1595 | self.ui.warn(_("Unable to load queue repository\n")) | |
1574 | return 1 |
|
1596 | return 1 | |
1575 | hg.clean(r, qpp[0]) |
|
1597 | hg.clean(r, qpp[0]) | |
1576 |
|
1598 | |||
1577 | def save(self, repo, msg=None): |
|
1599 | def save(self, repo, msg=None): | |
1578 | if not self.applied: |
|
1600 | if not self.applied: | |
1579 | self.ui.warn(_("save: no patches applied, exiting\n")) |
|
1601 | self.ui.warn(_("save: no patches applied, exiting\n")) | |
1580 | return 1 |
|
1602 | return 1 | |
1581 | if self.issaveline(self.applied[-1]): |
|
1603 | if self.issaveline(self.applied[-1]): | |
1582 | self.ui.warn(_("status is already saved\n")) |
|
1604 | self.ui.warn(_("status is already saved\n")) | |
1583 | return 1 |
|
1605 | return 1 | |
1584 |
|
1606 | |||
1585 | if not msg: |
|
1607 | if not msg: | |
1586 | msg = _("hg patches saved state") |
|
1608 | msg = _("hg patches saved state") | |
1587 | else: |
|
1609 | else: | |
1588 | msg = "hg patches: " + msg.rstrip('\r\n') |
|
1610 | msg = "hg patches: " + msg.rstrip('\r\n') | |
1589 | r = self.qrepo() |
|
1611 | r = self.qrepo() | |
1590 | if r: |
|
1612 | if r: | |
1591 | pp = r.dirstate.parents() |
|
1613 | pp = r.dirstate.parents() | |
1592 | msg += "\nDirstate: %s %s" % (hex(pp[0]), hex(pp[1])) |
|
1614 | msg += "\nDirstate: %s %s" % (hex(pp[0]), hex(pp[1])) | |
1593 | msg += "\n\nPatch Data:\n" |
|
1615 | msg += "\n\nPatch Data:\n" | |
1594 | msg += ''.join('%s\n' % x for x in self.applied) |
|
1616 | msg += ''.join('%s\n' % x for x in self.applied) | |
1595 | msg += ''.join(':%s\n' % x for x in self.full_series) |
|
1617 | msg += ''.join(':%s\n' % x for x in self.full_series) | |
1596 | n = repo.commit(msg, force=True) |
|
1618 | n = repo.commit(msg, force=True) | |
1597 | if not n: |
|
1619 | if not n: | |
1598 | self.ui.warn(_("repo commit failed\n")) |
|
1620 | self.ui.warn(_("repo commit failed\n")) | |
1599 | return 1 |
|
1621 | return 1 | |
1600 | self.applied.append(statusentry(n, '.hg.patches.save.line')) |
|
1622 | self.applied.append(statusentry(n, '.hg.patches.save.line')) | |
1601 | self.applied_dirty = 1 |
|
1623 | self.applied_dirty = 1 | |
1602 | self.removeundo(repo) |
|
1624 | self.removeundo(repo) | |
1603 |
|
1625 | |||
1604 | def full_series_end(self): |
|
1626 | def full_series_end(self): | |
1605 | if self.applied: |
|
1627 | if self.applied: | |
1606 | p = self.applied[-1].name |
|
1628 | p = self.applied[-1].name | |
1607 | end = self.find_series(p) |
|
1629 | end = self.find_series(p) | |
1608 | if end is None: |
|
1630 | if end is None: | |
1609 | return len(self.full_series) |
|
1631 | return len(self.full_series) | |
1610 | return end + 1 |
|
1632 | return end + 1 | |
1611 | return 0 |
|
1633 | return 0 | |
1612 |
|
1634 | |||
1613 | def series_end(self, all_patches=False): |
|
1635 | def series_end(self, all_patches=False): | |
1614 | """If all_patches is False, return the index of the next pushable patch |
|
1636 | """If all_patches is False, return the index of the next pushable patch | |
1615 | in the series, or the series length. If all_patches is True, return the |
|
1637 | in the series, or the series length. If all_patches is True, return the | |
1616 | index of the first patch past the last applied one. |
|
1638 | index of the first patch past the last applied one. | |
1617 | """ |
|
1639 | """ | |
1618 | end = 0 |
|
1640 | end = 0 | |
1619 | def next(start): |
|
1641 | def next(start): | |
1620 | if all_patches or start >= len(self.series): |
|
1642 | if all_patches or start >= len(self.series): | |
1621 | return start |
|
1643 | return start | |
1622 | for i in xrange(start, len(self.series)): |
|
1644 | for i in xrange(start, len(self.series)): | |
1623 | p, reason = self.pushable(i) |
|
1645 | p, reason = self.pushable(i) | |
1624 | if p: |
|
1646 | if p: | |
1625 | break |
|
1647 | break | |
1626 | self.explain_pushable(i) |
|
1648 | self.explain_pushable(i) | |
1627 | return i |
|
1649 | return i | |
1628 | if self.applied: |
|
1650 | if self.applied: | |
1629 | p = self.applied[-1].name |
|
1651 | p = self.applied[-1].name | |
1630 | try: |
|
1652 | try: | |
1631 | end = self.series.index(p) |
|
1653 | end = self.series.index(p) | |
1632 | except ValueError: |
|
1654 | except ValueError: | |
1633 | return 0 |
|
1655 | return 0 | |
1634 | return next(end + 1) |
|
1656 | return next(end + 1) | |
1635 | return next(end) |
|
1657 | return next(end) | |
1636 |
|
1658 | |||
1637 | def appliedname(self, index): |
|
1659 | def appliedname(self, index): | |
1638 | pname = self.applied[index].name |
|
1660 | pname = self.applied[index].name | |
1639 | if not self.ui.verbose: |
|
1661 | if not self.ui.verbose: | |
1640 | p = pname |
|
1662 | p = pname | |
1641 | else: |
|
1663 | else: | |
1642 | p = str(self.series.index(pname)) + " " + pname |
|
1664 | p = str(self.series.index(pname)) + " " + pname | |
1643 | return p |
|
1665 | return p | |
1644 |
|
1666 | |||
1645 | def qimport(self, repo, files, patchname=None, rev=None, existing=None, |
|
1667 | def qimport(self, repo, files, patchname=None, rev=None, existing=None, | |
1646 | force=None, git=False): |
|
1668 | force=None, git=False): | |
1647 | def checkseries(patchname): |
|
1669 | def checkseries(patchname): | |
1648 | if patchname in self.series: |
|
1670 | if patchname in self.series: | |
1649 | raise util.Abort(_('patch %s is already in the series file') |
|
1671 | raise util.Abort(_('patch %s is already in the series file') | |
1650 | % patchname) |
|
1672 | % patchname) | |
1651 | def checkfile(patchname): |
|
1673 | def checkfile(patchname): | |
1652 | if not force and os.path.exists(self.join(patchname)): |
|
1674 | if not force and os.path.exists(self.join(patchname)): | |
1653 | raise util.Abort(_('patch "%s" already exists') |
|
1675 | raise util.Abort(_('patch "%s" already exists') | |
1654 | % patchname) |
|
1676 | % patchname) | |
1655 |
|
1677 | |||
1656 | if rev: |
|
1678 | if rev: | |
1657 | if files: |
|
1679 | if files: | |
1658 | raise util.Abort(_('option "-r" not valid when importing ' |
|
1680 | raise util.Abort(_('option "-r" not valid when importing ' | |
1659 | 'files')) |
|
1681 | 'files')) | |
1660 | rev = cmdutil.revrange(repo, rev) |
|
1682 | rev = cmdutil.revrange(repo, rev) | |
1661 | rev.sort(reverse=True) |
|
1683 | rev.sort(reverse=True) | |
1662 | if (len(files) > 1 or len(rev) > 1) and patchname: |
|
1684 | if (len(files) > 1 or len(rev) > 1) and patchname: | |
1663 | raise util.Abort(_('option "-n" not valid when importing multiple ' |
|
1685 | raise util.Abort(_('option "-n" not valid when importing multiple ' | |
1664 | 'patches')) |
|
1686 | 'patches')) | |
1665 | if rev: |
|
1687 | if rev: | |
1666 | # If mq patches are applied, we can only import revisions |
|
1688 | # If mq patches are applied, we can only import revisions | |
1667 | # that form a linear path to qbase. |
|
1689 | # that form a linear path to qbase. | |
1668 | # Otherwise, they should form a linear path to a head. |
|
1690 | # Otherwise, they should form a linear path to a head. | |
1669 | heads = repo.changelog.heads(repo.changelog.node(rev[-1])) |
|
1691 | heads = repo.changelog.heads(repo.changelog.node(rev[-1])) | |
1670 | if len(heads) > 1: |
|
1692 | if len(heads) > 1: | |
1671 | raise util.Abort(_('revision %d is the root of more than one ' |
|
1693 | raise util.Abort(_('revision %d is the root of more than one ' | |
1672 | 'branch') % rev[-1]) |
|
1694 | 'branch') % rev[-1]) | |
1673 | if self.applied: |
|
1695 | if self.applied: | |
1674 | base = repo.changelog.node(rev[0]) |
|
1696 | base = repo.changelog.node(rev[0]) | |
1675 | if base in [n.node for n in self.applied]: |
|
1697 | if base in [n.node for n in self.applied]: | |
1676 | raise util.Abort(_('revision %d is already managed') |
|
1698 | raise util.Abort(_('revision %d is already managed') | |
1677 | % rev[0]) |
|
1699 | % rev[0]) | |
1678 | if heads != [self.applied[-1].node]: |
|
1700 | if heads != [self.applied[-1].node]: | |
1679 | raise util.Abort(_('revision %d is not the parent of ' |
|
1701 | raise util.Abort(_('revision %d is not the parent of ' | |
1680 | 'the queue') % rev[0]) |
|
1702 | 'the queue') % rev[0]) | |
1681 | base = repo.changelog.rev(self.applied[0].node) |
|
1703 | base = repo.changelog.rev(self.applied[0].node) | |
1682 | lastparent = repo.changelog.parentrevs(base)[0] |
|
1704 | lastparent = repo.changelog.parentrevs(base)[0] | |
1683 | else: |
|
1705 | else: | |
1684 | if heads != [repo.changelog.node(rev[0])]: |
|
1706 | if heads != [repo.changelog.node(rev[0])]: | |
1685 | raise util.Abort(_('revision %d has unmanaged children') |
|
1707 | raise util.Abort(_('revision %d has unmanaged children') | |
1686 | % rev[0]) |
|
1708 | % rev[0]) | |
1687 | lastparent = None |
|
1709 | lastparent = None | |
1688 |
|
1710 | |||
1689 | diffopts = self.diffopts({'git': git}) |
|
1711 | diffopts = self.diffopts({'git': git}) | |
1690 | for r in rev: |
|
1712 | for r in rev: | |
1691 | p1, p2 = repo.changelog.parentrevs(r) |
|
1713 | p1, p2 = repo.changelog.parentrevs(r) | |
1692 | n = repo.changelog.node(r) |
|
1714 | n = repo.changelog.node(r) | |
1693 | if p2 != nullrev: |
|
1715 | if p2 != nullrev: | |
1694 | raise util.Abort(_('cannot import merge revision %d') % r) |
|
1716 | raise util.Abort(_('cannot import merge revision %d') % r) | |
1695 | if lastparent and lastparent != r: |
|
1717 | if lastparent and lastparent != r: | |
1696 | raise util.Abort(_('revision %d is not the parent of %d') |
|
1718 | raise util.Abort(_('revision %d is not the parent of %d') | |
1697 | % (r, lastparent)) |
|
1719 | % (r, lastparent)) | |
1698 | lastparent = p1 |
|
1720 | lastparent = p1 | |
1699 |
|
1721 | |||
1700 | if not patchname: |
|
1722 | if not patchname: | |
1701 | patchname = normname('%d.diff' % r) |
|
1723 | patchname = normname('%d.diff' % r) | |
1702 | self.check_reserved_name(patchname) |
|
1724 | self.check_reserved_name(patchname) | |
1703 | checkseries(patchname) |
|
1725 | checkseries(patchname) | |
1704 | checkfile(patchname) |
|
1726 | checkfile(patchname) | |
1705 | self.full_series.insert(0, patchname) |
|
1727 | self.full_series.insert(0, patchname) | |
1706 |
|
1728 | |||
1707 | patchf = self.opener(patchname, "w") |
|
1729 | patchf = self.opener(patchname, "w") | |
1708 | cmdutil.export(repo, [n], fp=patchf, opts=diffopts) |
|
1730 | cmdutil.export(repo, [n], fp=patchf, opts=diffopts) | |
1709 | patchf.close() |
|
1731 | patchf.close() | |
1710 |
|
1732 | |||
1711 | se = statusentry(n, patchname) |
|
1733 | se = statusentry(n, patchname) | |
1712 | self.applied.insert(0, se) |
|
1734 | self.applied.insert(0, se) | |
1713 |
|
1735 | |||
1714 | self.added.append(patchname) |
|
1736 | self.added.append(patchname) | |
1715 | patchname = None |
|
1737 | patchname = None | |
1716 | self.parse_series() |
|
1738 | self.parse_series() | |
1717 | self.applied_dirty = 1 |
|
1739 | self.applied_dirty = 1 | |
1718 | self.series_dirty = True |
|
1740 | self.series_dirty = True | |
1719 |
|
1741 | |||
1720 | for i, filename in enumerate(files): |
|
1742 | for i, filename in enumerate(files): | |
1721 | if existing: |
|
1743 | if existing: | |
1722 | if filename == '-': |
|
1744 | if filename == '-': | |
1723 | raise util.Abort(_('-e is incompatible with import from -')) |
|
1745 | raise util.Abort(_('-e is incompatible with import from -')) | |
1724 | filename = normname(filename) |
|
1746 | filename = normname(filename) | |
1725 | self.check_reserved_name(filename) |
|
1747 | self.check_reserved_name(filename) | |
1726 | originpath = self.join(filename) |
|
1748 | originpath = self.join(filename) | |
1727 | if not os.path.isfile(originpath): |
|
1749 | if not os.path.isfile(originpath): | |
1728 | raise util.Abort(_("patch %s does not exist") % filename) |
|
1750 | raise util.Abort(_("patch %s does not exist") % filename) | |
1729 |
|
1751 | |||
1730 | if patchname: |
|
1752 | if patchname: | |
1731 | self.check_reserved_name(patchname) |
|
1753 | self.check_reserved_name(patchname) | |
1732 | checkfile(patchname) |
|
1754 | checkfile(patchname) | |
1733 |
|
1755 | |||
1734 | self.ui.write(_('renaming %s to %s\n') |
|
1756 | self.ui.write(_('renaming %s to %s\n') | |
1735 | % (filename, patchname)) |
|
1757 | % (filename, patchname)) | |
1736 | util.rename(originpath, self.join(patchname)) |
|
1758 | util.rename(originpath, self.join(patchname)) | |
1737 | else: |
|
1759 | else: | |
1738 | patchname = filename |
|
1760 | patchname = filename | |
1739 |
|
1761 | |||
1740 | else: |
|
1762 | else: | |
1741 | try: |
|
1763 | try: | |
1742 | if filename == '-': |
|
1764 | if filename == '-': | |
1743 | if not patchname: |
|
1765 | if not patchname: | |
1744 | raise util.Abort( |
|
1766 | raise util.Abort( | |
1745 | _('need --name to import a patch from -')) |
|
1767 | _('need --name to import a patch from -')) | |
1746 | text = sys.stdin.read() |
|
1768 | text = sys.stdin.read() | |
1747 | else: |
|
1769 | else: | |
1748 | text = url.open(self.ui, filename).read() |
|
1770 | text = url.open(self.ui, filename).read() | |
1749 | except (OSError, IOError): |
|
1771 | except (OSError, IOError): | |
1750 | raise util.Abort(_("unable to read file %s") % filename) |
|
1772 | raise util.Abort(_("unable to read file %s") % filename) | |
1751 | if not patchname: |
|
1773 | if not patchname: | |
1752 | patchname = normname(os.path.basename(filename)) |
|
1774 | patchname = normname(os.path.basename(filename)) | |
1753 | self.check_reserved_name(patchname) |
|
1775 | self.check_reserved_name(patchname) | |
1754 | checkfile(patchname) |
|
1776 | checkfile(patchname) | |
1755 | patchf = self.opener(patchname, "w") |
|
1777 | patchf = self.opener(patchname, "w") | |
1756 | patchf.write(text) |
|
1778 | patchf.write(text) | |
1757 | if not force: |
|
1779 | if not force: | |
1758 | checkseries(patchname) |
|
1780 | checkseries(patchname) | |
1759 | if patchname not in self.series: |
|
1781 | if patchname not in self.series: | |
1760 | index = self.full_series_end() + i |
|
1782 | index = self.full_series_end() + i | |
1761 | self.full_series[index:index] = [patchname] |
|
1783 | self.full_series[index:index] = [patchname] | |
1762 | self.parse_series() |
|
1784 | self.parse_series() | |
1763 | self.series_dirty = True |
|
1785 | self.series_dirty = True | |
1764 | self.ui.warn(_("adding %s to series file\n") % patchname) |
|
1786 | self.ui.warn(_("adding %s to series file\n") % patchname) | |
1765 | self.added.append(patchname) |
|
1787 | self.added.append(patchname) | |
1766 | patchname = None |
|
1788 | patchname = None | |
1767 |
|
1789 | |||
1768 | def delete(ui, repo, *patches, **opts): |
|
1790 | def delete(ui, repo, *patches, **opts): | |
1769 | """remove patches from queue |
|
1791 | """remove patches from queue | |
1770 |
|
1792 | |||
1771 | The patches must not be applied, and at least one patch is required. With |
|
1793 | The patches must not be applied, and at least one patch is required. With | |
1772 | -k/--keep, the patch files are preserved in the patch directory. |
|
1794 | -k/--keep, the patch files are preserved in the patch directory. | |
1773 |
|
1795 | |||
1774 | To stop managing a patch and move it into permanent history, |
|
1796 | To stop managing a patch and move it into permanent history, | |
1775 | use the :hg:`qfinish` command.""" |
|
1797 | use the :hg:`qfinish` command.""" | |
1776 | q = repo.mq |
|
1798 | q = repo.mq | |
1777 | q.delete(repo, patches, opts) |
|
1799 | q.delete(repo, patches, opts) | |
1778 | q.save_dirty() |
|
1800 | q.save_dirty() | |
1779 | return 0 |
|
1801 | return 0 | |
1780 |
|
1802 | |||
1781 | def applied(ui, repo, patch=None, **opts): |
|
1803 | def applied(ui, repo, patch=None, **opts): | |
1782 | """print the patches already applied |
|
1804 | """print the patches already applied | |
1783 |
|
1805 | |||
1784 | Returns 0 on success.""" |
|
1806 | Returns 0 on success.""" | |
1785 |
|
1807 | |||
1786 | q = repo.mq |
|
1808 | q = repo.mq | |
1787 |
|
1809 | |||
1788 | if patch: |
|
1810 | if patch: | |
1789 | if patch not in q.series: |
|
1811 | if patch not in q.series: | |
1790 | raise util.Abort(_("patch %s is not in series file") % patch) |
|
1812 | raise util.Abort(_("patch %s is not in series file") % patch) | |
1791 | end = q.series.index(patch) + 1 |
|
1813 | end = q.series.index(patch) + 1 | |
1792 | else: |
|
1814 | else: | |
1793 | end = q.series_end(True) |
|
1815 | end = q.series_end(True) | |
1794 |
|
1816 | |||
1795 | if opts.get('last') and not end: |
|
1817 | if opts.get('last') and not end: | |
1796 | ui.write(_("no patches applied\n")) |
|
1818 | ui.write(_("no patches applied\n")) | |
1797 | return 1 |
|
1819 | return 1 | |
1798 | elif opts.get('last') and end == 1: |
|
1820 | elif opts.get('last') and end == 1: | |
1799 | ui.write(_("only one patch applied\n")) |
|
1821 | ui.write(_("only one patch applied\n")) | |
1800 | return 1 |
|
1822 | return 1 | |
1801 | elif opts.get('last'): |
|
1823 | elif opts.get('last'): | |
1802 | start = end - 2 |
|
1824 | start = end - 2 | |
1803 | end = 1 |
|
1825 | end = 1 | |
1804 | else: |
|
1826 | else: | |
1805 | start = 0 |
|
1827 | start = 0 | |
1806 |
|
1828 | |||
1807 | q.qseries(repo, length=end, start=start, status='A', |
|
1829 | q.qseries(repo, length=end, start=start, status='A', | |
1808 | summary=opts.get('summary')) |
|
1830 | summary=opts.get('summary')) | |
1809 |
|
1831 | |||
1810 |
|
1832 | |||
1811 | def unapplied(ui, repo, patch=None, **opts): |
|
1833 | def unapplied(ui, repo, patch=None, **opts): | |
1812 | """print the patches not yet applied |
|
1834 | """print the patches not yet applied | |
1813 |
|
1835 | |||
1814 | Returns 0 on success.""" |
|
1836 | Returns 0 on success.""" | |
1815 |
|
1837 | |||
1816 | q = repo.mq |
|
1838 | q = repo.mq | |
1817 | if patch: |
|
1839 | if patch: | |
1818 | if patch not in q.series: |
|
1840 | if patch not in q.series: | |
1819 | raise util.Abort(_("patch %s is not in series file") % patch) |
|
1841 | raise util.Abort(_("patch %s is not in series file") % patch) | |
1820 | start = q.series.index(patch) + 1 |
|
1842 | start = q.series.index(patch) + 1 | |
1821 | else: |
|
1843 | else: | |
1822 | start = q.series_end(True) |
|
1844 | start = q.series_end(True) | |
1823 |
|
1845 | |||
1824 | if start == len(q.series) and opts.get('first'): |
|
1846 | if start == len(q.series) and opts.get('first'): | |
1825 | ui.write(_("all patches applied\n")) |
|
1847 | ui.write(_("all patches applied\n")) | |
1826 | return 1 |
|
1848 | return 1 | |
1827 |
|
1849 | |||
1828 | length = opts.get('first') and 1 or None |
|
1850 | length = opts.get('first') and 1 or None | |
1829 | q.qseries(repo, start=start, length=length, status='U', |
|
1851 | q.qseries(repo, start=start, length=length, status='U', | |
1830 | summary=opts.get('summary')) |
|
1852 | summary=opts.get('summary')) | |
1831 |
|
1853 | |||
1832 | def qimport(ui, repo, *filename, **opts): |
|
1854 | def qimport(ui, repo, *filename, **opts): | |
1833 | """import a patch |
|
1855 | """import a patch | |
1834 |
|
1856 | |||
1835 | The patch is inserted into the series after the last applied |
|
1857 | The patch is inserted into the series after the last applied | |
1836 | patch. If no patches have been applied, qimport prepends the patch |
|
1858 | patch. If no patches have been applied, qimport prepends the patch | |
1837 | to the series. |
|
1859 | to the series. | |
1838 |
|
1860 | |||
1839 | The patch will have the same name as its source file unless you |
|
1861 | The patch will have the same name as its source file unless you | |
1840 | give it a new one with -n/--name. |
|
1862 | give it a new one with -n/--name. | |
1841 |
|
1863 | |||
1842 | You can register an existing patch inside the patch directory with |
|
1864 | You can register an existing patch inside the patch directory with | |
1843 | the -e/--existing flag. |
|
1865 | the -e/--existing flag. | |
1844 |
|
1866 | |||
1845 | With -f/--force, an existing patch of the same name will be |
|
1867 | With -f/--force, an existing patch of the same name will be | |
1846 | overwritten. |
|
1868 | overwritten. | |
1847 |
|
1869 | |||
1848 | An existing changeset may be placed under mq control with -r/--rev |
|
1870 | An existing changeset may be placed under mq control with -r/--rev | |
1849 | (e.g. qimport --rev tip -n patch will place tip under mq control). |
|
1871 | (e.g. qimport --rev tip -n patch will place tip under mq control). | |
1850 | With -g/--git, patches imported with --rev will use the git diff |
|
1872 | With -g/--git, patches imported with --rev will use the git diff | |
1851 | format. See the diffs help topic for information on why this is |
|
1873 | format. See the diffs help topic for information on why this is | |
1852 | important for preserving rename/copy information and permission |
|
1874 | important for preserving rename/copy information and permission | |
1853 | changes. |
|
1875 | changes. | |
1854 |
|
1876 | |||
1855 | To import a patch from standard input, pass - as the patch file. |
|
1877 | To import a patch from standard input, pass - as the patch file. | |
1856 | When importing from standard input, a patch name must be specified |
|
1878 | When importing from standard input, a patch name must be specified | |
1857 | using the --name flag. |
|
1879 | using the --name flag. | |
1858 |
|
1880 | |||
1859 | To import an existing patch while renaming it:: |
|
1881 | To import an existing patch while renaming it:: | |
1860 |
|
1882 | |||
1861 | hg qimport -e existing-patch -n new-name |
|
1883 | hg qimport -e existing-patch -n new-name | |
1862 |
|
1884 | |||
1863 | Returns 0 if import succeeded. |
|
1885 | Returns 0 if import succeeded. | |
1864 | """ |
|
1886 | """ | |
1865 | q = repo.mq |
|
1887 | q = repo.mq | |
1866 | try: |
|
1888 | try: | |
1867 | q.qimport(repo, filename, patchname=opts.get('name'), |
|
1889 | q.qimport(repo, filename, patchname=opts.get('name'), | |
1868 | existing=opts.get('existing'), force=opts.get('force'), |
|
1890 | existing=opts.get('existing'), force=opts.get('force'), | |
1869 | rev=opts.get('rev'), git=opts.get('git')) |
|
1891 | rev=opts.get('rev'), git=opts.get('git')) | |
1870 | finally: |
|
1892 | finally: | |
1871 | q.save_dirty() |
|
1893 | q.save_dirty() | |
1872 |
|
1894 | |||
1873 | if opts.get('push') and not opts.get('rev'): |
|
1895 | if opts.get('push') and not opts.get('rev'): | |
1874 | return q.push(repo, None) |
|
1896 | return q.push(repo, None) | |
1875 | return 0 |
|
1897 | return 0 | |
1876 |
|
1898 | |||
1877 | def qinit(ui, repo, create): |
|
1899 | def qinit(ui, repo, create): | |
1878 | """initialize a new queue repository |
|
1900 | """initialize a new queue repository | |
1879 |
|
1901 | |||
1880 | This command also creates a series file for ordering patches, and |
|
1902 | This command also creates a series file for ordering patches, and | |
1881 | an mq-specific .hgignore file in the queue repository, to exclude |
|
1903 | an mq-specific .hgignore file in the queue repository, to exclude | |
1882 | the status and guards files (these contain mostly transient state). |
|
1904 | the status and guards files (these contain mostly transient state). | |
1883 |
|
1905 | |||
1884 | Returns 0 if initialization succeeded.""" |
|
1906 | Returns 0 if initialization succeeded.""" | |
1885 | q = repo.mq |
|
1907 | q = repo.mq | |
1886 | r = q.init(repo, create) |
|
1908 | r = q.init(repo, create) | |
1887 | q.save_dirty() |
|
1909 | q.save_dirty() | |
1888 | if r: |
|
1910 | if r: | |
1889 | if not os.path.exists(r.wjoin('.hgignore')): |
|
1911 | if not os.path.exists(r.wjoin('.hgignore')): | |
1890 | fp = r.wopener('.hgignore', 'w') |
|
1912 | fp = r.wopener('.hgignore', 'w') | |
1891 | fp.write('^\\.hg\n') |
|
1913 | fp.write('^\\.hg\n') | |
1892 | fp.write('^\\.mq\n') |
|
1914 | fp.write('^\\.mq\n') | |
1893 | fp.write('syntax: glob\n') |
|
1915 | fp.write('syntax: glob\n') | |
1894 | fp.write('status\n') |
|
1916 | fp.write('status\n') | |
1895 | fp.write('guards\n') |
|
1917 | fp.write('guards\n') | |
1896 | fp.close() |
|
1918 | fp.close() | |
1897 | if not os.path.exists(r.wjoin('series')): |
|
1919 | if not os.path.exists(r.wjoin('series')): | |
1898 | r.wopener('series', 'w').close() |
|
1920 | r.wopener('series', 'w').close() | |
1899 | r[None].add(['.hgignore', 'series']) |
|
1921 | r[None].add(['.hgignore', 'series']) | |
1900 | commands.add(ui, r) |
|
1922 | commands.add(ui, r) | |
1901 | return 0 |
|
1923 | return 0 | |
1902 |
|
1924 | |||
1903 | def init(ui, repo, **opts): |
|
1925 | def init(ui, repo, **opts): | |
1904 | """init a new queue repository (DEPRECATED) |
|
1926 | """init a new queue repository (DEPRECATED) | |
1905 |
|
1927 | |||
1906 | The queue repository is unversioned by default. If |
|
1928 | The queue repository is unversioned by default. If | |
1907 | -c/--create-repo is specified, qinit will create a separate nested |
|
1929 | -c/--create-repo is specified, qinit will create a separate nested | |
1908 | repository for patches (qinit -c may also be run later to convert |
|
1930 | repository for patches (qinit -c may also be run later to convert | |
1909 | an unversioned patch repository into a versioned one). You can use |
|
1931 | an unversioned patch repository into a versioned one). You can use | |
1910 | qcommit to commit changes to this queue repository. |
|
1932 | qcommit to commit changes to this queue repository. | |
1911 |
|
1933 | |||
1912 | This command is deprecated. Without -c, it's implied by other relevant |
|
1934 | This command is deprecated. Without -c, it's implied by other relevant | |
1913 | commands. With -c, use :hg:`init --mq` instead.""" |
|
1935 | commands. With -c, use :hg:`init --mq` instead.""" | |
1914 | return qinit(ui, repo, create=opts.get('create_repo')) |
|
1936 | return qinit(ui, repo, create=opts.get('create_repo')) | |
1915 |
|
1937 | |||
1916 | def clone(ui, source, dest=None, **opts): |
|
1938 | def clone(ui, source, dest=None, **opts): | |
1917 | '''clone main and patch repository at same time |
|
1939 | '''clone main and patch repository at same time | |
1918 |
|
1940 | |||
1919 | If source is local, destination will have no patches applied. If |
|
1941 | If source is local, destination will have no patches applied. If | |
1920 | source is remote, this command can not check if patches are |
|
1942 | source is remote, this command can not check if patches are | |
1921 | applied in source, so cannot guarantee that patches are not |
|
1943 | applied in source, so cannot guarantee that patches are not | |
1922 | applied in destination. If you clone remote repository, be sure |
|
1944 | applied in destination. If you clone remote repository, be sure | |
1923 | before that it has no patches applied. |
|
1945 | before that it has no patches applied. | |
1924 |
|
1946 | |||
1925 | Source patch repository is looked for in <src>/.hg/patches by |
|
1947 | Source patch repository is looked for in <src>/.hg/patches by | |
1926 | default. Use -p <url> to change. |
|
1948 | default. Use -p <url> to change. | |
1927 |
|
1949 | |||
1928 | The patch directory must be a nested Mercurial repository, as |
|
1950 | The patch directory must be a nested Mercurial repository, as | |
1929 | would be created by :hg:`init --mq`. |
|
1951 | would be created by :hg:`init --mq`. | |
1930 |
|
1952 | |||
1931 | Return 0 on success. |
|
1953 | Return 0 on success. | |
1932 | ''' |
|
1954 | ''' | |
1933 | def patchdir(repo): |
|
1955 | def patchdir(repo): | |
1934 | url = repo.url() |
|
1956 | url = repo.url() | |
1935 | if url.endswith('/'): |
|
1957 | if url.endswith('/'): | |
1936 | url = url[:-1] |
|
1958 | url = url[:-1] | |
1937 | return url + '/.hg/patches' |
|
1959 | return url + '/.hg/patches' | |
1938 | if dest is None: |
|
1960 | if dest is None: | |
1939 | dest = hg.defaultdest(source) |
|
1961 | dest = hg.defaultdest(source) | |
1940 | sr = hg.repository(hg.remoteui(ui, opts), ui.expandpath(source)) |
|
1962 | sr = hg.repository(hg.remoteui(ui, opts), ui.expandpath(source)) | |
1941 | if opts.get('patches'): |
|
1963 | if opts.get('patches'): | |
1942 | patchespath = ui.expandpath(opts.get('patches')) |
|
1964 | patchespath = ui.expandpath(opts.get('patches')) | |
1943 | else: |
|
1965 | else: | |
1944 | patchespath = patchdir(sr) |
|
1966 | patchespath = patchdir(sr) | |
1945 | try: |
|
1967 | try: | |
1946 | hg.repository(ui, patchespath) |
|
1968 | hg.repository(ui, patchespath) | |
1947 | except error.RepoError: |
|
1969 | except error.RepoError: | |
1948 | raise util.Abort(_('versioned patch repository not found' |
|
1970 | raise util.Abort(_('versioned patch repository not found' | |
1949 | ' (see init --mq)')) |
|
1971 | ' (see init --mq)')) | |
1950 | qbase, destrev = None, None |
|
1972 | qbase, destrev = None, None | |
1951 | if sr.local(): |
|
1973 | if sr.local(): | |
1952 | if sr.mq.applied: |
|
1974 | if sr.mq.applied: | |
1953 | qbase = sr.mq.applied[0].node |
|
1975 | qbase = sr.mq.applied[0].node | |
1954 | if not hg.islocal(dest): |
|
1976 | if not hg.islocal(dest): | |
1955 | heads = set(sr.heads()) |
|
1977 | heads = set(sr.heads()) | |
1956 | destrev = list(heads.difference(sr.heads(qbase))) |
|
1978 | destrev = list(heads.difference(sr.heads(qbase))) | |
1957 | destrev.append(sr.changelog.parents(qbase)[0]) |
|
1979 | destrev.append(sr.changelog.parents(qbase)[0]) | |
1958 | elif sr.capable('lookup'): |
|
1980 | elif sr.capable('lookup'): | |
1959 | try: |
|
1981 | try: | |
1960 | qbase = sr.lookup('qbase') |
|
1982 | qbase = sr.lookup('qbase') | |
1961 | except error.RepoError: |
|
1983 | except error.RepoError: | |
1962 | pass |
|
1984 | pass | |
1963 | ui.note(_('cloning main repository\n')) |
|
1985 | ui.note(_('cloning main repository\n')) | |
1964 | sr, dr = hg.clone(ui, sr.url(), dest, |
|
1986 | sr, dr = hg.clone(ui, sr.url(), dest, | |
1965 | pull=opts.get('pull'), |
|
1987 | pull=opts.get('pull'), | |
1966 | rev=destrev, |
|
1988 | rev=destrev, | |
1967 | update=False, |
|
1989 | update=False, | |
1968 | stream=opts.get('uncompressed')) |
|
1990 | stream=opts.get('uncompressed')) | |
1969 | ui.note(_('cloning patch repository\n')) |
|
1991 | ui.note(_('cloning patch repository\n')) | |
1970 | hg.clone(ui, opts.get('patches') or patchdir(sr), patchdir(dr), |
|
1992 | hg.clone(ui, opts.get('patches') or patchdir(sr), patchdir(dr), | |
1971 | pull=opts.get('pull'), update=not opts.get('noupdate'), |
|
1993 | pull=opts.get('pull'), update=not opts.get('noupdate'), | |
1972 | stream=opts.get('uncompressed')) |
|
1994 | stream=opts.get('uncompressed')) | |
1973 | if dr.local(): |
|
1995 | if dr.local(): | |
1974 | if qbase: |
|
1996 | if qbase: | |
1975 | ui.note(_('stripping applied patches from destination ' |
|
1997 | ui.note(_('stripping applied patches from destination ' | |
1976 | 'repository\n')) |
|
1998 | 'repository\n')) | |
1977 | dr.mq.strip(dr, [qbase], update=False, backup=None) |
|
1999 | dr.mq.strip(dr, [qbase], update=False, backup=None) | |
1978 | if not opts.get('noupdate'): |
|
2000 | if not opts.get('noupdate'): | |
1979 | ui.note(_('updating destination repository\n')) |
|
2001 | ui.note(_('updating destination repository\n')) | |
1980 | hg.update(dr, dr.changelog.tip()) |
|
2002 | hg.update(dr, dr.changelog.tip()) | |
1981 |
|
2003 | |||
1982 | def commit(ui, repo, *pats, **opts): |
|
2004 | def commit(ui, repo, *pats, **opts): | |
1983 | """commit changes in the queue repository (DEPRECATED) |
|
2005 | """commit changes in the queue repository (DEPRECATED) | |
1984 |
|
2006 | |||
1985 | This command is deprecated; use :hg:`commit --mq` instead.""" |
|
2007 | This command is deprecated; use :hg:`commit --mq` instead.""" | |
1986 | q = repo.mq |
|
2008 | q = repo.mq | |
1987 | r = q.qrepo() |
|
2009 | r = q.qrepo() | |
1988 | if not r: |
|
2010 | if not r: | |
1989 | raise util.Abort('no queue repository') |
|
2011 | raise util.Abort('no queue repository') | |
1990 | commands.commit(r.ui, r, *pats, **opts) |
|
2012 | commands.commit(r.ui, r, *pats, **opts) | |
1991 |
|
2013 | |||
1992 | def series(ui, repo, **opts): |
|
2014 | def series(ui, repo, **opts): | |
1993 | """print the entire series file |
|
2015 | """print the entire series file | |
1994 |
|
2016 | |||
1995 | Returns 0 on success.""" |
|
2017 | Returns 0 on success.""" | |
1996 | repo.mq.qseries(repo, missing=opts.get('missing'), summary=opts.get('summary')) |
|
2018 | repo.mq.qseries(repo, missing=opts.get('missing'), summary=opts.get('summary')) | |
1997 | return 0 |
|
2019 | return 0 | |
1998 |
|
2020 | |||
1999 | def top(ui, repo, **opts): |
|
2021 | def top(ui, repo, **opts): | |
2000 | """print the name of the current patch |
|
2022 | """print the name of the current patch | |
2001 |
|
2023 | |||
2002 | Returns 0 on success.""" |
|
2024 | Returns 0 on success.""" | |
2003 | q = repo.mq |
|
2025 | q = repo.mq | |
2004 | t = q.applied and q.series_end(True) or 0 |
|
2026 | t = q.applied and q.series_end(True) or 0 | |
2005 | if t: |
|
2027 | if t: | |
2006 | q.qseries(repo, start=t - 1, length=1, status='A', |
|
2028 | q.qseries(repo, start=t - 1, length=1, status='A', | |
2007 | summary=opts.get('summary')) |
|
2029 | summary=opts.get('summary')) | |
2008 | else: |
|
2030 | else: | |
2009 | ui.write(_("no patches applied\n")) |
|
2031 | ui.write(_("no patches applied\n")) | |
2010 | return 1 |
|
2032 | return 1 | |
2011 |
|
2033 | |||
2012 | def next(ui, repo, **opts): |
|
2034 | def next(ui, repo, **opts): | |
2013 | """print the name of the next patch |
|
2035 | """print the name of the next patch | |
2014 |
|
2036 | |||
2015 | Returns 0 on success.""" |
|
2037 | Returns 0 on success.""" | |
2016 | q = repo.mq |
|
2038 | q = repo.mq | |
2017 | end = q.series_end() |
|
2039 | end = q.series_end() | |
2018 | if end == len(q.series): |
|
2040 | if end == len(q.series): | |
2019 | ui.write(_("all patches applied\n")) |
|
2041 | ui.write(_("all patches applied\n")) | |
2020 | return 1 |
|
2042 | return 1 | |
2021 | q.qseries(repo, start=end, length=1, summary=opts.get('summary')) |
|
2043 | q.qseries(repo, start=end, length=1, summary=opts.get('summary')) | |
2022 |
|
2044 | |||
2023 | def prev(ui, repo, **opts): |
|
2045 | def prev(ui, repo, **opts): | |
2024 | """print the name of the previous patch |
|
2046 | """print the name of the previous patch | |
2025 |
|
2047 | |||
2026 | Returns 0 on success.""" |
|
2048 | Returns 0 on success.""" | |
2027 | q = repo.mq |
|
2049 | q = repo.mq | |
2028 | l = len(q.applied) |
|
2050 | l = len(q.applied) | |
2029 | if l == 1: |
|
2051 | if l == 1: | |
2030 | ui.write(_("only one patch applied\n")) |
|
2052 | ui.write(_("only one patch applied\n")) | |
2031 | return 1 |
|
2053 | return 1 | |
2032 | if not l: |
|
2054 | if not l: | |
2033 | ui.write(_("no patches applied\n")) |
|
2055 | ui.write(_("no patches applied\n")) | |
2034 | return 1 |
|
2056 | return 1 | |
2035 | q.qseries(repo, start=l - 2, length=1, status='A', |
|
2057 | q.qseries(repo, start=l - 2, length=1, status='A', | |
2036 | summary=opts.get('summary')) |
|
2058 | summary=opts.get('summary')) | |
2037 |
|
2059 | |||
2038 | def setupheaderopts(ui, opts): |
|
2060 | def setupheaderopts(ui, opts): | |
2039 | if not opts.get('user') and opts.get('currentuser'): |
|
2061 | if not opts.get('user') and opts.get('currentuser'): | |
2040 | opts['user'] = ui.username() |
|
2062 | opts['user'] = ui.username() | |
2041 | if not opts.get('date') and opts.get('currentdate'): |
|
2063 | if not opts.get('date') and opts.get('currentdate'): | |
2042 | opts['date'] = "%d %d" % util.makedate() |
|
2064 | opts['date'] = "%d %d" % util.makedate() | |
2043 |
|
2065 | |||
2044 | def new(ui, repo, patch, *args, **opts): |
|
2066 | def new(ui, repo, patch, *args, **opts): | |
2045 | """create a new patch |
|
2067 | """create a new patch | |
2046 |
|
2068 | |||
2047 | qnew creates a new patch on top of the currently-applied patch (if |
|
2069 | qnew creates a new patch on top of the currently-applied patch (if | |
2048 | any). The patch will be initialized with any outstanding changes |
|
2070 | any). The patch will be initialized with any outstanding changes | |
2049 | in the working directory. You may also use -I/--include, |
|
2071 | in the working directory. You may also use -I/--include, | |
2050 | -X/--exclude, and/or a list of files after the patch name to add |
|
2072 | -X/--exclude, and/or a list of files after the patch name to add | |
2051 | only changes to matching files to the new patch, leaving the rest |
|
2073 | only changes to matching files to the new patch, leaving the rest | |
2052 | as uncommitted modifications. |
|
2074 | as uncommitted modifications. | |
2053 |
|
2075 | |||
2054 | -u/--user and -d/--date can be used to set the (given) user and |
|
2076 | -u/--user and -d/--date can be used to set the (given) user and | |
2055 | date, respectively. -U/--currentuser and -D/--currentdate set user |
|
2077 | date, respectively. -U/--currentuser and -D/--currentdate set user | |
2056 | to current user and date to current date. |
|
2078 | to current user and date to current date. | |
2057 |
|
2079 | |||
2058 | -e/--edit, -m/--message or -l/--logfile set the patch header as |
|
2080 | -e/--edit, -m/--message or -l/--logfile set the patch header as | |
2059 | well as the commit message. If none is specified, the header is |
|
2081 | well as the commit message. If none is specified, the header is | |
2060 | empty and the commit message is '[mq]: PATCH'. |
|
2082 | empty and the commit message is '[mq]: PATCH'. | |
2061 |
|
2083 | |||
2062 | Use the -g/--git option to keep the patch in the git extended diff |
|
2084 | Use the -g/--git option to keep the patch in the git extended diff | |
2063 | format. Read the diffs help topic for more information on why this |
|
2085 | format. Read the diffs help topic for more information on why this | |
2064 | is important for preserving permission changes and copy/rename |
|
2086 | is important for preserving permission changes and copy/rename | |
2065 | information. |
|
2087 | information. | |
2066 |
|
2088 | |||
2067 | Returns 0 on successful creation of a new patch. |
|
2089 | Returns 0 on successful creation of a new patch. | |
2068 | """ |
|
2090 | """ | |
2069 | msg = cmdutil.logmessage(opts) |
|
2091 | msg = cmdutil.logmessage(opts) | |
2070 | def getmsg(): |
|
2092 | def getmsg(): | |
2071 | return ui.edit(msg, opts.get('user') or ui.username()) |
|
2093 | return ui.edit(msg, opts.get('user') or ui.username()) | |
2072 | q = repo.mq |
|
2094 | q = repo.mq | |
2073 | opts['msg'] = msg |
|
2095 | opts['msg'] = msg | |
2074 | if opts.get('edit'): |
|
2096 | if opts.get('edit'): | |
2075 | opts['msg'] = getmsg |
|
2097 | opts['msg'] = getmsg | |
2076 | else: |
|
2098 | else: | |
2077 | opts['msg'] = msg |
|
2099 | opts['msg'] = msg | |
2078 | setupheaderopts(ui, opts) |
|
2100 | setupheaderopts(ui, opts) | |
2079 | q.new(repo, patch, *args, **opts) |
|
2101 | q.new(repo, patch, *args, **opts) | |
2080 | q.save_dirty() |
|
2102 | q.save_dirty() | |
2081 | return 0 |
|
2103 | return 0 | |
2082 |
|
2104 | |||
2083 | def refresh(ui, repo, *pats, **opts): |
|
2105 | def refresh(ui, repo, *pats, **opts): | |
2084 | """update the current patch |
|
2106 | """update the current patch | |
2085 |
|
2107 | |||
2086 | If any file patterns are provided, the refreshed patch will |
|
2108 | If any file patterns are provided, the refreshed patch will | |
2087 | contain only the modifications that match those patterns; the |
|
2109 | contain only the modifications that match those patterns; the | |
2088 | remaining modifications will remain in the working directory. |
|
2110 | remaining modifications will remain in the working directory. | |
2089 |
|
2111 | |||
2090 | If -s/--short is specified, files currently included in the patch |
|
2112 | If -s/--short is specified, files currently included in the patch | |
2091 | will be refreshed just like matched files and remain in the patch. |
|
2113 | will be refreshed just like matched files and remain in the patch. | |
2092 |
|
2114 | |||
2093 | If -e/--edit is specified, Mercurial will start your configured editor for |
|
2115 | If -e/--edit is specified, Mercurial will start your configured editor for | |
2094 | you to enter a message. In case qrefresh fails, you will find a backup of |
|
2116 | you to enter a message. In case qrefresh fails, you will find a backup of | |
2095 | your message in ``.hg/last-message.txt``. |
|
2117 | your message in ``.hg/last-message.txt``. | |
2096 |
|
2118 | |||
2097 | hg add/remove/copy/rename work as usual, though you might want to |
|
2119 | hg add/remove/copy/rename work as usual, though you might want to | |
2098 | use git-style patches (-g/--git or [diff] git=1) to track copies |
|
2120 | use git-style patches (-g/--git or [diff] git=1) to track copies | |
2099 | and renames. See the diffs help topic for more information on the |
|
2121 | and renames. See the diffs help topic for more information on the | |
2100 | git diff format. |
|
2122 | git diff format. | |
2101 |
|
2123 | |||
2102 | Returns 0 on success. |
|
2124 | Returns 0 on success. | |
2103 | """ |
|
2125 | """ | |
2104 | q = repo.mq |
|
2126 | q = repo.mq | |
2105 | message = cmdutil.logmessage(opts) |
|
2127 | message = cmdutil.logmessage(opts) | |
2106 | if opts.get('edit'): |
|
2128 | if opts.get('edit'): | |
2107 | if not q.applied: |
|
2129 | if not q.applied: | |
2108 | ui.write(_("no patches applied\n")) |
|
2130 | ui.write(_("no patches applied\n")) | |
2109 | return 1 |
|
2131 | return 1 | |
2110 | if message: |
|
2132 | if message: | |
2111 | raise util.Abort(_('option "-e" incompatible with "-m" or "-l"')) |
|
2133 | raise util.Abort(_('option "-e" incompatible with "-m" or "-l"')) | |
2112 | patch = q.applied[-1].name |
|
2134 | patch = q.applied[-1].name | |
2113 | ph = patchheader(q.join(patch), q.plainmode) |
|
2135 | ph = patchheader(q.join(patch), q.plainmode) | |
2114 | message = ui.edit('\n'.join(ph.message), ph.user or ui.username()) |
|
2136 | message = ui.edit('\n'.join(ph.message), ph.user or ui.username()) | |
2115 | # We don't want to lose the patch message if qrefresh fails (issue2062) |
|
2137 | # We don't want to lose the patch message if qrefresh fails (issue2062) | |
2116 | msgfile = repo.opener('last-message.txt', 'wb') |
|
2138 | msgfile = repo.opener('last-message.txt', 'wb') | |
2117 | msgfile.write(message) |
|
2139 | msgfile.write(message) | |
2118 | msgfile.close() |
|
2140 | msgfile.close() | |
2119 | setupheaderopts(ui, opts) |
|
2141 | setupheaderopts(ui, opts) | |
2120 | ret = q.refresh(repo, pats, msg=message, **opts) |
|
2142 | ret = q.refresh(repo, pats, msg=message, **opts) | |
2121 | q.save_dirty() |
|
2143 | q.save_dirty() | |
2122 | return ret |
|
2144 | return ret | |
2123 |
|
2145 | |||
2124 | def diff(ui, repo, *pats, **opts): |
|
2146 | def diff(ui, repo, *pats, **opts): | |
2125 | """diff of the current patch and subsequent modifications |
|
2147 | """diff of the current patch and subsequent modifications | |
2126 |
|
2148 | |||
2127 | Shows a diff which includes the current patch as well as any |
|
2149 | Shows a diff which includes the current patch as well as any | |
2128 | changes which have been made in the working directory since the |
|
2150 | changes which have been made in the working directory since the | |
2129 | last refresh (thus showing what the current patch would become |
|
2151 | last refresh (thus showing what the current patch would become | |
2130 | after a qrefresh). |
|
2152 | after a qrefresh). | |
2131 |
|
2153 | |||
2132 | Use :hg:`diff` if you only want to see the changes made since the |
|
2154 | Use :hg:`diff` if you only want to see the changes made since the | |
2133 | last qrefresh, or :hg:`export qtip` if you want to see changes |
|
2155 | last qrefresh, or :hg:`export qtip` if you want to see changes | |
2134 | made by the current patch without including changes made since the |
|
2156 | made by the current patch without including changes made since the | |
2135 | qrefresh. |
|
2157 | qrefresh. | |
2136 |
|
2158 | |||
2137 | Returns 0 on success. |
|
2159 | Returns 0 on success. | |
2138 | """ |
|
2160 | """ | |
2139 | repo.mq.diff(repo, pats, opts) |
|
2161 | repo.mq.diff(repo, pats, opts) | |
2140 | return 0 |
|
2162 | return 0 | |
2141 |
|
2163 | |||
2142 | def fold(ui, repo, *files, **opts): |
|
2164 | def fold(ui, repo, *files, **opts): | |
2143 | """fold the named patches into the current patch |
|
2165 | """fold the named patches into the current patch | |
2144 |
|
2166 | |||
2145 | Patches must not yet be applied. Each patch will be successively |
|
2167 | Patches must not yet be applied. Each patch will be successively | |
2146 | applied to the current patch in the order given. If all the |
|
2168 | applied to the current patch in the order given. If all the | |
2147 | patches apply successfully, the current patch will be refreshed |
|
2169 | patches apply successfully, the current patch will be refreshed | |
2148 | with the new cumulative patch, and the folded patches will be |
|
2170 | with the new cumulative patch, and the folded patches will be | |
2149 | deleted. With -k/--keep, the folded patch files will not be |
|
2171 | deleted. With -k/--keep, the folded patch files will not be | |
2150 | removed afterwards. |
|
2172 | removed afterwards. | |
2151 |
|
2173 | |||
2152 | The header for each folded patch will be concatenated with the |
|
2174 | The header for each folded patch will be concatenated with the | |
2153 | current patch header, separated by a line of ``* * *``. |
|
2175 | current patch header, separated by a line of ``* * *``. | |
2154 |
|
2176 | |||
2155 | Returns 0 on success.""" |
|
2177 | Returns 0 on success.""" | |
2156 |
|
2178 | |||
2157 | q = repo.mq |
|
2179 | q = repo.mq | |
2158 |
|
2180 | |||
2159 | if not files: |
|
2181 | if not files: | |
2160 | raise util.Abort(_('qfold requires at least one patch name')) |
|
2182 | raise util.Abort(_('qfold requires at least one patch name')) | |
2161 | if not q.check_toppatch(repo)[0]: |
|
2183 | if not q.check_toppatch(repo)[0]: | |
2162 | raise util.Abort(_('no patches applied')) |
|
2184 | raise util.Abort(_('no patches applied')) | |
2163 | q.check_localchanges(repo) |
|
2185 | q.check_localchanges(repo) | |
2164 |
|
2186 | |||
2165 | message = cmdutil.logmessage(opts) |
|
2187 | message = cmdutil.logmessage(opts) | |
2166 | if opts.get('edit'): |
|
2188 | if opts.get('edit'): | |
2167 | if message: |
|
2189 | if message: | |
2168 | raise util.Abort(_('option "-e" incompatible with "-m" or "-l"')) |
|
2190 | raise util.Abort(_('option "-e" incompatible with "-m" or "-l"')) | |
2169 |
|
2191 | |||
2170 | parent = q.lookup('qtip') |
|
2192 | parent = q.lookup('qtip') | |
2171 | patches = [] |
|
2193 | patches = [] | |
2172 | messages = [] |
|
2194 | messages = [] | |
2173 | for f in files: |
|
2195 | for f in files: | |
2174 | p = q.lookup(f) |
|
2196 | p = q.lookup(f) | |
2175 | if p in patches or p == parent: |
|
2197 | if p in patches or p == parent: | |
2176 | ui.warn(_('Skipping already folded patch %s\n') % p) |
|
2198 | ui.warn(_('Skipping already folded patch %s\n') % p) | |
2177 | if q.isapplied(p): |
|
2199 | if q.isapplied(p): | |
2178 | raise util.Abort(_('qfold cannot fold already applied patch %s') % p) |
|
2200 | raise util.Abort(_('qfold cannot fold already applied patch %s') % p) | |
2179 | patches.append(p) |
|
2201 | patches.append(p) | |
2180 |
|
2202 | |||
2181 | for p in patches: |
|
2203 | for p in patches: | |
2182 | if not message: |
|
2204 | if not message: | |
2183 | ph = patchheader(q.join(p), q.plainmode) |
|
2205 | ph = patchheader(q.join(p), q.plainmode) | |
2184 | if ph.message: |
|
2206 | if ph.message: | |
2185 | messages.append(ph.message) |
|
2207 | messages.append(ph.message) | |
2186 | pf = q.join(p) |
|
2208 | pf = q.join(p) | |
2187 | (patchsuccess, files, fuzz) = q.patch(repo, pf) |
|
2209 | (patchsuccess, files, fuzz) = q.patch(repo, pf) | |
2188 | if not patchsuccess: |
|
2210 | if not patchsuccess: | |
2189 | raise util.Abort(_('error folding patch %s') % p) |
|
2211 | raise util.Abort(_('error folding patch %s') % p) | |
2190 | cmdutil.updatedir(ui, repo, files) |
|
2212 | cmdutil.updatedir(ui, repo, files) | |
2191 |
|
2213 | |||
2192 | if not message: |
|
2214 | if not message: | |
2193 | ph = patchheader(q.join(parent), q.plainmode) |
|
2215 | ph = patchheader(q.join(parent), q.plainmode) | |
2194 | message, user = ph.message, ph.user |
|
2216 | message, user = ph.message, ph.user | |
2195 | for msg in messages: |
|
2217 | for msg in messages: | |
2196 | message.append('* * *') |
|
2218 | message.append('* * *') | |
2197 | message.extend(msg) |
|
2219 | message.extend(msg) | |
2198 | message = '\n'.join(message) |
|
2220 | message = '\n'.join(message) | |
2199 |
|
2221 | |||
2200 | if opts.get('edit'): |
|
2222 | if opts.get('edit'): | |
2201 | message = ui.edit(message, user or ui.username()) |
|
2223 | message = ui.edit(message, user or ui.username()) | |
2202 |
|
2224 | |||
2203 | diffopts = q.patchopts(q.diffopts(), *patches) |
|
2225 | diffopts = q.patchopts(q.diffopts(), *patches) | |
2204 | q.refresh(repo, msg=message, git=diffopts.git) |
|
2226 | q.refresh(repo, msg=message, git=diffopts.git) | |
2205 | q.delete(repo, patches, opts) |
|
2227 | q.delete(repo, patches, opts) | |
2206 | q.save_dirty() |
|
2228 | q.save_dirty() | |
2207 |
|
2229 | |||
2208 | def goto(ui, repo, patch, **opts): |
|
2230 | def goto(ui, repo, patch, **opts): | |
2209 | '''push or pop patches until named patch is at top of stack |
|
2231 | '''push or pop patches until named patch is at top of stack | |
2210 |
|
2232 | |||
2211 | Returns 0 on success.''' |
|
2233 | Returns 0 on success.''' | |
2212 | q = repo.mq |
|
2234 | q = repo.mq | |
2213 | patch = q.lookup(patch) |
|
2235 | patch = q.lookup(patch) | |
2214 | if q.isapplied(patch): |
|
2236 | if q.isapplied(patch): | |
2215 | ret = q.pop(repo, patch, force=opts.get('force')) |
|
2237 | ret = q.pop(repo, patch, force=opts.get('force')) | |
2216 | else: |
|
2238 | else: | |
2217 | ret = q.push(repo, patch, force=opts.get('force')) |
|
2239 | ret = q.push(repo, patch, force=opts.get('force')) | |
2218 | q.save_dirty() |
|
2240 | q.save_dirty() | |
2219 | return ret |
|
2241 | return ret | |
2220 |
|
2242 | |||
2221 | def guard(ui, repo, *args, **opts): |
|
2243 | def guard(ui, repo, *args, **opts): | |
2222 | '''set or print guards for a patch |
|
2244 | '''set or print guards for a patch | |
2223 |
|
2245 | |||
2224 | Guards control whether a patch can be pushed. A patch with no |
|
2246 | Guards control whether a patch can be pushed. A patch with no | |
2225 | guards is always pushed. A patch with a positive guard ("+foo") is |
|
2247 | guards is always pushed. A patch with a positive guard ("+foo") is | |
2226 | pushed only if the :hg:`qselect` command has activated it. A patch with |
|
2248 | pushed only if the :hg:`qselect` command has activated it. A patch with | |
2227 | a negative guard ("-foo") is never pushed if the :hg:`qselect` command |
|
2249 | a negative guard ("-foo") is never pushed if the :hg:`qselect` command | |
2228 | has activated it. |
|
2250 | has activated it. | |
2229 |
|
2251 | |||
2230 | With no arguments, print the currently active guards. |
|
2252 | With no arguments, print the currently active guards. | |
2231 | With arguments, set guards for the named patch. |
|
2253 | With arguments, set guards for the named patch. | |
2232 |
|
2254 | |||
2233 | .. note:: |
|
2255 | .. note:: | |
2234 | Specifying negative guards now requires '--'. |
|
2256 | Specifying negative guards now requires '--'. | |
2235 |
|
2257 | |||
2236 | To set guards on another patch:: |
|
2258 | To set guards on another patch:: | |
2237 |
|
2259 | |||
2238 | hg qguard other.patch -- +2.6.17 -stable |
|
2260 | hg qguard other.patch -- +2.6.17 -stable | |
2239 |
|
2261 | |||
2240 | Returns 0 on success. |
|
2262 | Returns 0 on success. | |
2241 | ''' |
|
2263 | ''' | |
2242 | def status(idx): |
|
2264 | def status(idx): | |
2243 | guards = q.series_guards[idx] or ['unguarded'] |
|
2265 | guards = q.series_guards[idx] or ['unguarded'] | |
2244 | if q.series[idx] in applied: |
|
2266 | if q.series[idx] in applied: | |
2245 | state = 'applied' |
|
2267 | state = 'applied' | |
2246 | elif q.pushable(idx)[0]: |
|
2268 | elif q.pushable(idx)[0]: | |
2247 | state = 'unapplied' |
|
2269 | state = 'unapplied' | |
2248 | else: |
|
2270 | else: | |
2249 | state = 'guarded' |
|
2271 | state = 'guarded' | |
2250 | label = 'qguard.patch qguard.%s qseries.%s' % (state, state) |
|
2272 | label = 'qguard.patch qguard.%s qseries.%s' % (state, state) | |
2251 | ui.write('%s: ' % ui.label(q.series[idx], label)) |
|
2273 | ui.write('%s: ' % ui.label(q.series[idx], label)) | |
2252 |
|
2274 | |||
2253 | for i, guard in enumerate(guards): |
|
2275 | for i, guard in enumerate(guards): | |
2254 | if guard.startswith('+'): |
|
2276 | if guard.startswith('+'): | |
2255 | ui.write(guard, label='qguard.positive') |
|
2277 | ui.write(guard, label='qguard.positive') | |
2256 | elif guard.startswith('-'): |
|
2278 | elif guard.startswith('-'): | |
2257 | ui.write(guard, label='qguard.negative') |
|
2279 | ui.write(guard, label='qguard.negative') | |
2258 | else: |
|
2280 | else: | |
2259 | ui.write(guard, label='qguard.unguarded') |
|
2281 | ui.write(guard, label='qguard.unguarded') | |
2260 | if i != len(guards) - 1: |
|
2282 | if i != len(guards) - 1: | |
2261 | ui.write(' ') |
|
2283 | ui.write(' ') | |
2262 | ui.write('\n') |
|
2284 | ui.write('\n') | |
2263 | q = repo.mq |
|
2285 | q = repo.mq | |
2264 | applied = set(p.name for p in q.applied) |
|
2286 | applied = set(p.name for p in q.applied) | |
2265 | patch = None |
|
2287 | patch = None | |
2266 | args = list(args) |
|
2288 | args = list(args) | |
2267 | if opts.get('list'): |
|
2289 | if opts.get('list'): | |
2268 | if args or opts.get('none'): |
|
2290 | if args or opts.get('none'): | |
2269 | raise util.Abort(_('cannot mix -l/--list with options or arguments')) |
|
2291 | raise util.Abort(_('cannot mix -l/--list with options or arguments')) | |
2270 | for i in xrange(len(q.series)): |
|
2292 | for i in xrange(len(q.series)): | |
2271 | status(i) |
|
2293 | status(i) | |
2272 | return |
|
2294 | return | |
2273 | if not args or args[0][0:1] in '-+': |
|
2295 | if not args or args[0][0:1] in '-+': | |
2274 | if not q.applied: |
|
2296 | if not q.applied: | |
2275 | raise util.Abort(_('no patches applied')) |
|
2297 | raise util.Abort(_('no patches applied')) | |
2276 | patch = q.applied[-1].name |
|
2298 | patch = q.applied[-1].name | |
2277 | if patch is None and args[0][0:1] not in '-+': |
|
2299 | if patch is None and args[0][0:1] not in '-+': | |
2278 | patch = args.pop(0) |
|
2300 | patch = args.pop(0) | |
2279 | if patch is None: |
|
2301 | if patch is None: | |
2280 | raise util.Abort(_('no patch to work with')) |
|
2302 | raise util.Abort(_('no patch to work with')) | |
2281 | if args or opts.get('none'): |
|
2303 | if args or opts.get('none'): | |
2282 | idx = q.find_series(patch) |
|
2304 | idx = q.find_series(patch) | |
2283 | if idx is None: |
|
2305 | if idx is None: | |
2284 | raise util.Abort(_('no patch named %s') % patch) |
|
2306 | raise util.Abort(_('no patch named %s') % patch) | |
2285 | q.set_guards(idx, args) |
|
2307 | q.set_guards(idx, args) | |
2286 | q.save_dirty() |
|
2308 | q.save_dirty() | |
2287 | else: |
|
2309 | else: | |
2288 | status(q.series.index(q.lookup(patch))) |
|
2310 | status(q.series.index(q.lookup(patch))) | |
2289 |
|
2311 | |||
2290 | def header(ui, repo, patch=None): |
|
2312 | def header(ui, repo, patch=None): | |
2291 | """print the header of the topmost or specified patch |
|
2313 | """print the header of the topmost or specified patch | |
2292 |
|
2314 | |||
2293 | Returns 0 on success.""" |
|
2315 | Returns 0 on success.""" | |
2294 | q = repo.mq |
|
2316 | q = repo.mq | |
2295 |
|
2317 | |||
2296 | if patch: |
|
2318 | if patch: | |
2297 | patch = q.lookup(patch) |
|
2319 | patch = q.lookup(patch) | |
2298 | else: |
|
2320 | else: | |
2299 | if not q.applied: |
|
2321 | if not q.applied: | |
2300 | ui.write(_('no patches applied\n')) |
|
2322 | ui.write(_('no patches applied\n')) | |
2301 | return 1 |
|
2323 | return 1 | |
2302 | patch = q.lookup('qtip') |
|
2324 | patch = q.lookup('qtip') | |
2303 | ph = patchheader(q.join(patch), q.plainmode) |
|
2325 | ph = patchheader(q.join(patch), q.plainmode) | |
2304 |
|
2326 | |||
2305 | ui.write('\n'.join(ph.message) + '\n') |
|
2327 | ui.write('\n'.join(ph.message) + '\n') | |
2306 |
|
2328 | |||
2307 | def lastsavename(path): |
|
2329 | def lastsavename(path): | |
2308 | (directory, base) = os.path.split(path) |
|
2330 | (directory, base) = os.path.split(path) | |
2309 | names = os.listdir(directory) |
|
2331 | names = os.listdir(directory) | |
2310 | namere = re.compile("%s.([0-9]+)" % base) |
|
2332 | namere = re.compile("%s.([0-9]+)" % base) | |
2311 | maxindex = None |
|
2333 | maxindex = None | |
2312 | maxname = None |
|
2334 | maxname = None | |
2313 | for f in names: |
|
2335 | for f in names: | |
2314 | m = namere.match(f) |
|
2336 | m = namere.match(f) | |
2315 | if m: |
|
2337 | if m: | |
2316 | index = int(m.group(1)) |
|
2338 | index = int(m.group(1)) | |
2317 | if maxindex is None or index > maxindex: |
|
2339 | if maxindex is None or index > maxindex: | |
2318 | maxindex = index |
|
2340 | maxindex = index | |
2319 | maxname = f |
|
2341 | maxname = f | |
2320 | if maxname: |
|
2342 | if maxname: | |
2321 | return (os.path.join(directory, maxname), maxindex) |
|
2343 | return (os.path.join(directory, maxname), maxindex) | |
2322 | return (None, None) |
|
2344 | return (None, None) | |
2323 |
|
2345 | |||
2324 | def savename(path): |
|
2346 | def savename(path): | |
2325 | (last, index) = lastsavename(path) |
|
2347 | (last, index) = lastsavename(path) | |
2326 | if last is None: |
|
2348 | if last is None: | |
2327 | index = 0 |
|
2349 | index = 0 | |
2328 | newpath = path + ".%d" % (index + 1) |
|
2350 | newpath = path + ".%d" % (index + 1) | |
2329 | return newpath |
|
2351 | return newpath | |
2330 |
|
2352 | |||
2331 | def push(ui, repo, patch=None, **opts): |
|
2353 | def push(ui, repo, patch=None, **opts): | |
2332 | """push the next patch onto the stack |
|
2354 | """push the next patch onto the stack | |
2333 |
|
2355 | |||
2334 | When -f/--force is applied, all local changes in patched files |
|
2356 | When -f/--force is applied, all local changes in patched files | |
2335 | will be lost. |
|
2357 | will be lost. | |
2336 |
|
2358 | |||
2337 | Return 0 on succces. |
|
2359 | Return 0 on succces. | |
2338 | """ |
|
2360 | """ | |
2339 | q = repo.mq |
|
2361 | q = repo.mq | |
2340 | mergeq = None |
|
2362 | mergeq = None | |
2341 |
|
2363 | |||
2342 | if opts.get('merge'): |
|
2364 | if opts.get('merge'): | |
2343 | if opts.get('name'): |
|
2365 | if opts.get('name'): | |
2344 | newpath = repo.join(opts.get('name')) |
|
2366 | newpath = repo.join(opts.get('name')) | |
2345 | else: |
|
2367 | else: | |
2346 | newpath, i = lastsavename(q.path) |
|
2368 | newpath, i = lastsavename(q.path) | |
2347 | if not newpath: |
|
2369 | if not newpath: | |
2348 | ui.warn(_("no saved queues found, please use -n\n")) |
|
2370 | ui.warn(_("no saved queues found, please use -n\n")) | |
2349 | return 1 |
|
2371 | return 1 | |
2350 | mergeq = queue(ui, repo.join(""), newpath) |
|
2372 | mergeq = queue(ui, repo.join(""), newpath) | |
2351 | ui.warn(_("merging with queue at: %s\n") % mergeq.path) |
|
2373 | ui.warn(_("merging with queue at: %s\n") % mergeq.path) | |
2352 | ret = q.push(repo, patch, force=opts.get('force'), list=opts.get('list'), |
|
2374 | ret = q.push(repo, patch, force=opts.get('force'), list=opts.get('list'), | |
2353 | mergeq=mergeq, all=opts.get('all'), move=opts.get('move'), |
|
2375 | mergeq=mergeq, all=opts.get('all'), move=opts.get('move'), | |
2354 | exact=opts.get('exact')) |
|
2376 | exact=opts.get('exact')) | |
2355 | return ret |
|
2377 | return ret | |
2356 |
|
2378 | |||
2357 | def pop(ui, repo, patch=None, **opts): |
|
2379 | def pop(ui, repo, patch=None, **opts): | |
2358 | """pop the current patch off the stack |
|
2380 | """pop the current patch off the stack | |
2359 |
|
2381 | |||
2360 | By default, pops off the top of the patch stack. If given a patch |
|
2382 | By default, pops off the top of the patch stack. If given a patch | |
2361 | name, keeps popping off patches until the named patch is at the |
|
2383 | name, keeps popping off patches until the named patch is at the | |
2362 | top of the stack. |
|
2384 | top of the stack. | |
2363 |
|
2385 | |||
2364 | Return 0 on success. |
|
2386 | Return 0 on success. | |
2365 | """ |
|
2387 | """ | |
2366 | localupdate = True |
|
2388 | localupdate = True | |
2367 | if opts.get('name'): |
|
2389 | if opts.get('name'): | |
2368 | q = queue(ui, repo.join(""), repo.join(opts.get('name'))) |
|
2390 | q = queue(ui, repo.join(""), repo.join(opts.get('name'))) | |
2369 | ui.warn(_('using patch queue: %s\n') % q.path) |
|
2391 | ui.warn(_('using patch queue: %s\n') % q.path) | |
2370 | localupdate = False |
|
2392 | localupdate = False | |
2371 | else: |
|
2393 | else: | |
2372 | q = repo.mq |
|
2394 | q = repo.mq | |
2373 | ret = q.pop(repo, patch, force=opts.get('force'), update=localupdate, |
|
2395 | ret = q.pop(repo, patch, force=opts.get('force'), update=localupdate, | |
2374 | all=opts.get('all')) |
|
2396 | all=opts.get('all')) | |
2375 | q.save_dirty() |
|
2397 | q.save_dirty() | |
2376 | return ret |
|
2398 | return ret | |
2377 |
|
2399 | |||
2378 | def rename(ui, repo, patch, name=None, **opts): |
|
2400 | def rename(ui, repo, patch, name=None, **opts): | |
2379 | """rename a patch |
|
2401 | """rename a patch | |
2380 |
|
2402 | |||
2381 | With one argument, renames the current patch to PATCH1. |
|
2403 | With one argument, renames the current patch to PATCH1. | |
2382 | With two arguments, renames PATCH1 to PATCH2. |
|
2404 | With two arguments, renames PATCH1 to PATCH2. | |
2383 |
|
2405 | |||
2384 | Returns 0 on success.""" |
|
2406 | Returns 0 on success.""" | |
2385 |
|
2407 | |||
2386 | q = repo.mq |
|
2408 | q = repo.mq | |
2387 |
|
2409 | |||
2388 | if not name: |
|
2410 | if not name: | |
2389 | name = patch |
|
2411 | name = patch | |
2390 | patch = None |
|
2412 | patch = None | |
2391 |
|
2413 | |||
2392 | if patch: |
|
2414 | if patch: | |
2393 | patch = q.lookup(patch) |
|
2415 | patch = q.lookup(patch) | |
2394 | else: |
|
2416 | else: | |
2395 | if not q.applied: |
|
2417 | if not q.applied: | |
2396 | ui.write(_('no patches applied\n')) |
|
2418 | ui.write(_('no patches applied\n')) | |
2397 | return |
|
2419 | return | |
2398 | patch = q.lookup('qtip') |
|
2420 | patch = q.lookup('qtip') | |
2399 | absdest = q.join(name) |
|
2421 | absdest = q.join(name) | |
2400 | if os.path.isdir(absdest): |
|
2422 | if os.path.isdir(absdest): | |
2401 | name = normname(os.path.join(name, os.path.basename(patch))) |
|
2423 | name = normname(os.path.join(name, os.path.basename(patch))) | |
2402 | absdest = q.join(name) |
|
2424 | absdest = q.join(name) | |
2403 | if os.path.exists(absdest): |
|
2425 | if os.path.exists(absdest): | |
2404 | raise util.Abort(_('%s already exists') % absdest) |
|
2426 | raise util.Abort(_('%s already exists') % absdest) | |
2405 |
|
2427 | |||
2406 | if name in q.series: |
|
2428 | if name in q.series: | |
2407 | raise util.Abort( |
|
2429 | raise util.Abort( | |
2408 | _('A patch named %s already exists in the series file') % name) |
|
2430 | _('A patch named %s already exists in the series file') % name) | |
2409 |
|
2431 | |||
2410 | ui.note(_('renaming %s to %s\n') % (patch, name)) |
|
2432 | ui.note(_('renaming %s to %s\n') % (patch, name)) | |
2411 | i = q.find_series(patch) |
|
2433 | i = q.find_series(patch) | |
2412 | guards = q.guard_re.findall(q.full_series[i]) |
|
2434 | guards = q.guard_re.findall(q.full_series[i]) | |
2413 | q.full_series[i] = name + ''.join([' #' + g for g in guards]) |
|
2435 | q.full_series[i] = name + ''.join([' #' + g for g in guards]) | |
2414 | q.parse_series() |
|
2436 | q.parse_series() | |
2415 | q.series_dirty = 1 |
|
2437 | q.series_dirty = 1 | |
2416 |
|
2438 | |||
2417 | info = q.isapplied(patch) |
|
2439 | info = q.isapplied(patch) | |
2418 | if info: |
|
2440 | if info: | |
2419 | q.applied[info[0]] = statusentry(info[1], name) |
|
2441 | q.applied[info[0]] = statusentry(info[1], name) | |
2420 | q.applied_dirty = 1 |
|
2442 | q.applied_dirty = 1 | |
2421 |
|
2443 | |||
2422 | destdir = os.path.dirname(absdest) |
|
2444 | destdir = os.path.dirname(absdest) | |
2423 | if not os.path.isdir(destdir): |
|
2445 | if not os.path.isdir(destdir): | |
2424 | os.makedirs(destdir) |
|
2446 | os.makedirs(destdir) | |
2425 | util.rename(q.join(patch), absdest) |
|
2447 | util.rename(q.join(patch), absdest) | |
2426 | r = q.qrepo() |
|
2448 | r = q.qrepo() | |
2427 | if r and patch in r.dirstate: |
|
2449 | if r and patch in r.dirstate: | |
2428 | wctx = r[None] |
|
2450 | wctx = r[None] | |
2429 | wlock = r.wlock() |
|
2451 | wlock = r.wlock() | |
2430 | try: |
|
2452 | try: | |
2431 | if r.dirstate[patch] == 'a': |
|
2453 | if r.dirstate[patch] == 'a': | |
2432 | r.dirstate.forget(patch) |
|
2454 | r.dirstate.forget(patch) | |
2433 | r.dirstate.add(name) |
|
2455 | r.dirstate.add(name) | |
2434 | else: |
|
2456 | else: | |
2435 | if r.dirstate[name] == 'r': |
|
2457 | if r.dirstate[name] == 'r': | |
2436 | wctx.undelete([name]) |
|
2458 | wctx.undelete([name]) | |
2437 | wctx.copy(patch, name) |
|
2459 | wctx.copy(patch, name) | |
2438 | wctx.remove([patch], False) |
|
2460 | wctx.remove([patch], False) | |
2439 | finally: |
|
2461 | finally: | |
2440 | wlock.release() |
|
2462 | wlock.release() | |
2441 |
|
2463 | |||
2442 | q.save_dirty() |
|
2464 | q.save_dirty() | |
2443 |
|
2465 | |||
2444 | def restore(ui, repo, rev, **opts): |
|
2466 | def restore(ui, repo, rev, **opts): | |
2445 | """restore the queue state saved by a revision (DEPRECATED) |
|
2467 | """restore the queue state saved by a revision (DEPRECATED) | |
2446 |
|
2468 | |||
2447 | This command is deprecated, use :hg:`rebase` instead.""" |
|
2469 | This command is deprecated, use :hg:`rebase` instead.""" | |
2448 | rev = repo.lookup(rev) |
|
2470 | rev = repo.lookup(rev) | |
2449 | q = repo.mq |
|
2471 | q = repo.mq | |
2450 | q.restore(repo, rev, delete=opts.get('delete'), |
|
2472 | q.restore(repo, rev, delete=opts.get('delete'), | |
2451 | qupdate=opts.get('update')) |
|
2473 | qupdate=opts.get('update')) | |
2452 | q.save_dirty() |
|
2474 | q.save_dirty() | |
2453 | return 0 |
|
2475 | return 0 | |
2454 |
|
2476 | |||
2455 | def save(ui, repo, **opts): |
|
2477 | def save(ui, repo, **opts): | |
2456 | """save current queue state (DEPRECATED) |
|
2478 | """save current queue state (DEPRECATED) | |
2457 |
|
2479 | |||
2458 | This command is deprecated, use :hg:`rebase` instead.""" |
|
2480 | This command is deprecated, use :hg:`rebase` instead.""" | |
2459 | q = repo.mq |
|
2481 | q = repo.mq | |
2460 | message = cmdutil.logmessage(opts) |
|
2482 | message = cmdutil.logmessage(opts) | |
2461 | ret = q.save(repo, msg=message) |
|
2483 | ret = q.save(repo, msg=message) | |
2462 | if ret: |
|
2484 | if ret: | |
2463 | return ret |
|
2485 | return ret | |
2464 | q.save_dirty() |
|
2486 | q.save_dirty() | |
2465 | if opts.get('copy'): |
|
2487 | if opts.get('copy'): | |
2466 | path = q.path |
|
2488 | path = q.path | |
2467 | if opts.get('name'): |
|
2489 | if opts.get('name'): | |
2468 | newpath = os.path.join(q.basepath, opts.get('name')) |
|
2490 | newpath = os.path.join(q.basepath, opts.get('name')) | |
2469 | if os.path.exists(newpath): |
|
2491 | if os.path.exists(newpath): | |
2470 | if not os.path.isdir(newpath): |
|
2492 | if not os.path.isdir(newpath): | |
2471 | raise util.Abort(_('destination %s exists and is not ' |
|
2493 | raise util.Abort(_('destination %s exists and is not ' | |
2472 | 'a directory') % newpath) |
|
2494 | 'a directory') % newpath) | |
2473 | if not opts.get('force'): |
|
2495 | if not opts.get('force'): | |
2474 | raise util.Abort(_('destination %s exists, ' |
|
2496 | raise util.Abort(_('destination %s exists, ' | |
2475 | 'use -f to force') % newpath) |
|
2497 | 'use -f to force') % newpath) | |
2476 | else: |
|
2498 | else: | |
2477 | newpath = savename(path) |
|
2499 | newpath = savename(path) | |
2478 | ui.warn(_("copy %s to %s\n") % (path, newpath)) |
|
2500 | ui.warn(_("copy %s to %s\n") % (path, newpath)) | |
2479 | util.copyfiles(path, newpath) |
|
2501 | util.copyfiles(path, newpath) | |
2480 | if opts.get('empty'): |
|
2502 | if opts.get('empty'): | |
2481 | try: |
|
2503 | try: | |
2482 | os.unlink(q.join(q.status_path)) |
|
2504 | os.unlink(q.join(q.status_path)) | |
2483 | except: |
|
2505 | except: | |
2484 | pass |
|
2506 | pass | |
2485 | return 0 |
|
2507 | return 0 | |
2486 |
|
2508 | |||
2487 | def strip(ui, repo, *revs, **opts): |
|
2509 | def strip(ui, repo, *revs, **opts): | |
2488 | """strip changesets and all their descendants from the repository |
|
2510 | """strip changesets and all their descendants from the repository | |
2489 |
|
2511 | |||
2490 | The strip command removes the specified changesets and all their |
|
2512 | The strip command removes the specified changesets and all their | |
2491 | descendants. If the working directory has uncommitted changes, |
|
2513 | descendants. If the working directory has uncommitted changes, | |
2492 | the operation is aborted unless the --force flag is supplied. |
|
2514 | the operation is aborted unless the --force flag is supplied. | |
2493 |
|
2515 | |||
2494 | If a parent of the working directory is stripped, then the working |
|
2516 | If a parent of the working directory is stripped, then the working | |
2495 | directory will automatically be updated to the most recent |
|
2517 | directory will automatically be updated to the most recent | |
2496 | available ancestor of the stripped parent after the operation |
|
2518 | available ancestor of the stripped parent after the operation | |
2497 | completes. |
|
2519 | completes. | |
2498 |
|
2520 | |||
2499 | Any stripped changesets are stored in ``.hg/strip-backup`` as a |
|
2521 | Any stripped changesets are stored in ``.hg/strip-backup`` as a | |
2500 | bundle (see :hg:`help bundle` and :hg:`help unbundle`). They can |
|
2522 | bundle (see :hg:`help bundle` and :hg:`help unbundle`). They can | |
2501 | be restored by running :hg:`unbundle .hg/strip-backup/BUNDLE`, |
|
2523 | be restored by running :hg:`unbundle .hg/strip-backup/BUNDLE`, | |
2502 | where BUNDLE is the bundle file created by the strip. Note that |
|
2524 | where BUNDLE is the bundle file created by the strip. Note that | |
2503 | the local revision numbers will in general be different after the |
|
2525 | the local revision numbers will in general be different after the | |
2504 | restore. |
|
2526 | restore. | |
2505 |
|
2527 | |||
2506 | Use the --no-backup option to discard the backup bundle once the |
|
2528 | Use the --no-backup option to discard the backup bundle once the | |
2507 | operation completes. |
|
2529 | operation completes. | |
2508 |
|
2530 | |||
2509 | Return 0 on success. |
|
2531 | Return 0 on success. | |
2510 | """ |
|
2532 | """ | |
2511 | backup = 'all' |
|
2533 | backup = 'all' | |
2512 | if opts.get('backup'): |
|
2534 | if opts.get('backup'): | |
2513 | backup = 'strip' |
|
2535 | backup = 'strip' | |
2514 | elif opts.get('no-backup') or opts.get('nobackup'): |
|
2536 | elif opts.get('no-backup') or opts.get('nobackup'): | |
2515 | backup = 'none' |
|
2537 | backup = 'none' | |
2516 |
|
2538 | |||
2517 | cl = repo.changelog |
|
2539 | cl = repo.changelog | |
2518 | revs = set(cmdutil.revrange(repo, revs)) |
|
2540 | revs = set(cmdutil.revrange(repo, revs)) | |
2519 | if not revs: |
|
2541 | if not revs: | |
2520 | raise util.Abort(_('empty revision set')) |
|
2542 | raise util.Abort(_('empty revision set')) | |
2521 |
|
2543 | |||
2522 | descendants = set(cl.descendants(*revs)) |
|
2544 | descendants = set(cl.descendants(*revs)) | |
2523 | strippedrevs = revs.union(descendants) |
|
2545 | strippedrevs = revs.union(descendants) | |
2524 | roots = revs.difference(descendants) |
|
2546 | roots = revs.difference(descendants) | |
2525 |
|
2547 | |||
2526 | update = False |
|
2548 | update = False | |
2527 | # if one of the wdir parent is stripped we'll need |
|
2549 | # if one of the wdir parent is stripped we'll need | |
2528 | # to update away to an earlier revision |
|
2550 | # to update away to an earlier revision | |
2529 | for p in repo.dirstate.parents(): |
|
2551 | for p in repo.dirstate.parents(): | |
2530 | if p != nullid and cl.rev(p) in strippedrevs: |
|
2552 | if p != nullid and cl.rev(p) in strippedrevs: | |
2531 | update = True |
|
2553 | update = True | |
2532 | break |
|
2554 | break | |
2533 |
|
2555 | |||
2534 | rootnodes = set(cl.node(r) for r in roots) |
|
2556 | rootnodes = set(cl.node(r) for r in roots) | |
2535 |
|
2557 | |||
2536 | q = repo.mq |
|
2558 | q = repo.mq | |
2537 | if q.applied: |
|
2559 | if q.applied: | |
2538 | # refresh queue state if we're about to strip |
|
2560 | # refresh queue state if we're about to strip | |
2539 | # applied patches |
|
2561 | # applied patches | |
2540 | if cl.rev(repo.lookup('qtip')) in strippedrevs: |
|
2562 | if cl.rev(repo.lookup('qtip')) in strippedrevs: | |
2541 | q.applied_dirty = True |
|
2563 | q.applied_dirty = True | |
2542 | start = 0 |
|
2564 | start = 0 | |
2543 | end = len(q.applied) |
|
2565 | end = len(q.applied) | |
2544 | for i, statusentry in enumerate(q.applied): |
|
2566 | for i, statusentry in enumerate(q.applied): | |
2545 | if statusentry.node in rootnodes: |
|
2567 | if statusentry.node in rootnodes: | |
2546 | # if one of the stripped roots is an applied |
|
2568 | # if one of the stripped roots is an applied | |
2547 | # patch, only part of the queue is stripped |
|
2569 | # patch, only part of the queue is stripped | |
2548 | start = i |
|
2570 | start = i | |
2549 | break |
|
2571 | break | |
2550 | del q.applied[start:end] |
|
2572 | del q.applied[start:end] | |
2551 | q.save_dirty() |
|
2573 | q.save_dirty() | |
2552 |
|
2574 | |||
2553 | revs = list(rootnodes) |
|
2575 | revs = list(rootnodes) | |
2554 | if update and opts.get('keep'): |
|
2576 | if update and opts.get('keep'): | |
2555 | wlock = repo.wlock() |
|
2577 | wlock = repo.wlock() | |
2556 | try: |
|
2578 | try: | |
2557 | urev = repo.mq.qparents(repo, revs[0]) |
|
2579 | urev = repo.mq.qparents(repo, revs[0]) | |
2558 | repo.dirstate.rebuild(urev, repo[urev].manifest()) |
|
2580 | repo.dirstate.rebuild(urev, repo[urev].manifest()) | |
2559 | repo.dirstate.write() |
|
2581 | repo.dirstate.write() | |
2560 | update = False |
|
2582 | update = False | |
2561 | finally: |
|
2583 | finally: | |
2562 | wlock.release() |
|
2584 | wlock.release() | |
2563 |
|
2585 | |||
2564 | repo.mq.strip(repo, revs, backup=backup, update=update, |
|
2586 | repo.mq.strip(repo, revs, backup=backup, update=update, | |
2565 | force=opts.get('force')) |
|
2587 | force=opts.get('force')) | |
2566 | return 0 |
|
2588 | return 0 | |
2567 |
|
2589 | |||
2568 | def select(ui, repo, *args, **opts): |
|
2590 | def select(ui, repo, *args, **opts): | |
2569 | '''set or print guarded patches to push |
|
2591 | '''set or print guarded patches to push | |
2570 |
|
2592 | |||
2571 | Use the :hg:`qguard` command to set or print guards on patch, then use |
|
2593 | Use the :hg:`qguard` command to set or print guards on patch, then use | |
2572 | qselect to tell mq which guards to use. A patch will be pushed if |
|
2594 | qselect to tell mq which guards to use. A patch will be pushed if | |
2573 | it has no guards or any positive guards match the currently |
|
2595 | it has no guards or any positive guards match the currently | |
2574 | selected guard, but will not be pushed if any negative guards |
|
2596 | selected guard, but will not be pushed if any negative guards | |
2575 | match the current guard. For example:: |
|
2597 | match the current guard. For example:: | |
2576 |
|
2598 | |||
2577 | qguard foo.patch -stable (negative guard) |
|
2599 | qguard foo.patch -stable (negative guard) | |
2578 | qguard bar.patch +stable (positive guard) |
|
2600 | qguard bar.patch +stable (positive guard) | |
2579 | qselect stable |
|
2601 | qselect stable | |
2580 |
|
2602 | |||
2581 | This activates the "stable" guard. mq will skip foo.patch (because |
|
2603 | This activates the "stable" guard. mq will skip foo.patch (because | |
2582 | it has a negative match) but push bar.patch (because it has a |
|
2604 | it has a negative match) but push bar.patch (because it has a | |
2583 | positive match). |
|
2605 | positive match). | |
2584 |
|
2606 | |||
2585 | With no arguments, prints the currently active guards. |
|
2607 | With no arguments, prints the currently active guards. | |
2586 | With one argument, sets the active guard. |
|
2608 | With one argument, sets the active guard. | |
2587 |
|
2609 | |||
2588 | Use -n/--none to deactivate guards (no other arguments needed). |
|
2610 | Use -n/--none to deactivate guards (no other arguments needed). | |
2589 | When no guards are active, patches with positive guards are |
|
2611 | When no guards are active, patches with positive guards are | |
2590 | skipped and patches with negative guards are pushed. |
|
2612 | skipped and patches with negative guards are pushed. | |
2591 |
|
2613 | |||
2592 | qselect can change the guards on applied patches. It does not pop |
|
2614 | qselect can change the guards on applied patches. It does not pop | |
2593 | guarded patches by default. Use --pop to pop back to the last |
|
2615 | guarded patches by default. Use --pop to pop back to the last | |
2594 | applied patch that is not guarded. Use --reapply (which implies |
|
2616 | applied patch that is not guarded. Use --reapply (which implies | |
2595 | --pop) to push back to the current patch afterwards, but skip |
|
2617 | --pop) to push back to the current patch afterwards, but skip | |
2596 | guarded patches. |
|
2618 | guarded patches. | |
2597 |
|
2619 | |||
2598 | Use -s/--series to print a list of all guards in the series file |
|
2620 | Use -s/--series to print a list of all guards in the series file | |
2599 | (no other arguments needed). Use -v for more information. |
|
2621 | (no other arguments needed). Use -v for more information. | |
2600 |
|
2622 | |||
2601 | Returns 0 on success.''' |
|
2623 | Returns 0 on success.''' | |
2602 |
|
2624 | |||
2603 | q = repo.mq |
|
2625 | q = repo.mq | |
2604 | guards = q.active() |
|
2626 | guards = q.active() | |
2605 | if args or opts.get('none'): |
|
2627 | if args or opts.get('none'): | |
2606 | old_unapplied = q.unapplied(repo) |
|
2628 | old_unapplied = q.unapplied(repo) | |
2607 | old_guarded = [i for i in xrange(len(q.applied)) if |
|
2629 | old_guarded = [i for i in xrange(len(q.applied)) if | |
2608 | not q.pushable(i)[0]] |
|
2630 | not q.pushable(i)[0]] | |
2609 | q.set_active(args) |
|
2631 | q.set_active(args) | |
2610 | q.save_dirty() |
|
2632 | q.save_dirty() | |
2611 | if not args: |
|
2633 | if not args: | |
2612 | ui.status(_('guards deactivated\n')) |
|
2634 | ui.status(_('guards deactivated\n')) | |
2613 | if not opts.get('pop') and not opts.get('reapply'): |
|
2635 | if not opts.get('pop') and not opts.get('reapply'): | |
2614 | unapplied = q.unapplied(repo) |
|
2636 | unapplied = q.unapplied(repo) | |
2615 | guarded = [i for i in xrange(len(q.applied)) |
|
2637 | guarded = [i for i in xrange(len(q.applied)) | |
2616 | if not q.pushable(i)[0]] |
|
2638 | if not q.pushable(i)[0]] | |
2617 | if len(unapplied) != len(old_unapplied): |
|
2639 | if len(unapplied) != len(old_unapplied): | |
2618 | ui.status(_('number of unguarded, unapplied patches has ' |
|
2640 | ui.status(_('number of unguarded, unapplied patches has ' | |
2619 | 'changed from %d to %d\n') % |
|
2641 | 'changed from %d to %d\n') % | |
2620 | (len(old_unapplied), len(unapplied))) |
|
2642 | (len(old_unapplied), len(unapplied))) | |
2621 | if len(guarded) != len(old_guarded): |
|
2643 | if len(guarded) != len(old_guarded): | |
2622 | ui.status(_('number of guarded, applied patches has changed ' |
|
2644 | ui.status(_('number of guarded, applied patches has changed ' | |
2623 | 'from %d to %d\n') % |
|
2645 | 'from %d to %d\n') % | |
2624 | (len(old_guarded), len(guarded))) |
|
2646 | (len(old_guarded), len(guarded))) | |
2625 | elif opts.get('series'): |
|
2647 | elif opts.get('series'): | |
2626 | guards = {} |
|
2648 | guards = {} | |
2627 | noguards = 0 |
|
2649 | noguards = 0 | |
2628 | for gs in q.series_guards: |
|
2650 | for gs in q.series_guards: | |
2629 | if not gs: |
|
2651 | if not gs: | |
2630 | noguards += 1 |
|
2652 | noguards += 1 | |
2631 | for g in gs: |
|
2653 | for g in gs: | |
2632 | guards.setdefault(g, 0) |
|
2654 | guards.setdefault(g, 0) | |
2633 | guards[g] += 1 |
|
2655 | guards[g] += 1 | |
2634 | if ui.verbose: |
|
2656 | if ui.verbose: | |
2635 | guards['NONE'] = noguards |
|
2657 | guards['NONE'] = noguards | |
2636 | guards = guards.items() |
|
2658 | guards = guards.items() | |
2637 | guards.sort(key=lambda x: x[0][1:]) |
|
2659 | guards.sort(key=lambda x: x[0][1:]) | |
2638 | if guards: |
|
2660 | if guards: | |
2639 | ui.note(_('guards in series file:\n')) |
|
2661 | ui.note(_('guards in series file:\n')) | |
2640 | for guard, count in guards: |
|
2662 | for guard, count in guards: | |
2641 | ui.note('%2d ' % count) |
|
2663 | ui.note('%2d ' % count) | |
2642 | ui.write(guard, '\n') |
|
2664 | ui.write(guard, '\n') | |
2643 | else: |
|
2665 | else: | |
2644 | ui.note(_('no guards in series file\n')) |
|
2666 | ui.note(_('no guards in series file\n')) | |
2645 | else: |
|
2667 | else: | |
2646 | if guards: |
|
2668 | if guards: | |
2647 | ui.note(_('active guards:\n')) |
|
2669 | ui.note(_('active guards:\n')) | |
2648 | for g in guards: |
|
2670 | for g in guards: | |
2649 | ui.write(g, '\n') |
|
2671 | ui.write(g, '\n') | |
2650 | else: |
|
2672 | else: | |
2651 | ui.write(_('no active guards\n')) |
|
2673 | ui.write(_('no active guards\n')) | |
2652 | reapply = opts.get('reapply') and q.applied and q.appliedname(-1) |
|
2674 | reapply = opts.get('reapply') and q.applied and q.appliedname(-1) | |
2653 | popped = False |
|
2675 | popped = False | |
2654 | if opts.get('pop') or opts.get('reapply'): |
|
2676 | if opts.get('pop') or opts.get('reapply'): | |
2655 | for i in xrange(len(q.applied)): |
|
2677 | for i in xrange(len(q.applied)): | |
2656 | pushable, reason = q.pushable(i) |
|
2678 | pushable, reason = q.pushable(i) | |
2657 | if not pushable: |
|
2679 | if not pushable: | |
2658 | ui.status(_('popping guarded patches\n')) |
|
2680 | ui.status(_('popping guarded patches\n')) | |
2659 | popped = True |
|
2681 | popped = True | |
2660 | if i == 0: |
|
2682 | if i == 0: | |
2661 | q.pop(repo, all=True) |
|
2683 | q.pop(repo, all=True) | |
2662 | else: |
|
2684 | else: | |
2663 | q.pop(repo, i - 1) |
|
2685 | q.pop(repo, i - 1) | |
2664 | break |
|
2686 | break | |
2665 | if popped: |
|
2687 | if popped: | |
2666 | try: |
|
2688 | try: | |
2667 | if reapply: |
|
2689 | if reapply: | |
2668 | ui.status(_('reapplying unguarded patches\n')) |
|
2690 | ui.status(_('reapplying unguarded patches\n')) | |
2669 | q.push(repo, reapply) |
|
2691 | q.push(repo, reapply) | |
2670 | finally: |
|
2692 | finally: | |
2671 | q.save_dirty() |
|
2693 | q.save_dirty() | |
2672 |
|
2694 | |||
2673 | def finish(ui, repo, *revrange, **opts): |
|
2695 | def finish(ui, repo, *revrange, **opts): | |
2674 | """move applied patches into repository history |
|
2696 | """move applied patches into repository history | |
2675 |
|
2697 | |||
2676 | Finishes the specified revisions (corresponding to applied |
|
2698 | Finishes the specified revisions (corresponding to applied | |
2677 | patches) by moving them out of mq control into regular repository |
|
2699 | patches) by moving them out of mq control into regular repository | |
2678 | history. |
|
2700 | history. | |
2679 |
|
2701 | |||
2680 | Accepts a revision range or the -a/--applied option. If --applied |
|
2702 | Accepts a revision range or the -a/--applied option. If --applied | |
2681 | is specified, all applied mq revisions are removed from mq |
|
2703 | is specified, all applied mq revisions are removed from mq | |
2682 | control. Otherwise, the given revisions must be at the base of the |
|
2704 | control. Otherwise, the given revisions must be at the base of the | |
2683 | stack of applied patches. |
|
2705 | stack of applied patches. | |
2684 |
|
2706 | |||
2685 | This can be especially useful if your changes have been applied to |
|
2707 | This can be especially useful if your changes have been applied to | |
2686 | an upstream repository, or if you are about to push your changes |
|
2708 | an upstream repository, or if you are about to push your changes | |
2687 | to upstream. |
|
2709 | to upstream. | |
2688 |
|
2710 | |||
2689 | Returns 0 on success. |
|
2711 | Returns 0 on success. | |
2690 | """ |
|
2712 | """ | |
2691 | if not opts.get('applied') and not revrange: |
|
2713 | if not opts.get('applied') and not revrange: | |
2692 | raise util.Abort(_('no revisions specified')) |
|
2714 | raise util.Abort(_('no revisions specified')) | |
2693 | elif opts.get('applied'): |
|
2715 | elif opts.get('applied'): | |
2694 | revrange = ('qbase::qtip',) + revrange |
|
2716 | revrange = ('qbase::qtip',) + revrange | |
2695 |
|
2717 | |||
2696 | q = repo.mq |
|
2718 | q = repo.mq | |
2697 | if not q.applied: |
|
2719 | if not q.applied: | |
2698 | ui.status(_('no patches applied\n')) |
|
2720 | ui.status(_('no patches applied\n')) | |
2699 | return 0 |
|
2721 | return 0 | |
2700 |
|
2722 | |||
2701 | revs = cmdutil.revrange(repo, revrange) |
|
2723 | revs = cmdutil.revrange(repo, revrange) | |
2702 | q.finish(repo, revs) |
|
2724 | q.finish(repo, revs) | |
2703 | q.save_dirty() |
|
2725 | q.save_dirty() | |
2704 | return 0 |
|
2726 | return 0 | |
2705 |
|
2727 | |||
2706 | def qqueue(ui, repo, name=None, **opts): |
|
2728 | def qqueue(ui, repo, name=None, **opts): | |
2707 | '''manage multiple patch queues |
|
2729 | '''manage multiple patch queues | |
2708 |
|
2730 | |||
2709 | Supports switching between different patch queues, as well as creating |
|
2731 | Supports switching between different patch queues, as well as creating | |
2710 | new patch queues and deleting existing ones. |
|
2732 | new patch queues and deleting existing ones. | |
2711 |
|
2733 | |||
2712 | Omitting a queue name or specifying -l/--list will show you the registered |
|
2734 | Omitting a queue name or specifying -l/--list will show you the registered | |
2713 | queues - by default the "normal" patches queue is registered. The currently |
|
2735 | queues - by default the "normal" patches queue is registered. The currently | |
2714 | active queue will be marked with "(active)". |
|
2736 | active queue will be marked with "(active)". | |
2715 |
|
2737 | |||
2716 | To create a new queue, use -c/--create. The queue is automatically made |
|
2738 | To create a new queue, use -c/--create. The queue is automatically made | |
2717 | active, except in the case where there are applied patches from the |
|
2739 | active, except in the case where there are applied patches from the | |
2718 | currently active queue in the repository. Then the queue will only be |
|
2740 | currently active queue in the repository. Then the queue will only be | |
2719 | created and switching will fail. |
|
2741 | created and switching will fail. | |
2720 |
|
2742 | |||
2721 | To delete an existing queue, use --delete. You cannot delete the currently |
|
2743 | To delete an existing queue, use --delete. You cannot delete the currently | |
2722 | active queue. |
|
2744 | active queue. | |
2723 |
|
2745 | |||
2724 | Returns 0 on success. |
|
2746 | Returns 0 on success. | |
2725 | ''' |
|
2747 | ''' | |
2726 |
|
2748 | |||
2727 | q = repo.mq |
|
2749 | q = repo.mq | |
2728 |
|
2750 | |||
2729 | _defaultqueue = 'patches' |
|
2751 | _defaultqueue = 'patches' | |
2730 | _allqueues = 'patches.queues' |
|
2752 | _allqueues = 'patches.queues' | |
2731 | _activequeue = 'patches.queue' |
|
2753 | _activequeue = 'patches.queue' | |
2732 |
|
2754 | |||
2733 | def _getcurrent(): |
|
2755 | def _getcurrent(): | |
2734 | cur = os.path.basename(q.path) |
|
2756 | cur = os.path.basename(q.path) | |
2735 | if cur.startswith('patches-'): |
|
2757 | if cur.startswith('patches-'): | |
2736 | cur = cur[8:] |
|
2758 | cur = cur[8:] | |
2737 | return cur |
|
2759 | return cur | |
2738 |
|
2760 | |||
2739 | def _noqueues(): |
|
2761 | def _noqueues(): | |
2740 | try: |
|
2762 | try: | |
2741 | fh = repo.opener(_allqueues, 'r') |
|
2763 | fh = repo.opener(_allqueues, 'r') | |
2742 | fh.close() |
|
2764 | fh.close() | |
2743 | except IOError: |
|
2765 | except IOError: | |
2744 | return True |
|
2766 | return True | |
2745 |
|
2767 | |||
2746 | return False |
|
2768 | return False | |
2747 |
|
2769 | |||
2748 | def _getqueues(): |
|
2770 | def _getqueues(): | |
2749 | current = _getcurrent() |
|
2771 | current = _getcurrent() | |
2750 |
|
2772 | |||
2751 | try: |
|
2773 | try: | |
2752 | fh = repo.opener(_allqueues, 'r') |
|
2774 | fh = repo.opener(_allqueues, 'r') | |
2753 | queues = [queue.strip() for queue in fh if queue.strip()] |
|
2775 | queues = [queue.strip() for queue in fh if queue.strip()] | |
2754 | if current not in queues: |
|
2776 | if current not in queues: | |
2755 | queues.append(current) |
|
2777 | queues.append(current) | |
2756 | except IOError: |
|
2778 | except IOError: | |
2757 | queues = [_defaultqueue] |
|
2779 | queues = [_defaultqueue] | |
2758 |
|
2780 | |||
2759 | return sorted(queues) |
|
2781 | return sorted(queues) | |
2760 |
|
2782 | |||
2761 | def _setactive(name): |
|
2783 | def _setactive(name): | |
2762 | if q.applied: |
|
2784 | if q.applied: | |
2763 | raise util.Abort(_('patches applied - cannot set new queue active')) |
|
2785 | raise util.Abort(_('patches applied - cannot set new queue active')) | |
2764 | _setactivenocheck(name) |
|
2786 | _setactivenocheck(name) | |
2765 |
|
2787 | |||
2766 | def _setactivenocheck(name): |
|
2788 | def _setactivenocheck(name): | |
2767 | fh = repo.opener(_activequeue, 'w') |
|
2789 | fh = repo.opener(_activequeue, 'w') | |
2768 | if name != 'patches': |
|
2790 | if name != 'patches': | |
2769 | fh.write(name) |
|
2791 | fh.write(name) | |
2770 | fh.close() |
|
2792 | fh.close() | |
2771 |
|
2793 | |||
2772 | def _addqueue(name): |
|
2794 | def _addqueue(name): | |
2773 | fh = repo.opener(_allqueues, 'a') |
|
2795 | fh = repo.opener(_allqueues, 'a') | |
2774 | fh.write('%s\n' % (name,)) |
|
2796 | fh.write('%s\n' % (name,)) | |
2775 | fh.close() |
|
2797 | fh.close() | |
2776 |
|
2798 | |||
2777 | def _queuedir(name): |
|
2799 | def _queuedir(name): | |
2778 | if name == 'patches': |
|
2800 | if name == 'patches': | |
2779 | return repo.join('patches') |
|
2801 | return repo.join('patches') | |
2780 | else: |
|
2802 | else: | |
2781 | return repo.join('patches-' + name) |
|
2803 | return repo.join('patches-' + name) | |
2782 |
|
2804 | |||
2783 | def _validname(name): |
|
2805 | def _validname(name): | |
2784 | for n in name: |
|
2806 | for n in name: | |
2785 | if n in ':\\/.': |
|
2807 | if n in ':\\/.': | |
2786 | return False |
|
2808 | return False | |
2787 | return True |
|
2809 | return True | |
2788 |
|
2810 | |||
2789 | def _delete(name): |
|
2811 | def _delete(name): | |
2790 | if name not in existing: |
|
2812 | if name not in existing: | |
2791 | raise util.Abort(_('cannot delete queue that does not exist')) |
|
2813 | raise util.Abort(_('cannot delete queue that does not exist')) | |
2792 |
|
2814 | |||
2793 | current = _getcurrent() |
|
2815 | current = _getcurrent() | |
2794 |
|
2816 | |||
2795 | if name == current: |
|
2817 | if name == current: | |
2796 | raise util.Abort(_('cannot delete currently active queue')) |
|
2818 | raise util.Abort(_('cannot delete currently active queue')) | |
2797 |
|
2819 | |||
2798 | fh = repo.opener('patches.queues.new', 'w') |
|
2820 | fh = repo.opener('patches.queues.new', 'w') | |
2799 | for queue in existing: |
|
2821 | for queue in existing: | |
2800 | if queue == name: |
|
2822 | if queue == name: | |
2801 | continue |
|
2823 | continue | |
2802 | fh.write('%s\n' % (queue,)) |
|
2824 | fh.write('%s\n' % (queue,)) | |
2803 | fh.close() |
|
2825 | fh.close() | |
2804 | util.rename(repo.join('patches.queues.new'), repo.join(_allqueues)) |
|
2826 | util.rename(repo.join('patches.queues.new'), repo.join(_allqueues)) | |
2805 |
|
2827 | |||
2806 | if not name or opts.get('list'): |
|
2828 | if not name or opts.get('list'): | |
2807 | current = _getcurrent() |
|
2829 | current = _getcurrent() | |
2808 | for queue in _getqueues(): |
|
2830 | for queue in _getqueues(): | |
2809 | ui.write('%s' % (queue,)) |
|
2831 | ui.write('%s' % (queue,)) | |
2810 | if queue == current and not ui.quiet: |
|
2832 | if queue == current and not ui.quiet: | |
2811 | ui.write(_(' (active)\n')) |
|
2833 | ui.write(_(' (active)\n')) | |
2812 | else: |
|
2834 | else: | |
2813 | ui.write('\n') |
|
2835 | ui.write('\n') | |
2814 | return |
|
2836 | return | |
2815 |
|
2837 | |||
2816 | if not _validname(name): |
|
2838 | if not _validname(name): | |
2817 | raise util.Abort( |
|
2839 | raise util.Abort( | |
2818 | _('invalid queue name, may not contain the characters ":\\/."')) |
|
2840 | _('invalid queue name, may not contain the characters ":\\/."')) | |
2819 |
|
2841 | |||
2820 | existing = _getqueues() |
|
2842 | existing = _getqueues() | |
2821 |
|
2843 | |||
2822 | if opts.get('create'): |
|
2844 | if opts.get('create'): | |
2823 | if name in existing: |
|
2845 | if name in existing: | |
2824 | raise util.Abort(_('queue "%s" already exists') % name) |
|
2846 | raise util.Abort(_('queue "%s" already exists') % name) | |
2825 | if _noqueues(): |
|
2847 | if _noqueues(): | |
2826 | _addqueue(_defaultqueue) |
|
2848 | _addqueue(_defaultqueue) | |
2827 | _addqueue(name) |
|
2849 | _addqueue(name) | |
2828 | _setactive(name) |
|
2850 | _setactive(name) | |
2829 | elif opts.get('rename'): |
|
2851 | elif opts.get('rename'): | |
2830 | current = _getcurrent() |
|
2852 | current = _getcurrent() | |
2831 | if name == current: |
|
2853 | if name == current: | |
2832 | raise util.Abort(_('can\'t rename "%s" to its current name') % name) |
|
2854 | raise util.Abort(_('can\'t rename "%s" to its current name') % name) | |
2833 | if name in existing: |
|
2855 | if name in existing: | |
2834 | raise util.Abort(_('queue "%s" already exists') % name) |
|
2856 | raise util.Abort(_('queue "%s" already exists') % name) | |
2835 |
|
2857 | |||
2836 | olddir = _queuedir(current) |
|
2858 | olddir = _queuedir(current) | |
2837 | newdir = _queuedir(name) |
|
2859 | newdir = _queuedir(name) | |
2838 |
|
2860 | |||
2839 | if os.path.exists(newdir): |
|
2861 | if os.path.exists(newdir): | |
2840 | raise util.Abort(_('non-queue directory "%s" already exists') % |
|
2862 | raise util.Abort(_('non-queue directory "%s" already exists') % | |
2841 | newdir) |
|
2863 | newdir) | |
2842 |
|
2864 | |||
2843 | fh = repo.opener('patches.queues.new', 'w') |
|
2865 | fh = repo.opener('patches.queues.new', 'w') | |
2844 | for queue in existing: |
|
2866 | for queue in existing: | |
2845 | if queue == current: |
|
2867 | if queue == current: | |
2846 | fh.write('%s\n' % (name,)) |
|
2868 | fh.write('%s\n' % (name,)) | |
2847 | if os.path.exists(olddir): |
|
2869 | if os.path.exists(olddir): | |
2848 | util.rename(olddir, newdir) |
|
2870 | util.rename(olddir, newdir) | |
2849 | else: |
|
2871 | else: | |
2850 | fh.write('%s\n' % (queue,)) |
|
2872 | fh.write('%s\n' % (queue,)) | |
2851 | fh.close() |
|
2873 | fh.close() | |
2852 | util.rename(repo.join('patches.queues.new'), repo.join(_allqueues)) |
|
2874 | util.rename(repo.join('patches.queues.new'), repo.join(_allqueues)) | |
2853 | _setactivenocheck(name) |
|
2875 | _setactivenocheck(name) | |
2854 | elif opts.get('delete'): |
|
2876 | elif opts.get('delete'): | |
2855 | _delete(name) |
|
2877 | _delete(name) | |
2856 | elif opts.get('purge'): |
|
2878 | elif opts.get('purge'): | |
2857 | if name in existing: |
|
2879 | if name in existing: | |
2858 | _delete(name) |
|
2880 | _delete(name) | |
2859 | qdir = _queuedir(name) |
|
2881 | qdir = _queuedir(name) | |
2860 | if os.path.exists(qdir): |
|
2882 | if os.path.exists(qdir): | |
2861 | shutil.rmtree(qdir) |
|
2883 | shutil.rmtree(qdir) | |
2862 | else: |
|
2884 | else: | |
2863 | if name not in existing: |
|
2885 | if name not in existing: | |
2864 | raise util.Abort(_('use --create to create a new queue')) |
|
2886 | raise util.Abort(_('use --create to create a new queue')) | |
2865 | _setactive(name) |
|
2887 | _setactive(name) | |
2866 |
|
2888 | |||
2867 | def reposetup(ui, repo): |
|
2889 | def reposetup(ui, repo): | |
2868 | class mqrepo(repo.__class__): |
|
2890 | class mqrepo(repo.__class__): | |
2869 | @util.propertycache |
|
2891 | @util.propertycache | |
2870 | def mq(self): |
|
2892 | def mq(self): | |
2871 | return queue(self.ui, self.join("")) |
|
2893 | return queue(self.ui, self.join("")) | |
2872 |
|
2894 | |||
2873 | def abort_if_wdir_patched(self, errmsg, force=False): |
|
2895 | def abort_if_wdir_patched(self, errmsg, force=False): | |
2874 | if self.mq.applied and not force: |
|
2896 | if self.mq.applied and not force: | |
2875 | parent = self.dirstate.parents()[0] |
|
2897 | parent = self.dirstate.parents()[0] | |
2876 | if parent in [s.node for s in self.mq.applied]: |
|
2898 | if parent in [s.node for s in self.mq.applied]: | |
2877 | raise util.Abort(errmsg) |
|
2899 | raise util.Abort(errmsg) | |
2878 |
|
2900 | |||
2879 | def commit(self, text="", user=None, date=None, match=None, |
|
2901 | def commit(self, text="", user=None, date=None, match=None, | |
2880 | force=False, editor=False, extra={}): |
|
2902 | force=False, editor=False, extra={}): | |
2881 | self.abort_if_wdir_patched( |
|
2903 | self.abort_if_wdir_patched( | |
2882 | _('cannot commit over an applied mq patch'), |
|
2904 | _('cannot commit over an applied mq patch'), | |
2883 | force) |
|
2905 | force) | |
2884 |
|
2906 | |||
2885 | return super(mqrepo, self).commit(text, user, date, match, force, |
|
2907 | return super(mqrepo, self).commit(text, user, date, match, force, | |
2886 | editor, extra) |
|
2908 | editor, extra) | |
2887 |
|
2909 | |||
2888 | def push(self, remote, force=False, revs=None, newbranch=False): |
|
2910 | def push(self, remote, force=False, revs=None, newbranch=False): | |
2889 | if self.mq.applied and not force: |
|
2911 | if self.mq.applied and not force: | |
2890 | haspatches = True |
|
2912 | haspatches = True | |
2891 | if revs: |
|
2913 | if revs: | |
2892 | # Assume applied patches have no non-patch descendants |
|
2914 | # Assume applied patches have no non-patch descendants | |
2893 | # and are not on remote already. If they appear in the |
|
2915 | # and are not on remote already. If they appear in the | |
2894 | # set of resolved 'revs', bail out. |
|
2916 | # set of resolved 'revs', bail out. | |
2895 | applied = set(e.node for e in self.mq.applied) |
|
2917 | applied = set(e.node for e in self.mq.applied) | |
2896 | haspatches = bool([n for n in revs if n in applied]) |
|
2918 | haspatches = bool([n for n in revs if n in applied]) | |
2897 | if haspatches: |
|
2919 | if haspatches: | |
2898 | raise util.Abort(_('source has mq patches applied')) |
|
2920 | raise util.Abort(_('source has mq patches applied')) | |
2899 | return super(mqrepo, self).push(remote, force, revs, newbranch) |
|
2921 | return super(mqrepo, self).push(remote, force, revs, newbranch) | |
2900 |
|
2922 | |||
2901 | def _findtags(self): |
|
2923 | def _findtags(self): | |
2902 | '''augment tags from base class with patch tags''' |
|
2924 | '''augment tags from base class with patch tags''' | |
2903 | result = super(mqrepo, self)._findtags() |
|
2925 | result = super(mqrepo, self)._findtags() | |
2904 |
|
2926 | |||
2905 | q = self.mq |
|
2927 | q = self.mq | |
2906 | if not q.applied: |
|
2928 | if not q.applied: | |
2907 | return result |
|
2929 | return result | |
2908 |
|
2930 | |||
2909 | mqtags = [(patch.node, patch.name) for patch in q.applied] |
|
2931 | mqtags = [(patch.node, patch.name) for patch in q.applied] | |
2910 |
|
2932 | |||
2911 | if mqtags[-1][0] not in self.changelog.nodemap: |
|
2933 | if mqtags[-1][0] not in self.changelog.nodemap: | |
2912 | self.ui.warn(_('mq status file refers to unknown node %s\n') |
|
2934 | self.ui.warn(_('mq status file refers to unknown node %s\n') | |
2913 | % short(mqtags[-1][0])) |
|
2935 | % short(mqtags[-1][0])) | |
2914 | return result |
|
2936 | return result | |
2915 |
|
2937 | |||
2916 | mqtags.append((mqtags[-1][0], 'qtip')) |
|
2938 | mqtags.append((mqtags[-1][0], 'qtip')) | |
2917 | mqtags.append((mqtags[0][0], 'qbase')) |
|
2939 | mqtags.append((mqtags[0][0], 'qbase')) | |
2918 | mqtags.append((self.changelog.parents(mqtags[0][0])[0], 'qparent')) |
|
2940 | mqtags.append((self.changelog.parents(mqtags[0][0])[0], 'qparent')) | |
2919 | tags = result[0] |
|
2941 | tags = result[0] | |
2920 | for patch in mqtags: |
|
2942 | for patch in mqtags: | |
2921 | if patch[1] in tags: |
|
2943 | if patch[1] in tags: | |
2922 | self.ui.warn(_('Tag %s overrides mq patch of the same name\n') |
|
2944 | self.ui.warn(_('Tag %s overrides mq patch of the same name\n') | |
2923 | % patch[1]) |
|
2945 | % patch[1]) | |
2924 | else: |
|
2946 | else: | |
2925 | tags[patch[1]] = patch[0] |
|
2947 | tags[patch[1]] = patch[0] | |
2926 |
|
2948 | |||
2927 | return result |
|
2949 | return result | |
2928 |
|
2950 | |||
2929 | def _branchtags(self, partial, lrev): |
|
2951 | def _branchtags(self, partial, lrev): | |
2930 | q = self.mq |
|
2952 | q = self.mq | |
2931 | if not q.applied: |
|
2953 | if not q.applied: | |
2932 | return super(mqrepo, self)._branchtags(partial, lrev) |
|
2954 | return super(mqrepo, self)._branchtags(partial, lrev) | |
2933 |
|
2955 | |||
2934 | cl = self.changelog |
|
2956 | cl = self.changelog | |
2935 | qbasenode = q.applied[0].node |
|
2957 | qbasenode = q.applied[0].node | |
2936 | if qbasenode not in cl.nodemap: |
|
2958 | if qbasenode not in cl.nodemap: | |
2937 | self.ui.warn(_('mq status file refers to unknown node %s\n') |
|
2959 | self.ui.warn(_('mq status file refers to unknown node %s\n') | |
2938 | % short(qbasenode)) |
|
2960 | % short(qbasenode)) | |
2939 | return super(mqrepo, self)._branchtags(partial, lrev) |
|
2961 | return super(mqrepo, self)._branchtags(partial, lrev) | |
2940 |
|
2962 | |||
2941 | qbase = cl.rev(qbasenode) |
|
2963 | qbase = cl.rev(qbasenode) | |
2942 | start = lrev + 1 |
|
2964 | start = lrev + 1 | |
2943 | if start < qbase: |
|
2965 | if start < qbase: | |
2944 | # update the cache (excluding the patches) and save it |
|
2966 | # update the cache (excluding the patches) and save it | |
2945 | ctxgen = (self[r] for r in xrange(lrev + 1, qbase)) |
|
2967 | ctxgen = (self[r] for r in xrange(lrev + 1, qbase)) | |
2946 | self._updatebranchcache(partial, ctxgen) |
|
2968 | self._updatebranchcache(partial, ctxgen) | |
2947 | self._writebranchcache(partial, cl.node(qbase - 1), qbase - 1) |
|
2969 | self._writebranchcache(partial, cl.node(qbase - 1), qbase - 1) | |
2948 | start = qbase |
|
2970 | start = qbase | |
2949 | # if start = qbase, the cache is as updated as it should be. |
|
2971 | # if start = qbase, the cache is as updated as it should be. | |
2950 | # if start > qbase, the cache includes (part of) the patches. |
|
2972 | # if start > qbase, the cache includes (part of) the patches. | |
2951 | # we might as well use it, but we won't save it. |
|
2973 | # we might as well use it, but we won't save it. | |
2952 |
|
2974 | |||
2953 | # update the cache up to the tip |
|
2975 | # update the cache up to the tip | |
2954 | ctxgen = (self[r] for r in xrange(start, len(cl))) |
|
2976 | ctxgen = (self[r] for r in xrange(start, len(cl))) | |
2955 | self._updatebranchcache(partial, ctxgen) |
|
2977 | self._updatebranchcache(partial, ctxgen) | |
2956 |
|
2978 | |||
2957 | return partial |
|
2979 | return partial | |
2958 |
|
2980 | |||
2959 | if repo.local(): |
|
2981 | if repo.local(): | |
2960 | repo.__class__ = mqrepo |
|
2982 | repo.__class__ = mqrepo | |
2961 |
|
2983 | |||
2962 | def mqimport(orig, ui, repo, *args, **kwargs): |
|
2984 | def mqimport(orig, ui, repo, *args, **kwargs): | |
2963 | if (hasattr(repo, 'abort_if_wdir_patched') |
|
2985 | if (hasattr(repo, 'abort_if_wdir_patched') | |
2964 | and not kwargs.get('no_commit', False)): |
|
2986 | and not kwargs.get('no_commit', False)): | |
2965 | repo.abort_if_wdir_patched(_('cannot import over an applied patch'), |
|
2987 | repo.abort_if_wdir_patched(_('cannot import over an applied patch'), | |
2966 | kwargs.get('force')) |
|
2988 | kwargs.get('force')) | |
2967 | return orig(ui, repo, *args, **kwargs) |
|
2989 | return orig(ui, repo, *args, **kwargs) | |
2968 |
|
2990 | |||
2969 | def mqinit(orig, ui, *args, **kwargs): |
|
2991 | def mqinit(orig, ui, *args, **kwargs): | |
2970 | mq = kwargs.pop('mq', None) |
|
2992 | mq = kwargs.pop('mq', None) | |
2971 |
|
2993 | |||
2972 | if not mq: |
|
2994 | if not mq: | |
2973 | return orig(ui, *args, **kwargs) |
|
2995 | return orig(ui, *args, **kwargs) | |
2974 |
|
2996 | |||
2975 | if args: |
|
2997 | if args: | |
2976 | repopath = args[0] |
|
2998 | repopath = args[0] | |
2977 | if not hg.islocal(repopath): |
|
2999 | if not hg.islocal(repopath): | |
2978 | raise util.Abort(_('only a local queue repository ' |
|
3000 | raise util.Abort(_('only a local queue repository ' | |
2979 | 'may be initialized')) |
|
3001 | 'may be initialized')) | |
2980 | else: |
|
3002 | else: | |
2981 | repopath = cmdutil.findrepo(os.getcwd()) |
|
3003 | repopath = cmdutil.findrepo(os.getcwd()) | |
2982 | if not repopath: |
|
3004 | if not repopath: | |
2983 | raise util.Abort(_('there is no Mercurial repository here ' |
|
3005 | raise util.Abort(_('there is no Mercurial repository here ' | |
2984 | '(.hg not found)')) |
|
3006 | '(.hg not found)')) | |
2985 | repo = hg.repository(ui, repopath) |
|
3007 | repo = hg.repository(ui, repopath) | |
2986 | return qinit(ui, repo, True) |
|
3008 | return qinit(ui, repo, True) | |
2987 |
|
3009 | |||
2988 | def mqcommand(orig, ui, repo, *args, **kwargs): |
|
3010 | def mqcommand(orig, ui, repo, *args, **kwargs): | |
2989 | """Add --mq option to operate on patch repository instead of main""" |
|
3011 | """Add --mq option to operate on patch repository instead of main""" | |
2990 |
|
3012 | |||
2991 | # some commands do not like getting unknown options |
|
3013 | # some commands do not like getting unknown options | |
2992 | mq = kwargs.pop('mq', None) |
|
3014 | mq = kwargs.pop('mq', None) | |
2993 |
|
3015 | |||
2994 | if not mq: |
|
3016 | if not mq: | |
2995 | return orig(ui, repo, *args, **kwargs) |
|
3017 | return orig(ui, repo, *args, **kwargs) | |
2996 |
|
3018 | |||
2997 | q = repo.mq |
|
3019 | q = repo.mq | |
2998 | r = q.qrepo() |
|
3020 | r = q.qrepo() | |
2999 | if not r: |
|
3021 | if not r: | |
3000 | raise util.Abort(_('no queue repository')) |
|
3022 | raise util.Abort(_('no queue repository')) | |
3001 | return orig(r.ui, r, *args, **kwargs) |
|
3023 | return orig(r.ui, r, *args, **kwargs) | |
3002 |
|
3024 | |||
3003 | def summary(orig, ui, repo, *args, **kwargs): |
|
3025 | def summary(orig, ui, repo, *args, **kwargs): | |
3004 | r = orig(ui, repo, *args, **kwargs) |
|
3026 | r = orig(ui, repo, *args, **kwargs) | |
3005 | q = repo.mq |
|
3027 | q = repo.mq | |
3006 | m = [] |
|
3028 | m = [] | |
3007 | a, u = len(q.applied), len(q.unapplied(repo)) |
|
3029 | a, u = len(q.applied), len(q.unapplied(repo)) | |
3008 | if a: |
|
3030 | if a: | |
3009 | m.append(ui.label(_("%d applied"), 'qseries.applied') % a) |
|
3031 | m.append(ui.label(_("%d applied"), 'qseries.applied') % a) | |
3010 | if u: |
|
3032 | if u: | |
3011 | m.append(ui.label(_("%d unapplied"), 'qseries.unapplied') % u) |
|
3033 | m.append(ui.label(_("%d unapplied"), 'qseries.unapplied') % u) | |
3012 | if m: |
|
3034 | if m: | |
3013 | ui.write("mq: %s\n" % ', '.join(m)) |
|
3035 | ui.write("mq: %s\n" % ', '.join(m)) | |
3014 | else: |
|
3036 | else: | |
3015 | ui.note(_("mq: (empty queue)\n")) |
|
3037 | ui.note(_("mq: (empty queue)\n")) | |
3016 | return r |
|
3038 | return r | |
3017 |
|
3039 | |||
3018 | def uisetup(ui): |
|
3040 | def uisetup(ui): | |
3019 | mqopt = [('', 'mq', None, _("operate on patch repository"))] |
|
3041 | mqopt = [('', 'mq', None, _("operate on patch repository"))] | |
3020 |
|
3042 | |||
3021 | extensions.wrapcommand(commands.table, 'import', mqimport) |
|
3043 | extensions.wrapcommand(commands.table, 'import', mqimport) | |
3022 | extensions.wrapcommand(commands.table, 'summary', summary) |
|
3044 | extensions.wrapcommand(commands.table, 'summary', summary) | |
3023 |
|
3045 | |||
3024 | entry = extensions.wrapcommand(commands.table, 'init', mqinit) |
|
3046 | entry = extensions.wrapcommand(commands.table, 'init', mqinit) | |
3025 | entry[1].extend(mqopt) |
|
3047 | entry[1].extend(mqopt) | |
3026 |
|
3048 | |||
3027 | nowrap = set(commands.norepo.split(" ") + ['qrecord']) |
|
3049 | nowrap = set(commands.norepo.split(" ") + ['qrecord']) | |
3028 |
|
3050 | |||
3029 | def dotable(cmdtable): |
|
3051 | def dotable(cmdtable): | |
3030 | for cmd in cmdtable.keys(): |
|
3052 | for cmd in cmdtable.keys(): | |
3031 | cmd = cmdutil.parsealiases(cmd)[0] |
|
3053 | cmd = cmdutil.parsealiases(cmd)[0] | |
3032 | if cmd in nowrap: |
|
3054 | if cmd in nowrap: | |
3033 | continue |
|
3055 | continue | |
3034 | entry = extensions.wrapcommand(cmdtable, cmd, mqcommand) |
|
3056 | entry = extensions.wrapcommand(cmdtable, cmd, mqcommand) | |
3035 | entry[1].extend(mqopt) |
|
3057 | entry[1].extend(mqopt) | |
3036 |
|
3058 | |||
3037 | dotable(commands.table) |
|
3059 | dotable(commands.table) | |
3038 |
|
3060 | |||
3039 | for extname, extmodule in extensions.extensions(): |
|
3061 | for extname, extmodule in extensions.extensions(): | |
3040 | if extmodule.__file__ != __file__: |
|
3062 | if extmodule.__file__ != __file__: | |
3041 | dotable(getattr(extmodule, 'cmdtable', {})) |
|
3063 | dotable(getattr(extmodule, 'cmdtable', {})) | |
3042 |
|
3064 | |||
3043 | seriesopts = [('s', 'summary', None, _('print first line of patch header'))] |
|
3065 | seriesopts = [('s', 'summary', None, _('print first line of patch header'))] | |
3044 |
|
3066 | |||
3045 | cmdtable = { |
|
3067 | cmdtable = { | |
3046 | "qapplied": |
|
3068 | "qapplied": | |
3047 | (applied, |
|
3069 | (applied, | |
3048 | [('1', 'last', None, _('show only the last patch'))] + seriesopts, |
|
3070 | [('1', 'last', None, _('show only the last patch'))] + seriesopts, | |
3049 | _('hg qapplied [-1] [-s] [PATCH]')), |
|
3071 | _('hg qapplied [-1] [-s] [PATCH]')), | |
3050 | "qclone": |
|
3072 | "qclone": | |
3051 | (clone, |
|
3073 | (clone, | |
3052 | [('', 'pull', None, _('use pull protocol to copy metadata')), |
|
3074 | [('', 'pull', None, _('use pull protocol to copy metadata')), | |
3053 | ('U', 'noupdate', None, _('do not update the new working directories')), |
|
3075 | ('U', 'noupdate', None, _('do not update the new working directories')), | |
3054 | ('', 'uncompressed', None, |
|
3076 | ('', 'uncompressed', None, | |
3055 | _('use uncompressed transfer (fast over LAN)')), |
|
3077 | _('use uncompressed transfer (fast over LAN)')), | |
3056 | ('p', 'patches', '', |
|
3078 | ('p', 'patches', '', | |
3057 | _('location of source patch repository'), _('REPO')), |
|
3079 | _('location of source patch repository'), _('REPO')), | |
3058 | ] + commands.remoteopts, |
|
3080 | ] + commands.remoteopts, | |
3059 | _('hg qclone [OPTION]... SOURCE [DEST]')), |
|
3081 | _('hg qclone [OPTION]... SOURCE [DEST]')), | |
3060 | "qcommit|qci": |
|
3082 | "qcommit|qci": | |
3061 | (commit, |
|
3083 | (commit, | |
3062 | commands.table["^commit|ci"][1], |
|
3084 | commands.table["^commit|ci"][1], | |
3063 | _('hg qcommit [OPTION]... [FILE]...')), |
|
3085 | _('hg qcommit [OPTION]... [FILE]...')), | |
3064 | "^qdiff": |
|
3086 | "^qdiff": | |
3065 | (diff, |
|
3087 | (diff, | |
3066 | commands.diffopts + commands.diffopts2 + commands.walkopts, |
|
3088 | commands.diffopts + commands.diffopts2 + commands.walkopts, | |
3067 | _('hg qdiff [OPTION]... [FILE]...')), |
|
3089 | _('hg qdiff [OPTION]... [FILE]...')), | |
3068 | "qdelete|qremove|qrm": |
|
3090 | "qdelete|qremove|qrm": | |
3069 | (delete, |
|
3091 | (delete, | |
3070 | [('k', 'keep', None, _('keep patch file')), |
|
3092 | [('k', 'keep', None, _('keep patch file')), | |
3071 | ('r', 'rev', [], |
|
3093 | ('r', 'rev', [], | |
3072 | _('stop managing a revision (DEPRECATED)'), _('REV'))], |
|
3094 | _('stop managing a revision (DEPRECATED)'), _('REV'))], | |
3073 | _('hg qdelete [-k] [PATCH]...')), |
|
3095 | _('hg qdelete [-k] [PATCH]...')), | |
3074 | 'qfold': |
|
3096 | 'qfold': | |
3075 | (fold, |
|
3097 | (fold, | |
3076 | [('e', 'edit', None, _('edit patch header')), |
|
3098 | [('e', 'edit', None, _('edit patch header')), | |
3077 | ('k', 'keep', None, _('keep folded patch files')), |
|
3099 | ('k', 'keep', None, _('keep folded patch files')), | |
3078 | ] + commands.commitopts, |
|
3100 | ] + commands.commitopts, | |
3079 | _('hg qfold [-e] [-k] [-m TEXT] [-l FILE] PATCH...')), |
|
3101 | _('hg qfold [-e] [-k] [-m TEXT] [-l FILE] PATCH...')), | |
3080 | 'qgoto': |
|
3102 | 'qgoto': | |
3081 | (goto, |
|
3103 | (goto, | |
3082 | [('f', 'force', None, _('overwrite any local changes'))], |
|
3104 | [('f', 'force', None, _('overwrite any local changes'))], | |
3083 | _('hg qgoto [OPTION]... PATCH')), |
|
3105 | _('hg qgoto [OPTION]... PATCH')), | |
3084 | 'qguard': |
|
3106 | 'qguard': | |
3085 | (guard, |
|
3107 | (guard, | |
3086 | [('l', 'list', None, _('list all patches and guards')), |
|
3108 | [('l', 'list', None, _('list all patches and guards')), | |
3087 | ('n', 'none', None, _('drop all guards'))], |
|
3109 | ('n', 'none', None, _('drop all guards'))], | |
3088 | _('hg qguard [-l] [-n] [PATCH] [-- [+GUARD]... [-GUARD]...]')), |
|
3110 | _('hg qguard [-l] [-n] [PATCH] [-- [+GUARD]... [-GUARD]...]')), | |
3089 | 'qheader': (header, [], _('hg qheader [PATCH]')), |
|
3111 | 'qheader': (header, [], _('hg qheader [PATCH]')), | |
3090 | "qimport": |
|
3112 | "qimport": | |
3091 | (qimport, |
|
3113 | (qimport, | |
3092 | [('e', 'existing', None, _('import file in patch directory')), |
|
3114 | [('e', 'existing', None, _('import file in patch directory')), | |
3093 | ('n', 'name', '', |
|
3115 | ('n', 'name', '', | |
3094 | _('name of patch file'), _('NAME')), |
|
3116 | _('name of patch file'), _('NAME')), | |
3095 | ('f', 'force', None, _('overwrite existing files')), |
|
3117 | ('f', 'force', None, _('overwrite existing files')), | |
3096 | ('r', 'rev', [], |
|
3118 | ('r', 'rev', [], | |
3097 | _('place existing revisions under mq control'), _('REV')), |
|
3119 | _('place existing revisions under mq control'), _('REV')), | |
3098 | ('g', 'git', None, _('use git extended diff format')), |
|
3120 | ('g', 'git', None, _('use git extended diff format')), | |
3099 | ('P', 'push', None, _('qpush after importing'))], |
|
3121 | ('P', 'push', None, _('qpush after importing'))], | |
3100 | _('hg qimport [-e] [-n NAME] [-f] [-g] [-P] [-r REV]... FILE...')), |
|
3122 | _('hg qimport [-e] [-n NAME] [-f] [-g] [-P] [-r REV]... FILE...')), | |
3101 | "^qinit": |
|
3123 | "^qinit": | |
3102 | (init, |
|
3124 | (init, | |
3103 | [('c', 'create-repo', None, _('create queue repository'))], |
|
3125 | [('c', 'create-repo', None, _('create queue repository'))], | |
3104 | _('hg qinit [-c]')), |
|
3126 | _('hg qinit [-c]')), | |
3105 | "^qnew": |
|
3127 | "^qnew": | |
3106 | (new, |
|
3128 | (new, | |
3107 | [('e', 'edit', None, _('edit commit message')), |
|
3129 | [('e', 'edit', None, _('edit commit message')), | |
3108 | ('f', 'force', None, _('import uncommitted changes (DEPRECATED)')), |
|
3130 | ('f', 'force', None, _('import uncommitted changes (DEPRECATED)')), | |
3109 | ('g', 'git', None, _('use git extended diff format')), |
|
3131 | ('g', 'git', None, _('use git extended diff format')), | |
3110 | ('U', 'currentuser', None, _('add "From: <current user>" to patch')), |
|
3132 | ('U', 'currentuser', None, _('add "From: <current user>" to patch')), | |
3111 | ('u', 'user', '', |
|
3133 | ('u', 'user', '', | |
3112 | _('add "From: <USER>" to patch'), _('USER')), |
|
3134 | _('add "From: <USER>" to patch'), _('USER')), | |
3113 | ('D', 'currentdate', None, _('add "Date: <current date>" to patch')), |
|
3135 | ('D', 'currentdate', None, _('add "Date: <current date>" to patch')), | |
3114 | ('d', 'date', '', |
|
3136 | ('d', 'date', '', | |
3115 | _('add "Date: <DATE>" to patch'), _('DATE')) |
|
3137 | _('add "Date: <DATE>" to patch'), _('DATE')) | |
3116 | ] + commands.walkopts + commands.commitopts, |
|
3138 | ] + commands.walkopts + commands.commitopts, | |
3117 | _('hg qnew [-e] [-m TEXT] [-l FILE] PATCH [FILE]...')), |
|
3139 | _('hg qnew [-e] [-m TEXT] [-l FILE] PATCH [FILE]...')), | |
3118 | "qnext": (next, [] + seriesopts, _('hg qnext [-s]')), |
|
3140 | "qnext": (next, [] + seriesopts, _('hg qnext [-s]')), | |
3119 | "qprev": (prev, [] + seriesopts, _('hg qprev [-s]')), |
|
3141 | "qprev": (prev, [] + seriesopts, _('hg qprev [-s]')), | |
3120 | "^qpop": |
|
3142 | "^qpop": | |
3121 | (pop, |
|
3143 | (pop, | |
3122 | [('a', 'all', None, _('pop all patches')), |
|
3144 | [('a', 'all', None, _('pop all patches')), | |
3123 | ('n', 'name', '', |
|
3145 | ('n', 'name', '', | |
3124 | _('queue name to pop (DEPRECATED)'), _('NAME')), |
|
3146 | _('queue name to pop (DEPRECATED)'), _('NAME')), | |
3125 | ('f', 'force', None, _('forget any local changes to patched files'))], |
|
3147 | ('f', 'force', None, _('forget any local changes to patched files'))], | |
3126 | _('hg qpop [-a] [-f] [PATCH | INDEX]')), |
|
3148 | _('hg qpop [-a] [-f] [PATCH | INDEX]')), | |
3127 | "^qpush": |
|
3149 | "^qpush": | |
3128 | (push, |
|
3150 | (push, | |
3129 | [('f', 'force', None, _('apply on top of local changes')), |
|
3151 | [('f', 'force', None, _('apply on top of local changes')), | |
3130 | ('e', 'exact', None, _('apply the target patch to its recorded parent')), |
|
3152 | ('e', 'exact', None, _('apply the target patch to its recorded parent')), | |
3131 | ('l', 'list', None, _('list patch name in commit text')), |
|
3153 | ('l', 'list', None, _('list patch name in commit text')), | |
3132 | ('a', 'all', None, _('apply all patches')), |
|
3154 | ('a', 'all', None, _('apply all patches')), | |
3133 | ('m', 'merge', None, _('merge from another queue (DEPRECATED)')), |
|
3155 | ('m', 'merge', None, _('merge from another queue (DEPRECATED)')), | |
3134 | ('n', 'name', '', |
|
3156 | ('n', 'name', '', | |
3135 | _('merge queue name (DEPRECATED)'), _('NAME')), |
|
3157 | _('merge queue name (DEPRECATED)'), _('NAME')), | |
3136 | ('', 'move', None, _('reorder patch series and apply only the patch'))], |
|
3158 | ('', 'move', None, _('reorder patch series and apply only the patch'))], | |
3137 | _('hg qpush [-f] [-l] [-a] [--move] [PATCH | INDEX]')), |
|
3159 | _('hg qpush [-f] [-l] [-a] [--move] [PATCH | INDEX]')), | |
3138 | "^qrefresh": |
|
3160 | "^qrefresh": | |
3139 | (refresh, |
|
3161 | (refresh, | |
3140 | [('e', 'edit', None, _('edit commit message')), |
|
3162 | [('e', 'edit', None, _('edit commit message')), | |
3141 | ('g', 'git', None, _('use git extended diff format')), |
|
3163 | ('g', 'git', None, _('use git extended diff format')), | |
3142 | ('s', 'short', None, |
|
3164 | ('s', 'short', None, | |
3143 | _('refresh only files already in the patch and specified files')), |
|
3165 | _('refresh only files already in the patch and specified files')), | |
3144 | ('U', 'currentuser', None, |
|
3166 | ('U', 'currentuser', None, | |
3145 | _('add/update author field in patch with current user')), |
|
3167 | _('add/update author field in patch with current user')), | |
3146 | ('u', 'user', '', |
|
3168 | ('u', 'user', '', | |
3147 | _('add/update author field in patch with given user'), _('USER')), |
|
3169 | _('add/update author field in patch with given user'), _('USER')), | |
3148 | ('D', 'currentdate', None, |
|
3170 | ('D', 'currentdate', None, | |
3149 | _('add/update date field in patch with current date')), |
|
3171 | _('add/update date field in patch with current date')), | |
3150 | ('d', 'date', '', |
|
3172 | ('d', 'date', '', | |
3151 | _('add/update date field in patch with given date'), _('DATE')) |
|
3173 | _('add/update date field in patch with given date'), _('DATE')) | |
3152 | ] + commands.walkopts + commands.commitopts, |
|
3174 | ] + commands.walkopts + commands.commitopts, | |
3153 | _('hg qrefresh [-I] [-X] [-e] [-m TEXT] [-l FILE] [-s] [FILE]...')), |
|
3175 | _('hg qrefresh [-I] [-X] [-e] [-m TEXT] [-l FILE] [-s] [FILE]...')), | |
3154 | 'qrename|qmv': |
|
3176 | 'qrename|qmv': | |
3155 | (rename, [], _('hg qrename PATCH1 [PATCH2]')), |
|
3177 | (rename, [], _('hg qrename PATCH1 [PATCH2]')), | |
3156 | "qrestore": |
|
3178 | "qrestore": | |
3157 | (restore, |
|
3179 | (restore, | |
3158 | [('d', 'delete', None, _('delete save entry')), |
|
3180 | [('d', 'delete', None, _('delete save entry')), | |
3159 | ('u', 'update', None, _('update queue working directory'))], |
|
3181 | ('u', 'update', None, _('update queue working directory'))], | |
3160 | _('hg qrestore [-d] [-u] REV')), |
|
3182 | _('hg qrestore [-d] [-u] REV')), | |
3161 | "qsave": |
|
3183 | "qsave": | |
3162 | (save, |
|
3184 | (save, | |
3163 | [('c', 'copy', None, _('copy patch directory')), |
|
3185 | [('c', 'copy', None, _('copy patch directory')), | |
3164 | ('n', 'name', '', |
|
3186 | ('n', 'name', '', | |
3165 | _('copy directory name'), _('NAME')), |
|
3187 | _('copy directory name'), _('NAME')), | |
3166 | ('e', 'empty', None, _('clear queue status file')), |
|
3188 | ('e', 'empty', None, _('clear queue status file')), | |
3167 | ('f', 'force', None, _('force copy'))] + commands.commitopts, |
|
3189 | ('f', 'force', None, _('force copy'))] + commands.commitopts, | |
3168 | _('hg qsave [-m TEXT] [-l FILE] [-c] [-n NAME] [-e] [-f]')), |
|
3190 | _('hg qsave [-m TEXT] [-l FILE] [-c] [-n NAME] [-e] [-f]')), | |
3169 | "qselect": |
|
3191 | "qselect": | |
3170 | (select, |
|
3192 | (select, | |
3171 | [('n', 'none', None, _('disable all guards')), |
|
3193 | [('n', 'none', None, _('disable all guards')), | |
3172 | ('s', 'series', None, _('list all guards in series file')), |
|
3194 | ('s', 'series', None, _('list all guards in series file')), | |
3173 | ('', 'pop', None, _('pop to before first guarded applied patch')), |
|
3195 | ('', 'pop', None, _('pop to before first guarded applied patch')), | |
3174 | ('', 'reapply', None, _('pop, then reapply patches'))], |
|
3196 | ('', 'reapply', None, _('pop, then reapply patches'))], | |
3175 | _('hg qselect [OPTION]... [GUARD]...')), |
|
3197 | _('hg qselect [OPTION]... [GUARD]...')), | |
3176 | "qseries": |
|
3198 | "qseries": | |
3177 | (series, |
|
3199 | (series, | |
3178 | [('m', 'missing', None, _('print patches not in series')), |
|
3200 | [('m', 'missing', None, _('print patches not in series')), | |
3179 | ] + seriesopts, |
|
3201 | ] + seriesopts, | |
3180 | _('hg qseries [-ms]')), |
|
3202 | _('hg qseries [-ms]')), | |
3181 | "strip": |
|
3203 | "strip": | |
3182 | (strip, |
|
3204 | (strip, | |
3183 | [('f', 'force', None, _('force removal of changesets even if the ' |
|
3205 | [('f', 'force', None, _('force removal of changesets even if the ' | |
3184 | 'working directory has uncommitted changes')), |
|
3206 | 'working directory has uncommitted changes')), | |
3185 | ('b', 'backup', None, _('bundle only changesets with local revision' |
|
3207 | ('b', 'backup', None, _('bundle only changesets with local revision' | |
3186 | ' number greater than REV which are not' |
|
3208 | ' number greater than REV which are not' | |
3187 | ' descendants of REV (DEPRECATED)')), |
|
3209 | ' descendants of REV (DEPRECATED)')), | |
3188 | ('n', 'no-backup', None, _('no backups')), |
|
3210 | ('n', 'no-backup', None, _('no backups')), | |
3189 | ('', 'nobackup', None, _('no backups (DEPRECATED)')), |
|
3211 | ('', 'nobackup', None, _('no backups (DEPRECATED)')), | |
3190 | ('k', 'keep', None, _("do not modify working copy during strip"))], |
|
3212 | ('k', 'keep', None, _("do not modify working copy during strip"))], | |
3191 | _('hg strip [-k] [-f] [-n] REV...')), |
|
3213 | _('hg strip [-k] [-f] [-n] REV...')), | |
3192 | "qtop": (top, [] + seriesopts, _('hg qtop [-s]')), |
|
3214 | "qtop": (top, [] + seriesopts, _('hg qtop [-s]')), | |
3193 | "qunapplied": |
|
3215 | "qunapplied": | |
3194 | (unapplied, |
|
3216 | (unapplied, | |
3195 | [('1', 'first', None, _('show only the first patch'))] + seriesopts, |
|
3217 | [('1', 'first', None, _('show only the first patch'))] + seriesopts, | |
3196 | _('hg qunapplied [-1] [-s] [PATCH]')), |
|
3218 | _('hg qunapplied [-1] [-s] [PATCH]')), | |
3197 | "qfinish": |
|
3219 | "qfinish": | |
3198 | (finish, |
|
3220 | (finish, | |
3199 | [('a', 'applied', None, _('finish all applied changesets'))], |
|
3221 | [('a', 'applied', None, _('finish all applied changesets'))], | |
3200 | _('hg qfinish [-a] [REV]...')), |
|
3222 | _('hg qfinish [-a] [REV]...')), | |
3201 | 'qqueue': |
|
3223 | 'qqueue': | |
3202 | (qqueue, |
|
3224 | (qqueue, | |
3203 | [ |
|
3225 | [ | |
3204 | ('l', 'list', False, _('list all available queues')), |
|
3226 | ('l', 'list', False, _('list all available queues')), | |
3205 | ('c', 'create', False, _('create new queue')), |
|
3227 | ('c', 'create', False, _('create new queue')), | |
3206 | ('', 'rename', False, _('rename active queue')), |
|
3228 | ('', 'rename', False, _('rename active queue')), | |
3207 | ('', 'delete', False, _('delete reference to queue')), |
|
3229 | ('', 'delete', False, _('delete reference to queue')), | |
3208 | ('', 'purge', False, _('delete queue, and remove patch dir')), |
|
3230 | ('', 'purge', False, _('delete queue, and remove patch dir')), | |
3209 | ], |
|
3231 | ], | |
3210 | _('[OPTION] [QUEUE]')), |
|
3232 | _('[OPTION] [QUEUE]')), | |
3211 | } |
|
3233 | } | |
3212 |
|
3234 | |||
3213 | colortable = {'qguard.negative': 'red', |
|
3235 | colortable = {'qguard.negative': 'red', | |
3214 | 'qguard.positive': 'yellow', |
|
3236 | 'qguard.positive': 'yellow', | |
3215 | 'qguard.unguarded': 'green', |
|
3237 | 'qguard.unguarded': 'green', | |
3216 | 'qseries.applied': 'blue bold underline', |
|
3238 | 'qseries.applied': 'blue bold underline', | |
3217 | 'qseries.guarded': 'black bold', |
|
3239 | 'qseries.guarded': 'black bold', | |
3218 | 'qseries.missing': 'red bold', |
|
3240 | 'qseries.missing': 'red bold', | |
3219 | 'qseries.unapplied': 'black bold'} |
|
3241 | 'qseries.unapplied': 'black bold'} |
@@ -1,886 +1,889 b'' | |||||
1 | # subrepo.py - sub-repository handling for Mercurial |
|
1 | # subrepo.py - sub-repository handling for Mercurial | |
2 | # |
|
2 | # | |
3 | # Copyright 2009-2010 Matt Mackall <mpm@selenic.com> |
|
3 | # Copyright 2009-2010 Matt Mackall <mpm@selenic.com> | |
4 | # |
|
4 | # | |
5 | # This software may be used and distributed according to the terms of the |
|
5 | # This software may be used and distributed according to the terms of the | |
6 | # GNU General Public License version 2 or any later version. |
|
6 | # GNU General Public License version 2 or any later version. | |
7 |
|
7 | |||
8 | import errno, os, re, xml.dom.minidom, shutil, urlparse, posixpath |
|
8 | import errno, os, re, xml.dom.minidom, shutil, urlparse, posixpath | |
9 | import stat, subprocess, tarfile |
|
9 | import stat, subprocess, tarfile | |
10 | from i18n import _ |
|
10 | from i18n import _ | |
11 | import config, util, node, error, cmdutil |
|
11 | import config, util, node, error, cmdutil | |
12 | hg = None |
|
12 | hg = None | |
13 |
|
13 | |||
14 | nullstate = ('', '', 'empty') |
|
14 | nullstate = ('', '', 'empty') | |
15 |
|
15 | |||
16 | def state(ctx, ui): |
|
16 | def state(ctx, ui): | |
17 | """return a state dict, mapping subrepo paths configured in .hgsub |
|
17 | """return a state dict, mapping subrepo paths configured in .hgsub | |
18 | to tuple: (source from .hgsub, revision from .hgsubstate, kind |
|
18 | to tuple: (source from .hgsub, revision from .hgsubstate, kind | |
19 | (key in types dict)) |
|
19 | (key in types dict)) | |
20 | """ |
|
20 | """ | |
21 | p = config.config() |
|
21 | p = config.config() | |
22 | def read(f, sections=None, remap=None): |
|
22 | def read(f, sections=None, remap=None): | |
23 | if f in ctx: |
|
23 | if f in ctx: | |
24 | try: |
|
24 | try: | |
25 | data = ctx[f].data() |
|
25 | data = ctx[f].data() | |
26 | except IOError, err: |
|
26 | except IOError, err: | |
27 | if err.errno != errno.ENOENT: |
|
27 | if err.errno != errno.ENOENT: | |
28 | raise |
|
28 | raise | |
29 | # handle missing subrepo spec files as removed |
|
29 | # handle missing subrepo spec files as removed | |
30 | ui.warn(_("warning: subrepo spec file %s not found\n") % f) |
|
30 | ui.warn(_("warning: subrepo spec file %s not found\n") % f) | |
31 | return |
|
31 | return | |
32 | p.parse(f, data, sections, remap, read) |
|
32 | p.parse(f, data, sections, remap, read) | |
33 | else: |
|
33 | else: | |
34 | raise util.Abort(_("subrepo spec file %s not found") % f) |
|
34 | raise util.Abort(_("subrepo spec file %s not found") % f) | |
35 |
|
35 | |||
36 | if '.hgsub' in ctx: |
|
36 | if '.hgsub' in ctx: | |
37 | read('.hgsub') |
|
37 | read('.hgsub') | |
38 |
|
38 | |||
39 | for path, src in ui.configitems('subpaths'): |
|
39 | for path, src in ui.configitems('subpaths'): | |
40 | p.set('subpaths', path, src, ui.configsource('subpaths', path)) |
|
40 | p.set('subpaths', path, src, ui.configsource('subpaths', path)) | |
41 |
|
41 | |||
42 | rev = {} |
|
42 | rev = {} | |
43 | if '.hgsubstate' in ctx: |
|
43 | if '.hgsubstate' in ctx: | |
44 | try: |
|
44 | try: | |
45 | for l in ctx['.hgsubstate'].data().splitlines(): |
|
45 | for l in ctx['.hgsubstate'].data().splitlines(): | |
46 | revision, path = l.split(" ", 1) |
|
46 | revision, path = l.split(" ", 1) | |
47 | rev[path] = revision |
|
47 | rev[path] = revision | |
48 | except IOError, err: |
|
48 | except IOError, err: | |
49 | if err.errno != errno.ENOENT: |
|
49 | if err.errno != errno.ENOENT: | |
50 | raise |
|
50 | raise | |
51 |
|
51 | |||
52 | state = {} |
|
52 | state = {} | |
53 | for path, src in p[''].items(): |
|
53 | for path, src in p[''].items(): | |
54 | kind = 'hg' |
|
54 | kind = 'hg' | |
55 | if src.startswith('['): |
|
55 | if src.startswith('['): | |
56 | if ']' not in src: |
|
56 | if ']' not in src: | |
57 | raise util.Abort(_('missing ] in subrepo source')) |
|
57 | raise util.Abort(_('missing ] in subrepo source')) | |
58 | kind, src = src.split(']', 1) |
|
58 | kind, src = src.split(']', 1) | |
59 | kind = kind[1:] |
|
59 | kind = kind[1:] | |
60 |
|
60 | |||
61 | for pattern, repl in p.items('subpaths'): |
|
61 | for pattern, repl in p.items('subpaths'): | |
62 | # Turn r'C:\foo\bar' into r'C:\\foo\\bar' since re.sub |
|
62 | # Turn r'C:\foo\bar' into r'C:\\foo\\bar' since re.sub | |
63 | # does a string decode. |
|
63 | # does a string decode. | |
64 | repl = repl.encode('string-escape') |
|
64 | repl = repl.encode('string-escape') | |
65 | # However, we still want to allow back references to go |
|
65 | # However, we still want to allow back references to go | |
66 | # through unharmed, so we turn r'\\1' into r'\1'. Again, |
|
66 | # through unharmed, so we turn r'\\1' into r'\1'. Again, | |
67 | # extra escapes are needed because re.sub string decodes. |
|
67 | # extra escapes are needed because re.sub string decodes. | |
68 | repl = re.sub(r'\\\\([0-9]+)', r'\\\1', repl) |
|
68 | repl = re.sub(r'\\\\([0-9]+)', r'\\\1', repl) | |
69 | try: |
|
69 | try: | |
70 | src = re.sub(pattern, repl, src, 1) |
|
70 | src = re.sub(pattern, repl, src, 1) | |
71 | except re.error, e: |
|
71 | except re.error, e: | |
72 | raise util.Abort(_("bad subrepository pattern in %s: %s") |
|
72 | raise util.Abort(_("bad subrepository pattern in %s: %s") | |
73 | % (p.source('subpaths', pattern), e)) |
|
73 | % (p.source('subpaths', pattern), e)) | |
74 |
|
74 | |||
75 | state[path] = (src.strip(), rev.get(path, ''), kind) |
|
75 | state[path] = (src.strip(), rev.get(path, ''), kind) | |
76 |
|
76 | |||
77 | return state |
|
77 | return state | |
78 |
|
78 | |||
79 | def writestate(repo, state): |
|
79 | def writestate(repo, state): | |
80 | """rewrite .hgsubstate in (outer) repo with these subrepo states""" |
|
80 | """rewrite .hgsubstate in (outer) repo with these subrepo states""" | |
81 | repo.wwrite('.hgsubstate', |
|
81 | repo.wwrite('.hgsubstate', | |
82 | ''.join(['%s %s\n' % (state[s][1], s) |
|
82 | ''.join(['%s %s\n' % (state[s][1], s) | |
83 | for s in sorted(state)]), '') |
|
83 | for s in sorted(state)]), '') | |
84 |
|
84 | |||
85 | def submerge(repo, wctx, mctx, actx): |
|
85 | def submerge(repo, wctx, mctx, actx): | |
86 | """delegated from merge.applyupdates: merging of .hgsubstate file |
|
86 | """delegated from merge.applyupdates: merging of .hgsubstate file | |
87 | in working context, merging context and ancestor context""" |
|
87 | in working context, merging context and ancestor context""" | |
88 | if mctx == actx: # backwards? |
|
88 | if mctx == actx: # backwards? | |
89 | actx = wctx.p1() |
|
89 | actx = wctx.p1() | |
90 | s1 = wctx.substate |
|
90 | s1 = wctx.substate | |
91 | s2 = mctx.substate |
|
91 | s2 = mctx.substate | |
92 | sa = actx.substate |
|
92 | sa = actx.substate | |
93 | sm = {} |
|
93 | sm = {} | |
94 |
|
94 | |||
95 | repo.ui.debug("subrepo merge %s %s %s\n" % (wctx, mctx, actx)) |
|
95 | repo.ui.debug("subrepo merge %s %s %s\n" % (wctx, mctx, actx)) | |
96 |
|
96 | |||
97 | def debug(s, msg, r=""): |
|
97 | def debug(s, msg, r=""): | |
98 | if r: |
|
98 | if r: | |
99 | r = "%s:%s:%s" % r |
|
99 | r = "%s:%s:%s" % r | |
100 | repo.ui.debug(" subrepo %s: %s %s\n" % (s, msg, r)) |
|
100 | repo.ui.debug(" subrepo %s: %s %s\n" % (s, msg, r)) | |
101 |
|
101 | |||
102 | for s, l in s1.items(): |
|
102 | for s, l in s1.items(): | |
103 | a = sa.get(s, nullstate) |
|
103 | a = sa.get(s, nullstate) | |
104 | ld = l # local state with possible dirty flag for compares |
|
104 | ld = l # local state with possible dirty flag for compares | |
105 | if wctx.sub(s).dirty(): |
|
105 | if wctx.sub(s).dirty(): | |
106 | ld = (l[0], l[1] + "+") |
|
106 | ld = (l[0], l[1] + "+") | |
107 | if wctx == actx: # overwrite |
|
107 | if wctx == actx: # overwrite | |
108 | a = ld |
|
108 | a = ld | |
109 |
|
109 | |||
110 | if s in s2: |
|
110 | if s in s2: | |
111 | r = s2[s] |
|
111 | r = s2[s] | |
112 | if ld == r or r == a: # no change or local is newer |
|
112 | if ld == r or r == a: # no change or local is newer | |
113 | sm[s] = l |
|
113 | sm[s] = l | |
114 | continue |
|
114 | continue | |
115 | elif ld == a: # other side changed |
|
115 | elif ld == a: # other side changed | |
116 | debug(s, "other changed, get", r) |
|
116 | debug(s, "other changed, get", r) | |
117 | wctx.sub(s).get(r) |
|
117 | wctx.sub(s).get(r) | |
118 | sm[s] = r |
|
118 | sm[s] = r | |
119 | elif ld[0] != r[0]: # sources differ |
|
119 | elif ld[0] != r[0]: # sources differ | |
120 | if repo.ui.promptchoice( |
|
120 | if repo.ui.promptchoice( | |
121 | _(' subrepository sources for %s differ\n' |
|
121 | _(' subrepository sources for %s differ\n' | |
122 | 'use (l)ocal source (%s) or (r)emote source (%s)?') |
|
122 | 'use (l)ocal source (%s) or (r)emote source (%s)?') | |
123 | % (s, l[0], r[0]), |
|
123 | % (s, l[0], r[0]), | |
124 | (_('&Local'), _('&Remote')), 0): |
|
124 | (_('&Local'), _('&Remote')), 0): | |
125 | debug(s, "prompt changed, get", r) |
|
125 | debug(s, "prompt changed, get", r) | |
126 | wctx.sub(s).get(r) |
|
126 | wctx.sub(s).get(r) | |
127 | sm[s] = r |
|
127 | sm[s] = r | |
128 | elif ld[1] == a[1]: # local side is unchanged |
|
128 | elif ld[1] == a[1]: # local side is unchanged | |
129 | debug(s, "other side changed, get", r) |
|
129 | debug(s, "other side changed, get", r) | |
130 | wctx.sub(s).get(r) |
|
130 | wctx.sub(s).get(r) | |
131 | sm[s] = r |
|
131 | sm[s] = r | |
132 | else: |
|
132 | else: | |
133 | debug(s, "both sides changed, merge with", r) |
|
133 | debug(s, "both sides changed, merge with", r) | |
134 | wctx.sub(s).merge(r) |
|
134 | wctx.sub(s).merge(r) | |
135 | sm[s] = l |
|
135 | sm[s] = l | |
136 | elif ld == a: # remote removed, local unchanged |
|
136 | elif ld == a: # remote removed, local unchanged | |
137 | debug(s, "remote removed, remove") |
|
137 | debug(s, "remote removed, remove") | |
138 | wctx.sub(s).remove() |
|
138 | wctx.sub(s).remove() | |
139 | else: |
|
139 | else: | |
140 | if repo.ui.promptchoice( |
|
140 | if repo.ui.promptchoice( | |
141 | _(' local changed subrepository %s which remote removed\n' |
|
141 | _(' local changed subrepository %s which remote removed\n' | |
142 | 'use (c)hanged version or (d)elete?') % s, |
|
142 | 'use (c)hanged version or (d)elete?') % s, | |
143 | (_('&Changed'), _('&Delete')), 0): |
|
143 | (_('&Changed'), _('&Delete')), 0): | |
144 | debug(s, "prompt remove") |
|
144 | debug(s, "prompt remove") | |
145 | wctx.sub(s).remove() |
|
145 | wctx.sub(s).remove() | |
146 |
|
146 | |||
147 | for s, r in s2.items(): |
|
147 | for s, r in s2.items(): | |
148 | if s in s1: |
|
148 | if s in s1: | |
149 | continue |
|
149 | continue | |
150 | elif s not in sa: |
|
150 | elif s not in sa: | |
151 | debug(s, "remote added, get", r) |
|
151 | debug(s, "remote added, get", r) | |
152 | mctx.sub(s).get(r) |
|
152 | mctx.sub(s).get(r) | |
153 | sm[s] = r |
|
153 | sm[s] = r | |
154 | elif r != sa[s]: |
|
154 | elif r != sa[s]: | |
155 | if repo.ui.promptchoice( |
|
155 | if repo.ui.promptchoice( | |
156 | _(' remote changed subrepository %s which local removed\n' |
|
156 | _(' remote changed subrepository %s which local removed\n' | |
157 | 'use (c)hanged version or (d)elete?') % s, |
|
157 | 'use (c)hanged version or (d)elete?') % s, | |
158 | (_('&Changed'), _('&Delete')), 0) == 0: |
|
158 | (_('&Changed'), _('&Delete')), 0) == 0: | |
159 | debug(s, "prompt recreate", r) |
|
159 | debug(s, "prompt recreate", r) | |
160 | wctx.sub(s).get(r) |
|
160 | wctx.sub(s).get(r) | |
161 | sm[s] = r |
|
161 | sm[s] = r | |
162 |
|
162 | |||
163 | # record merged .hgsubstate |
|
163 | # record merged .hgsubstate | |
164 | writestate(repo, sm) |
|
164 | writestate(repo, sm) | |
165 |
|
165 | |||
166 | def reporelpath(repo): |
|
166 | def reporelpath(repo): | |
167 | """return path to this (sub)repo as seen from outermost repo""" |
|
167 | """return path to this (sub)repo as seen from outermost repo""" | |
168 | parent = repo |
|
168 | parent = repo | |
169 | while hasattr(parent, '_subparent'): |
|
169 | while hasattr(parent, '_subparent'): | |
170 | parent = parent._subparent |
|
170 | parent = parent._subparent | |
171 | return repo.root[len(parent.root)+1:] |
|
171 | return repo.root[len(parent.root)+1:] | |
172 |
|
172 | |||
173 | def subrelpath(sub): |
|
173 | def subrelpath(sub): | |
174 | """return path to this subrepo as seen from outermost repo""" |
|
174 | """return path to this subrepo as seen from outermost repo""" | |
175 | if not hasattr(sub, '_repo'): |
|
175 | if not hasattr(sub, '_repo'): | |
176 | return sub._path |
|
176 | return sub._path | |
177 | return reporelpath(sub._repo) |
|
177 | return reporelpath(sub._repo) | |
178 |
|
178 | |||
179 | def _abssource(repo, push=False, abort=True): |
|
179 | def _abssource(repo, push=False, abort=True): | |
180 | """return pull/push path of repo - either based on parent repo .hgsub info |
|
180 | """return pull/push path of repo - either based on parent repo .hgsub info | |
181 | or on the top repo config. Abort or return None if no source found.""" |
|
181 | or on the top repo config. Abort or return None if no source found.""" | |
182 | if hasattr(repo, '_subparent'): |
|
182 | if hasattr(repo, '_subparent'): | |
183 | source = repo._subsource |
|
183 | source = repo._subsource | |
184 | if source.startswith('/') or '://' in source: |
|
184 | if source.startswith('/') or '://' in source: | |
185 | return source |
|
185 | return source | |
186 | parent = _abssource(repo._subparent, push, abort=False) |
|
186 | parent = _abssource(repo._subparent, push, abort=False) | |
187 | if parent: |
|
187 | if parent: | |
188 | if '://' in parent: |
|
188 | if '://' in parent: | |
189 | if parent[-1] == '/': |
|
189 | if parent[-1] == '/': | |
190 | parent = parent[:-1] |
|
190 | parent = parent[:-1] | |
191 | r = urlparse.urlparse(parent + '/' + source) |
|
191 | r = urlparse.urlparse(parent + '/' + source) | |
192 | r = urlparse.urlunparse((r[0], r[1], |
|
192 | r = urlparse.urlunparse((r[0], r[1], | |
193 | posixpath.normpath(r[2]), |
|
193 | posixpath.normpath(r[2]), | |
194 | r[3], r[4], r[5])) |
|
194 | r[3], r[4], r[5])) | |
195 | return r |
|
195 | return r | |
196 | else: # plain file system path |
|
196 | else: # plain file system path | |
197 | return posixpath.normpath(os.path.join(parent, repo._subsource)) |
|
197 | return posixpath.normpath(os.path.join(parent, repo._subsource)) | |
198 | else: # recursion reached top repo |
|
198 | else: # recursion reached top repo | |
199 | if hasattr(repo, '_subtoppath'): |
|
199 | if hasattr(repo, '_subtoppath'): | |
200 | return repo._subtoppath |
|
200 | return repo._subtoppath | |
201 | if push and repo.ui.config('paths', 'default-push'): |
|
201 | if push and repo.ui.config('paths', 'default-push'): | |
202 | return repo.ui.config('paths', 'default-push') |
|
202 | return repo.ui.config('paths', 'default-push') | |
203 | if repo.ui.config('paths', 'default'): |
|
203 | if repo.ui.config('paths', 'default'): | |
204 | return repo.ui.config('paths', 'default') |
|
204 | return repo.ui.config('paths', 'default') | |
205 | if abort: |
|
205 | if abort: | |
206 | raise util.Abort(_("default path for subrepository %s not found") % |
|
206 | raise util.Abort(_("default path for subrepository %s not found") % | |
207 | reporelpath(repo)) |
|
207 | reporelpath(repo)) | |
208 |
|
208 | |||
209 | def itersubrepos(ctx1, ctx2): |
|
209 | def itersubrepos(ctx1, ctx2): | |
210 | """find subrepos in ctx1 or ctx2""" |
|
210 | """find subrepos in ctx1 or ctx2""" | |
211 | # Create a (subpath, ctx) mapping where we prefer subpaths from |
|
211 | # Create a (subpath, ctx) mapping where we prefer subpaths from | |
212 | # ctx1. The subpaths from ctx2 are important when the .hgsub file |
|
212 | # ctx1. The subpaths from ctx2 are important when the .hgsub file | |
213 | # has been modified (in ctx2) but not yet committed (in ctx1). |
|
213 | # has been modified (in ctx2) but not yet committed (in ctx1). | |
214 | subpaths = dict.fromkeys(ctx2.substate, ctx2) |
|
214 | subpaths = dict.fromkeys(ctx2.substate, ctx2) | |
215 | subpaths.update(dict.fromkeys(ctx1.substate, ctx1)) |
|
215 | subpaths.update(dict.fromkeys(ctx1.substate, ctx1)) | |
216 | for subpath, ctx in sorted(subpaths.iteritems()): |
|
216 | for subpath, ctx in sorted(subpaths.iteritems()): | |
217 | yield subpath, ctx.sub(subpath) |
|
217 | yield subpath, ctx.sub(subpath) | |
218 |
|
218 | |||
219 | def subrepo(ctx, path): |
|
219 | def subrepo(ctx, path): | |
220 | """return instance of the right subrepo class for subrepo in path""" |
|
220 | """return instance of the right subrepo class for subrepo in path""" | |
221 | # subrepo inherently violates our import layering rules |
|
221 | # subrepo inherently violates our import layering rules | |
222 | # because it wants to make repo objects from deep inside the stack |
|
222 | # because it wants to make repo objects from deep inside the stack | |
223 | # so we manually delay the circular imports to not break |
|
223 | # so we manually delay the circular imports to not break | |
224 | # scripts that don't use our demand-loading |
|
224 | # scripts that don't use our demand-loading | |
225 | global hg |
|
225 | global hg | |
226 | import hg as h |
|
226 | import hg as h | |
227 | hg = h |
|
227 | hg = h | |
228 |
|
228 | |||
229 | util.path_auditor(ctx._repo.root)(path) |
|
229 | util.path_auditor(ctx._repo.root)(path) | |
230 | state = ctx.substate.get(path, nullstate) |
|
230 | state = ctx.substate.get(path, nullstate) | |
231 | if state[2] not in types: |
|
231 | if state[2] not in types: | |
232 | raise util.Abort(_('unknown subrepo type %s') % state[2]) |
|
232 | raise util.Abort(_('unknown subrepo type %s') % state[2]) | |
233 | return types[state[2]](ctx, path, state[:2]) |
|
233 | return types[state[2]](ctx, path, state[:2]) | |
234 |
|
234 | |||
235 | # subrepo classes need to implement the following abstract class: |
|
235 | # subrepo classes need to implement the following abstract class: | |
236 |
|
236 | |||
237 | class abstractsubrepo(object): |
|
237 | class abstractsubrepo(object): | |
238 |
|
238 | |||
239 | def dirty(self): |
|
239 | def dirty(self, ignoreupdate=False): | |
240 |
"""returns true if the dirstate of the subrepo does not |
|
240 | """returns true if the dirstate of the subrepo is dirty or does not | |
241 | current stored state |
|
241 | match current stored state. If ignoreupdate is true, only check | |
|
242 | whether the subrepo has uncommitted changes in its dirstate. | |||
242 | """ |
|
243 | """ | |
243 | raise NotImplementedError |
|
244 | raise NotImplementedError | |
244 |
|
245 | |||
245 | def checknested(self, path): |
|
246 | def checknested(self, path): | |
246 | """check if path is a subrepository within this repository""" |
|
247 | """check if path is a subrepository within this repository""" | |
247 | return False |
|
248 | return False | |
248 |
|
249 | |||
249 | def commit(self, text, user, date): |
|
250 | def commit(self, text, user, date): | |
250 | """commit the current changes to the subrepo with the given |
|
251 | """commit the current changes to the subrepo with the given | |
251 | log message. Use given user and date if possible. Return the |
|
252 | log message. Use given user and date if possible. Return the | |
252 | new state of the subrepo. |
|
253 | new state of the subrepo. | |
253 | """ |
|
254 | """ | |
254 | raise NotImplementedError |
|
255 | raise NotImplementedError | |
255 |
|
256 | |||
256 | def remove(self): |
|
257 | def remove(self): | |
257 | """remove the subrepo |
|
258 | """remove the subrepo | |
258 |
|
259 | |||
259 | (should verify the dirstate is not dirty first) |
|
260 | (should verify the dirstate is not dirty first) | |
260 | """ |
|
261 | """ | |
261 | raise NotImplementedError |
|
262 | raise NotImplementedError | |
262 |
|
263 | |||
263 | def get(self, state): |
|
264 | def get(self, state): | |
264 | """run whatever commands are needed to put the subrepo into |
|
265 | """run whatever commands are needed to put the subrepo into | |
265 | this state |
|
266 | this state | |
266 | """ |
|
267 | """ | |
267 | raise NotImplementedError |
|
268 | raise NotImplementedError | |
268 |
|
269 | |||
269 | def merge(self, state): |
|
270 | def merge(self, state): | |
270 | """merge currently-saved state with the new state.""" |
|
271 | """merge currently-saved state with the new state.""" | |
271 | raise NotImplementedError |
|
272 | raise NotImplementedError | |
272 |
|
273 | |||
273 | def push(self, force): |
|
274 | def push(self, force): | |
274 | """perform whatever action is analogous to 'hg push' |
|
275 | """perform whatever action is analogous to 'hg push' | |
275 |
|
276 | |||
276 | This may be a no-op on some systems. |
|
277 | This may be a no-op on some systems. | |
277 | """ |
|
278 | """ | |
278 | raise NotImplementedError |
|
279 | raise NotImplementedError | |
279 |
|
280 | |||
280 | def add(self, ui, match, dryrun, prefix): |
|
281 | def add(self, ui, match, dryrun, prefix): | |
281 | return [] |
|
282 | return [] | |
282 |
|
283 | |||
283 | def status(self, rev2, **opts): |
|
284 | def status(self, rev2, **opts): | |
284 | return [], [], [], [], [], [], [] |
|
285 | return [], [], [], [], [], [], [] | |
285 |
|
286 | |||
286 | def diff(self, diffopts, node2, match, prefix, **opts): |
|
287 | def diff(self, diffopts, node2, match, prefix, **opts): | |
287 | pass |
|
288 | pass | |
288 |
|
289 | |||
289 | def outgoing(self, ui, dest, opts): |
|
290 | def outgoing(self, ui, dest, opts): | |
290 | return 1 |
|
291 | return 1 | |
291 |
|
292 | |||
292 | def incoming(self, ui, source, opts): |
|
293 | def incoming(self, ui, source, opts): | |
293 | return 1 |
|
294 | return 1 | |
294 |
|
295 | |||
295 | def files(self): |
|
296 | def files(self): | |
296 | """return filename iterator""" |
|
297 | """return filename iterator""" | |
297 | raise NotImplementedError |
|
298 | raise NotImplementedError | |
298 |
|
299 | |||
299 | def filedata(self, name): |
|
300 | def filedata(self, name): | |
300 | """return file data""" |
|
301 | """return file data""" | |
301 | raise NotImplementedError |
|
302 | raise NotImplementedError | |
302 |
|
303 | |||
303 | def fileflags(self, name): |
|
304 | def fileflags(self, name): | |
304 | """return file flags""" |
|
305 | """return file flags""" | |
305 | return '' |
|
306 | return '' | |
306 |
|
307 | |||
307 | def archive(self, ui, archiver, prefix): |
|
308 | def archive(self, ui, archiver, prefix): | |
308 | files = self.files() |
|
309 | files = self.files() | |
309 | total = len(files) |
|
310 | total = len(files) | |
310 | relpath = subrelpath(self) |
|
311 | relpath = subrelpath(self) | |
311 | ui.progress(_('archiving (%s)') % relpath, 0, |
|
312 | ui.progress(_('archiving (%s)') % relpath, 0, | |
312 | unit=_('files'), total=total) |
|
313 | unit=_('files'), total=total) | |
313 | for i, name in enumerate(files): |
|
314 | for i, name in enumerate(files): | |
314 | flags = self.fileflags(name) |
|
315 | flags = self.fileflags(name) | |
315 | mode = 'x' in flags and 0755 or 0644 |
|
316 | mode = 'x' in flags and 0755 or 0644 | |
316 | symlink = 'l' in flags |
|
317 | symlink = 'l' in flags | |
317 | archiver.addfile(os.path.join(prefix, self._path, name), |
|
318 | archiver.addfile(os.path.join(prefix, self._path, name), | |
318 | mode, symlink, self.filedata(name)) |
|
319 | mode, symlink, self.filedata(name)) | |
319 | ui.progress(_('archiving (%s)') % relpath, i + 1, |
|
320 | ui.progress(_('archiving (%s)') % relpath, i + 1, | |
320 | unit=_('files'), total=total) |
|
321 | unit=_('files'), total=total) | |
321 | ui.progress(_('archiving (%s)') % relpath, None) |
|
322 | ui.progress(_('archiving (%s)') % relpath, None) | |
322 |
|
323 | |||
323 |
|
324 | |||
324 | class hgsubrepo(abstractsubrepo): |
|
325 | class hgsubrepo(abstractsubrepo): | |
325 | def __init__(self, ctx, path, state): |
|
326 | def __init__(self, ctx, path, state): | |
326 | self._path = path |
|
327 | self._path = path | |
327 | self._state = state |
|
328 | self._state = state | |
328 | r = ctx._repo |
|
329 | r = ctx._repo | |
329 | root = r.wjoin(path) |
|
330 | root = r.wjoin(path) | |
330 | create = False |
|
331 | create = False | |
331 | if not os.path.exists(os.path.join(root, '.hg')): |
|
332 | if not os.path.exists(os.path.join(root, '.hg')): | |
332 | create = True |
|
333 | create = True | |
333 | util.makedirs(root) |
|
334 | util.makedirs(root) | |
334 | self._repo = hg.repository(r.ui, root, create=create) |
|
335 | self._repo = hg.repository(r.ui, root, create=create) | |
335 | self._repo._subparent = r |
|
336 | self._repo._subparent = r | |
336 | self._repo._subsource = state[0] |
|
337 | self._repo._subsource = state[0] | |
337 |
|
338 | |||
338 | if create: |
|
339 | if create: | |
339 | fp = self._repo.opener("hgrc", "w", text=True) |
|
340 | fp = self._repo.opener("hgrc", "w", text=True) | |
340 | fp.write('[paths]\n') |
|
341 | fp.write('[paths]\n') | |
341 |
|
342 | |||
342 | def addpathconfig(key, value): |
|
343 | def addpathconfig(key, value): | |
343 | if value: |
|
344 | if value: | |
344 | fp.write('%s = %s\n' % (key, value)) |
|
345 | fp.write('%s = %s\n' % (key, value)) | |
345 | self._repo.ui.setconfig('paths', key, value) |
|
346 | self._repo.ui.setconfig('paths', key, value) | |
346 |
|
347 | |||
347 | defpath = _abssource(self._repo, abort=False) |
|
348 | defpath = _abssource(self._repo, abort=False) | |
348 | defpushpath = _abssource(self._repo, True, abort=False) |
|
349 | defpushpath = _abssource(self._repo, True, abort=False) | |
349 | addpathconfig('default', defpath) |
|
350 | addpathconfig('default', defpath) | |
350 | if defpath != defpushpath: |
|
351 | if defpath != defpushpath: | |
351 | addpathconfig('default-push', defpushpath) |
|
352 | addpathconfig('default-push', defpushpath) | |
352 | fp.close() |
|
353 | fp.close() | |
353 |
|
354 | |||
354 | def add(self, ui, match, dryrun, prefix): |
|
355 | def add(self, ui, match, dryrun, prefix): | |
355 | return cmdutil.add(ui, self._repo, match, dryrun, True, |
|
356 | return cmdutil.add(ui, self._repo, match, dryrun, True, | |
356 | os.path.join(prefix, self._path)) |
|
357 | os.path.join(prefix, self._path)) | |
357 |
|
358 | |||
358 | def status(self, rev2, **opts): |
|
359 | def status(self, rev2, **opts): | |
359 | try: |
|
360 | try: | |
360 | rev1 = self._state[1] |
|
361 | rev1 = self._state[1] | |
361 | ctx1 = self._repo[rev1] |
|
362 | ctx1 = self._repo[rev1] | |
362 | ctx2 = self._repo[rev2] |
|
363 | ctx2 = self._repo[rev2] | |
363 | return self._repo.status(ctx1, ctx2, **opts) |
|
364 | return self._repo.status(ctx1, ctx2, **opts) | |
364 | except error.RepoLookupError, inst: |
|
365 | except error.RepoLookupError, inst: | |
365 | self._repo.ui.warn(_('warning: error "%s" in subrepository "%s"\n') |
|
366 | self._repo.ui.warn(_('warning: error "%s" in subrepository "%s"\n') | |
366 | % (inst, subrelpath(self))) |
|
367 | % (inst, subrelpath(self))) | |
367 | return [], [], [], [], [], [], [] |
|
368 | return [], [], [], [], [], [], [] | |
368 |
|
369 | |||
369 | def diff(self, diffopts, node2, match, prefix, **opts): |
|
370 | def diff(self, diffopts, node2, match, prefix, **opts): | |
370 | try: |
|
371 | try: | |
371 | node1 = node.bin(self._state[1]) |
|
372 | node1 = node.bin(self._state[1]) | |
372 | # We currently expect node2 to come from substate and be |
|
373 | # We currently expect node2 to come from substate and be | |
373 | # in hex format |
|
374 | # in hex format | |
374 | if node2 is not None: |
|
375 | if node2 is not None: | |
375 | node2 = node.bin(node2) |
|
376 | node2 = node.bin(node2) | |
376 | cmdutil.diffordiffstat(self._repo.ui, self._repo, diffopts, |
|
377 | cmdutil.diffordiffstat(self._repo.ui, self._repo, diffopts, | |
377 | node1, node2, match, |
|
378 | node1, node2, match, | |
378 | prefix=os.path.join(prefix, self._path), |
|
379 | prefix=os.path.join(prefix, self._path), | |
379 | listsubrepos=True, **opts) |
|
380 | listsubrepos=True, **opts) | |
380 | except error.RepoLookupError, inst: |
|
381 | except error.RepoLookupError, inst: | |
381 | self._repo.ui.warn(_('warning: error "%s" in subrepository "%s"\n') |
|
382 | self._repo.ui.warn(_('warning: error "%s" in subrepository "%s"\n') | |
382 | % (inst, subrelpath(self))) |
|
383 | % (inst, subrelpath(self))) | |
383 |
|
384 | |||
384 | def archive(self, ui, archiver, prefix): |
|
385 | def archive(self, ui, archiver, prefix): | |
385 | abstractsubrepo.archive(self, ui, archiver, prefix) |
|
386 | abstractsubrepo.archive(self, ui, archiver, prefix) | |
386 |
|
387 | |||
387 | rev = self._state[1] |
|
388 | rev = self._state[1] | |
388 | ctx = self._repo[rev] |
|
389 | ctx = self._repo[rev] | |
389 | for subpath in ctx.substate: |
|
390 | for subpath in ctx.substate: | |
390 | s = subrepo(ctx, subpath) |
|
391 | s = subrepo(ctx, subpath) | |
391 | s.archive(ui, archiver, os.path.join(prefix, self._path)) |
|
392 | s.archive(ui, archiver, os.path.join(prefix, self._path)) | |
392 |
|
393 | |||
393 | def dirty(self): |
|
394 | def dirty(self, ignoreupdate=False): | |
394 | r = self._state[1] |
|
395 | r = self._state[1] | |
395 | if r == '': |
|
396 | if r == '' and not ignoreupdate: # no state recorded | |
396 | return True |
|
397 | return True | |
397 | w = self._repo[None] |
|
398 | w = self._repo[None] | |
398 |
|
|
399 | # version checked out changed? | |
|
400 | if w.p1() != self._repo[r] and not ignoreupdate: | |||
399 | return True |
|
401 | return True | |
400 | return w.dirty() # working directory changed |
|
402 | return w.dirty() # working directory changed | |
401 |
|
403 | |||
402 | def checknested(self, path): |
|
404 | def checknested(self, path): | |
403 | return self._repo._checknested(self._repo.wjoin(path)) |
|
405 | return self._repo._checknested(self._repo.wjoin(path)) | |
404 |
|
406 | |||
405 | def commit(self, text, user, date): |
|
407 | def commit(self, text, user, date): | |
406 | self._repo.ui.debug("committing subrepo %s\n" % subrelpath(self)) |
|
408 | self._repo.ui.debug("committing subrepo %s\n" % subrelpath(self)) | |
407 | n = self._repo.commit(text, user, date) |
|
409 | n = self._repo.commit(text, user, date) | |
408 | if not n: |
|
410 | if not n: | |
409 | return self._repo['.'].hex() # different version checked out |
|
411 | return self._repo['.'].hex() # different version checked out | |
410 | return node.hex(n) |
|
412 | return node.hex(n) | |
411 |
|
413 | |||
412 | def remove(self): |
|
414 | def remove(self): | |
413 | # we can't fully delete the repository as it may contain |
|
415 | # we can't fully delete the repository as it may contain | |
414 | # local-only history |
|
416 | # local-only history | |
415 | self._repo.ui.note(_('removing subrepo %s\n') % subrelpath(self)) |
|
417 | self._repo.ui.note(_('removing subrepo %s\n') % subrelpath(self)) | |
416 | hg.clean(self._repo, node.nullid, False) |
|
418 | hg.clean(self._repo, node.nullid, False) | |
417 |
|
419 | |||
418 | def _get(self, state): |
|
420 | def _get(self, state): | |
419 | source, revision, kind = state |
|
421 | source, revision, kind = state | |
420 | try: |
|
422 | try: | |
421 | self._repo.lookup(revision) |
|
423 | self._repo.lookup(revision) | |
422 | except error.RepoError: |
|
424 | except error.RepoError: | |
423 | self._repo._subsource = source |
|
425 | self._repo._subsource = source | |
424 | srcurl = _abssource(self._repo) |
|
426 | srcurl = _abssource(self._repo) | |
425 | self._repo.ui.status(_('pulling subrepo %s from %s\n') |
|
427 | self._repo.ui.status(_('pulling subrepo %s from %s\n') | |
426 | % (subrelpath(self), srcurl)) |
|
428 | % (subrelpath(self), srcurl)) | |
427 | other = hg.repository(self._repo.ui, srcurl) |
|
429 | other = hg.repository(self._repo.ui, srcurl) | |
428 | self._repo.pull(other) |
|
430 | self._repo.pull(other) | |
429 |
|
431 | |||
430 | def get(self, state): |
|
432 | def get(self, state): | |
431 | self._get(state) |
|
433 | self._get(state) | |
432 | source, revision, kind = state |
|
434 | source, revision, kind = state | |
433 | self._repo.ui.debug("getting subrepo %s\n" % self._path) |
|
435 | self._repo.ui.debug("getting subrepo %s\n" % self._path) | |
434 | hg.clean(self._repo, revision, False) |
|
436 | hg.clean(self._repo, revision, False) | |
435 |
|
437 | |||
436 | def merge(self, state): |
|
438 | def merge(self, state): | |
437 | self._get(state) |
|
439 | self._get(state) | |
438 | cur = self._repo['.'] |
|
440 | cur = self._repo['.'] | |
439 | dst = self._repo[state[1]] |
|
441 | dst = self._repo[state[1]] | |
440 | anc = dst.ancestor(cur) |
|
442 | anc = dst.ancestor(cur) | |
441 | if anc == cur: |
|
443 | if anc == cur: | |
442 | self._repo.ui.debug("updating subrepo %s\n" % subrelpath(self)) |
|
444 | self._repo.ui.debug("updating subrepo %s\n" % subrelpath(self)) | |
443 | hg.update(self._repo, state[1]) |
|
445 | hg.update(self._repo, state[1]) | |
444 | elif anc == dst: |
|
446 | elif anc == dst: | |
445 | self._repo.ui.debug("skipping subrepo %s\n" % subrelpath(self)) |
|
447 | self._repo.ui.debug("skipping subrepo %s\n" % subrelpath(self)) | |
446 | else: |
|
448 | else: | |
447 | self._repo.ui.debug("merging subrepo %s\n" % subrelpath(self)) |
|
449 | self._repo.ui.debug("merging subrepo %s\n" % subrelpath(self)) | |
448 | hg.merge(self._repo, state[1], remind=False) |
|
450 | hg.merge(self._repo, state[1], remind=False) | |
449 |
|
451 | |||
450 | def push(self, force): |
|
452 | def push(self, force): | |
451 | # push subrepos depth-first for coherent ordering |
|
453 | # push subrepos depth-first for coherent ordering | |
452 | c = self._repo[''] |
|
454 | c = self._repo[''] | |
453 | subs = c.substate # only repos that are committed |
|
455 | subs = c.substate # only repos that are committed | |
454 | for s in sorted(subs): |
|
456 | for s in sorted(subs): | |
455 | if not c.sub(s).push(force): |
|
457 | if not c.sub(s).push(force): | |
456 | return False |
|
458 | return False | |
457 |
|
459 | |||
458 | dsturl = _abssource(self._repo, True) |
|
460 | dsturl = _abssource(self._repo, True) | |
459 | self._repo.ui.status(_('pushing subrepo %s to %s\n') % |
|
461 | self._repo.ui.status(_('pushing subrepo %s to %s\n') % | |
460 | (subrelpath(self), dsturl)) |
|
462 | (subrelpath(self), dsturl)) | |
461 | other = hg.repository(self._repo.ui, dsturl) |
|
463 | other = hg.repository(self._repo.ui, dsturl) | |
462 | return self._repo.push(other, force) |
|
464 | return self._repo.push(other, force) | |
463 |
|
465 | |||
464 | def outgoing(self, ui, dest, opts): |
|
466 | def outgoing(self, ui, dest, opts): | |
465 | return hg.outgoing(ui, self._repo, _abssource(self._repo, True), opts) |
|
467 | return hg.outgoing(ui, self._repo, _abssource(self._repo, True), opts) | |
466 |
|
468 | |||
467 | def incoming(self, ui, source, opts): |
|
469 | def incoming(self, ui, source, opts): | |
468 | return hg.incoming(ui, self._repo, _abssource(self._repo, False), opts) |
|
470 | return hg.incoming(ui, self._repo, _abssource(self._repo, False), opts) | |
469 |
|
471 | |||
470 | def files(self): |
|
472 | def files(self): | |
471 | rev = self._state[1] |
|
473 | rev = self._state[1] | |
472 | ctx = self._repo[rev] |
|
474 | ctx = self._repo[rev] | |
473 | return ctx.manifest() |
|
475 | return ctx.manifest() | |
474 |
|
476 | |||
475 | def filedata(self, name): |
|
477 | def filedata(self, name): | |
476 | rev = self._state[1] |
|
478 | rev = self._state[1] | |
477 | return self._repo[rev][name].data() |
|
479 | return self._repo[rev][name].data() | |
478 |
|
480 | |||
479 | def fileflags(self, name): |
|
481 | def fileflags(self, name): | |
480 | rev = self._state[1] |
|
482 | rev = self._state[1] | |
481 | ctx = self._repo[rev] |
|
483 | ctx = self._repo[rev] | |
482 | return ctx.flags(name) |
|
484 | return ctx.flags(name) | |
483 |
|
485 | |||
484 |
|
486 | |||
485 | class svnsubrepo(abstractsubrepo): |
|
487 | class svnsubrepo(abstractsubrepo): | |
486 | def __init__(self, ctx, path, state): |
|
488 | def __init__(self, ctx, path, state): | |
487 | self._path = path |
|
489 | self._path = path | |
488 | self._state = state |
|
490 | self._state = state | |
489 | self._ctx = ctx |
|
491 | self._ctx = ctx | |
490 | self._ui = ctx._repo.ui |
|
492 | self._ui = ctx._repo.ui | |
491 |
|
493 | |||
492 | def _svncommand(self, commands, filename=''): |
|
494 | def _svncommand(self, commands, filename=''): | |
493 | path = os.path.join(self._ctx._repo.origroot, self._path, filename) |
|
495 | path = os.path.join(self._ctx._repo.origroot, self._path, filename) | |
494 | cmd = ['svn'] + commands + [path] |
|
496 | cmd = ['svn'] + commands + [path] | |
495 | env = dict(os.environ) |
|
497 | env = dict(os.environ) | |
496 | # Avoid localized output, preserve current locale for everything else. |
|
498 | # Avoid localized output, preserve current locale for everything else. | |
497 | env['LC_MESSAGES'] = 'C' |
|
499 | env['LC_MESSAGES'] = 'C' | |
498 | p = subprocess.Popen(cmd, bufsize=-1, close_fds=util.closefds, |
|
500 | p = subprocess.Popen(cmd, bufsize=-1, close_fds=util.closefds, | |
499 | stdout=subprocess.PIPE, stderr=subprocess.PIPE, |
|
501 | stdout=subprocess.PIPE, stderr=subprocess.PIPE, | |
500 | universal_newlines=True, env=env) |
|
502 | universal_newlines=True, env=env) | |
501 | stdout, stderr = p.communicate() |
|
503 | stdout, stderr = p.communicate() | |
502 | stderr = stderr.strip() |
|
504 | stderr = stderr.strip() | |
503 | if stderr: |
|
505 | if stderr: | |
504 | raise util.Abort(stderr) |
|
506 | raise util.Abort(stderr) | |
505 | return stdout |
|
507 | return stdout | |
506 |
|
508 | |||
507 | def _wcrev(self): |
|
509 | def _wcrev(self): | |
508 | output = self._svncommand(['info', '--xml']) |
|
510 | output = self._svncommand(['info', '--xml']) | |
509 | doc = xml.dom.minidom.parseString(output) |
|
511 | doc = xml.dom.minidom.parseString(output) | |
510 | entries = doc.getElementsByTagName('entry') |
|
512 | entries = doc.getElementsByTagName('entry') | |
511 | if not entries: |
|
513 | if not entries: | |
512 | return '0' |
|
514 | return '0' | |
513 | return str(entries[0].getAttribute('revision')) or '0' |
|
515 | return str(entries[0].getAttribute('revision')) or '0' | |
514 |
|
516 | |||
515 | def _wcchanged(self): |
|
517 | def _wcchanged(self): | |
516 | """Return (changes, extchanges) where changes is True |
|
518 | """Return (changes, extchanges) where changes is True | |
517 | if the working directory was changed, and extchanges is |
|
519 | if the working directory was changed, and extchanges is | |
518 | True if any of these changes concern an external entry. |
|
520 | True if any of these changes concern an external entry. | |
519 | """ |
|
521 | """ | |
520 | output = self._svncommand(['status', '--xml']) |
|
522 | output = self._svncommand(['status', '--xml']) | |
521 | externals, changes = [], [] |
|
523 | externals, changes = [], [] | |
522 | doc = xml.dom.minidom.parseString(output) |
|
524 | doc = xml.dom.minidom.parseString(output) | |
523 | for e in doc.getElementsByTagName('entry'): |
|
525 | for e in doc.getElementsByTagName('entry'): | |
524 | s = e.getElementsByTagName('wc-status') |
|
526 | s = e.getElementsByTagName('wc-status') | |
525 | if not s: |
|
527 | if not s: | |
526 | continue |
|
528 | continue | |
527 | item = s[0].getAttribute('item') |
|
529 | item = s[0].getAttribute('item') | |
528 | props = s[0].getAttribute('props') |
|
530 | props = s[0].getAttribute('props') | |
529 | path = e.getAttribute('path') |
|
531 | path = e.getAttribute('path') | |
530 | if item == 'external': |
|
532 | if item == 'external': | |
531 | externals.append(path) |
|
533 | externals.append(path) | |
532 | if (item not in ('', 'normal', 'unversioned', 'external') |
|
534 | if (item not in ('', 'normal', 'unversioned', 'external') | |
533 | or props not in ('', 'none')): |
|
535 | or props not in ('', 'none')): | |
534 | changes.append(path) |
|
536 | changes.append(path) | |
535 | for path in changes: |
|
537 | for path in changes: | |
536 | for ext in externals: |
|
538 | for ext in externals: | |
537 | if path == ext or path.startswith(ext + os.sep): |
|
539 | if path == ext or path.startswith(ext + os.sep): | |
538 | return True, True |
|
540 | return True, True | |
539 | return bool(changes), False |
|
541 | return bool(changes), False | |
540 |
|
542 | |||
541 | def dirty(self): |
|
543 | def dirty(self, ignoreupdate=False): | |
542 |
if |
|
544 | if not self._wcchanged()[0]: | |
543 | return False |
|
545 | if self._wcrev() == self._state[1] and not ignoreupdate: | |
|
546 | return False | |||
544 | return True |
|
547 | return True | |
545 |
|
548 | |||
546 | def commit(self, text, user, date): |
|
549 | def commit(self, text, user, date): | |
547 | # user and date are out of our hands since svn is centralized |
|
550 | # user and date are out of our hands since svn is centralized | |
548 | changed, extchanged = self._wcchanged() |
|
551 | changed, extchanged = self._wcchanged() | |
549 | if not changed: |
|
552 | if not changed: | |
550 | return self._wcrev() |
|
553 | return self._wcrev() | |
551 | if extchanged: |
|
554 | if extchanged: | |
552 | # Do not try to commit externals |
|
555 | # Do not try to commit externals | |
553 | raise util.Abort(_('cannot commit svn externals')) |
|
556 | raise util.Abort(_('cannot commit svn externals')) | |
554 | commitinfo = self._svncommand(['commit', '-m', text]) |
|
557 | commitinfo = self._svncommand(['commit', '-m', text]) | |
555 | self._ui.status(commitinfo) |
|
558 | self._ui.status(commitinfo) | |
556 | newrev = re.search('Committed revision ([0-9]+).', commitinfo) |
|
559 | newrev = re.search('Committed revision ([0-9]+).', commitinfo) | |
557 | if not newrev: |
|
560 | if not newrev: | |
558 | raise util.Abort(commitinfo.splitlines()[-1]) |
|
561 | raise util.Abort(commitinfo.splitlines()[-1]) | |
559 | newrev = newrev.groups()[0] |
|
562 | newrev = newrev.groups()[0] | |
560 | self._ui.status(self._svncommand(['update', '-r', newrev])) |
|
563 | self._ui.status(self._svncommand(['update', '-r', newrev])) | |
561 | return newrev |
|
564 | return newrev | |
562 |
|
565 | |||
563 | def remove(self): |
|
566 | def remove(self): | |
564 | if self.dirty(): |
|
567 | if self.dirty(): | |
565 | self._ui.warn(_('not removing repo %s because ' |
|
568 | self._ui.warn(_('not removing repo %s because ' | |
566 | 'it has changes.\n' % self._path)) |
|
569 | 'it has changes.\n' % self._path)) | |
567 | return |
|
570 | return | |
568 | self._ui.note(_('removing subrepo %s\n') % self._path) |
|
571 | self._ui.note(_('removing subrepo %s\n') % self._path) | |
569 |
|
572 | |||
570 | def onerror(function, path, excinfo): |
|
573 | def onerror(function, path, excinfo): | |
571 | if function is not os.remove: |
|
574 | if function is not os.remove: | |
572 | raise |
|
575 | raise | |
573 | # read-only files cannot be unlinked under Windows |
|
576 | # read-only files cannot be unlinked under Windows | |
574 | s = os.stat(path) |
|
577 | s = os.stat(path) | |
575 | if (s.st_mode & stat.S_IWRITE) != 0: |
|
578 | if (s.st_mode & stat.S_IWRITE) != 0: | |
576 | raise |
|
579 | raise | |
577 | os.chmod(path, stat.S_IMODE(s.st_mode) | stat.S_IWRITE) |
|
580 | os.chmod(path, stat.S_IMODE(s.st_mode) | stat.S_IWRITE) | |
578 | os.remove(path) |
|
581 | os.remove(path) | |
579 |
|
582 | |||
580 | path = self._ctx._repo.wjoin(self._path) |
|
583 | path = self._ctx._repo.wjoin(self._path) | |
581 | shutil.rmtree(path, onerror=onerror) |
|
584 | shutil.rmtree(path, onerror=onerror) | |
582 | try: |
|
585 | try: | |
583 | os.removedirs(os.path.dirname(path)) |
|
586 | os.removedirs(os.path.dirname(path)) | |
584 | except OSError: |
|
587 | except OSError: | |
585 | pass |
|
588 | pass | |
586 |
|
589 | |||
587 | def get(self, state): |
|
590 | def get(self, state): | |
588 | status = self._svncommand(['checkout', state[0], '--revision', state[1]]) |
|
591 | status = self._svncommand(['checkout', state[0], '--revision', state[1]]) | |
589 | if not re.search('Checked out revision [0-9]+.', status): |
|
592 | if not re.search('Checked out revision [0-9]+.', status): | |
590 | raise util.Abort(status.splitlines()[-1]) |
|
593 | raise util.Abort(status.splitlines()[-1]) | |
591 | self._ui.status(status) |
|
594 | self._ui.status(status) | |
592 |
|
595 | |||
593 | def merge(self, state): |
|
596 | def merge(self, state): | |
594 | old = int(self._state[1]) |
|
597 | old = int(self._state[1]) | |
595 | new = int(state[1]) |
|
598 | new = int(state[1]) | |
596 | if new > old: |
|
599 | if new > old: | |
597 | self.get(state) |
|
600 | self.get(state) | |
598 |
|
601 | |||
599 | def push(self, force): |
|
602 | def push(self, force): | |
600 | # push is a no-op for SVN |
|
603 | # push is a no-op for SVN | |
601 | return True |
|
604 | return True | |
602 |
|
605 | |||
603 | def files(self): |
|
606 | def files(self): | |
604 | output = self._svncommand(['list']) |
|
607 | output = self._svncommand(['list']) | |
605 | # This works because svn forbids \n in filenames. |
|
608 | # This works because svn forbids \n in filenames. | |
606 | return output.splitlines() |
|
609 | return output.splitlines() | |
607 |
|
610 | |||
608 | def filedata(self, name): |
|
611 | def filedata(self, name): | |
609 | return self._svncommand(['cat'], name) |
|
612 | return self._svncommand(['cat'], name) | |
610 |
|
613 | |||
611 |
|
614 | |||
612 | class gitsubrepo(abstractsubrepo): |
|
615 | class gitsubrepo(abstractsubrepo): | |
613 | def __init__(self, ctx, path, state): |
|
616 | def __init__(self, ctx, path, state): | |
614 | # TODO add git version check. |
|
617 | # TODO add git version check. | |
615 | self._state = state |
|
618 | self._state = state | |
616 | self._ctx = ctx |
|
619 | self._ctx = ctx | |
617 | self._relpath = path |
|
620 | self._relpath = path | |
618 | self._path = ctx._repo.wjoin(path) |
|
621 | self._path = ctx._repo.wjoin(path) | |
619 | self._ui = ctx._repo.ui |
|
622 | self._ui = ctx._repo.ui | |
620 |
|
623 | |||
621 | def _gitcommand(self, commands, env=None, stream=False): |
|
624 | def _gitcommand(self, commands, env=None, stream=False): | |
622 | return self._gitdir(commands, env=env, stream=stream)[0] |
|
625 | return self._gitdir(commands, env=env, stream=stream)[0] | |
623 |
|
626 | |||
624 | def _gitdir(self, commands, env=None, stream=False): |
|
627 | def _gitdir(self, commands, env=None, stream=False): | |
625 | return self._gitnodir(commands, env=env, stream=stream, cwd=self._path) |
|
628 | return self._gitnodir(commands, env=env, stream=stream, cwd=self._path) | |
626 |
|
629 | |||
627 | def _gitnodir(self, commands, env=None, stream=False, cwd=None): |
|
630 | def _gitnodir(self, commands, env=None, stream=False, cwd=None): | |
628 | """Calls the git command |
|
631 | """Calls the git command | |
629 |
|
632 | |||
630 | The methods tries to call the git command. versions previor to 1.6.0 |
|
633 | The methods tries to call the git command. versions previor to 1.6.0 | |
631 | are not supported and very probably fail. |
|
634 | are not supported and very probably fail. | |
632 | """ |
|
635 | """ | |
633 | self._ui.debug('%s: git %s\n' % (self._relpath, ' '.join(commands))) |
|
636 | self._ui.debug('%s: git %s\n' % (self._relpath, ' '.join(commands))) | |
634 | # unless ui.quiet is set, print git's stderr, |
|
637 | # unless ui.quiet is set, print git's stderr, | |
635 | # which is mostly progress and useful info |
|
638 | # which is mostly progress and useful info | |
636 | errpipe = None |
|
639 | errpipe = None | |
637 | if self._ui.quiet: |
|
640 | if self._ui.quiet: | |
638 | errpipe = open(os.devnull, 'w') |
|
641 | errpipe = open(os.devnull, 'w') | |
639 | p = subprocess.Popen(['git'] + commands, bufsize=-1, cwd=cwd, env=env, |
|
642 | p = subprocess.Popen(['git'] + commands, bufsize=-1, cwd=cwd, env=env, | |
640 | close_fds=util.closefds, |
|
643 | close_fds=util.closefds, | |
641 | stdout=subprocess.PIPE, stderr=errpipe) |
|
644 | stdout=subprocess.PIPE, stderr=errpipe) | |
642 | if stream: |
|
645 | if stream: | |
643 | return p.stdout, None |
|
646 | return p.stdout, None | |
644 |
|
647 | |||
645 | retdata = p.stdout.read().strip() |
|
648 | retdata = p.stdout.read().strip() | |
646 | # wait for the child to exit to avoid race condition. |
|
649 | # wait for the child to exit to avoid race condition. | |
647 | p.wait() |
|
650 | p.wait() | |
648 |
|
651 | |||
649 | if p.returncode != 0 and p.returncode != 1: |
|
652 | if p.returncode != 0 and p.returncode != 1: | |
650 | # there are certain error codes that are ok |
|
653 | # there are certain error codes that are ok | |
651 | command = commands[0] |
|
654 | command = commands[0] | |
652 | if command in ('cat-file', 'symbolic-ref'): |
|
655 | if command in ('cat-file', 'symbolic-ref'): | |
653 | return retdata, p.returncode |
|
656 | return retdata, p.returncode | |
654 | # for all others, abort |
|
657 | # for all others, abort | |
655 | raise util.Abort('git %s error %d in %s' % |
|
658 | raise util.Abort('git %s error %d in %s' % | |
656 | (command, p.returncode, self._relpath)) |
|
659 | (command, p.returncode, self._relpath)) | |
657 |
|
660 | |||
658 | return retdata, p.returncode |
|
661 | return retdata, p.returncode | |
659 |
|
662 | |||
660 | def _gitstate(self): |
|
663 | def _gitstate(self): | |
661 | return self._gitcommand(['rev-parse', 'HEAD']) |
|
664 | return self._gitcommand(['rev-parse', 'HEAD']) | |
662 |
|
665 | |||
663 | def _gitcurrentbranch(self): |
|
666 | def _gitcurrentbranch(self): | |
664 | current, err = self._gitdir(['symbolic-ref', 'HEAD', '--quiet']) |
|
667 | current, err = self._gitdir(['symbolic-ref', 'HEAD', '--quiet']) | |
665 | if err: |
|
668 | if err: | |
666 | current = None |
|
669 | current = None | |
667 | return current |
|
670 | return current | |
668 |
|
671 | |||
669 | def _githavelocally(self, revision): |
|
672 | def _githavelocally(self, revision): | |
670 | out, code = self._gitdir(['cat-file', '-e', revision]) |
|
673 | out, code = self._gitdir(['cat-file', '-e', revision]) | |
671 | return code == 0 |
|
674 | return code == 0 | |
672 |
|
675 | |||
673 | def _gitisancestor(self, r1, r2): |
|
676 | def _gitisancestor(self, r1, r2): | |
674 | base = self._gitcommand(['merge-base', r1, r2]) |
|
677 | base = self._gitcommand(['merge-base', r1, r2]) | |
675 | return base == r1 |
|
678 | return base == r1 | |
676 |
|
679 | |||
677 | def _gitbranchmap(self): |
|
680 | def _gitbranchmap(self): | |
678 | '''returns 3 things: |
|
681 | '''returns 3 things: | |
679 | a map from git branch to revision |
|
682 | a map from git branch to revision | |
680 | a map from revision to branches |
|
683 | a map from revision to branches | |
681 | a map from remote branch to local tracking branch''' |
|
684 | a map from remote branch to local tracking branch''' | |
682 | branch2rev = {} |
|
685 | branch2rev = {} | |
683 | rev2branch = {} |
|
686 | rev2branch = {} | |
684 | tracking = {} |
|
687 | tracking = {} | |
685 | out = self._gitcommand(['for-each-ref', '--format', |
|
688 | out = self._gitcommand(['for-each-ref', '--format', | |
686 | '%(objectname) %(refname) %(upstream) end']) |
|
689 | '%(objectname) %(refname) %(upstream) end']) | |
687 | for line in out.split('\n'): |
|
690 | for line in out.split('\n'): | |
688 | revision, ref, upstream = line.split(' ')[:3] |
|
691 | revision, ref, upstream = line.split(' ')[:3] | |
689 | if ref.startswith('refs/tags/'): |
|
692 | if ref.startswith('refs/tags/'): | |
690 | continue |
|
693 | continue | |
691 | if ref.startswith('refs/remotes/') and ref.endswith('/HEAD'): |
|
694 | if ref.startswith('refs/remotes/') and ref.endswith('/HEAD'): | |
692 | continue # ignore remote/HEAD redirects |
|
695 | continue # ignore remote/HEAD redirects | |
693 | branch2rev[ref] = revision |
|
696 | branch2rev[ref] = revision | |
694 | rev2branch.setdefault(revision, []).append(ref) |
|
697 | rev2branch.setdefault(revision, []).append(ref) | |
695 | if upstream: |
|
698 | if upstream: | |
696 | # assumes no more than one local tracking branch for a remote |
|
699 | # assumes no more than one local tracking branch for a remote | |
697 | tracking[upstream] = ref |
|
700 | tracking[upstream] = ref | |
698 | return branch2rev, rev2branch, tracking |
|
701 | return branch2rev, rev2branch, tracking | |
699 |
|
702 | |||
700 | def _fetch(self, source, revision): |
|
703 | def _fetch(self, source, revision): | |
701 | if not os.path.exists('%s/.git' % self._path): |
|
704 | if not os.path.exists('%s/.git' % self._path): | |
702 | self._ui.status(_('cloning subrepo %s\n') % self._relpath) |
|
705 | self._ui.status(_('cloning subrepo %s\n') % self._relpath) | |
703 | self._gitnodir(['clone', source, self._path]) |
|
706 | self._gitnodir(['clone', source, self._path]) | |
704 | if self._githavelocally(revision): |
|
707 | if self._githavelocally(revision): | |
705 | return |
|
708 | return | |
706 | self._ui.status(_('pulling subrepo %s\n') % self._relpath) |
|
709 | self._ui.status(_('pulling subrepo %s\n') % self._relpath) | |
707 | # first try from origin |
|
710 | # first try from origin | |
708 | self._gitcommand(['fetch']) |
|
711 | self._gitcommand(['fetch']) | |
709 | if self._githavelocally(revision): |
|
712 | if self._githavelocally(revision): | |
710 | return |
|
713 | return | |
711 | # then try from known subrepo source |
|
714 | # then try from known subrepo source | |
712 | self._gitcommand(['fetch', source]) |
|
715 | self._gitcommand(['fetch', source]) | |
713 | if not self._githavelocally(revision): |
|
716 | if not self._githavelocally(revision): | |
714 | raise util.Abort(_("revision %s does not exist in subrepo %s\n") % |
|
717 | raise util.Abort(_("revision %s does not exist in subrepo %s\n") % | |
715 | (revision, self._path)) |
|
718 | (revision, self._path)) | |
716 |
|
719 | |||
717 | def dirty(self): |
|
720 | def dirty(self): | |
718 | if self._state[1] != self._gitstate(): # version checked out changed? |
|
721 | if self._state[1] != self._gitstate(): # version checked out changed? | |
719 | return True |
|
722 | return True | |
720 | # check for staged changes or modified files; ignore untracked files |
|
723 | # check for staged changes or modified files; ignore untracked files | |
721 | out, code = self._gitdir(['diff-index', '--quiet', 'HEAD']) |
|
724 | out, code = self._gitdir(['diff-index', '--quiet', 'HEAD']) | |
722 | return code == 1 |
|
725 | return code == 1 | |
723 |
|
726 | |||
724 | def get(self, state): |
|
727 | def get(self, state): | |
725 | source, revision, kind = state |
|
728 | source, revision, kind = state | |
726 | self._fetch(source, revision) |
|
729 | self._fetch(source, revision) | |
727 | # if the repo was set to be bare, unbare it |
|
730 | # if the repo was set to be bare, unbare it | |
728 | if self._gitcommand(['config', '--bool', 'core.bare']) == 'true': |
|
731 | if self._gitcommand(['config', '--bool', 'core.bare']) == 'true': | |
729 | self._gitcommand(['config', 'core.bare', 'false']) |
|
732 | self._gitcommand(['config', 'core.bare', 'false']) | |
730 | if self._gitstate() == revision: |
|
733 | if self._gitstate() == revision: | |
731 | self._gitcommand(['reset', '--hard', 'HEAD']) |
|
734 | self._gitcommand(['reset', '--hard', 'HEAD']) | |
732 | return |
|
735 | return | |
733 | elif self._gitstate() == revision: |
|
736 | elif self._gitstate() == revision: | |
734 | return |
|
737 | return | |
735 | branch2rev, rev2branch, tracking = self._gitbranchmap() |
|
738 | branch2rev, rev2branch, tracking = self._gitbranchmap() | |
736 |
|
739 | |||
737 | def rawcheckout(): |
|
740 | def rawcheckout(): | |
738 | # no branch to checkout, check it out with no branch |
|
741 | # no branch to checkout, check it out with no branch | |
739 | self._ui.warn(_('checking out detached HEAD in subrepo %s\n') % |
|
742 | self._ui.warn(_('checking out detached HEAD in subrepo %s\n') % | |
740 | self._relpath) |
|
743 | self._relpath) | |
741 | self._ui.warn(_('check out a git branch if you intend ' |
|
744 | self._ui.warn(_('check out a git branch if you intend ' | |
742 | 'to make changes\n')) |
|
745 | 'to make changes\n')) | |
743 | self._gitcommand(['checkout', '-q', revision]) |
|
746 | self._gitcommand(['checkout', '-q', revision]) | |
744 |
|
747 | |||
745 | if revision not in rev2branch: |
|
748 | if revision not in rev2branch: | |
746 | rawcheckout() |
|
749 | rawcheckout() | |
747 | return |
|
750 | return | |
748 | branches = rev2branch[revision] |
|
751 | branches = rev2branch[revision] | |
749 | firstlocalbranch = None |
|
752 | firstlocalbranch = None | |
750 | for b in branches: |
|
753 | for b in branches: | |
751 | if b == 'refs/heads/master': |
|
754 | if b == 'refs/heads/master': | |
752 | # master trumps all other branches |
|
755 | # master trumps all other branches | |
753 | self._gitcommand(['checkout', 'refs/heads/master']) |
|
756 | self._gitcommand(['checkout', 'refs/heads/master']) | |
754 | return |
|
757 | return | |
755 | if not firstlocalbranch and not b.startswith('refs/remotes/'): |
|
758 | if not firstlocalbranch and not b.startswith('refs/remotes/'): | |
756 | firstlocalbranch = b |
|
759 | firstlocalbranch = b | |
757 | if firstlocalbranch: |
|
760 | if firstlocalbranch: | |
758 | self._gitcommand(['checkout', firstlocalbranch]) |
|
761 | self._gitcommand(['checkout', firstlocalbranch]) | |
759 | return |
|
762 | return | |
760 |
|
763 | |||
761 | # choose a remote branch already tracked if possible |
|
764 | # choose a remote branch already tracked if possible | |
762 | remote = branches[0] |
|
765 | remote = branches[0] | |
763 | if remote not in tracking: |
|
766 | if remote not in tracking: | |
764 | for b in branches: |
|
767 | for b in branches: | |
765 | if b in tracking: |
|
768 | if b in tracking: | |
766 | remote = b |
|
769 | remote = b | |
767 | break |
|
770 | break | |
768 |
|
771 | |||
769 | if remote not in tracking: |
|
772 | if remote not in tracking: | |
770 | # create a new local tracking branch |
|
773 | # create a new local tracking branch | |
771 | local = remote.split('/', 2)[2] |
|
774 | local = remote.split('/', 2)[2] | |
772 | self._gitcommand(['checkout', '-b', local, remote]) |
|
775 | self._gitcommand(['checkout', '-b', local, remote]) | |
773 | elif self._gitisancestor(branch2rev[tracking[remote]], remote): |
|
776 | elif self._gitisancestor(branch2rev[tracking[remote]], remote): | |
774 | # When updating to a tracked remote branch, |
|
777 | # When updating to a tracked remote branch, | |
775 | # if the local tracking branch is downstream of it, |
|
778 | # if the local tracking branch is downstream of it, | |
776 | # a normal `git pull` would have performed a "fast-forward merge" |
|
779 | # a normal `git pull` would have performed a "fast-forward merge" | |
777 | # which is equivalent to updating the local branch to the remote. |
|
780 | # which is equivalent to updating the local branch to the remote. | |
778 | # Since we are only looking at branching at update, we need to |
|
781 | # Since we are only looking at branching at update, we need to | |
779 | # detect this situation and perform this action lazily. |
|
782 | # detect this situation and perform this action lazily. | |
780 | if tracking[remote] != self._gitcurrentbranch(): |
|
783 | if tracking[remote] != self._gitcurrentbranch(): | |
781 | self._gitcommand(['checkout', tracking[remote]]) |
|
784 | self._gitcommand(['checkout', tracking[remote]]) | |
782 | self._gitcommand(['merge', '--ff', remote]) |
|
785 | self._gitcommand(['merge', '--ff', remote]) | |
783 | else: |
|
786 | else: | |
784 | # a real merge would be required, just checkout the revision |
|
787 | # a real merge would be required, just checkout the revision | |
785 | rawcheckout() |
|
788 | rawcheckout() | |
786 |
|
789 | |||
787 | def commit(self, text, user, date): |
|
790 | def commit(self, text, user, date): | |
788 | cmd = ['commit', '-a', '-m', text] |
|
791 | cmd = ['commit', '-a', '-m', text] | |
789 | env = os.environ.copy() |
|
792 | env = os.environ.copy() | |
790 | if user: |
|
793 | if user: | |
791 | cmd += ['--author', user] |
|
794 | cmd += ['--author', user] | |
792 | if date: |
|
795 | if date: | |
793 | # git's date parser silently ignores when seconds < 1e9 |
|
796 | # git's date parser silently ignores when seconds < 1e9 | |
794 | # convert to ISO8601 |
|
797 | # convert to ISO8601 | |
795 | env['GIT_AUTHOR_DATE'] = util.datestr(date, |
|
798 | env['GIT_AUTHOR_DATE'] = util.datestr(date, | |
796 | '%Y-%m-%dT%H:%M:%S %1%2') |
|
799 | '%Y-%m-%dT%H:%M:%S %1%2') | |
797 | self._gitcommand(cmd, env=env) |
|
800 | self._gitcommand(cmd, env=env) | |
798 | # make sure commit works otherwise HEAD might not exist under certain |
|
801 | # make sure commit works otherwise HEAD might not exist under certain | |
799 | # circumstances |
|
802 | # circumstances | |
800 | return self._gitstate() |
|
803 | return self._gitstate() | |
801 |
|
804 | |||
802 | def merge(self, state): |
|
805 | def merge(self, state): | |
803 | source, revision, kind = state |
|
806 | source, revision, kind = state | |
804 | self._fetch(source, revision) |
|
807 | self._fetch(source, revision) | |
805 | base = self._gitcommand(['merge-base', revision, self._state[1]]) |
|
808 | base = self._gitcommand(['merge-base', revision, self._state[1]]) | |
806 | if base == revision: |
|
809 | if base == revision: | |
807 | self.get(state) # fast forward merge |
|
810 | self.get(state) # fast forward merge | |
808 | elif base != self._state[1]: |
|
811 | elif base != self._state[1]: | |
809 | self._gitcommand(['merge', '--no-commit', revision]) |
|
812 | self._gitcommand(['merge', '--no-commit', revision]) | |
810 |
|
813 | |||
811 | def push(self, force): |
|
814 | def push(self, force): | |
812 | # if a branch in origin contains the revision, nothing to do |
|
815 | # if a branch in origin contains the revision, nothing to do | |
813 | branch2rev, rev2branch, tracking = self._gitbranchmap() |
|
816 | branch2rev, rev2branch, tracking = self._gitbranchmap() | |
814 | if self._state[1] in rev2branch: |
|
817 | if self._state[1] in rev2branch: | |
815 | for b in rev2branch[self._state[1]]: |
|
818 | for b in rev2branch[self._state[1]]: | |
816 | if b.startswith('refs/remotes/origin/'): |
|
819 | if b.startswith('refs/remotes/origin/'): | |
817 | return True |
|
820 | return True | |
818 | for b, revision in branch2rev.iteritems(): |
|
821 | for b, revision in branch2rev.iteritems(): | |
819 | if b.startswith('refs/remotes/origin/'): |
|
822 | if b.startswith('refs/remotes/origin/'): | |
820 | if self._gitisancestor(self._state[1], revision): |
|
823 | if self._gitisancestor(self._state[1], revision): | |
821 | return True |
|
824 | return True | |
822 | # otherwise, try to push the currently checked out branch |
|
825 | # otherwise, try to push the currently checked out branch | |
823 | cmd = ['push'] |
|
826 | cmd = ['push'] | |
824 | if force: |
|
827 | if force: | |
825 | cmd.append('--force') |
|
828 | cmd.append('--force') | |
826 |
|
829 | |||
827 | current = self._gitcurrentbranch() |
|
830 | current = self._gitcurrentbranch() | |
828 | if current: |
|
831 | if current: | |
829 | # determine if the current branch is even useful |
|
832 | # determine if the current branch is even useful | |
830 | if not self._gitisancestor(self._state[1], current): |
|
833 | if not self._gitisancestor(self._state[1], current): | |
831 | self._ui.warn(_('unrelated git branch checked out ' |
|
834 | self._ui.warn(_('unrelated git branch checked out ' | |
832 | 'in subrepo %s\n') % self._relpath) |
|
835 | 'in subrepo %s\n') % self._relpath) | |
833 | return False |
|
836 | return False | |
834 | self._ui.status(_('pushing branch %s of subrepo %s\n') % |
|
837 | self._ui.status(_('pushing branch %s of subrepo %s\n') % | |
835 | (current.split('/', 2)[2], self._relpath)) |
|
838 | (current.split('/', 2)[2], self._relpath)) | |
836 | self._gitcommand(cmd + ['origin', current]) |
|
839 | self._gitcommand(cmd + ['origin', current]) | |
837 | return True |
|
840 | return True | |
838 | else: |
|
841 | else: | |
839 | self._ui.warn(_('no branch checked out in subrepo %s\n' |
|
842 | self._ui.warn(_('no branch checked out in subrepo %s\n' | |
840 | 'cannot push revision %s') % |
|
843 | 'cannot push revision %s') % | |
841 | (self._relpath, self._state[1])) |
|
844 | (self._relpath, self._state[1])) | |
842 | return False |
|
845 | return False | |
843 |
|
846 | |||
844 | def remove(self): |
|
847 | def remove(self): | |
845 | if self.dirty(): |
|
848 | if self.dirty(): | |
846 | self._ui.warn(_('not removing repo %s because ' |
|
849 | self._ui.warn(_('not removing repo %s because ' | |
847 | 'it has changes.\n') % self._path) |
|
850 | 'it has changes.\n') % self._path) | |
848 | return |
|
851 | return | |
849 | # we can't fully delete the repository as it may contain |
|
852 | # we can't fully delete the repository as it may contain | |
850 | # local-only history |
|
853 | # local-only history | |
851 | self._ui.note(_('removing subrepo %s\n') % self._path) |
|
854 | self._ui.note(_('removing subrepo %s\n') % self._path) | |
852 | self._gitcommand(['config', 'core.bare', 'true']) |
|
855 | self._gitcommand(['config', 'core.bare', 'true']) | |
853 | for f in os.listdir(self._path): |
|
856 | for f in os.listdir(self._path): | |
854 | if f == '.git': |
|
857 | if f == '.git': | |
855 | continue |
|
858 | continue | |
856 | path = os.path.join(self._path, f) |
|
859 | path = os.path.join(self._path, f) | |
857 | if os.path.isdir(path) and not os.path.islink(path): |
|
860 | if os.path.isdir(path) and not os.path.islink(path): | |
858 | shutil.rmtree(path) |
|
861 | shutil.rmtree(path) | |
859 | else: |
|
862 | else: | |
860 | os.remove(path) |
|
863 | os.remove(path) | |
861 |
|
864 | |||
862 | def archive(self, ui, archiver, prefix): |
|
865 | def archive(self, ui, archiver, prefix): | |
863 | source, revision = self._state |
|
866 | source, revision = self._state | |
864 | self._fetch(source, revision) |
|
867 | self._fetch(source, revision) | |
865 |
|
868 | |||
866 | # Parse git's native archive command. |
|
869 | # Parse git's native archive command. | |
867 | # This should be much faster than manually traversing the trees |
|
870 | # This should be much faster than manually traversing the trees | |
868 | # and objects with many subprocess calls. |
|
871 | # and objects with many subprocess calls. | |
869 | tarstream = self._gitcommand(['archive', revision], stream=True) |
|
872 | tarstream = self._gitcommand(['archive', revision], stream=True) | |
870 | tar = tarfile.open(fileobj=tarstream, mode='r|') |
|
873 | tar = tarfile.open(fileobj=tarstream, mode='r|') | |
871 | relpath = subrelpath(self) |
|
874 | relpath = subrelpath(self) | |
872 | ui.progress(_('archiving (%s)') % relpath, 0, unit=_('files')) |
|
875 | ui.progress(_('archiving (%s)') % relpath, 0, unit=_('files')) | |
873 | for i, info in enumerate(tar): |
|
876 | for i, info in enumerate(tar): | |
874 | archiver.addfile(os.path.join(prefix, self._relpath, info.name), |
|
877 | archiver.addfile(os.path.join(prefix, self._relpath, info.name), | |
875 | info.mode, info.issym(), |
|
878 | info.mode, info.issym(), | |
876 | tar.extractfile(info).read()) |
|
879 | tar.extractfile(info).read()) | |
877 | ui.progress(_('archiving (%s)') % relpath, i + 1, |
|
880 | ui.progress(_('archiving (%s)') % relpath, i + 1, | |
878 | unit=_('files')) |
|
881 | unit=_('files')) | |
879 | ui.progress(_('archiving (%s)') % relpath, None) |
|
882 | ui.progress(_('archiving (%s)') % relpath, None) | |
880 |
|
883 | |||
881 |
|
884 | |||
882 | types = { |
|
885 | types = { | |
883 | 'hg': hgsubrepo, |
|
886 | 'hg': hgsubrepo, | |
884 | 'svn': svnsubrepo, |
|
887 | 'svn': svnsubrepo, | |
885 | 'git': gitsubrepo, |
|
888 | 'git': gitsubrepo, | |
886 | } |
|
889 | } |
General Comments 0
You need to be logged in to leave comments.
Login now